rds_ssm_connect 1.5.0 → 1.5.2

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 (2) hide show
  1. package/connect.js +1 -1
  2. package/package.json +8 -5
package/connect.js CHANGED
@@ -239,7 +239,7 @@ async function main () {
239
239
 
240
240
  const answers = await inquirer.prompt([
241
241
  {
242
- type: 'list',
242
+ type: 'select',
243
243
  name: 'ENV',
244
244
  message: 'Please select the environment:',
245
245
  choices: ENVS,
package/package.json CHANGED
@@ -1,15 +1,18 @@
1
1
  {
2
2
  "name": "rds_ssm_connect",
3
- "version": "1.5.0",
3
+ "version": "1.5.2",
4
4
  "type": "module",
5
5
  "dependencies": {
6
- "@aws-sdk/client-ec2": "^3.943.0",
7
- "@aws-sdk/client-rds": "^3.943.0",
8
- "@aws-sdk/client-ssm": "^3.943.0",
6
+ "@aws-sdk/client-ec2": "^3.980.0",
7
+ "@aws-sdk/client-rds": "^3.980.0",
8
+ "@aws-sdk/client-ssm": "^3.980.0",
9
9
  "glob": "^13.0.0",
10
- "inquirer": "^13.0.2",
10
+ "inquirer": "^13.2.2",
11
11
  "rimraf": "^6.1.2"
12
12
  },
13
+ "overrides": {
14
+ "fast-xml-parser": "^5.3.4"
15
+ },
13
16
  "bin": {
14
17
  "rds_ssm_connect": "./connect.js"
15
18
  },