aws-cdk 2.1029.4 → 2.1031.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.
- package/README.md +1 -0
- package/THIRD_PARTY_LICENSES +80 -0
- package/build-info.json +2 -2
- package/lib/cli/cdk-toolkit.d.ts +0 -1
- package/lib/cli/cdk-toolkit.js +34 -32
- package/lib/cli/cli-config.js +4 -2
- package/lib/cli/cli-type-registry.json +14 -1
- package/lib/cli/cli.js +10 -10
- package/lib/cli/convert-to-user-input.js +5 -1
- package/lib/cli/parse-command-line-arguments.js +13 -1
- package/lib/cli/user-input.d.ts +14 -0
- package/lib/cli/user-input.js +1 -1
- package/lib/commands/flags/flags.d.ts +13 -0
- package/lib/commands/flags/flags.js +30 -0
- package/lib/commands/flags/interactive-handler.d.ts +16 -0
- package/lib/commands/flags/interactive-handler.js +71 -0
- package/lib/commands/flags/operations.d.ts +60 -0
- package/lib/commands/flags/operations.js +421 -0
- package/lib/commands/flags/router.d.ts +18 -0
- package/lib/commands/flags/router.js +60 -0
- package/lib/commands/flags/types.d.ts +12 -0
- package/lib/commands/flags/types.js +12 -0
- package/lib/commands/flags/validator.d.ts +22 -0
- package/lib/commands/flags/validator.js +95 -0
- package/lib/commands/init/init.js +71 -40
- package/lib/commands/language.d.ts +12 -2
- package/lib/commands/language.js +19 -8
- package/lib/index.js +1817 -915
- package/package.json +4 -3
package/README.md
CHANGED
|
@@ -32,6 +32,7 @@ The AWS CDK Toolkit provides the `cdk` command-line interface that can be used t
|
|
|
32
32
|
| [`cdk refactor`](#cdk-refactor) | Moves resources between stacks or within the same stack |
|
|
33
33
|
| [`cdk drift`](#cdk-drift) | Detect drifts in the given CloudFormation stack(s) |
|
|
34
34
|
| [`cdk cli-telemetry`](#cdk-cli-telemetry) | Enable or disable cli telemetry collection |
|
|
35
|
+
| [`cdk flags`](#cdk-flags) | View and modify your feature flag configurations |
|
|
35
36
|
|
|
36
37
|
## Common topics
|
|
37
38
|
|
package/THIRD_PARTY_LICENSES
CHANGED
|
@@ -21883,6 +21883,32 @@ SOFTWARE.
|
|
|
21883
21883
|
|
|
21884
21884
|
|
|
21885
21885
|
|
|
21886
|
+
----------------
|
|
21887
|
+
|
|
21888
|
+
** eventemitter3@4.0.7 - https://www.npmjs.com/package/eventemitter3/v/4.0.7 | MIT
|
|
21889
|
+
The MIT License (MIT)
|
|
21890
|
+
|
|
21891
|
+
Copyright (c) 2014 Arnout Kazemier
|
|
21892
|
+
|
|
21893
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
21894
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
21895
|
+
in the Software without restriction, including without limitation the rights
|
|
21896
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
21897
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
21898
|
+
furnished to do so, subject to the following conditions:
|
|
21899
|
+
|
|
21900
|
+
The above copyright notice and this permission notice shall be included in all
|
|
21901
|
+
copies or substantial portions of the Software.
|
|
21902
|
+
|
|
21903
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
21904
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
21905
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
21906
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
21907
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
21908
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
21909
|
+
SOFTWARE.
|
|
21910
|
+
|
|
21911
|
+
|
|
21886
21912
|
----------------
|
|
21887
21913
|
|
|
21888
21914
|
** fast-deep-equal@3.1.3 - https://www.npmjs.com/package/fast-deep-equal/v/3.1.3 | MIT
|
|
@@ -22639,6 +22665,32 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
|
22639
22665
|
THE SOFTWARE.
|
|
22640
22666
|
|
|
22641
22667
|
|
|
22668
|
+
----------------
|
|
22669
|
+
|
|
22670
|
+
** p-finally@1.0.0 - https://www.npmjs.com/package/p-finally/v/1.0.0 | MIT
|
|
22671
|
+
The MIT License (MIT)
|
|
22672
|
+
|
|
22673
|
+
Copyright (c) Sindre Sorhus <sindresorhus@gmail.com> (sindresorhus.com)
|
|
22674
|
+
|
|
22675
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
22676
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
22677
|
+
in the Software without restriction, including without limitation the rights
|
|
22678
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
22679
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
22680
|
+
furnished to do so, subject to the following conditions:
|
|
22681
|
+
|
|
22682
|
+
The above copyright notice and this permission notice shall be included in
|
|
22683
|
+
all copies or substantial portions of the Software.
|
|
22684
|
+
|
|
22685
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
22686
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
22687
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
22688
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
22689
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
22690
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
22691
|
+
THE SOFTWARE.
|
|
22692
|
+
|
|
22693
|
+
|
|
22642
22694
|
----------------
|
|
22643
22695
|
|
|
22644
22696
|
** p-limit@2.3.0 - https://www.npmjs.com/package/p-limit/v/2.3.0 | MIT
|
|
@@ -22681,6 +22733,34 @@ The above copyright notice and this permission notice shall be included in all c
|
|
|
22681
22733
|
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.
|
|
22682
22734
|
|
|
22683
22735
|
|
|
22736
|
+
----------------
|
|
22737
|
+
|
|
22738
|
+
** p-queue@6.6.2 - https://www.npmjs.com/package/p-queue/v/6.6.2 | MIT
|
|
22739
|
+
MIT License
|
|
22740
|
+
|
|
22741
|
+
Copyright (c) Sindre Sorhus <sindresorhus@gmail.com> (https://sindresorhus.com)
|
|
22742
|
+
|
|
22743
|
+
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:
|
|
22744
|
+
|
|
22745
|
+
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
|
|
22746
|
+
|
|
22747
|
+
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.
|
|
22748
|
+
|
|
22749
|
+
|
|
22750
|
+
----------------
|
|
22751
|
+
|
|
22752
|
+
** p-timeout@3.2.0 - https://www.npmjs.com/package/p-timeout/v/3.2.0 | MIT
|
|
22753
|
+
MIT License
|
|
22754
|
+
|
|
22755
|
+
Copyright (c) Sindre Sorhus <sindresorhus@gmail.com> (sindresorhus.com)
|
|
22756
|
+
|
|
22757
|
+
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:
|
|
22758
|
+
|
|
22759
|
+
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
|
|
22760
|
+
|
|
22761
|
+
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.
|
|
22762
|
+
|
|
22763
|
+
|
|
22684
22764
|
----------------
|
|
22685
22765
|
|
|
22686
22766
|
** p-try@2.2.0 - https://www.npmjs.com/package/p-try/v/2.2.0 | MIT
|
package/build-info.json
CHANGED
package/lib/cli/cdk-toolkit.d.ts
CHANGED
|
@@ -12,7 +12,6 @@ import { type Tag } from '../api/tags';
|
|
|
12
12
|
import { StackActivityProgress } from '../commands/deploy';
|
|
13
13
|
import type { FromScan } from '../commands/migrate';
|
|
14
14
|
import type { CloudAssembly, CloudExecutable, StackSelector } from '../cxapp';
|
|
15
|
-
export declare function markTesting(): void;
|
|
16
15
|
export interface CdkToolkitProps {
|
|
17
16
|
/**
|
|
18
17
|
* The Cloud Executable
|