mirror of
https://github.com/docker/login-action.git
synced 2026-03-19 22:20:49 +00:00
Compare commits
57 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
184bdaa072 | ||
|
|
5c6bc94683 | ||
|
|
caf4058643 | ||
|
|
ef38ec311a | ||
|
|
d52e8ef81c | ||
|
|
9644ab7025 | ||
|
|
7abd1d5126 | ||
|
|
1a81202c4f | ||
|
|
d1ab30dc54 | ||
|
|
f25ff28d1c | ||
|
|
e0c62a93a1 | ||
|
|
34f6d346b5 | ||
|
|
a547b56e5b | ||
|
|
b7f56fce8a | ||
|
|
3d100841f6 | ||
|
|
5713f8474e | ||
|
|
0a8c41d6e2 | ||
|
|
6d4b68b490 | ||
|
|
b7f1bbcce7 | ||
|
|
abd3abc99c | ||
|
|
ac38c32963 | ||
|
|
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 |
17
.github/workflows/pr-assign-author.yml
vendored
Normal file
17
.github/workflows/pr-assign-author.yml
vendored
Normal file
@@ -0,0 +1,17 @@
|
||||
name: pr-assign-author
|
||||
|
||||
permissions:
|
||||
contents: read
|
||||
|
||||
on:
|
||||
pull_request_target:
|
||||
types:
|
||||
- opened
|
||||
- reopened
|
||||
|
||||
jobs:
|
||||
run:
|
||||
uses: crazy-max/.github/.github/workflows/pr-assign-author.yml@1b673f36fad86812f538c1df9794904038a23cbf
|
||||
permissions:
|
||||
contents: read
|
||||
pull-requests: write
|
||||
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
|
||||
7
.github/workflows/test.yml
vendored
7
.github/workflows/test.yml
vendored
@@ -20,12 +20,13 @@ jobs:
|
||||
uses: actions/checkout@v4
|
||||
-
|
||||
name: Test
|
||||
uses: docker/bake-action@v5
|
||||
uses: docker/bake-action@v6
|
||||
with:
|
||||
source: .
|
||||
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 }}
|
||||
```
|
||||
|
||||
|
||||
@@ -10,7 +10,9 @@ describe('isECR', () => {
|
||||
['012345678901.dkr.ecr.eu-west-3.amazonaws.com', true],
|
||||
['876820548815.dkr.ecr.cn-north-1.amazonaws.com.cn', true],
|
||||
['390948362332.dkr.ecr.cn-northwest-1.amazonaws.com.cn', true],
|
||||
['public.ecr.aws', true]
|
||||
['012345678901.dkr-ecr.eu-north-1.on.aws', true],
|
||||
['public.ecr.aws', true],
|
||||
['ecr-public.aws.com', true]
|
||||
])('given registry %p', async (registry, expected) => {
|
||||
expect(aws.isECR(registry)).toEqual(expected);
|
||||
});
|
||||
@@ -23,7 +25,9 @@ describe('isPubECR', () => {
|
||||
['012345678901.dkr.ecr.eu-west-3.amazonaws.com', false],
|
||||
['876820548815.dkr.ecr.cn-north-1.amazonaws.com.cn', false],
|
||||
['390948362332.dkr.ecr.cn-northwest-1.amazonaws.com.cn', false],
|
||||
['public.ecr.aws', true]
|
||||
['012345678901.dkr-ecr.eu-north-1.on.aws', false],
|
||||
['public.ecr.aws', true],
|
||||
['ecr-public.aws.com', true]
|
||||
])('given registry %p', async (registry, expected) => {
|
||||
expect(aws.isPubECR(registry)).toEqual(expected);
|
||||
});
|
||||
@@ -34,6 +38,7 @@ describe('getRegion', () => {
|
||||
['012345678901.dkr.ecr.eu-west-3.amazonaws.com', 'eu-west-3'],
|
||||
['876820548815.dkr.ecr.cn-north-1.amazonaws.com.cn', 'cn-north-1'],
|
||||
['390948362332.dkr.ecr.cn-northwest-1.amazonaws.com.cn', 'cn-northwest-1'],
|
||||
['012345678901.dkr-ecr.eu-north-1.on.aws', 'eu-north-1'],
|
||||
['public.ecr.aws', 'us-east-1']
|
||||
])('given registry %p', async (registry, expected) => {
|
||||
expect(aws.getRegion(registry)).toEqual(expected);
|
||||
@@ -46,6 +51,7 @@ describe('getAccountIDs', () => {
|
||||
['012345678901.dkr.ecr.eu-west-3.amazonaws.com', '012345678910,023456789012', ['012345678901', '012345678910', '023456789012']],
|
||||
['012345678901.dkr.ecr.eu-west-3.amazonaws.com', '012345678901,012345678910,023456789012', ['012345678901', '012345678910', '023456789012']],
|
||||
['390948362332.dkr.ecr.cn-northwest-1.amazonaws.com.cn', '012345678910,023456789012', ['390948362332', '012345678910', '023456789012']],
|
||||
['876820548815.dkr-ecr.eu-north-1.on.aws', '012345678910,023456789012', ['876820548815', '012345678910', '023456789012']],
|
||||
['public.ecr.aws', undefined, []]
|
||||
])('given registry %p', async (registry, accountIDsEnv, expected) => {
|
||||
if (accountIDsEnv) {
|
||||
|
||||
42
dist/index.js
generated
vendored
42
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
852
dist/licenses.txt
generated
vendored
852
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
|
||||
@@ -4010,6 +3603,210 @@ Apache-2.0
|
||||
limitations under the License.
|
||||
|
||||
|
||||
@aws-sdk/xml-builder
|
||||
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.
|
||||
|
||||
@azure/abort-controller
|
||||
MIT
|
||||
The MIT License (MIT)
|
||||
@@ -10127,6 +9924,210 @@ Apache License
|
||||
See the License for the specific language governing permissions and
|
||||
limitations under the License.
|
||||
|
||||
@smithy/util-body-length-browser
|
||||
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.
|
||||
|
||||
@smithy/util-body-length-node
|
||||
Apache-2.0
|
||||
Apache License
|
||||
@@ -13631,9 +13632,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
|
||||
@@ -14903,31 +14901,6 @@ IN THE SOFTWARE.
|
||||
|
||||
|
||||
|
||||
strnum
|
||||
MIT
|
||||
MIT License
|
||||
|
||||
Copyright (c) 2021 Natural Intelligence
|
||||
|
||||
Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||
of this software and associated documentation files (the "Software"), to deal
|
||||
in the Software without restriction, including without limitation the rights
|
||||
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
||||
copies of the Software, and to permit persons to whom the Software is
|
||||
furnished to do so, subject to the following conditions:
|
||||
|
||||
The above copyright notice and this permission notice shall be included in all
|
||||
copies or substantial portions of the Software.
|
||||
|
||||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
||||
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||||
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
||||
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
||||
SOFTWARE.
|
||||
|
||||
|
||||
supports-color
|
||||
MIT
|
||||
MIT License
|
||||
@@ -15061,9 +15034,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.859.0",
|
||||
"@aws-sdk/client-ecr-public": "^3.859.0",
|
||||
"@docker/actions-toolkit": "^0.62.1",
|
||||
"http-proxy-agent": "^7.0.2",
|
||||
"https-proxy-agent": "^7.0.5"
|
||||
"https-proxy-agent": "^7.0.6"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@types/node": "^20.12.12",
|
||||
|
||||
@@ -5,14 +5,15 @@ import {NodeHttpHandler} from '@smithy/node-http-handler';
|
||||
import {HttpProxyAgent} from 'http-proxy-agent';
|
||||
import {HttpsProxyAgent} from 'https-proxy-agent';
|
||||
|
||||
const ecrRegistryRegex = /^(([0-9]{12})\.dkr\.ecr\.(.+)\.amazonaws\.com(.cn)?)(\/([^:]+)(:.+)?)?$/;
|
||||
const ecrRegistryRegex = /^(([0-9]{12})\.(dkr\.ecr|dkr-ecr)\.(.+)\.(on\.aws|amazonaws\.com(.cn)?))(\/([^:]+)(:.+)?)?$/;
|
||||
const ecrPublicRegistryRegex = /public\.ecr\.aws|ecr-public\.aws\.com/;
|
||||
|
||||
export const isECR = (registry: string): boolean => {
|
||||
return ecrRegistryRegex.test(registry) || isPubECR(registry);
|
||||
};
|
||||
|
||||
export const isPubECR = (registry: string): boolean => {
|
||||
return registry === 'public.ecr.aws';
|
||||
return ecrPublicRegistryRegex.test(registry);
|
||||
};
|
||||
|
||||
export const getRegion = (registry: string): string => {
|
||||
@@ -23,7 +24,7 @@ export const getRegion = (registry: string): string => {
|
||||
if (!matches) {
|
||||
return '';
|
||||
}
|
||||
return matches[3];
|
||||
return matches[4];
|
||||
};
|
||||
|
||||
export const getAccountIDs = (registry: string): string[] => {
|
||||
|
||||
1932
yarn.lock
1932
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.2":
|
||||
version: 2.3.2
|
||||
resolution: "@actions/artifact@npm:2.3.2"
|
||||
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: 78ee41b43800accb2f3527e1733217c43d53693e7f96ce2470b16890fb84f5c2ebaaa6048ccdb6cfe188b54c02779ec99623c6932558e757f6829cfde203cf2c
|
||||
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.3":
|
||||
version: 4.0.3
|
||||
resolution: "@actions/cache@npm:4.0.3"
|
||||
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: ee9c2a21a70bd3f35c63f302af478e23f135c26deb77ea2e4eed29c62766a4b201fc7435651c0d56fa504c02d203107e3bdfda1dba18a3ee09338e1dfc3f2fe8
|
||||
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"
|
||||
@@ -83,15 +91,18 @@ __metadata:
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"@actions/github@npm:^6.0.0":
|
||||
version: 6.0.0
|
||||
resolution: "@actions/github@npm:6.0.0"
|
||||
"@actions/github@npm:^6.0.1":
|
||||
version: 6.0.1
|
||||
resolution: "@actions/github@npm:6.0.1"
|
||||
dependencies:
|
||||
"@actions/http-client": ^2.2.0
|
||||
"@octokit/core": ^5.0.1
|
||||
"@octokit/plugin-paginate-rest": ^9.0.0
|
||||
"@octokit/plugin-rest-endpoint-methods": ^10.0.0
|
||||
checksum: 81831a78377175d8825fc0b94247ff366c0e87ad1dfa48df9b30b8659506f216dcf1e2d3124fcd318839b92c24ba20165e238b3cc11a34db89c69c40825e9ccf
|
||||
"@octokit/plugin-paginate-rest": ^9.2.2
|
||||
"@octokit/plugin-rest-endpoint-methods": ^10.4.0
|
||||
"@octokit/request": ^8.4.1
|
||||
"@octokit/request-error": ^5.1.1
|
||||
undici: ^5.28.5
|
||||
checksum: ba6a162a5727dea2f3f3fc450e02c5b336ceb65a0e26ba9ad9c62b20f4f5b2625ca347a9311a4905ef3c92378ca022caba841a283cb7f2e4175d79e3d1ecaf12
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
@@ -115,7 +126,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 +136,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 +153,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 +185,464 @@ __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.859.0":
|
||||
version: 3.859.0
|
||||
resolution: "@aws-sdk/client-ecr-public@npm:3.859.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.858.0
|
||||
"@aws-sdk/credential-provider-node": 3.859.0
|
||||
"@aws-sdk/middleware-host-header": 3.840.0
|
||||
"@aws-sdk/middleware-logger": 3.840.0
|
||||
"@aws-sdk/middleware-recursion-detection": 3.840.0
|
||||
"@aws-sdk/middleware-user-agent": 3.858.0
|
||||
"@aws-sdk/region-config-resolver": 3.840.0
|
||||
"@aws-sdk/types": 3.840.0
|
||||
"@aws-sdk/util-endpoints": 3.848.0
|
||||
"@aws-sdk/util-user-agent-browser": 3.840.0
|
||||
"@aws-sdk/util-user-agent-node": 3.858.0
|
||||
"@smithy/config-resolver": ^4.1.4
|
||||
"@smithy/core": ^3.7.2
|
||||
"@smithy/fetch-http-handler": ^5.1.0
|
||||
"@smithy/hash-node": ^4.0.4
|
||||
"@smithy/invalid-dependency": ^4.0.4
|
||||
"@smithy/middleware-content-length": ^4.0.4
|
||||
"@smithy/middleware-endpoint": ^4.1.17
|
||||
"@smithy/middleware-retry": ^4.1.18
|
||||
"@smithy/middleware-serde": ^4.0.8
|
||||
"@smithy/middleware-stack": ^4.0.4
|
||||
"@smithy/node-config-provider": ^4.1.3
|
||||
"@smithy/node-http-handler": ^4.1.0
|
||||
"@smithy/protocol-http": ^5.1.2
|
||||
"@smithy/smithy-client": ^4.4.9
|
||||
"@smithy/types": ^4.3.1
|
||||
"@smithy/url-parser": ^4.0.4
|
||||
"@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.25
|
||||
"@smithy/util-defaults-mode-node": ^4.0.25
|
||||
"@smithy/util-endpoints": ^3.0.6
|
||||
"@smithy/util-middleware": ^4.0.4
|
||||
"@smithy/util-retry": ^4.0.6
|
||||
"@smithy/util-utf8": ^4.0.0
|
||||
tslib: ^2.6.2
|
||||
checksum: 858f05bf4ade9d199b64187845fcf47208b37e0829948ebbb0431f85399fde7f4e6ecf5e273c8a439a2777a5640a4d624d66173971d4898233950a40aff7d6e7
|
||||
checksum: 94c8cbd79ed39e2ba113edad393b5c103357b9f0a6336e4c19faa4c9885041027e3ab92938159b1317c09d2c1e4c4e4521bcde3ec0dd97ca01e1f1a948d1626e
|
||||
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.859.0":
|
||||
version: 3.859.0
|
||||
resolution: "@aws-sdk/client-ecr@npm:3.859.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.858.0
|
||||
"@aws-sdk/credential-provider-node": 3.859.0
|
||||
"@aws-sdk/middleware-host-header": 3.840.0
|
||||
"@aws-sdk/middleware-logger": 3.840.0
|
||||
"@aws-sdk/middleware-recursion-detection": 3.840.0
|
||||
"@aws-sdk/middleware-user-agent": 3.858.0
|
||||
"@aws-sdk/region-config-resolver": 3.840.0
|
||||
"@aws-sdk/types": 3.840.0
|
||||
"@aws-sdk/util-endpoints": 3.848.0
|
||||
"@aws-sdk/util-user-agent-browser": 3.840.0
|
||||
"@aws-sdk/util-user-agent-node": 3.858.0
|
||||
"@smithy/config-resolver": ^4.1.4
|
||||
"@smithy/core": ^3.7.2
|
||||
"@smithy/fetch-http-handler": ^5.1.0
|
||||
"@smithy/hash-node": ^4.0.4
|
||||
"@smithy/invalid-dependency": ^4.0.4
|
||||
"@smithy/middleware-content-length": ^4.0.4
|
||||
"@smithy/middleware-endpoint": ^4.1.17
|
||||
"@smithy/middleware-retry": ^4.1.18
|
||||
"@smithy/middleware-serde": ^4.0.8
|
||||
"@smithy/middleware-stack": ^4.0.4
|
||||
"@smithy/node-config-provider": ^4.1.3
|
||||
"@smithy/node-http-handler": ^4.1.0
|
||||
"@smithy/protocol-http": ^5.1.2
|
||||
"@smithy/smithy-client": ^4.4.9
|
||||
"@smithy/types": ^4.3.1
|
||||
"@smithy/url-parser": ^4.0.4
|
||||
"@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.25
|
||||
"@smithy/util-defaults-mode-node": ^4.0.25
|
||||
"@smithy/util-endpoints": ^3.0.6
|
||||
"@smithy/util-middleware": ^4.0.4
|
||||
"@smithy/util-retry": ^4.0.6
|
||||
"@smithy/util-utf8": ^4.0.0
|
||||
"@smithy/util-waiter": ^4.0.6
|
||||
tslib: ^2.6.2
|
||||
checksum: fb9ed45d8a55f69db82e4ba84215d19617a4aee60527265c0c7b5abc8c03a991761abda1b0c9ccc0cb7debe4b5c108c8f7fcb085d070d9028207c92418c52b8b
|
||||
checksum: 39c9dd696111bcdb6ddf63205c7d5df95f2f1c1c0b2c17a311471dca5e6e42bed24d3a564b9169f9a3a16e112cc6726e1e7e39cf82cb3d0eee25122bbe1bc78b
|
||||
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.858.0":
|
||||
version: 3.858.0
|
||||
resolution: "@aws-sdk/client-sso@npm:3.858.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.858.0
|
||||
"@aws-sdk/middleware-host-header": 3.840.0
|
||||
"@aws-sdk/middleware-logger": 3.840.0
|
||||
"@aws-sdk/middleware-recursion-detection": 3.840.0
|
||||
"@aws-sdk/middleware-user-agent": 3.858.0
|
||||
"@aws-sdk/region-config-resolver": 3.840.0
|
||||
"@aws-sdk/types": 3.840.0
|
||||
"@aws-sdk/util-endpoints": 3.848.0
|
||||
"@aws-sdk/util-user-agent-browser": 3.840.0
|
||||
"@aws-sdk/util-user-agent-node": 3.858.0
|
||||
"@smithy/config-resolver": ^4.1.4
|
||||
"@smithy/core": ^3.7.2
|
||||
"@smithy/fetch-http-handler": ^5.1.0
|
||||
"@smithy/hash-node": ^4.0.4
|
||||
"@smithy/invalid-dependency": ^4.0.4
|
||||
"@smithy/middleware-content-length": ^4.0.4
|
||||
"@smithy/middleware-endpoint": ^4.1.17
|
||||
"@smithy/middleware-retry": ^4.1.18
|
||||
"@smithy/middleware-serde": ^4.0.8
|
||||
"@smithy/middleware-stack": ^4.0.4
|
||||
"@smithy/node-config-provider": ^4.1.3
|
||||
"@smithy/node-http-handler": ^4.1.0
|
||||
"@smithy/protocol-http": ^5.1.2
|
||||
"@smithy/smithy-client": ^4.4.9
|
||||
"@smithy/types": ^4.3.1
|
||||
"@smithy/url-parser": ^4.0.4
|
||||
"@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.25
|
||||
"@smithy/util-defaults-mode-node": ^4.0.25
|
||||
"@smithy/util-endpoints": ^3.0.6
|
||||
"@smithy/util-middleware": ^4.0.4
|
||||
"@smithy/util-retry": ^4.0.6
|
||||
"@smithy/util-utf8": ^4.0.0
|
||||
tslib: ^2.6.2
|
||||
checksum: 4f637e5c691560b0609ca8d1ab953379e1124529631d3e32043eb052f6ee65300245a16a8319460dc1a810854be667725be60657222f68b4833f83be03f4d6e7
|
||||
checksum: b5b38c39f661ea2cc52d1db76ba6bfd5c890b44bd842513a28d5938109c34c967879b638be15a9f7b69c09a926eba8c9e13dc4d6181a282a5de127e02b1e8fee
|
||||
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.858.0":
|
||||
version: 3.858.0
|
||||
resolution: "@aws-sdk/core@npm:3.858.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.840.0
|
||||
"@aws-sdk/xml-builder": 3.821.0
|
||||
"@smithy/core": ^3.7.2
|
||||
"@smithy/node-config-provider": ^4.1.3
|
||||
"@smithy/property-provider": ^4.0.4
|
||||
"@smithy/protocol-http": ^5.1.2
|
||||
"@smithy/signature-v4": ^5.1.2
|
||||
"@smithy/smithy-client": ^4.4.9
|
||||
"@smithy/types": ^4.3.1
|
||||
"@smithy/util-base64": ^4.0.0
|
||||
"@smithy/util-body-length-browser": ^4.0.0
|
||||
"@smithy/util-middleware": ^4.0.4
|
||||
"@smithy/util-utf8": ^4.0.0
|
||||
fast-xml-parser: 5.2.5
|
||||
tslib: ^2.6.2
|
||||
checksum: b9726eca5adad1b2f90f8b21d70b8c2619257f6b61e026e54caac781c24636ae63fbbf506e6086abd3aead5960fa4c11524c39bc37889e037b13dd565e5828db
|
||||
checksum: 486ed384e9afc197e64588c3f24eb055a8301f0f22849658e5373ca3774e27c8590142d985b4025dbf042588fd2ebbda3b1cd2e0ff160a9cba038e50273a761f
|
||||
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.858.0":
|
||||
version: 3.858.0
|
||||
resolution: "@aws-sdk/credential-provider-env@npm:3.858.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.858.0
|
||||
"@aws-sdk/types": 3.840.0
|
||||
"@smithy/property-provider": ^4.0.4
|
||||
"@smithy/types": ^4.3.1
|
||||
tslib: ^2.6.2
|
||||
checksum: a38f6996369c16f839e9d8a6e9f70937679f267efea83854ed43e6ca79342cd7e3caf6942672935a3ea818ebec64ea4caec0b69a2d1fa5adc170dd573cc09ecd
|
||||
checksum: 7631a9502da0ada1a8fd8e8f988a8dc0d81cfe371db6153b3f175a8fc8f7c7d2e246b7c4cc9d38ba31b351147729aeee01026e1b7ff4d5a4ca1e7d9aa1626545
|
||||
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.858.0":
|
||||
version: 3.858.0
|
||||
resolution: "@aws-sdk/credential-provider-http@npm:3.858.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.858.0
|
||||
"@aws-sdk/types": 3.840.0
|
||||
"@smithy/fetch-http-handler": ^5.1.0
|
||||
"@smithy/node-http-handler": ^4.1.0
|
||||
"@smithy/property-provider": ^4.0.4
|
||||
"@smithy/protocol-http": ^5.1.2
|
||||
"@smithy/smithy-client": ^4.4.9
|
||||
"@smithy/types": ^4.3.1
|
||||
"@smithy/util-stream": ^4.2.3
|
||||
tslib: ^2.6.2
|
||||
checksum: 78f50015a7a13588c120a9a1a4a71bba2d04541aebaebe69249a083bf7ca0bdd3fc7a2985a88c386e77aeadc861470cc5aa56eaa24ec2f10981e4530cf6a57f9
|
||||
checksum: c92f3f591f9e613f779931a51f956e8b77b7421407a2e556a768917b3c46c4ef88f5f46b2fa0324848bce0ce4e4744ab326d672ec2d3eab8838fe6c27e0ad082
|
||||
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.859.0":
|
||||
version: 3.859.0
|
||||
resolution: "@aws-sdk/credential-provider-ini@npm:3.859.0"
|
||||
dependencies:
|
||||
"@aws-sdk/types": 3.577.0
|
||||
"@smithy/property-provider": ^3.0.0
|
||||
"@smithy/types": ^3.0.0
|
||||
"@aws-sdk/core": 3.858.0
|
||||
"@aws-sdk/credential-provider-env": 3.858.0
|
||||
"@aws-sdk/credential-provider-http": 3.858.0
|
||||
"@aws-sdk/credential-provider-process": 3.858.0
|
||||
"@aws-sdk/credential-provider-sso": 3.859.0
|
||||
"@aws-sdk/credential-provider-web-identity": 3.858.0
|
||||
"@aws-sdk/nested-clients": 3.858.0
|
||||
"@aws-sdk/types": 3.840.0
|
||||
"@smithy/credential-provider-imds": ^4.0.6
|
||||
"@smithy/property-provider": ^4.0.4
|
||||
"@smithy/shared-ini-file-loader": ^4.0.4
|
||||
"@smithy/types": ^4.3.1
|
||||
tslib: ^2.6.2
|
||||
checksum: 155de3eafccc3eac6b94d53b4ec89b8f7ea313866e245f04887c4b0b274bcc4d04c9a1bc0c1cb7ae238a99aa032bf9c4eab6c1b1b676a06cce0de233ca0a7884
|
||||
checksum: f7f08f09702feb445c1386e31a1246ab9d8324be6d90a72560b2664d0763101d8d791db7db2f5c12cb0c9a4efd41c3a0562dac49c194b1672da02fd0c35728cb
|
||||
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.859.0":
|
||||
version: 3.859.0
|
||||
resolution: "@aws-sdk/credential-provider-node@npm:3.859.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.858.0
|
||||
"@aws-sdk/credential-provider-http": 3.858.0
|
||||
"@aws-sdk/credential-provider-ini": 3.859.0
|
||||
"@aws-sdk/credential-provider-process": 3.858.0
|
||||
"@aws-sdk/credential-provider-sso": 3.859.0
|
||||
"@aws-sdk/credential-provider-web-identity": 3.858.0
|
||||
"@aws-sdk/types": 3.840.0
|
||||
"@smithy/credential-provider-imds": ^4.0.6
|
||||
"@smithy/property-provider": ^4.0.4
|
||||
"@smithy/shared-ini-file-loader": ^4.0.4
|
||||
"@smithy/types": ^4.3.1
|
||||
tslib: ^2.6.2
|
||||
checksum: 19c466e2eaa0f1df4fd0bde89f5d8f5566229c852eab91e0b1b729871906fddc4fb6297278ffd2669c106e7ff991cc46864328b2cb136559a8fda119d83a1363
|
||||
checksum: 8802cee6d5efb6be90b1a386cd2b293f5c1c123f29b898079f91dddc85811ed3ddd13501ce71b75466e58f043911a4a2c1a74eb988a153b7825d296497706128
|
||||
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.858.0":
|
||||
version: 3.858.0
|
||||
resolution: "@aws-sdk/credential-provider-process@npm:3.858.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.858.0
|
||||
"@aws-sdk/types": 3.840.0
|
||||
"@smithy/property-provider": ^4.0.4
|
||||
"@smithy/shared-ini-file-loader": ^4.0.4
|
||||
"@smithy/types": ^4.3.1
|
||||
tslib: ^2.6.2
|
||||
peerDependencies:
|
||||
"@aws-sdk/client-sts": ^3.583.0
|
||||
checksum: 055116aa4f492bd972ef458026b20849e7297bd018fc77d11352e47622c416878582138c9cd23d581f8b8596dcc7918cce725a73982c7fdb11eec761fb34a19a
|
||||
checksum: f65f6151cba96854486346c12a28eb281518d624f1406bd7f24c0915ee6f117992122832107c345bad2061898175131913d53c52eec43aad6e52b0975c646b27
|
||||
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.859.0":
|
||||
version: 3.859.0
|
||||
resolution: "@aws-sdk/credential-provider-sso@npm:3.859.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.858.0
|
||||
"@aws-sdk/core": 3.858.0
|
||||
"@aws-sdk/token-providers": 3.859.0
|
||||
"@aws-sdk/types": 3.840.0
|
||||
"@smithy/property-provider": ^4.0.4
|
||||
"@smithy/shared-ini-file-loader": ^4.0.4
|
||||
"@smithy/types": ^4.3.1
|
||||
tslib: ^2.6.2
|
||||
checksum: e3bff754eb7d4baafffa9a5167b21314f3f7c84903d9a95ef17c29c38e82b33a5aa724119b540494dec94fab58a7b5e32782c851930f1d9e3468a644a558ad83
|
||||
checksum: 5330fc5e29c287059880451f9718d778300dc3d0afa510b4089a74b8aac50b193e68658183e8b114aedefc559d235cd50ac4ec0233ca47325c4af1429e18548a
|
||||
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.858.0":
|
||||
version: 3.858.0
|
||||
resolution: "@aws-sdk/credential-provider-web-identity@npm:3.858.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.858.0
|
||||
"@aws-sdk/nested-clients": 3.858.0
|
||||
"@aws-sdk/types": 3.840.0
|
||||
"@smithy/property-provider": ^4.0.4
|
||||
"@smithy/types": ^4.3.1
|
||||
tslib: ^2.6.2
|
||||
checksum: aa97aac3407efcd3b72dd3bbd4d38daa158423bce454f93c62fc60b5c9c2cf2077ffe5c58a90d1690559d10731c6dfcac1d9cbcb8286a84d267f2ff7c7d926f4
|
||||
checksum: 6dc741df0298dd75ca262e771beaeefc8af8f30ba15c17ddc7f9200f6a4c25afeb9b2485680d24698ca2f0843159b3a66038311994aab5c6e26c35be6a7d8495
|
||||
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.840.0":
|
||||
version: 3.840.0
|
||||
resolution: "@aws-sdk/middleware-host-header@npm:3.840.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.840.0
|
||||
"@smithy/protocol-http": ^5.1.2
|
||||
"@smithy/types": ^4.3.1
|
||||
tslib: ^2.6.2
|
||||
checksum: cd2dd6ae4b0cddcf7fcac507158beeb878db947d37f94a53f0573079fb7d1b817525b0c6ab61e384441a2bd608f8a8a45f7e2476a233b66afc3ae6ad23f72116
|
||||
checksum: 8d4a51007aa740daeea1c8427d7f2bf5d91d8fa9bd890ed7212a7460b68878bd651666585ef7cf2f553fe34aac141b1eaa8cd9b3520da0fc62918e7e43473b02
|
||||
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.840.0":
|
||||
version: 3.840.0
|
||||
resolution: "@aws-sdk/middleware-logger@npm:3.840.0"
|
||||
dependencies:
|
||||
"@aws-sdk/types": 3.577.0
|
||||
"@smithy/property-provider": ^3.0.0
|
||||
"@smithy/types": ^3.0.0
|
||||
"@aws-sdk/types": 3.840.0
|
||||
"@smithy/types": ^4.3.1
|
||||
tslib: ^2.6.2
|
||||
peerDependencies:
|
||||
"@aws-sdk/client-sts": ^3.577.0
|
||||
checksum: d3eb6c99fe2bfae457c8122b155d0608f0cb0c8fd4bc067f587ffced795b61e4709256842ea629abc0849a085b26d1a946711a646dd87394da6b4d31db7f07e6
|
||||
checksum: 2d9744eb17f969057956008d74a34adc27ee810f8a95e26547b2c8d8987bbe42f585ac6a1d033e341761245cd34c58a670155cfec01ee6ae3d29ed5c1531bc48
|
||||
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.840.0":
|
||||
version: 3.840.0
|
||||
resolution: "@aws-sdk/middleware-recursion-detection@npm:3.840.0"
|
||||
dependencies:
|
||||
"@aws-sdk/types": 3.577.0
|
||||
"@smithy/protocol-http": ^4.0.0
|
||||
"@smithy/types": ^3.0.0
|
||||
"@aws-sdk/types": 3.840.0
|
||||
"@smithy/protocol-http": ^5.1.2
|
||||
"@smithy/types": ^4.3.1
|
||||
tslib: ^2.6.2
|
||||
checksum: f325612558d8d56a13e0593a78a1807c55dac5913313ed53d0a09a1c4bc771976e74e1738bd46068adeea755c35f72b19c2f902ecad1ff1ae52290972cf9fe88
|
||||
checksum: aa8aed9a33edb472dceb5eca4f92af4db814415422282ed9910d60ac585c1e99eaf46fed9b5890d358cee65631708a22014ac558a9404c6bd6487387046e6886
|
||||
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.858.0":
|
||||
version: 3.858.0
|
||||
resolution: "@aws-sdk/middleware-user-agent@npm:3.858.0"
|
||||
dependencies:
|
||||
"@aws-sdk/types": 3.577.0
|
||||
"@smithy/types": ^3.0.0
|
||||
"@aws-sdk/core": 3.858.0
|
||||
"@aws-sdk/types": 3.840.0
|
||||
"@aws-sdk/util-endpoints": 3.848.0
|
||||
"@smithy/core": ^3.7.2
|
||||
"@smithy/protocol-http": ^5.1.2
|
||||
"@smithy/types": ^4.3.1
|
||||
tslib: ^2.6.2
|
||||
checksum: 142e993c82997391fb9c66244f2add15ad71e626b9aacf36a81ea369d33e3a1375ece09dd6315bf8fcaf4d8dcbaae340237088f1091f12a8f56740eddb32090a
|
||||
checksum: 6a3531464c1e7f4d8cd69ad8788850d66d355a7b3ee8810c54c5270b8ab08263e3a6d51ce08188f8a6384e66b89db4c19cc3589758f693ff7b56543d25f3a7a2
|
||||
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.858.0":
|
||||
version: 3.858.0
|
||||
resolution: "@aws-sdk/nested-clients@npm:3.858.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.858.0
|
||||
"@aws-sdk/middleware-host-header": 3.840.0
|
||||
"@aws-sdk/middleware-logger": 3.840.0
|
||||
"@aws-sdk/middleware-recursion-detection": 3.840.0
|
||||
"@aws-sdk/middleware-user-agent": 3.858.0
|
||||
"@aws-sdk/region-config-resolver": 3.840.0
|
||||
"@aws-sdk/types": 3.840.0
|
||||
"@aws-sdk/util-endpoints": 3.848.0
|
||||
"@aws-sdk/util-user-agent-browser": 3.840.0
|
||||
"@aws-sdk/util-user-agent-node": 3.858.0
|
||||
"@smithy/config-resolver": ^4.1.4
|
||||
"@smithy/core": ^3.7.2
|
||||
"@smithy/fetch-http-handler": ^5.1.0
|
||||
"@smithy/hash-node": ^4.0.4
|
||||
"@smithy/invalid-dependency": ^4.0.4
|
||||
"@smithy/middleware-content-length": ^4.0.4
|
||||
"@smithy/middleware-endpoint": ^4.1.17
|
||||
"@smithy/middleware-retry": ^4.1.18
|
||||
"@smithy/middleware-serde": ^4.0.8
|
||||
"@smithy/middleware-stack": ^4.0.4
|
||||
"@smithy/node-config-provider": ^4.1.3
|
||||
"@smithy/node-http-handler": ^4.1.0
|
||||
"@smithy/protocol-http": ^5.1.2
|
||||
"@smithy/smithy-client": ^4.4.9
|
||||
"@smithy/types": ^4.3.1
|
||||
"@smithy/url-parser": ^4.0.4
|
||||
"@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.25
|
||||
"@smithy/util-defaults-mode-node": ^4.0.25
|
||||
"@smithy/util-endpoints": ^3.0.6
|
||||
"@smithy/util-middleware": ^4.0.4
|
||||
"@smithy/util-retry": ^4.0.6
|
||||
"@smithy/util-utf8": ^4.0.0
|
||||
tslib: ^2.6.2
|
||||
checksum: 9655fe7b9a071a9a62397871a7bc529ebfff372a2cd1997b78c22ff320b0cdf0224881c122375e0b97e7307a167d437f438f6c414db71c882afb66a0510a519e
|
||||
checksum: 9430e1f51f632b64089b951c668c5a884aa8bdb98a3cb54eb3a38a2617a89d5ae6c6c6425a3b20d831d33a99a386205d8c4e256c3ef6d0f4b94d0629ae9c5589
|
||||
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.840.0":
|
||||
version: 3.840.0
|
||||
resolution: "@aws-sdk/region-config-resolver@npm:3.840.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.840.0
|
||||
"@smithy/node-config-provider": ^4.1.3
|
||||
"@smithy/types": ^4.3.1
|
||||
"@smithy/util-config-provider": ^4.0.0
|
||||
"@smithy/util-middleware": ^4.0.4
|
||||
tslib: ^2.6.2
|
||||
checksum: a704418bb5ba6414345cc0d5464b2554d4ac8efdd9e0cb747a7514673bb687500119c77f9109f4b04975095b72b7be64051dbf5e627975950f37c9e53df0fe5b
|
||||
checksum: c0368460299c12da578f03cfcdfb3b0fe5f0c29103e4d49fa7b1323fc4ed6b8059801597d1b68b95967df92397cda8d02fe8326eaa31431c26e0ace30cb0d272
|
||||
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.859.0":
|
||||
version: 3.859.0
|
||||
resolution: "@aws-sdk/token-providers@npm:3.859.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/core": 3.858.0
|
||||
"@aws-sdk/nested-clients": 3.858.0
|
||||
"@aws-sdk/types": 3.840.0
|
||||
"@smithy/property-provider": ^4.0.4
|
||||
"@smithy/shared-ini-file-loader": ^4.0.4
|
||||
"@smithy/types": ^4.3.1
|
||||
tslib: ^2.6.2
|
||||
checksum: 66326254108ca87300bbb7aea7786da617293bb7fe093153eab123ff73a824071b1d3a155827bb9193925704e4f60d01cddfc71018d2e1a82d7609091338acfe
|
||||
checksum: 22c0d91bb46ddbb798fa40c5a1663e2e8147f2c1bc29d89e7432abaced230ce3321d22e3503b3285f4989f3a5a6c2a544f4fcf64981e6a6939690527ca1ab65f
|
||||
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.840.0":
|
||||
version: 3.840.0
|
||||
resolution: "@aws-sdk/types@npm:3.840.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.3.1
|
||||
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: 01c30bb35090b8105a120ac10bfb5adb291e2b07b15813eebc45a25e8febe79bb4c363600f52abd5348e73b5171611f5e7da8d7f7aeafb7cb3c7b22ac83a1cf8
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
@@ -685,15 +656,16 @@ __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.848.0":
|
||||
version: 3.848.0
|
||||
resolution: "@aws-sdk/util-endpoints@npm:3.848.0"
|
||||
dependencies:
|
||||
"@aws-sdk/types": 3.577.0
|
||||
"@smithy/types": ^3.0.0
|
||||
"@smithy/util-endpoints": ^2.0.0
|
||||
"@aws-sdk/types": 3.840.0
|
||||
"@smithy/types": ^4.3.1
|
||||
"@smithy/url-parser": ^4.0.4
|
||||
"@smithy/util-endpoints": ^3.0.6
|
||||
tslib: ^2.6.2
|
||||
checksum: 8494b939f43f18ea286083b5a8d2c8aeba65361f922066b195400f43ea5b165438d0fe3f6064a7d5a21c980adf84d702da42ba733fc41f9374c36e3ef277c408
|
||||
checksum: 0beeacb830698524bff6f20010153218f5b3dfbf759a0cb2151bc41d14a25709ba58453774e2427239988333597aabc428a0507f9f75e37ece03d6a4a90a0ccc
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
@@ -706,41 +678,43 @@ __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.840.0":
|
||||
version: 3.840.0
|
||||
resolution: "@aws-sdk/util-user-agent-browser@npm:3.840.0"
|
||||
dependencies:
|
||||
"@aws-sdk/types": 3.577.0
|
||||
"@smithy/types": ^3.0.0
|
||||
"@aws-sdk/types": 3.840.0
|
||||
"@smithy/types": ^4.3.1
|
||||
bowser: ^2.11.0
|
||||
tslib: ^2.6.2
|
||||
checksum: 48b29b186f9d59c7ee272568cb0752834527aeccf122e4794313f84fb4c72dc65edf4bbf22f07aa7e2dde7da288e6d7ba20633edd9dbc853aca1b170bdfe1532
|
||||
checksum: eb99a07b7d96f0555aca25f11cd9e2f579e149d102cc78300c47cc0031a40e7ea1d559bfe15b47bccd675d33fe56ee8e4855198d8eb2fb6e9bb6517e10f39700
|
||||
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.858.0":
|
||||
version: 3.858.0
|
||||
resolution: "@aws-sdk/util-user-agent-node@npm:3.858.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.858.0
|
||||
"@aws-sdk/types": 3.840.0
|
||||
"@smithy/node-config-provider": ^4.1.3
|
||||
"@smithy/types": ^4.3.1
|
||||
tslib: ^2.6.2
|
||||
peerDependencies:
|
||||
aws-crt: ">=1.0.0"
|
||||
peerDependenciesMeta:
|
||||
aws-crt:
|
||||
optional: true
|
||||
checksum: 732fb562a02826fbe0e0ce2571c4f396b14515a57f01121e99b84088761f1cf6e47e03c9a3613e51f3ff34aae8eae3b47440e0e012a9f54096e7f2b244705ef5
|
||||
checksum: 8941da2d56a0ccc3f1fe70669671c3e0d8b39faa967b20a730952d656098f78903ccda5d5a4cf79a91b403591a919729642a2ae9646364b1e919f71261004a57
|
||||
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"
|
||||
"@aws-sdk/xml-builder@npm:3.821.0":
|
||||
version: 3.821.0
|
||||
resolution: "@aws-sdk/xml-builder@npm:3.821.0"
|
||||
dependencies:
|
||||
tslib: ^2.3.1
|
||||
checksum: dacd27164aa0835888434e080b67f04510e2281560540ff73496f2d0aa73b0b7f830ec08491b35c3a51bf6214615579182aff8727e151e54a74a97a197a2ac31
|
||||
"@smithy/types": ^4.3.1
|
||||
tslib: ^2.6.2
|
||||
checksum: f6ee1e5f5336afeb72e2b5e712593d1dcaa626729d0a12941c32e14136308b8729b225d4c75e7b6606bc17eeb79ea28076212aced93cc6460fefb9b712b07e28
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
@@ -1659,32 +1633,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.62.1":
|
||||
version: 0.62.1
|
||||
resolution: "@docker/actions-toolkit@npm:0.62.1"
|
||||
dependencies:
|
||||
"@actions/artifact": ^2.1.8
|
||||
"@actions/cache": ^3.2.4
|
||||
"@actions/core": ^1.10.1
|
||||
"@actions/artifact": ^2.3.2
|
||||
"@actions/cache": ^4.0.3
|
||||
"@actions/core": ^1.11.1
|
||||
"@actions/exec": ^1.1.1
|
||||
"@actions/github": ^6.0.0
|
||||
"@actions/http-client": ^2.2.1
|
||||
"@actions/github": ^6.0.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.2
|
||||
tar-stream: ^3.1.7
|
||||
tmp: ^0.2.3
|
||||
checksum: 27fa4a500e94beff376bc322cc1074c82b20f6ceb0104c43ed5efc613763c8b7ea37b231c32c4dfcb5f7ce8a14948eecc799aa363d60d11d848466d5718d63f0
|
||||
checksum: 72dfef5073c7b638a73b53ccd48ec9dc3fa0e0c1b1b0aaf711fc872ef4ef0a882909271c01913f335efc5f868e4062e6e7720b92d6c3a605ecb6cc30d3001f9d
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
@@ -2273,6 +2247,16 @@ __metadata:
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"@octokit/endpoint@npm:^9.0.6":
|
||||
version: 9.0.6
|
||||
resolution: "@octokit/endpoint@npm:9.0.6"
|
||||
dependencies:
|
||||
"@octokit/types": ^13.1.0
|
||||
universal-user-agent: ^6.0.0
|
||||
checksum: f853c08f0777a8cc7c3d2509835d478e11a76d722f807d4f2ad7c0e64bf4dd159536409f466b367a907886aa3b78574d3d09ed95ac462c769e4fccaaad81e72a
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"@octokit/graphql@npm:^4.5.8":
|
||||
version: 4.8.0
|
||||
resolution: "@octokit/graphql@npm:4.8.0"
|
||||
@@ -2316,6 +2300,13 @@ __metadata:
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"@octokit/openapi-types@npm:^24.2.0":
|
||||
version: 24.2.0
|
||||
resolution: "@octokit/openapi-types@npm:24.2.0"
|
||||
checksum: 3c2d2f4cafd21c8a1e6a6fe6b56df6a3c09bc52ab6f829c151f9397694d028aa183ae856f08e006ee7ecaa7bd7eb413a903fbc0ffa6403e7b284ddcda20b1294
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"@octokit/plugin-paginate-rest@npm:^2.17.0":
|
||||
version: 2.21.3
|
||||
resolution: "@octokit/plugin-paginate-rest@npm:2.21.3"
|
||||
@@ -2327,14 +2318,14 @@ __metadata:
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"@octokit/plugin-paginate-rest@npm:^9.0.0":
|
||||
version: 9.1.0
|
||||
resolution: "@octokit/plugin-paginate-rest@npm:9.1.0"
|
||||
"@octokit/plugin-paginate-rest@npm:^9.2.2":
|
||||
version: 9.2.2
|
||||
resolution: "@octokit/plugin-paginate-rest@npm:9.2.2"
|
||||
dependencies:
|
||||
"@octokit/types": ^12.1.0
|
||||
"@octokit/types": ^12.6.0
|
||||
peerDependencies:
|
||||
"@octokit/core": ">=5"
|
||||
checksum: af31f36881af9096d73498e375a790478db4810757b0c2f9798c17d5191a5f62791fef9e4b65b9364e22c7a0480673093dea30b99c2ac8289e0fa5a61005d968
|
||||
"@octokit/core": 5
|
||||
checksum: ea2a3ebf6abc128a1996c5ff7148ebe755ee2ed001aa0c1d3088d67a9d78b093d84820e3ec73bfb165ca8774943a1158afdae4cf7b90b0a07f12ebbe1d8a428b
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
@@ -2347,7 +2338,7 @@ __metadata:
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"@octokit/plugin-rest-endpoint-methods@npm:^10.0.0, @octokit/plugin-rest-endpoint-methods@npm:^10.4.0":
|
||||
"@octokit/plugin-rest-endpoint-methods@npm:^10.4.0":
|
||||
version: 10.4.0
|
||||
resolution: "@octokit/plugin-rest-endpoint-methods@npm:10.4.0"
|
||||
dependencies:
|
||||
@@ -2402,6 +2393,17 @@ __metadata:
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"@octokit/request-error@npm:^5.1.1":
|
||||
version: 5.1.1
|
||||
resolution: "@octokit/request-error@npm:5.1.1"
|
||||
dependencies:
|
||||
"@octokit/types": ^13.1.0
|
||||
deprecation: ^2.0.0
|
||||
once: ^1.4.0
|
||||
checksum: 17d0b3f59c2a8a285715bfe6a85168d9c417aa7a0ff553b9be4198a3bc8bb00384a3530221a448eb19f8f07ea9fc48d264869624f5f84fa63a948a7af8cddc8c
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"@octokit/request@npm:^5.6.0, @octokit/request@npm:^5.6.3":
|
||||
version: 5.6.3
|
||||
resolution: "@octokit/request@npm:5.6.3"
|
||||
@@ -2429,7 +2431,19 @@ __metadata:
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"@octokit/types@npm:^12.0.0, @octokit/types@npm:^12.1.0":
|
||||
"@octokit/request@npm:^8.4.1":
|
||||
version: 8.4.1
|
||||
resolution: "@octokit/request@npm:8.4.1"
|
||||
dependencies:
|
||||
"@octokit/endpoint": ^9.0.6
|
||||
"@octokit/request-error": ^5.1.1
|
||||
"@octokit/types": ^13.1.0
|
||||
universal-user-agent: ^6.0.0
|
||||
checksum: 0ba76728583543baeef9fda98690bc86c57e0a3ccac8c189d2b7d144d248c89167eb37a071ed8fead8f4da0a1c55c4dd98a8fc598769c263b95179fb200959de
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"@octokit/types@npm:^12.0.0":
|
||||
version: 12.1.0
|
||||
resolution: "@octokit/types@npm:12.1.0"
|
||||
dependencies:
|
||||
@@ -2447,6 +2461,15 @@ __metadata:
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"@octokit/types@npm:^13.1.0":
|
||||
version: 13.10.0
|
||||
resolution: "@octokit/types@npm:13.10.0"
|
||||
dependencies:
|
||||
"@octokit/openapi-types": ^24.2.0
|
||||
checksum: fca3764548d5872535b9025c3b5fe6373fe588b287cb5b5259364796c1931bbe5e9ab8a86a5274ce43bb2b3e43b730067c3b86b6b1ade12a98cd59b2e8b3610d
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"@octokit/types@npm:^6.0.3, @octokit/types@npm:^6.16.1, @octokit/types@npm:^6.39.0, @octokit/types@npm:^6.40.0":
|
||||
version: 6.41.0
|
||||
resolution: "@octokit/types@npm:6.41.0"
|
||||
@@ -2477,7 +2500,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 +2510,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 +2536,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 +2561,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 +2579,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 +2595,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 +2634,290 @@ __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.4":
|
||||
version: 4.0.4
|
||||
resolution: "@smithy/abort-controller@npm:4.0.4"
|
||||
dependencies:
|
||||
"@smithy/types": ^3.0.0
|
||||
"@smithy/types": ^4.3.1
|
||||
tslib: ^2.6.2
|
||||
checksum: 8ad1551b558d5cb14e60fdaf07663d37828d11e9bb0faccfa3622ee0b0ddd7c7eab97ae36f501fd3d5bdcb9c570ed4e9ed84cb7b4490053900d20399297f95b5
|
||||
checksum: 50e646633160f16d4d131c4a5612a352bca8ee652acfefc811389307756b791d0e0cee1459eeba4662e09b57e9f78681bb6c24d180d76e605126281fa52c20fb
|
||||
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.1.4":
|
||||
version: 4.1.4
|
||||
resolution: "@smithy/config-resolver@npm:4.1.4"
|
||||
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.1.3
|
||||
"@smithy/types": ^4.3.1
|
||||
"@smithy/util-config-provider": ^4.0.0
|
||||
"@smithy/util-middleware": ^4.0.4
|
||||
tslib: ^2.6.2
|
||||
checksum: 66d66e0c054e90e8dec61d1f8f774709f0e3d5227cec30221c27cc21fb51bbd691c0281f8f01bc4cc0a3472cb7776db3544260a45f8104b0ba1493c27ff2794b
|
||||
checksum: d3c3b7017377ae30839d3bc684fca7ff58c41c2ca71dd067931aff61f0c570b09cf35e47fde660488c7e1ecc8e1abf720bd41f380b9a91ea302fbd7c7f1b85fb
|
||||
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.7.2":
|
||||
version: 3.7.2
|
||||
resolution: "@smithy/core@npm:3.7.2"
|
||||
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.8
|
||||
"@smithy/protocol-http": ^5.1.2
|
||||
"@smithy/types": ^4.3.1
|
||||
"@smithy/util-base64": ^4.0.0
|
||||
"@smithy/util-body-length-browser": ^4.0.0
|
||||
"@smithy/util-middleware": ^4.0.4
|
||||
"@smithy/util-stream": ^4.2.3
|
||||
"@smithy/util-utf8": ^4.0.0
|
||||
tslib: ^2.6.2
|
||||
checksum: 6a02cfc67ea6f7eac367c41c7200c604bbd087a02c418aa69e1cc833b4f0693b1e28205eb62f516ca62ad4cac851a06f435ceaa4505f73b44f89790c11a1e889
|
||||
checksum: 4a437ae019ae83863bb45cbd15a49543e1b756d1fc3ab1eec0444559516704cba78182f62b272f5f52662668d9a0862977c131db2337381369c2795068cc7ca1
|
||||
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.6":
|
||||
version: 4.0.6
|
||||
resolution: "@smithy/credential-provider-imds@npm:4.0.6"
|
||||
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.1.3
|
||||
"@smithy/property-provider": ^4.0.4
|
||||
"@smithy/types": ^4.3.1
|
||||
"@smithy/url-parser": ^4.0.4
|
||||
tslib: ^2.6.2
|
||||
checksum: f592303f6247ae3f404cc6dce108c69f88ffcc56d11fc219e16d101ec58b00141d6253c3f0bedb4a6cf4de5df9cea29514851647aa1a9d0ebe5865fdce37a7ca
|
||||
checksum: 380ada77c7cc7f6e11ee4246a335799cd855b43df07469164ca7ccaeecd1eb8e037adf0b870e57578de7f82bb1f77e5d534c55ed3aa44491fcef55809b5d1d5c
|
||||
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.1.0":
|
||||
version: 5.1.0
|
||||
resolution: "@smithy/fetch-http-handler@npm:5.1.0"
|
||||
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.1.2
|
||||
"@smithy/querystring-builder": ^4.0.4
|
||||
"@smithy/types": ^4.3.1
|
||||
"@smithy/util-base64": ^4.0.0
|
||||
tslib: ^2.6.2
|
||||
checksum: ddb6e1ad989f5f02e7af7ea17a2f8e742f99e53358d64c57803a4fa9dd12e2a4a1c5c5ff69e912937bed661a6a4c583eb184c5e159be720170b686d66647dd01
|
||||
checksum: f88242d6b4f1341e7d45b1defdc6b930f1600d840da57ce015583a81fd24a320e12b9fda12e3c51ecf9ce49ede37fe1f77d21d5e4bb94f094e801b6464dfee8c
|
||||
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.4":
|
||||
version: 4.0.4
|
||||
resolution: "@smithy/hash-node@npm:4.0.4"
|
||||
dependencies:
|
||||
"@smithy/types": ^3.0.0
|
||||
"@smithy/util-buffer-from": ^3.0.0
|
||||
"@smithy/util-utf8": ^3.0.0
|
||||
"@smithy/types": ^4.3.1
|
||||
"@smithy/util-buffer-from": ^4.0.0
|
||||
"@smithy/util-utf8": ^4.0.0
|
||||
tslib: ^2.6.2
|
||||
checksum: ef2520c1e5c7dc7669a2870881edaa9fac07e2bffa300d2434d599453dbce1b0c5239de6fb6d55f121a467e144a1f5c6d7f8d1ddf4547ce86d3e81827289752d
|
||||
checksum: 2fd8a1036b9d6d2948249ad41a97b5801b918948ab1f8041b2b2482848570e8b417eeea7810f959376325e9ab33890775025b34a58305355b84ca8bff1417481
|
||||
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.4":
|
||||
version: 4.0.4
|
||||
resolution: "@smithy/invalid-dependency@npm:4.0.4"
|
||||
dependencies:
|
||||
"@smithy/types": ^3.0.0
|
||||
"@smithy/types": ^4.3.1
|
||||
tslib: ^2.6.2
|
||||
checksum: 3227d5d8ba49d6ca09f95215614d41b75a717985ac2f5c4caa5c082dc87e1a510e1d1af738fe27cdb93c8425a189b2ec74a7d57d949cefa8cbcd62ed83ceb798
|
||||
checksum: 6d6f53558cb252e2070e4830a18c0c72ad486308378d6eab2a185d63f5a0492ffbdff27dbea59f79e2d48477af2295e80d6314becf9ea3215827be8bb6690b07
|
||||
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.4":
|
||||
version: 4.0.4
|
||||
resolution: "@smithy/middleware-content-length@npm:4.0.4"
|
||||
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.1.2
|
||||
"@smithy/types": ^4.3.1
|
||||
tslib: ^2.6.2
|
||||
checksum: a1be07b91f4ddcd6b5358bb8b43529756a80aefb451bd95b2d69e5743229ad7c8d55eed0ad73225301b833dd05173760fa0453891640d4407b4d8f4006c566f5
|
||||
checksum: 251e47fbb7df19a8c39719f96dfd9e00252fc33733d2585898b7e5a37e85056052de1559d3c62b9daf493e2293b574ac2e92e17806777cadc9b733f1aab42294
|
||||
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.1.17":
|
||||
version: 4.1.17
|
||||
resolution: "@smithy/middleware-endpoint@npm:4.1.17"
|
||||
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.7.2
|
||||
"@smithy/middleware-serde": ^4.0.8
|
||||
"@smithy/node-config-provider": ^4.1.3
|
||||
"@smithy/shared-ini-file-loader": ^4.0.4
|
||||
"@smithy/types": ^4.3.1
|
||||
"@smithy/url-parser": ^4.0.4
|
||||
"@smithy/util-middleware": ^4.0.4
|
||||
tslib: ^2.6.2
|
||||
checksum: cbb6c19d210451dd8d61897da203d94ff0a30ebc07ffa0aecafcf196287aa56695ada25410656cc39d071e62f6d7b4cb4e6c718de3ddc96fe88adf84c03b74c3
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"@smithy/middleware-retry@npm:^4.1.18":
|
||||
version: 4.1.18
|
||||
resolution: "@smithy/middleware-retry@npm:4.1.18"
|
||||
dependencies:
|
||||
"@smithy/node-config-provider": ^4.1.3
|
||||
"@smithy/protocol-http": ^5.1.2
|
||||
"@smithy/service-error-classification": ^4.0.6
|
||||
"@smithy/smithy-client": ^4.4.9
|
||||
"@smithy/types": ^4.3.1
|
||||
"@smithy/util-middleware": ^4.0.4
|
||||
"@smithy/util-retry": ^4.0.6
|
||||
tslib: ^2.6.2
|
||||
uuid: ^9.0.1
|
||||
checksum: 33b1c5173ccbcbfd8127ef6009ec167d80fbd539cad35372b25a05b75b1a3b999bba39a3327a46916f41512d8ee4d3d6cfd56bbfdc36867118bee9cac4d94ab3
|
||||
checksum: 523b8d5faf0277656d5040c8842d2d580a1862c9cdb3ccb074b5deb941f502152dbd3536436eb59d1be1a4c86774c4ae1ebed4656ff8d323bd9aa318915079c1
|
||||
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.8":
|
||||
version: 4.0.8
|
||||
resolution: "@smithy/middleware-serde@npm:4.0.8"
|
||||
dependencies:
|
||||
"@smithy/types": ^3.0.0
|
||||
"@smithy/protocol-http": ^5.1.2
|
||||
"@smithy/types": ^4.3.1
|
||||
tslib: ^2.6.2
|
||||
checksum: 9520948ab8fbe50f17eb4fdc2065a068cc9b954c876c354c355cd729ad29790815c4acd4fdafe32456e81308ec2266d35e82aa69fedbcb0cad1981785fc87c25
|
||||
checksum: 1c78cf584bf82c2ed80d55694945d63b5d3bdaf0c4dea1a35ff33b201d939e9ee5afbfb01c6725c9cbc0d9efb3ee50703970d177a9d20dba545e7e7ba3c0a3f5
|
||||
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.4":
|
||||
version: 4.0.4
|
||||
resolution: "@smithy/middleware-stack@npm:4.0.4"
|
||||
dependencies:
|
||||
"@smithy/types": ^3.0.0
|
||||
"@smithy/types": ^4.3.1
|
||||
tslib: ^2.6.2
|
||||
checksum: ca2e9e41aa78dc0e50b51cf94ff3d85ee86a0e241dde5f41640bf4401b862519ba52824c2ad04d861f6e9325749bacfd5ff4be0fef67c8b6f084c9935cce57ca
|
||||
checksum: c0b4e057d438fbc900435a4bcae68308bc17361968ebe828d43b4f78d826711e5d196ea2fc3ef86525169508d885979e459db0d46918ae00a2bb5dc8a5bd6796
|
||||
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.1.3":
|
||||
version: 4.1.3
|
||||
resolution: "@smithy/node-config-provider@npm:4.1.3"
|
||||
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.4
|
||||
"@smithy/shared-ini-file-loader": ^4.0.4
|
||||
"@smithy/types": ^4.3.1
|
||||
tslib: ^2.6.2
|
||||
checksum: 2c2de21e40bcaf85faa27fe856d0c61257fd05c6b205eb7799a26cf1bea7c25023f7951b0b48730c8b77569a3a762ddaa462c5eca193ae051431ebd553c1e637
|
||||
checksum: c1260719f567b64e979e54698356ffd49f26d82e5eaafc60741588257df6016bbf7d2e26cba902ff900058e5e47e985287fdcb7ab1acdf6534b7cd50252e3856
|
||||
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.1.0":
|
||||
version: 4.1.0
|
||||
resolution: "@smithy/node-http-handler@npm:4.1.0"
|
||||
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.4
|
||||
"@smithy/protocol-http": ^5.1.2
|
||||
"@smithy/querystring-builder": ^4.0.4
|
||||
"@smithy/types": ^4.3.1
|
||||
tslib: ^2.6.2
|
||||
checksum: 194542f2abbc1f1ccd9655eb4d06b2fead212e71954d20ca429904dfd7c49f2ea13c06604c31cd7700af53971d86534ec9e0b53c16479dc1491569a99aee67d7
|
||||
checksum: 4ea660acadb0f30255066b068451cd8521d130f5702060c19af5e488f681cc7f76834612e566d80a933d92e897b4fca94973ed942f0a32f1703f6140bdd66b81
|
||||
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.4":
|
||||
version: 4.0.4
|
||||
resolution: "@smithy/property-provider@npm:4.0.4"
|
||||
dependencies:
|
||||
"@smithy/types": ^3.0.0
|
||||
"@smithy/types": ^4.3.1
|
||||
tslib: ^2.6.2
|
||||
checksum: 741cb59b7eab30910a2e38bee1c489120d6b6ef4b3682d556abcf9ddf545a9249902281d72f4a0282953e6f2ec9b6aa0bac8e5003cb0ff389475b4c793ac83e1
|
||||
checksum: 1cd552792897e43c1d4cf91edac0956a8a8d6a7ba588e46532644ae5aca535ec0fb33e3aa71c73f325632b72cd1b8f26732525a6723f74c54238026432b0118e
|
||||
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.1.2":
|
||||
version: 5.1.2
|
||||
resolution: "@smithy/protocol-http@npm:5.1.2"
|
||||
dependencies:
|
||||
"@smithy/types": ^3.0.0
|
||||
"@smithy/types": ^4.3.1
|
||||
tslib: ^2.6.2
|
||||
checksum: 0cea8e4933b1ca888f755495ac10cec9191678eb3425b755443479a1653223eede0d031a3b4cc04a34b80c4ed7b06d7e0a576f577988d876b81982aa84e31bfc
|
||||
checksum: 48dbb715956f7089f3422c6c875fd5c6c901bb55363091905f749bba4bac03c40bf11e63dcc92c9b5de058305c60513e987e1fd7550e585c9e2a98e7355676c8
|
||||
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.4":
|
||||
version: 4.0.4
|
||||
resolution: "@smithy/querystring-builder@npm:4.0.4"
|
||||
dependencies:
|
||||
"@smithy/types": ^3.0.0
|
||||
"@smithy/util-uri-escape": ^3.0.0
|
||||
"@smithy/types": ^4.3.1
|
||||
"@smithy/util-uri-escape": ^4.0.0
|
||||
tslib: ^2.6.2
|
||||
checksum: 28a8a243002560f0928bf73b4686a0f81ed867957a033c2fc9fb249fb7006f076e78fcb506c96956e9d1d5e34a4c6228d0aeb7fcdc9418cdfe3377084e0654f4
|
||||
checksum: e521cd60294aebabb11386f4db7925095ca7dcdd1eda1904ad3443aa65c992a74e7d57b24018c3e141320bcc8b8928a24b8a14c4328bc7176bdb1eac15f6655b
|
||||
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.4":
|
||||
version: 4.0.4
|
||||
resolution: "@smithy/querystring-parser@npm:4.0.4"
|
||||
dependencies:
|
||||
"@smithy/types": ^3.0.0
|
||||
"@smithy/types": ^4.3.1
|
||||
tslib: ^2.6.2
|
||||
checksum: 5b76846e1ef0e19d4cd249089184597476b2f82ff491952b7f61d0dc8705b8596f9d8579fe3c2ce6b61dff61271990c35c85c89aba3724e781b4993afc816a2a
|
||||
checksum: ebe874dfec44ec3d6ff63f9570cac7c18f5b1b2fb3d6a72722adb9d24bb891970fbbabb18d15b8ce46902cc5f21f1751218794f3ff2e110865804d822f4b83a0
|
||||
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.6":
|
||||
version: 4.0.6
|
||||
resolution: "@smithy/service-error-classification@npm:4.0.6"
|
||||
dependencies:
|
||||
"@smithy/types": ^3.0.0
|
||||
checksum: 44ad8cd553896c8608d411763d962f5a758bc86fc49f58ef70b2d2a26f5a9189d1bfa0eed13cfe457cf7bfbedcb2c3e4b6e77bd93bb534f6bef6da74ab776807
|
||||
"@smithy/types": ^4.3.1
|
||||
checksum: c851c882358af75cac41508ffdd2cfdc59e0cd298cb25cf6a4a97dd6cbc92f4890ce04590305726ebb1bbb6b6c527dde8d80ec84095c76bcdb6a3a1cc2107a90
|
||||
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.4":
|
||||
version: 4.0.4
|
||||
resolution: "@smithy/shared-ini-file-loader@npm:4.0.4"
|
||||
dependencies:
|
||||
"@smithy/types": ^3.0.0
|
||||
"@smithy/types": ^4.3.1
|
||||
tslib: ^2.6.2
|
||||
checksum: d8f0d6e8f30293adc7ad0f3877d37c827e04abbcee70750b6f25be0f6fc2b80b659beadb35562f6d2312d5b437cb801241c3c5610986228b83ca3a5c2c1071dd
|
||||
checksum: b9405d3fea03cb7d1b031a41d7a91581eaaf47a5e6322c7bf2c57e27bcf8af403eea68c46a9c878a31af8a1f08fa803fce3d253c55b3318548fc93d61b0e56e8
|
||||
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.1.2":
|
||||
version: 5.1.2
|
||||
resolution: "@smithy/signature-v4@npm:5.1.2"
|
||||
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.1.2
|
||||
"@smithy/types": ^4.3.1
|
||||
"@smithy/util-hex-encoding": ^4.0.0
|
||||
"@smithy/util-middleware": ^4.0.4
|
||||
"@smithy/util-uri-escape": ^4.0.0
|
||||
"@smithy/util-utf8": ^4.0.0
|
||||
tslib: ^2.6.2
|
||||
checksum: 18962f427e33843014e7886bb5b8c3164150a87c5c604f48e6a080017d12f04fd55b1a7776f0f438cc641a2472b75d98c7173a34b9335dcd6a89c55fc1c65dd4
|
||||
checksum: b8acbdd600279be860650b8c99ea443b653f0a980a9aceb7cdf8bf0f017d0376a4aac9bef738c24aa0c2f12b3ae1984bf1ed5d99235f64a9ff41a7fcd851b531
|
||||
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.4.9":
|
||||
version: 4.4.9
|
||||
resolution: "@smithy/smithy-client@npm:4.4.9"
|
||||
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.7.2
|
||||
"@smithy/middleware-endpoint": ^4.1.17
|
||||
"@smithy/middleware-stack": ^4.0.4
|
||||
"@smithy/protocol-http": ^5.1.2
|
||||
"@smithy/types": ^4.3.1
|
||||
"@smithy/util-stream": ^4.2.3
|
||||
tslib: ^2.6.2
|
||||
checksum: 901107c8bc7b80e0e1798210f996a30a9af441a48d399bbc89ed94790a3d2d93263896f71d2139c9ab4d2f40e5e752d233abad45621e33ba2eed8e390f38c364
|
||||
checksum: cb08b39271f25973c12ed6367459aeee2f39907f76109022b56ef7602a9ce47f55f5f852560727cb1fee25f3df55ff3553feff50ff33a5b19c9a8b10dea0b51a
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
@@ -2842,186 +2930,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.3.1":
|
||||
version: 4.3.1
|
||||
resolution: "@smithy/types@npm:4.3.1"
|
||||
dependencies:
|
||||
tslib: ^2.6.2
|
||||
checksum: 1c9c196c781aec0bed7c1519f91030ca4301f30f969394b099ccaa6ab0b47e55b211f54ae56a5a101e91d64899f147d49861e77c24fdc56117cf191a300e00ec
|
||||
checksum: 45f2e15cec06eefb6a2470346c65ec927e56ab1757eee5ab1c431f703a9b350b331679e1f60105a1529ecb9cdb953104883942e655701fb4710bbaf566ec0bc6
|
||||
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.4":
|
||||
version: 4.0.4
|
||||
resolution: "@smithy/url-parser@npm:4.0.4"
|
||||
dependencies:
|
||||
"@smithy/querystring-parser": ^3.0.0
|
||||
"@smithy/types": ^3.0.0
|
||||
"@smithy/querystring-parser": ^4.0.4
|
||||
"@smithy/types": ^4.3.1
|
||||
tslib: ^2.6.2
|
||||
checksum: dd92f24432b90cdd4aa80b3b3cd7f5075a54248756f87e4961cb1d7c52483cee44b3f98c96fefd01e8cc5bd2744e7d658ec547cdb6cdc7365f46c0f7df2b3eb2
|
||||
checksum: 1d3df1c58809f424af00396f987607ec9ebb0840625e4353af6dcd6baf480db8dd080b2f01ed41598ff18681ab2fcecab37f18f4c253fcbdd71eab2fab049400
|
||||
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.25":
|
||||
version: 4.0.25
|
||||
resolution: "@smithy/util-defaults-mode-browser@npm:4.0.25"
|
||||
dependencies:
|
||||
"@smithy/property-provider": ^4.0.4
|
||||
"@smithy/smithy-client": ^4.4.9
|
||||
"@smithy/types": ^4.3.1
|
||||
bowser: ^2.11.0
|
||||
tslib: ^2.6.2
|
||||
checksum: eaf4389187d4c2e7f77010fceb4b10c3e396654d634ff1ef5c66164e86049000fe30eca010f637824ab88b7a9e501fcd08cab7a8b523468af6735b397e481e9a
|
||||
checksum: 98adbe1e62eac5b7a11ca7470172f1912511f7c42c5e29208277302a81720b97664ebee1d2443e14c4b206bfbda031071f2332ca56d3f346dae1668b2f503121
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"@smithy/util-defaults-mode-node@npm:^3.0.1":
|
||||
version: 3.0.1
|
||||
resolution: "@smithy/util-defaults-mode-node@npm:3.0.1"
|
||||
"@smithy/util-defaults-mode-node@npm:^4.0.25":
|
||||
version: 4.0.25
|
||||
resolution: "@smithy/util-defaults-mode-node@npm:4.0.25"
|
||||
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/config-resolver": ^4.1.4
|
||||
"@smithy/credential-provider-imds": ^4.0.6
|
||||
"@smithy/node-config-provider": ^4.1.3
|
||||
"@smithy/property-provider": ^4.0.4
|
||||
"@smithy/smithy-client": ^4.4.9
|
||||
"@smithy/types": ^4.3.1
|
||||
tslib: ^2.6.2
|
||||
checksum: 2355a03b69f56d34e19653597fda1df5e598a04a5c9139a1902dd658b4d883a7c24b04f0e038043daa874f02f7ead719ce2ef2c1d0f9d83bc02a8ea120357469
|
||||
checksum: a9f981d338a990c024b0769f37d818d773518aae31c6be1f9f37820f2f5f254947726e4a98ed3e45fdc7c60221d36f9938f6bb61c40ddd9e85aa031d27660b18
|
||||
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-endpoints@npm:^3.0.6":
|
||||
version: 3.0.6
|
||||
resolution: "@smithy/util-endpoints@npm:3.0.6"
|
||||
dependencies:
|
||||
"@smithy/node-config-provider": ^3.0.0
|
||||
"@smithy/types": ^3.0.0
|
||||
"@smithy/node-config-provider": ^4.1.3
|
||||
"@smithy/types": ^4.3.1
|
||||
tslib: ^2.6.2
|
||||
checksum: 0c4d33ace7bf3d76b6e563f2a07e43a49d6a367d7874dcfc7f06c97accc5307f5e881aea7ea782f3a05e5ddf9e1e2e238070d563496423c048d115f539fc9941
|
||||
checksum: 185c096db895f5bfabc05f1500d3428761fc4d450e998d6bf269879f7fc3f6fd770c1ed5a2de395a6b5300197bd40748a5b06c74b91ff01c9c499a25f2ba827e
|
||||
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-hex-encoding@npm:^4.0.0":
|
||||
version: 4.0.0
|
||||
resolution: "@smithy/util-hex-encoding@npm:4.0.0"
|
||||
dependencies:
|
||||
tslib: ^2.6.2
|
||||
checksum: dd32fd71e915825987a18bf7c0f8f0c4956d0b17a0ee71592b5563bb20e04f24dbf81d36161aac07caab3bb5e535cc609fce20aa4a38f66b457c4c6f5c7748d9
|
||||
checksum: b932fa0e5cd2ba2598ad55ce46722bbbd15109809badaa3e4402fe4dd6f31f62b9fb49d2616e38d660363dc92a5898391f9c8f3b18507c36109e908400785e2a
|
||||
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-middleware@npm:^4.0.4":
|
||||
version: 4.0.4
|
||||
resolution: "@smithy/util-middleware@npm:4.0.4"
|
||||
dependencies:
|
||||
"@smithy/types": ^3.0.0
|
||||
"@smithy/types": ^4.3.1
|
||||
tslib: ^2.6.2
|
||||
checksum: ab73eb58942733f832a730b4ed29013eb2c1ea04b6d108b82aee92b832ba2c1e73f78dcbf7aaeab9403583b92f85b7dbc7b33d22d1d37f0900a814bfdea19cc9
|
||||
checksum: 6cfdec16f03cc963e78d888a0ef349c0d80645775e9933a88c4615fbd5a683a8230997f89372e2597bd956bc05df5adc41de6524fa8c0cc93fb7150d6530a03b
|
||||
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-retry@npm:^4.0.6":
|
||||
version: 4.0.6
|
||||
resolution: "@smithy/util-retry@npm:4.0.6"
|
||||
dependencies:
|
||||
"@smithy/service-error-classification": ^3.0.0
|
||||
"@smithy/types": ^3.0.0
|
||||
"@smithy/service-error-classification": ^4.0.6
|
||||
"@smithy/types": ^4.3.1
|
||||
tslib: ^2.6.2
|
||||
checksum: 699fb2da6d97e903b9aec3883fd9f8e3477a03d377705840ca9bf12b440d803db89742bc8cf239448287b0369672dd6076afd3e663322106302217623a76d855
|
||||
checksum: 0faef3d90da51024a5abd90de6bf1a846b6cd0f61c78791a2fecc7e49b0e8a705ca5619ae538cad4bab8995456d8219fe1c2769dacd156195cb73befcb02ca03
|
||||
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-stream@npm:^4.2.3":
|
||||
version: 4.2.3
|
||||
resolution: "@smithy/util-stream@npm:4.2.3"
|
||||
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
|
||||
"@smithy/fetch-http-handler": ^5.1.0
|
||||
"@smithy/node-http-handler": ^4.1.0
|
||||
"@smithy/types": ^4.3.1
|
||||
"@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: 1b691d77470722d2a29e5294f2802161ef54d45ded78d27c0d53f9bb84051407673579cf70f9c6e810e419d2ba8446acd17e1dde60f219a6df3b8d66476b0071
|
||||
checksum: 3384df45323f9af1ecc3bad506e8dc0100af44397d623e4b456654b997c87458b9c550b6f540f31e1d498f93e914b868f4bda6cf7eb36b34e26f86426c5299fd
|
||||
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-uri-escape@npm:^4.0.0":
|
||||
version: 4.0.0
|
||||
resolution: "@smithy/util-uri-escape@npm:4.0.0"
|
||||
dependencies:
|
||||
tslib: ^2.6.2
|
||||
checksum: d7ee01c978e2b08d0a89a3b678f5d5e5d5bb4ab4ab85567a238b1a6195dff1bdaf9ae62497e7f32ff5121b3dc007c370bcb6e8ef79b01fe5acdec5bbce8c7ce4
|
||||
checksum: 7ea350545971f8a009d56e085c34c949c9045862cfab233ee7adc16e111a076a814bb5d9279b2b85ee382e0ed204a1c673ac32e3e28f1073b62a2c53a5dd6d19
|
||||
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:^2.0.0":
|
||||
version: 2.3.0
|
||||
resolution: "@smithy/util-utf8@npm:2.3.0"
|
||||
dependencies:
|
||||
"@smithy/util-buffer-from": ^3.0.0
|
||||
"@smithy/util-buffer-from": ^2.2.0
|
||||
tslib: ^2.6.2
|
||||
checksum: d97be1748963263a1161ba80417d82318b977b38542f3fdf0379b0162461188be680e5bfb66a89d65652f0fad6ecf2ab23a43205979216e50602488f73434da3
|
||||
checksum: 00e55d4b4e37d48be0eef3599082402b933c52a1407fed7e8e8ad76d94d81a0b30b8bfaf2047c59d9c3af31e5f20e7a8c959cb7ae270f894255e05a2229964f0
|
||||
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-utf8@npm:^4.0.0":
|
||||
version: 4.0.0
|
||||
resolution: "@smithy/util-utf8@npm:4.0.0"
|
||||
dependencies:
|
||||
"@smithy/abort-controller": ^3.0.0
|
||||
"@smithy/types": ^3.0.0
|
||||
"@smithy/util-buffer-from": ^4.0.0
|
||||
tslib: ^2.6.2
|
||||
checksum: 9e6aba7175abf6f96b2a15ece6ca1eb3a218bb494df0bb3a14c3e9bc59caf078ba5fe48e3a073d3f20ee65cb483f3b12e56808bfe1f094e28a21a3eceadfd045
|
||||
checksum: 08811c5a18c341782b3b65acc4640a9f559aeba61c889dbdc56e5153a3b7f395e613bfb1ade25cf15311d6237f291e1fce8af197c6313065e0cb084fd2148c64
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"@smithy/util-waiter@npm:^4.0.6":
|
||||
version: 4.0.6
|
||||
resolution: "@smithy/util-waiter@npm:4.0.6"
|
||||
dependencies:
|
||||
"@smithy/abort-controller": ^4.0.4
|
||||
"@smithy/types": ^4.3.1
|
||||
tslib: ^2.6.2
|
||||
checksum: 0fb8f5bd351f875f50e4b82845eb427f42d200dd49d39001be3c1f8da6c08383e41c2fcfb5a53fb628211210fe181da30c3c60cb3923805a2063df5cf1be6dd7
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
@@ -3390,6 +3498,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"
|
||||
@@ -3830,6 +3945,16 @@ __metadata:
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"call-bind-apply-helpers@npm:^1.0.1, call-bind-apply-helpers@npm:^1.0.2":
|
||||
version: 1.0.2
|
||||
resolution: "call-bind-apply-helpers@npm:1.0.2"
|
||||
dependencies:
|
||||
es-errors: ^1.3.0
|
||||
function-bind: ^1.1.2
|
||||
checksum: b2863d74fcf2a6948221f65d95b91b4b2d90cfe8927650b506141e669f7d5de65cea191bf788838bc40d13846b7886c5bc5c84ab96c3adbcf88ad69a72fcdc6b
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"callsites@npm:^3.0.0":
|
||||
version: 3.1.0
|
||||
resolution: "callsites@npm:3.1.0"
|
||||
@@ -3837,16 +3962,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"
|
||||
@@ -3997,7 +4112,7 @@ __metadata:
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"combined-stream@npm:^1.0.6, combined-stream@npm:^1.0.8":
|
||||
"combined-stream@npm:^1.0.8":
|
||||
version: 1.0.8
|
||||
resolution: "combined-stream@npm:1.0.8"
|
||||
dependencies:
|
||||
@@ -4006,13 +4121,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 +4208,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 +4311,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.859.0
|
||||
"@aws-sdk/client-ecr-public": ^3.859.0
|
||||
"@docker/actions-toolkit": ^0.62.1
|
||||
"@types/node": ^20.12.12
|
||||
"@typescript-eslint/eslint-plugin": ^7.9.0
|
||||
"@typescript-eslint/parser": ^7.9.0
|
||||
@@ -4223,7 +4324,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,15 +4342,14 @@ __metadata:
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"dot-object@npm:^2.1.4":
|
||||
version: 2.1.5
|
||||
resolution: "dot-object@npm:2.1.5"
|
||||
"dunder-proto@npm:^1.0.1":
|
||||
version: 1.0.1
|
||||
resolution: "dunder-proto@npm:1.0.1"
|
||||
dependencies:
|
||||
commander: ^6.1.0
|
||||
glob: ^7.1.6
|
||||
bin:
|
||||
dot-object: bin/dot-object
|
||||
checksum: 3e5a681bbea32dfc1cd0b1254adc93531bd462f7474a355e981738ef37253e4bc5c9482926289ef4d3c6ef9adb0a7ed894725ed3a69aa22063343dc2a57dd764
|
||||
call-bind-apply-helpers: ^1.0.1
|
||||
es-errors: ^1.3.0
|
||||
gopd: ^1.2.0
|
||||
checksum: 149207e36f07bd4941921b0ca929e3a28f1da7bd6b6ff8ff7f4e2f2e460675af4576eeba359c635723dc189b64cdd4787e0255897d5b135ccc5d15cb8685fc90
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
@@ -4348,6 +4448,41 @@ __metadata:
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"es-define-property@npm:^1.0.1":
|
||||
version: 1.0.1
|
||||
resolution: "es-define-property@npm:1.0.1"
|
||||
checksum: 0512f4e5d564021c9e3a644437b0155af2679d10d80f21adaf868e64d30efdfbd321631956f20f42d655fedb2e3a027da479fad3fa6048f768eb453a80a5f80a
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"es-errors@npm:^1.3.0":
|
||||
version: 1.3.0
|
||||
resolution: "es-errors@npm:1.3.0"
|
||||
checksum: ec1414527a0ccacd7f15f4a3bc66e215f04f595ba23ca75cdae0927af099b5ec865f9f4d33e9d7e86f512f252876ac77d4281a7871531a50678132429b1271b5
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"es-object-atoms@npm:^1.0.0, es-object-atoms@npm:^1.1.1":
|
||||
version: 1.1.1
|
||||
resolution: "es-object-atoms@npm:1.1.1"
|
||||
dependencies:
|
||||
es-errors: ^1.3.0
|
||||
checksum: 214d3767287b12f36d3d7267ef342bbbe1e89f899cfd67040309fc65032372a8e60201410a99a1645f2f90c1912c8c49c8668066f6bdd954bcd614dda2e3da97
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"es-set-tostringtag@npm:^2.1.0":
|
||||
version: 2.1.0
|
||||
resolution: "es-set-tostringtag@npm:2.1.0"
|
||||
dependencies:
|
||||
es-errors: ^1.3.0
|
||||
get-intrinsic: ^1.2.6
|
||||
has-tostringtag: ^1.0.2
|
||||
hasown: ^2.0.2
|
||||
checksum: 789f35de4be3dc8d11fdcb91bc26af4ae3e6d602caa93299a8c45cf05d36cc5081454ae2a6d3afa09cceca214b76c046e4f8151e092e6fc7feeb5efb9e794fc6
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"escalade@npm:^3.1.1":
|
||||
version: 3.1.1
|
||||
resolution: "escalade@npm:3.1.1"
|
||||
@@ -4663,14 +4798,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:5.2.5":
|
||||
version: 5.2.5
|
||||
resolution: "fast-xml-parser@npm:5.2.5"
|
||||
dependencies:
|
||||
strnum: ^1.0.5
|
||||
strnum: ^2.1.0
|
||||
bin:
|
||||
fxparser: src/cli/cli.js
|
||||
checksum: d32b22005504eeb207249bf40dc82d0994b5bb9ca9dcc731d335a1f425e47fe085b3cace3cf9d32172dd1a5544193c49e8615ca95b4bf95a4a4920a226b06d80
|
||||
checksum: b12daa933bc226bd7df1e1ecbd305e561c83fd6e4a234b5e2728901deca25a9b9522b9d3ebafde41b1f4d87ab814e3efe18c636638580795fdbe4670a556be88
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
@@ -4758,13 +4893,16 @@ __metadata:
|
||||
linkType: hard
|
||||
|
||||
"form-data@npm:^2.5.0":
|
||||
version: 2.5.1
|
||||
resolution: "form-data@npm:2.5.1"
|
||||
version: 2.5.5
|
||||
resolution: "form-data@npm:2.5.5"
|
||||
dependencies:
|
||||
asynckit: ^0.4.0
|
||||
combined-stream: ^1.0.6
|
||||
mime-types: ^2.1.12
|
||||
checksum: 5134ada56cc246b293a1ac7678dba6830000603a3979cf83ff7b2f21f2e3725202237cfb89e32bcb38a1d35727efbd3c3a22e65b42321e8ade8eec01ce755d08
|
||||
combined-stream: ^1.0.8
|
||||
es-set-tostringtag: ^2.1.0
|
||||
hasown: ^2.0.2
|
||||
mime-types: ^2.1.35
|
||||
safe-buffer: ^5.2.1
|
||||
checksum: ba6d8467f959c9bf36a52e423256c1e8055a8e650416760f54fa5db261529c3de698a4ce8378dd4fdb71b44be190906d6b73446556cc74e58de8bda01d09e9e7
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
@@ -4841,6 +4979,13 @@ __metadata:
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"function-bind@npm:^1.1.2":
|
||||
version: 1.1.2
|
||||
resolution: "function-bind@npm:1.1.2"
|
||||
checksum: 2b0ff4ce708d99715ad14a6d1f894e2a83242e4a52ccfcefaee5e40050562e5f6dafc1adbb4ce2d4ab47279a45dc736ab91ea5042d843c3c092820dfe032efb1
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"gensync@npm:^1.0.0-beta.2":
|
||||
version: 1.0.0-beta.2
|
||||
resolution: "gensync@npm:1.0.0-beta.2"
|
||||
@@ -4855,6 +5000,24 @@ __metadata:
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"get-intrinsic@npm:^1.2.6":
|
||||
version: 1.3.0
|
||||
resolution: "get-intrinsic@npm:1.3.0"
|
||||
dependencies:
|
||||
call-bind-apply-helpers: ^1.0.2
|
||||
es-define-property: ^1.0.1
|
||||
es-errors: ^1.3.0
|
||||
es-object-atoms: ^1.1.1
|
||||
function-bind: ^1.1.2
|
||||
get-proto: ^1.0.1
|
||||
gopd: ^1.2.0
|
||||
has-symbols: ^1.1.0
|
||||
hasown: ^2.0.2
|
||||
math-intrinsics: ^1.1.0
|
||||
checksum: 301008e4482bb9a9cb49e132b88fee093bff373b4e6def8ba219b1e96b60158a6084f273ef5cafe832e42cd93462f4accb46a618d35fe59a2b507f2388c5b79d
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"get-package-type@npm:^0.1.0":
|
||||
version: 0.1.0
|
||||
resolution: "get-package-type@npm:0.1.0"
|
||||
@@ -4862,6 +5025,16 @@ __metadata:
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"get-proto@npm:^1.0.1":
|
||||
version: 1.0.1
|
||||
resolution: "get-proto@npm:1.0.1"
|
||||
dependencies:
|
||||
dunder-proto: ^1.0.1
|
||||
es-object-atoms: ^1.0.0
|
||||
checksum: 4fc96afdb58ced9a67558698b91433e6b037aaa6f1493af77498d7c85b141382cf223c0e5946f334fb328ee85dfe6edd06d218eaf09556f4bc4ec6005d7f5f7b
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"get-stream@npm:^6.0.0":
|
||||
version: 6.0.1
|
||||
resolution: "get-stream@npm:6.0.1"
|
||||
@@ -4931,20 +5104,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"
|
||||
@@ -4975,6 +5134,13 @@ __metadata:
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"gopd@npm:^1.2.0":
|
||||
version: 1.2.0
|
||||
resolution: "gopd@npm:1.2.0"
|
||||
checksum: cc6d8e655e360955bdccaca51a12a474268f95bb793fc3e1f2bdadb075f28bfd1fd988dab872daf77a61d78cbaf13744bc8727a17cfb1d150d76047d805375f3
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"graceful-fs@npm:^4.2.0, graceful-fs@npm:^4.2.6":
|
||||
version: 4.2.11
|
||||
resolution: "graceful-fs@npm:4.2.11"
|
||||
@@ -5044,6 +5210,22 @@ __metadata:
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"has-symbols@npm:^1.0.3, has-symbols@npm:^1.1.0":
|
||||
version: 1.1.0
|
||||
resolution: "has-symbols@npm:1.1.0"
|
||||
checksum: b2316c7302a0e8ba3aaba215f834e96c22c86f192e7310bdf689dd0e6999510c89b00fbc5742571507cebf25764d68c988b3a0da217369a73596191ac0ce694b
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"has-tostringtag@npm:^1.0.2":
|
||||
version: 1.0.2
|
||||
resolution: "has-tostringtag@npm:1.0.2"
|
||||
dependencies:
|
||||
has-symbols: ^1.0.3
|
||||
checksum: 999d60bb753ad714356b2c6c87b7fb74f32463b8426e159397da4bde5bca7e598ab1073f4d8d4deafac297f2eb311484cd177af242776bf05f0d11565680468d
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"has@npm:^1.0.3":
|
||||
version: 1.0.3
|
||||
resolution: "has@npm:1.0.3"
|
||||
@@ -5053,6 +5235,15 @@ __metadata:
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"hasown@npm:^2.0.2":
|
||||
version: 2.0.2
|
||||
resolution: "hasown@npm:2.0.2"
|
||||
dependencies:
|
||||
function-bind: ^1.1.2
|
||||
checksum: e8516f776a15149ca6c6ed2ae3110c417a00b62260e222590e54aa367cbcd6ed99122020b37b7fbdf05748df57b265e70095d7bf35a47660587619b15ffb93db
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"he@npm:^1.2.0":
|
||||
version: 1.2.0
|
||||
resolution: "he@npm:1.2.0"
|
||||
@@ -5096,13 +5287,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 +6227,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"
|
||||
@@ -6115,6 +6297,13 @@ __metadata:
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"math-intrinsics@npm:^1.1.0":
|
||||
version: 1.1.0
|
||||
resolution: "math-intrinsics@npm:1.1.0"
|
||||
checksum: 0e513b29d120f478c85a70f49da0b8b19bc638975eca466f2eeae0071f3ad00454c621bf66e16dd435896c208e719fc91ad79bbfba4e400fe0b372e7c1c9c9a2
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"merge-stream@npm:^2.0.0":
|
||||
version: 2.0.0
|
||||
resolution: "merge-stream@npm:2.0.0"
|
||||
@@ -6146,7 +6335,7 @@ __metadata:
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"mime-types@npm:^2.1.12":
|
||||
"mime-types@npm:^2.1.12, mime-types@npm:^2.1.35":
|
||||
version: 2.1.35
|
||||
resolution: "mime-types@npm:2.1.35"
|
||||
dependencies:
|
||||
@@ -6162,7 +6351,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 +6517,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 +6711,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 +6759,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 +6823,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"
|
||||
@@ -6935,6 +7088,13 @@ __metadata:
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"safe-buffer@npm:^5.2.1, safe-buffer@npm:~5.2.0":
|
||||
version: 5.2.1
|
||||
resolution: "safe-buffer@npm:5.2.1"
|
||||
checksum: b99c4b41fdd67a6aaf280fcd05e9ffb0813654894223afb78a31f14a19ad220bba8aba1cb14eddce1fcfb037155fe6de4e861784eb434f7d11ed58d1e70dd491
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"safe-buffer@npm:~5.1.0, safe-buffer@npm:~5.1.1":
|
||||
version: 5.1.2
|
||||
resolution: "safe-buffer@npm:5.1.2"
|
||||
@@ -6942,13 +7102,6 @@ __metadata:
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"safe-buffer@npm:~5.2.0":
|
||||
version: 5.2.1
|
||||
resolution: "safe-buffer@npm:5.2.1"
|
||||
checksum: b99c4b41fdd67a6aaf280fcd05e9ffb0813654894223afb78a31f14a19ad220bba8aba1cb14eddce1fcfb037155fe6de4e861784eb434f7d11ed58d1e70dd491
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"safer-buffer@npm:>= 2.1.2 < 3.0.0":
|
||||
version: 2.1.2
|
||||
resolution: "safer-buffer@npm:2.1.2"
|
||||
@@ -6992,12 +7145,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.2":
|
||||
version: 7.7.2
|
||||
resolution: "semver@npm:7.7.2"
|
||||
bin:
|
||||
semver: bin/semver.js
|
||||
checksum: 4110ec5d015c9438f322257b1c51fe30276e5f766a3f64c09edd1d7ea7118ecbc3f379f3b69032bacf13116dc7abc4ad8ce0d7e2bd642e26b0d271b56b61a7d8
|
||||
checksum: dd94ba8f1cbc903d8eeb4dd8bf19f46b3deb14262b6717d0de3c804b594058ae785ef2e4b46c5c3b58733c99c83339068203002f9e37cfe44f7e2cc5e3d2f621
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
@@ -7259,10 +7412,10 @@ __metadata:
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"strnum@npm:^1.0.5":
|
||||
version: 1.0.5
|
||||
resolution: "strnum@npm:1.0.5"
|
||||
checksum: 651b2031db5da1bf4a77fdd2f116a8ac8055157c5420f5569f64879133825915ad461513e7202a16d7fec63c54fd822410d0962f8ca12385c4334891b9ae6dd2
|
||||
"strnum@npm:^2.1.0":
|
||||
version: 2.1.1
|
||||
resolution: "strnum@npm:2.1.1"
|
||||
checksum: 566139b218ef13bdde2a69c744852ac41ea167588f624d46c3b3bebb5d1d1775c55bca4702a0ad2a6a66eb4b3b7de4cbbc83e8d40c5835feabebf6f9cc468993
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
@@ -7487,24 +7640,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 +7661,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"
|
||||
@@ -7637,6 +7756,15 @@ __metadata:
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"undici@npm:^5.28.5":
|
||||
version: 5.29.0
|
||||
resolution: "undici@npm:5.29.0"
|
||||
dependencies:
|
||||
"@fastify/busboy": ^2.0.0
|
||||
checksum: a25b5462c1b6ffb974f5ffc492ffd64146a9983aad0cbda6fde65e2b22f6f1acd43f09beacc66cc47624a113bd0c684ffc60366102b6a21b038fbfafb7d75195
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"unique-filename@npm:^3.0.0":
|
||||
version: 3.0.0
|
||||
resolution: "unique-filename@npm:3.0.0"
|
||||
@@ -7702,15 +7830,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 +8005,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