mirror of
https://github.com/docker/login-action.git
synced 2026-03-14 17:10:54 +00:00
Compare commits
36 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
74a5d14239 | ||
|
|
2f4f00e4c6 | ||
|
|
67c184546c | ||
|
|
3d4cc89e85 | ||
|
|
6cc823a6c4 | ||
|
|
d94e792124 | ||
|
|
033db0da30 | ||
|
|
09c2ae9716 | ||
|
|
ba56f006fc | ||
|
|
75bf9a79af | ||
|
|
ed2698b25f | ||
|
|
52ad1d2e01 | ||
|
|
f18ea97ee4 | ||
|
|
07d7ee0dc6 | ||
|
|
327cd5a69d | ||
|
|
e217ef3a2d | ||
|
|
407f438d11 | ||
|
|
28e19ee314 | ||
|
|
7ca345011a | ||
|
|
02b671aa02 | ||
|
|
06895751d1 | ||
|
|
02c9ff3be2 | ||
|
|
5d8785b43a | ||
|
|
7a65d3de5d | ||
|
|
bd2f40996a | ||
|
|
9fd0581bf0 | ||
|
|
eefb7e8744 | ||
|
|
cb13d66af0 | ||
|
|
1f36f5b7a2 | ||
|
|
bcb47c2c49 | ||
|
|
8165a5b270 | ||
|
|
29df2a9f8c | ||
|
|
2b0e0e02ba | ||
|
|
fe7fd06c5d | ||
|
|
3b8fed7e4b | ||
|
|
90de1764cc |
21
.github/workflows/publish.yml
vendored
Normal file
21
.github/workflows/publish.yml
vendored
Normal file
@@ -0,0 +1,21 @@
|
||||
name: publish
|
||||
|
||||
on:
|
||||
release:
|
||||
types:
|
||||
- published
|
||||
|
||||
jobs:
|
||||
publish:
|
||||
runs-on: ubuntu-latest
|
||||
permissions:
|
||||
contents: read
|
||||
id-token: write
|
||||
packages: write
|
||||
steps:
|
||||
-
|
||||
name: Checkout
|
||||
uses: actions/checkout@v4
|
||||
-
|
||||
name: Publish
|
||||
uses: actions/publish-immutable-action@v0.0.4
|
||||
9
.github/workflows/test.yml
vendored
9
.github/workflows/test.yml
vendored
@@ -15,17 +15,14 @@ jobs:
|
||||
test:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
-
|
||||
name: Checkout
|
||||
uses: actions/checkout@v4
|
||||
-
|
||||
name: Test
|
||||
uses: docker/bake-action@v5
|
||||
uses: docker/bake-action@v6
|
||||
with:
|
||||
targets: test
|
||||
-
|
||||
name: Upload coverage
|
||||
uses: codecov/codecov-action@v4
|
||||
uses: codecov/codecov-action@v5
|
||||
with:
|
||||
file: ./coverage/clover.xml
|
||||
files: ./coverage/clover.xml
|
||||
token: ${{ secrets.CODECOV_TOKEN }}
|
||||
|
||||
16
.github/workflows/validate.yml
vendored
16
.github/workflows/validate.yml
vendored
@@ -15,16 +15,17 @@ jobs:
|
||||
prepare:
|
||||
runs-on: ubuntu-latest
|
||||
outputs:
|
||||
targets: ${{ steps.targets.outputs.matrix }}
|
||||
targets: ${{ steps.generate.outputs.targets }}
|
||||
steps:
|
||||
-
|
||||
name: Checkout
|
||||
uses: actions/checkout@v4
|
||||
-
|
||||
name: Targets matrix
|
||||
id: targets
|
||||
run: |
|
||||
echo "matrix=$(docker buildx bake validate --print | jq -cr '.group.validate.targets')" >> $GITHUB_OUTPUT
|
||||
name: List targets
|
||||
id: generate
|
||||
uses: docker/bake-action/subaction/list-targets@v6
|
||||
with:
|
||||
target: validate
|
||||
|
||||
validate:
|
||||
runs-on: ubuntu-latest
|
||||
@@ -35,11 +36,8 @@ jobs:
|
||||
matrix:
|
||||
target: ${{ fromJson(needs.prepare.outputs.targets) }}
|
||||
steps:
|
||||
-
|
||||
name: Checkout
|
||||
uses: actions/checkout@v4
|
||||
-
|
||||
name: Validate
|
||||
uses: docker/bake-action@v5
|
||||
uses: docker/bake-action@v6
|
||||
with:
|
||||
targets: ${{ matrix.target }}
|
||||
|
||||
25
README.md
25
README.md
@@ -51,7 +51,7 @@ jobs:
|
||||
name: Login to Docker Hub
|
||||
uses: docker/login-action@v3
|
||||
with:
|
||||
username: ${{ secrets.DOCKERHUB_USERNAME }}
|
||||
username: ${{ vars.DOCKERHUB_USERNAME }}
|
||||
password: ${{ secrets.DOCKERHUB_TOKEN }}
|
||||
```
|
||||
|
||||
@@ -105,7 +105,7 @@ jobs:
|
||||
uses: docker/login-action@v3
|
||||
with:
|
||||
registry: registry.gitlab.com
|
||||
username: ${{ secrets.GITLAB_USERNAME }}
|
||||
username: ${{ vars.GITLAB_USERNAME }}
|
||||
password: ${{ secrets.GITLAB_PASSWORD }}
|
||||
```
|
||||
|
||||
@@ -136,7 +136,7 @@ jobs:
|
||||
uses: docker/login-action@v3
|
||||
with:
|
||||
registry: <registry-name>.azurecr.io
|
||||
username: ${{ secrets.AZURE_CLIENT_ID }}
|
||||
username: ${{ vars.AZURE_CLIENT_ID }}
|
||||
password: ${{ secrets.AZURE_CLIENT_SECRET }}
|
||||
```
|
||||
|
||||
@@ -199,8 +199,7 @@ jobs:
|
||||
Use a service account with permission to push to GCR and [configure access control](https://cloud.google.com/container-registry/docs/access-control).
|
||||
Download the key for the service account as a JSON file. Save the contents of
|
||||
the file [as a secret](https://docs.github.com/en/actions/configuring-and-managing-workflows/creating-and-storing-encrypted-secrets#creating-encrypted-secrets-for-a-repository)
|
||||
named `GCR_JSON_KEY` in your GitHub repository. Set the username to `_json_key`,
|
||||
or `_json_key_base64` if you use a base64-encoded key.
|
||||
named `GCR_JSON_KEY` in your GitHub repository. Set the username to `_json_key`.
|
||||
|
||||
```yaml
|
||||
name: ci
|
||||
@@ -302,7 +301,7 @@ jobs:
|
||||
|
||||
### AWS Elastic Container Registry (ECR)
|
||||
|
||||
Use an IAM user with the ability to [push to ECR with `AmazonEC2ContainerRegistryPowerUser` managed policy for example](https://docs.aws.amazon.com/AmazonECR/latest/userguide/ecr_managed_policies.html#AmazonEC2ContainerRegistryPowerUser).
|
||||
Use an IAM user with the ability to [push to ECR with `AmazonEC2ContainerRegistryPowerUser` managed policy for example](https://docs.aws.amazon.com/AmazonECR/latest/userguide/security-iam-awsmanpol.html#security-iam-awsmanpol-AmazonEC2ContainerRegistryPowerUser).
|
||||
Download the access keys and save them as `AWS_ACCESS_KEY_ID` and `AWS_SECRET_ACCESS_KEY` [as secrets](https://docs.github.com/en/actions/configuring-and-managing-workflows/creating-and-storing-encrypted-secrets#creating-encrypted-secrets-for-a-repository)
|
||||
in your GitHub repo.
|
||||
|
||||
@@ -322,7 +321,7 @@ jobs:
|
||||
uses: docker/login-action@v3
|
||||
with:
|
||||
registry: <aws-account-number>.dkr.ecr.<region>.amazonaws.com
|
||||
username: ${{ secrets.AWS_ACCESS_KEY_ID }}
|
||||
username: ${{ vars.AWS_ACCESS_KEY_ID }}
|
||||
password: ${{ secrets.AWS_SECRET_ACCESS_KEY }}
|
||||
```
|
||||
|
||||
@@ -345,7 +344,7 @@ jobs:
|
||||
uses: docker/login-action@v3
|
||||
with:
|
||||
registry: <aws-account-number>.dkr.ecr.<region>.amazonaws.com
|
||||
username: ${{ secrets.AWS_ACCESS_KEY_ID }}
|
||||
username: ${{ vars.AWS_ACCESS_KEY_ID }}
|
||||
password: ${{ secrets.AWS_SECRET_ACCESS_KEY }}
|
||||
env:
|
||||
AWS_ACCOUNT_IDS: 012345678910,023456789012
|
||||
@@ -371,7 +370,7 @@ jobs:
|
||||
name: Configure AWS Credentials
|
||||
uses: aws-actions/configure-aws-credentials@v4
|
||||
with:
|
||||
aws-access-key-id: ${{ secrets.AWS_ACCESS_KEY_ID }}
|
||||
aws-access-key-id: ${{ vars.AWS_ACCESS_KEY_ID }}
|
||||
aws-secret-access-key: ${{ secrets.AWS_SECRET_ACCESS_KEY }}
|
||||
aws-region: <region>
|
||||
-
|
||||
@@ -406,7 +405,7 @@ jobs:
|
||||
uses: docker/login-action@v3
|
||||
with:
|
||||
registry: public.ecr.aws
|
||||
username: ${{ secrets.AWS_ACCESS_KEY_ID }}
|
||||
username: ${{ vars.AWS_ACCESS_KEY_ID }}
|
||||
password: ${{ secrets.AWS_SECRET_ACCESS_KEY }}
|
||||
env:
|
||||
AWS_REGION: <region>
|
||||
@@ -440,7 +439,7 @@ jobs:
|
||||
uses: docker/login-action@v3
|
||||
with:
|
||||
registry: <region>.ocir.io
|
||||
username: ${{ secrets.OCI_USERNAME }}
|
||||
username: ${{ vars.OCI_USERNAME }}
|
||||
password: ${{ secrets.OCI_TOKEN }}
|
||||
```
|
||||
|
||||
@@ -467,7 +466,7 @@ jobs:
|
||||
uses: docker/login-action@v3
|
||||
with:
|
||||
registry: quay.io
|
||||
username: ${{ secrets.QUAY_USERNAME }}
|
||||
username: ${{ vars.QUAY_USERNAME }}
|
||||
password: ${{ secrets.QUAY_ROBOT_TOKEN }}
|
||||
```
|
||||
|
||||
@@ -491,7 +490,7 @@ jobs:
|
||||
uses: docker/login-action@v3
|
||||
with:
|
||||
registry: registry.digitalocean.com
|
||||
username: ${{ secrets.DIGITALOCEAN_USERNAME }}
|
||||
username: ${{ vars.DIGITALOCEAN_USERNAME }}
|
||||
password: ${{ secrets.DIGITALOCEAN_ACCESS_TOKEN }}
|
||||
```
|
||||
|
||||
|
||||
26
dist/index.js
generated
vendored
26
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
419
dist/licenses.txt
generated
vendored
419
dist/licenses.txt
generated
vendored
@@ -734,416 +734,6 @@ Apache-2.0
|
||||
limitations under the License.
|
||||
|
||||
|
||||
@aws-sdk/client-sso-oidc
|
||||
Apache-2.0
|
||||
Apache License
|
||||
Version 2.0, January 2004
|
||||
http://www.apache.org/licenses/
|
||||
|
||||
TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
|
||||
|
||||
1. Definitions.
|
||||
|
||||
"License" shall mean the terms and conditions for use, reproduction,
|
||||
and distribution as defined by Sections 1 through 9 of this document.
|
||||
|
||||
"Licensor" shall mean the copyright owner or entity authorized by
|
||||
the copyright owner that is granting the License.
|
||||
|
||||
"Legal Entity" shall mean the union of the acting entity and all
|
||||
other entities that control, are controlled by, or are under common
|
||||
control with that entity. For the purposes of this definition,
|
||||
"control" means (i) the power, direct or indirect, to cause the
|
||||
direction or management of such entity, whether by contract or
|
||||
otherwise, or (ii) ownership of fifty percent (50%) or more of the
|
||||
outstanding shares, or (iii) beneficial ownership of such entity.
|
||||
|
||||
"You" (or "Your") shall mean an individual or Legal Entity
|
||||
exercising permissions granted by this License.
|
||||
|
||||
"Source" form shall mean the preferred form for making modifications,
|
||||
including but not limited to software source code, documentation
|
||||
source, and configuration files.
|
||||
|
||||
"Object" form shall mean any form resulting from mechanical
|
||||
transformation or translation of a Source form, including but
|
||||
not limited to compiled object code, generated documentation,
|
||||
and conversions to other media types.
|
||||
|
||||
"Work" shall mean the work of authorship, whether in Source or
|
||||
Object form, made available under the License, as indicated by a
|
||||
copyright notice that is included in or attached to the work
|
||||
(an example is provided in the Appendix below).
|
||||
|
||||
"Derivative Works" shall mean any work, whether in Source or Object
|
||||
form, that is based on (or derived from) the Work and for which the
|
||||
editorial revisions, annotations, elaborations, or other modifications
|
||||
represent, as a whole, an original work of authorship. For the purposes
|
||||
of this License, Derivative Works shall not include works that remain
|
||||
separable from, or merely link (or bind by name) to the interfaces of,
|
||||
the Work and Derivative Works thereof.
|
||||
|
||||
"Contribution" shall mean any work of authorship, including
|
||||
the original version of the Work and any modifications or additions
|
||||
to that Work or Derivative Works thereof, that is intentionally
|
||||
submitted to Licensor for inclusion in the Work by the copyright owner
|
||||
or by an individual or Legal Entity authorized to submit on behalf of
|
||||
the copyright owner. For the purposes of this definition, "submitted"
|
||||
means any form of electronic, verbal, or written communication sent
|
||||
to the Licensor or its representatives, including but not limited to
|
||||
communication on electronic mailing lists, source code control systems,
|
||||
and issue tracking systems that are managed by, or on behalf of, the
|
||||
Licensor for the purpose of discussing and improving the Work, but
|
||||
excluding communication that is conspicuously marked or otherwise
|
||||
designated in writing by the copyright owner as "Not a Contribution."
|
||||
|
||||
"Contributor" shall mean Licensor and any individual or Legal Entity
|
||||
on behalf of whom a Contribution has been received by Licensor and
|
||||
subsequently incorporated within the Work.
|
||||
|
||||
2. Grant of Copyright License. Subject to the terms and conditions of
|
||||
this License, each Contributor hereby grants to You a perpetual,
|
||||
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
||||
copyright license to reproduce, prepare Derivative Works of,
|
||||
publicly display, publicly perform, sublicense, and distribute the
|
||||
Work and such Derivative Works in Source or Object form.
|
||||
|
||||
3. Grant of Patent License. Subject to the terms and conditions of
|
||||
this License, each Contributor hereby grants to You a perpetual,
|
||||
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
||||
(except as stated in this section) patent license to make, have made,
|
||||
use, offer to sell, sell, import, and otherwise transfer the Work,
|
||||
where such license applies only to those patent claims licensable
|
||||
by such Contributor that are necessarily infringed by their
|
||||
Contribution(s) alone or by combination of their Contribution(s)
|
||||
with the Work to which such Contribution(s) was submitted. If You
|
||||
institute patent litigation against any entity (including a
|
||||
cross-claim or counterclaim in a lawsuit) alleging that the Work
|
||||
or a Contribution incorporated within the Work constitutes direct
|
||||
or contributory patent infringement, then any patent licenses
|
||||
granted to You under this License for that Work shall terminate
|
||||
as of the date such litigation is filed.
|
||||
|
||||
4. Redistribution. You may reproduce and distribute copies of the
|
||||
Work or Derivative Works thereof in any medium, with or without
|
||||
modifications, and in Source or Object form, provided that You
|
||||
meet the following conditions:
|
||||
|
||||
(a) You must give any other recipients of the Work or
|
||||
Derivative Works a copy of this License; and
|
||||
|
||||
(b) You must cause any modified files to carry prominent notices
|
||||
stating that You changed the files; and
|
||||
|
||||
(c) You must retain, in the Source form of any Derivative Works
|
||||
that You distribute, all copyright, patent, trademark, and
|
||||
attribution notices from the Source form of the Work,
|
||||
excluding those notices that do not pertain to any part of
|
||||
the Derivative Works; and
|
||||
|
||||
(d) If the Work includes a "NOTICE" text file as part of its
|
||||
distribution, then any Derivative Works that You distribute must
|
||||
include a readable copy of the attribution notices contained
|
||||
within such NOTICE file, excluding those notices that do not
|
||||
pertain to any part of the Derivative Works, in at least one
|
||||
of the following places: within a NOTICE text file distributed
|
||||
as part of the Derivative Works; within the Source form or
|
||||
documentation, if provided along with the Derivative Works; or,
|
||||
within a display generated by the Derivative Works, if and
|
||||
wherever such third-party notices normally appear. The contents
|
||||
of the NOTICE file are for informational purposes only and
|
||||
do not modify the License. You may add Your own attribution
|
||||
notices within Derivative Works that You distribute, alongside
|
||||
or as an addendum to the NOTICE text from the Work, provided
|
||||
that such additional attribution notices cannot be construed
|
||||
as modifying the License.
|
||||
|
||||
You may add Your own copyright statement to Your modifications and
|
||||
may provide additional or different license terms and conditions
|
||||
for use, reproduction, or distribution of Your modifications, or
|
||||
for any such Derivative Works as a whole, provided Your use,
|
||||
reproduction, and distribution of the Work otherwise complies with
|
||||
the conditions stated in this License.
|
||||
|
||||
5. Submission of Contributions. Unless You explicitly state otherwise,
|
||||
any Contribution intentionally submitted for inclusion in the Work
|
||||
by You to the Licensor shall be under the terms and conditions of
|
||||
this License, without any additional terms or conditions.
|
||||
Notwithstanding the above, nothing herein shall supersede or modify
|
||||
the terms of any separate license agreement you may have executed
|
||||
with Licensor regarding such Contributions.
|
||||
|
||||
6. Trademarks. This License does not grant permission to use the trade
|
||||
names, trademarks, service marks, or product names of the Licensor,
|
||||
except as required for reasonable and customary use in describing the
|
||||
origin of the Work and reproducing the content of the NOTICE file.
|
||||
|
||||
7. Disclaimer of Warranty. Unless required by applicable law or
|
||||
agreed to in writing, Licensor provides the Work (and each
|
||||
Contributor provides its Contributions) on an "AS IS" BASIS,
|
||||
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
|
||||
implied, including, without limitation, any warranties or conditions
|
||||
of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
|
||||
PARTICULAR PURPOSE. You are solely responsible for determining the
|
||||
appropriateness of using or redistributing the Work and assume any
|
||||
risks associated with Your exercise of permissions under this License.
|
||||
|
||||
8. Limitation of Liability. In no event and under no legal theory,
|
||||
whether in tort (including negligence), contract, or otherwise,
|
||||
unless required by applicable law (such as deliberate and grossly
|
||||
negligent acts) or agreed to in writing, shall any Contributor be
|
||||
liable to You for damages, including any direct, indirect, special,
|
||||
incidental, or consequential damages of any character arising as a
|
||||
result of this License or out of the use or inability to use the
|
||||
Work (including but not limited to damages for loss of goodwill,
|
||||
work stoppage, computer failure or malfunction, or any and all
|
||||
other commercial damages or losses), even if such Contributor
|
||||
has been advised of the possibility of such damages.
|
||||
|
||||
9. Accepting Warranty or Additional Liability. While redistributing
|
||||
the Work or Derivative Works thereof, You may choose to offer,
|
||||
and charge a fee for, acceptance of support, warranty, indemnity,
|
||||
or other liability obligations and/or rights consistent with this
|
||||
License. However, in accepting such obligations, You may act only
|
||||
on Your own behalf and on Your sole responsibility, not on behalf
|
||||
of any other Contributor, and only if You agree to indemnify,
|
||||
defend, and hold each Contributor harmless for any liability
|
||||
incurred by, or claims asserted against, such Contributor by reason
|
||||
of your accepting any such warranty or additional liability.
|
||||
|
||||
END OF TERMS AND CONDITIONS
|
||||
|
||||
APPENDIX: How to apply the Apache License to your work.
|
||||
|
||||
To apply the Apache License to your work, attach the following
|
||||
boilerplate notice, with the fields enclosed by brackets "{}"
|
||||
replaced with your own identifying information. (Don't include
|
||||
the brackets!) The text should be enclosed in the appropriate
|
||||
comment syntax for the file format. We also recommend that a
|
||||
file or class name and description of purpose be included on the
|
||||
same "printed page" as the copyright notice for easier
|
||||
identification within third-party archives.
|
||||
|
||||
Copyright 2018-2020 Amazon.com, Inc. or its affiliates. All Rights Reserved.
|
||||
|
||||
Licensed under the Apache License, Version 2.0 (the "License");
|
||||
you may not use this file except in compliance with the License.
|
||||
You may obtain a copy of the License at
|
||||
|
||||
http://www.apache.org/licenses/LICENSE-2.0
|
||||
|
||||
Unless required by applicable law or agreed to in writing, software
|
||||
distributed under the License is distributed on an "AS IS" BASIS,
|
||||
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
See the License for the specific language governing permissions and
|
||||
limitations under the License.
|
||||
|
||||
|
||||
@aws-sdk/client-sts
|
||||
Apache-2.0
|
||||
Apache License
|
||||
Version 2.0, January 2004
|
||||
http://www.apache.org/licenses/
|
||||
|
||||
TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
|
||||
|
||||
1. Definitions.
|
||||
|
||||
"License" shall mean the terms and conditions for use, reproduction,
|
||||
and distribution as defined by Sections 1 through 9 of this document.
|
||||
|
||||
"Licensor" shall mean the copyright owner or entity authorized by
|
||||
the copyright owner that is granting the License.
|
||||
|
||||
"Legal Entity" shall mean the union of the acting entity and all
|
||||
other entities that control, are controlled by, or are under common
|
||||
control with that entity. For the purposes of this definition,
|
||||
"control" means (i) the power, direct or indirect, to cause the
|
||||
direction or management of such entity, whether by contract or
|
||||
otherwise, or (ii) ownership of fifty percent (50%) or more of the
|
||||
outstanding shares, or (iii) beneficial ownership of such entity.
|
||||
|
||||
"You" (or "Your") shall mean an individual or Legal Entity
|
||||
exercising permissions granted by this License.
|
||||
|
||||
"Source" form shall mean the preferred form for making modifications,
|
||||
including but not limited to software source code, documentation
|
||||
source, and configuration files.
|
||||
|
||||
"Object" form shall mean any form resulting from mechanical
|
||||
transformation or translation of a Source form, including but
|
||||
not limited to compiled object code, generated documentation,
|
||||
and conversions to other media types.
|
||||
|
||||
"Work" shall mean the work of authorship, whether in Source or
|
||||
Object form, made available under the License, as indicated by a
|
||||
copyright notice that is included in or attached to the work
|
||||
(an example is provided in the Appendix below).
|
||||
|
||||
"Derivative Works" shall mean any work, whether in Source or Object
|
||||
form, that is based on (or derived from) the Work and for which the
|
||||
editorial revisions, annotations, elaborations, or other modifications
|
||||
represent, as a whole, an original work of authorship. For the purposes
|
||||
of this License, Derivative Works shall not include works that remain
|
||||
separable from, or merely link (or bind by name) to the interfaces of,
|
||||
the Work and Derivative Works thereof.
|
||||
|
||||
"Contribution" shall mean any work of authorship, including
|
||||
the original version of the Work and any modifications or additions
|
||||
to that Work or Derivative Works thereof, that is intentionally
|
||||
submitted to Licensor for inclusion in the Work by the copyright owner
|
||||
or by an individual or Legal Entity authorized to submit on behalf of
|
||||
the copyright owner. For the purposes of this definition, "submitted"
|
||||
means any form of electronic, verbal, or written communication sent
|
||||
to the Licensor or its representatives, including but not limited to
|
||||
communication on electronic mailing lists, source code control systems,
|
||||
and issue tracking systems that are managed by, or on behalf of, the
|
||||
Licensor for the purpose of discussing and improving the Work, but
|
||||
excluding communication that is conspicuously marked or otherwise
|
||||
designated in writing by the copyright owner as "Not a Contribution."
|
||||
|
||||
"Contributor" shall mean Licensor and any individual or Legal Entity
|
||||
on behalf of whom a Contribution has been received by Licensor and
|
||||
subsequently incorporated within the Work.
|
||||
|
||||
2. Grant of Copyright License. Subject to the terms and conditions of
|
||||
this License, each Contributor hereby grants to You a perpetual,
|
||||
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
||||
copyright license to reproduce, prepare Derivative Works of,
|
||||
publicly display, publicly perform, sublicense, and distribute the
|
||||
Work and such Derivative Works in Source or Object form.
|
||||
|
||||
3. Grant of Patent License. Subject to the terms and conditions of
|
||||
this License, each Contributor hereby grants to You a perpetual,
|
||||
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
||||
(except as stated in this section) patent license to make, have made,
|
||||
use, offer to sell, sell, import, and otherwise transfer the Work,
|
||||
where such license applies only to those patent claims licensable
|
||||
by such Contributor that are necessarily infringed by their
|
||||
Contribution(s) alone or by combination of their Contribution(s)
|
||||
with the Work to which such Contribution(s) was submitted. If You
|
||||
institute patent litigation against any entity (including a
|
||||
cross-claim or counterclaim in a lawsuit) alleging that the Work
|
||||
or a Contribution incorporated within the Work constitutes direct
|
||||
or contributory patent infringement, then any patent licenses
|
||||
granted to You under this License for that Work shall terminate
|
||||
as of the date such litigation is filed.
|
||||
|
||||
4. Redistribution. You may reproduce and distribute copies of the
|
||||
Work or Derivative Works thereof in any medium, with or without
|
||||
modifications, and in Source or Object form, provided that You
|
||||
meet the following conditions:
|
||||
|
||||
(a) You must give any other recipients of the Work or
|
||||
Derivative Works a copy of this License; and
|
||||
|
||||
(b) You must cause any modified files to carry prominent notices
|
||||
stating that You changed the files; and
|
||||
|
||||
(c) You must retain, in the Source form of any Derivative Works
|
||||
that You distribute, all copyright, patent, trademark, and
|
||||
attribution notices from the Source form of the Work,
|
||||
excluding those notices that do not pertain to any part of
|
||||
the Derivative Works; and
|
||||
|
||||
(d) If the Work includes a "NOTICE" text file as part of its
|
||||
distribution, then any Derivative Works that You distribute must
|
||||
include a readable copy of the attribution notices contained
|
||||
within such NOTICE file, excluding those notices that do not
|
||||
pertain to any part of the Derivative Works, in at least one
|
||||
of the following places: within a NOTICE text file distributed
|
||||
as part of the Derivative Works; within the Source form or
|
||||
documentation, if provided along with the Derivative Works; or,
|
||||
within a display generated by the Derivative Works, if and
|
||||
wherever such third-party notices normally appear. The contents
|
||||
of the NOTICE file are for informational purposes only and
|
||||
do not modify the License. You may add Your own attribution
|
||||
notices within Derivative Works that You distribute, alongside
|
||||
or as an addendum to the NOTICE text from the Work, provided
|
||||
that such additional attribution notices cannot be construed
|
||||
as modifying the License.
|
||||
|
||||
You may add Your own copyright statement to Your modifications and
|
||||
may provide additional or different license terms and conditions
|
||||
for use, reproduction, or distribution of Your modifications, or
|
||||
for any such Derivative Works as a whole, provided Your use,
|
||||
reproduction, and distribution of the Work otherwise complies with
|
||||
the conditions stated in this License.
|
||||
|
||||
5. Submission of Contributions. Unless You explicitly state otherwise,
|
||||
any Contribution intentionally submitted for inclusion in the Work
|
||||
by You to the Licensor shall be under the terms and conditions of
|
||||
this License, without any additional terms or conditions.
|
||||
Notwithstanding the above, nothing herein shall supersede or modify
|
||||
the terms of any separate license agreement you may have executed
|
||||
with Licensor regarding such Contributions.
|
||||
|
||||
6. Trademarks. This License does not grant permission to use the trade
|
||||
names, trademarks, service marks, or product names of the Licensor,
|
||||
except as required for reasonable and customary use in describing the
|
||||
origin of the Work and reproducing the content of the NOTICE file.
|
||||
|
||||
7. Disclaimer of Warranty. Unless required by applicable law or
|
||||
agreed to in writing, Licensor provides the Work (and each
|
||||
Contributor provides its Contributions) on an "AS IS" BASIS,
|
||||
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
|
||||
implied, including, without limitation, any warranties or conditions
|
||||
of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
|
||||
PARTICULAR PURPOSE. You are solely responsible for determining the
|
||||
appropriateness of using or redistributing the Work and assume any
|
||||
risks associated with Your exercise of permissions under this License.
|
||||
|
||||
8. Limitation of Liability. In no event and under no legal theory,
|
||||
whether in tort (including negligence), contract, or otherwise,
|
||||
unless required by applicable law (such as deliberate and grossly
|
||||
negligent acts) or agreed to in writing, shall any Contributor be
|
||||
liable to You for damages, including any direct, indirect, special,
|
||||
incidental, or consequential damages of any character arising as a
|
||||
result of this License or out of the use or inability to use the
|
||||
Work (including but not limited to damages for loss of goodwill,
|
||||
work stoppage, computer failure or malfunction, or any and all
|
||||
other commercial damages or losses), even if such Contributor
|
||||
has been advised of the possibility of such damages.
|
||||
|
||||
9. Accepting Warranty or Additional Liability. While redistributing
|
||||
the Work or Derivative Works thereof, You may choose to offer,
|
||||
and charge a fee for, acceptance of support, warranty, indemnity,
|
||||
or other liability obligations and/or rights consistent with this
|
||||
License. However, in accepting such obligations, You may act only
|
||||
on Your own behalf and on Your sole responsibility, not on behalf
|
||||
of any other Contributor, and only if You agree to indemnify,
|
||||
defend, and hold each Contributor harmless for any liability
|
||||
incurred by, or claims asserted against, such Contributor by reason
|
||||
of your accepting any such warranty or additional liability.
|
||||
|
||||
END OF TERMS AND CONDITIONS
|
||||
|
||||
APPENDIX: How to apply the Apache License to your work.
|
||||
|
||||
To apply the Apache License to your work, attach the following
|
||||
boilerplate notice, with the fields enclosed by brackets "{}"
|
||||
replaced with your own identifying information. (Don't include
|
||||
the brackets!) The text should be enclosed in the appropriate
|
||||
comment syntax for the file format. We also recommend that a
|
||||
file or class name and description of purpose be included on the
|
||||
same "printed page" as the copyright notice for easier
|
||||
identification within third-party archives.
|
||||
|
||||
Copyright 2018-2020 Amazon.com, Inc. or its affiliates. All Rights Reserved.
|
||||
|
||||
Licensed under the Apache License, Version 2.0 (the "License");
|
||||
you may not use this file except in compliance with the License.
|
||||
You may obtain a copy of the License at
|
||||
|
||||
http://www.apache.org/licenses/LICENSE-2.0
|
||||
|
||||
Unless required by applicable law or agreed to in writing, software
|
||||
distributed under the License is distributed on an "AS IS" BASIS,
|
||||
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
See the License for the specific language governing permissions and
|
||||
limitations under the License.
|
||||
|
||||
|
||||
@aws-sdk/core
|
||||
Apache-2.0
|
||||
|
||||
@@ -3193,6 +2783,9 @@ Apache-2.0
|
||||
limitations under the License.
|
||||
|
||||
|
||||
@aws-sdk/nested-clients
|
||||
Apache-2.0
|
||||
|
||||
@aws-sdk/region-config-resolver
|
||||
Apache-2.0
|
||||
Apache License
|
||||
@@ -13631,9 +13224,6 @@ ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR
|
||||
IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
|
||||
|
||||
|
||||
dot-object
|
||||
MIT
|
||||
|
||||
encoding
|
||||
MIT
|
||||
Copyright (c) 2012-2014 Andris Reinman
|
||||
@@ -15061,9 +14651,6 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
||||
THE SOFTWARE.
|
||||
|
||||
|
||||
twirp-ts
|
||||
MIT
|
||||
|
||||
undici
|
||||
MIT
|
||||
MIT License
|
||||
|
||||
@@ -1,3 +1,9 @@
|
||||
target "_common" {
|
||||
args = {
|
||||
BUILDKIT_CONTEXT_KEEP_GIT_DIR = 1
|
||||
}
|
||||
}
|
||||
|
||||
group "default" {
|
||||
targets = ["build"]
|
||||
}
|
||||
@@ -11,42 +17,49 @@ group "validate" {
|
||||
}
|
||||
|
||||
target "build" {
|
||||
inherits = ["_common"]
|
||||
dockerfile = "dev.Dockerfile"
|
||||
target = "build-update"
|
||||
output = ["."]
|
||||
}
|
||||
|
||||
target "build-validate" {
|
||||
inherits = ["_common"]
|
||||
dockerfile = "dev.Dockerfile"
|
||||
target = "build-validate"
|
||||
output = ["type=cacheonly"]
|
||||
}
|
||||
|
||||
target "format" {
|
||||
inherits = ["_common"]
|
||||
dockerfile = "dev.Dockerfile"
|
||||
target = "format-update"
|
||||
output = ["."]
|
||||
}
|
||||
|
||||
target "lint" {
|
||||
inherits = ["_common"]
|
||||
dockerfile = "dev.Dockerfile"
|
||||
target = "lint"
|
||||
output = ["type=cacheonly"]
|
||||
}
|
||||
|
||||
target "vendor" {
|
||||
inherits = ["_common"]
|
||||
dockerfile = "dev.Dockerfile"
|
||||
target = "vendor-update"
|
||||
output = ["."]
|
||||
}
|
||||
|
||||
target "vendor-validate" {
|
||||
inherits = ["_common"]
|
||||
dockerfile = "dev.Dockerfile"
|
||||
target = "vendor-validate"
|
||||
output = ["type=cacheonly"]
|
||||
}
|
||||
|
||||
target "test" {
|
||||
inherits = ["_common"]
|
||||
dockerfile = "dev.Dockerfile"
|
||||
target = "test-coverage"
|
||||
output = ["./coverage"]
|
||||
|
||||
10
package.json
10
package.json
@@ -25,12 +25,12 @@
|
||||
"license": "Apache-2.0",
|
||||
"packageManager": "yarn@3.6.3",
|
||||
"dependencies": {
|
||||
"@actions/core": "^1.10.1",
|
||||
"@aws-sdk/client-ecr": "^3.583.0",
|
||||
"@aws-sdk/client-ecr-public": "^3.583.0",
|
||||
"@docker/actions-toolkit": "^0.35.0",
|
||||
"@actions/core": "^1.11.1",
|
||||
"@aws-sdk/client-ecr": "^3.766.0",
|
||||
"@aws-sdk/client-ecr-public": "^3.758.0",
|
||||
"@docker/actions-toolkit": "^0.57.0",
|
||||
"http-proxy-agent": "^7.0.2",
|
||||
"https-proxy-agent": "^7.0.5"
|
||||
"https-proxy-agent": "^7.0.6"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@types/node": "^20.12.12",
|
||||
|
||||
1666
yarn.lock
1666
yarn.lock
@@ -12,9 +12,9 @@ __metadata:
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"@actions/artifact@npm:^2.1.8":
|
||||
version: 2.1.8
|
||||
resolution: "@actions/artifact@npm:2.1.8"
|
||||
"@actions/artifact@npm:^2.3.0":
|
||||
version: 2.3.1
|
||||
resolution: "@actions/artifact@npm:2.3.1"
|
||||
dependencies:
|
||||
"@actions/core": ^1.10.0
|
||||
"@actions/github": ^5.1.1
|
||||
@@ -26,19 +26,17 @@ __metadata:
|
||||
"@octokit/request-error": ^5.0.0
|
||||
"@protobuf-ts/plugin": ^2.2.3-alpha.1
|
||||
archiver: ^7.0.1
|
||||
crypto: ^1.0.1
|
||||
jwt-decode: ^3.1.2
|
||||
twirp-ts: ^2.5.0
|
||||
unzip-stream: ^0.3.1
|
||||
checksum: 51a47c21bcdac705abb61dbaef923f2760354c39bcad44a31b129e18bf31f646e5148f92ee7e1198275d1dba7bebfd1d1500ad7f62f6de1e65b57b2d092d5341
|
||||
checksum: 5d6f49069cdc12b8ec0bc0fe318a059f5e48dcaa85644ebda5501eb2ce8b773fa8efb8136a6683608c8d80204d5b2d55d91ff31d10550306ed58ebed46171231
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"@actions/cache@npm:^3.2.4":
|
||||
version: 3.2.4
|
||||
resolution: "@actions/cache@npm:3.2.4"
|
||||
"@actions/cache@npm:^4.0.2":
|
||||
version: 4.0.2
|
||||
resolution: "@actions/cache@npm:4.0.2"
|
||||
dependencies:
|
||||
"@actions/core": ^1.10.0
|
||||
"@actions/core": ^1.11.1
|
||||
"@actions/exec": ^1.0.1
|
||||
"@actions/glob": ^0.1.0
|
||||
"@actions/http-client": ^2.1.1
|
||||
@@ -46,13 +44,13 @@ __metadata:
|
||||
"@azure/abort-controller": ^1.1.0
|
||||
"@azure/ms-rest-js": ^2.6.0
|
||||
"@azure/storage-blob": ^12.13.0
|
||||
"@protobuf-ts/plugin": ^2.9.4
|
||||
semver: ^6.3.1
|
||||
uuid: ^3.3.3
|
||||
checksum: 5bf5f7541bea4906b553440a9ffee5699e11dfb729365c6cb0bbd37e147a1a0993369fdad16bfa3e2b01ec7fa57dac66276278bfd4a389009246a75ea953e61d
|
||||
checksum: 208f11238a26194f331b329bb99d50a87c1a3ccef1dbae181e5c142b3faf41715203e0c5cbc491519d3d97540a68fbd418c25fb6e16caabf76248c40867c02b4
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"@actions/core@npm:^1.10.0, @actions/core@npm:^1.10.1, @actions/core@npm:^1.2.6":
|
||||
"@actions/core@npm:^1.10.0, @actions/core@npm:^1.2.6":
|
||||
version: 1.10.1
|
||||
resolution: "@actions/core@npm:1.10.1"
|
||||
dependencies:
|
||||
@@ -62,6 +60,16 @@ __metadata:
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"@actions/core@npm:^1.11.1":
|
||||
version: 1.11.1
|
||||
resolution: "@actions/core@npm:1.11.1"
|
||||
dependencies:
|
||||
"@actions/exec": ^1.1.1
|
||||
"@actions/http-client": ^2.0.1
|
||||
checksum: 9ac7a3e0b478bfefd862dcb4ddaa1d8c3f9076bb1931d3d280918d1749e7783480c6a009c1b009c8bf5093e2d77d9f4e023d70416145bf246f0071736d4ef839
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"@actions/exec@npm:^1.0.0, @actions/exec@npm:^1.0.1, @actions/exec@npm:^1.1.1":
|
||||
version: 1.1.1
|
||||
resolution: "@actions/exec@npm:1.1.1"
|
||||
@@ -115,7 +123,7 @@ __metadata:
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"@actions/http-client@npm:^2.1.0, @actions/http-client@npm:^2.2.1":
|
||||
"@actions/http-client@npm:^2.1.0":
|
||||
version: 2.2.1
|
||||
resolution: "@actions/http-client@npm:2.2.1"
|
||||
dependencies:
|
||||
@@ -125,6 +133,16 @@ __metadata:
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"@actions/http-client@npm:^2.2.3":
|
||||
version: 2.2.3
|
||||
resolution: "@actions/http-client@npm:2.2.3"
|
||||
dependencies:
|
||||
tunnel: ^0.0.6
|
||||
undici: ^5.25.4
|
||||
checksum: 5d395df575d30ae599efa10dd715e72944b015e753db61f0a823f737acbb0e99743d4a9f25e812b18ec8cc34f86c73565d075c449e01ffa891577b6595212dde
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"@actions/io@npm:^1.0.1, @actions/io@npm:^1.1.1, @actions/io@npm:^1.1.3":
|
||||
version: 1.1.3
|
||||
resolution: "@actions/io@npm:1.1.3"
|
||||
@@ -132,17 +150,16 @@ __metadata:
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"@actions/tool-cache@npm:^2.0.1":
|
||||
version: 2.0.1
|
||||
resolution: "@actions/tool-cache@npm:2.0.1"
|
||||
"@actions/tool-cache@npm:^2.0.2":
|
||||
version: 2.0.2
|
||||
resolution: "@actions/tool-cache@npm:2.0.2"
|
||||
dependencies:
|
||||
"@actions/core": ^1.2.6
|
||||
"@actions/core": ^1.11.1
|
||||
"@actions/exec": ^1.0.0
|
||||
"@actions/http-client": ^2.0.1
|
||||
"@actions/io": ^1.1.1
|
||||
semver: ^6.1.0
|
||||
uuid: ^3.3.2
|
||||
checksum: 33f6393b9b163e4af2b9759e8d37cda4f018f10ddda3643355bb8a9f92d732e5bdff089cf8036b46d181e1ef2b3210b895b2f746fdf54487afe88f1d340aa9e1
|
||||
checksum: c2bab4297be752bdda9dd61f8159a201ad0d37d026134b960f1edcc9418a80387f44d1f24a070fe992c44dcfc28a152f70600e76669bb0578132789a6f37a596
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
@@ -165,513 +182,459 @@ __metadata:
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"@aws-crypto/ie11-detection@npm:^3.0.0":
|
||||
version: 3.0.0
|
||||
resolution: "@aws-crypto/ie11-detection@npm:3.0.0"
|
||||
"@aws-crypto/sha256-browser@npm:5.2.0":
|
||||
version: 5.2.0
|
||||
resolution: "@aws-crypto/sha256-browser@npm:5.2.0"
|
||||
dependencies:
|
||||
tslib: ^1.11.1
|
||||
checksum: 299b2ddd46eddac1f2d54d91386ceb37af81aef8a800669281c73d634ed17fd855dcfb8b3157f2879344b93a2666a6d602550eb84b71e4d7868100ad6da8f803
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"@aws-crypto/sha256-browser@npm:3.0.0":
|
||||
version: 3.0.0
|
||||
resolution: "@aws-crypto/sha256-browser@npm:3.0.0"
|
||||
dependencies:
|
||||
"@aws-crypto/ie11-detection": ^3.0.0
|
||||
"@aws-crypto/sha256-js": ^3.0.0
|
||||
"@aws-crypto/supports-web-crypto": ^3.0.0
|
||||
"@aws-crypto/util": ^3.0.0
|
||||
"@aws-crypto/sha256-js": ^5.2.0
|
||||
"@aws-crypto/supports-web-crypto": ^5.2.0
|
||||
"@aws-crypto/util": ^5.2.0
|
||||
"@aws-sdk/types": ^3.222.0
|
||||
"@aws-sdk/util-locate-window": ^3.0.0
|
||||
"@aws-sdk/util-utf8-browser": ^3.0.0
|
||||
tslib: ^1.11.1
|
||||
checksum: ca89456bf508db2e08060a7f656460db97ac9a15b11e39d6fa7665e2b156508a1758695bff8e82d0a00178d6ac5c36f35eb4bcfac2e48621265224ca14a19bd2
|
||||
"@smithy/util-utf8": ^2.0.0
|
||||
tslib: ^2.6.2
|
||||
checksum: 773f12f2026d82a6bb4a23a8f491894a6d32525bd9b8bfbc12896526cf11882a7607a671c478c45f9cd7d6ba1caaed48a62b67c6f725244bd83a1275108f46c7
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"@aws-crypto/sha256-js@npm:3.0.0, @aws-crypto/sha256-js@npm:^3.0.0":
|
||||
version: 3.0.0
|
||||
resolution: "@aws-crypto/sha256-js@npm:3.0.0"
|
||||
"@aws-crypto/sha256-js@npm:5.2.0, @aws-crypto/sha256-js@npm:^5.2.0":
|
||||
version: 5.2.0
|
||||
resolution: "@aws-crypto/sha256-js@npm:5.2.0"
|
||||
dependencies:
|
||||
"@aws-crypto/util": ^3.0.0
|
||||
"@aws-crypto/util": ^5.2.0
|
||||
"@aws-sdk/types": ^3.222.0
|
||||
tslib: ^1.11.1
|
||||
checksum: 644ded32ea310237811afae873d3c7320739cb6f6cc39dced9c94801379e68e5ee2cca0c34f0384793fa9e750a7e0a5e2468f95754bd08e6fd72ab833c8fe23c
|
||||
tslib: ^2.6.2
|
||||
checksum: 007fbe0436d714d0d0d282e2b61c90e45adcb9ad75eac9ac7ba03d32b56624afd09b2a9ceb4d659661cf17c51d74d1900ab6b00eacafc002da1101664955ca53
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"@aws-crypto/supports-web-crypto@npm:^3.0.0":
|
||||
version: 3.0.0
|
||||
resolution: "@aws-crypto/supports-web-crypto@npm:3.0.0"
|
||||
"@aws-crypto/supports-web-crypto@npm:^5.2.0":
|
||||
version: 5.2.0
|
||||
resolution: "@aws-crypto/supports-web-crypto@npm:5.2.0"
|
||||
dependencies:
|
||||
tslib: ^1.11.1
|
||||
checksum: 35479a1558db9e9a521df6877a99f95670e972c602f2a0349303477e5d638a5baf569fb037c853710e382086e6fd77e8ed58d3fb9b49f6e1186a9d26ce7be006
|
||||
tslib: ^2.6.2
|
||||
checksum: 6ffc21de48b2b2c3e918193101d7e8fe949d47b37688892e1c39eaedaa938be80c0f404fe1c874c30cce16781026777a53bf47d5d90143ca91d0feb7c4a6f830
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"@aws-crypto/util@npm:^3.0.0":
|
||||
version: 3.0.0
|
||||
resolution: "@aws-crypto/util@npm:3.0.0"
|
||||
"@aws-crypto/util@npm:^5.2.0":
|
||||
version: 5.2.0
|
||||
resolution: "@aws-crypto/util@npm:5.2.0"
|
||||
dependencies:
|
||||
"@aws-sdk/types": ^3.222.0
|
||||
"@aws-sdk/util-utf8-browser": ^3.0.0
|
||||
tslib: ^1.11.1
|
||||
checksum: d29d5545048721aae3d60b236708535059733019a105f8a64b4e4a8eab7cf8dde1546dc56bff7de20d36140a4d1f0f4693e639c5732a7059273a7b1e56354776
|
||||
"@smithy/util-utf8": ^2.0.0
|
||||
tslib: ^2.6.2
|
||||
checksum: f0f81d9d2771c59946cfec48b86cb23d39f78a966c4a1f89d4753abdc3cb38de06f907d1e6450059b121d48ac65d612ab88bdb70014553a077fc3dabddfbf8d6
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"@aws-sdk/client-ecr-public@npm:^3.583.0":
|
||||
version: 3.583.0
|
||||
resolution: "@aws-sdk/client-ecr-public@npm:3.583.0"
|
||||
"@aws-sdk/client-ecr-public@npm:^3.758.0":
|
||||
version: 3.758.0
|
||||
resolution: "@aws-sdk/client-ecr-public@npm:3.758.0"
|
||||
dependencies:
|
||||
"@aws-crypto/sha256-browser": 3.0.0
|
||||
"@aws-crypto/sha256-js": 3.0.0
|
||||
"@aws-sdk/client-sso-oidc": 3.583.0
|
||||
"@aws-sdk/client-sts": 3.583.0
|
||||
"@aws-sdk/core": 3.582.0
|
||||
"@aws-sdk/credential-provider-node": 3.583.0
|
||||
"@aws-sdk/middleware-host-header": 3.577.0
|
||||
"@aws-sdk/middleware-logger": 3.577.0
|
||||
"@aws-sdk/middleware-recursion-detection": 3.577.0
|
||||
"@aws-sdk/middleware-user-agent": 3.583.0
|
||||
"@aws-sdk/region-config-resolver": 3.577.0
|
||||
"@aws-sdk/types": 3.577.0
|
||||
"@aws-sdk/util-endpoints": 3.583.0
|
||||
"@aws-sdk/util-user-agent-browser": 3.577.0
|
||||
"@aws-sdk/util-user-agent-node": 3.577.0
|
||||
"@smithy/config-resolver": ^3.0.0
|
||||
"@smithy/core": ^2.0.1
|
||||
"@smithy/fetch-http-handler": ^3.0.1
|
||||
"@smithy/hash-node": ^3.0.0
|
||||
"@smithy/invalid-dependency": ^3.0.0
|
||||
"@smithy/middleware-content-length": ^3.0.0
|
||||
"@smithy/middleware-endpoint": ^3.0.0
|
||||
"@smithy/middleware-retry": ^3.0.1
|
||||
"@smithy/middleware-serde": ^3.0.0
|
||||
"@smithy/middleware-stack": ^3.0.0
|
||||
"@smithy/node-config-provider": ^3.0.0
|
||||
"@smithy/node-http-handler": ^3.0.0
|
||||
"@smithy/protocol-http": ^4.0.0
|
||||
"@smithy/smithy-client": ^3.0.1
|
||||
"@smithy/types": ^3.0.0
|
||||
"@smithy/url-parser": ^3.0.0
|
||||
"@smithy/util-base64": ^3.0.0
|
||||
"@smithy/util-body-length-browser": ^3.0.0
|
||||
"@smithy/util-body-length-node": ^3.0.0
|
||||
"@smithy/util-defaults-mode-browser": ^3.0.1
|
||||
"@smithy/util-defaults-mode-node": ^3.0.1
|
||||
"@smithy/util-endpoints": ^2.0.0
|
||||
"@smithy/util-middleware": ^3.0.0
|
||||
"@smithy/util-retry": ^3.0.0
|
||||
"@smithy/util-utf8": ^3.0.0
|
||||
"@aws-crypto/sha256-browser": 5.2.0
|
||||
"@aws-crypto/sha256-js": 5.2.0
|
||||
"@aws-sdk/core": 3.758.0
|
||||
"@aws-sdk/credential-provider-node": 3.758.0
|
||||
"@aws-sdk/middleware-host-header": 3.734.0
|
||||
"@aws-sdk/middleware-logger": 3.734.0
|
||||
"@aws-sdk/middleware-recursion-detection": 3.734.0
|
||||
"@aws-sdk/middleware-user-agent": 3.758.0
|
||||
"@aws-sdk/region-config-resolver": 3.734.0
|
||||
"@aws-sdk/types": 3.734.0
|
||||
"@aws-sdk/util-endpoints": 3.743.0
|
||||
"@aws-sdk/util-user-agent-browser": 3.734.0
|
||||
"@aws-sdk/util-user-agent-node": 3.758.0
|
||||
"@smithy/config-resolver": ^4.0.1
|
||||
"@smithy/core": ^3.1.5
|
||||
"@smithy/fetch-http-handler": ^5.0.1
|
||||
"@smithy/hash-node": ^4.0.1
|
||||
"@smithy/invalid-dependency": ^4.0.1
|
||||
"@smithy/middleware-content-length": ^4.0.1
|
||||
"@smithy/middleware-endpoint": ^4.0.6
|
||||
"@smithy/middleware-retry": ^4.0.7
|
||||
"@smithy/middleware-serde": ^4.0.2
|
||||
"@smithy/middleware-stack": ^4.0.1
|
||||
"@smithy/node-config-provider": ^4.0.1
|
||||
"@smithy/node-http-handler": ^4.0.3
|
||||
"@smithy/protocol-http": ^5.0.1
|
||||
"@smithy/smithy-client": ^4.1.6
|
||||
"@smithy/types": ^4.1.0
|
||||
"@smithy/url-parser": ^4.0.1
|
||||
"@smithy/util-base64": ^4.0.0
|
||||
"@smithy/util-body-length-browser": ^4.0.0
|
||||
"@smithy/util-body-length-node": ^4.0.0
|
||||
"@smithy/util-defaults-mode-browser": ^4.0.7
|
||||
"@smithy/util-defaults-mode-node": ^4.0.7
|
||||
"@smithy/util-endpoints": ^3.0.1
|
||||
"@smithy/util-middleware": ^4.0.1
|
||||
"@smithy/util-retry": ^4.0.1
|
||||
"@smithy/util-utf8": ^4.0.0
|
||||
tslib: ^2.6.2
|
||||
checksum: 858f05bf4ade9d199b64187845fcf47208b37e0829948ebbb0431f85399fde7f4e6ecf5e273c8a439a2777a5640a4d624d66173971d4898233950a40aff7d6e7
|
||||
checksum: 8060996677681d85f6d8b94ad2c689b9cdb7cb940a51a0c17915240c47dba8135d025052ef4fd4860a6cdbedf028f43a1fb3821427fd9768a1e5dcaf2a27607a
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"@aws-sdk/client-ecr@npm:^3.583.0":
|
||||
version: 3.583.0
|
||||
resolution: "@aws-sdk/client-ecr@npm:3.583.0"
|
||||
"@aws-sdk/client-ecr@npm:^3.766.0":
|
||||
version: 3.766.0
|
||||
resolution: "@aws-sdk/client-ecr@npm:3.766.0"
|
||||
dependencies:
|
||||
"@aws-crypto/sha256-browser": 3.0.0
|
||||
"@aws-crypto/sha256-js": 3.0.0
|
||||
"@aws-sdk/client-sso-oidc": 3.583.0
|
||||
"@aws-sdk/client-sts": 3.583.0
|
||||
"@aws-sdk/core": 3.582.0
|
||||
"@aws-sdk/credential-provider-node": 3.583.0
|
||||
"@aws-sdk/middleware-host-header": 3.577.0
|
||||
"@aws-sdk/middleware-logger": 3.577.0
|
||||
"@aws-sdk/middleware-recursion-detection": 3.577.0
|
||||
"@aws-sdk/middleware-user-agent": 3.583.0
|
||||
"@aws-sdk/region-config-resolver": 3.577.0
|
||||
"@aws-sdk/types": 3.577.0
|
||||
"@aws-sdk/util-endpoints": 3.583.0
|
||||
"@aws-sdk/util-user-agent-browser": 3.577.0
|
||||
"@aws-sdk/util-user-agent-node": 3.577.0
|
||||
"@smithy/config-resolver": ^3.0.0
|
||||
"@smithy/core": ^2.0.1
|
||||
"@smithy/fetch-http-handler": ^3.0.1
|
||||
"@smithy/hash-node": ^3.0.0
|
||||
"@smithy/invalid-dependency": ^3.0.0
|
||||
"@smithy/middleware-content-length": ^3.0.0
|
||||
"@smithy/middleware-endpoint": ^3.0.0
|
||||
"@smithy/middleware-retry": ^3.0.1
|
||||
"@smithy/middleware-serde": ^3.0.0
|
||||
"@smithy/middleware-stack": ^3.0.0
|
||||
"@smithy/node-config-provider": ^3.0.0
|
||||
"@smithy/node-http-handler": ^3.0.0
|
||||
"@smithy/protocol-http": ^4.0.0
|
||||
"@smithy/smithy-client": ^3.0.1
|
||||
"@smithy/types": ^3.0.0
|
||||
"@smithy/url-parser": ^3.0.0
|
||||
"@smithy/util-base64": ^3.0.0
|
||||
"@smithy/util-body-length-browser": ^3.0.0
|
||||
"@smithy/util-body-length-node": ^3.0.0
|
||||
"@smithy/util-defaults-mode-browser": ^3.0.1
|
||||
"@smithy/util-defaults-mode-node": ^3.0.1
|
||||
"@smithy/util-endpoints": ^2.0.0
|
||||
"@smithy/util-middleware": ^3.0.0
|
||||
"@smithy/util-retry": ^3.0.0
|
||||
"@smithy/util-utf8": ^3.0.0
|
||||
"@smithy/util-waiter": ^3.0.0
|
||||
"@aws-crypto/sha256-browser": 5.2.0
|
||||
"@aws-crypto/sha256-js": 5.2.0
|
||||
"@aws-sdk/core": 3.758.0
|
||||
"@aws-sdk/credential-provider-node": 3.758.0
|
||||
"@aws-sdk/middleware-host-header": 3.734.0
|
||||
"@aws-sdk/middleware-logger": 3.734.0
|
||||
"@aws-sdk/middleware-recursion-detection": 3.734.0
|
||||
"@aws-sdk/middleware-user-agent": 3.758.0
|
||||
"@aws-sdk/region-config-resolver": 3.734.0
|
||||
"@aws-sdk/types": 3.734.0
|
||||
"@aws-sdk/util-endpoints": 3.743.0
|
||||
"@aws-sdk/util-user-agent-browser": 3.734.0
|
||||
"@aws-sdk/util-user-agent-node": 3.758.0
|
||||
"@smithy/config-resolver": ^4.0.1
|
||||
"@smithy/core": ^3.1.5
|
||||
"@smithy/fetch-http-handler": ^5.0.1
|
||||
"@smithy/hash-node": ^4.0.1
|
||||
"@smithy/invalid-dependency": ^4.0.1
|
||||
"@smithy/middleware-content-length": ^4.0.1
|
||||
"@smithy/middleware-endpoint": ^4.0.6
|
||||
"@smithy/middleware-retry": ^4.0.7
|
||||
"@smithy/middleware-serde": ^4.0.2
|
||||
"@smithy/middleware-stack": ^4.0.1
|
||||
"@smithy/node-config-provider": ^4.0.1
|
||||
"@smithy/node-http-handler": ^4.0.3
|
||||
"@smithy/protocol-http": ^5.0.1
|
||||
"@smithy/smithy-client": ^4.1.6
|
||||
"@smithy/types": ^4.1.0
|
||||
"@smithy/url-parser": ^4.0.1
|
||||
"@smithy/util-base64": ^4.0.0
|
||||
"@smithy/util-body-length-browser": ^4.0.0
|
||||
"@smithy/util-body-length-node": ^4.0.0
|
||||
"@smithy/util-defaults-mode-browser": ^4.0.7
|
||||
"@smithy/util-defaults-mode-node": ^4.0.7
|
||||
"@smithy/util-endpoints": ^3.0.1
|
||||
"@smithy/util-middleware": ^4.0.1
|
||||
"@smithy/util-retry": ^4.0.1
|
||||
"@smithy/util-utf8": ^4.0.0
|
||||
"@smithy/util-waiter": ^4.0.2
|
||||
tslib: ^2.6.2
|
||||
checksum: fb9ed45d8a55f69db82e4ba84215d19617a4aee60527265c0c7b5abc8c03a991761abda1b0c9ccc0cb7debe4b5c108c8f7fcb085d070d9028207c92418c52b8b
|
||||
checksum: b43b1d06b24de5be231b57ddb49eb1abc3bc230e11caecd98e90e252405c542325c9792a431c6c82110507de3675002acfe4ee24fa45398d6f1cb2708f19fb48
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"@aws-sdk/client-sso-oidc@npm:3.583.0":
|
||||
version: 3.583.0
|
||||
resolution: "@aws-sdk/client-sso-oidc@npm:3.583.0"
|
||||
"@aws-sdk/client-sso@npm:3.758.0":
|
||||
version: 3.758.0
|
||||
resolution: "@aws-sdk/client-sso@npm:3.758.0"
|
||||
dependencies:
|
||||
"@aws-crypto/sha256-browser": 3.0.0
|
||||
"@aws-crypto/sha256-js": 3.0.0
|
||||
"@aws-sdk/client-sts": 3.583.0
|
||||
"@aws-sdk/core": 3.582.0
|
||||
"@aws-sdk/credential-provider-node": 3.583.0
|
||||
"@aws-sdk/middleware-host-header": 3.577.0
|
||||
"@aws-sdk/middleware-logger": 3.577.0
|
||||
"@aws-sdk/middleware-recursion-detection": 3.577.0
|
||||
"@aws-sdk/middleware-user-agent": 3.583.0
|
||||
"@aws-sdk/region-config-resolver": 3.577.0
|
||||
"@aws-sdk/types": 3.577.0
|
||||
"@aws-sdk/util-endpoints": 3.583.0
|
||||
"@aws-sdk/util-user-agent-browser": 3.577.0
|
||||
"@aws-sdk/util-user-agent-node": 3.577.0
|
||||
"@smithy/config-resolver": ^3.0.0
|
||||
"@smithy/core": ^2.0.1
|
||||
"@smithy/fetch-http-handler": ^3.0.1
|
||||
"@smithy/hash-node": ^3.0.0
|
||||
"@smithy/invalid-dependency": ^3.0.0
|
||||
"@smithy/middleware-content-length": ^3.0.0
|
||||
"@smithy/middleware-endpoint": ^3.0.0
|
||||
"@smithy/middleware-retry": ^3.0.1
|
||||
"@smithy/middleware-serde": ^3.0.0
|
||||
"@smithy/middleware-stack": ^3.0.0
|
||||
"@smithy/node-config-provider": ^3.0.0
|
||||
"@smithy/node-http-handler": ^3.0.0
|
||||
"@smithy/protocol-http": ^4.0.0
|
||||
"@smithy/smithy-client": ^3.0.1
|
||||
"@smithy/types": ^3.0.0
|
||||
"@smithy/url-parser": ^3.0.0
|
||||
"@smithy/util-base64": ^3.0.0
|
||||
"@smithy/util-body-length-browser": ^3.0.0
|
||||
"@smithy/util-body-length-node": ^3.0.0
|
||||
"@smithy/util-defaults-mode-browser": ^3.0.1
|
||||
"@smithy/util-defaults-mode-node": ^3.0.1
|
||||
"@smithy/util-endpoints": ^2.0.0
|
||||
"@smithy/util-middleware": ^3.0.0
|
||||
"@smithy/util-retry": ^3.0.0
|
||||
"@smithy/util-utf8": ^3.0.0
|
||||
"@aws-crypto/sha256-browser": 5.2.0
|
||||
"@aws-crypto/sha256-js": 5.2.0
|
||||
"@aws-sdk/core": 3.758.0
|
||||
"@aws-sdk/middleware-host-header": 3.734.0
|
||||
"@aws-sdk/middleware-logger": 3.734.0
|
||||
"@aws-sdk/middleware-recursion-detection": 3.734.0
|
||||
"@aws-sdk/middleware-user-agent": 3.758.0
|
||||
"@aws-sdk/region-config-resolver": 3.734.0
|
||||
"@aws-sdk/types": 3.734.0
|
||||
"@aws-sdk/util-endpoints": 3.743.0
|
||||
"@aws-sdk/util-user-agent-browser": 3.734.0
|
||||
"@aws-sdk/util-user-agent-node": 3.758.0
|
||||
"@smithy/config-resolver": ^4.0.1
|
||||
"@smithy/core": ^3.1.5
|
||||
"@smithy/fetch-http-handler": ^5.0.1
|
||||
"@smithy/hash-node": ^4.0.1
|
||||
"@smithy/invalid-dependency": ^4.0.1
|
||||
"@smithy/middleware-content-length": ^4.0.1
|
||||
"@smithy/middleware-endpoint": ^4.0.6
|
||||
"@smithy/middleware-retry": ^4.0.7
|
||||
"@smithy/middleware-serde": ^4.0.2
|
||||
"@smithy/middleware-stack": ^4.0.1
|
||||
"@smithy/node-config-provider": ^4.0.1
|
||||
"@smithy/node-http-handler": ^4.0.3
|
||||
"@smithy/protocol-http": ^5.0.1
|
||||
"@smithy/smithy-client": ^4.1.6
|
||||
"@smithy/types": ^4.1.0
|
||||
"@smithy/url-parser": ^4.0.1
|
||||
"@smithy/util-base64": ^4.0.0
|
||||
"@smithy/util-body-length-browser": ^4.0.0
|
||||
"@smithy/util-body-length-node": ^4.0.0
|
||||
"@smithy/util-defaults-mode-browser": ^4.0.7
|
||||
"@smithy/util-defaults-mode-node": ^4.0.7
|
||||
"@smithy/util-endpoints": ^3.0.1
|
||||
"@smithy/util-middleware": ^4.0.1
|
||||
"@smithy/util-retry": ^4.0.1
|
||||
"@smithy/util-utf8": ^4.0.0
|
||||
tslib: ^2.6.2
|
||||
checksum: 4f637e5c691560b0609ca8d1ab953379e1124529631d3e32043eb052f6ee65300245a16a8319460dc1a810854be667725be60657222f68b4833f83be03f4d6e7
|
||||
checksum: 7f1a597d6c2c33ed37e63de692eec5e2abeae6862e40e77205273d4512412fc519cf50218ef6c7a660539edd1fc9ed62be59d88f3e0f6c510b5de78b0f0f5839
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"@aws-sdk/client-sso@npm:3.583.0":
|
||||
version: 3.583.0
|
||||
resolution: "@aws-sdk/client-sso@npm:3.583.0"
|
||||
"@aws-sdk/core@npm:3.758.0":
|
||||
version: 3.758.0
|
||||
resolution: "@aws-sdk/core@npm:3.758.0"
|
||||
dependencies:
|
||||
"@aws-crypto/sha256-browser": 3.0.0
|
||||
"@aws-crypto/sha256-js": 3.0.0
|
||||
"@aws-sdk/core": 3.582.0
|
||||
"@aws-sdk/middleware-host-header": 3.577.0
|
||||
"@aws-sdk/middleware-logger": 3.577.0
|
||||
"@aws-sdk/middleware-recursion-detection": 3.577.0
|
||||
"@aws-sdk/middleware-user-agent": 3.583.0
|
||||
"@aws-sdk/region-config-resolver": 3.577.0
|
||||
"@aws-sdk/types": 3.577.0
|
||||
"@aws-sdk/util-endpoints": 3.583.0
|
||||
"@aws-sdk/util-user-agent-browser": 3.577.0
|
||||
"@aws-sdk/util-user-agent-node": 3.577.0
|
||||
"@smithy/config-resolver": ^3.0.0
|
||||
"@smithy/core": ^2.0.1
|
||||
"@smithy/fetch-http-handler": ^3.0.1
|
||||
"@smithy/hash-node": ^3.0.0
|
||||
"@smithy/invalid-dependency": ^3.0.0
|
||||
"@smithy/middleware-content-length": ^3.0.0
|
||||
"@smithy/middleware-endpoint": ^3.0.0
|
||||
"@smithy/middleware-retry": ^3.0.1
|
||||
"@smithy/middleware-serde": ^3.0.0
|
||||
"@smithy/middleware-stack": ^3.0.0
|
||||
"@smithy/node-config-provider": ^3.0.0
|
||||
"@smithy/node-http-handler": ^3.0.0
|
||||
"@smithy/protocol-http": ^4.0.0
|
||||
"@smithy/smithy-client": ^3.0.1
|
||||
"@smithy/types": ^3.0.0
|
||||
"@smithy/url-parser": ^3.0.0
|
||||
"@smithy/util-base64": ^3.0.0
|
||||
"@smithy/util-body-length-browser": ^3.0.0
|
||||
"@smithy/util-body-length-node": ^3.0.0
|
||||
"@smithy/util-defaults-mode-browser": ^3.0.1
|
||||
"@smithy/util-defaults-mode-node": ^3.0.1
|
||||
"@smithy/util-endpoints": ^2.0.0
|
||||
"@smithy/util-middleware": ^3.0.0
|
||||
"@smithy/util-retry": ^3.0.0
|
||||
"@smithy/util-utf8": ^3.0.0
|
||||
"@aws-sdk/types": 3.734.0
|
||||
"@smithy/core": ^3.1.5
|
||||
"@smithy/node-config-provider": ^4.0.1
|
||||
"@smithy/property-provider": ^4.0.1
|
||||
"@smithy/protocol-http": ^5.0.1
|
||||
"@smithy/signature-v4": ^5.0.1
|
||||
"@smithy/smithy-client": ^4.1.6
|
||||
"@smithy/types": ^4.1.0
|
||||
"@smithy/util-middleware": ^4.0.1
|
||||
fast-xml-parser: 4.4.1
|
||||
tslib: ^2.6.2
|
||||
checksum: b9726eca5adad1b2f90f8b21d70b8c2619257f6b61e026e54caac781c24636ae63fbbf506e6086abd3aead5960fa4c11524c39bc37889e037b13dd565e5828db
|
||||
checksum: 7d3fc670cdf89152245d993115390315d931f94709633c6b8ceb70e076f1dafc9db9c33cc8a89093d5cacdc2fc5e229ff75f95c1325aca096688744a319b2cd2
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"@aws-sdk/client-sts@npm:3.583.0":
|
||||
version: 3.583.0
|
||||
resolution: "@aws-sdk/client-sts@npm:3.583.0"
|
||||
"@aws-sdk/credential-provider-env@npm:3.758.0":
|
||||
version: 3.758.0
|
||||
resolution: "@aws-sdk/credential-provider-env@npm:3.758.0"
|
||||
dependencies:
|
||||
"@aws-crypto/sha256-browser": 3.0.0
|
||||
"@aws-crypto/sha256-js": 3.0.0
|
||||
"@aws-sdk/client-sso-oidc": 3.583.0
|
||||
"@aws-sdk/core": 3.582.0
|
||||
"@aws-sdk/credential-provider-node": 3.583.0
|
||||
"@aws-sdk/middleware-host-header": 3.577.0
|
||||
"@aws-sdk/middleware-logger": 3.577.0
|
||||
"@aws-sdk/middleware-recursion-detection": 3.577.0
|
||||
"@aws-sdk/middleware-user-agent": 3.583.0
|
||||
"@aws-sdk/region-config-resolver": 3.577.0
|
||||
"@aws-sdk/types": 3.577.0
|
||||
"@aws-sdk/util-endpoints": 3.583.0
|
||||
"@aws-sdk/util-user-agent-browser": 3.577.0
|
||||
"@aws-sdk/util-user-agent-node": 3.577.0
|
||||
"@smithy/config-resolver": ^3.0.0
|
||||
"@smithy/core": ^2.0.1
|
||||
"@smithy/fetch-http-handler": ^3.0.1
|
||||
"@smithy/hash-node": ^3.0.0
|
||||
"@smithy/invalid-dependency": ^3.0.0
|
||||
"@smithy/middleware-content-length": ^3.0.0
|
||||
"@smithy/middleware-endpoint": ^3.0.0
|
||||
"@smithy/middleware-retry": ^3.0.1
|
||||
"@smithy/middleware-serde": ^3.0.0
|
||||
"@smithy/middleware-stack": ^3.0.0
|
||||
"@smithy/node-config-provider": ^3.0.0
|
||||
"@smithy/node-http-handler": ^3.0.0
|
||||
"@smithy/protocol-http": ^4.0.0
|
||||
"@smithy/smithy-client": ^3.0.1
|
||||
"@smithy/types": ^3.0.0
|
||||
"@smithy/url-parser": ^3.0.0
|
||||
"@smithy/util-base64": ^3.0.0
|
||||
"@smithy/util-body-length-browser": ^3.0.0
|
||||
"@smithy/util-body-length-node": ^3.0.0
|
||||
"@smithy/util-defaults-mode-browser": ^3.0.1
|
||||
"@smithy/util-defaults-mode-node": ^3.0.1
|
||||
"@smithy/util-endpoints": ^2.0.0
|
||||
"@smithy/util-middleware": ^3.0.0
|
||||
"@smithy/util-retry": ^3.0.0
|
||||
"@smithy/util-utf8": ^3.0.0
|
||||
"@aws-sdk/core": 3.758.0
|
||||
"@aws-sdk/types": 3.734.0
|
||||
"@smithy/property-provider": ^4.0.1
|
||||
"@smithy/types": ^4.1.0
|
||||
tslib: ^2.6.2
|
||||
checksum: a38f6996369c16f839e9d8a6e9f70937679f267efea83854ed43e6ca79342cd7e3caf6942672935a3ea818ebec64ea4caec0b69a2d1fa5adc170dd573cc09ecd
|
||||
checksum: b844a95054943a3478aa44bce4e7f36334622d6f34f2b31057bbd3500990201bdffed160405aad4ef0bf2fcdccb3b8a7f9886991a7f8116a50aee83fc1af0f0c
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"@aws-sdk/core@npm:3.582.0":
|
||||
version: 3.582.0
|
||||
resolution: "@aws-sdk/core@npm:3.582.0"
|
||||
"@aws-sdk/credential-provider-http@npm:3.758.0":
|
||||
version: 3.758.0
|
||||
resolution: "@aws-sdk/credential-provider-http@npm:3.758.0"
|
||||
dependencies:
|
||||
"@smithy/core": ^2.0.1
|
||||
"@smithy/protocol-http": ^4.0.0
|
||||
"@smithy/signature-v4": ^3.0.0
|
||||
"@smithy/smithy-client": ^3.0.1
|
||||
"@smithy/types": ^3.0.0
|
||||
fast-xml-parser: 4.2.5
|
||||
"@aws-sdk/core": 3.758.0
|
||||
"@aws-sdk/types": 3.734.0
|
||||
"@smithy/fetch-http-handler": ^5.0.1
|
||||
"@smithy/node-http-handler": ^4.0.3
|
||||
"@smithy/property-provider": ^4.0.1
|
||||
"@smithy/protocol-http": ^5.0.1
|
||||
"@smithy/smithy-client": ^4.1.6
|
||||
"@smithy/types": ^4.1.0
|
||||
"@smithy/util-stream": ^4.1.2
|
||||
tslib: ^2.6.2
|
||||
checksum: 78f50015a7a13588c120a9a1a4a71bba2d04541aebaebe69249a083bf7ca0bdd3fc7a2985a88c386e77aeadc861470cc5aa56eaa24ec2f10981e4530cf6a57f9
|
||||
checksum: 4fd4cc1b305069476e0f0440ef0e821b73044eef3a73129c7c1e4df7390f88a76a093d9e3e404ae65550119ed16350be8c18b052c2becbd2a93afb129085aa7a
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"@aws-sdk/credential-provider-env@npm:3.577.0":
|
||||
version: 3.577.0
|
||||
resolution: "@aws-sdk/credential-provider-env@npm:3.577.0"
|
||||
"@aws-sdk/credential-provider-ini@npm:3.758.0":
|
||||
version: 3.758.0
|
||||
resolution: "@aws-sdk/credential-provider-ini@npm:3.758.0"
|
||||
dependencies:
|
||||
"@aws-sdk/types": 3.577.0
|
||||
"@smithy/property-provider": ^3.0.0
|
||||
"@smithy/types": ^3.0.0
|
||||
"@aws-sdk/core": 3.758.0
|
||||
"@aws-sdk/credential-provider-env": 3.758.0
|
||||
"@aws-sdk/credential-provider-http": 3.758.0
|
||||
"@aws-sdk/credential-provider-process": 3.758.0
|
||||
"@aws-sdk/credential-provider-sso": 3.758.0
|
||||
"@aws-sdk/credential-provider-web-identity": 3.758.0
|
||||
"@aws-sdk/nested-clients": 3.758.0
|
||||
"@aws-sdk/types": 3.734.0
|
||||
"@smithy/credential-provider-imds": ^4.0.1
|
||||
"@smithy/property-provider": ^4.0.1
|
||||
"@smithy/shared-ini-file-loader": ^4.0.1
|
||||
"@smithy/types": ^4.1.0
|
||||
tslib: ^2.6.2
|
||||
checksum: 155de3eafccc3eac6b94d53b4ec89b8f7ea313866e245f04887c4b0b274bcc4d04c9a1bc0c1cb7ae238a99aa032bf9c4eab6c1b1b676a06cce0de233ca0a7884
|
||||
checksum: 8904c1a126d0f7b5953a525d9c210ea76c36084736728035068c5089ecf617799c24fe409d2704a8c5085e3eb650a06d62375169bc4e160c856fdcedcb413b3f
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"@aws-sdk/credential-provider-http@npm:3.582.0":
|
||||
version: 3.582.0
|
||||
resolution: "@aws-sdk/credential-provider-http@npm:3.582.0"
|
||||
"@aws-sdk/credential-provider-node@npm:3.758.0":
|
||||
version: 3.758.0
|
||||
resolution: "@aws-sdk/credential-provider-node@npm:3.758.0"
|
||||
dependencies:
|
||||
"@aws-sdk/types": 3.577.0
|
||||
"@smithy/fetch-http-handler": ^3.0.1
|
||||
"@smithy/node-http-handler": ^3.0.0
|
||||
"@smithy/property-provider": ^3.0.0
|
||||
"@smithy/protocol-http": ^4.0.0
|
||||
"@smithy/smithy-client": ^3.0.1
|
||||
"@smithy/types": ^3.0.0
|
||||
"@smithy/util-stream": ^3.0.1
|
||||
"@aws-sdk/credential-provider-env": 3.758.0
|
||||
"@aws-sdk/credential-provider-http": 3.758.0
|
||||
"@aws-sdk/credential-provider-ini": 3.758.0
|
||||
"@aws-sdk/credential-provider-process": 3.758.0
|
||||
"@aws-sdk/credential-provider-sso": 3.758.0
|
||||
"@aws-sdk/credential-provider-web-identity": 3.758.0
|
||||
"@aws-sdk/types": 3.734.0
|
||||
"@smithy/credential-provider-imds": ^4.0.1
|
||||
"@smithy/property-provider": ^4.0.1
|
||||
"@smithy/shared-ini-file-loader": ^4.0.1
|
||||
"@smithy/types": ^4.1.0
|
||||
tslib: ^2.6.2
|
||||
checksum: 19c466e2eaa0f1df4fd0bde89f5d8f5566229c852eab91e0b1b729871906fddc4fb6297278ffd2669c106e7ff991cc46864328b2cb136559a8fda119d83a1363
|
||||
checksum: 8f44c24b74a06ec672bb8662669ce6cba8389c640ef8c7dd480089198d14821769a9f9dc0728654efbfe08359ad627deb96e25869bb8c06b3d435dfbd9ff3454
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"@aws-sdk/credential-provider-ini@npm:3.583.0":
|
||||
version: 3.583.0
|
||||
resolution: "@aws-sdk/credential-provider-ini@npm:3.583.0"
|
||||
"@aws-sdk/credential-provider-process@npm:3.758.0":
|
||||
version: 3.758.0
|
||||
resolution: "@aws-sdk/credential-provider-process@npm:3.758.0"
|
||||
dependencies:
|
||||
"@aws-sdk/credential-provider-env": 3.577.0
|
||||
"@aws-sdk/credential-provider-process": 3.577.0
|
||||
"@aws-sdk/credential-provider-sso": 3.583.0
|
||||
"@aws-sdk/credential-provider-web-identity": 3.577.0
|
||||
"@aws-sdk/types": 3.577.0
|
||||
"@smithy/credential-provider-imds": ^3.0.0
|
||||
"@smithy/property-provider": ^3.0.0
|
||||
"@smithy/shared-ini-file-loader": ^3.0.0
|
||||
"@smithy/types": ^3.0.0
|
||||
"@aws-sdk/core": 3.758.0
|
||||
"@aws-sdk/types": 3.734.0
|
||||
"@smithy/property-provider": ^4.0.1
|
||||
"@smithy/shared-ini-file-loader": ^4.0.1
|
||||
"@smithy/types": ^4.1.0
|
||||
tslib: ^2.6.2
|
||||
peerDependencies:
|
||||
"@aws-sdk/client-sts": ^3.583.0
|
||||
checksum: 055116aa4f492bd972ef458026b20849e7297bd018fc77d11352e47622c416878582138c9cd23d581f8b8596dcc7918cce725a73982c7fdb11eec761fb34a19a
|
||||
checksum: c98c76e4f1c79774a35cb6e07dd8c151da2486e487891fa4f2922a73b6ed58c5f13b695cc4ec3c17257db0f42853c1d036ea10912e0088937e7348705b3cdf87
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"@aws-sdk/credential-provider-node@npm:3.583.0":
|
||||
version: 3.583.0
|
||||
resolution: "@aws-sdk/credential-provider-node@npm:3.583.0"
|
||||
"@aws-sdk/credential-provider-sso@npm:3.758.0":
|
||||
version: 3.758.0
|
||||
resolution: "@aws-sdk/credential-provider-sso@npm:3.758.0"
|
||||
dependencies:
|
||||
"@aws-sdk/credential-provider-env": 3.577.0
|
||||
"@aws-sdk/credential-provider-http": 3.582.0
|
||||
"@aws-sdk/credential-provider-ini": 3.583.0
|
||||
"@aws-sdk/credential-provider-process": 3.577.0
|
||||
"@aws-sdk/credential-provider-sso": 3.583.0
|
||||
"@aws-sdk/credential-provider-web-identity": 3.577.0
|
||||
"@aws-sdk/types": 3.577.0
|
||||
"@smithy/credential-provider-imds": ^3.0.0
|
||||
"@smithy/property-provider": ^3.0.0
|
||||
"@smithy/shared-ini-file-loader": ^3.0.0
|
||||
"@smithy/types": ^3.0.0
|
||||
"@aws-sdk/client-sso": 3.758.0
|
||||
"@aws-sdk/core": 3.758.0
|
||||
"@aws-sdk/token-providers": 3.758.0
|
||||
"@aws-sdk/types": 3.734.0
|
||||
"@smithy/property-provider": ^4.0.1
|
||||
"@smithy/shared-ini-file-loader": ^4.0.1
|
||||
"@smithy/types": ^4.1.0
|
||||
tslib: ^2.6.2
|
||||
checksum: e3bff754eb7d4baafffa9a5167b21314f3f7c84903d9a95ef17c29c38e82b33a5aa724119b540494dec94fab58a7b5e32782c851930f1d9e3468a644a558ad83
|
||||
checksum: 9a9a0437078048114183f768218d1c28f8dc2d1810a53ba9d4297070b52df77ce428939034f93b9373013236264b9417c4f3f6ba7c3656df7be5901f30983bdb
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"@aws-sdk/credential-provider-process@npm:3.577.0":
|
||||
version: 3.577.0
|
||||
resolution: "@aws-sdk/credential-provider-process@npm:3.577.0"
|
||||
"@aws-sdk/credential-provider-web-identity@npm:3.758.0":
|
||||
version: 3.758.0
|
||||
resolution: "@aws-sdk/credential-provider-web-identity@npm:3.758.0"
|
||||
dependencies:
|
||||
"@aws-sdk/types": 3.577.0
|
||||
"@smithy/property-provider": ^3.0.0
|
||||
"@smithy/shared-ini-file-loader": ^3.0.0
|
||||
"@smithy/types": ^3.0.0
|
||||
"@aws-sdk/core": 3.758.0
|
||||
"@aws-sdk/nested-clients": 3.758.0
|
||||
"@aws-sdk/types": 3.734.0
|
||||
"@smithy/property-provider": ^4.0.1
|
||||
"@smithy/types": ^4.1.0
|
||||
tslib: ^2.6.2
|
||||
checksum: aa97aac3407efcd3b72dd3bbd4d38daa158423bce454f93c62fc60b5c9c2cf2077ffe5c58a90d1690559d10731c6dfcac1d9cbcb8286a84d267f2ff7c7d926f4
|
||||
checksum: d50c4da462c03a78ff92f85107c0d1023a1b2b99c35dbb835e2f5863db4ff2a2c900f700042c6fcdc457a9760820b3492fe5cbb0e57ccae40ffdbceea1503f82
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"@aws-sdk/credential-provider-sso@npm:3.583.0":
|
||||
version: 3.583.0
|
||||
resolution: "@aws-sdk/credential-provider-sso@npm:3.583.0"
|
||||
"@aws-sdk/middleware-host-header@npm:3.734.0":
|
||||
version: 3.734.0
|
||||
resolution: "@aws-sdk/middleware-host-header@npm:3.734.0"
|
||||
dependencies:
|
||||
"@aws-sdk/client-sso": 3.583.0
|
||||
"@aws-sdk/token-providers": 3.577.0
|
||||
"@aws-sdk/types": 3.577.0
|
||||
"@smithy/property-provider": ^3.0.0
|
||||
"@smithy/shared-ini-file-loader": ^3.0.0
|
||||
"@smithy/types": ^3.0.0
|
||||
"@aws-sdk/types": 3.734.0
|
||||
"@smithy/protocol-http": ^5.0.1
|
||||
"@smithy/types": ^4.1.0
|
||||
tslib: ^2.6.2
|
||||
checksum: cd2dd6ae4b0cddcf7fcac507158beeb878db947d37f94a53f0573079fb7d1b817525b0c6ab61e384441a2bd608f8a8a45f7e2476a233b66afc3ae6ad23f72116
|
||||
checksum: 38e313f72bb76335c53184954b46fc33c8d05abb35ac19ca177ae0194d4817e84c1c9410607b3e236329736f9b302f4d4428b6ecdbf6dacd2fd258e03fea2958
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"@aws-sdk/credential-provider-web-identity@npm:3.577.0":
|
||||
version: 3.577.0
|
||||
resolution: "@aws-sdk/credential-provider-web-identity@npm:3.577.0"
|
||||
"@aws-sdk/middleware-logger@npm:3.734.0":
|
||||
version: 3.734.0
|
||||
resolution: "@aws-sdk/middleware-logger@npm:3.734.0"
|
||||
dependencies:
|
||||
"@aws-sdk/types": 3.577.0
|
||||
"@smithy/property-provider": ^3.0.0
|
||||
"@smithy/types": ^3.0.0
|
||||
"@aws-sdk/types": 3.734.0
|
||||
"@smithy/types": ^4.1.0
|
||||
tslib: ^2.6.2
|
||||
peerDependencies:
|
||||
"@aws-sdk/client-sts": ^3.577.0
|
||||
checksum: d3eb6c99fe2bfae457c8122b155d0608f0cb0c8fd4bc067f587ffced795b61e4709256842ea629abc0849a085b26d1a946711a646dd87394da6b4d31db7f07e6
|
||||
checksum: e7f8a96c5d3d15e894c36c67ae76beb6059f840c5bfce93f13adf916830053910fe5bfc0473d5da64590a5fae24ae131600b1ddd36322171ff88cdbc6a24fb6a
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"@aws-sdk/middleware-host-header@npm:3.577.0":
|
||||
version: 3.577.0
|
||||
resolution: "@aws-sdk/middleware-host-header@npm:3.577.0"
|
||||
"@aws-sdk/middleware-recursion-detection@npm:3.734.0":
|
||||
version: 3.734.0
|
||||
resolution: "@aws-sdk/middleware-recursion-detection@npm:3.734.0"
|
||||
dependencies:
|
||||
"@aws-sdk/types": 3.577.0
|
||||
"@smithy/protocol-http": ^4.0.0
|
||||
"@smithy/types": ^3.0.0
|
||||
"@aws-sdk/types": 3.734.0
|
||||
"@smithy/protocol-http": ^5.0.1
|
||||
"@smithy/types": ^4.1.0
|
||||
tslib: ^2.6.2
|
||||
checksum: f325612558d8d56a13e0593a78a1807c55dac5913313ed53d0a09a1c4bc771976e74e1738bd46068adeea755c35f72b19c2f902ecad1ff1ae52290972cf9fe88
|
||||
checksum: 96a53708582706fdd24893eb0bb0c6a04d3b4544a8888817d14a95d99170fbe5a4365d68d556474664efb53857d0621e999c1faaff686068c8c54c8a68da8ca8
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"@aws-sdk/middleware-logger@npm:3.577.0":
|
||||
version: 3.577.0
|
||||
resolution: "@aws-sdk/middleware-logger@npm:3.577.0"
|
||||
"@aws-sdk/middleware-user-agent@npm:3.758.0":
|
||||
version: 3.758.0
|
||||
resolution: "@aws-sdk/middleware-user-agent@npm:3.758.0"
|
||||
dependencies:
|
||||
"@aws-sdk/types": 3.577.0
|
||||
"@smithy/types": ^3.0.0
|
||||
"@aws-sdk/core": 3.758.0
|
||||
"@aws-sdk/types": 3.734.0
|
||||
"@aws-sdk/util-endpoints": 3.743.0
|
||||
"@smithy/core": ^3.1.5
|
||||
"@smithy/protocol-http": ^5.0.1
|
||||
"@smithy/types": ^4.1.0
|
||||
tslib: ^2.6.2
|
||||
checksum: 142e993c82997391fb9c66244f2add15ad71e626b9aacf36a81ea369d33e3a1375ece09dd6315bf8fcaf4d8dcbaae340237088f1091f12a8f56740eddb32090a
|
||||
checksum: aa1e3eeb0cc44eca5a82b5df34444a1d73a8f2dbe289746678293f74d282f4d9881e3bb4088e4e65753fba1ef71c4eac433204038d51b3e6319e3dc94a650749
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"@aws-sdk/middleware-recursion-detection@npm:3.577.0":
|
||||
version: 3.577.0
|
||||
resolution: "@aws-sdk/middleware-recursion-detection@npm:3.577.0"
|
||||
"@aws-sdk/nested-clients@npm:3.758.0":
|
||||
version: 3.758.0
|
||||
resolution: "@aws-sdk/nested-clients@npm:3.758.0"
|
||||
dependencies:
|
||||
"@aws-sdk/types": 3.577.0
|
||||
"@smithy/protocol-http": ^4.0.0
|
||||
"@smithy/types": ^3.0.0
|
||||
"@aws-crypto/sha256-browser": 5.2.0
|
||||
"@aws-crypto/sha256-js": 5.2.0
|
||||
"@aws-sdk/core": 3.758.0
|
||||
"@aws-sdk/middleware-host-header": 3.734.0
|
||||
"@aws-sdk/middleware-logger": 3.734.0
|
||||
"@aws-sdk/middleware-recursion-detection": 3.734.0
|
||||
"@aws-sdk/middleware-user-agent": 3.758.0
|
||||
"@aws-sdk/region-config-resolver": 3.734.0
|
||||
"@aws-sdk/types": 3.734.0
|
||||
"@aws-sdk/util-endpoints": 3.743.0
|
||||
"@aws-sdk/util-user-agent-browser": 3.734.0
|
||||
"@aws-sdk/util-user-agent-node": 3.758.0
|
||||
"@smithy/config-resolver": ^4.0.1
|
||||
"@smithy/core": ^3.1.5
|
||||
"@smithy/fetch-http-handler": ^5.0.1
|
||||
"@smithy/hash-node": ^4.0.1
|
||||
"@smithy/invalid-dependency": ^4.0.1
|
||||
"@smithy/middleware-content-length": ^4.0.1
|
||||
"@smithy/middleware-endpoint": ^4.0.6
|
||||
"@smithy/middleware-retry": ^4.0.7
|
||||
"@smithy/middleware-serde": ^4.0.2
|
||||
"@smithy/middleware-stack": ^4.0.1
|
||||
"@smithy/node-config-provider": ^4.0.1
|
||||
"@smithy/node-http-handler": ^4.0.3
|
||||
"@smithy/protocol-http": ^5.0.1
|
||||
"@smithy/smithy-client": ^4.1.6
|
||||
"@smithy/types": ^4.1.0
|
||||
"@smithy/url-parser": ^4.0.1
|
||||
"@smithy/util-base64": ^4.0.0
|
||||
"@smithy/util-body-length-browser": ^4.0.0
|
||||
"@smithy/util-body-length-node": ^4.0.0
|
||||
"@smithy/util-defaults-mode-browser": ^4.0.7
|
||||
"@smithy/util-defaults-mode-node": ^4.0.7
|
||||
"@smithy/util-endpoints": ^3.0.1
|
||||
"@smithy/util-middleware": ^4.0.1
|
||||
"@smithy/util-retry": ^4.0.1
|
||||
"@smithy/util-utf8": ^4.0.0
|
||||
tslib: ^2.6.2
|
||||
checksum: 9655fe7b9a071a9a62397871a7bc529ebfff372a2cd1997b78c22ff320b0cdf0224881c122375e0b97e7307a167d437f438f6c414db71c882afb66a0510a519e
|
||||
checksum: 35f8456f44859d822184849692eb0876a0d97221040247528c355e9f340d0b96dc74445437aafdaef19483a56003fdbdb58abb504cb404c25ba8d4ba0f387643
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"@aws-sdk/middleware-user-agent@npm:3.583.0":
|
||||
version: 3.583.0
|
||||
resolution: "@aws-sdk/middleware-user-agent@npm:3.583.0"
|
||||
"@aws-sdk/region-config-resolver@npm:3.734.0":
|
||||
version: 3.734.0
|
||||
resolution: "@aws-sdk/region-config-resolver@npm:3.734.0"
|
||||
dependencies:
|
||||
"@aws-sdk/types": 3.577.0
|
||||
"@aws-sdk/util-endpoints": 3.583.0
|
||||
"@smithy/protocol-http": ^4.0.0
|
||||
"@smithy/types": ^3.0.0
|
||||
"@aws-sdk/types": 3.734.0
|
||||
"@smithy/node-config-provider": ^4.0.1
|
||||
"@smithy/types": ^4.1.0
|
||||
"@smithy/util-config-provider": ^4.0.0
|
||||
"@smithy/util-middleware": ^4.0.1
|
||||
tslib: ^2.6.2
|
||||
checksum: a704418bb5ba6414345cc0d5464b2554d4ac8efdd9e0cb747a7514673bb687500119c77f9109f4b04975095b72b7be64051dbf5e627975950f37c9e53df0fe5b
|
||||
checksum: ec95c09e6527601d3f12791f64d972fcc9218e2da123ead572e8e4b5ef56ba1e67dabeb6e4b86c68958606af50cb1d853c168bb25b226aca171ca0993604803d
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"@aws-sdk/region-config-resolver@npm:3.577.0":
|
||||
version: 3.577.0
|
||||
resolution: "@aws-sdk/region-config-resolver@npm:3.577.0"
|
||||
"@aws-sdk/token-providers@npm:3.758.0":
|
||||
version: 3.758.0
|
||||
resolution: "@aws-sdk/token-providers@npm:3.758.0"
|
||||
dependencies:
|
||||
"@aws-sdk/types": 3.577.0
|
||||
"@smithy/node-config-provider": ^3.0.0
|
||||
"@smithy/types": ^3.0.0
|
||||
"@smithy/util-config-provider": ^3.0.0
|
||||
"@smithy/util-middleware": ^3.0.0
|
||||
"@aws-sdk/nested-clients": 3.758.0
|
||||
"@aws-sdk/types": 3.734.0
|
||||
"@smithy/property-provider": ^4.0.1
|
||||
"@smithy/shared-ini-file-loader": ^4.0.1
|
||||
"@smithy/types": ^4.1.0
|
||||
tslib: ^2.6.2
|
||||
checksum: 66326254108ca87300bbb7aea7786da617293bb7fe093153eab123ff73a824071b1d3a155827bb9193925704e4f60d01cddfc71018d2e1a82d7609091338acfe
|
||||
checksum: 65603086069383dd6b7c776f6234e49ff1ce46ef45d3ba29e830c3b01cfc704af648f52a10700cf25fb2b5b36f0de57c9684b4f54a0d5eb197779bbbbc8d041a
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"@aws-sdk/token-providers@npm:3.577.0":
|
||||
version: 3.577.0
|
||||
resolution: "@aws-sdk/token-providers@npm:3.577.0"
|
||||
"@aws-sdk/types@npm:3.734.0":
|
||||
version: 3.734.0
|
||||
resolution: "@aws-sdk/types@npm:3.734.0"
|
||||
dependencies:
|
||||
"@aws-sdk/types": 3.577.0
|
||||
"@smithy/property-provider": ^3.0.0
|
||||
"@smithy/shared-ini-file-loader": ^3.0.0
|
||||
"@smithy/types": ^3.0.0
|
||||
"@smithy/types": ^4.1.0
|
||||
tslib: ^2.6.2
|
||||
peerDependencies:
|
||||
"@aws-sdk/client-sso-oidc": ^3.577.0
|
||||
checksum: e0437ed4af6d1b78d457a7c8abc8367e3c9134c678e945af776d3882175b6b0e73cfd9a49493da4e689aea51dd654ea58ab22fb88a336bb0cd29310dea4c90f2
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"@aws-sdk/types@npm:3.577.0":
|
||||
version: 3.577.0
|
||||
resolution: "@aws-sdk/types@npm:3.577.0"
|
||||
dependencies:
|
||||
"@smithy/types": ^3.0.0
|
||||
tslib: ^2.6.2
|
||||
checksum: d10fe1d720adf3d8b17d5c23787611e336509569df7526efa96e8901100b9279a68e30a207eff60dc5cfa011abd68d47b81e40f2d4d1a9ddfd2d3653c20e1734
|
||||
checksum: 7e113233f91905a8b4622715a5cc45f0a9d4eda00614845885ecb5743d0339448282ba615597e291fa64b5e41a6f53965c6d6623d617b3c280830b48fe9771ed
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
@@ -685,15 +648,15 @@ __metadata:
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"@aws-sdk/util-endpoints@npm:3.583.0":
|
||||
version: 3.583.0
|
||||
resolution: "@aws-sdk/util-endpoints@npm:3.583.0"
|
||||
"@aws-sdk/util-endpoints@npm:3.743.0":
|
||||
version: 3.743.0
|
||||
resolution: "@aws-sdk/util-endpoints@npm:3.743.0"
|
||||
dependencies:
|
||||
"@aws-sdk/types": 3.577.0
|
||||
"@smithy/types": ^3.0.0
|
||||
"@smithy/util-endpoints": ^2.0.0
|
||||
"@aws-sdk/types": 3.734.0
|
||||
"@smithy/types": ^4.1.0
|
||||
"@smithy/util-endpoints": ^3.0.1
|
||||
tslib: ^2.6.2
|
||||
checksum: 8494b939f43f18ea286083b5a8d2c8aeba65361f922066b195400f43ea5b165438d0fe3f6064a7d5a21c980adf84d702da42ba733fc41f9374c36e3ef277c408
|
||||
checksum: 1e4639ee30b71a63d2f1bd378d31fdad682523236b7bdb28282240a104bc0ac2cf4c96b3cb19a15c0d5dab2a6eda185f7db3a475ec7d8e4db914cafdc72198c9
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
@@ -706,41 +669,33 @@ __metadata:
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"@aws-sdk/util-user-agent-browser@npm:3.577.0":
|
||||
version: 3.577.0
|
||||
resolution: "@aws-sdk/util-user-agent-browser@npm:3.577.0"
|
||||
"@aws-sdk/util-user-agent-browser@npm:3.734.0":
|
||||
version: 3.734.0
|
||||
resolution: "@aws-sdk/util-user-agent-browser@npm:3.734.0"
|
||||
dependencies:
|
||||
"@aws-sdk/types": 3.577.0
|
||||
"@smithy/types": ^3.0.0
|
||||
"@aws-sdk/types": 3.734.0
|
||||
"@smithy/types": ^4.1.0
|
||||
bowser: ^2.11.0
|
||||
tslib: ^2.6.2
|
||||
checksum: 48b29b186f9d59c7ee272568cb0752834527aeccf122e4794313f84fb4c72dc65edf4bbf22f07aa7e2dde7da288e6d7ba20633edd9dbc853aca1b170bdfe1532
|
||||
checksum: 5c75eadca3912c8ffcb2bdabc16ee24fc6e05ac1b077662d50c72575ad449ce94669a841c5da5fff9231edfd0a23b1e85258a589cbc2b0de5bbf4b9031e77c77
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"@aws-sdk/util-user-agent-node@npm:3.577.0":
|
||||
version: 3.577.0
|
||||
resolution: "@aws-sdk/util-user-agent-node@npm:3.577.0"
|
||||
"@aws-sdk/util-user-agent-node@npm:3.758.0":
|
||||
version: 3.758.0
|
||||
resolution: "@aws-sdk/util-user-agent-node@npm:3.758.0"
|
||||
dependencies:
|
||||
"@aws-sdk/types": 3.577.0
|
||||
"@smithy/node-config-provider": ^3.0.0
|
||||
"@smithy/types": ^3.0.0
|
||||
"@aws-sdk/middleware-user-agent": 3.758.0
|
||||
"@aws-sdk/types": 3.734.0
|
||||
"@smithy/node-config-provider": ^4.0.1
|
||||
"@smithy/types": ^4.1.0
|
||||
tslib: ^2.6.2
|
||||
peerDependencies:
|
||||
aws-crt: ">=1.0.0"
|
||||
peerDependenciesMeta:
|
||||
aws-crt:
|
||||
optional: true
|
||||
checksum: 732fb562a02826fbe0e0ce2571c4f396b14515a57f01121e99b84088761f1cf6e47e03c9a3613e51f3ff34aae8eae3b47440e0e012a9f54096e7f2b244705ef5
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"@aws-sdk/util-utf8-browser@npm:^3.0.0":
|
||||
version: 3.188.0
|
||||
resolution: "@aws-sdk/util-utf8-browser@npm:3.188.0"
|
||||
dependencies:
|
||||
tslib: ^2.3.1
|
||||
checksum: dacd27164aa0835888434e080b67f04510e2281560540ff73496f2d0aa73b0b7f830ec08491b35c3a51bf6214615579182aff8727e151e54a74a97a197a2ac31
|
||||
checksum: 83760133a69a67265501ec9b128c2d7e63034bad7e691d116a8f1a8dffecd208cc63896506581158dd567d09f38d314f07a24d8af9ddf98ad8bea1b04db36d81
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
@@ -1659,32 +1614,32 @@ __metadata:
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"@docker/actions-toolkit@npm:^0.35.0":
|
||||
version: 0.35.0
|
||||
resolution: "@docker/actions-toolkit@npm:0.35.0"
|
||||
"@docker/actions-toolkit@npm:^0.57.0":
|
||||
version: 0.57.0
|
||||
resolution: "@docker/actions-toolkit@npm:0.57.0"
|
||||
dependencies:
|
||||
"@actions/artifact": ^2.1.8
|
||||
"@actions/cache": ^3.2.4
|
||||
"@actions/core": ^1.10.1
|
||||
"@actions/artifact": ^2.3.0
|
||||
"@actions/cache": ^4.0.2
|
||||
"@actions/core": ^1.11.1
|
||||
"@actions/exec": ^1.1.1
|
||||
"@actions/github": ^6.0.0
|
||||
"@actions/http-client": ^2.2.1
|
||||
"@actions/http-client": ^2.2.3
|
||||
"@actions/io": ^1.1.3
|
||||
"@actions/tool-cache": ^2.0.1
|
||||
"@actions/tool-cache": ^2.0.2
|
||||
"@azure/storage-blob": ^12.15.0
|
||||
"@octokit/core": ^5.1.0
|
||||
"@octokit/plugin-rest-endpoint-methods": ^10.4.0
|
||||
async-retry: ^1.3.3
|
||||
csv-parse: ^5.5.6
|
||||
csv-parse: ^5.6.0
|
||||
gunzip-maybe: ^1.4.2
|
||||
handlebars: ^4.7.8
|
||||
he: ^1.2.0
|
||||
js-yaml: ^4.1.0
|
||||
jwt-decode: ^4.0.0
|
||||
semver: ^7.6.3
|
||||
semver: ^7.7.1
|
||||
tar-stream: ^3.1.7
|
||||
tmp: ^0.2.3
|
||||
checksum: 27fa4a500e94beff376bc322cc1074c82b20f6ceb0104c43ed5efc613763c8b7ea37b231c32c4dfcb5f7ce8a14948eecc799aa363d60d11d848466d5718d63f0
|
||||
checksum: d25b85d85d79a2ddb01ed7cd858d2c0dedae7545a1fd991517ae71aa53ccd91e3b295ed8a5b48f4c9a7b6486cdf25a47a9e123135f8bffac47af1c60551d268d
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
@@ -2477,7 +2432,7 @@ __metadata:
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"@protobuf-ts/plugin-framework@npm:^2.0.7, @protobuf-ts/plugin-framework@npm:^2.9.4":
|
||||
"@protobuf-ts/plugin-framework@npm:^2.9.4":
|
||||
version: 2.9.4
|
||||
resolution: "@protobuf-ts/plugin-framework@npm:2.9.4"
|
||||
dependencies:
|
||||
@@ -2487,6 +2442,16 @@ __metadata:
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"@protobuf-ts/plugin-framework@npm:^2.9.5":
|
||||
version: 2.9.5
|
||||
resolution: "@protobuf-ts/plugin-framework@npm:2.9.5"
|
||||
dependencies:
|
||||
"@protobuf-ts/runtime": ^2.9.5
|
||||
typescript: ^3.9
|
||||
checksum: 80356c1032338a23bdf667bac22962fd1612ed7605d8efa3c6d45901830549a0fba1592eb877a1b138fd82ed2ecc4dfcd6207c3a94e9cbd476b139d172faf1c6
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"@protobuf-ts/plugin@npm:^2.2.3-alpha.1":
|
||||
version: 2.9.4
|
||||
resolution: "@protobuf-ts/plugin@npm:2.9.4"
|
||||
@@ -2503,6 +2468,22 @@ __metadata:
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"@protobuf-ts/plugin@npm:^2.9.4":
|
||||
version: 2.9.5
|
||||
resolution: "@protobuf-ts/plugin@npm:2.9.5"
|
||||
dependencies:
|
||||
"@protobuf-ts/plugin-framework": ^2.9.5
|
||||
"@protobuf-ts/protoc": ^2.9.5
|
||||
"@protobuf-ts/runtime": ^2.9.5
|
||||
"@protobuf-ts/runtime-rpc": ^2.9.5
|
||||
typescript: ^3.9
|
||||
bin:
|
||||
protoc-gen-dump: bin/protoc-gen-dump
|
||||
protoc-gen-ts: bin/protoc-gen-ts
|
||||
checksum: 2d9ed58f645e30fefe4b8143371623b59edccc63230e21a32533e8d2088bee12d69d923099e2d0424bbe0b283b91973d3c3d85a39ce3a1e1edbe76a02f4e8319
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"@protobuf-ts/protoc@npm:^2.9.4":
|
||||
version: 2.9.4
|
||||
resolution: "@protobuf-ts/protoc@npm:2.9.4"
|
||||
@@ -2512,6 +2493,15 @@ __metadata:
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"@protobuf-ts/protoc@npm:^2.9.5":
|
||||
version: 2.9.5
|
||||
resolution: "@protobuf-ts/protoc@npm:2.9.5"
|
||||
bin:
|
||||
protoc: protoc.js
|
||||
checksum: ef800d74bb765b5c462adb1e05b0f6f8019a5d6d40d2036ef7bfcc4d26d8eefa6cc7caaac328d0ca33d2298dc26bd8651c151fc1a4f40157002a076b72eca914
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"@protobuf-ts/runtime-rpc@npm:^2.9.4":
|
||||
version: 2.9.4
|
||||
resolution: "@protobuf-ts/runtime-rpc@npm:2.9.4"
|
||||
@@ -2521,6 +2511,15 @@ __metadata:
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"@protobuf-ts/runtime-rpc@npm:^2.9.5":
|
||||
version: 2.9.5
|
||||
resolution: "@protobuf-ts/runtime-rpc@npm:2.9.5"
|
||||
dependencies:
|
||||
"@protobuf-ts/runtime": ^2.9.5
|
||||
checksum: 490b2d25190ffa11ad673b3fde3cf8e2831a153c9e857a93af6c8022b39ce0e481235b2daf9524ee18230ad9ebdef741e1c78ad46bd19fba33056c7d99a6be43
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"@protobuf-ts/runtime@npm:^2.9.4":
|
||||
version: 2.9.4
|
||||
resolution: "@protobuf-ts/runtime@npm:2.9.4"
|
||||
@@ -2528,6 +2527,13 @@ __metadata:
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"@protobuf-ts/runtime@npm:^2.9.5":
|
||||
version: 2.9.5
|
||||
resolution: "@protobuf-ts/runtime@npm:2.9.5"
|
||||
checksum: b48ea858122e9427a3befd9d32b43ab00f95dd2a5eb107e124ea1f49fb2bdf3557634059a429286537ff5e34176b9e0ea5f5513d7e5dd46e5c38a22647005fe3
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"@sinclair/typebox@npm:^0.25.16":
|
||||
version: 0.25.24
|
||||
resolution: "@sinclair/typebox@npm:0.25.24"
|
||||
@@ -2560,276 +2566,288 @@ __metadata:
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"@smithy/abort-controller@npm:^3.0.0":
|
||||
version: 3.0.0
|
||||
resolution: "@smithy/abort-controller@npm:3.0.0"
|
||||
"@smithy/abort-controller@npm:^4.0.1":
|
||||
version: 4.0.1
|
||||
resolution: "@smithy/abort-controller@npm:4.0.1"
|
||||
dependencies:
|
||||
"@smithy/types": ^3.0.0
|
||||
"@smithy/types": ^4.1.0
|
||||
tslib: ^2.6.2
|
||||
checksum: 8ad1551b558d5cb14e60fdaf07663d37828d11e9bb0faccfa3622ee0b0ddd7c7eab97ae36f501fd3d5bdcb9c570ed4e9ed84cb7b4490053900d20399297f95b5
|
||||
checksum: 9f6ac65639ae5823e7ea83fcd05282fca105adecda8a40bd4280cacb87ef2af935cf18e649897369db53c1b82c81fcdea75240260ca0ce9795ee22d6afa4f067
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"@smithy/config-resolver@npm:^3.0.0":
|
||||
version: 3.0.0
|
||||
resolution: "@smithy/config-resolver@npm:3.0.0"
|
||||
"@smithy/config-resolver@npm:^4.0.1":
|
||||
version: 4.0.1
|
||||
resolution: "@smithy/config-resolver@npm:4.0.1"
|
||||
dependencies:
|
||||
"@smithy/node-config-provider": ^3.0.0
|
||||
"@smithy/types": ^3.0.0
|
||||
"@smithy/util-config-provider": ^3.0.0
|
||||
"@smithy/util-middleware": ^3.0.0
|
||||
"@smithy/node-config-provider": ^4.0.1
|
||||
"@smithy/types": ^4.1.0
|
||||
"@smithy/util-config-provider": ^4.0.0
|
||||
"@smithy/util-middleware": ^4.0.1
|
||||
tslib: ^2.6.2
|
||||
checksum: 66d66e0c054e90e8dec61d1f8f774709f0e3d5227cec30221c27cc21fb51bbd691c0281f8f01bc4cc0a3472cb7776db3544260a45f8104b0ba1493c27ff2794b
|
||||
checksum: 24035ea6766693668f0776f8eed3d0a81aecbabf925e48c20ef759e6a95b39cd3e1b04efd819860d46727fe094382803fe3f625a0fbfcd652196753b44b7864f
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"@smithy/core@npm:^2.0.1":
|
||||
version: 2.0.1
|
||||
resolution: "@smithy/core@npm:2.0.1"
|
||||
"@smithy/core@npm:^3.1.5":
|
||||
version: 3.1.5
|
||||
resolution: "@smithy/core@npm:3.1.5"
|
||||
dependencies:
|
||||
"@smithy/middleware-endpoint": ^3.0.0
|
||||
"@smithy/middleware-retry": ^3.0.1
|
||||
"@smithy/middleware-serde": ^3.0.0
|
||||
"@smithy/protocol-http": ^4.0.0
|
||||
"@smithy/smithy-client": ^3.0.1
|
||||
"@smithy/types": ^3.0.0
|
||||
"@smithy/util-middleware": ^3.0.0
|
||||
"@smithy/middleware-serde": ^4.0.2
|
||||
"@smithy/protocol-http": ^5.0.1
|
||||
"@smithy/types": ^4.1.0
|
||||
"@smithy/util-body-length-browser": ^4.0.0
|
||||
"@smithy/util-middleware": ^4.0.1
|
||||
"@smithy/util-stream": ^4.1.2
|
||||
"@smithy/util-utf8": ^4.0.0
|
||||
tslib: ^2.6.2
|
||||
checksum: 6a02cfc67ea6f7eac367c41c7200c604bbd087a02c418aa69e1cc833b4f0693b1e28205eb62f516ca62ad4cac851a06f435ceaa4505f73b44f89790c11a1e889
|
||||
checksum: 39154aed37228e66c7a96d5305dd5f1a8fbd742c672ca9782efc032b025b8e78f1403ab88fd00ae8fb5eaa2eb3cca7b2f7736be331c39a19386a0cc0987ba285
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"@smithy/credential-provider-imds@npm:^3.0.0":
|
||||
version: 3.0.0
|
||||
resolution: "@smithy/credential-provider-imds@npm:3.0.0"
|
||||
"@smithy/credential-provider-imds@npm:^4.0.1":
|
||||
version: 4.0.1
|
||||
resolution: "@smithy/credential-provider-imds@npm:4.0.1"
|
||||
dependencies:
|
||||
"@smithy/node-config-provider": ^3.0.0
|
||||
"@smithy/property-provider": ^3.0.0
|
||||
"@smithy/types": ^3.0.0
|
||||
"@smithy/url-parser": ^3.0.0
|
||||
"@smithy/node-config-provider": ^4.0.1
|
||||
"@smithy/property-provider": ^4.0.1
|
||||
"@smithy/types": ^4.1.0
|
||||
"@smithy/url-parser": ^4.0.1
|
||||
tslib: ^2.6.2
|
||||
checksum: f592303f6247ae3f404cc6dce108c69f88ffcc56d11fc219e16d101ec58b00141d6253c3f0bedb4a6cf4de5df9cea29514851647aa1a9d0ebe5865fdce37a7ca
|
||||
checksum: ec03248abf9b2e89f5a49539d2a069c3d034af35dc49a09d260dd58662ac0b639c6463d1eaa7d80253b8168c67ecb00de8c79376ed65433fc20f8e934a9017d9
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"@smithy/fetch-http-handler@npm:^3.0.1":
|
||||
version: 3.0.1
|
||||
resolution: "@smithy/fetch-http-handler@npm:3.0.1"
|
||||
"@smithy/fetch-http-handler@npm:^5.0.1":
|
||||
version: 5.0.1
|
||||
resolution: "@smithy/fetch-http-handler@npm:5.0.1"
|
||||
dependencies:
|
||||
"@smithy/protocol-http": ^4.0.0
|
||||
"@smithy/querystring-builder": ^3.0.0
|
||||
"@smithy/types": ^3.0.0
|
||||
"@smithy/util-base64": ^3.0.0
|
||||
"@smithy/protocol-http": ^5.0.1
|
||||
"@smithy/querystring-builder": ^4.0.1
|
||||
"@smithy/types": ^4.1.0
|
||||
"@smithy/util-base64": ^4.0.0
|
||||
tslib: ^2.6.2
|
||||
checksum: ddb6e1ad989f5f02e7af7ea17a2f8e742f99e53358d64c57803a4fa9dd12e2a4a1c5c5ff69e912937bed661a6a4c583eb184c5e159be720170b686d66647dd01
|
||||
checksum: d8e160e4a57e1fb7b7805fcafda81fb7d7511904b48d2e25229d18bd15598c64cdd12bd39c0dee9fc9cc31a76952fae1d400c6a80e9015cfd6e22c2f930a6212
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"@smithy/hash-node@npm:^3.0.0":
|
||||
version: 3.0.0
|
||||
resolution: "@smithy/hash-node@npm:3.0.0"
|
||||
"@smithy/hash-node@npm:^4.0.1":
|
||||
version: 4.0.1
|
||||
resolution: "@smithy/hash-node@npm:4.0.1"
|
||||
dependencies:
|
||||
"@smithy/types": ^3.0.0
|
||||
"@smithy/util-buffer-from": ^3.0.0
|
||||
"@smithy/util-utf8": ^3.0.0
|
||||
"@smithy/types": ^4.1.0
|
||||
"@smithy/util-buffer-from": ^4.0.0
|
||||
"@smithy/util-utf8": ^4.0.0
|
||||
tslib: ^2.6.2
|
||||
checksum: ef2520c1e5c7dc7669a2870881edaa9fac07e2bffa300d2434d599453dbce1b0c5239de6fb6d55f121a467e144a1f5c6d7f8d1ddf4547ce86d3e81827289752d
|
||||
checksum: c68d222d4c39e97e90965cc669b6d30628b07ae136f49981ff551bccd5c104161fd2a322ebea85514c925e1d3525e413c05513e303a76e7af6c3e0cdb55960d0
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"@smithy/invalid-dependency@npm:^3.0.0":
|
||||
version: 3.0.0
|
||||
resolution: "@smithy/invalid-dependency@npm:3.0.0"
|
||||
"@smithy/invalid-dependency@npm:^4.0.1":
|
||||
version: 4.0.1
|
||||
resolution: "@smithy/invalid-dependency@npm:4.0.1"
|
||||
dependencies:
|
||||
"@smithy/types": ^3.0.0
|
||||
"@smithy/types": ^4.1.0
|
||||
tslib: ^2.6.2
|
||||
checksum: 3227d5d8ba49d6ca09f95215614d41b75a717985ac2f5c4caa5c082dc87e1a510e1d1af738fe27cdb93c8425a189b2ec74a7d57d949cefa8cbcd62ed83ceb798
|
||||
checksum: 541e89a18cb5ce8db063ea74ea8831a11bdf42ac58412ae6aad350d4a128b6e9d3b0b5b31cac2597e5e52a0da4a2a3cf202946bb6649d398a84876a89c332bd1
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"@smithy/is-array-buffer@npm:^3.0.0":
|
||||
version: 3.0.0
|
||||
resolution: "@smithy/is-array-buffer@npm:3.0.0"
|
||||
"@smithy/is-array-buffer@npm:^2.2.0":
|
||||
version: 2.2.0
|
||||
resolution: "@smithy/is-array-buffer@npm:2.2.0"
|
||||
dependencies:
|
||||
tslib: ^2.6.2
|
||||
checksum: ce7440fcb1ce3c46722cff11c33e2f62a9df86d74fa2054a8e6b540302a91211cf6e4e3b1b7aac7030c6c8909158c1b6867c394201fa8afc6b631979956610e5
|
||||
checksum: cd12c2e27884fec89ca8966d33c9dc34d3234efe89b33a9b309c61ebcde463e6f15f6a02d31d4fddbfd6e5904743524ca5b95021b517b98fe10957c2da0cd5fc
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"@smithy/middleware-content-length@npm:^3.0.0":
|
||||
version: 3.0.0
|
||||
resolution: "@smithy/middleware-content-length@npm:3.0.0"
|
||||
"@smithy/is-array-buffer@npm:^4.0.0":
|
||||
version: 4.0.0
|
||||
resolution: "@smithy/is-array-buffer@npm:4.0.0"
|
||||
dependencies:
|
||||
"@smithy/protocol-http": ^4.0.0
|
||||
"@smithy/types": ^3.0.0
|
||||
tslib: ^2.6.2
|
||||
checksum: 658474b9c10696f701ae32a741c357192d4e8e1f409855093a3660fa21d4785972f2ec1c6973d159a875437a414c4f6e64b2fd0e12a7242cb5d73679b3283667
|
||||
checksum: 8226fc1eca7aacd7f887f3a5ec2f15a3cafa72aa1c42d3fc759c66600481381d18ec7285a8195f24b9c4fe0ce9a565c133b2021d86a8077aebce3f86b3716802
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"@smithy/middleware-endpoint@npm:^3.0.0":
|
||||
version: 3.0.0
|
||||
resolution: "@smithy/middleware-endpoint@npm:3.0.0"
|
||||
"@smithy/middleware-content-length@npm:^4.0.1":
|
||||
version: 4.0.1
|
||||
resolution: "@smithy/middleware-content-length@npm:4.0.1"
|
||||
dependencies:
|
||||
"@smithy/middleware-serde": ^3.0.0
|
||||
"@smithy/node-config-provider": ^3.0.0
|
||||
"@smithy/shared-ini-file-loader": ^3.0.0
|
||||
"@smithy/types": ^3.0.0
|
||||
"@smithy/url-parser": ^3.0.0
|
||||
"@smithy/util-middleware": ^3.0.0
|
||||
"@smithy/protocol-http": ^5.0.1
|
||||
"@smithy/types": ^4.1.0
|
||||
tslib: ^2.6.2
|
||||
checksum: a1be07b91f4ddcd6b5358bb8b43529756a80aefb451bd95b2d69e5743229ad7c8d55eed0ad73225301b833dd05173760fa0453891640d4407b4d8f4006c566f5
|
||||
checksum: 61109cfee368b8b20d39efcc050c0a30c4a4355dc4fb1c8521b1ec258c35c454bda9a6489571b01eb14c48e030642fd674d28e6c8083e6e4272b2b24cee0e61e
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"@smithy/middleware-retry@npm:^3.0.1":
|
||||
version: 3.0.1
|
||||
resolution: "@smithy/middleware-retry@npm:3.0.1"
|
||||
"@smithy/middleware-endpoint@npm:^4.0.6":
|
||||
version: 4.0.6
|
||||
resolution: "@smithy/middleware-endpoint@npm:4.0.6"
|
||||
dependencies:
|
||||
"@smithy/node-config-provider": ^3.0.0
|
||||
"@smithy/protocol-http": ^4.0.0
|
||||
"@smithy/service-error-classification": ^3.0.0
|
||||
"@smithy/smithy-client": ^3.0.1
|
||||
"@smithy/types": ^3.0.0
|
||||
"@smithy/util-middleware": ^3.0.0
|
||||
"@smithy/util-retry": ^3.0.0
|
||||
"@smithy/core": ^3.1.5
|
||||
"@smithy/middleware-serde": ^4.0.2
|
||||
"@smithy/node-config-provider": ^4.0.1
|
||||
"@smithy/shared-ini-file-loader": ^4.0.1
|
||||
"@smithy/types": ^4.1.0
|
||||
"@smithy/url-parser": ^4.0.1
|
||||
"@smithy/util-middleware": ^4.0.1
|
||||
tslib: ^2.6.2
|
||||
checksum: d023df4eeecc0d6148e2d8bbd5aa8272e232ceb92b9e6e7b409fbbd557c41cf15fecfc51c3b90a4437c9941403bcd45e5e7bd24f9a0081ef086d2a0ffd2f226d
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"@smithy/middleware-retry@npm:^4.0.7":
|
||||
version: 4.0.7
|
||||
resolution: "@smithy/middleware-retry@npm:4.0.7"
|
||||
dependencies:
|
||||
"@smithy/node-config-provider": ^4.0.1
|
||||
"@smithy/protocol-http": ^5.0.1
|
||||
"@smithy/service-error-classification": ^4.0.1
|
||||
"@smithy/smithy-client": ^4.1.6
|
||||
"@smithy/types": ^4.1.0
|
||||
"@smithy/util-middleware": ^4.0.1
|
||||
"@smithy/util-retry": ^4.0.1
|
||||
tslib: ^2.6.2
|
||||
uuid: ^9.0.1
|
||||
checksum: 33b1c5173ccbcbfd8127ef6009ec167d80fbd539cad35372b25a05b75b1a3b999bba39a3327a46916f41512d8ee4d3d6cfd56bbfdc36867118bee9cac4d94ab3
|
||||
checksum: 5226c44515fb971889d22c7b93d717be54edd90427f9c967b482255a9cdc3259c717275f42f41af2497702b03e42c4e247a6a397e12b605e98a3a36fdd772929
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"@smithy/middleware-serde@npm:^3.0.0":
|
||||
version: 3.0.0
|
||||
resolution: "@smithy/middleware-serde@npm:3.0.0"
|
||||
"@smithy/middleware-serde@npm:^4.0.2":
|
||||
version: 4.0.2
|
||||
resolution: "@smithy/middleware-serde@npm:4.0.2"
|
||||
dependencies:
|
||||
"@smithy/types": ^3.0.0
|
||||
"@smithy/types": ^4.1.0
|
||||
tslib: ^2.6.2
|
||||
checksum: 9520948ab8fbe50f17eb4fdc2065a068cc9b954c876c354c355cd729ad29790815c4acd4fdafe32456e81308ec2266d35e82aa69fedbcb0cad1981785fc87c25
|
||||
checksum: 51f33cf1f34bb7034a49025664b1575d7dd9450a3c12655b49d5804b5eeeec6e024991715d217f661eddc506ad91abc23a8f3c8f0cfeb7e2b45aa079ed61cd85
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"@smithy/middleware-stack@npm:^3.0.0":
|
||||
version: 3.0.0
|
||||
resolution: "@smithy/middleware-stack@npm:3.0.0"
|
||||
"@smithy/middleware-stack@npm:^4.0.1":
|
||||
version: 4.0.1
|
||||
resolution: "@smithy/middleware-stack@npm:4.0.1"
|
||||
dependencies:
|
||||
"@smithy/types": ^3.0.0
|
||||
"@smithy/types": ^4.1.0
|
||||
tslib: ^2.6.2
|
||||
checksum: ca2e9e41aa78dc0e50b51cf94ff3d85ee86a0e241dde5f41640bf4401b862519ba52824c2ad04d861f6e9325749bacfd5ff4be0fef67c8b6f084c9935cce57ca
|
||||
checksum: 21f61adf5071c6c32356c9f6b2423fffc0ba0cfdedae37b5162659e156bec122e03f67a5dac5fbd224f9bbb15a6793fd332cf1a02ea17eda0c4fb7e4ca22ce95
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"@smithy/node-config-provider@npm:^3.0.0":
|
||||
version: 3.0.0
|
||||
resolution: "@smithy/node-config-provider@npm:3.0.0"
|
||||
"@smithy/node-config-provider@npm:^4.0.1":
|
||||
version: 4.0.1
|
||||
resolution: "@smithy/node-config-provider@npm:4.0.1"
|
||||
dependencies:
|
||||
"@smithy/property-provider": ^3.0.0
|
||||
"@smithy/shared-ini-file-loader": ^3.0.0
|
||||
"@smithy/types": ^3.0.0
|
||||
"@smithy/property-provider": ^4.0.1
|
||||
"@smithy/shared-ini-file-loader": ^4.0.1
|
||||
"@smithy/types": ^4.1.0
|
||||
tslib: ^2.6.2
|
||||
checksum: 2c2de21e40bcaf85faa27fe856d0c61257fd05c6b205eb7799a26cf1bea7c25023f7951b0b48730c8b77569a3a762ddaa462c5eca193ae051431ebd553c1e637
|
||||
checksum: e997b3732a686e1dd9c5544a97fb18519acb45d522700045301391eee4a7b305a31ed68dd3a407fe754bebdfd4b759d8128a4bc80cdcd490113934ef8c3aaaa7
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"@smithy/node-http-handler@npm:^3.0.0":
|
||||
version: 3.0.0
|
||||
resolution: "@smithy/node-http-handler@npm:3.0.0"
|
||||
"@smithy/node-http-handler@npm:^4.0.3":
|
||||
version: 4.0.3
|
||||
resolution: "@smithy/node-http-handler@npm:4.0.3"
|
||||
dependencies:
|
||||
"@smithy/abort-controller": ^3.0.0
|
||||
"@smithy/protocol-http": ^4.0.0
|
||||
"@smithy/querystring-builder": ^3.0.0
|
||||
"@smithy/types": ^3.0.0
|
||||
"@smithy/abort-controller": ^4.0.1
|
||||
"@smithy/protocol-http": ^5.0.1
|
||||
"@smithy/querystring-builder": ^4.0.1
|
||||
"@smithy/types": ^4.1.0
|
||||
tslib: ^2.6.2
|
||||
checksum: 194542f2abbc1f1ccd9655eb4d06b2fead212e71954d20ca429904dfd7c49f2ea13c06604c31cd7700af53971d86534ec9e0b53c16479dc1491569a99aee67d7
|
||||
checksum: 78d00526df2d54d8a639bebd904dfe35ec51595d341bb8134e81ec57740e4cbbe415db17365f439365a691b42e3ee51b766f4478a9068a86bdf887972df8d876
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"@smithy/property-provider@npm:^3.0.0":
|
||||
version: 3.0.0
|
||||
resolution: "@smithy/property-provider@npm:3.0.0"
|
||||
"@smithy/property-provider@npm:^4.0.1":
|
||||
version: 4.0.1
|
||||
resolution: "@smithy/property-provider@npm:4.0.1"
|
||||
dependencies:
|
||||
"@smithy/types": ^3.0.0
|
||||
"@smithy/types": ^4.1.0
|
||||
tslib: ^2.6.2
|
||||
checksum: 741cb59b7eab30910a2e38bee1c489120d6b6ef4b3682d556abcf9ddf545a9249902281d72f4a0282953e6f2ec9b6aa0bac8e5003cb0ff389475b4c793ac83e1
|
||||
checksum: c03bd23a9e707af6201e49d1d7c67d370b630eb39ab60eaebd628bda725105d3ed67392078d6ae73a22be35f7dcec9771fafd2a88c48b532ca717b68fc3c9a33
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"@smithy/protocol-http@npm:^4.0.0":
|
||||
version: 4.0.0
|
||||
resolution: "@smithy/protocol-http@npm:4.0.0"
|
||||
"@smithy/protocol-http@npm:^5.0.1":
|
||||
version: 5.0.1
|
||||
resolution: "@smithy/protocol-http@npm:5.0.1"
|
||||
dependencies:
|
||||
"@smithy/types": ^3.0.0
|
||||
"@smithy/types": ^4.1.0
|
||||
tslib: ^2.6.2
|
||||
checksum: 0cea8e4933b1ca888f755495ac10cec9191678eb3425b755443479a1653223eede0d031a3b4cc04a34b80c4ed7b06d7e0a576f577988d876b81982aa84e31bfc
|
||||
checksum: 3978f544aa4bf36bcf2484126f5208f7035b210ca0088f2721edd11dbe7bbddeacb6b9e7ca493437dc7b5fdd0d9d85992f2c6e31846744690f205f852a981a3b
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"@smithy/querystring-builder@npm:^3.0.0":
|
||||
version: 3.0.0
|
||||
resolution: "@smithy/querystring-builder@npm:3.0.0"
|
||||
"@smithy/querystring-builder@npm:^4.0.1":
|
||||
version: 4.0.1
|
||||
resolution: "@smithy/querystring-builder@npm:4.0.1"
|
||||
dependencies:
|
||||
"@smithy/types": ^3.0.0
|
||||
"@smithy/util-uri-escape": ^3.0.0
|
||||
"@smithy/types": ^4.1.0
|
||||
"@smithy/util-uri-escape": ^4.0.0
|
||||
tslib: ^2.6.2
|
||||
checksum: 28a8a243002560f0928bf73b4686a0f81ed867957a033c2fc9fb249fb7006f076e78fcb506c96956e9d1d5e34a4c6228d0aeb7fcdc9418cdfe3377084e0654f4
|
||||
checksum: 8c8486a1c5a8f7cb05db4fdbe213bd02a9b323121da885ff234763d63730aa269ce779adc4dea74715fbf53a7ff4f487d9d51dda33ddb14533ad42166f10b0cb
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"@smithy/querystring-parser@npm:^3.0.0":
|
||||
version: 3.0.0
|
||||
resolution: "@smithy/querystring-parser@npm:3.0.0"
|
||||
"@smithy/querystring-parser@npm:^4.0.1":
|
||||
version: 4.0.1
|
||||
resolution: "@smithy/querystring-parser@npm:4.0.1"
|
||||
dependencies:
|
||||
"@smithy/types": ^3.0.0
|
||||
"@smithy/types": ^4.1.0
|
||||
tslib: ^2.6.2
|
||||
checksum: 5b76846e1ef0e19d4cd249089184597476b2f82ff491952b7f61d0dc8705b8596f9d8579fe3c2ce6b61dff61271990c35c85c89aba3724e781b4993afc816a2a
|
||||
checksum: 0ce6963937aa44882aeaf44b6aff68ca08faa927bd93da7adf354dd83b48beaef4246672504d8fc10d91be07e2f78c2b670bb82a46638da573183a69fa393278
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"@smithy/service-error-classification@npm:^3.0.0":
|
||||
version: 3.0.0
|
||||
resolution: "@smithy/service-error-classification@npm:3.0.0"
|
||||
"@smithy/service-error-classification@npm:^4.0.1":
|
||||
version: 4.0.1
|
||||
resolution: "@smithy/service-error-classification@npm:4.0.1"
|
||||
dependencies:
|
||||
"@smithy/types": ^3.0.0
|
||||
checksum: 44ad8cd553896c8608d411763d962f5a758bc86fc49f58ef70b2d2a26f5a9189d1bfa0eed13cfe457cf7bfbedcb2c3e4b6e77bd93bb534f6bef6da74ab776807
|
||||
"@smithy/types": ^4.1.0
|
||||
checksum: 331c06d7a07cd2f9303cc396e1f9b1d44c785ccb27f4f8f02177b9f496667ffa4df40ae38d2ed1b557cd9c75b5cacb9b00106462dc62094253f8619a7d370343
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"@smithy/shared-ini-file-loader@npm:^3.0.0":
|
||||
version: 3.0.0
|
||||
resolution: "@smithy/shared-ini-file-loader@npm:3.0.0"
|
||||
"@smithy/shared-ini-file-loader@npm:^4.0.1":
|
||||
version: 4.0.1
|
||||
resolution: "@smithy/shared-ini-file-loader@npm:4.0.1"
|
||||
dependencies:
|
||||
"@smithy/types": ^3.0.0
|
||||
"@smithy/types": ^4.1.0
|
||||
tslib: ^2.6.2
|
||||
checksum: d8f0d6e8f30293adc7ad0f3877d37c827e04abbcee70750b6f25be0f6fc2b80b659beadb35562f6d2312d5b437cb801241c3c5610986228b83ca3a5c2c1071dd
|
||||
checksum: 54a399800dc32368ad99c5da4fd5eae62de4f9ddd249144b6516493bc42625e83c21ccd7c61d667c88d6000a3f5b42db452c10b870740cc9bec9e6c776607a9e
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"@smithy/signature-v4@npm:^3.0.0":
|
||||
version: 3.0.0
|
||||
resolution: "@smithy/signature-v4@npm:3.0.0"
|
||||
"@smithy/signature-v4@npm:^5.0.1":
|
||||
version: 5.0.1
|
||||
resolution: "@smithy/signature-v4@npm:5.0.1"
|
||||
dependencies:
|
||||
"@smithy/is-array-buffer": ^3.0.0
|
||||
"@smithy/types": ^3.0.0
|
||||
"@smithy/util-hex-encoding": ^3.0.0
|
||||
"@smithy/util-middleware": ^3.0.0
|
||||
"@smithy/util-uri-escape": ^3.0.0
|
||||
"@smithy/util-utf8": ^3.0.0
|
||||
"@smithy/is-array-buffer": ^4.0.0
|
||||
"@smithy/protocol-http": ^5.0.1
|
||||
"@smithy/types": ^4.1.0
|
||||
"@smithy/util-hex-encoding": ^4.0.0
|
||||
"@smithy/util-middleware": ^4.0.1
|
||||
"@smithy/util-uri-escape": ^4.0.0
|
||||
"@smithy/util-utf8": ^4.0.0
|
||||
tslib: ^2.6.2
|
||||
checksum: 18962f427e33843014e7886bb5b8c3164150a87c5c604f48e6a080017d12f04fd55b1a7776f0f438cc641a2472b75d98c7173a34b9335dcd6a89c55fc1c65dd4
|
||||
checksum: fb6613ce08e2008e3da447eeaafdfdcbd8a428c9d4aaf3220eab77cb33832596885f77966acbee3f753e113ce728f440ca31747908d81d0ecbcf1822c5c7bd28
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"@smithy/smithy-client@npm:^3.0.1":
|
||||
version: 3.0.1
|
||||
resolution: "@smithy/smithy-client@npm:3.0.1"
|
||||
"@smithy/smithy-client@npm:^4.1.6":
|
||||
version: 4.1.6
|
||||
resolution: "@smithy/smithy-client@npm:4.1.6"
|
||||
dependencies:
|
||||
"@smithy/middleware-endpoint": ^3.0.0
|
||||
"@smithy/middleware-stack": ^3.0.0
|
||||
"@smithy/protocol-http": ^4.0.0
|
||||
"@smithy/types": ^3.0.0
|
||||
"@smithy/util-stream": ^3.0.1
|
||||
"@smithy/core": ^3.1.5
|
||||
"@smithy/middleware-endpoint": ^4.0.6
|
||||
"@smithy/middleware-stack": ^4.0.1
|
||||
"@smithy/protocol-http": ^5.0.1
|
||||
"@smithy/types": ^4.1.0
|
||||
"@smithy/util-stream": ^4.1.2
|
||||
tslib: ^2.6.2
|
||||
checksum: 901107c8bc7b80e0e1798210f996a30a9af441a48d399bbc89ed94790a3d2d93263896f71d2139c9ab4d2f40e5e752d233abad45621e33ba2eed8e390f38c364
|
||||
checksum: 79e1f2a3fa25cd96986abbaae79a528f2418e888a4f5664941b4f34627571f8de534cc4f0d999d3fa31bc96538c687010f8ca924b13a8021889ee2ecff9451fd
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
@@ -2842,186 +2860,206 @@ __metadata:
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"@smithy/types@npm:^3.0.0":
|
||||
version: 3.0.0
|
||||
resolution: "@smithy/types@npm:3.0.0"
|
||||
"@smithy/types@npm:^4.1.0":
|
||||
version: 4.1.0
|
||||
resolution: "@smithy/types@npm:4.1.0"
|
||||
dependencies:
|
||||
tslib: ^2.6.2
|
||||
checksum: 1c9c196c781aec0bed7c1519f91030ca4301f30f969394b099ccaa6ab0b47e55b211f54ae56a5a101e91d64899f147d49861e77c24fdc56117cf191a300e00ec
|
||||
checksum: ff7dcb7a72a2f5e984df95342ec7276cc3249e57de76d5013bf69314a4dbd081e193c5f849e8e5c3f54be222d861272a90ab15b437678e31958eb2c76f55c689
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"@smithy/url-parser@npm:^3.0.0":
|
||||
version: 3.0.0
|
||||
resolution: "@smithy/url-parser@npm:3.0.0"
|
||||
"@smithy/url-parser@npm:^4.0.1":
|
||||
version: 4.0.1
|
||||
resolution: "@smithy/url-parser@npm:4.0.1"
|
||||
dependencies:
|
||||
"@smithy/querystring-parser": ^3.0.0
|
||||
"@smithy/types": ^3.0.0
|
||||
"@smithy/querystring-parser": ^4.0.1
|
||||
"@smithy/types": ^4.1.0
|
||||
tslib: ^2.6.2
|
||||
checksum: dd92f24432b90cdd4aa80b3b3cd7f5075a54248756f87e4961cb1d7c52483cee44b3f98c96fefd01e8cc5bd2744e7d658ec547cdb6cdc7365f46c0f7df2b3eb2
|
||||
checksum: 3ec0ebf024a333d20cfe463c246196a188abcd3460014cf535979540e873c5b9f7a13214e221aed31b50dd1f28b24b5eafbb6ef5ae1998987f81622c4ccd156b
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"@smithy/util-base64@npm:^3.0.0":
|
||||
version: 3.0.0
|
||||
resolution: "@smithy/util-base64@npm:3.0.0"
|
||||
"@smithy/util-base64@npm:^4.0.0":
|
||||
version: 4.0.0
|
||||
resolution: "@smithy/util-base64@npm:4.0.0"
|
||||
dependencies:
|
||||
"@smithy/util-buffer-from": ^3.0.0
|
||||
"@smithy/util-utf8": ^3.0.0
|
||||
"@smithy/util-buffer-from": ^4.0.0
|
||||
"@smithy/util-utf8": ^4.0.0
|
||||
tslib: ^2.6.2
|
||||
checksum: 413f26046a7e98b2661a078f218a8d040c820fc5a02f5e364aff58c3957e28fde1ac4048c2ebbad5d87b9da4b9aa98a8d4a7fb0d2ce97def33738bd7d8d79aa0
|
||||
checksum: 7fb3430d6e1cbb4bcc61458587bb0746458f0ec8e8cd008224ca984ff65c3c3307b3a528d040cef4c1fc7d1bd4111f6de8f4f1595845422f14ac7d100b3871b1
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"@smithy/util-body-length-browser@npm:^3.0.0":
|
||||
version: 3.0.0
|
||||
resolution: "@smithy/util-body-length-browser@npm:3.0.0"
|
||||
"@smithy/util-body-length-browser@npm:^4.0.0":
|
||||
version: 4.0.0
|
||||
resolution: "@smithy/util-body-length-browser@npm:4.0.0"
|
||||
dependencies:
|
||||
tslib: ^2.6.2
|
||||
checksum: b01d8258b9a25b262734fc49cefefe48583ba193c3eefd49a6f7fd5922c3015d23dda88b52f3dd9a16827cad16b5b9425eef01e91bd0c71bb5abc469d2952c07
|
||||
checksum: 72381e12de7cccbb722c60e3f3ae0f8bce7fc9a9e8064c7968ac733698a5a30bea098a3c365095c519491fe64e2e949c22f74d4f1e0d910090d6389b41c416eb
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"@smithy/util-body-length-node@npm:^3.0.0":
|
||||
version: 3.0.0
|
||||
resolution: "@smithy/util-body-length-node@npm:3.0.0"
|
||||
"@smithy/util-body-length-node@npm:^4.0.0":
|
||||
version: 4.0.0
|
||||
resolution: "@smithy/util-body-length-node@npm:4.0.0"
|
||||
dependencies:
|
||||
tslib: ^2.6.2
|
||||
checksum: da1baf4790609d3dc28c88385c7274fdf9b91a641fe3c5af22b78e18156df17bd470181348f43b2c739680936b1dafb1526158dfd817c3d9ecb71e653b4cbe3f
|
||||
checksum: 12d8de9c526647f51f56804044f5847f0c7c7afee30fa368d2b7bd4b4de8fe2438a925aab51965fe8a4b2f08f68e8630cc3c54a449beae6646d99cae900ed106
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"@smithy/util-buffer-from@npm:^3.0.0":
|
||||
version: 3.0.0
|
||||
resolution: "@smithy/util-buffer-from@npm:3.0.0"
|
||||
"@smithy/util-buffer-from@npm:^2.2.0":
|
||||
version: 2.2.0
|
||||
resolution: "@smithy/util-buffer-from@npm:2.2.0"
|
||||
dependencies:
|
||||
"@smithy/is-array-buffer": ^3.0.0
|
||||
"@smithy/is-array-buffer": ^2.2.0
|
||||
tslib: ^2.6.2
|
||||
checksum: 1bfc4ab093fe98132bbc1ccd36a0b9ad75a31ed26bac4b7e9350205513a2481eb190ae44679ab4fecc5e10d367b5e6592bbfbf792671579d17d17bd7f7f233f5
|
||||
checksum: 424c5b7368ae5880a8f2732e298d17879a19ca925f24ca45e1c6c005f717bb15b76eb28174d308d81631ad457ea0088aab0fd3255dd42f45a535c81944ad64d3
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"@smithy/util-config-provider@npm:^3.0.0":
|
||||
version: 3.0.0
|
||||
resolution: "@smithy/util-config-provider@npm:3.0.0"
|
||||
"@smithy/util-buffer-from@npm:^4.0.0":
|
||||
version: 4.0.0
|
||||
resolution: "@smithy/util-buffer-from@npm:4.0.0"
|
||||
dependencies:
|
||||
"@smithy/is-array-buffer": ^4.0.0
|
||||
tslib: ^2.6.2
|
||||
checksum: fc0f5f57d30261cf3a6693d8e338b9d269332c478ee18d905309a769844188190caf0564855d7e84f6c61e56aa556195dda89f65e8c30791951cf4999e4a70e7
|
||||
checksum: 8124e28d3e34b5335c08398a9081cc56a232d23e08172d488669f91a167d0871d36aba9dd3e4b70175a52f1bd70e2bf708d4c989a19512a4374d2cf67650a15e
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"@smithy/util-defaults-mode-browser@npm:^3.0.1":
|
||||
version: 3.0.1
|
||||
resolution: "@smithy/util-defaults-mode-browser@npm:3.0.1"
|
||||
"@smithy/util-config-provider@npm:^4.0.0":
|
||||
version: 4.0.0
|
||||
resolution: "@smithy/util-config-provider@npm:4.0.0"
|
||||
dependencies:
|
||||
"@smithy/property-provider": ^3.0.0
|
||||
"@smithy/smithy-client": ^3.0.1
|
||||
"@smithy/types": ^3.0.0
|
||||
tslib: ^2.6.2
|
||||
checksum: 91bd9e0bec4c4a37c3fc286e72f3387be9272b090111edaee992d9e9619370f3f2ad88ce771ef42dbfe40a44500163b633914486e662526591f5f737d5e4ff5a
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"@smithy/util-defaults-mode-browser@npm:^4.0.7":
|
||||
version: 4.0.7
|
||||
resolution: "@smithy/util-defaults-mode-browser@npm:4.0.7"
|
||||
dependencies:
|
||||
"@smithy/property-provider": ^4.0.1
|
||||
"@smithy/smithy-client": ^4.1.6
|
||||
"@smithy/types": ^4.1.0
|
||||
bowser: ^2.11.0
|
||||
tslib: ^2.6.2
|
||||
checksum: eaf4389187d4c2e7f77010fceb4b10c3e396654d634ff1ef5c66164e86049000fe30eca010f637824ab88b7a9e501fcd08cab7a8b523468af6735b397e481e9a
|
||||
checksum: fde9c6d748b5a57c3057655b1b062dd691a1d94f9111b3ff6bd4e197bdf11c3977e065f445bd6a5960bf2c2e034d2a5d3a94fd68961e0210e31af790f3b50f12
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"@smithy/util-defaults-mode-node@npm:^3.0.1":
|
||||
"@smithy/util-defaults-mode-node@npm:^4.0.7":
|
||||
version: 4.0.7
|
||||
resolution: "@smithy/util-defaults-mode-node@npm:4.0.7"
|
||||
dependencies:
|
||||
"@smithy/config-resolver": ^4.0.1
|
||||
"@smithy/credential-provider-imds": ^4.0.1
|
||||
"@smithy/node-config-provider": ^4.0.1
|
||||
"@smithy/property-provider": ^4.0.1
|
||||
"@smithy/smithy-client": ^4.1.6
|
||||
"@smithy/types": ^4.1.0
|
||||
tslib: ^2.6.2
|
||||
checksum: 75e335ea6303d0708a1efdcf9639932a39d6e07ed13d30df289dbd477c9724b15db43af761a498d0bf03404b67575dadbb43d7745fee6d53b74cd9338bda6daf
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"@smithy/util-endpoints@npm:^3.0.1":
|
||||
version: 3.0.1
|
||||
resolution: "@smithy/util-defaults-mode-node@npm:3.0.1"
|
||||
resolution: "@smithy/util-endpoints@npm:3.0.1"
|
||||
dependencies:
|
||||
"@smithy/config-resolver": ^3.0.0
|
||||
"@smithy/credential-provider-imds": ^3.0.0
|
||||
"@smithy/node-config-provider": ^3.0.0
|
||||
"@smithy/property-provider": ^3.0.0
|
||||
"@smithy/smithy-client": ^3.0.1
|
||||
"@smithy/types": ^3.0.0
|
||||
"@smithy/node-config-provider": ^4.0.1
|
||||
"@smithy/types": ^4.1.0
|
||||
tslib: ^2.6.2
|
||||
checksum: 2355a03b69f56d34e19653597fda1df5e598a04a5c9139a1902dd658b4d883a7c24b04f0e038043daa874f02f7ead719ce2ef2c1d0f9d83bc02a8ea120357469
|
||||
checksum: 2d351e297353fb624ba564b46ecf324376bc8fe34529ab4551e1d640c3b0317613a620c28977819db2c2d240791ff354d1d996fda119c0c4885a11507fb86af6
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"@smithy/util-endpoints@npm:^2.0.0":
|
||||
version: 2.0.0
|
||||
resolution: "@smithy/util-endpoints@npm:2.0.0"
|
||||
"@smithy/util-hex-encoding@npm:^4.0.0":
|
||||
version: 4.0.0
|
||||
resolution: "@smithy/util-hex-encoding@npm:4.0.0"
|
||||
dependencies:
|
||||
"@smithy/node-config-provider": ^3.0.0
|
||||
"@smithy/types": ^3.0.0
|
||||
tslib: ^2.6.2
|
||||
checksum: 0c4d33ace7bf3d76b6e563f2a07e43a49d6a367d7874dcfc7f06c97accc5307f5e881aea7ea782f3a05e5ddf9e1e2e238070d563496423c048d115f539fc9941
|
||||
checksum: b932fa0e5cd2ba2598ad55ce46722bbbd15109809badaa3e4402fe4dd6f31f62b9fb49d2616e38d660363dc92a5898391f9c8f3b18507c36109e908400785e2a
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"@smithy/util-hex-encoding@npm:^3.0.0":
|
||||
version: 3.0.0
|
||||
resolution: "@smithy/util-hex-encoding@npm:3.0.0"
|
||||
"@smithy/util-middleware@npm:^4.0.1":
|
||||
version: 4.0.1
|
||||
resolution: "@smithy/util-middleware@npm:4.0.1"
|
||||
dependencies:
|
||||
"@smithy/types": ^4.1.0
|
||||
tslib: ^2.6.2
|
||||
checksum: dd32fd71e915825987a18bf7c0f8f0c4956d0b17a0ee71592b5563bb20e04f24dbf81d36161aac07caab3bb5e535cc609fce20aa4a38f66b457c4c6f5c7748d9
|
||||
checksum: 1402e0abd9bfeb0d8b0033ad1b572984df1469dccf9f562353ec0133691826cdd85aa180616267819f80d8bb56c57f5a3a2ae92033f52cd8249230a6e670343b
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"@smithy/util-middleware@npm:^3.0.0":
|
||||
version: 3.0.0
|
||||
resolution: "@smithy/util-middleware@npm:3.0.0"
|
||||
"@smithy/util-retry@npm:^4.0.1":
|
||||
version: 4.0.1
|
||||
resolution: "@smithy/util-retry@npm:4.0.1"
|
||||
dependencies:
|
||||
"@smithy/types": ^3.0.0
|
||||
"@smithy/service-error-classification": ^4.0.1
|
||||
"@smithy/types": ^4.1.0
|
||||
tslib: ^2.6.2
|
||||
checksum: ab73eb58942733f832a730b4ed29013eb2c1ea04b6d108b82aee92b832ba2c1e73f78dcbf7aaeab9403583b92f85b7dbc7b33d22d1d37f0900a814bfdea19cc9
|
||||
checksum: 29f8afd444f4b692ebd8cb2d0f6045ac0d5ca3834c0b6bbfdf1f6c1faec17c7bdc9734413ba93c55a672d373900aaf08e3c9f2023b3ec9b60c057afb8bcb4966
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"@smithy/util-retry@npm:^3.0.0":
|
||||
version: 3.0.0
|
||||
resolution: "@smithy/util-retry@npm:3.0.0"
|
||||
"@smithy/util-stream@npm:^4.1.2":
|
||||
version: 4.1.2
|
||||
resolution: "@smithy/util-stream@npm:4.1.2"
|
||||
dependencies:
|
||||
"@smithy/service-error-classification": ^3.0.0
|
||||
"@smithy/types": ^3.0.0
|
||||
"@smithy/fetch-http-handler": ^5.0.1
|
||||
"@smithy/node-http-handler": ^4.0.3
|
||||
"@smithy/types": ^4.1.0
|
||||
"@smithy/util-base64": ^4.0.0
|
||||
"@smithy/util-buffer-from": ^4.0.0
|
||||
"@smithy/util-hex-encoding": ^4.0.0
|
||||
"@smithy/util-utf8": ^4.0.0
|
||||
tslib: ^2.6.2
|
||||
checksum: 699fb2da6d97e903b9aec3883fd9f8e3477a03d377705840ca9bf12b440d803db89742bc8cf239448287b0369672dd6076afd3e663322106302217623a76d855
|
||||
checksum: 6faea1450d266984e11611047fbcc4b23922ede59c797e143f7f31142984d04787a686dddc5e84707f1d8d139097af077231ecbd304b15df2946590684728f35
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"@smithy/util-stream@npm:^3.0.1":
|
||||
version: 3.0.1
|
||||
resolution: "@smithy/util-stream@npm:3.0.1"
|
||||
"@smithy/util-uri-escape@npm:^4.0.0":
|
||||
version: 4.0.0
|
||||
resolution: "@smithy/util-uri-escape@npm:4.0.0"
|
||||
dependencies:
|
||||
"@smithy/fetch-http-handler": ^3.0.1
|
||||
"@smithy/node-http-handler": ^3.0.0
|
||||
"@smithy/types": ^3.0.0
|
||||
"@smithy/util-base64": ^3.0.0
|
||||
"@smithy/util-buffer-from": ^3.0.0
|
||||
"@smithy/util-hex-encoding": ^3.0.0
|
||||
"@smithy/util-utf8": ^3.0.0
|
||||
tslib: ^2.6.2
|
||||
checksum: 1b691d77470722d2a29e5294f2802161ef54d45ded78d27c0d53f9bb84051407673579cf70f9c6e810e419d2ba8446acd17e1dde60f219a6df3b8d66476b0071
|
||||
checksum: 7ea350545971f8a009d56e085c34c949c9045862cfab233ee7adc16e111a076a814bb5d9279b2b85ee382e0ed204a1c673ac32e3e28f1073b62a2c53a5dd6d19
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"@smithy/util-uri-escape@npm:^3.0.0":
|
||||
version: 3.0.0
|
||||
resolution: "@smithy/util-uri-escape@npm:3.0.0"
|
||||
"@smithy/util-utf8@npm:^2.0.0":
|
||||
version: 2.3.0
|
||||
resolution: "@smithy/util-utf8@npm:2.3.0"
|
||||
dependencies:
|
||||
"@smithy/util-buffer-from": ^2.2.0
|
||||
tslib: ^2.6.2
|
||||
checksum: d7ee01c978e2b08d0a89a3b678f5d5e5d5bb4ab4ab85567a238b1a6195dff1bdaf9ae62497e7f32ff5121b3dc007c370bcb6e8ef79b01fe5acdec5bbce8c7ce4
|
||||
checksum: 00e55d4b4e37d48be0eef3599082402b933c52a1407fed7e8e8ad76d94d81a0b30b8bfaf2047c59d9c3af31e5f20e7a8c959cb7ae270f894255e05a2229964f0
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"@smithy/util-utf8@npm:^3.0.0":
|
||||
version: 3.0.0
|
||||
resolution: "@smithy/util-utf8@npm:3.0.0"
|
||||
"@smithy/util-utf8@npm:^4.0.0":
|
||||
version: 4.0.0
|
||||
resolution: "@smithy/util-utf8@npm:4.0.0"
|
||||
dependencies:
|
||||
"@smithy/util-buffer-from": ^3.0.0
|
||||
"@smithy/util-buffer-from": ^4.0.0
|
||||
tslib: ^2.6.2
|
||||
checksum: d97be1748963263a1161ba80417d82318b977b38542f3fdf0379b0162461188be680e5bfb66a89d65652f0fad6ecf2ab23a43205979216e50602488f73434da3
|
||||
checksum: 08811c5a18c341782b3b65acc4640a9f559aeba61c889dbdc56e5153a3b7f395e613bfb1ade25cf15311d6237f291e1fce8af197c6313065e0cb084fd2148c64
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"@smithy/util-waiter@npm:^3.0.0":
|
||||
version: 3.0.0
|
||||
resolution: "@smithy/util-waiter@npm:3.0.0"
|
||||
"@smithy/util-waiter@npm:^4.0.2":
|
||||
version: 4.0.2
|
||||
resolution: "@smithy/util-waiter@npm:4.0.2"
|
||||
dependencies:
|
||||
"@smithy/abort-controller": ^3.0.0
|
||||
"@smithy/types": ^3.0.0
|
||||
"@smithy/abort-controller": ^4.0.1
|
||||
"@smithy/types": ^4.1.0
|
||||
tslib: ^2.6.2
|
||||
checksum: 9e6aba7175abf6f96b2a15ece6ca1eb3a218bb494df0bb3a14c3e9bc59caf078ba5fe48e3a073d3f20ee65cb483f3b12e56808bfe1f094e28a21a3eceadfd045
|
||||
checksum: 8e5cbf0ea3d93e3bc834b2db8e158c2a84a1c36f5163d4b9b925f6444c5be60c23803b6afb323de2d32f16f08f3e03e8e423bc7e8b531bbf9ff6e23f42554fe9
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
@@ -3390,6 +3428,13 @@ __metadata:
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"agent-base@npm:^7.1.2":
|
||||
version: 7.1.3
|
||||
resolution: "agent-base@npm:7.1.3"
|
||||
checksum: 87bb7ee54f5ecf0ccbfcba0b07473885c43ecd76cb29a8db17d6137a19d9f9cd443a2a7c5fd8a3f24d58ad8145f9eb49116344a66b107e1aeab82cf2383f4753
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"aggregate-error@npm:^3.0.0":
|
||||
version: 3.1.0
|
||||
resolution: "aggregate-error@npm:3.1.0"
|
||||
@@ -3837,16 +3882,6 @@ __metadata:
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"camel-case@npm:^4.1.2":
|
||||
version: 4.1.2
|
||||
resolution: "camel-case@npm:4.1.2"
|
||||
dependencies:
|
||||
pascal-case: ^3.1.2
|
||||
tslib: ^2.0.3
|
||||
checksum: bcbd25cd253b3cbc69be3f535750137dbf2beb70f093bdc575f73f800acc8443d34fd52ab8f0a2413c34f1e8203139ffc88428d8863e4dfe530cfb257a379ad6
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"camelcase@npm:^5.3.1":
|
||||
version: 5.3.1
|
||||
resolution: "camelcase@npm:5.3.1"
|
||||
@@ -4006,13 +4041,6 @@ __metadata:
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"commander@npm:^6.1.0":
|
||||
version: 6.2.1
|
||||
resolution: "commander@npm:6.2.1"
|
||||
checksum: d7090410c0de6bc5c67d3ca41c41760d6d268f3c799e530aafb73b7437d1826bbf0d2a3edac33f8b57cc9887b4a986dce307fa5557e109be40eadb7c43b21742
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"compress-commons@npm:^6.0.2":
|
||||
version: 6.0.2
|
||||
resolution: "compress-commons@npm:6.0.2"
|
||||
@@ -4100,27 +4128,20 @@ __metadata:
|
||||
linkType: hard
|
||||
|
||||
"cross-spawn@npm:^7.0.0, cross-spawn@npm:^7.0.2, cross-spawn@npm:^7.0.3":
|
||||
version: 7.0.3
|
||||
resolution: "cross-spawn@npm:7.0.3"
|
||||
version: 7.0.6
|
||||
resolution: "cross-spawn@npm:7.0.6"
|
||||
dependencies:
|
||||
path-key: ^3.1.0
|
||||
shebang-command: ^2.0.0
|
||||
which: ^2.0.1
|
||||
checksum: 671cc7c7288c3a8406f3c69a3ae2fc85555c04169e9d611def9a675635472614f1c0ed0ef80955d5b6d4e724f6ced67f0ad1bb006c2ea643488fcfef994d7f52
|
||||
checksum: 8d306efacaf6f3f60e0224c287664093fa9185680b2d195852ba9a863f85d02dcc737094c6e512175f8ee0161f9b87c73c6826034c2422e39de7d6569cf4503b
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"crypto@npm:^1.0.1":
|
||||
version: 1.0.1
|
||||
resolution: "crypto@npm:1.0.1"
|
||||
checksum: 087fe3165bd94c333a49e6ed66a0193911f63eac38a24f379b3001a5fe260a59c413646e53a0f67875ba13902b2686d81dc703cb2c147a4ec727dcdc04e5645e
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"csv-parse@npm:^5.5.6":
|
||||
version: 5.5.6
|
||||
resolution: "csv-parse@npm:5.5.6"
|
||||
checksum: ee06f97f674487dc1d001b360de8ea510a41b9d971abf43bcf9c3be22c83a3634df0d3ebfbe52fd49d145077066be7ff9f25de3fc6b71aefb973099b04147a25
|
||||
"csv-parse@npm:^5.6.0":
|
||||
version: 5.6.0
|
||||
resolution: "csv-parse@npm:5.6.0"
|
||||
checksum: 173e176bdaf212bab37d0f6d39a06d039d24a1c0ee40b9f1023ebf8b36095934807deeb493c0fb58592b39b0682ccd0be5c9e8d2b137c08807e7031595ea7a51
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
@@ -4210,10 +4231,10 @@ __metadata:
|
||||
version: 0.0.0-use.local
|
||||
resolution: "docker-login@workspace:."
|
||||
dependencies:
|
||||
"@actions/core": ^1.10.1
|
||||
"@aws-sdk/client-ecr": ^3.583.0
|
||||
"@aws-sdk/client-ecr-public": ^3.583.0
|
||||
"@docker/actions-toolkit": ^0.35.0
|
||||
"@actions/core": ^1.11.1
|
||||
"@aws-sdk/client-ecr": ^3.766.0
|
||||
"@aws-sdk/client-ecr-public": ^3.758.0
|
||||
"@docker/actions-toolkit": ^0.57.0
|
||||
"@types/node": ^20.12.12
|
||||
"@typescript-eslint/eslint-plugin": ^7.9.0
|
||||
"@typescript-eslint/parser": ^7.9.0
|
||||
@@ -4223,7 +4244,7 @@ __metadata:
|
||||
eslint-plugin-jest: ^28.5.0
|
||||
eslint-plugin-prettier: ^5.1.3
|
||||
http-proxy-agent: ^7.0.2
|
||||
https-proxy-agent: ^7.0.5
|
||||
https-proxy-agent: ^7.0.6
|
||||
jest: ^29.7.0
|
||||
prettier: ^3.2.5
|
||||
ts-jest: ^29.1.2
|
||||
@@ -4241,18 +4262,6 @@ __metadata:
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"dot-object@npm:^2.1.4":
|
||||
version: 2.1.5
|
||||
resolution: "dot-object@npm:2.1.5"
|
||||
dependencies:
|
||||
commander: ^6.1.0
|
||||
glob: ^7.1.6
|
||||
bin:
|
||||
dot-object: bin/dot-object
|
||||
checksum: 3e5a681bbea32dfc1cd0b1254adc93531bd462f7474a355e981738ef37253e4bc5c9482926289ef4d3c6ef9adb0a7ed894725ed3a69aa22063343dc2a57dd764
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"duplexify@npm:^3.5.0, duplexify@npm:^3.6.0":
|
||||
version: 3.7.1
|
||||
resolution: "duplexify@npm:3.7.1"
|
||||
@@ -4663,14 +4672,14 @@ __metadata:
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"fast-xml-parser@npm:4.2.5":
|
||||
version: 4.2.5
|
||||
resolution: "fast-xml-parser@npm:4.2.5"
|
||||
"fast-xml-parser@npm:4.4.1":
|
||||
version: 4.4.1
|
||||
resolution: "fast-xml-parser@npm:4.4.1"
|
||||
dependencies:
|
||||
strnum: ^1.0.5
|
||||
bin:
|
||||
fxparser: src/cli/cli.js
|
||||
checksum: d32b22005504eeb207249bf40dc82d0994b5bb9ca9dcc731d335a1f425e47fe085b3cace3cf9d32172dd1a5544193c49e8615ca95b4bf95a4a4920a226b06d80
|
||||
checksum: f440c01cd141b98789ae777503bcb6727393296094cc82924ae9f88a5b971baa4eec7e65306c7e07746534caa661fc83694ff437d9012dc84dee39dfbfaab947
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
@@ -4931,20 +4940,6 @@ __metadata:
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"glob@npm:^7.1.6":
|
||||
version: 7.2.3
|
||||
resolution: "glob@npm:7.2.3"
|
||||
dependencies:
|
||||
fs.realpath: ^1.0.0
|
||||
inflight: ^1.0.4
|
||||
inherits: 2
|
||||
minimatch: ^3.1.1
|
||||
once: ^1.3.0
|
||||
path-is-absolute: ^1.0.0
|
||||
checksum: 29452e97b38fa704dabb1d1045350fb2467cf0277e155aa9ff7077e90ad81d1ea9d53d3ee63bd37c05b09a065e90f16aec4a65f5b8de401d1dac40bc5605d133
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"globals@npm:^11.1.0":
|
||||
version: 11.12.0
|
||||
resolution: "globals@npm:11.12.0"
|
||||
@@ -5096,13 +5091,13 @@ __metadata:
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"https-proxy-agent@npm:^7.0.5":
|
||||
version: 7.0.5
|
||||
resolution: "https-proxy-agent@npm:7.0.5"
|
||||
"https-proxy-agent@npm:^7.0.6":
|
||||
version: 7.0.6
|
||||
resolution: "https-proxy-agent@npm:7.0.6"
|
||||
dependencies:
|
||||
agent-base: ^7.0.2
|
||||
agent-base: ^7.1.2
|
||||
debug: 4
|
||||
checksum: 2e1a28960f13b041a50702ee74f240add8e75146a5c37fc98f1960f0496710f6918b3a9fe1e5aba41e50f58e6df48d107edd9c405c5f0d73ac260dabf2210857
|
||||
checksum: b882377a120aa0544846172e5db021fa8afbf83fea2a897d397bd2ddd8095ab268c24bc462f40a15f2a8c600bf4aa05ce52927f70038d4014e68aefecfa94e8d
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
@@ -6036,15 +6031,6 @@ __metadata:
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"lower-case@npm:^2.0.2":
|
||||
version: 2.0.2
|
||||
resolution: "lower-case@npm:2.0.2"
|
||||
dependencies:
|
||||
tslib: ^2.0.3
|
||||
checksum: 83a0a5f159ad7614bee8bf976b96275f3954335a84fad2696927f609ddae902802c4f3312d86668722e668bef41400254807e1d3a7f2e8c3eede79691aa1f010
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"lru-cache@npm:^10.0.1, lru-cache@npm:^10.2.0":
|
||||
version: 10.2.2
|
||||
resolution: "lru-cache@npm:10.2.2"
|
||||
@@ -6162,7 +6148,7 @@ __metadata:
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"minimatch@npm:^3.0.4, minimatch@npm:^3.0.5, minimatch@npm:^3.1.1, minimatch@npm:^3.1.2":
|
||||
"minimatch@npm:^3.0.4, minimatch@npm:^3.0.5, minimatch@npm:^3.1.2":
|
||||
version: 3.1.2
|
||||
resolution: "minimatch@npm:3.1.2"
|
||||
dependencies:
|
||||
@@ -6328,16 +6314,6 @@ __metadata:
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"no-case@npm:^3.0.4":
|
||||
version: 3.0.4
|
||||
resolution: "no-case@npm:3.0.4"
|
||||
dependencies:
|
||||
lower-case: ^2.0.2
|
||||
tslib: ^2.0.3
|
||||
checksum: 0b2ebc113dfcf737d48dde49cfebf3ad2d82a8c3188e7100c6f375e30eafbef9e9124aadc3becef237b042fd5eb0aad2fd78669c20972d045bbe7fea8ba0be5c
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"node-fetch@npm:^2.6.7":
|
||||
version: 2.6.9
|
||||
resolution: "node-fetch@npm:2.6.9"
|
||||
@@ -6532,16 +6508,6 @@ __metadata:
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"pascal-case@npm:^3.1.2":
|
||||
version: 3.1.2
|
||||
resolution: "pascal-case@npm:3.1.2"
|
||||
dependencies:
|
||||
no-case: ^3.0.4
|
||||
tslib: ^2.0.3
|
||||
checksum: ba98bfd595fc91ef3d30f4243b1aee2f6ec41c53b4546bfa3039487c367abaa182471dcfc830a1f9e1a0df00c14a370514fa2b3a1aacc68b15a460c31116873e
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"path-exists@npm:^4.0.0":
|
||||
version: 4.0.0
|
||||
resolution: "path-exists@npm:4.0.0"
|
||||
@@ -6590,13 +6556,6 @@ __metadata:
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"path-to-regexp@npm:^6.2.0":
|
||||
version: 6.2.2
|
||||
resolution: "path-to-regexp@npm:6.2.2"
|
||||
checksum: b7b0005c36f5099f9ed1fb20a820d2e4ed1297ffe683ea1d678f5e976eb9544f01debb281369dabdc26da82e6453901bf71acf2c7ed14b9243536c2a45286c33
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"path-type@npm:^4.0.0":
|
||||
version: 4.0.0
|
||||
resolution: "path-type@npm:4.0.0"
|
||||
@@ -6661,15 +6620,6 @@ __metadata:
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"prettier@npm:^2.5.1":
|
||||
version: 2.8.8
|
||||
resolution: "prettier@npm:2.8.8"
|
||||
bin:
|
||||
prettier: bin-prettier.js
|
||||
checksum: b49e409431bf129dd89238d64299ba80717b57ff5a6d1c1a8b1a28b590d998a34e083fa13573bc732bb8d2305becb4c9a4407f8486c81fa7d55100eb08263cf8
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"prettier@npm:^3.2.5":
|
||||
version: 3.2.5
|
||||
resolution: "prettier@npm:3.2.5"
|
||||
@@ -6992,12 +6942,12 @@ __metadata:
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"semver@npm:^7.6.3":
|
||||
version: 7.6.3
|
||||
resolution: "semver@npm:7.6.3"
|
||||
"semver@npm:^7.7.1":
|
||||
version: 7.7.1
|
||||
resolution: "semver@npm:7.7.1"
|
||||
bin:
|
||||
semver: bin/semver.js
|
||||
checksum: 4110ec5d015c9438f322257b1c51fe30276e5f766a3f64c09edd1d7ea7118ecbc3f379f3b69032bacf13116dc7abc4ad8ce0d7e2bd642e26b0d271b56b61a7d8
|
||||
checksum: 586b825d36874007c9382d9e1ad8f93888d8670040add24a28e06a910aeebd673a2eb9e3bf169c6679d9245e66efb9057e0852e70d9daa6c27372aab1dda7104
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
@@ -7487,24 +7437,14 @@ __metadata:
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"ts-poet@npm:^4.5.0":
|
||||
version: 4.15.0
|
||||
resolution: "ts-poet@npm:4.15.0"
|
||||
dependencies:
|
||||
lodash: ^4.17.15
|
||||
prettier: ^2.5.1
|
||||
checksum: 93490e8b5921e23ac65afdecc00b4dd53f3560d7d9c19778a3f0bd9a300ba7ca71585a989d564508313bc73e8c431413714d513ebca2d5c428f909ec36bcf6e9
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"tslib@npm:^1.10.0, tslib@npm:^1.11.1":
|
||||
"tslib@npm:^1.10.0":
|
||||
version: 1.14.1
|
||||
resolution: "tslib@npm:1.14.1"
|
||||
checksum: dbe628ef87f66691d5d2959b3e41b9ca0045c3ee3c7c7b906cc1e328b39f199bb1ad9e671c39025bd56122ac57dfbf7385a94843b1cc07c60a4db74795829acd
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"tslib@npm:^2.0.3, tslib@npm:^2.2.0, tslib@npm:^2.3.0, tslib@npm:^2.3.1, tslib@npm:^2.5.0, tslib@npm:^2.6.2":
|
||||
"tslib@npm:^2.2.0, tslib@npm:^2.3.0, tslib@npm:^2.5.0, tslib@npm:^2.6.2":
|
||||
version: 2.6.2
|
||||
resolution: "tslib@npm:2.6.2"
|
||||
checksum: 329ea56123005922f39642318e3d1f0f8265d1e7fcb92c633e0809521da75eeaca28d2cf96d7248229deb40e5c19adf408259f4b9640afd20d13aecc1430f3ad
|
||||
@@ -7518,30 +7458,6 @@ __metadata:
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"twirp-ts@npm:^2.5.0":
|
||||
version: 2.5.0
|
||||
resolution: "twirp-ts@npm:2.5.0"
|
||||
dependencies:
|
||||
"@protobuf-ts/plugin-framework": ^2.0.7
|
||||
camel-case: ^4.1.2
|
||||
dot-object: ^2.1.4
|
||||
path-to-regexp: ^6.2.0
|
||||
ts-poet: ^4.5.0
|
||||
yaml: ^1.10.2
|
||||
peerDependencies:
|
||||
"@protobuf-ts/plugin": ^2.5.0
|
||||
ts-proto: ^1.81.3
|
||||
peerDependenciesMeta:
|
||||
"@protobuf-ts/plugin":
|
||||
optional: true
|
||||
ts-proto:
|
||||
optional: true
|
||||
bin:
|
||||
protoc-gen-twirp_ts: protoc-gen-twirp_ts
|
||||
checksum: e7cf87d77ab4d2cd327c9d8307e82ff61afc5af56883aed5fb6ac7d57999b646945e11158be87c10f0340aeef2efde6eb896f2efd60599498f17b4f310d66e4f
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"type-check@npm:^0.4.0, type-check@npm:~0.4.0":
|
||||
version: 0.4.0
|
||||
resolution: "type-check@npm:0.4.0"
|
||||
@@ -7702,15 +7618,6 @@ __metadata:
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"uuid@npm:^3.3.2, uuid@npm:^3.3.3":
|
||||
version: 3.4.0
|
||||
resolution: "uuid@npm:3.4.0"
|
||||
bin:
|
||||
uuid: ./bin/uuid
|
||||
checksum: 58de2feed61c59060b40f8203c0e4ed7fd6f99d42534a499f1741218a1dd0c129f4aa1de797bcf822c8ea5da7e4137aa3673431a96dae729047f7aca7b27866f
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"uuid@npm:^8.3.0, uuid@npm:^8.3.2":
|
||||
version: 8.3.2
|
||||
resolution: "uuid@npm:8.3.2"
|
||||
@@ -7886,13 +7793,6 @@ __metadata:
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"yaml@npm:^1.10.2":
|
||||
version: 1.10.2
|
||||
resolution: "yaml@npm:1.10.2"
|
||||
checksum: ce4ada136e8a78a0b08dc10b4b900936912d15de59905b2bf415b4d33c63df1d555d23acb2a41b23cf9fb5da41c256441afca3d6509de7247daa062fd2c5ea5f
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"yargs-parser@npm:^21.0.1, yargs-parser@npm:^21.1.1":
|
||||
version: 21.1.1
|
||||
resolution: "yargs-parser@npm:21.1.1"
|
||||
|
||||
Reference in New Issue
Block a user