mirror of
https://github.com/docker/login-action.git
synced 2026-03-11 23:02:07 +00:00
Compare commits
21 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 |
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
|
||||
4
.github/workflows/test.yml
vendored
4
.github/workflows/test.yml
vendored
@@ -15,10 +15,14 @@ jobs:
|
||||
test:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
-
|
||||
name: Checkout
|
||||
uses: actions/checkout@v4
|
||||
-
|
||||
name: Test
|
||||
uses: docker/bake-action@v6
|
||||
with:
|
||||
source: .
|
||||
targets: test
|
||||
-
|
||||
name: Upload coverage
|
||||
|
||||
@@ -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
433
dist/licenses.txt
generated
vendored
433
dist/licenses.txt
generated
vendored
@@ -3603,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)
|
||||
@@ -9720,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
|
||||
@@ -14493,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
|
||||
|
||||
@@ -26,9 +26,9 @@
|
||||
"packageManager": "yarn@3.6.3",
|
||||
"dependencies": {
|
||||
"@actions/core": "^1.11.1",
|
||||
"@aws-sdk/client-ecr": "^3.766.0",
|
||||
"@aws-sdk/client-ecr-public": "^3.758.0",
|
||||
"@docker/actions-toolkit": "^0.57.0",
|
||||
"@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.6"
|
||||
},
|
||||
|
||||
@@ -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[] => {
|
||||
|
||||
1360
yarn.lock
1360
yarn.lock
@@ -12,9 +12,9 @@ __metadata:
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"@actions/artifact@npm:^2.3.0":
|
||||
version: 2.3.1
|
||||
resolution: "@actions/artifact@npm:2.3.1"
|
||||
"@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
|
||||
@@ -28,13 +28,13 @@ __metadata:
|
||||
archiver: ^7.0.1
|
||||
jwt-decode: ^3.1.2
|
||||
unzip-stream: ^0.3.1
|
||||
checksum: 5d6f49069cdc12b8ec0bc0fe318a059f5e48dcaa85644ebda5501eb2ce8b773fa8efb8136a6683608c8d80204d5b2d55d91ff31d10550306ed58ebed46171231
|
||||
checksum: 78ee41b43800accb2f3527e1733217c43d53693e7f96ce2470b16890fb84f5c2ebaaa6048ccdb6cfe188b54c02779ec99623c6932558e757f6829cfde203cf2c
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"@actions/cache@npm:^4.0.2":
|
||||
version: 4.0.2
|
||||
resolution: "@actions/cache@npm:4.0.2"
|
||||
"@actions/cache@npm:^4.0.3":
|
||||
version: 4.0.3
|
||||
resolution: "@actions/cache@npm:4.0.3"
|
||||
dependencies:
|
||||
"@actions/core": ^1.11.1
|
||||
"@actions/exec": ^1.0.1
|
||||
@@ -46,7 +46,7 @@ __metadata:
|
||||
"@azure/storage-blob": ^12.13.0
|
||||
"@protobuf-ts/plugin": ^2.9.4
|
||||
semver: ^6.3.1
|
||||
checksum: 208f11238a26194f331b329bb99d50a87c1a3ccef1dbae181e5c142b3faf41715203e0c5cbc491519d3d97540a68fbd418c25fb6e16caabf76248c40867c02b4
|
||||
checksum: ee9c2a21a70bd3f35c63f302af478e23f135c26deb77ea2e4eed29c62766a4b201fc7435651c0d56fa504c02d203107e3bdfda1dba18a3ee09338e1dfc3f2fe8
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
@@ -91,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
|
||||
|
||||
@@ -228,413 +231,418 @@ __metadata:
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"@aws-sdk/client-ecr-public@npm:^3.758.0":
|
||||
version: 3.758.0
|
||||
resolution: "@aws-sdk/client-ecr-public@npm:3.758.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": 5.2.0
|
||||
"@aws-crypto/sha256-js": 5.2.0
|
||||
"@aws-sdk/core": 3.758.0
|
||||
"@aws-sdk/credential-provider-node": 3.758.0
|
||||
"@aws-sdk/middleware-host-header": 3.734.0
|
||||
"@aws-sdk/middleware-logger": 3.734.0
|
||||
"@aws-sdk/middleware-recursion-detection": 3.734.0
|
||||
"@aws-sdk/middleware-user-agent": 3.758.0
|
||||
"@aws-sdk/region-config-resolver": 3.734.0
|
||||
"@aws-sdk/types": 3.734.0
|
||||
"@aws-sdk/util-endpoints": 3.743.0
|
||||
"@aws-sdk/util-user-agent-browser": 3.734.0
|
||||
"@aws-sdk/util-user-agent-node": 3.758.0
|
||||
"@smithy/config-resolver": ^4.0.1
|
||||
"@smithy/core": ^3.1.5
|
||||
"@smithy/fetch-http-handler": ^5.0.1
|
||||
"@smithy/hash-node": ^4.0.1
|
||||
"@smithy/invalid-dependency": ^4.0.1
|
||||
"@smithy/middleware-content-length": ^4.0.1
|
||||
"@smithy/middleware-endpoint": ^4.0.6
|
||||
"@smithy/middleware-retry": ^4.0.7
|
||||
"@smithy/middleware-serde": ^4.0.2
|
||||
"@smithy/middleware-stack": ^4.0.1
|
||||
"@smithy/node-config-provider": ^4.0.1
|
||||
"@smithy/node-http-handler": ^4.0.3
|
||||
"@smithy/protocol-http": ^5.0.1
|
||||
"@smithy/smithy-client": ^4.1.6
|
||||
"@smithy/types": ^4.1.0
|
||||
"@smithy/url-parser": ^4.0.1
|
||||
"@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.7
|
||||
"@smithy/util-defaults-mode-node": ^4.0.7
|
||||
"@smithy/util-endpoints": ^3.0.1
|
||||
"@smithy/util-middleware": ^4.0.1
|
||||
"@smithy/util-retry": ^4.0.1
|
||||
"@smithy/util-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: 8060996677681d85f6d8b94ad2c689b9cdb7cb940a51a0c17915240c47dba8135d025052ef4fd4860a6cdbedf028f43a1fb3821427fd9768a1e5dcaf2a27607a
|
||||
checksum: 94c8cbd79ed39e2ba113edad393b5c103357b9f0a6336e4c19faa4c9885041027e3ab92938159b1317c09d2c1e4c4e4521bcde3ec0dd97ca01e1f1a948d1626e
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"@aws-sdk/client-ecr@npm:^3.766.0":
|
||||
version: 3.766.0
|
||||
resolution: "@aws-sdk/client-ecr@npm:3.766.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": 5.2.0
|
||||
"@aws-crypto/sha256-js": 5.2.0
|
||||
"@aws-sdk/core": 3.758.0
|
||||
"@aws-sdk/credential-provider-node": 3.758.0
|
||||
"@aws-sdk/middleware-host-header": 3.734.0
|
||||
"@aws-sdk/middleware-logger": 3.734.0
|
||||
"@aws-sdk/middleware-recursion-detection": 3.734.0
|
||||
"@aws-sdk/middleware-user-agent": 3.758.0
|
||||
"@aws-sdk/region-config-resolver": 3.734.0
|
||||
"@aws-sdk/types": 3.734.0
|
||||
"@aws-sdk/util-endpoints": 3.743.0
|
||||
"@aws-sdk/util-user-agent-browser": 3.734.0
|
||||
"@aws-sdk/util-user-agent-node": 3.758.0
|
||||
"@smithy/config-resolver": ^4.0.1
|
||||
"@smithy/core": ^3.1.5
|
||||
"@smithy/fetch-http-handler": ^5.0.1
|
||||
"@smithy/hash-node": ^4.0.1
|
||||
"@smithy/invalid-dependency": ^4.0.1
|
||||
"@smithy/middleware-content-length": ^4.0.1
|
||||
"@smithy/middleware-endpoint": ^4.0.6
|
||||
"@smithy/middleware-retry": ^4.0.7
|
||||
"@smithy/middleware-serde": ^4.0.2
|
||||
"@smithy/middleware-stack": ^4.0.1
|
||||
"@smithy/node-config-provider": ^4.0.1
|
||||
"@smithy/node-http-handler": ^4.0.3
|
||||
"@smithy/protocol-http": ^5.0.1
|
||||
"@smithy/smithy-client": ^4.1.6
|
||||
"@smithy/types": ^4.1.0
|
||||
"@smithy/url-parser": ^4.0.1
|
||||
"@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.7
|
||||
"@smithy/util-defaults-mode-node": ^4.0.7
|
||||
"@smithy/util-endpoints": ^3.0.1
|
||||
"@smithy/util-middleware": ^4.0.1
|
||||
"@smithy/util-retry": ^4.0.1
|
||||
"@smithy/util-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.2
|
||||
"@smithy/util-waiter": ^4.0.6
|
||||
tslib: ^2.6.2
|
||||
checksum: b43b1d06b24de5be231b57ddb49eb1abc3bc230e11caecd98e90e252405c542325c9792a431c6c82110507de3675002acfe4ee24fa45398d6f1cb2708f19fb48
|
||||
checksum: 39c9dd696111bcdb6ddf63205c7d5df95f2f1c1c0b2c17a311471dca5e6e42bed24d3a564b9169f9a3a16e112cc6726e1e7e39cf82cb3d0eee25122bbe1bc78b
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"@aws-sdk/client-sso@npm:3.758.0":
|
||||
version: 3.758.0
|
||||
resolution: "@aws-sdk/client-sso@npm:3.758.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": 5.2.0
|
||||
"@aws-crypto/sha256-js": 5.2.0
|
||||
"@aws-sdk/core": 3.758.0
|
||||
"@aws-sdk/middleware-host-header": 3.734.0
|
||||
"@aws-sdk/middleware-logger": 3.734.0
|
||||
"@aws-sdk/middleware-recursion-detection": 3.734.0
|
||||
"@aws-sdk/middleware-user-agent": 3.758.0
|
||||
"@aws-sdk/region-config-resolver": 3.734.0
|
||||
"@aws-sdk/types": 3.734.0
|
||||
"@aws-sdk/util-endpoints": 3.743.0
|
||||
"@aws-sdk/util-user-agent-browser": 3.734.0
|
||||
"@aws-sdk/util-user-agent-node": 3.758.0
|
||||
"@smithy/config-resolver": ^4.0.1
|
||||
"@smithy/core": ^3.1.5
|
||||
"@smithy/fetch-http-handler": ^5.0.1
|
||||
"@smithy/hash-node": ^4.0.1
|
||||
"@smithy/invalid-dependency": ^4.0.1
|
||||
"@smithy/middleware-content-length": ^4.0.1
|
||||
"@smithy/middleware-endpoint": ^4.0.6
|
||||
"@smithy/middleware-retry": ^4.0.7
|
||||
"@smithy/middleware-serde": ^4.0.2
|
||||
"@smithy/middleware-stack": ^4.0.1
|
||||
"@smithy/node-config-provider": ^4.0.1
|
||||
"@smithy/node-http-handler": ^4.0.3
|
||||
"@smithy/protocol-http": ^5.0.1
|
||||
"@smithy/smithy-client": ^4.1.6
|
||||
"@smithy/types": ^4.1.0
|
||||
"@smithy/url-parser": ^4.0.1
|
||||
"@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.7
|
||||
"@smithy/util-defaults-mode-node": ^4.0.7
|
||||
"@smithy/util-endpoints": ^3.0.1
|
||||
"@smithy/util-middleware": ^4.0.1
|
||||
"@smithy/util-retry": ^4.0.1
|
||||
"@smithy/util-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: 7f1a597d6c2c33ed37e63de692eec5e2abeae6862e40e77205273d4512412fc519cf50218ef6c7a660539edd1fc9ed62be59d88f3e0f6c510b5de78b0f0f5839
|
||||
checksum: b5b38c39f661ea2cc52d1db76ba6bfd5c890b44bd842513a28d5938109c34c967879b638be15a9f7b69c09a926eba8c9e13dc4d6181a282a5de127e02b1e8fee
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"@aws-sdk/core@npm:3.758.0":
|
||||
version: 3.758.0
|
||||
resolution: "@aws-sdk/core@npm:3.758.0"
|
||||
"@aws-sdk/core@npm:3.858.0":
|
||||
version: 3.858.0
|
||||
resolution: "@aws-sdk/core@npm:3.858.0"
|
||||
dependencies:
|
||||
"@aws-sdk/types": 3.734.0
|
||||
"@smithy/core": ^3.1.5
|
||||
"@smithy/node-config-provider": ^4.0.1
|
||||
"@smithy/property-provider": ^4.0.1
|
||||
"@smithy/protocol-http": ^5.0.1
|
||||
"@smithy/signature-v4": ^5.0.1
|
||||
"@smithy/smithy-client": ^4.1.6
|
||||
"@smithy/types": ^4.1.0
|
||||
"@smithy/util-middleware": ^4.0.1
|
||||
fast-xml-parser: 4.4.1
|
||||
"@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: 7d3fc670cdf89152245d993115390315d931f94709633c6b8ceb70e076f1dafc9db9c33cc8a89093d5cacdc2fc5e229ff75f95c1325aca096688744a319b2cd2
|
||||
checksum: 486ed384e9afc197e64588c3f24eb055a8301f0f22849658e5373ca3774e27c8590142d985b4025dbf042588fd2ebbda3b1cd2e0ff160a9cba038e50273a761f
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"@aws-sdk/credential-provider-env@npm:3.758.0":
|
||||
version: 3.758.0
|
||||
resolution: "@aws-sdk/credential-provider-env@npm:3.758.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-sdk/core": 3.758.0
|
||||
"@aws-sdk/types": 3.734.0
|
||||
"@smithy/property-provider": ^4.0.1
|
||||
"@smithy/types": ^4.1.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: b844a95054943a3478aa44bce4e7f36334622d6f34f2b31057bbd3500990201bdffed160405aad4ef0bf2fcdccb3b8a7f9886991a7f8116a50aee83fc1af0f0c
|
||||
checksum: 7631a9502da0ada1a8fd8e8f988a8dc0d81cfe371db6153b3f175a8fc8f7c7d2e246b7c4cc9d38ba31b351147729aeee01026e1b7ff4d5a4ca1e7d9aa1626545
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"@aws-sdk/credential-provider-http@npm:3.758.0":
|
||||
version: 3.758.0
|
||||
resolution: "@aws-sdk/credential-provider-http@npm:3.758.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:
|
||||
"@aws-sdk/core": 3.758.0
|
||||
"@aws-sdk/types": 3.734.0
|
||||
"@smithy/fetch-http-handler": ^5.0.1
|
||||
"@smithy/node-http-handler": ^4.0.3
|
||||
"@smithy/property-provider": ^4.0.1
|
||||
"@smithy/protocol-http": ^5.0.1
|
||||
"@smithy/smithy-client": ^4.1.6
|
||||
"@smithy/types": ^4.1.0
|
||||
"@smithy/util-stream": ^4.1.2
|
||||
"@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: 4fd4cc1b305069476e0f0440ef0e821b73044eef3a73129c7c1e4df7390f88a76a093d9e3e404ae65550119ed16350be8c18b052c2becbd2a93afb129085aa7a
|
||||
checksum: c92f3f591f9e613f779931a51f956e8b77b7421407a2e556a768917b3c46c4ef88f5f46b2fa0324848bce0ce4e4744ab326d672ec2d3eab8838fe6c27e0ad082
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"@aws-sdk/credential-provider-ini@npm:3.758.0":
|
||||
version: 3.758.0
|
||||
resolution: "@aws-sdk/credential-provider-ini@npm:3.758.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/core": 3.758.0
|
||||
"@aws-sdk/credential-provider-env": 3.758.0
|
||||
"@aws-sdk/credential-provider-http": 3.758.0
|
||||
"@aws-sdk/credential-provider-process": 3.758.0
|
||||
"@aws-sdk/credential-provider-sso": 3.758.0
|
||||
"@aws-sdk/credential-provider-web-identity": 3.758.0
|
||||
"@aws-sdk/nested-clients": 3.758.0
|
||||
"@aws-sdk/types": 3.734.0
|
||||
"@smithy/credential-provider-imds": ^4.0.1
|
||||
"@smithy/property-provider": ^4.0.1
|
||||
"@smithy/shared-ini-file-loader": ^4.0.1
|
||||
"@smithy/types": ^4.1.0
|
||||
"@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: 8904c1a126d0f7b5953a525d9c210ea76c36084736728035068c5089ecf617799c24fe409d2704a8c5085e3eb650a06d62375169bc4e160c856fdcedcb413b3f
|
||||
checksum: f7f08f09702feb445c1386e31a1246ab9d8324be6d90a72560b2664d0763101d8d791db7db2f5c12cb0c9a4efd41c3a0562dac49c194b1672da02fd0c35728cb
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"@aws-sdk/credential-provider-node@npm:3.758.0":
|
||||
version: 3.758.0
|
||||
resolution: "@aws-sdk/credential-provider-node@npm:3.758.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/credential-provider-env": 3.758.0
|
||||
"@aws-sdk/credential-provider-http": 3.758.0
|
||||
"@aws-sdk/credential-provider-ini": 3.758.0
|
||||
"@aws-sdk/credential-provider-process": 3.758.0
|
||||
"@aws-sdk/credential-provider-sso": 3.758.0
|
||||
"@aws-sdk/credential-provider-web-identity": 3.758.0
|
||||
"@aws-sdk/types": 3.734.0
|
||||
"@smithy/credential-provider-imds": ^4.0.1
|
||||
"@smithy/property-provider": ^4.0.1
|
||||
"@smithy/shared-ini-file-loader": ^4.0.1
|
||||
"@smithy/types": ^4.1.0
|
||||
"@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: 8f44c24b74a06ec672bb8662669ce6cba8389c640ef8c7dd480089198d14821769a9f9dc0728654efbfe08359ad627deb96e25869bb8c06b3d435dfbd9ff3454
|
||||
checksum: 8802cee6d5efb6be90b1a386cd2b293f5c1c123f29b898079f91dddc85811ed3ddd13501ce71b75466e58f043911a4a2c1a74eb988a153b7825d296497706128
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"@aws-sdk/credential-provider-process@npm:3.758.0":
|
||||
version: 3.758.0
|
||||
resolution: "@aws-sdk/credential-provider-process@npm:3.758.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/core": 3.758.0
|
||||
"@aws-sdk/types": 3.734.0
|
||||
"@smithy/property-provider": ^4.0.1
|
||||
"@smithy/shared-ini-file-loader": ^4.0.1
|
||||
"@smithy/types": ^4.1.0
|
||||
"@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
|
||||
checksum: c98c76e4f1c79774a35cb6e07dd8c151da2486e487891fa4f2922a73b6ed58c5f13b695cc4ec3c17257db0f42853c1d036ea10912e0088937e7348705b3cdf87
|
||||
checksum: f65f6151cba96854486346c12a28eb281518d624f1406bd7f24c0915ee6f117992122832107c345bad2061898175131913d53c52eec43aad6e52b0975c646b27
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"@aws-sdk/credential-provider-sso@npm:3.758.0":
|
||||
version: 3.758.0
|
||||
resolution: "@aws-sdk/credential-provider-sso@npm:3.758.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/client-sso": 3.758.0
|
||||
"@aws-sdk/core": 3.758.0
|
||||
"@aws-sdk/token-providers": 3.758.0
|
||||
"@aws-sdk/types": 3.734.0
|
||||
"@smithy/property-provider": ^4.0.1
|
||||
"@smithy/shared-ini-file-loader": ^4.0.1
|
||||
"@smithy/types": ^4.1.0
|
||||
"@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: 9a9a0437078048114183f768218d1c28f8dc2d1810a53ba9d4297070b52df77ce428939034f93b9373013236264b9417c4f3f6ba7c3656df7be5901f30983bdb
|
||||
checksum: 5330fc5e29c287059880451f9718d778300dc3d0afa510b4089a74b8aac50b193e68658183e8b114aedefc559d235cd50ac4ec0233ca47325c4af1429e18548a
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"@aws-sdk/credential-provider-web-identity@npm:3.758.0":
|
||||
version: 3.758.0
|
||||
resolution: "@aws-sdk/credential-provider-web-identity@npm:3.758.0"
|
||||
"@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/core": 3.758.0
|
||||
"@aws-sdk/nested-clients": 3.758.0
|
||||
"@aws-sdk/types": 3.734.0
|
||||
"@smithy/property-provider": ^4.0.1
|
||||
"@smithy/types": ^4.1.0
|
||||
"@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: d50c4da462c03a78ff92f85107c0d1023a1b2b99c35dbb835e2f5863db4ff2a2c900f700042c6fcdc457a9760820b3492fe5cbb0e57ccae40ffdbceea1503f82
|
||||
checksum: 6dc741df0298dd75ca262e771beaeefc8af8f30ba15c17ddc7f9200f6a4c25afeb9b2485680d24698ca2f0843159b3a66038311994aab5c6e26c35be6a7d8495
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"@aws-sdk/middleware-host-header@npm:3.734.0":
|
||||
version: 3.734.0
|
||||
resolution: "@aws-sdk/middleware-host-header@npm:3.734.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/types": 3.734.0
|
||||
"@smithy/protocol-http": ^5.0.1
|
||||
"@smithy/types": ^4.1.0
|
||||
"@aws-sdk/types": 3.840.0
|
||||
"@smithy/protocol-http": ^5.1.2
|
||||
"@smithy/types": ^4.3.1
|
||||
tslib: ^2.6.2
|
||||
checksum: 38e313f72bb76335c53184954b46fc33c8d05abb35ac19ca177ae0194d4817e84c1c9410607b3e236329736f9b302f4d4428b6ecdbf6dacd2fd258e03fea2958
|
||||
checksum: 8d4a51007aa740daeea1c8427d7f2bf5d91d8fa9bd890ed7212a7460b68878bd651666585ef7cf2f553fe34aac141b1eaa8cd9b3520da0fc62918e7e43473b02
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"@aws-sdk/middleware-logger@npm:3.734.0":
|
||||
version: 3.734.0
|
||||
resolution: "@aws-sdk/middleware-logger@npm:3.734.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.734.0
|
||||
"@smithy/types": ^4.1.0
|
||||
"@aws-sdk/types": 3.840.0
|
||||
"@smithy/types": ^4.3.1
|
||||
tslib: ^2.6.2
|
||||
checksum: e7f8a96c5d3d15e894c36c67ae76beb6059f840c5bfce93f13adf916830053910fe5bfc0473d5da64590a5fae24ae131600b1ddd36322171ff88cdbc6a24fb6a
|
||||
checksum: 2d9744eb17f969057956008d74a34adc27ee810f8a95e26547b2c8d8987bbe42f585ac6a1d033e341761245cd34c58a670155cfec01ee6ae3d29ed5c1531bc48
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"@aws-sdk/middleware-recursion-detection@npm:3.734.0":
|
||||
version: 3.734.0
|
||||
resolution: "@aws-sdk/middleware-recursion-detection@npm:3.734.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.734.0
|
||||
"@smithy/protocol-http": ^5.0.1
|
||||
"@smithy/types": ^4.1.0
|
||||
"@aws-sdk/types": 3.840.0
|
||||
"@smithy/protocol-http": ^5.1.2
|
||||
"@smithy/types": ^4.3.1
|
||||
tslib: ^2.6.2
|
||||
checksum: 96a53708582706fdd24893eb0bb0c6a04d3b4544a8888817d14a95d99170fbe5a4365d68d556474664efb53857d0621e999c1faaff686068c8c54c8a68da8ca8
|
||||
checksum: aa8aed9a33edb472dceb5eca4f92af4db814415422282ed9910d60ac585c1e99eaf46fed9b5890d358cee65631708a22014ac558a9404c6bd6487387046e6886
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"@aws-sdk/middleware-user-agent@npm:3.758.0":
|
||||
version: 3.758.0
|
||||
resolution: "@aws-sdk/middleware-user-agent@npm:3.758.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/core": 3.758.0
|
||||
"@aws-sdk/types": 3.734.0
|
||||
"@aws-sdk/util-endpoints": 3.743.0
|
||||
"@smithy/core": ^3.1.5
|
||||
"@smithy/protocol-http": ^5.0.1
|
||||
"@smithy/types": ^4.1.0
|
||||
"@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: aa1e3eeb0cc44eca5a82b5df34444a1d73a8f2dbe289746678293f74d282f4d9881e3bb4088e4e65753fba1ef71c4eac433204038d51b3e6319e3dc94a650749
|
||||
checksum: 6a3531464c1e7f4d8cd69ad8788850d66d355a7b3ee8810c54c5270b8ab08263e3a6d51ce08188f8a6384e66b89db4c19cc3589758f693ff7b56543d25f3a7a2
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"@aws-sdk/nested-clients@npm:3.758.0":
|
||||
version: 3.758.0
|
||||
resolution: "@aws-sdk/nested-clients@npm:3.758.0"
|
||||
"@aws-sdk/nested-clients@npm:3.858.0":
|
||||
version: 3.858.0
|
||||
resolution: "@aws-sdk/nested-clients@npm:3.858.0"
|
||||
dependencies:
|
||||
"@aws-crypto/sha256-browser": 5.2.0
|
||||
"@aws-crypto/sha256-js": 5.2.0
|
||||
"@aws-sdk/core": 3.758.0
|
||||
"@aws-sdk/middleware-host-header": 3.734.0
|
||||
"@aws-sdk/middleware-logger": 3.734.0
|
||||
"@aws-sdk/middleware-recursion-detection": 3.734.0
|
||||
"@aws-sdk/middleware-user-agent": 3.758.0
|
||||
"@aws-sdk/region-config-resolver": 3.734.0
|
||||
"@aws-sdk/types": 3.734.0
|
||||
"@aws-sdk/util-endpoints": 3.743.0
|
||||
"@aws-sdk/util-user-agent-browser": 3.734.0
|
||||
"@aws-sdk/util-user-agent-node": 3.758.0
|
||||
"@smithy/config-resolver": ^4.0.1
|
||||
"@smithy/core": ^3.1.5
|
||||
"@smithy/fetch-http-handler": ^5.0.1
|
||||
"@smithy/hash-node": ^4.0.1
|
||||
"@smithy/invalid-dependency": ^4.0.1
|
||||
"@smithy/middleware-content-length": ^4.0.1
|
||||
"@smithy/middleware-endpoint": ^4.0.6
|
||||
"@smithy/middleware-retry": ^4.0.7
|
||||
"@smithy/middleware-serde": ^4.0.2
|
||||
"@smithy/middleware-stack": ^4.0.1
|
||||
"@smithy/node-config-provider": ^4.0.1
|
||||
"@smithy/node-http-handler": ^4.0.3
|
||||
"@smithy/protocol-http": ^5.0.1
|
||||
"@smithy/smithy-client": ^4.1.6
|
||||
"@smithy/types": ^4.1.0
|
||||
"@smithy/url-parser": ^4.0.1
|
||||
"@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.7
|
||||
"@smithy/util-defaults-mode-node": ^4.0.7
|
||||
"@smithy/util-endpoints": ^3.0.1
|
||||
"@smithy/util-middleware": ^4.0.1
|
||||
"@smithy/util-retry": ^4.0.1
|
||||
"@smithy/util-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: 35f8456f44859d822184849692eb0876a0d97221040247528c355e9f340d0b96dc74445437aafdaef19483a56003fdbdb58abb504cb404c25ba8d4ba0f387643
|
||||
checksum: 9430e1f51f632b64089b951c668c5a884aa8bdb98a3cb54eb3a38a2617a89d5ae6c6c6425a3b20d831d33a99a386205d8c4e256c3ef6d0f4b94d0629ae9c5589
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"@aws-sdk/region-config-resolver@npm:3.734.0":
|
||||
version: 3.734.0
|
||||
resolution: "@aws-sdk/region-config-resolver@npm:3.734.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.734.0
|
||||
"@smithy/node-config-provider": ^4.0.1
|
||||
"@smithy/types": ^4.1.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.1
|
||||
"@smithy/util-middleware": ^4.0.4
|
||||
tslib: ^2.6.2
|
||||
checksum: ec95c09e6527601d3f12791f64d972fcc9218e2da123ead572e8e4b5ef56ba1e67dabeb6e4b86c68958606af50cb1d853c168bb25b226aca171ca0993604803d
|
||||
checksum: c0368460299c12da578f03cfcdfb3b0fe5f0c29103e4d49fa7b1323fc4ed6b8059801597d1b68b95967df92397cda8d02fe8326eaa31431c26e0ace30cb0d272
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"@aws-sdk/token-providers@npm:3.758.0":
|
||||
version: 3.758.0
|
||||
resolution: "@aws-sdk/token-providers@npm:3.758.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/nested-clients": 3.758.0
|
||||
"@aws-sdk/types": 3.734.0
|
||||
"@smithy/property-provider": ^4.0.1
|
||||
"@smithy/shared-ini-file-loader": ^4.0.1
|
||||
"@smithy/types": ^4.1.0
|
||||
"@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: 65603086069383dd6b7c776f6234e49ff1ce46ef45d3ba29e830c3b01cfc704af648f52a10700cf25fb2b5b36f0de57c9684b4f54a0d5eb197779bbbbc8d041a
|
||||
checksum: 22c0d91bb46ddbb798fa40c5a1663e2e8147f2c1bc29d89e7432abaced230ce3321d22e3503b3285f4989f3a5a6c2a544f4fcf64981e6a6939690527ca1ab65f
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"@aws-sdk/types@npm:3.734.0":
|
||||
version: 3.734.0
|
||||
resolution: "@aws-sdk/types@npm:3.734.0"
|
||||
"@aws-sdk/types@npm:3.840.0":
|
||||
version: 3.840.0
|
||||
resolution: "@aws-sdk/types@npm:3.840.0"
|
||||
dependencies:
|
||||
"@smithy/types": ^4.1.0
|
||||
"@smithy/types": ^4.3.1
|
||||
tslib: ^2.6.2
|
||||
checksum: 7e113233f91905a8b4622715a5cc45f0a9d4eda00614845885ecb5743d0339448282ba615597e291fa64b5e41a6f53965c6d6623d617b3c280830b48fe9771ed
|
||||
checksum: 01c30bb35090b8105a120ac10bfb5adb291e2b07b15813eebc45a25e8febe79bb4c363600f52abd5348e73b5171611f5e7da8d7f7aeafb7cb3c7b22ac83a1cf8
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
@@ -648,15 +656,16 @@ __metadata:
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"@aws-sdk/util-endpoints@npm:3.743.0":
|
||||
version: 3.743.0
|
||||
resolution: "@aws-sdk/util-endpoints@npm:3.743.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.734.0
|
||||
"@smithy/types": ^4.1.0
|
||||
"@smithy/util-endpoints": ^3.0.1
|
||||
"@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: 1e4639ee30b71a63d2f1bd378d31fdad682523236b7bdb28282240a104bc0ac2cf4c96b3cb19a15c0d5dab2a6eda185f7db3a475ec7d8e4db914cafdc72198c9
|
||||
checksum: 0beeacb830698524bff6f20010153218f5b3dfbf759a0cb2151bc41d14a25709ba58453774e2427239988333597aabc428a0507f9f75e37ece03d6a4a90a0ccc
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
@@ -669,33 +678,43 @@ __metadata:
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"@aws-sdk/util-user-agent-browser@npm:3.734.0":
|
||||
version: 3.734.0
|
||||
resolution: "@aws-sdk/util-user-agent-browser@npm:3.734.0"
|
||||
"@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.734.0
|
||||
"@smithy/types": ^4.1.0
|
||||
"@aws-sdk/types": 3.840.0
|
||||
"@smithy/types": ^4.3.1
|
||||
bowser: ^2.11.0
|
||||
tslib: ^2.6.2
|
||||
checksum: 5c75eadca3912c8ffcb2bdabc16ee24fc6e05ac1b077662d50c72575ad449ce94669a841c5da5fff9231edfd0a23b1e85258a589cbc2b0de5bbf4b9031e77c77
|
||||
checksum: eb99a07b7d96f0555aca25f11cd9e2f579e149d102cc78300c47cc0031a40e7ea1d559bfe15b47bccd675d33fe56ee8e4855198d8eb2fb6e9bb6517e10f39700
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"@aws-sdk/util-user-agent-node@npm:3.758.0":
|
||||
version: 3.758.0
|
||||
resolution: "@aws-sdk/util-user-agent-node@npm:3.758.0"
|
||||
"@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/middleware-user-agent": 3.758.0
|
||||
"@aws-sdk/types": 3.734.0
|
||||
"@smithy/node-config-provider": ^4.0.1
|
||||
"@smithy/types": ^4.1.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: 83760133a69a67265501ec9b128c2d7e63034bad7e691d116a8f1a8dffecd208cc63896506581158dd567d09f38d314f07a24d8af9ddf98ad8bea1b04db36d81
|
||||
checksum: 8941da2d56a0ccc3f1fe70669671c3e0d8b39faa967b20a730952d656098f78903ccda5d5a4cf79a91b403591a919729642a2ae9646364b1e919f71261004a57
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"@aws-sdk/xml-builder@npm:3.821.0":
|
||||
version: 3.821.0
|
||||
resolution: "@aws-sdk/xml-builder@npm:3.821.0"
|
||||
dependencies:
|
||||
"@smithy/types": ^4.3.1
|
||||
tslib: ^2.6.2
|
||||
checksum: f6ee1e5f5336afeb72e2b5e712593d1dcaa626729d0a12941c32e14136308b8729b225d4c75e7b6606bc17eeb79ea28076212aced93cc6460fefb9b712b07e28
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
@@ -1614,15 +1633,15 @@ __metadata:
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"@docker/actions-toolkit@npm:^0.57.0":
|
||||
version: 0.57.0
|
||||
resolution: "@docker/actions-toolkit@npm:0.57.0"
|
||||
"@docker/actions-toolkit@npm:^0.62.1":
|
||||
version: 0.62.1
|
||||
resolution: "@docker/actions-toolkit@npm:0.62.1"
|
||||
dependencies:
|
||||
"@actions/artifact": ^2.3.0
|
||||
"@actions/cache": ^4.0.2
|
||||
"@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/github": ^6.0.1
|
||||
"@actions/http-client": ^2.2.3
|
||||
"@actions/io": ^1.1.3
|
||||
"@actions/tool-cache": ^2.0.2
|
||||
@@ -1636,10 +1655,10 @@ __metadata:
|
||||
he: ^1.2.0
|
||||
js-yaml: ^4.1.0
|
||||
jwt-decode: ^4.0.0
|
||||
semver: ^7.7.1
|
||||
semver: ^7.7.2
|
||||
tar-stream: ^3.1.7
|
||||
tmp: ^0.2.3
|
||||
checksum: d25b85d85d79a2ddb01ed7cd858d2c0dedae7545a1fd991517ae71aa53ccd91e3b295ed8a5b48f4c9a7b6486cdf25a47a9e123135f8bffac47af1c60551d268d
|
||||
checksum: 72dfef5073c7b638a73b53ccd48ec9dc3fa0e0c1b1b0aaf711fc872ef4ef0a882909271c01913f335efc5f868e4062e6e7720b92d6c3a605ecb6cc30d3001f9d
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
@@ -2228,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"
|
||||
@@ -2271,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"
|
||||
@@ -2282,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
|
||||
|
||||
@@ -2302,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:
|
||||
@@ -2357,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"
|
||||
@@ -2384,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:
|
||||
@@ -2402,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"
|
||||
@@ -2566,90 +2634,91 @@ __metadata:
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"@smithy/abort-controller@npm:^4.0.1":
|
||||
version: 4.0.1
|
||||
resolution: "@smithy/abort-controller@npm:4.0.1"
|
||||
"@smithy/abort-controller@npm:^4.0.4":
|
||||
version: 4.0.4
|
||||
resolution: "@smithy/abort-controller@npm:4.0.4"
|
||||
dependencies:
|
||||
"@smithy/types": ^4.1.0
|
||||
"@smithy/types": ^4.3.1
|
||||
tslib: ^2.6.2
|
||||
checksum: 9f6ac65639ae5823e7ea83fcd05282fca105adecda8a40bd4280cacb87ef2af935cf18e649897369db53c1b82c81fcdea75240260ca0ce9795ee22d6afa4f067
|
||||
checksum: 50e646633160f16d4d131c4a5612a352bca8ee652acfefc811389307756b791d0e0cee1459eeba4662e09b57e9f78681bb6c24d180d76e605126281fa52c20fb
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"@smithy/config-resolver@npm:^4.0.1":
|
||||
version: 4.0.1
|
||||
resolution: "@smithy/config-resolver@npm:4.0.1"
|
||||
"@smithy/config-resolver@npm:^4.1.4":
|
||||
version: 4.1.4
|
||||
resolution: "@smithy/config-resolver@npm:4.1.4"
|
||||
dependencies:
|
||||
"@smithy/node-config-provider": ^4.0.1
|
||||
"@smithy/types": ^4.1.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.1
|
||||
"@smithy/util-middleware": ^4.0.4
|
||||
tslib: ^2.6.2
|
||||
checksum: 24035ea6766693668f0776f8eed3d0a81aecbabf925e48c20ef759e6a95b39cd3e1b04efd819860d46727fe094382803fe3f625a0fbfcd652196753b44b7864f
|
||||
checksum: d3c3b7017377ae30839d3bc684fca7ff58c41c2ca71dd067931aff61f0c570b09cf35e47fde660488c7e1ecc8e1abf720bd41f380b9a91ea302fbd7c7f1b85fb
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"@smithy/core@npm:^3.1.5":
|
||||
version: 3.1.5
|
||||
resolution: "@smithy/core@npm:3.1.5"
|
||||
"@smithy/core@npm:^3.7.2":
|
||||
version: 3.7.2
|
||||
resolution: "@smithy/core@npm:3.7.2"
|
||||
dependencies:
|
||||
"@smithy/middleware-serde": ^4.0.2
|
||||
"@smithy/protocol-http": ^5.0.1
|
||||
"@smithy/types": ^4.1.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.1
|
||||
"@smithy/util-stream": ^4.1.2
|
||||
"@smithy/util-middleware": ^4.0.4
|
||||
"@smithy/util-stream": ^4.2.3
|
||||
"@smithy/util-utf8": ^4.0.0
|
||||
tslib: ^2.6.2
|
||||
checksum: 39154aed37228e66c7a96d5305dd5f1a8fbd742c672ca9782efc032b025b8e78f1403ab88fd00ae8fb5eaa2eb3cca7b2f7736be331c39a19386a0cc0987ba285
|
||||
checksum: 4a437ae019ae83863bb45cbd15a49543e1b756d1fc3ab1eec0444559516704cba78182f62b272f5f52662668d9a0862977c131db2337381369c2795068cc7ca1
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"@smithy/credential-provider-imds@npm:^4.0.1":
|
||||
version: 4.0.1
|
||||
resolution: "@smithy/credential-provider-imds@npm:4.0.1"
|
||||
"@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": ^4.0.1
|
||||
"@smithy/property-provider": ^4.0.1
|
||||
"@smithy/types": ^4.1.0
|
||||
"@smithy/url-parser": ^4.0.1
|
||||
"@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: ec03248abf9b2e89f5a49539d2a069c3d034af35dc49a09d260dd58662ac0b639c6463d1eaa7d80253b8168c67ecb00de8c79376ed65433fc20f8e934a9017d9
|
||||
checksum: 380ada77c7cc7f6e11ee4246a335799cd855b43df07469164ca7ccaeecd1eb8e037adf0b870e57578de7f82bb1f77e5d534c55ed3aa44491fcef55809b5d1d5c
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"@smithy/fetch-http-handler@npm:^5.0.1":
|
||||
version: 5.0.1
|
||||
resolution: "@smithy/fetch-http-handler@npm:5.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": ^5.0.1
|
||||
"@smithy/querystring-builder": ^4.0.1
|
||||
"@smithy/types": ^4.1.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: d8e160e4a57e1fb7b7805fcafda81fb7d7511904b48d2e25229d18bd15598c64cdd12bd39c0dee9fc9cc31a76952fae1d400c6a80e9015cfd6e22c2f930a6212
|
||||
checksum: f88242d6b4f1341e7d45b1defdc6b930f1600d840da57ce015583a81fd24a320e12b9fda12e3c51ecf9ce49ede37fe1f77d21d5e4bb94f094e801b6464dfee8c
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"@smithy/hash-node@npm:^4.0.1":
|
||||
version: 4.0.1
|
||||
resolution: "@smithy/hash-node@npm:4.0.1"
|
||||
"@smithy/hash-node@npm:^4.0.4":
|
||||
version: 4.0.4
|
||||
resolution: "@smithy/hash-node@npm:4.0.4"
|
||||
dependencies:
|
||||
"@smithy/types": ^4.1.0
|
||||
"@smithy/types": ^4.3.1
|
||||
"@smithy/util-buffer-from": ^4.0.0
|
||||
"@smithy/util-utf8": ^4.0.0
|
||||
tslib: ^2.6.2
|
||||
checksum: c68d222d4c39e97e90965cc669b6d30628b07ae136f49981ff551bccd5c104161fd2a322ebea85514c925e1d3525e413c05513e303a76e7af6c3e0cdb55960d0
|
||||
checksum: 2fd8a1036b9d6d2948249ad41a97b5801b918948ab1f8041b2b2482848570e8b417eeea7810f959376325e9ab33890775025b34a58305355b84ca8bff1417481
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"@smithy/invalid-dependency@npm:^4.0.1":
|
||||
version: 4.0.1
|
||||
resolution: "@smithy/invalid-dependency@npm:4.0.1"
|
||||
"@smithy/invalid-dependency@npm:^4.0.4":
|
||||
version: 4.0.4
|
||||
resolution: "@smithy/invalid-dependency@npm:4.0.4"
|
||||
dependencies:
|
||||
"@smithy/types": ^4.1.0
|
||||
"@smithy/types": ^4.3.1
|
||||
tslib: ^2.6.2
|
||||
checksum: 541e89a18cb5ce8db063ea74ea8831a11bdf42ac58412ae6aad350d4a128b6e9d3b0b5b31cac2597e5e52a0da4a2a3cf202946bb6649d398a84876a89c332bd1
|
||||
checksum: 6d6f53558cb252e2070e4830a18c0c72ad486308378d6eab2a185d63f5a0492ffbdff27dbea59f79e2d48477af2295e80d6314becf9ea3215827be8bb6690b07
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
@@ -2671,183 +2740,184 @@ __metadata:
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"@smithy/middleware-content-length@npm:^4.0.1":
|
||||
version: 4.0.1
|
||||
resolution: "@smithy/middleware-content-length@npm:4.0.1"
|
||||
"@smithy/middleware-content-length@npm:^4.0.4":
|
||||
version: 4.0.4
|
||||
resolution: "@smithy/middleware-content-length@npm:4.0.4"
|
||||
dependencies:
|
||||
"@smithy/protocol-http": ^5.0.1
|
||||
"@smithy/types": ^4.1.0
|
||||
"@smithy/protocol-http": ^5.1.2
|
||||
"@smithy/types": ^4.3.1
|
||||
tslib: ^2.6.2
|
||||
checksum: 61109cfee368b8b20d39efcc050c0a30c4a4355dc4fb1c8521b1ec258c35c454bda9a6489571b01eb14c48e030642fd674d28e6c8083e6e4272b2b24cee0e61e
|
||||
checksum: 251e47fbb7df19a8c39719f96dfd9e00252fc33733d2585898b7e5a37e85056052de1559d3c62b9daf493e2293b574ac2e92e17806777cadc9b733f1aab42294
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"@smithy/middleware-endpoint@npm:^4.0.6":
|
||||
version: 4.0.6
|
||||
resolution: "@smithy/middleware-endpoint@npm:4.0.6"
|
||||
"@smithy/middleware-endpoint@npm:^4.1.17":
|
||||
version: 4.1.17
|
||||
resolution: "@smithy/middleware-endpoint@npm:4.1.17"
|
||||
dependencies:
|
||||
"@smithy/core": ^3.1.5
|
||||
"@smithy/middleware-serde": ^4.0.2
|
||||
"@smithy/node-config-provider": ^4.0.1
|
||||
"@smithy/shared-ini-file-loader": ^4.0.1
|
||||
"@smithy/types": ^4.1.0
|
||||
"@smithy/url-parser": ^4.0.1
|
||||
"@smithy/util-middleware": ^4.0.1
|
||||
"@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: d023df4eeecc0d6148e2d8bbd5aa8272e232ceb92b9e6e7b409fbbd557c41cf15fecfc51c3b90a4437c9941403bcd45e5e7bd24f9a0081ef086d2a0ffd2f226d
|
||||
checksum: cbb6c19d210451dd8d61897da203d94ff0a30ebc07ffa0aecafcf196287aa56695ada25410656cc39d071e62f6d7b4cb4e6c718de3ddc96fe88adf84c03b74c3
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"@smithy/middleware-retry@npm:^4.0.7":
|
||||
version: 4.0.7
|
||||
resolution: "@smithy/middleware-retry@npm:4.0.7"
|
||||
"@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.0.1
|
||||
"@smithy/protocol-http": ^5.0.1
|
||||
"@smithy/service-error-classification": ^4.0.1
|
||||
"@smithy/smithy-client": ^4.1.6
|
||||
"@smithy/types": ^4.1.0
|
||||
"@smithy/util-middleware": ^4.0.1
|
||||
"@smithy/util-retry": ^4.0.1
|
||||
"@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: 5226c44515fb971889d22c7b93d717be54edd90427f9c967b482255a9cdc3259c717275f42f41af2497702b03e42c4e247a6a397e12b605e98a3a36fdd772929
|
||||
checksum: 523b8d5faf0277656d5040c8842d2d580a1862c9cdb3ccb074b5deb941f502152dbd3536436eb59d1be1a4c86774c4ae1ebed4656ff8d323bd9aa318915079c1
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"@smithy/middleware-serde@npm:^4.0.2":
|
||||
version: 4.0.2
|
||||
resolution: "@smithy/middleware-serde@npm:4.0.2"
|
||||
"@smithy/middleware-serde@npm:^4.0.8":
|
||||
version: 4.0.8
|
||||
resolution: "@smithy/middleware-serde@npm:4.0.8"
|
||||
dependencies:
|
||||
"@smithy/types": ^4.1.0
|
||||
"@smithy/protocol-http": ^5.1.2
|
||||
"@smithy/types": ^4.3.1
|
||||
tslib: ^2.6.2
|
||||
checksum: 51f33cf1f34bb7034a49025664b1575d7dd9450a3c12655b49d5804b5eeeec6e024991715d217f661eddc506ad91abc23a8f3c8f0cfeb7e2b45aa079ed61cd85
|
||||
checksum: 1c78cf584bf82c2ed80d55694945d63b5d3bdaf0c4dea1a35ff33b201d939e9ee5afbfb01c6725c9cbc0d9efb3ee50703970d177a9d20dba545e7e7ba3c0a3f5
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"@smithy/middleware-stack@npm:^4.0.1":
|
||||
version: 4.0.1
|
||||
resolution: "@smithy/middleware-stack@npm:4.0.1"
|
||||
"@smithy/middleware-stack@npm:^4.0.4":
|
||||
version: 4.0.4
|
||||
resolution: "@smithy/middleware-stack@npm:4.0.4"
|
||||
dependencies:
|
||||
"@smithy/types": ^4.1.0
|
||||
"@smithy/types": ^4.3.1
|
||||
tslib: ^2.6.2
|
||||
checksum: 21f61adf5071c6c32356c9f6b2423fffc0ba0cfdedae37b5162659e156bec122e03f67a5dac5fbd224f9bbb15a6793fd332cf1a02ea17eda0c4fb7e4ca22ce95
|
||||
checksum: c0b4e057d438fbc900435a4bcae68308bc17361968ebe828d43b4f78d826711e5d196ea2fc3ef86525169508d885979e459db0d46918ae00a2bb5dc8a5bd6796
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"@smithy/node-config-provider@npm:^4.0.1":
|
||||
version: 4.0.1
|
||||
resolution: "@smithy/node-config-provider@npm:4.0.1"
|
||||
"@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": ^4.0.1
|
||||
"@smithy/shared-ini-file-loader": ^4.0.1
|
||||
"@smithy/types": ^4.1.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: e997b3732a686e1dd9c5544a97fb18519acb45d522700045301391eee4a7b305a31ed68dd3a407fe754bebdfd4b759d8128a4bc80cdcd490113934ef8c3aaaa7
|
||||
checksum: c1260719f567b64e979e54698356ffd49f26d82e5eaafc60741588257df6016bbf7d2e26cba902ff900058e5e47e985287fdcb7ab1acdf6534b7cd50252e3856
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"@smithy/node-http-handler@npm:^4.0.3":
|
||||
version: 4.0.3
|
||||
resolution: "@smithy/node-http-handler@npm:4.0.3"
|
||||
"@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": ^4.0.1
|
||||
"@smithy/protocol-http": ^5.0.1
|
||||
"@smithy/querystring-builder": ^4.0.1
|
||||
"@smithy/types": ^4.1.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: 78d00526df2d54d8a639bebd904dfe35ec51595d341bb8134e81ec57740e4cbbe415db17365f439365a691b42e3ee51b766f4478a9068a86bdf887972df8d876
|
||||
checksum: 4ea660acadb0f30255066b068451cd8521d130f5702060c19af5e488f681cc7f76834612e566d80a933d92e897b4fca94973ed942f0a32f1703f6140bdd66b81
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"@smithy/property-provider@npm:^4.0.1":
|
||||
version: 4.0.1
|
||||
resolution: "@smithy/property-provider@npm:4.0.1"
|
||||
"@smithy/property-provider@npm:^4.0.4":
|
||||
version: 4.0.4
|
||||
resolution: "@smithy/property-provider@npm:4.0.4"
|
||||
dependencies:
|
||||
"@smithy/types": ^4.1.0
|
||||
"@smithy/types": ^4.3.1
|
||||
tslib: ^2.6.2
|
||||
checksum: c03bd23a9e707af6201e49d1d7c67d370b630eb39ab60eaebd628bda725105d3ed67392078d6ae73a22be35f7dcec9771fafd2a88c48b532ca717b68fc3c9a33
|
||||
checksum: 1cd552792897e43c1d4cf91edac0956a8a8d6a7ba588e46532644ae5aca535ec0fb33e3aa71c73f325632b72cd1b8f26732525a6723f74c54238026432b0118e
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"@smithy/protocol-http@npm:^5.0.1":
|
||||
version: 5.0.1
|
||||
resolution: "@smithy/protocol-http@npm:5.0.1"
|
||||
"@smithy/protocol-http@npm:^5.1.2":
|
||||
version: 5.1.2
|
||||
resolution: "@smithy/protocol-http@npm:5.1.2"
|
||||
dependencies:
|
||||
"@smithy/types": ^4.1.0
|
||||
"@smithy/types": ^4.3.1
|
||||
tslib: ^2.6.2
|
||||
checksum: 3978f544aa4bf36bcf2484126f5208f7035b210ca0088f2721edd11dbe7bbddeacb6b9e7ca493437dc7b5fdd0d9d85992f2c6e31846744690f205f852a981a3b
|
||||
checksum: 48dbb715956f7089f3422c6c875fd5c6c901bb55363091905f749bba4bac03c40bf11e63dcc92c9b5de058305c60513e987e1fd7550e585c9e2a98e7355676c8
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"@smithy/querystring-builder@npm:^4.0.1":
|
||||
version: 4.0.1
|
||||
resolution: "@smithy/querystring-builder@npm:4.0.1"
|
||||
"@smithy/querystring-builder@npm:^4.0.4":
|
||||
version: 4.0.4
|
||||
resolution: "@smithy/querystring-builder@npm:4.0.4"
|
||||
dependencies:
|
||||
"@smithy/types": ^4.1.0
|
||||
"@smithy/types": ^4.3.1
|
||||
"@smithy/util-uri-escape": ^4.0.0
|
||||
tslib: ^2.6.2
|
||||
checksum: 8c8486a1c5a8f7cb05db4fdbe213bd02a9b323121da885ff234763d63730aa269ce779adc4dea74715fbf53a7ff4f487d9d51dda33ddb14533ad42166f10b0cb
|
||||
checksum: e521cd60294aebabb11386f4db7925095ca7dcdd1eda1904ad3443aa65c992a74e7d57b24018c3e141320bcc8b8928a24b8a14c4328bc7176bdb1eac15f6655b
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"@smithy/querystring-parser@npm:^4.0.1":
|
||||
version: 4.0.1
|
||||
resolution: "@smithy/querystring-parser@npm:4.0.1"
|
||||
"@smithy/querystring-parser@npm:^4.0.4":
|
||||
version: 4.0.4
|
||||
resolution: "@smithy/querystring-parser@npm:4.0.4"
|
||||
dependencies:
|
||||
"@smithy/types": ^4.1.0
|
||||
"@smithy/types": ^4.3.1
|
||||
tslib: ^2.6.2
|
||||
checksum: 0ce6963937aa44882aeaf44b6aff68ca08faa927bd93da7adf354dd83b48beaef4246672504d8fc10d91be07e2f78c2b670bb82a46638da573183a69fa393278
|
||||
checksum: ebe874dfec44ec3d6ff63f9570cac7c18f5b1b2fb3d6a72722adb9d24bb891970fbbabb18d15b8ce46902cc5f21f1751218794f3ff2e110865804d822f4b83a0
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"@smithy/service-error-classification@npm:^4.0.1":
|
||||
version: 4.0.1
|
||||
resolution: "@smithy/service-error-classification@npm:4.0.1"
|
||||
"@smithy/service-error-classification@npm:^4.0.6":
|
||||
version: 4.0.6
|
||||
resolution: "@smithy/service-error-classification@npm:4.0.6"
|
||||
dependencies:
|
||||
"@smithy/types": ^4.1.0
|
||||
checksum: 331c06d7a07cd2f9303cc396e1f9b1d44c785ccb27f4f8f02177b9f496667ffa4df40ae38d2ed1b557cd9c75b5cacb9b00106462dc62094253f8619a7d370343
|
||||
"@smithy/types": ^4.3.1
|
||||
checksum: c851c882358af75cac41508ffdd2cfdc59e0cd298cb25cf6a4a97dd6cbc92f4890ce04590305726ebb1bbb6b6c527dde8d80ec84095c76bcdb6a3a1cc2107a90
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"@smithy/shared-ini-file-loader@npm:^4.0.1":
|
||||
version: 4.0.1
|
||||
resolution: "@smithy/shared-ini-file-loader@npm:4.0.1"
|
||||
"@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": ^4.1.0
|
||||
"@smithy/types": ^4.3.1
|
||||
tslib: ^2.6.2
|
||||
checksum: 54a399800dc32368ad99c5da4fd5eae62de4f9ddd249144b6516493bc42625e83c21ccd7c61d667c88d6000a3f5b42db452c10b870740cc9bec9e6c776607a9e
|
||||
checksum: b9405d3fea03cb7d1b031a41d7a91581eaaf47a5e6322c7bf2c57e27bcf8af403eea68c46a9c878a31af8a1f08fa803fce3d253c55b3318548fc93d61b0e56e8
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"@smithy/signature-v4@npm:^5.0.1":
|
||||
version: 5.0.1
|
||||
resolution: "@smithy/signature-v4@npm:5.0.1"
|
||||
"@smithy/signature-v4@npm:^5.1.2":
|
||||
version: 5.1.2
|
||||
resolution: "@smithy/signature-v4@npm:5.1.2"
|
||||
dependencies:
|
||||
"@smithy/is-array-buffer": ^4.0.0
|
||||
"@smithy/protocol-http": ^5.0.1
|
||||
"@smithy/types": ^4.1.0
|
||||
"@smithy/protocol-http": ^5.1.2
|
||||
"@smithy/types": ^4.3.1
|
||||
"@smithy/util-hex-encoding": ^4.0.0
|
||||
"@smithy/util-middleware": ^4.0.1
|
||||
"@smithy/util-middleware": ^4.0.4
|
||||
"@smithy/util-uri-escape": ^4.0.0
|
||||
"@smithy/util-utf8": ^4.0.0
|
||||
tslib: ^2.6.2
|
||||
checksum: fb6613ce08e2008e3da447eeaafdfdcbd8a428c9d4aaf3220eab77cb33832596885f77966acbee3f753e113ce728f440ca31747908d81d0ecbcf1822c5c7bd28
|
||||
checksum: b8acbdd600279be860650b8c99ea443b653f0a980a9aceb7cdf8bf0f017d0376a4aac9bef738c24aa0c2f12b3ae1984bf1ed5d99235f64a9ff41a7fcd851b531
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"@smithy/smithy-client@npm:^4.1.6":
|
||||
version: 4.1.6
|
||||
resolution: "@smithy/smithy-client@npm:4.1.6"
|
||||
"@smithy/smithy-client@npm:^4.4.9":
|
||||
version: 4.4.9
|
||||
resolution: "@smithy/smithy-client@npm:4.4.9"
|
||||
dependencies:
|
||||
"@smithy/core": ^3.1.5
|
||||
"@smithy/middleware-endpoint": ^4.0.6
|
||||
"@smithy/middleware-stack": ^4.0.1
|
||||
"@smithy/protocol-http": ^5.0.1
|
||||
"@smithy/types": ^4.1.0
|
||||
"@smithy/util-stream": ^4.1.2
|
||||
"@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: 79e1f2a3fa25cd96986abbaae79a528f2418e888a4f5664941b4f34627571f8de534cc4f0d999d3fa31bc96538c687010f8ca924b13a8021889ee2ecff9451fd
|
||||
checksum: cb08b39271f25973c12ed6367459aeee2f39907f76109022b56ef7602a9ce47f55f5f852560727cb1fee25f3df55ff3553feff50ff33a5b19c9a8b10dea0b51a
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
@@ -2860,23 +2930,23 @@ __metadata:
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"@smithy/types@npm:^4.1.0":
|
||||
version: 4.1.0
|
||||
resolution: "@smithy/types@npm:4.1.0"
|
||||
"@smithy/types@npm:^4.3.1":
|
||||
version: 4.3.1
|
||||
resolution: "@smithy/types@npm:4.3.1"
|
||||
dependencies:
|
||||
tslib: ^2.6.2
|
||||
checksum: ff7dcb7a72a2f5e984df95342ec7276cc3249e57de76d5013bf69314a4dbd081e193c5f849e8e5c3f54be222d861272a90ab15b437678e31958eb2c76f55c689
|
||||
checksum: 45f2e15cec06eefb6a2470346c65ec927e56ab1757eee5ab1c431f703a9b350b331679e1f60105a1529ecb9cdb953104883942e655701fb4710bbaf566ec0bc6
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"@smithy/url-parser@npm:^4.0.1":
|
||||
version: 4.0.1
|
||||
resolution: "@smithy/url-parser@npm:4.0.1"
|
||||
"@smithy/url-parser@npm:^4.0.4":
|
||||
version: 4.0.4
|
||||
resolution: "@smithy/url-parser@npm:4.0.4"
|
||||
dependencies:
|
||||
"@smithy/querystring-parser": ^4.0.1
|
||||
"@smithy/types": ^4.1.0
|
||||
"@smithy/querystring-parser": ^4.0.4
|
||||
"@smithy/types": ^4.3.1
|
||||
tslib: ^2.6.2
|
||||
checksum: 3ec0ebf024a333d20cfe463c246196a188abcd3460014cf535979540e873c5b9f7a13214e221aed31b50dd1f28b24b5eafbb6ef5ae1998987f81622c4ccd156b
|
||||
checksum: 1d3df1c58809f424af00396f987607ec9ebb0840625e4353af6dcd6baf480db8dd080b2f01ed41598ff18681ab2fcecab37f18f4c253fcbdd71eab2fab049400
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
@@ -2938,42 +3008,42 @@ __metadata:
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"@smithy/util-defaults-mode-browser@npm:^4.0.7":
|
||||
version: 4.0.7
|
||||
resolution: "@smithy/util-defaults-mode-browser@npm:4.0.7"
|
||||
"@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.1
|
||||
"@smithy/smithy-client": ^4.1.6
|
||||
"@smithy/types": ^4.1.0
|
||||
"@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: fde9c6d748b5a57c3057655b1b062dd691a1d94f9111b3ff6bd4e197bdf11c3977e065f445bd6a5960bf2c2e034d2a5d3a94fd68961e0210e31af790f3b50f12
|
||||
checksum: 98adbe1e62eac5b7a11ca7470172f1912511f7c42c5e29208277302a81720b97664ebee1d2443e14c4b206bfbda031071f2332ca56d3f346dae1668b2f503121
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"@smithy/util-defaults-mode-node@npm:^4.0.7":
|
||||
version: 4.0.7
|
||||
resolution: "@smithy/util-defaults-mode-node@npm:4.0.7"
|
||||
"@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": ^4.0.1
|
||||
"@smithy/credential-provider-imds": ^4.0.1
|
||||
"@smithy/node-config-provider": ^4.0.1
|
||||
"@smithy/property-provider": ^4.0.1
|
||||
"@smithy/smithy-client": ^4.1.6
|
||||
"@smithy/types": ^4.1.0
|
||||
"@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: 75e335ea6303d0708a1efdcf9639932a39d6e07ed13d30df289dbd477c9724b15db43af761a498d0bf03404b67575dadbb43d7745fee6d53b74cd9338bda6daf
|
||||
checksum: a9f981d338a990c024b0769f37d818d773518aae31c6be1f9f37820f2f5f254947726e4a98ed3e45fdc7c60221d36f9938f6bb61c40ddd9e85aa031d27660b18
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"@smithy/util-endpoints@npm:^3.0.1":
|
||||
version: 3.0.1
|
||||
resolution: "@smithy/util-endpoints@npm:3.0.1"
|
||||
"@smithy/util-endpoints@npm:^3.0.6":
|
||||
version: 3.0.6
|
||||
resolution: "@smithy/util-endpoints@npm:3.0.6"
|
||||
dependencies:
|
||||
"@smithy/node-config-provider": ^4.0.1
|
||||
"@smithy/types": ^4.1.0
|
||||
"@smithy/node-config-provider": ^4.1.3
|
||||
"@smithy/types": ^4.3.1
|
||||
tslib: ^2.6.2
|
||||
checksum: 2d351e297353fb624ba564b46ecf324376bc8fe34529ab4551e1d640c3b0317613a620c28977819db2c2d240791ff354d1d996fda119c0c4885a11507fb86af6
|
||||
checksum: 185c096db895f5bfabc05f1500d3428761fc4d450e998d6bf269879f7fc3f6fd770c1ed5a2de395a6b5300197bd40748a5b06c74b91ff01c9c499a25f2ba827e
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
@@ -2986,40 +3056,40 @@ __metadata:
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"@smithy/util-middleware@npm:^4.0.1":
|
||||
version: 4.0.1
|
||||
resolution: "@smithy/util-middleware@npm:4.0.1"
|
||||
"@smithy/util-middleware@npm:^4.0.4":
|
||||
version: 4.0.4
|
||||
resolution: "@smithy/util-middleware@npm:4.0.4"
|
||||
dependencies:
|
||||
"@smithy/types": ^4.1.0
|
||||
"@smithy/types": ^4.3.1
|
||||
tslib: ^2.6.2
|
||||
checksum: 1402e0abd9bfeb0d8b0033ad1b572984df1469dccf9f562353ec0133691826cdd85aa180616267819f80d8bb56c57f5a3a2ae92033f52cd8249230a6e670343b
|
||||
checksum: 6cfdec16f03cc963e78d888a0ef349c0d80645775e9933a88c4615fbd5a683a8230997f89372e2597bd956bc05df5adc41de6524fa8c0cc93fb7150d6530a03b
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"@smithy/util-retry@npm:^4.0.1":
|
||||
version: 4.0.1
|
||||
resolution: "@smithy/util-retry@npm:4.0.1"
|
||||
"@smithy/util-retry@npm:^4.0.6":
|
||||
version: 4.0.6
|
||||
resolution: "@smithy/util-retry@npm:4.0.6"
|
||||
dependencies:
|
||||
"@smithy/service-error-classification": ^4.0.1
|
||||
"@smithy/types": ^4.1.0
|
||||
"@smithy/service-error-classification": ^4.0.6
|
||||
"@smithy/types": ^4.3.1
|
||||
tslib: ^2.6.2
|
||||
checksum: 29f8afd444f4b692ebd8cb2d0f6045ac0d5ca3834c0b6bbfdf1f6c1faec17c7bdc9734413ba93c55a672d373900aaf08e3c9f2023b3ec9b60c057afb8bcb4966
|
||||
checksum: 0faef3d90da51024a5abd90de6bf1a846b6cd0f61c78791a2fecc7e49b0e8a705ca5619ae538cad4bab8995456d8219fe1c2769dacd156195cb73befcb02ca03
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"@smithy/util-stream@npm:^4.1.2":
|
||||
version: 4.1.2
|
||||
resolution: "@smithy/util-stream@npm:4.1.2"
|
||||
"@smithy/util-stream@npm:^4.2.3":
|
||||
version: 4.2.3
|
||||
resolution: "@smithy/util-stream@npm:4.2.3"
|
||||
dependencies:
|
||||
"@smithy/fetch-http-handler": ^5.0.1
|
||||
"@smithy/node-http-handler": ^4.0.3
|
||||
"@smithy/types": ^4.1.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: 6faea1450d266984e11611047fbcc4b23922ede59c797e143f7f31142984d04787a686dddc5e84707f1d8d139097af077231ecbd304b15df2946590684728f35
|
||||
checksum: 3384df45323f9af1ecc3bad506e8dc0100af44397d623e4b456654b997c87458b9c550b6f540f31e1d498f93e914b868f4bda6cf7eb36b34e26f86426c5299fd
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
@@ -3052,14 +3122,14 @@ __metadata:
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"@smithy/util-waiter@npm:^4.0.2":
|
||||
version: 4.0.2
|
||||
resolution: "@smithy/util-waiter@npm:4.0.2"
|
||||
"@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.1
|
||||
"@smithy/types": ^4.1.0
|
||||
"@smithy/abort-controller": ^4.0.4
|
||||
"@smithy/types": ^4.3.1
|
||||
tslib: ^2.6.2
|
||||
checksum: 8e5cbf0ea3d93e3bc834b2db8e158c2a84a1c36f5163d4b9b925f6444c5be60c23803b6afb323de2d32f16f08f3e03e8e423bc7e8b531bbf9ff6e23f42554fe9
|
||||
checksum: 0fb8f5bd351f875f50e4b82845eb427f42d200dd49d39001be3c1f8da6c08383e41c2fcfb5a53fb628211210fe181da30c3c60cb3923805a2063df5cf1be6dd7
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
@@ -3875,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"
|
||||
@@ -4032,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:
|
||||
@@ -4232,9 +4312,9 @@ __metadata:
|
||||
resolution: "docker-login@workspace:."
|
||||
dependencies:
|
||||
"@actions/core": ^1.11.1
|
||||
"@aws-sdk/client-ecr": ^3.766.0
|
||||
"@aws-sdk/client-ecr-public": ^3.758.0
|
||||
"@docker/actions-toolkit": ^0.57.0
|
||||
"@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
|
||||
@@ -4262,6 +4342,17 @@ __metadata:
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"dunder-proto@npm:^1.0.1":
|
||||
version: 1.0.1
|
||||
resolution: "dunder-proto@npm:1.0.1"
|
||||
dependencies:
|
||||
call-bind-apply-helpers: ^1.0.1
|
||||
es-errors: ^1.3.0
|
||||
gopd: ^1.2.0
|
||||
checksum: 149207e36f07bd4941921b0ca929e3a28f1da7bd6b6ff8ff7f4e2f2e460675af4576eeba359c635723dc189b64cdd4787e0255897d5b135ccc5d15cb8685fc90
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"duplexify@npm:^3.5.0, duplexify@npm:^3.6.0":
|
||||
version: 3.7.1
|
||||
resolution: "duplexify@npm:3.7.1"
|
||||
@@ -4357,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"
|
||||
@@ -4672,14 +4798,14 @@ __metadata:
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"fast-xml-parser@npm:4.4.1":
|
||||
version: 4.4.1
|
||||
resolution: "fast-xml-parser@npm:4.4.1"
|
||||
"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: f440c01cd141b98789ae777503bcb6727393296094cc82924ae9f88a5b971baa4eec7e65306c7e07746534caa661fc83694ff437d9012dc84dee39dfbfaab947
|
||||
checksum: b12daa933bc226bd7df1e1ecbd305e561c83fd6e4a234b5e2728901deca25a9b9522b9d3ebafde41b1f4d87ab814e3efe18c636638580795fdbe4670a556be88
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
@@ -4767,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
|
||||
|
||||
@@ -4850,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"
|
||||
@@ -4864,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"
|
||||
@@ -4871,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"
|
||||
@@ -4970,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"
|
||||
@@ -5039,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"
|
||||
@@ -5048,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"
|
||||
@@ -6101,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"
|
||||
@@ -6132,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:
|
||||
@@ -6885,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"
|
||||
@@ -6892,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"
|
||||
@@ -6942,12 +7145,12 @@ __metadata:
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"semver@npm:^7.7.1":
|
||||
version: 7.7.1
|
||||
resolution: "semver@npm:7.7.1"
|
||||
"semver@npm:^7.7.2":
|
||||
version: 7.7.2
|
||||
resolution: "semver@npm:7.7.2"
|
||||
bin:
|
||||
semver: bin/semver.js
|
||||
checksum: 586b825d36874007c9382d9e1ad8f93888d8670040add24a28e06a910aeebd673a2eb9e3bf169c6679d9245e66efb9057e0852e70d9daa6c27372aab1dda7104
|
||||
checksum: dd94ba8f1cbc903d8eeb4dd8bf19f46b3deb14262b6717d0de3c804b594058ae785ef2e4b46c5c3b58733c99c83339068203002f9e37cfe44f7e2cc5e3d2f621
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
@@ -7209,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
|
||||
|
||||
@@ -7553,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"
|
||||
|
||||
Reference in New Issue
Block a user