aws-cdk 2.1126.0 → 2.1128.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (43) hide show
  1. package/THIRD_PARTY_LICENSES +2 -414
  2. package/build-info.json +2 -2
  3. package/db.json.gz +0 -0
  4. package/lib/api-private.d.ts +1 -1
  5. package/lib/api-private.js +1 -1
  6. package/lib/cli/cdk-toolkit.d.ts +5 -1
  7. package/lib/cli/cdk-toolkit.js +421 -278
  8. package/lib/cli/cli-config.js +14 -2
  9. package/lib/cli/cli-type-registry.json +30 -2
  10. package/lib/cli/cli.js +20 -8
  11. package/lib/cli/convert-to-user-input.js +15 -1
  12. package/lib/cli/display-version.d.ts +1 -0
  13. package/lib/cli/display-version.js +5 -4
  14. package/lib/cli/io-host/cli-io-host.d.ts +84 -5
  15. package/lib/cli/io-host/cli-io-host.js +131 -17
  16. package/lib/cli/parse-command-line-arguments.js +18 -2
  17. package/lib/cli/telemetry/installation-id.d.ts +7 -0
  18. package/lib/cli/telemetry/installation-id.js +18 -10
  19. package/lib/cli/telemetry/messages.d.ts +7 -0
  20. package/lib/cli/telemetry/messages.js +16 -1
  21. package/lib/cli/telemetry/schema.d.ts +1 -1
  22. package/lib/cli/telemetry/schema.js +1 -1
  23. package/lib/cli/telemetry/session.d.ts +30 -1
  24. package/lib/cli/telemetry/session.js +54 -4
  25. package/lib/cli/telemetry/telemetry-state.d.ts +18 -0
  26. package/lib/cli/telemetry/telemetry-state.js +42 -0
  27. package/lib/cli/user-configuration.d.ts +2 -1
  28. package/lib/cli/user-configuration.js +16 -5
  29. package/lib/cli/user-input.d.ts +34 -1
  30. package/lib/cli/user-input.js +1 -1
  31. package/lib/cli/util/yargs-helpers.d.ts +9 -0
  32. package/lib/cli/util/yargs-helpers.js +20 -1
  33. package/lib/commands/context.js +1 -3
  34. package/lib/commands/doctor.d.ts +12 -3
  35. package/lib/commands/doctor.js +19 -4
  36. package/lib/commands/list-stacks.d.ts +13 -17
  37. package/lib/commands/list-stacks.js +41 -22
  38. package/lib/commands/migrate.js +3 -3
  39. package/lib/index.js +5238 -4862
  40. package/lib/index_bg.wasm +0 -0
  41. package/lib/init-templates/.init-version.json +1 -1
  42. package/lib/init-templates/.recommended-feature-flags.json +3 -1
  43. package/package.json +12 -11
@@ -23515,418 +23515,6 @@ Apache License
23515
23515
  limitations under the License.
23516
23516
 
23517
23517
 
23518
- ----------------
23519
-
23520
- ** @smithy/types@4.14.1 - https://www.npmjs.com/package/@smithy/types/v/4.14.1 | Apache-2.0
23521
- Apache License
23522
- Version 2.0, January 2004
23523
- http://www.apache.org/licenses/
23524
-
23525
- TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
23526
-
23527
- 1. Definitions.
23528
-
23529
- "License" shall mean the terms and conditions for use, reproduction,
23530
- and distribution as defined by Sections 1 through 9 of this document.
23531
-
23532
- "Licensor" shall mean the copyright owner or entity authorized by
23533
- the copyright owner that is granting the License.
23534
-
23535
- "Legal Entity" shall mean the union of the acting entity and all
23536
- other entities that control, are controlled by, or are under common
23537
- control with that entity. For the purposes of this definition,
23538
- "control" means (i) the power, direct or indirect, to cause the
23539
- direction or management of such entity, whether by contract or
23540
- otherwise, or (ii) ownership of fifty percent (50%) or more of the
23541
- outstanding shares, or (iii) beneficial ownership of such entity.
23542
-
23543
- "You" (or "Your") shall mean an individual or Legal Entity
23544
- exercising permissions granted by this License.
23545
-
23546
- "Source" form shall mean the preferred form for making modifications,
23547
- including but not limited to software source code, documentation
23548
- source, and configuration files.
23549
-
23550
- "Object" form shall mean any form resulting from mechanical
23551
- transformation or translation of a Source form, including but
23552
- not limited to compiled object code, generated documentation,
23553
- and conversions to other media types.
23554
-
23555
- "Work" shall mean the work of authorship, whether in Source or
23556
- Object form, made available under the License, as indicated by a
23557
- copyright notice that is included in or attached to the work
23558
- (an example is provided in the Appendix below).
23559
-
23560
- "Derivative Works" shall mean any work, whether in Source or Object
23561
- form, that is based on (or derived from) the Work and for which the
23562
- editorial revisions, annotations, elaborations, or other modifications
23563
- represent, as a whole, an original work of authorship. For the purposes
23564
- of this License, Derivative Works shall not include works that remain
23565
- separable from, or merely link (or bind by name) to the interfaces of,
23566
- the Work and Derivative Works thereof.
23567
-
23568
- "Contribution" shall mean any work of authorship, including
23569
- the original version of the Work and any modifications or additions
23570
- to that Work or Derivative Works thereof, that is intentionally
23571
- submitted to Licensor for inclusion in the Work by the copyright owner
23572
- or by an individual or Legal Entity authorized to submit on behalf of
23573
- the copyright owner. For the purposes of this definition, "submitted"
23574
- means any form of electronic, verbal, or written communication sent
23575
- to the Licensor or its representatives, including but not limited to
23576
- communication on electronic mailing lists, source code control systems,
23577
- and issue tracking systems that are managed by, or on behalf of, the
23578
- Licensor for the purpose of discussing and improving the Work, but
23579
- excluding communication that is conspicuously marked or otherwise
23580
- designated in writing by the copyright owner as "Not a Contribution."
23581
-
23582
- "Contributor" shall mean Licensor and any individual or Legal Entity
23583
- on behalf of whom a Contribution has been received by Licensor and
23584
- subsequently incorporated within the Work.
23585
-
23586
- 2. Grant of Copyright License. Subject to the terms and conditions of
23587
- this License, each Contributor hereby grants to You a perpetual,
23588
- worldwide, non-exclusive, no-charge, royalty-free, irrevocable
23589
- copyright license to reproduce, prepare Derivative Works of,
23590
- publicly display, publicly perform, sublicense, and distribute the
23591
- Work and such Derivative Works in Source or Object form.
23592
-
23593
- 3. Grant of Patent License. Subject to the terms and conditions of
23594
- this License, each Contributor hereby grants to You a perpetual,
23595
- worldwide, non-exclusive, no-charge, royalty-free, irrevocable
23596
- (except as stated in this section) patent license to make, have made,
23597
- use, offer to sell, sell, import, and otherwise transfer the Work,
23598
- where such license applies only to those patent claims licensable
23599
- by such Contributor that are necessarily infringed by their
23600
- Contribution(s) alone or by combination of their Contribution(s)
23601
- with the Work to which such Contribution(s) was submitted. If You
23602
- institute patent litigation against any entity (including a
23603
- cross-claim or counterclaim in a lawsuit) alleging that the Work
23604
- or a Contribution incorporated within the Work constitutes direct
23605
- or contributory patent infringement, then any patent licenses
23606
- granted to You under this License for that Work shall terminate
23607
- as of the date such litigation is filed.
23608
-
23609
- 4. Redistribution. You may reproduce and distribute copies of the
23610
- Work or Derivative Works thereof in any medium, with or without
23611
- modifications, and in Source or Object form, provided that You
23612
- meet the following conditions:
23613
-
23614
- (a) You must give any other recipients of the Work or
23615
- Derivative Works a copy of this License; and
23616
-
23617
- (b) You must cause any modified files to carry prominent notices
23618
- stating that You changed the files; and
23619
-
23620
- (c) You must retain, in the Source form of any Derivative Works
23621
- that You distribute, all copyright, patent, trademark, and
23622
- attribution notices from the Source form of the Work,
23623
- excluding those notices that do not pertain to any part of
23624
- the Derivative Works; and
23625
-
23626
- (d) If the Work includes a "NOTICE" text file as part of its
23627
- distribution, then any Derivative Works that You distribute must
23628
- include a readable copy of the attribution notices contained
23629
- within such NOTICE file, excluding those notices that do not
23630
- pertain to any part of the Derivative Works, in at least one
23631
- of the following places: within a NOTICE text file distributed
23632
- as part of the Derivative Works; within the Source form or
23633
- documentation, if provided along with the Derivative Works; or,
23634
- within a display generated by the Derivative Works, if and
23635
- wherever such third-party notices normally appear. The contents
23636
- of the NOTICE file are for informational purposes only and
23637
- do not modify the License. You may add Your own attribution
23638
- notices within Derivative Works that You distribute, alongside
23639
- or as an addendum to the NOTICE text from the Work, provided
23640
- that such additional attribution notices cannot be construed
23641
- as modifying the License.
23642
-
23643
- You may add Your own copyright statement to Your modifications and
23644
- may provide additional or different license terms and conditions
23645
- for use, reproduction, or distribution of Your modifications, or
23646
- for any such Derivative Works as a whole, provided Your use,
23647
- reproduction, and distribution of the Work otherwise complies with
23648
- the conditions stated in this License.
23649
-
23650
- 5. Submission of Contributions. Unless You explicitly state otherwise,
23651
- any Contribution intentionally submitted for inclusion in the Work
23652
- by You to the Licensor shall be under the terms and conditions of
23653
- this License, without any additional terms or conditions.
23654
- Notwithstanding the above, nothing herein shall supersede or modify
23655
- the terms of any separate license agreement you may have executed
23656
- with Licensor regarding such Contributions.
23657
-
23658
- 6. Trademarks. This License does not grant permission to use the trade
23659
- names, trademarks, service marks, or product names of the Licensor,
23660
- except as required for reasonable and customary use in describing the
23661
- origin of the Work and reproducing the content of the NOTICE file.
23662
-
23663
- 7. Disclaimer of Warranty. Unless required by applicable law or
23664
- agreed to in writing, Licensor provides the Work (and each
23665
- Contributor provides its Contributions) on an "AS IS" BASIS,
23666
- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
23667
- implied, including, without limitation, any warranties or conditions
23668
- of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
23669
- PARTICULAR PURPOSE. You are solely responsible for determining the
23670
- appropriateness of using or redistributing the Work and assume any
23671
- risks associated with Your exercise of permissions under this License.
23672
-
23673
- 8. Limitation of Liability. In no event and under no legal theory,
23674
- whether in tort (including negligence), contract, or otherwise,
23675
- unless required by applicable law (such as deliberate and grossly
23676
- negligent acts) or agreed to in writing, shall any Contributor be
23677
- liable to You for damages, including any direct, indirect, special,
23678
- incidental, or consequential damages of any character arising as a
23679
- result of this License or out of the use or inability to use the
23680
- Work (including but not limited to damages for loss of goodwill,
23681
- work stoppage, computer failure or malfunction, or any and all
23682
- other commercial damages or losses), even if such Contributor
23683
- has been advised of the possibility of such damages.
23684
-
23685
- 9. Accepting Warranty or Additional Liability. While redistributing
23686
- the Work or Derivative Works thereof, You may choose to offer,
23687
- and charge a fee for, acceptance of support, warranty, indemnity,
23688
- or other liability obligations and/or rights consistent with this
23689
- License. However, in accepting such obligations, You may act only
23690
- on Your own behalf and on Your sole responsibility, not on behalf
23691
- of any other Contributor, and only if You agree to indemnify,
23692
- defend, and hold each Contributor harmless for any liability
23693
- incurred by, or claims asserted against, such Contributor by reason
23694
- of your accepting any such warranty or additional liability.
23695
-
23696
- END OF TERMS AND CONDITIONS
23697
-
23698
- APPENDIX: How to apply the Apache License to your work.
23699
-
23700
- To apply the Apache License to your work, attach the following
23701
- boilerplate notice, with the fields enclosed by brackets "{}"
23702
- replaced with your own identifying information. (Don't include
23703
- the brackets!) The text should be enclosed in the appropriate
23704
- comment syntax for the file format. We also recommend that a
23705
- file or class name and description of purpose be included on the
23706
- same "printed page" as the copyright notice for easier
23707
- identification within third-party archives.
23708
-
23709
- Copyright 2019 Amazon.com, Inc. or its affiliates. All Rights Reserved.
23710
-
23711
- Licensed under the Apache License, Version 2.0 (the "License");
23712
- you may not use this file except in compliance with the License.
23713
- You may obtain a copy of the License at
23714
-
23715
- http://www.apache.org/licenses/LICENSE-2.0
23716
-
23717
- Unless required by applicable law or agreed to in writing, software
23718
- distributed under the License is distributed on an "AS IS" BASIS,
23719
- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
23720
- See the License for the specific language governing permissions and
23721
- limitations under the License.
23722
-
23723
-
23724
- ----------------
23725
-
23726
- ** @smithy/types@4.14.2 - https://www.npmjs.com/package/@smithy/types/v/4.14.2 | Apache-2.0
23727
- Apache License
23728
- Version 2.0, January 2004
23729
- http://www.apache.org/licenses/
23730
-
23731
- TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
23732
-
23733
- 1. Definitions.
23734
-
23735
- "License" shall mean the terms and conditions for use, reproduction,
23736
- and distribution as defined by Sections 1 through 9 of this document.
23737
-
23738
- "Licensor" shall mean the copyright owner or entity authorized by
23739
- the copyright owner that is granting the License.
23740
-
23741
- "Legal Entity" shall mean the union of the acting entity and all
23742
- other entities that control, are controlled by, or are under common
23743
- control with that entity. For the purposes of this definition,
23744
- "control" means (i) the power, direct or indirect, to cause the
23745
- direction or management of such entity, whether by contract or
23746
- otherwise, or (ii) ownership of fifty percent (50%) or more of the
23747
- outstanding shares, or (iii) beneficial ownership of such entity.
23748
-
23749
- "You" (or "Your") shall mean an individual or Legal Entity
23750
- exercising permissions granted by this License.
23751
-
23752
- "Source" form shall mean the preferred form for making modifications,
23753
- including but not limited to software source code, documentation
23754
- source, and configuration files.
23755
-
23756
- "Object" form shall mean any form resulting from mechanical
23757
- transformation or translation of a Source form, including but
23758
- not limited to compiled object code, generated documentation,
23759
- and conversions to other media types.
23760
-
23761
- "Work" shall mean the work of authorship, whether in Source or
23762
- Object form, made available under the License, as indicated by a
23763
- copyright notice that is included in or attached to the work
23764
- (an example is provided in the Appendix below).
23765
-
23766
- "Derivative Works" shall mean any work, whether in Source or Object
23767
- form, that is based on (or derived from) the Work and for which the
23768
- editorial revisions, annotations, elaborations, or other modifications
23769
- represent, as a whole, an original work of authorship. For the purposes
23770
- of this License, Derivative Works shall not include works that remain
23771
- separable from, or merely link (or bind by name) to the interfaces of,
23772
- the Work and Derivative Works thereof.
23773
-
23774
- "Contribution" shall mean any work of authorship, including
23775
- the original version of the Work and any modifications or additions
23776
- to that Work or Derivative Works thereof, that is intentionally
23777
- submitted to Licensor for inclusion in the Work by the copyright owner
23778
- or by an individual or Legal Entity authorized to submit on behalf of
23779
- the copyright owner. For the purposes of this definition, "submitted"
23780
- means any form of electronic, verbal, or written communication sent
23781
- to the Licensor or its representatives, including but not limited to
23782
- communication on electronic mailing lists, source code control systems,
23783
- and issue tracking systems that are managed by, or on behalf of, the
23784
- Licensor for the purpose of discussing and improving the Work, but
23785
- excluding communication that is conspicuously marked or otherwise
23786
- designated in writing by the copyright owner as "Not a Contribution."
23787
-
23788
- "Contributor" shall mean Licensor and any individual or Legal Entity
23789
- on behalf of whom a Contribution has been received by Licensor and
23790
- subsequently incorporated within the Work.
23791
-
23792
- 2. Grant of Copyright License. Subject to the terms and conditions of
23793
- this License, each Contributor hereby grants to You a perpetual,
23794
- worldwide, non-exclusive, no-charge, royalty-free, irrevocable
23795
- copyright license to reproduce, prepare Derivative Works of,
23796
- publicly display, publicly perform, sublicense, and distribute the
23797
- Work and such Derivative Works in Source or Object form.
23798
-
23799
- 3. Grant of Patent License. Subject to the terms and conditions of
23800
- this License, each Contributor hereby grants to You a perpetual,
23801
- worldwide, non-exclusive, no-charge, royalty-free, irrevocable
23802
- (except as stated in this section) patent license to make, have made,
23803
- use, offer to sell, sell, import, and otherwise transfer the Work,
23804
- where such license applies only to those patent claims licensable
23805
- by such Contributor that are necessarily infringed by their
23806
- Contribution(s) alone or by combination of their Contribution(s)
23807
- with the Work to which such Contribution(s) was submitted. If You
23808
- institute patent litigation against any entity (including a
23809
- cross-claim or counterclaim in a lawsuit) alleging that the Work
23810
- or a Contribution incorporated within the Work constitutes direct
23811
- or contributory patent infringement, then any patent licenses
23812
- granted to You under this License for that Work shall terminate
23813
- as of the date such litigation is filed.
23814
-
23815
- 4. Redistribution. You may reproduce and distribute copies of the
23816
- Work or Derivative Works thereof in any medium, with or without
23817
- modifications, and in Source or Object form, provided that You
23818
- meet the following conditions:
23819
-
23820
- (a) You must give any other recipients of the Work or
23821
- Derivative Works a copy of this License; and
23822
-
23823
- (b) You must cause any modified files to carry prominent notices
23824
- stating that You changed the files; and
23825
-
23826
- (c) You must retain, in the Source form of any Derivative Works
23827
- that You distribute, all copyright, patent, trademark, and
23828
- attribution notices from the Source form of the Work,
23829
- excluding those notices that do not pertain to any part of
23830
- the Derivative Works; and
23831
-
23832
- (d) If the Work includes a "NOTICE" text file as part of its
23833
- distribution, then any Derivative Works that You distribute must
23834
- include a readable copy of the attribution notices contained
23835
- within such NOTICE file, excluding those notices that do not
23836
- pertain to any part of the Derivative Works, in at least one
23837
- of the following places: within a NOTICE text file distributed
23838
- as part of the Derivative Works; within the Source form or
23839
- documentation, if provided along with the Derivative Works; or,
23840
- within a display generated by the Derivative Works, if and
23841
- wherever such third-party notices normally appear. The contents
23842
- of the NOTICE file are for informational purposes only and
23843
- do not modify the License. You may add Your own attribution
23844
- notices within Derivative Works that You distribute, alongside
23845
- or as an addendum to the NOTICE text from the Work, provided
23846
- that such additional attribution notices cannot be construed
23847
- as modifying the License.
23848
-
23849
- You may add Your own copyright statement to Your modifications and
23850
- may provide additional or different license terms and conditions
23851
- for use, reproduction, or distribution of Your modifications, or
23852
- for any such Derivative Works as a whole, provided Your use,
23853
- reproduction, and distribution of the Work otherwise complies with
23854
- the conditions stated in this License.
23855
-
23856
- 5. Submission of Contributions. Unless You explicitly state otherwise,
23857
- any Contribution intentionally submitted for inclusion in the Work
23858
- by You to the Licensor shall be under the terms and conditions of
23859
- this License, without any additional terms or conditions.
23860
- Notwithstanding the above, nothing herein shall supersede or modify
23861
- the terms of any separate license agreement you may have executed
23862
- with Licensor regarding such Contributions.
23863
-
23864
- 6. Trademarks. This License does not grant permission to use the trade
23865
- names, trademarks, service marks, or product names of the Licensor,
23866
- except as required for reasonable and customary use in describing the
23867
- origin of the Work and reproducing the content of the NOTICE file.
23868
-
23869
- 7. Disclaimer of Warranty. Unless required by applicable law or
23870
- agreed to in writing, Licensor provides the Work (and each
23871
- Contributor provides its Contributions) on an "AS IS" BASIS,
23872
- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
23873
- implied, including, without limitation, any warranties or conditions
23874
- of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
23875
- PARTICULAR PURPOSE. You are solely responsible for determining the
23876
- appropriateness of using or redistributing the Work and assume any
23877
- risks associated with Your exercise of permissions under this License.
23878
-
23879
- 8. Limitation of Liability. In no event and under no legal theory,
23880
- whether in tort (including negligence), contract, or otherwise,
23881
- unless required by applicable law (such as deliberate and grossly
23882
- negligent acts) or agreed to in writing, shall any Contributor be
23883
- liable to You for damages, including any direct, indirect, special,
23884
- incidental, or consequential damages of any character arising as a
23885
- result of this License or out of the use or inability to use the
23886
- Work (including but not limited to damages for loss of goodwill,
23887
- work stoppage, computer failure or malfunction, or any and all
23888
- other commercial damages or losses), even if such Contributor
23889
- has been advised of the possibility of such damages.
23890
-
23891
- 9. Accepting Warranty or Additional Liability. While redistributing
23892
- the Work or Derivative Works thereof, You may choose to offer,
23893
- and charge a fee for, acceptance of support, warranty, indemnity,
23894
- or other liability obligations and/or rights consistent with this
23895
- License. However, in accepting such obligations, You may act only
23896
- on Your own behalf and on Your sole responsibility, not on behalf
23897
- of any other Contributor, and only if You agree to indemnify,
23898
- defend, and hold each Contributor harmless for any liability
23899
- incurred by, or claims asserted against, such Contributor by reason
23900
- of your accepting any such warranty or additional liability.
23901
-
23902
- END OF TERMS AND CONDITIONS
23903
-
23904
- APPENDIX: How to apply the Apache License to your work.
23905
-
23906
- To apply the Apache License to your work, attach the following
23907
- boilerplate notice, with the fields enclosed by brackets "{}"
23908
- replaced with your own identifying information. (Don't include
23909
- the brackets!) The text should be enclosed in the appropriate
23910
- comment syntax for the file format. We also recommend that a
23911
- file or class name and description of purpose be included on the
23912
- same "printed page" as the copyright notice for easier
23913
- identification within third-party archives.
23914
-
23915
- Copyright 2019 Amazon.com, Inc. or its affiliates. All Rights Reserved.
23916
-
23917
- Licensed under the Apache License, Version 2.0 (the "License");
23918
- you may not use this file except in compliance with the License.
23919
- You may obtain a copy of the License at
23920
-
23921
- http://www.apache.org/licenses/LICENSE-2.0
23922
-
23923
- Unless required by applicable law or agreed to in writing, software
23924
- distributed under the License is distributed on an "AS IS" BASIS,
23925
- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
23926
- See the License for the specific language governing permissions and
23927
- limitations under the License.
23928
-
23929
-
23930
23518
  ----------------
23931
23519
 
23932
23520
  ** @smithy/types@4.14.3 - https://www.npmjs.com/package/@smithy/types/v/4.14.3 | Apache-2.0
@@ -28687,7 +28275,7 @@ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLI
28687
28275
 
28688
28276
  ----------------
28689
28277
 
28690
- ** cdk-from-cfn@0.302.0 - https://www.npmjs.com/package/cdk-from-cfn/v/0.302.0 | MIT OR Apache-2.0
28278
+ ** cdk-from-cfn@0.304.0 - https://www.npmjs.com/package/cdk-from-cfn/v/0.304.0 | MIT OR Apache-2.0
28691
28279
 
28692
28280
  ----------------
28693
28281
 
@@ -31280,7 +30868,7 @@ THE SOFTWARE.
31280
30868
 
31281
30869
  ----------------
31282
30870
 
31283
- ** semver@7.8.1 - https://www.npmjs.com/package/semver/v/7.8.1 | ISC
30871
+ ** semver@7.8.4 - https://www.npmjs.com/package/semver/v/7.8.4 | ISC
31284
30872
  The ISC License
31285
30873
 
31286
30874
  Copyright (c) Isaac Z. Schlueter and Contributors
package/build-info.json CHANGED
@@ -1,4 +1,4 @@
1
1
  {
2
- "comment": "Generated at 2026-06-03T16:10:39Z by generate.sh",
3
- "commit": "a90d578"
2
+ "comment": "Generated at 2026-06-17T23:25:49Z by generate.sh",
3
+ "commit": "7daa104"
4
4
  }
package/db.json.gz CHANGED
Binary file
@@ -1,5 +1,5 @@
1
1
  export { deployStack } from '../../@aws-cdk/toolkit-lib/lib/api/deployments/deploy-stack';
2
- export type { DeployStackOptions as DeployStackApiOptions } from '../../@aws-cdk/toolkit-lib/lib/api/deployments/deploy-stack';
2
+ export type { DeployStackOptions as DeployStackApiOptions, DestroyStackResult } from '../../@aws-cdk/toolkit-lib/lib/api/deployments/deploy-stack';
3
3
  export * as cfnApi from '../../@aws-cdk/toolkit-lib/lib/api/deployments/cfn-api';
4
4
  export { createIgnoreMatcher } from '../../@aws-cdk/toolkit-lib/lib/util/glob-matcher';
5
5
  export * from '../../@aws-cdk/toolkit-lib/lib/api/io/private';
@@ -26,4 +26,4 @@ __exportStar(require("../../@aws-cdk/toolkit-lib/lib/api/tags/private"), exports
26
26
  __exportStar(require("../../@aws-cdk/toolkit-lib/lib/private/activity-printer"), exports);
27
27
  __exportStar(require("../../@aws-cdk/toolkit-lib/lib/api/cloud-assembly/private/borrowed-assembly"), exports);
28
28
  __exportStar(require("../../@aws-cdk/toolkit-lib/lib/toolkit/private/count-assembly-results"), exports);
29
- //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiYXBpLXByaXZhdGUuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyJhcGktcHJpdmF0ZS50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiOzs7Ozs7Ozs7Ozs7Ozs7OztBQUFBLGdEQUFnRDtBQUNoRCw0RkFBMEY7QUFBakYsMkdBQUEsV0FBVyxPQUFBO0FBRXBCLG1GQUFpRjtBQUNqRixpRkFBdUY7QUFBOUUsbUhBQUEsbUJBQW1CLE9BQUE7QUFDNUIsZ0ZBQThEO0FBQzlELGtGQUFnRTtBQUNoRSwwRkFBd0U7QUFDeEUsOEdBQTRGO0FBQzVGLHdHQUFzRiIsInNvdXJjZXNDb250ZW50IjpbIi8qIGVzbGludC1kaXNhYmxlIGltcG9ydC9uby1yZWxhdGl2ZS1wYWNrYWdlcyAqL1xuZXhwb3J0IHsgZGVwbG95U3RhY2sgfSBmcm9tICcuLi8uLi9AYXdzLWNkay90b29sa2l0LWxpYi9saWIvYXBpL2RlcGxveW1lbnRzL2RlcGxveS1zdGFjayc7XG5leHBvcnQgdHlwZSB7IERlcGxveVN0YWNrT3B0aW9ucyBhcyBEZXBsb3lTdGFja0FwaU9wdGlvbnMgfSBmcm9tICcuLi8uLi9AYXdzLWNkay90b29sa2l0LWxpYi9saWIvYXBpL2RlcGxveW1lbnRzL2RlcGxveS1zdGFjayc7XG5leHBvcnQgKiBhcyBjZm5BcGkgZnJvbSAnLi4vLi4vQGF3cy1jZGsvdG9vbGtpdC1saWIvbGliL2FwaS9kZXBsb3ltZW50cy9jZm4tYXBpJztcbmV4cG9ydCB7IGNyZWF0ZUlnbm9yZU1hdGNoZXIgfSBmcm9tICcuLi8uLi9AYXdzLWNkay90b29sa2l0LWxpYi9saWIvdXRpbC9nbG9iLW1hdGNoZXInO1xuZXhwb3J0ICogZnJvbSAnLi4vLi4vQGF3cy1jZGsvdG9vbGtpdC1saWIvbGliL2FwaS9pby9wcml2YXRlJztcbmV4cG9ydCAqIGZyb20gJy4uLy4uL0Bhd3MtY2RrL3Rvb2xraXQtbGliL2xpYi9hcGkvdGFncy9wcml2YXRlJztcbmV4cG9ydCAqIGZyb20gJy4uLy4uL0Bhd3MtY2RrL3Rvb2xraXQtbGliL2xpYi9wcml2YXRlL2FjdGl2aXR5LXByaW50ZXInO1xuZXhwb3J0ICogZnJvbSAnLi4vLi4vQGF3cy1jZGsvdG9vbGtpdC1saWIvbGliL2FwaS9jbG91ZC1hc3NlbWJseS9wcml2YXRlL2JvcnJvd2VkLWFzc2VtYmx5JztcbmV4cG9ydCAqIGZyb20gJy4uLy4uL0Bhd3MtY2RrL3Rvb2xraXQtbGliL2xpYi90b29sa2l0L3ByaXZhdGUvY291bnQtYXNzZW1ibHktcmVzdWx0cyc7XG4iXX0=
29
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiYXBpLXByaXZhdGUuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyJhcGktcHJpdmF0ZS50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiOzs7Ozs7Ozs7Ozs7Ozs7OztBQUFBLGdEQUFnRDtBQUNoRCw0RkFBMEY7QUFBakYsMkdBQUEsV0FBVyxPQUFBO0FBRXBCLG1GQUFpRjtBQUNqRixpRkFBdUY7QUFBOUUsbUhBQUEsbUJBQW1CLE9BQUE7QUFDNUIsZ0ZBQThEO0FBQzlELGtGQUFnRTtBQUNoRSwwRkFBd0U7QUFDeEUsOEdBQTRGO0FBQzVGLHdHQUFzRiIsInNvdXJjZXNDb250ZW50IjpbIi8qIGVzbGludC1kaXNhYmxlIGltcG9ydC9uby1yZWxhdGl2ZS1wYWNrYWdlcyAqL1xuZXhwb3J0IHsgZGVwbG95U3RhY2sgfSBmcm9tICcuLi8uLi9AYXdzLWNkay90b29sa2l0LWxpYi9saWIvYXBpL2RlcGxveW1lbnRzL2RlcGxveS1zdGFjayc7XG5leHBvcnQgdHlwZSB7IERlcGxveVN0YWNrT3B0aW9ucyBhcyBEZXBsb3lTdGFja0FwaU9wdGlvbnMsIERlc3Ryb3lTdGFja1Jlc3VsdCB9IGZyb20gJy4uLy4uL0Bhd3MtY2RrL3Rvb2xraXQtbGliL2xpYi9hcGkvZGVwbG95bWVudHMvZGVwbG95LXN0YWNrJztcbmV4cG9ydCAqIGFzIGNmbkFwaSBmcm9tICcuLi8uLi9AYXdzLWNkay90b29sa2l0LWxpYi9saWIvYXBpL2RlcGxveW1lbnRzL2Nmbi1hcGknO1xuZXhwb3J0IHsgY3JlYXRlSWdub3JlTWF0Y2hlciB9IGZyb20gJy4uLy4uL0Bhd3MtY2RrL3Rvb2xraXQtbGliL2xpYi91dGlsL2dsb2ItbWF0Y2hlcic7XG5leHBvcnQgKiBmcm9tICcuLi8uLi9AYXdzLWNkay90b29sa2l0LWxpYi9saWIvYXBpL2lvL3ByaXZhdGUnO1xuZXhwb3J0ICogZnJvbSAnLi4vLi4vQGF3cy1jZGsvdG9vbGtpdC1saWIvbGliL2FwaS90YWdzL3ByaXZhdGUnO1xuZXhwb3J0ICogZnJvbSAnLi4vLi4vQGF3cy1jZGsvdG9vbGtpdC1saWIvbGliL3ByaXZhdGUvYWN0aXZpdHktcHJpbnRlcic7XG5leHBvcnQgKiBmcm9tICcuLi8uLi9AYXdzLWNkay90b29sa2l0LWxpYi9saWIvYXBpL2Nsb3VkLWFzc2VtYmx5L3ByaXZhdGUvYm9ycm93ZWQtYXNzZW1ibHknO1xuZXhwb3J0ICogZnJvbSAnLi4vLi4vQGF3cy1jZGsvdG9vbGtpdC1saWIvbGliL3Rvb2xraXQvcHJpdmF0ZS9jb3VudC1hc3NlbWJseS1yZXN1bHRzJztcbiJdfQ==
@@ -1,5 +1,5 @@
1
1
  import { RequireApproval } from '@aws-cdk/cloud-assembly-schema';
2
- import type { DeploymentMethod, DiagnoseOptions, PublishAssetsOptions, ToolkitOptions } from '@aws-cdk/toolkit-lib';
2
+ import type { DeploymentMethod, DiagnoseOptions, PublishAssetsOptions, ToolkitOptions, ValidateOptions } from '@aws-cdk/toolkit-lib';
3
3
  import { Toolkit } from '@aws-cdk/toolkit-lib';
4
4
  import { CliIoHost } from './io-host';
5
5
  import type { Configuration } from './user-configuration';
@@ -111,6 +111,10 @@ export declare class CdkToolkit {
111
111
  * Detect infrastructure drift for the given stack(s)
112
112
  */
113
113
  drift(options: DriftOptions): Promise<number>;
114
+ /**
115
+ * Validate synthesized templates against policy rules
116
+ */
117
+ validate(options: ValidateOptions): Promise<number>;
114
118
  /**
115
119
  * Diagnose errors
116
120
  */