@automattic/vip 2.38.0 → 2.38.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.
@@ -50,8 +50,8 @@ const appQuery = `
50
50
  }
51
51
  `;
52
52
  const START_DEPLOY_MUTATION = (0, _graphqlTag.default)`
53
- mutation StartDeploy($input: AppEnvironmentDeployInput) {
54
- startDeploy(input: $input) {
53
+ mutation StartCustomDeploy($input: AppEnvironmentCustomDeployInput) {
54
+ startCustomDeploy(input: $input) {
55
55
  app {
56
56
  id
57
57
  name
@@ -22,6 +22,7 @@ const appQuery = `
22
22
  environments{
23
23
  id
24
24
  appId
25
+ name
25
26
  type
26
27
  uniqueLabel
27
28
  }
@@ -393,9 +393,13 @@ class ExportSQLCommand {
393
393
  this.progressTracker.stepSuccess(this.steps.PREPARE);
394
394
  await (0, _utils.pollUntil)(this.getExportJob.bind(this), EXPORT_SQL_PROGRESS_POLL_INTERVAL, this.isCreated.bind(this));
395
395
  this.progressTracker.stepSuccess(this.steps.CREATE);
396
- const storageConfirmed = await this.progressTracker.handleContinuePrompt(async () => {
397
- return await this.confirmEnoughStorage(await this.getExportJob());
398
- }, 3);
396
+ const storageConfirmed = await this.progressTracker.handleContinuePrompt(async setPromptShown => {
397
+ const status = await this.confirmEnoughStorage(await this.getExportJob());
398
+ if (status.isPromptShown) {
399
+ setPromptShown();
400
+ }
401
+ return status.continue;
402
+ });
399
403
  if (storageConfirmed) {
400
404
  this.progressTracker.stepSuccess(this.steps.CONFIRM_ENOUGH_STORAGE);
401
405
  } else {
@@ -183,6 +183,9 @@ class PhpMyAdminCommand {
183
183
  stack: error.stack
184
184
  });
185
185
  this.stopProgressTracker();
186
+ if (error.graphQLErrors?.find(gqlError => gqlError.message === 'Unauthorized')) {
187
+ exit.withError('You do not have sufficient permission to access phpMyAdmin for this environment.');
188
+ }
186
189
  exit.withError('Failed to enable PhpMyAdmin. Please try again. If the problem persists, please contact support.');
187
190
  }
188
191
  let url;
@@ -77,14 +77,23 @@ class BackupStorageAvailability {
77
77
  const confirmPrompt = new _enquirer.Confirm({
78
78
  message: `We recommend that you have at least ${this.bytesToHuman(storageRequired)} of free space in your machine to download this database backup. Do you still want to continue with downloading the database backup?`
79
79
  });
80
- return await confirmPrompt.run();
80
+ return {
81
+ continue: await confirmPrompt.run(),
82
+ isPromptShown: true
83
+ };
81
84
  }
82
- return true;
85
+ return {
86
+ continue: true,
87
+ isPromptShown: false
88
+ };
83
89
  }
84
90
 
85
91
  // eslint-disable-next-line id-length
86
92
  async validateAndPromptDiskSpaceWarningForDevEnvBackupImport() {
87
93
  let storageAvailableInMainMachinePrompted = false;
94
+
95
+ // there's two prompts, so as long as one prompt is shown, we need to set isPromptShown
96
+ let isPromptShown = false;
88
97
  if (!(await this.isStorageAvailableInMainMachine())) {
89
98
  const storageRequired = this.getStorageRequiredInMainMachine();
90
99
  const storageAvailableInVipPath = this.bytesToHuman(await this.getStorageAvailableInVipPath());
@@ -93,9 +102,13 @@ class BackupStorageAvailability {
93
102
  Do you still want to continue with importing the database backup?
94
103
  `
95
104
  });
105
+ isPromptShown = true;
96
106
  storageAvailableInMainMachinePrompted = await confirmPrompt.run();
97
107
  if (!storageAvailableInMainMachinePrompted) {
98
- return false;
108
+ return {
109
+ continue: false,
110
+ isPromptShown
111
+ };
99
112
  }
100
113
  }
101
114
  try {
@@ -106,16 +119,26 @@ Do you still want to continue with importing the database backup?
106
119
  message: `We recommend that you have at least ${this.bytesToHuman(storageRequired)} of free space in your Docker machine to import this database backup. We estimate that you currently have ${storageAvailableInDockerMachine} of space in your machine.
107
120
  Do you still want to continue with importing the database backup?`
108
121
  });
109
- return await confirmPrompt.run();
122
+ isPromptShown = true;
123
+ return {
124
+ continue: await confirmPrompt.run(),
125
+ isPromptShown
126
+ };
110
127
  }
111
128
  } catch (error) {
112
129
  if (error instanceof _dockerMachineNotFoundError.DockerMachineNotFoundError) {
113
130
  // skip storage available check
114
- return true;
131
+ return {
132
+ continue: true,
133
+ isPromptShown
134
+ };
115
135
  }
116
136
  throw error;
117
137
  }
118
- return true;
138
+ return {
139
+ continue: true,
140
+ isPromptShown
141
+ };
119
142
  }
120
143
  }
121
144
  exports.BackupStorageAvailability = BackupStorageAvailability;
@@ -181,8 +181,14 @@ class ProgressTracker {
181
181
  async handleContinuePrompt(prompt) {
182
182
  this.print();
183
183
  this.stopPrinting();
184
- const returnValue = await prompt();
185
- this.displayFromStep = [...this.getSteps().values()].findIndex(step => step.status === StepStatus.RUNNING);
184
+ let isPromptShown = false;
185
+ const setPromptShown = () => {
186
+ isPromptShown = true;
187
+ };
188
+ const returnValue = await prompt(setPromptShown);
189
+ if (isPromptShown) {
190
+ this.displayFromStep = [...this.getSteps().values()].findIndex(step => step.status === StepStatus.RUNNING);
191
+ }
186
192
  let hasPrintedOnce = false;
187
193
  const printingStartedPromise = new Promise(resolve => {
188
194
  this.startPrinting(() => {
@@ -196,7 +202,9 @@ class ProgressTracker {
196
202
  for (let iteration = 0; iteration < this.stepsFromCaller.size; iteration++) {
197
203
  linesToSkip += _nodeOs.EOL;
198
204
  }
199
- process.stdout.write(linesToSkip);
205
+ if (isPromptShown) {
206
+ process.stdout.write(linesToSkip);
207
+ }
200
208
  hasPrintedOnce = true;
201
209
  resolve();
202
210
  });
@@ -60,8 +60,9 @@ async function getDockerSocket() {
60
60
 
61
61
  // Try the default location
62
62
  paths.push('/var/run/docker.sock');
63
- // Try an alternative location
63
+ // Try alternative locations
64
64
  paths.push((0, _nodePath.join)((0, _nodeOs.homedir)(), '.docker', 'run', 'docker.sock'));
65
+ paths.push((0, _nodePath.join)((0, _nodeOs.homedir)(), '.orbstack', 'run', 'docker.sock'));
65
66
  for (const socketPath of paths) {
66
67
  try {
67
68
  const stats = await (0, _promises.stat)(socketPath);
@@ -1,12 +1,12 @@
1
1
  {
2
2
  "name": "@automattic/vip",
3
- "version": "2.38.0",
3
+ "version": "2.38.2",
4
4
  "lockfileVersion": 2,
5
5
  "requires": true,
6
6
  "packages": {
7
7
  "": {
8
8
  "name": "@automattic/vip",
9
- "version": "2.38.0",
9
+ "version": "2.38.2",
10
10
  "hasInstallScript": true,
11
11
  "license": "MIT",
12
12
  "dependencies": {
@@ -35,7 +35,7 @@
35
35
  "node-fetch": "^2.6.1",
36
36
  "open": "^10.0.0",
37
37
  "proxy-from-env": "^1.1.0",
38
- "semver": "7.5.4",
38
+ "semver": "7.6.0",
39
39
  "shelljs": "^0.8.5",
40
40
  "single-line-log": "1.1.2",
41
41
  "socket.io-client": "^4.5.3",
@@ -106,9 +106,9 @@
106
106
  },
107
107
  "devDependencies": {
108
108
  "@automattic/eslint-plugin-wpvip": "0.9.1",
109
- "@babel/cli": "7.23.4",
110
- "@babel/core": "7.23.7",
111
- "@babel/preset-env": "7.23.8",
109
+ "@babel/cli": "7.23.9",
110
+ "@babel/core": "7.23.9",
111
+ "@babel/preset-env": "7.23.9",
112
112
  "@babel/preset-typescript": "7.23.3",
113
113
  "@jest/globals": "^29.7.0",
114
114
  "@jest/test-sequencer": "^29.7.0",
@@ -132,7 +132,7 @@
132
132
  "dockerode": "^4.0.0",
133
133
  "eslint": "^8.35.0",
134
134
  "jest": "^29.7.0",
135
- "nock": "13.5.0",
135
+ "nock": "13.5.3",
136
136
  "prettier": "npm:wp-prettier@2.8.5",
137
137
  "rimraf": "5.0.5",
138
138
  "typescript": "^5.2.2"
@@ -382,9 +382,9 @@
382
382
  }
383
383
  },
384
384
  "node_modules/@babel/cli": {
385
- "version": "7.23.4",
386
- "resolved": "https://registry.npmjs.org/@babel/cli/-/cli-7.23.4.tgz",
387
- "integrity": "sha512-j3luA9xGKCXVyCa5R7lJvOMM+Kc2JEnAEIgz2ggtjQ/j5YUVgfsg/WsG95bbsgq7YLHuiCOzMnoSasuY16qiCw==",
385
+ "version": "7.23.9",
386
+ "resolved": "https://registry.npmjs.org/@babel/cli/-/cli-7.23.9.tgz",
387
+ "integrity": "sha512-vB1UXmGDNEhcf1jNAHKT9IlYk1R+hehVTLFlCLHBi8gfuHQGP6uRjgXVYU0EVlI/qwAWpstqkBdf2aez3/z/5Q==",
388
388
  "dev": true,
389
389
  "dependencies": {
390
390
  "@jridgewell/trace-mapping": "^0.3.17",
@@ -475,9 +475,9 @@
475
475
  }
476
476
  },
477
477
  "node_modules/@babel/core": {
478
- "version": "7.23.7",
479
- "resolved": "https://registry.npmjs.org/@babel/core/-/core-7.23.7.tgz",
480
- "integrity": "sha512-+UpDgowcmqe36d4NwqvKsyPMlOLNGMsfMmQ5WGCu+siCe3t3dfe9njrzGfdN4qq+bcNUt0+Vw6haRxBOycs4dw==",
478
+ "version": "7.23.9",
479
+ "resolved": "https://registry.npmjs.org/@babel/core/-/core-7.23.9.tgz",
480
+ "integrity": "sha512-5q0175NOjddqpvvzU+kDiSOAk4PfdO6FvwCWoQ6RO7rTzEe8vlo+4HVfcnAREhD4npMs0e9uZypjTwzZPCf/cw==",
481
481
  "dev": true,
482
482
  "dependencies": {
483
483
  "@ampproject/remapping": "^2.2.0",
@@ -485,11 +485,11 @@
485
485
  "@babel/generator": "^7.23.6",
486
486
  "@babel/helper-compilation-targets": "^7.23.6",
487
487
  "@babel/helper-module-transforms": "^7.23.3",
488
- "@babel/helpers": "^7.23.7",
489
- "@babel/parser": "^7.23.6",
490
- "@babel/template": "^7.22.15",
491
- "@babel/traverse": "^7.23.7",
492
- "@babel/types": "^7.23.6",
488
+ "@babel/helpers": "^7.23.9",
489
+ "@babel/parser": "^7.23.9",
490
+ "@babel/template": "^7.23.9",
491
+ "@babel/traverse": "^7.23.9",
492
+ "@babel/types": "^7.23.9",
493
493
  "convert-source-map": "^2.0.0",
494
494
  "debug": "^4.1.0",
495
495
  "gensync": "^1.0.0-beta.2",
@@ -692,9 +692,9 @@
692
692
  }
693
693
  },
694
694
  "node_modules/@babel/helper-define-polyfill-provider": {
695
- "version": "0.4.4",
696
- "resolved": "https://registry.npmjs.org/@babel/helper-define-polyfill-provider/-/helper-define-polyfill-provider-0.4.4.tgz",
697
- "integrity": "sha512-QcJMILQCu2jm5TFPGA3lCpJJTeEP+mqeXooG/NZbg/h5FTFi6V0+99ahlRsW8/kRLyb24LZVCCiclDedhLKcBA==",
695
+ "version": "0.5.0",
696
+ "resolved": "https://registry.npmjs.org/@babel/helper-define-polyfill-provider/-/helper-define-polyfill-provider-0.5.0.tgz",
697
+ "integrity": "sha512-NovQquuQLAQ5HuyjCz7WQP9MjRj7dx++yspwiyUiGl9ZyadHRSql1HZh5ogRd8W8w6YM6EQ/NTB8rgjLt5W65Q==",
698
698
  "dev": true,
699
699
  "dependencies": {
700
700
  "@babel/helper-compilation-targets": "^7.22.6",
@@ -917,14 +917,14 @@
917
917
  }
918
918
  },
919
919
  "node_modules/@babel/helpers": {
920
- "version": "7.23.7",
921
- "resolved": "https://registry.npmjs.org/@babel/helpers/-/helpers-7.23.7.tgz",
922
- "integrity": "sha512-6AMnjCoC8wjqBzDHkuqpa7jAKwvMo4dC+lr/TFBz+ucfulO1XMpDnwWPGBNwClOKZ8h6xn5N81W/R5OrcKtCbQ==",
920
+ "version": "7.23.9",
921
+ "resolved": "https://registry.npmjs.org/@babel/helpers/-/helpers-7.23.9.tgz",
922
+ "integrity": "sha512-87ICKgU5t5SzOT7sBMfCOZQ2rHjRU+Pcb9BoILMYz600W6DkVRLFBPwQ18gwUVvggqXivaUakpnxWQGbpywbBQ==",
923
923
  "dev": true,
924
924
  "dependencies": {
925
- "@babel/template": "^7.22.15",
926
- "@babel/traverse": "^7.23.7",
927
- "@babel/types": "^7.23.6"
925
+ "@babel/template": "^7.23.9",
926
+ "@babel/traverse": "^7.23.9",
927
+ "@babel/types": "^7.23.9"
928
928
  },
929
929
  "engines": {
930
930
  "node": ">=6.9.0"
@@ -959,9 +959,9 @@
959
959
  }
960
960
  },
961
961
  "node_modules/@babel/parser": {
962
- "version": "7.23.6",
963
- "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.23.6.tgz",
964
- "integrity": "sha512-Z2uID7YJ7oNvAI20O9X0bblw7Qqs8Q2hFy0R9tAfnfLkp5MW0UH9eUvnDSnFwKZ0AvgS1ucqR4KzvVHgnke1VQ==",
962
+ "version": "7.23.9",
963
+ "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.23.9.tgz",
964
+ "integrity": "sha512-9tcKgqKbs3xGJ+NtKF2ndOBBLVwPjl1SHxPQkd36r3Dlirw3xWUeGaTbqr7uGZcTaxkVNwc+03SVP7aCdWrTlA==",
965
965
  "dev": true,
966
966
  "bin": {
967
967
  "parser": "bin/babel-parser.js"
@@ -1323,9 +1323,9 @@
1323
1323
  }
1324
1324
  },
1325
1325
  "node_modules/@babel/plugin-transform-async-generator-functions": {
1326
- "version": "7.23.7",
1327
- "resolved": "https://registry.npmjs.org/@babel/plugin-transform-async-generator-functions/-/plugin-transform-async-generator-functions-7.23.7.tgz",
1328
- "integrity": "sha512-PdxEpL71bJp1byMG0va5gwQcXHxuEYC/BgI/e88mGTtohbZN28O5Yit0Plkkm/dBzCF/BxmbNcses1RH1T+urA==",
1326
+ "version": "7.23.9",
1327
+ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-async-generator-functions/-/plugin-transform-async-generator-functions-7.23.9.tgz",
1328
+ "integrity": "sha512-8Q3veQEDGe14dTYuwagbRtwxQDnytyg1JFu4/HwEMETeofocrB0U0ejBJIXoeG/t2oXZ8kzCyI0ZZfbT80VFNQ==",
1329
1329
  "dev": true,
1330
1330
  "dependencies": {
1331
1331
  "@babel/helper-environment-visitor": "^7.22.20",
@@ -1681,9 +1681,9 @@
1681
1681
  }
1682
1682
  },
1683
1683
  "node_modules/@babel/plugin-transform-modules-systemjs": {
1684
- "version": "7.23.3",
1685
- "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-systemjs/-/plugin-transform-modules-systemjs-7.23.3.tgz",
1686
- "integrity": "sha512-ZxyKGTkF9xT9YJuKQRo19ewf3pXpopuYQd8cDXqNzc3mUNbOME0RKMoZxviQk74hwzfQsEe66dE92MaZbdHKNQ==",
1684
+ "version": "7.23.9",
1685
+ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-systemjs/-/plugin-transform-modules-systemjs-7.23.9.tgz",
1686
+ "integrity": "sha512-KDlPRM6sLo4o1FkiSlXoAa8edLXFsKKIda779fbLrvmeuc3itnjCtaO6RrtoaANsIJANj+Vk1zqbZIMhkCAHVw==",
1687
1687
  "dev": true,
1688
1688
  "dependencies": {
1689
1689
  "@babel/helper-hoist-variables": "^7.22.5",
@@ -2098,9 +2098,9 @@
2098
2098
  }
2099
2099
  },
2100
2100
  "node_modules/@babel/preset-env": {
2101
- "version": "7.23.8",
2102
- "resolved": "https://registry.npmjs.org/@babel/preset-env/-/preset-env-7.23.8.tgz",
2103
- "integrity": "sha512-lFlpmkApLkEP6woIKprO6DO60RImpatTQKtz4sUcDjVcK8M8mQ4sZsuxaTMNOZf0sqAq/ReYW1ZBHnOQwKpLWA==",
2101
+ "version": "7.23.9",
2102
+ "resolved": "https://registry.npmjs.org/@babel/preset-env/-/preset-env-7.23.9.tgz",
2103
+ "integrity": "sha512-3kBGTNBBk9DQiPoXYS0g0BYlwTQYUTifqgKTjxUwEUkduRT2QOa0FPGBJ+NROQhGyYO5BuTJwGvBnqKDykac6A==",
2104
2104
  "dev": true,
2105
2105
  "dependencies": {
2106
2106
  "@babel/compat-data": "^7.23.5",
@@ -2130,7 +2130,7 @@
2130
2130
  "@babel/plugin-syntax-top-level-await": "^7.14.5",
2131
2131
  "@babel/plugin-syntax-unicode-sets-regex": "^7.18.6",
2132
2132
  "@babel/plugin-transform-arrow-functions": "^7.23.3",
2133
- "@babel/plugin-transform-async-generator-functions": "^7.23.7",
2133
+ "@babel/plugin-transform-async-generator-functions": "^7.23.9",
2134
2134
  "@babel/plugin-transform-async-to-generator": "^7.23.3",
2135
2135
  "@babel/plugin-transform-block-scoped-functions": "^7.23.3",
2136
2136
  "@babel/plugin-transform-block-scoping": "^7.23.4",
@@ -2152,7 +2152,7 @@
2152
2152
  "@babel/plugin-transform-member-expression-literals": "^7.23.3",
2153
2153
  "@babel/plugin-transform-modules-amd": "^7.23.3",
2154
2154
  "@babel/plugin-transform-modules-commonjs": "^7.23.3",
2155
- "@babel/plugin-transform-modules-systemjs": "^7.23.3",
2155
+ "@babel/plugin-transform-modules-systemjs": "^7.23.9",
2156
2156
  "@babel/plugin-transform-modules-umd": "^7.23.3",
2157
2157
  "@babel/plugin-transform-named-capturing-groups-regex": "^7.22.5",
2158
2158
  "@babel/plugin-transform-new-target": "^7.23.3",
@@ -2178,9 +2178,9 @@
2178
2178
  "@babel/plugin-transform-unicode-regex": "^7.23.3",
2179
2179
  "@babel/plugin-transform-unicode-sets-regex": "^7.23.3",
2180
2180
  "@babel/preset-modules": "0.1.6-no-external-plugins",
2181
- "babel-plugin-polyfill-corejs2": "^0.4.7",
2182
- "babel-plugin-polyfill-corejs3": "^0.8.7",
2183
- "babel-plugin-polyfill-regenerator": "^0.5.4",
2181
+ "babel-plugin-polyfill-corejs2": "^0.4.8",
2182
+ "babel-plugin-polyfill-corejs3": "^0.9.0",
2183
+ "babel-plugin-polyfill-regenerator": "^0.5.5",
2184
2184
  "core-js-compat": "^3.31.0",
2185
2185
  "semver": "^6.3.1"
2186
2186
  },
@@ -2252,23 +2252,23 @@
2252
2252
  }
2253
2253
  },
2254
2254
  "node_modules/@babel/template": {
2255
- "version": "7.22.15",
2256
- "resolved": "https://registry.npmjs.org/@babel/template/-/template-7.22.15.tgz",
2257
- "integrity": "sha512-QPErUVm4uyJa60rkI73qneDacvdvzxshT3kksGqlGWYdOTIUOwJ7RDUL8sGqslY1uXWSL6xMFKEXDS3ox2uF0w==",
2255
+ "version": "7.23.9",
2256
+ "resolved": "https://registry.npmjs.org/@babel/template/-/template-7.23.9.tgz",
2257
+ "integrity": "sha512-+xrD2BWLpvHKNmX2QbpdpsBaWnRxahMwJjO+KZk2JOElj5nSmKezyS1B4u+QbHMTX69t4ukm6hh9lsYQ7GHCKA==",
2258
2258
  "dev": true,
2259
2259
  "dependencies": {
2260
- "@babel/code-frame": "^7.22.13",
2261
- "@babel/parser": "^7.22.15",
2262
- "@babel/types": "^7.22.15"
2260
+ "@babel/code-frame": "^7.23.5",
2261
+ "@babel/parser": "^7.23.9",
2262
+ "@babel/types": "^7.23.9"
2263
2263
  },
2264
2264
  "engines": {
2265
2265
  "node": ">=6.9.0"
2266
2266
  }
2267
2267
  },
2268
2268
  "node_modules/@babel/traverse": {
2269
- "version": "7.23.7",
2270
- "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.23.7.tgz",
2271
- "integrity": "sha512-tY3mM8rH9jM0YHFGyfC0/xf+SB5eKUu7HPj7/k3fpi9dAlsMc5YbQvDi0Sh2QTPXqMhyaAtzAr807TIyfQrmyg==",
2269
+ "version": "7.23.9",
2270
+ "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.23.9.tgz",
2271
+ "integrity": "sha512-I/4UJ9vs90OkBtY6iiiTORVMyIhJ4kAVmsKo9KFc8UOxMeUfi2hvtIBsET5u9GizXE6/GFSuKCTNfgCswuEjRg==",
2272
2272
  "dev": true,
2273
2273
  "dependencies": {
2274
2274
  "@babel/code-frame": "^7.23.5",
@@ -2277,8 +2277,8 @@
2277
2277
  "@babel/helper-function-name": "^7.23.0",
2278
2278
  "@babel/helper-hoist-variables": "^7.22.5",
2279
2279
  "@babel/helper-split-export-declaration": "^7.22.6",
2280
- "@babel/parser": "^7.23.6",
2281
- "@babel/types": "^7.23.6",
2280
+ "@babel/parser": "^7.23.9",
2281
+ "@babel/types": "^7.23.9",
2282
2282
  "debug": "^4.3.1",
2283
2283
  "globals": "^11.1.0"
2284
2284
  },
@@ -2287,9 +2287,9 @@
2287
2287
  }
2288
2288
  },
2289
2289
  "node_modules/@babel/types": {
2290
- "version": "7.23.6",
2291
- "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.23.6.tgz",
2292
- "integrity": "sha512-+uarb83brBzPKN38NX1MkB6vb6+mwvR6amUulqAE7ccQw1pEl+bCia9TbdG1lsnFP7lZySvUn37CHyXQdfTwzg==",
2290
+ "version": "7.23.9",
2291
+ "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.23.9.tgz",
2292
+ "integrity": "sha512-dQjSq/7HaSjRM43FFGnv5keM2HsxpmyV1PfaSVm0nzzjwwTmjOe6J4bC8e3+pTEIgHaHj+1ZlLThRJ2auc/w1Q==",
2293
2293
  "dev": true,
2294
2294
  "dependencies": {
2295
2295
  "@babel/helper-string-parser": "^7.23.4",
@@ -2409,9 +2409,9 @@
2409
2409
  }
2410
2410
  },
2411
2411
  "node_modules/@eslint/js": {
2412
- "version": "8.56.0",
2413
- "resolved": "https://registry.npmjs.org/@eslint/js/-/js-8.56.0.tgz",
2414
- "integrity": "sha512-gMsVel9D7f2HLkBma9VbtzZRehRogVRfbr++f06nL2vnCGCNlzOD+/MUov/F4p8myyAHspEhVobgjpX64q5m6A==",
2412
+ "version": "8.57.0",
2413
+ "resolved": "https://registry.npmjs.org/@eslint/js/-/js-8.57.0.tgz",
2414
+ "integrity": "sha512-Ys+3g2TaW7gADOJzPt83SJtCDhMjndcDMFVQ/Tj9iA1BfJzFKD9mAUXT3OenpuPHbI6P/myECxRJrofUsDx/5g==",
2415
2415
  "dev": true,
2416
2416
  "engines": {
2417
2417
  "node": "^12.22.0 || ^14.17.0 || >=16.0.0"
@@ -2426,13 +2426,13 @@
2426
2426
  }
2427
2427
  },
2428
2428
  "node_modules/@humanwhocodes/config-array": {
2429
- "version": "0.11.13",
2430
- "resolved": "https://registry.npmjs.org/@humanwhocodes/config-array/-/config-array-0.11.13.tgz",
2431
- "integrity": "sha512-JSBDMiDKSzQVngfRjOdFXgFfklaXI4K9nLF49Auh21lmBWRLIK3+xTErTWD4KU54pb6coM6ESE7Awz/FNU3zgQ==",
2429
+ "version": "0.11.14",
2430
+ "resolved": "https://registry.npmjs.org/@humanwhocodes/config-array/-/config-array-0.11.14.tgz",
2431
+ "integrity": "sha512-3T8LkOmg45BV5FICb15QQMsyUSWrQ8AygVfC7ZG32zOalnqrilm018ZVCw0eapXux8FtA33q8PSRSstjee3jSg==",
2432
2432
  "dev": true,
2433
2433
  "dependencies": {
2434
- "@humanwhocodes/object-schema": "^2.0.1",
2435
- "debug": "^4.1.1",
2434
+ "@humanwhocodes/object-schema": "^2.0.2",
2435
+ "debug": "^4.3.1",
2436
2436
  "minimatch": "^3.0.5"
2437
2437
  },
2438
2438
  "engines": {
@@ -2453,9 +2453,9 @@
2453
2453
  }
2454
2454
  },
2455
2455
  "node_modules/@humanwhocodes/object-schema": {
2456
- "version": "2.0.1",
2457
- "resolved": "https://registry.npmjs.org/@humanwhocodes/object-schema/-/object-schema-2.0.1.tgz",
2458
- "integrity": "sha512-dvuCeX5fC9dXgJn9t+X5atfmgQAzUOWqS1254Gh0m6i8wKd10ebXkfNKiRK+1GWi/yTvvLDHpoxLr0xxxeslWw==",
2456
+ "version": "2.0.2",
2457
+ "resolved": "https://registry.npmjs.org/@humanwhocodes/object-schema/-/object-schema-2.0.2.tgz",
2458
+ "integrity": "sha512-6EwiSjwWYP7pTckG6I5eyFANjPhmPjUX9JRLUSfNPC7FX7zK9gyZAfUEaECL6ALTpGX5AjnBq3C9XmVWPitNpw==",
2459
2459
  "dev": true
2460
2460
  },
2461
2461
  "node_modules/@isaacs/cliui": {
@@ -3100,17 +3100,17 @@
3100
3100
  }
3101
3101
  },
3102
3102
  "node_modules/@json2csv/formatters": {
3103
- "version": "7.0.5",
3104
- "resolved": "https://registry.npmjs.org/@json2csv/formatters/-/formatters-7.0.5.tgz",
3105
- "integrity": "sha512-ihONIB8S1ZG0ji5nDFpfCUPphVLnEKlLxDmDqRMjmPhzw8WCvyLX2trIrNHCf1t2IV8rx+1tNYaDb1dh87jHgA=="
3103
+ "version": "7.0.6",
3104
+ "resolved": "https://registry.npmjs.org/@json2csv/formatters/-/formatters-7.0.6.tgz",
3105
+ "integrity": "sha512-hjIk1H1TR4ydU5ntIENEPgoMGW+Q7mJ+537sDFDbsk+Y3EPl2i4NfFVjw0NJRgT+ihm8X30M67mA8AS6jPidSA=="
3106
3106
  },
3107
3107
  "node_modules/@json2csv/plainjs": {
3108
- "version": "7.0.5",
3109
- "resolved": "https://registry.npmjs.org/@json2csv/plainjs/-/plainjs-7.0.5.tgz",
3110
- "integrity": "sha512-iJsYEzgRZUhRb8LltCeuBQyexQVUbovRZFF73Lo0iIvi5SUWsfXGTtbriIROsOKgfZPtYxmkZV+FYlsnBu9ybQ==",
3108
+ "version": "7.0.6",
3109
+ "resolved": "https://registry.npmjs.org/@json2csv/plainjs/-/plainjs-7.0.6.tgz",
3110
+ "integrity": "sha512-4Md7RPDCSYpmW1HWIpWBOqCd4vWfIqm53S3e/uzQ62iGi7L3r34fK/8nhOMEe+/eVfCx8+gdSCt1d74SlacQHw==",
3111
3111
  "dependencies": {
3112
- "@json2csv/formatters": "^7.0.5",
3113
- "@streamparser/json": "^0.0.19"
3112
+ "@json2csv/formatters": "^7.0.6",
3113
+ "@streamparser/json": "^0.0.20"
3114
3114
  }
3115
3115
  },
3116
3116
  "node_modules/@lando/compose": {
@@ -3647,9 +3647,9 @@
3647
3647
  "integrity": "sha512-+9jVqKhRSpsc591z5vX+X5Yyw+he/HCB4iQ/RYxw35CEPaY1gnsNE43nf9n9AaYjAQrTiI/mOwKUKdUs9vf7Xg=="
3648
3648
  },
3649
3649
  "node_modules/@streamparser/json": {
3650
- "version": "0.0.19",
3651
- "resolved": "https://registry.npmjs.org/@streamparser/json/-/json-0.0.19.tgz",
3652
- "integrity": "sha512-VTxtZGME6ZSWNCSjZ0Zd2LNNodx62XvmARb/liHIwGlInuuvoDzioLuRP8ajV8iLBknsTrsqpRDGlvzKSzpNEw=="
3650
+ "version": "0.0.20",
3651
+ "resolved": "https://registry.npmjs.org/@streamparser/json/-/json-0.0.20.tgz",
3652
+ "integrity": "sha512-VqAAkydywPpkw63WQhPVKCD3SdwXuihCUVZbbiY3SfSTGQyHmwRoq27y4dmJdZuJwd5JIlQoMPyGvMbUPY0RKQ=="
3653
3653
  },
3654
3654
  "node_modules/@szmarczak/http-timer": {
3655
3655
  "version": "5.0.1",
@@ -3751,9 +3751,9 @@
3751
3751
  }
3752
3752
  },
3753
3753
  "node_modules/@types/dockerode": {
3754
- "version": "3.3.23",
3755
- "resolved": "https://registry.npmjs.org/@types/dockerode/-/dockerode-3.3.23.tgz",
3756
- "integrity": "sha512-Lz5J+NFgZS4cEVhquwjIGH4oQwlVn2h7LXD3boitujBnzOE5o7s9H8hchEjoDK2SlRsJTogdKnQeiJgPPKLIEw==",
3754
+ "version": "3.3.24",
3755
+ "resolved": "https://registry.npmjs.org/@types/dockerode/-/dockerode-3.3.24.tgz",
3756
+ "integrity": "sha512-679y69OYusf7Fr2HtdjXPUF6hnHxSA9K4EsuagsMuPno/XpJHjXxCOy2I5YL8POnWbzjsQAi0pyKIYM9HSpQog==",
3757
3757
  "dev": true,
3758
3758
  "dependencies": {
3759
3759
  "@types/docker-modem": "*",
@@ -3805,9 +3805,9 @@
3805
3805
  }
3806
3806
  },
3807
3807
  "node_modules/@types/jest": {
3808
- "version": "29.5.11",
3809
- "resolved": "https://registry.npmjs.org/@types/jest/-/jest-29.5.11.tgz",
3810
- "integrity": "sha512-S2mHmYIVe13vrm6q4kN6fLYYAka15ALQki/vgDC3mIukEOx8WJlv0kQPM+d4w8Gp6u0uSdKND04IlTXBv0rwnQ==",
3808
+ "version": "29.5.12",
3809
+ "resolved": "https://registry.npmjs.org/@types/jest/-/jest-29.5.12.tgz",
3810
+ "integrity": "sha512-eDC8bTvT/QhYdxJAulQikueigY5AsdBRH2yDKW3yveW7svY3+DzN84/2NUgkw10RTiJbWqZrTtoGVdYlvFJdLw==",
3811
3811
  "dev": true,
3812
3812
  "dependencies": {
3813
3813
  "expect": "^29.0.0",
@@ -3853,9 +3853,9 @@
3853
3853
  "dev": true
3854
3854
  },
3855
3855
  "node_modules/@types/node": {
3856
- "version": "18.19.9",
3857
- "resolved": "https://registry.npmjs.org/@types/node/-/node-18.19.9.tgz",
3858
- "integrity": "sha512-oZFKlC8l5YtzGQNT4zC2PiSSKzQVZ8bAwwd+EYdPLtyk0nSEq6O16SkK+rkkT2eflDAbormJgEF3QnH3oDrTSw==",
3856
+ "version": "18.19.18",
3857
+ "resolved": "https://registry.npmjs.org/@types/node/-/node-18.19.18.tgz",
3858
+ "integrity": "sha512-80CP7B8y4PzZF0GWx15/gVWRrB5y/bIjNI84NK3cmQJu0WZwvmj2WMA5LcofQFVfLqqCSp545+U2LsrVzX36Zg==",
3859
3859
  "dependencies": {
3860
3860
  "undici-types": "~5.26.4"
3861
3861
  }
@@ -3880,9 +3880,9 @@
3880
3880
  }
3881
3881
  },
3882
3882
  "node_modules/@types/semver": {
3883
- "version": "7.5.6",
3884
- "resolved": "https://registry.npmjs.org/@types/semver/-/semver-7.5.6.tgz",
3885
- "integrity": "sha512-dn1l8LaMea/IjDoHNd9J52uBbInB796CDffS6VdIxvqYCPSG0V0DzHp76GpaWnlhg88uYyPbXCDIowa86ybd5A==",
3883
+ "version": "7.5.8",
3884
+ "resolved": "https://registry.npmjs.org/@types/semver/-/semver-7.5.8.tgz",
3885
+ "integrity": "sha512-I8EUhyrgfLrcTkzV3TSsGyl1tSuPrEDzr0yd5m90UgNxQkyDXULk3b6MlQqTCpZpNtWe1K0hzclnZkTcLBe2UQ==",
3886
3886
  "dev": true
3887
3887
  },
3888
3888
  "node_modules/@types/shelljs": {
@@ -3942,9 +3942,9 @@
3942
3942
  }
3943
3943
  },
3944
3944
  "node_modules/@types/uuid": {
3945
- "version": "9.0.7",
3946
- "resolved": "https://registry.npmjs.org/@types/uuid/-/uuid-9.0.7.tgz",
3947
- "integrity": "sha512-WUtIVRUZ9i5dYXefDEAI7sh9/O7jGvHg7Df/5O/gtH3Yabe5odI3UWopVR1qbPXQtvOxWu3mM4XxlYeZtMWF4g==",
3945
+ "version": "9.0.8",
3946
+ "resolved": "https://registry.npmjs.org/@types/uuid/-/uuid-9.0.8.tgz",
3947
+ "integrity": "sha512-jg+97EGIcY9AGHJJRaaPVgetKDsrTgbRjQ5Msgjh/DQKEFl0DtyRr/VCOyD1T2R1MNeWPK/u7JoGhlDZnKBAfA==",
3948
3948
  "dev": true
3949
3949
  },
3950
3950
  "node_modules/@types/xml2js": {
@@ -4677,13 +4677,13 @@
4677
4677
  }
4678
4678
  },
4679
4679
  "node_modules/babel-plugin-polyfill-corejs2": {
4680
- "version": "0.4.7",
4681
- "resolved": "https://registry.npmjs.org/babel-plugin-polyfill-corejs2/-/babel-plugin-polyfill-corejs2-0.4.7.tgz",
4682
- "integrity": "sha512-LidDk/tEGDfuHW2DWh/Hgo4rmnw3cduK6ZkOI1NPFceSK3n/yAGeOsNT7FLnSGHkXj3RHGSEVkN3FsCTY6w2CQ==",
4680
+ "version": "0.4.8",
4681
+ "resolved": "https://registry.npmjs.org/babel-plugin-polyfill-corejs2/-/babel-plugin-polyfill-corejs2-0.4.8.tgz",
4682
+ "integrity": "sha512-OtIuQfafSzpo/LhnJaykc0R/MMnuLSSVjVYy9mHArIZ9qTCSZ6TpWCuEKZYVoN//t8HqBNScHrOtCrIK5IaGLg==",
4683
4683
  "dev": true,
4684
4684
  "dependencies": {
4685
4685
  "@babel/compat-data": "^7.22.6",
4686
- "@babel/helper-define-polyfill-provider": "^0.4.4",
4686
+ "@babel/helper-define-polyfill-provider": "^0.5.0",
4687
4687
  "semver": "^6.3.1"
4688
4688
  },
4689
4689
  "peerDependencies": {
@@ -4700,25 +4700,25 @@
4700
4700
  }
4701
4701
  },
4702
4702
  "node_modules/babel-plugin-polyfill-corejs3": {
4703
- "version": "0.8.7",
4704
- "resolved": "https://registry.npmjs.org/babel-plugin-polyfill-corejs3/-/babel-plugin-polyfill-corejs3-0.8.7.tgz",
4705
- "integrity": "sha512-KyDvZYxAzkC0Aj2dAPyDzi2Ym15e5JKZSK+maI7NAwSqofvuFglbSsxE7wUOvTg9oFVnHMzVzBKcqEb4PJgtOA==",
4703
+ "version": "0.9.0",
4704
+ "resolved": "https://registry.npmjs.org/babel-plugin-polyfill-corejs3/-/babel-plugin-polyfill-corejs3-0.9.0.tgz",
4705
+ "integrity": "sha512-7nZPG1uzK2Ymhy/NbaOWTg3uibM2BmGASS4vHS4szRZAIR8R6GwA/xAujpdrXU5iyklrimWnLWU+BLF9suPTqg==",
4706
4706
  "dev": true,
4707
4707
  "dependencies": {
4708
- "@babel/helper-define-polyfill-provider": "^0.4.4",
4709
- "core-js-compat": "^3.33.1"
4708
+ "@babel/helper-define-polyfill-provider": "^0.5.0",
4709
+ "core-js-compat": "^3.34.0"
4710
4710
  },
4711
4711
  "peerDependencies": {
4712
4712
  "@babel/core": "^7.4.0 || ^8.0.0-0 <8.0.0"
4713
4713
  }
4714
4714
  },
4715
4715
  "node_modules/babel-plugin-polyfill-regenerator": {
4716
- "version": "0.5.4",
4717
- "resolved": "https://registry.npmjs.org/babel-plugin-polyfill-regenerator/-/babel-plugin-polyfill-regenerator-0.5.4.tgz",
4718
- "integrity": "sha512-S/x2iOCvDaCASLYsOOgWOq4bCfKYVqvO/uxjkaYyZ3rVsVE3CeAI/c84NpyuBBymEgNvHgjEot3a9/Z/kXvqsg==",
4716
+ "version": "0.5.5",
4717
+ "resolved": "https://registry.npmjs.org/babel-plugin-polyfill-regenerator/-/babel-plugin-polyfill-regenerator-0.5.5.tgz",
4718
+ "integrity": "sha512-OJGYZlhLqBh2DDHeqAxWB1XIvr49CxiJ2gIt61/PU55CQK4Z58OzMqjDe1zwQdQk+rBYsRc+1rJmdajM3gimHg==",
4719
4719
  "dev": true,
4720
4720
  "dependencies": {
4721
- "@babel/helper-define-polyfill-provider": "^0.4.4"
4721
+ "@babel/helper-define-polyfill-provider": "^0.5.0"
4722
4722
  },
4723
4723
  "peerDependencies": {
4724
4724
  "@babel/core": "^7.4.0 || ^8.0.0-0 <8.0.0"
@@ -5691,9 +5691,9 @@
5691
5691
  }
5692
5692
  },
5693
5693
  "node_modules/core-js-compat": {
5694
- "version": "3.35.0",
5695
- "resolved": "https://registry.npmjs.org/core-js-compat/-/core-js-compat-3.35.0.tgz",
5696
- "integrity": "sha512-5blwFAddknKeNgsjBzilkdQ0+YK8L1PfqPYq40NOYMYFSS38qj+hpTcLLWwpIwA2A5bje/x5jmVn2tzUMg9IVw==",
5694
+ "version": "3.35.1",
5695
+ "resolved": "https://registry.npmjs.org/core-js-compat/-/core-js-compat-3.35.1.tgz",
5696
+ "integrity": "sha512-sftHa5qUJY3rs9Zht1WEnmkvXputCyDBczPnr7QDgL8n3qrF3CMXY4VPSYtOLLiOUJcah2WNXREd48iOl6mQIw==",
5697
5697
  "dev": true,
5698
5698
  "dependencies": {
5699
5699
  "browserslist": "^4.22.2"
@@ -6356,16 +6356,16 @@
6356
6356
  }
6357
6357
  },
6358
6358
  "node_modules/eslint": {
6359
- "version": "8.56.0",
6360
- "resolved": "https://registry.npmjs.org/eslint/-/eslint-8.56.0.tgz",
6361
- "integrity": "sha512-Go19xM6T9puCOWntie1/P997aXxFsOi37JIHRWI514Hc6ZnaHGKY9xFhrU65RT6CcBEzZoGG1e6Nq+DT04ZtZQ==",
6359
+ "version": "8.57.0",
6360
+ "resolved": "https://registry.npmjs.org/eslint/-/eslint-8.57.0.tgz",
6361
+ "integrity": "sha512-dZ6+mexnaTIbSBZWgou51U6OmzIhYM2VcNdtiTtI7qPNZm35Akpr0f6vtw3w1Kmn5PYo+tZVfh13WrhpS6oLqQ==",
6362
6362
  "dev": true,
6363
6363
  "dependencies": {
6364
6364
  "@eslint-community/eslint-utils": "^4.2.0",
6365
6365
  "@eslint-community/regexpp": "^4.6.1",
6366
6366
  "@eslint/eslintrc": "^2.1.4",
6367
- "@eslint/js": "8.56.0",
6368
- "@humanwhocodes/config-array": "^0.11.13",
6367
+ "@eslint/js": "8.57.0",
6368
+ "@humanwhocodes/config-array": "^0.11.14",
6369
6369
  "@humanwhocodes/module-importer": "^1.0.1",
6370
6370
  "@nodelib/fs.walk": "^1.2.8",
6371
6371
  "@ungap/structured-clone": "^1.2.0",
@@ -10496,9 +10496,9 @@
10496
10496
  "dev": true
10497
10497
  },
10498
10498
  "node_modules/nock": {
10499
- "version": "13.5.0",
10500
- "resolved": "https://registry.npmjs.org/nock/-/nock-13.5.0.tgz",
10501
- "integrity": "sha512-9hc1eCS2HtOz+sE9W7JQw/tXJktg0zoPSu48s/pYe73e25JW9ywiowbqnUSd7iZPeVawLcVpPZeZS312fwSY+g==",
10499
+ "version": "13.5.3",
10500
+ "resolved": "https://registry.npmjs.org/nock/-/nock-13.5.3.tgz",
10501
+ "integrity": "sha512-2NlGmHIK2rTeyy7UaY1ZNg0YZfEJMxghXgZi0b4DBsUyoDNTTxZeCSG1nmirAWF44RkkoV8NnegLVQijgVapNQ==",
10502
10502
  "dev": true,
10503
10503
  "dependencies": {
10504
10504
  "debug": "^4.1.0",
@@ -10792,9 +10792,9 @@
10792
10792
  }
10793
10793
  },
10794
10794
  "node_modules/open": {
10795
- "version": "10.0.3",
10796
- "resolved": "https://registry.npmjs.org/open/-/open-10.0.3.tgz",
10797
- "integrity": "sha512-dtbI5oW7987hwC9qjJTyABldTaa19SuyJse1QboWv3b0qCcrrLNVDqBx1XgELAjh9QTVQaP/C5b1nhQebd1H2A==",
10795
+ "version": "10.0.4",
10796
+ "resolved": "https://registry.npmjs.org/open/-/open-10.0.4.tgz",
10797
+ "integrity": "sha512-oujJ/FFr7ra6/7gJuQ4ZJJ8Gf2VHM0J3J/W7IvH++zaqEzacWVxzK++NiVY5NLHTTj7u/jNH5H3Ei9biL31Lng==",
10798
10798
  "dependencies": {
10799
10799
  "default-browser": "^5.2.1",
10800
10800
  "define-lazy-prop": "^3.0.0",
@@ -11757,9 +11757,9 @@
11757
11757
  "integrity": "sha512-NqVDv9TpANUjFm0N8uM5GxL36UgKi9/atZw+x7YFnQ8ckwFGKrl4xX4yWtrey3UJm5nP1kUbnYgLopqWNSRhWw=="
11758
11758
  },
11759
11759
  "node_modules/semver": {
11760
- "version": "7.5.4",
11761
- "resolved": "https://registry.npmjs.org/semver/-/semver-7.5.4.tgz",
11762
- "integrity": "sha512-1bCSESV6Pv+i21Hvpxp3Dx+pSD8lIPt8uVjRrxAUt/nbswYc+tK6Y2btiULjd4+fnq15PX+nqQDC7Oft7WkwcA==",
11760
+ "version": "7.6.0",
11761
+ "resolved": "https://registry.npmjs.org/semver/-/semver-7.6.0.tgz",
11762
+ "integrity": "sha512-EnwXhrlwXMk9gKu5/flx5sv/an57AkRplG3hTK68W7FRDN+k+OWBj65M7719OkA82XLBxrcX0KSHj+X5COhOVg==",
11763
11763
  "dependencies": {
11764
11764
  "lru-cache": "^6.0.0"
11765
11765
  },
@@ -13800,9 +13800,9 @@
13800
13800
  }
13801
13801
  },
13802
13802
  "@babel/cli": {
13803
- "version": "7.23.4",
13804
- "resolved": "https://registry.npmjs.org/@babel/cli/-/cli-7.23.4.tgz",
13805
- "integrity": "sha512-j3luA9xGKCXVyCa5R7lJvOMM+Kc2JEnAEIgz2ggtjQ/j5YUVgfsg/WsG95bbsgq7YLHuiCOzMnoSasuY16qiCw==",
13803
+ "version": "7.23.9",
13804
+ "resolved": "https://registry.npmjs.org/@babel/cli/-/cli-7.23.9.tgz",
13805
+ "integrity": "sha512-vB1UXmGDNEhcf1jNAHKT9IlYk1R+hehVTLFlCLHBi8gfuHQGP6uRjgXVYU0EVlI/qwAWpstqkBdf2aez3/z/5Q==",
13806
13806
  "dev": true,
13807
13807
  "requires": {
13808
13808
  "@jridgewell/trace-mapping": "^0.3.17",
@@ -13870,9 +13870,9 @@
13870
13870
  "dev": true
13871
13871
  },
13872
13872
  "@babel/core": {
13873
- "version": "7.23.7",
13874
- "resolved": "https://registry.npmjs.org/@babel/core/-/core-7.23.7.tgz",
13875
- "integrity": "sha512-+UpDgowcmqe36d4NwqvKsyPMlOLNGMsfMmQ5WGCu+siCe3t3dfe9njrzGfdN4qq+bcNUt0+Vw6haRxBOycs4dw==",
13873
+ "version": "7.23.9",
13874
+ "resolved": "https://registry.npmjs.org/@babel/core/-/core-7.23.9.tgz",
13875
+ "integrity": "sha512-5q0175NOjddqpvvzU+kDiSOAk4PfdO6FvwCWoQ6RO7rTzEe8vlo+4HVfcnAREhD4npMs0e9uZypjTwzZPCf/cw==",
13876
13876
  "dev": true,
13877
13877
  "requires": {
13878
13878
  "@ampproject/remapping": "^2.2.0",
@@ -13880,11 +13880,11 @@
13880
13880
  "@babel/generator": "^7.23.6",
13881
13881
  "@babel/helper-compilation-targets": "^7.23.6",
13882
13882
  "@babel/helper-module-transforms": "^7.23.3",
13883
- "@babel/helpers": "^7.23.7",
13884
- "@babel/parser": "^7.23.6",
13885
- "@babel/template": "^7.22.15",
13886
- "@babel/traverse": "^7.23.7",
13887
- "@babel/types": "^7.23.6",
13883
+ "@babel/helpers": "^7.23.9",
13884
+ "@babel/parser": "^7.23.9",
13885
+ "@babel/template": "^7.23.9",
13886
+ "@babel/traverse": "^7.23.9",
13887
+ "@babel/types": "^7.23.9",
13888
13888
  "convert-source-map": "^2.0.0",
13889
13889
  "debug": "^4.1.0",
13890
13890
  "gensync": "^1.0.0-beta.2",
@@ -14040,9 +14040,9 @@
14040
14040
  }
14041
14041
  },
14042
14042
  "@babel/helper-define-polyfill-provider": {
14043
- "version": "0.4.4",
14044
- "resolved": "https://registry.npmjs.org/@babel/helper-define-polyfill-provider/-/helper-define-polyfill-provider-0.4.4.tgz",
14045
- "integrity": "sha512-QcJMILQCu2jm5TFPGA3lCpJJTeEP+mqeXooG/NZbg/h5FTFi6V0+99ahlRsW8/kRLyb24LZVCCiclDedhLKcBA==",
14043
+ "version": "0.5.0",
14044
+ "resolved": "https://registry.npmjs.org/@babel/helper-define-polyfill-provider/-/helper-define-polyfill-provider-0.5.0.tgz",
14045
+ "integrity": "sha512-NovQquuQLAQ5HuyjCz7WQP9MjRj7dx++yspwiyUiGl9ZyadHRSql1HZh5ogRd8W8w6YM6EQ/NTB8rgjLt5W65Q==",
14046
14046
  "dev": true,
14047
14047
  "requires": {
14048
14048
  "@babel/helper-compilation-targets": "^7.22.6",
@@ -14202,14 +14202,14 @@
14202
14202
  }
14203
14203
  },
14204
14204
  "@babel/helpers": {
14205
- "version": "7.23.7",
14206
- "resolved": "https://registry.npmjs.org/@babel/helpers/-/helpers-7.23.7.tgz",
14207
- "integrity": "sha512-6AMnjCoC8wjqBzDHkuqpa7jAKwvMo4dC+lr/TFBz+ucfulO1XMpDnwWPGBNwClOKZ8h6xn5N81W/R5OrcKtCbQ==",
14205
+ "version": "7.23.9",
14206
+ "resolved": "https://registry.npmjs.org/@babel/helpers/-/helpers-7.23.9.tgz",
14207
+ "integrity": "sha512-87ICKgU5t5SzOT7sBMfCOZQ2rHjRU+Pcb9BoILMYz600W6DkVRLFBPwQ18gwUVvggqXivaUakpnxWQGbpywbBQ==",
14208
14208
  "dev": true,
14209
14209
  "requires": {
14210
- "@babel/template": "^7.22.15",
14211
- "@babel/traverse": "^7.23.7",
14212
- "@babel/types": "^7.23.6"
14210
+ "@babel/template": "^7.23.9",
14211
+ "@babel/traverse": "^7.23.9",
14212
+ "@babel/types": "^7.23.9"
14213
14213
  }
14214
14214
  },
14215
14215
  "@babel/highlight": {
@@ -14237,9 +14237,9 @@
14237
14237
  }
14238
14238
  },
14239
14239
  "@babel/parser": {
14240
- "version": "7.23.6",
14241
- "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.23.6.tgz",
14242
- "integrity": "sha512-Z2uID7YJ7oNvAI20O9X0bblw7Qqs8Q2hFy0R9tAfnfLkp5MW0UH9eUvnDSnFwKZ0AvgS1ucqR4KzvVHgnke1VQ==",
14240
+ "version": "7.23.9",
14241
+ "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.23.9.tgz",
14242
+ "integrity": "sha512-9tcKgqKbs3xGJ+NtKF2ndOBBLVwPjl1SHxPQkd36r3Dlirw3xWUeGaTbqr7uGZcTaxkVNwc+03SVP7aCdWrTlA==",
14243
14243
  "dev": true
14244
14244
  },
14245
14245
  "@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression": {
@@ -14479,9 +14479,9 @@
14479
14479
  }
14480
14480
  },
14481
14481
  "@babel/plugin-transform-async-generator-functions": {
14482
- "version": "7.23.7",
14483
- "resolved": "https://registry.npmjs.org/@babel/plugin-transform-async-generator-functions/-/plugin-transform-async-generator-functions-7.23.7.tgz",
14484
- "integrity": "sha512-PdxEpL71bJp1byMG0va5gwQcXHxuEYC/BgI/e88mGTtohbZN28O5Yit0Plkkm/dBzCF/BxmbNcses1RH1T+urA==",
14482
+ "version": "7.23.9",
14483
+ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-async-generator-functions/-/plugin-transform-async-generator-functions-7.23.9.tgz",
14484
+ "integrity": "sha512-8Q3veQEDGe14dTYuwagbRtwxQDnytyg1JFu4/HwEMETeofocrB0U0ejBJIXoeG/t2oXZ8kzCyI0ZZfbT80VFNQ==",
14485
14485
  "dev": true,
14486
14486
  "requires": {
14487
14487
  "@babel/helper-environment-visitor": "^7.22.20",
@@ -14705,9 +14705,9 @@
14705
14705
  }
14706
14706
  },
14707
14707
  "@babel/plugin-transform-modules-systemjs": {
14708
- "version": "7.23.3",
14709
- "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-systemjs/-/plugin-transform-modules-systemjs-7.23.3.tgz",
14710
- "integrity": "sha512-ZxyKGTkF9xT9YJuKQRo19ewf3pXpopuYQd8cDXqNzc3mUNbOME0RKMoZxviQk74hwzfQsEe66dE92MaZbdHKNQ==",
14708
+ "version": "7.23.9",
14709
+ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-systemjs/-/plugin-transform-modules-systemjs-7.23.9.tgz",
14710
+ "integrity": "sha512-KDlPRM6sLo4o1FkiSlXoAa8edLXFsKKIda779fbLrvmeuc3itnjCtaO6RrtoaANsIJANj+Vk1zqbZIMhkCAHVw==",
14711
14711
  "dev": true,
14712
14712
  "requires": {
14713
14713
  "@babel/helper-hoist-variables": "^7.22.5",
@@ -14966,9 +14966,9 @@
14966
14966
  }
14967
14967
  },
14968
14968
  "@babel/preset-env": {
14969
- "version": "7.23.8",
14970
- "resolved": "https://registry.npmjs.org/@babel/preset-env/-/preset-env-7.23.8.tgz",
14971
- "integrity": "sha512-lFlpmkApLkEP6woIKprO6DO60RImpatTQKtz4sUcDjVcK8M8mQ4sZsuxaTMNOZf0sqAq/ReYW1ZBHnOQwKpLWA==",
14969
+ "version": "7.23.9",
14970
+ "resolved": "https://registry.npmjs.org/@babel/preset-env/-/preset-env-7.23.9.tgz",
14971
+ "integrity": "sha512-3kBGTNBBk9DQiPoXYS0g0BYlwTQYUTifqgKTjxUwEUkduRT2QOa0FPGBJ+NROQhGyYO5BuTJwGvBnqKDykac6A==",
14972
14972
  "dev": true,
14973
14973
  "requires": {
14974
14974
  "@babel/compat-data": "^7.23.5",
@@ -14998,7 +14998,7 @@
14998
14998
  "@babel/plugin-syntax-top-level-await": "^7.14.5",
14999
14999
  "@babel/plugin-syntax-unicode-sets-regex": "^7.18.6",
15000
15000
  "@babel/plugin-transform-arrow-functions": "^7.23.3",
15001
- "@babel/plugin-transform-async-generator-functions": "^7.23.7",
15001
+ "@babel/plugin-transform-async-generator-functions": "^7.23.9",
15002
15002
  "@babel/plugin-transform-async-to-generator": "^7.23.3",
15003
15003
  "@babel/plugin-transform-block-scoped-functions": "^7.23.3",
15004
15004
  "@babel/plugin-transform-block-scoping": "^7.23.4",
@@ -15020,7 +15020,7 @@
15020
15020
  "@babel/plugin-transform-member-expression-literals": "^7.23.3",
15021
15021
  "@babel/plugin-transform-modules-amd": "^7.23.3",
15022
15022
  "@babel/plugin-transform-modules-commonjs": "^7.23.3",
15023
- "@babel/plugin-transform-modules-systemjs": "^7.23.3",
15023
+ "@babel/plugin-transform-modules-systemjs": "^7.23.9",
15024
15024
  "@babel/plugin-transform-modules-umd": "^7.23.3",
15025
15025
  "@babel/plugin-transform-named-capturing-groups-regex": "^7.22.5",
15026
15026
  "@babel/plugin-transform-new-target": "^7.23.3",
@@ -15046,9 +15046,9 @@
15046
15046
  "@babel/plugin-transform-unicode-regex": "^7.23.3",
15047
15047
  "@babel/plugin-transform-unicode-sets-regex": "^7.23.3",
15048
15048
  "@babel/preset-modules": "0.1.6-no-external-plugins",
15049
- "babel-plugin-polyfill-corejs2": "^0.4.7",
15050
- "babel-plugin-polyfill-corejs3": "^0.8.7",
15051
- "babel-plugin-polyfill-regenerator": "^0.5.4",
15049
+ "babel-plugin-polyfill-corejs2": "^0.4.8",
15050
+ "babel-plugin-polyfill-corejs3": "^0.9.0",
15051
+ "babel-plugin-polyfill-regenerator": "^0.5.5",
15052
15052
  "core-js-compat": "^3.31.0",
15053
15053
  "semver": "^6.3.1"
15054
15054
  },
@@ -15101,20 +15101,20 @@
15101
15101
  }
15102
15102
  },
15103
15103
  "@babel/template": {
15104
- "version": "7.22.15",
15105
- "resolved": "https://registry.npmjs.org/@babel/template/-/template-7.22.15.tgz",
15106
- "integrity": "sha512-QPErUVm4uyJa60rkI73qneDacvdvzxshT3kksGqlGWYdOTIUOwJ7RDUL8sGqslY1uXWSL6xMFKEXDS3ox2uF0w==",
15104
+ "version": "7.23.9",
15105
+ "resolved": "https://registry.npmjs.org/@babel/template/-/template-7.23.9.tgz",
15106
+ "integrity": "sha512-+xrD2BWLpvHKNmX2QbpdpsBaWnRxahMwJjO+KZk2JOElj5nSmKezyS1B4u+QbHMTX69t4ukm6hh9lsYQ7GHCKA==",
15107
15107
  "dev": true,
15108
15108
  "requires": {
15109
- "@babel/code-frame": "^7.22.13",
15110
- "@babel/parser": "^7.22.15",
15111
- "@babel/types": "^7.22.15"
15109
+ "@babel/code-frame": "^7.23.5",
15110
+ "@babel/parser": "^7.23.9",
15111
+ "@babel/types": "^7.23.9"
15112
15112
  }
15113
15113
  },
15114
15114
  "@babel/traverse": {
15115
- "version": "7.23.7",
15116
- "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.23.7.tgz",
15117
- "integrity": "sha512-tY3mM8rH9jM0YHFGyfC0/xf+SB5eKUu7HPj7/k3fpi9dAlsMc5YbQvDi0Sh2QTPXqMhyaAtzAr807TIyfQrmyg==",
15115
+ "version": "7.23.9",
15116
+ "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.23.9.tgz",
15117
+ "integrity": "sha512-I/4UJ9vs90OkBtY6iiiTORVMyIhJ4kAVmsKo9KFc8UOxMeUfi2hvtIBsET5u9GizXE6/GFSuKCTNfgCswuEjRg==",
15118
15118
  "dev": true,
15119
15119
  "requires": {
15120
15120
  "@babel/code-frame": "^7.23.5",
@@ -15123,16 +15123,16 @@
15123
15123
  "@babel/helper-function-name": "^7.23.0",
15124
15124
  "@babel/helper-hoist-variables": "^7.22.5",
15125
15125
  "@babel/helper-split-export-declaration": "^7.22.6",
15126
- "@babel/parser": "^7.23.6",
15127
- "@babel/types": "^7.23.6",
15126
+ "@babel/parser": "^7.23.9",
15127
+ "@babel/types": "^7.23.9",
15128
15128
  "debug": "^4.3.1",
15129
15129
  "globals": "^11.1.0"
15130
15130
  }
15131
15131
  },
15132
15132
  "@babel/types": {
15133
- "version": "7.23.6",
15134
- "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.23.6.tgz",
15135
- "integrity": "sha512-+uarb83brBzPKN38NX1MkB6vb6+mwvR6amUulqAE7ccQw1pEl+bCia9TbdG1lsnFP7lZySvUn37CHyXQdfTwzg==",
15133
+ "version": "7.23.9",
15134
+ "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.23.9.tgz",
15135
+ "integrity": "sha512-dQjSq/7HaSjRM43FFGnv5keM2HsxpmyV1PfaSVm0nzzjwwTmjOe6J4bC8e3+pTEIgHaHj+1ZlLThRJ2auc/w1Q==",
15136
15136
  "dev": true,
15137
15137
  "requires": {
15138
15138
  "@babel/helper-string-parser": "^7.23.4",
@@ -15218,9 +15218,9 @@
15218
15218
  }
15219
15219
  },
15220
15220
  "@eslint/js": {
15221
- "version": "8.56.0",
15222
- "resolved": "https://registry.npmjs.org/@eslint/js/-/js-8.56.0.tgz",
15223
- "integrity": "sha512-gMsVel9D7f2HLkBma9VbtzZRehRogVRfbr++f06nL2vnCGCNlzOD+/MUov/F4p8myyAHspEhVobgjpX64q5m6A==",
15221
+ "version": "8.57.0",
15222
+ "resolved": "https://registry.npmjs.org/@eslint/js/-/js-8.57.0.tgz",
15223
+ "integrity": "sha512-Ys+3g2TaW7gADOJzPt83SJtCDhMjndcDMFVQ/Tj9iA1BfJzFKD9mAUXT3OenpuPHbI6P/myECxRJrofUsDx/5g==",
15224
15224
  "dev": true
15225
15225
  },
15226
15226
  "@graphql-typed-document-node/core": {
@@ -15230,13 +15230,13 @@
15230
15230
  "requires": {}
15231
15231
  },
15232
15232
  "@humanwhocodes/config-array": {
15233
- "version": "0.11.13",
15234
- "resolved": "https://registry.npmjs.org/@humanwhocodes/config-array/-/config-array-0.11.13.tgz",
15235
- "integrity": "sha512-JSBDMiDKSzQVngfRjOdFXgFfklaXI4K9nLF49Auh21lmBWRLIK3+xTErTWD4KU54pb6coM6ESE7Awz/FNU3zgQ==",
15233
+ "version": "0.11.14",
15234
+ "resolved": "https://registry.npmjs.org/@humanwhocodes/config-array/-/config-array-0.11.14.tgz",
15235
+ "integrity": "sha512-3T8LkOmg45BV5FICb15QQMsyUSWrQ8AygVfC7ZG32zOalnqrilm018ZVCw0eapXux8FtA33q8PSRSstjee3jSg==",
15236
15236
  "dev": true,
15237
15237
  "requires": {
15238
- "@humanwhocodes/object-schema": "^2.0.1",
15239
- "debug": "^4.1.1",
15238
+ "@humanwhocodes/object-schema": "^2.0.2",
15239
+ "debug": "^4.3.1",
15240
15240
  "minimatch": "^3.0.5"
15241
15241
  }
15242
15242
  },
@@ -15247,9 +15247,9 @@
15247
15247
  "dev": true
15248
15248
  },
15249
15249
  "@humanwhocodes/object-schema": {
15250
- "version": "2.0.1",
15251
- "resolved": "https://registry.npmjs.org/@humanwhocodes/object-schema/-/object-schema-2.0.1.tgz",
15252
- "integrity": "sha512-dvuCeX5fC9dXgJn9t+X5atfmgQAzUOWqS1254Gh0m6i8wKd10ebXkfNKiRK+1GWi/yTvvLDHpoxLr0xxxeslWw==",
15250
+ "version": "2.0.2",
15251
+ "resolved": "https://registry.npmjs.org/@humanwhocodes/object-schema/-/object-schema-2.0.2.tgz",
15252
+ "integrity": "sha512-6EwiSjwWYP7pTckG6I5eyFANjPhmPjUX9JRLUSfNPC7FX7zK9gyZAfUEaECL6ALTpGX5AjnBq3C9XmVWPitNpw==",
15253
15253
  "dev": true
15254
15254
  },
15255
15255
  "@isaacs/cliui": {
@@ -15742,17 +15742,17 @@
15742
15742
  }
15743
15743
  },
15744
15744
  "@json2csv/formatters": {
15745
- "version": "7.0.5",
15746
- "resolved": "https://registry.npmjs.org/@json2csv/formatters/-/formatters-7.0.5.tgz",
15747
- "integrity": "sha512-ihONIB8S1ZG0ji5nDFpfCUPphVLnEKlLxDmDqRMjmPhzw8WCvyLX2trIrNHCf1t2IV8rx+1tNYaDb1dh87jHgA=="
15745
+ "version": "7.0.6",
15746
+ "resolved": "https://registry.npmjs.org/@json2csv/formatters/-/formatters-7.0.6.tgz",
15747
+ "integrity": "sha512-hjIk1H1TR4ydU5ntIENEPgoMGW+Q7mJ+537sDFDbsk+Y3EPl2i4NfFVjw0NJRgT+ihm8X30M67mA8AS6jPidSA=="
15748
15748
  },
15749
15749
  "@json2csv/plainjs": {
15750
- "version": "7.0.5",
15751
- "resolved": "https://registry.npmjs.org/@json2csv/plainjs/-/plainjs-7.0.5.tgz",
15752
- "integrity": "sha512-iJsYEzgRZUhRb8LltCeuBQyexQVUbovRZFF73Lo0iIvi5SUWsfXGTtbriIROsOKgfZPtYxmkZV+FYlsnBu9ybQ==",
15750
+ "version": "7.0.6",
15751
+ "resolved": "https://registry.npmjs.org/@json2csv/plainjs/-/plainjs-7.0.6.tgz",
15752
+ "integrity": "sha512-4Md7RPDCSYpmW1HWIpWBOqCd4vWfIqm53S3e/uzQ62iGi7L3r34fK/8nhOMEe+/eVfCx8+gdSCt1d74SlacQHw==",
15753
15753
  "requires": {
15754
- "@json2csv/formatters": "^7.0.5",
15755
- "@streamparser/json": "^0.0.19"
15754
+ "@json2csv/formatters": "^7.0.6",
15755
+ "@streamparser/json": "^0.0.20"
15756
15756
  }
15757
15757
  },
15758
15758
  "@lando/compose": {
@@ -16167,9 +16167,9 @@
16167
16167
  "integrity": "sha512-+9jVqKhRSpsc591z5vX+X5Yyw+he/HCB4iQ/RYxw35CEPaY1gnsNE43nf9n9AaYjAQrTiI/mOwKUKdUs9vf7Xg=="
16168
16168
  },
16169
16169
  "@streamparser/json": {
16170
- "version": "0.0.19",
16171
- "resolved": "https://registry.npmjs.org/@streamparser/json/-/json-0.0.19.tgz",
16172
- "integrity": "sha512-VTxtZGME6ZSWNCSjZ0Zd2LNNodx62XvmARb/liHIwGlInuuvoDzioLuRP8ajV8iLBknsTrsqpRDGlvzKSzpNEw=="
16170
+ "version": "0.0.20",
16171
+ "resolved": "https://registry.npmjs.org/@streamparser/json/-/json-0.0.20.tgz",
16172
+ "integrity": "sha512-VqAAkydywPpkw63WQhPVKCD3SdwXuihCUVZbbiY3SfSTGQyHmwRoq27y4dmJdZuJwd5JIlQoMPyGvMbUPY0RKQ=="
16173
16173
  },
16174
16174
  "@szmarczak/http-timer": {
16175
16175
  "version": "5.0.1",
@@ -16268,9 +16268,9 @@
16268
16268
  }
16269
16269
  },
16270
16270
  "@types/dockerode": {
16271
- "version": "3.3.23",
16272
- "resolved": "https://registry.npmjs.org/@types/dockerode/-/dockerode-3.3.23.tgz",
16273
- "integrity": "sha512-Lz5J+NFgZS4cEVhquwjIGH4oQwlVn2h7LXD3boitujBnzOE5o7s9H8hchEjoDK2SlRsJTogdKnQeiJgPPKLIEw==",
16271
+ "version": "3.3.24",
16272
+ "resolved": "https://registry.npmjs.org/@types/dockerode/-/dockerode-3.3.24.tgz",
16273
+ "integrity": "sha512-679y69OYusf7Fr2HtdjXPUF6hnHxSA9K4EsuagsMuPno/XpJHjXxCOy2I5YL8POnWbzjsQAi0pyKIYM9HSpQog==",
16274
16274
  "dev": true,
16275
16275
  "requires": {
16276
16276
  "@types/docker-modem": "*",
@@ -16322,9 +16322,9 @@
16322
16322
  }
16323
16323
  },
16324
16324
  "@types/jest": {
16325
- "version": "29.5.11",
16326
- "resolved": "https://registry.npmjs.org/@types/jest/-/jest-29.5.11.tgz",
16327
- "integrity": "sha512-S2mHmYIVe13vrm6q4kN6fLYYAka15ALQki/vgDC3mIukEOx8WJlv0kQPM+d4w8Gp6u0uSdKND04IlTXBv0rwnQ==",
16325
+ "version": "29.5.12",
16326
+ "resolved": "https://registry.npmjs.org/@types/jest/-/jest-29.5.12.tgz",
16327
+ "integrity": "sha512-eDC8bTvT/QhYdxJAulQikueigY5AsdBRH2yDKW3yveW7svY3+DzN84/2NUgkw10RTiJbWqZrTtoGVdYlvFJdLw==",
16328
16328
  "dev": true,
16329
16329
  "requires": {
16330
16330
  "expect": "^29.0.0",
@@ -16370,9 +16370,9 @@
16370
16370
  "dev": true
16371
16371
  },
16372
16372
  "@types/node": {
16373
- "version": "18.19.9",
16374
- "resolved": "https://registry.npmjs.org/@types/node/-/node-18.19.9.tgz",
16375
- "integrity": "sha512-oZFKlC8l5YtzGQNT4zC2PiSSKzQVZ8bAwwd+EYdPLtyk0nSEq6O16SkK+rkkT2eflDAbormJgEF3QnH3oDrTSw==",
16373
+ "version": "18.19.18",
16374
+ "resolved": "https://registry.npmjs.org/@types/node/-/node-18.19.18.tgz",
16375
+ "integrity": "sha512-80CP7B8y4PzZF0GWx15/gVWRrB5y/bIjNI84NK3cmQJu0WZwvmj2WMA5LcofQFVfLqqCSp545+U2LsrVzX36Zg==",
16376
16376
  "requires": {
16377
16377
  "undici-types": "~5.26.4"
16378
16378
  }
@@ -16397,9 +16397,9 @@
16397
16397
  }
16398
16398
  },
16399
16399
  "@types/semver": {
16400
- "version": "7.5.6",
16401
- "resolved": "https://registry.npmjs.org/@types/semver/-/semver-7.5.6.tgz",
16402
- "integrity": "sha512-dn1l8LaMea/IjDoHNd9J52uBbInB796CDffS6VdIxvqYCPSG0V0DzHp76GpaWnlhg88uYyPbXCDIowa86ybd5A==",
16400
+ "version": "7.5.8",
16401
+ "resolved": "https://registry.npmjs.org/@types/semver/-/semver-7.5.8.tgz",
16402
+ "integrity": "sha512-I8EUhyrgfLrcTkzV3TSsGyl1tSuPrEDzr0yd5m90UgNxQkyDXULk3b6MlQqTCpZpNtWe1K0hzclnZkTcLBe2UQ==",
16403
16403
  "dev": true
16404
16404
  },
16405
16405
  "@types/shelljs": {
@@ -16461,9 +16461,9 @@
16461
16461
  }
16462
16462
  },
16463
16463
  "@types/uuid": {
16464
- "version": "9.0.7",
16465
- "resolved": "https://registry.npmjs.org/@types/uuid/-/uuid-9.0.7.tgz",
16466
- "integrity": "sha512-WUtIVRUZ9i5dYXefDEAI7sh9/O7jGvHg7Df/5O/gtH3Yabe5odI3UWopVR1qbPXQtvOxWu3mM4XxlYeZtMWF4g==",
16464
+ "version": "9.0.8",
16465
+ "resolved": "https://registry.npmjs.org/@types/uuid/-/uuid-9.0.8.tgz",
16466
+ "integrity": "sha512-jg+97EGIcY9AGHJJRaaPVgetKDsrTgbRjQ5Msgjh/DQKEFl0DtyRr/VCOyD1T2R1MNeWPK/u7JoGhlDZnKBAfA==",
16467
16467
  "dev": true
16468
16468
  },
16469
16469
  "@types/xml2js": {
@@ -16990,13 +16990,13 @@
16990
16990
  }
16991
16991
  },
16992
16992
  "babel-plugin-polyfill-corejs2": {
16993
- "version": "0.4.7",
16994
- "resolved": "https://registry.npmjs.org/babel-plugin-polyfill-corejs2/-/babel-plugin-polyfill-corejs2-0.4.7.tgz",
16995
- "integrity": "sha512-LidDk/tEGDfuHW2DWh/Hgo4rmnw3cduK6ZkOI1NPFceSK3n/yAGeOsNT7FLnSGHkXj3RHGSEVkN3FsCTY6w2CQ==",
16993
+ "version": "0.4.8",
16994
+ "resolved": "https://registry.npmjs.org/babel-plugin-polyfill-corejs2/-/babel-plugin-polyfill-corejs2-0.4.8.tgz",
16995
+ "integrity": "sha512-OtIuQfafSzpo/LhnJaykc0R/MMnuLSSVjVYy9mHArIZ9qTCSZ6TpWCuEKZYVoN//t8HqBNScHrOtCrIK5IaGLg==",
16996
16996
  "dev": true,
16997
16997
  "requires": {
16998
16998
  "@babel/compat-data": "^7.22.6",
16999
- "@babel/helper-define-polyfill-provider": "^0.4.4",
16999
+ "@babel/helper-define-polyfill-provider": "^0.5.0",
17000
17000
  "semver": "^6.3.1"
17001
17001
  },
17002
17002
  "dependencies": {
@@ -17009,22 +17009,22 @@
17009
17009
  }
17010
17010
  },
17011
17011
  "babel-plugin-polyfill-corejs3": {
17012
- "version": "0.8.7",
17013
- "resolved": "https://registry.npmjs.org/babel-plugin-polyfill-corejs3/-/babel-plugin-polyfill-corejs3-0.8.7.tgz",
17014
- "integrity": "sha512-KyDvZYxAzkC0Aj2dAPyDzi2Ym15e5JKZSK+maI7NAwSqofvuFglbSsxE7wUOvTg9oFVnHMzVzBKcqEb4PJgtOA==",
17012
+ "version": "0.9.0",
17013
+ "resolved": "https://registry.npmjs.org/babel-plugin-polyfill-corejs3/-/babel-plugin-polyfill-corejs3-0.9.0.tgz",
17014
+ "integrity": "sha512-7nZPG1uzK2Ymhy/NbaOWTg3uibM2BmGASS4vHS4szRZAIR8R6GwA/xAujpdrXU5iyklrimWnLWU+BLF9suPTqg==",
17015
17015
  "dev": true,
17016
17016
  "requires": {
17017
- "@babel/helper-define-polyfill-provider": "^0.4.4",
17018
- "core-js-compat": "^3.33.1"
17017
+ "@babel/helper-define-polyfill-provider": "^0.5.0",
17018
+ "core-js-compat": "^3.34.0"
17019
17019
  }
17020
17020
  },
17021
17021
  "babel-plugin-polyfill-regenerator": {
17022
- "version": "0.5.4",
17023
- "resolved": "https://registry.npmjs.org/babel-plugin-polyfill-regenerator/-/babel-plugin-polyfill-regenerator-0.5.4.tgz",
17024
- "integrity": "sha512-S/x2iOCvDaCASLYsOOgWOq4bCfKYVqvO/uxjkaYyZ3rVsVE3CeAI/c84NpyuBBymEgNvHgjEot3a9/Z/kXvqsg==",
17022
+ "version": "0.5.5",
17023
+ "resolved": "https://registry.npmjs.org/babel-plugin-polyfill-regenerator/-/babel-plugin-polyfill-regenerator-0.5.5.tgz",
17024
+ "integrity": "sha512-OJGYZlhLqBh2DDHeqAxWB1XIvr49CxiJ2gIt61/PU55CQK4Z58OzMqjDe1zwQdQk+rBYsRc+1rJmdajM3gimHg==",
17025
17025
  "dev": true,
17026
17026
  "requires": {
17027
- "@babel/helper-define-polyfill-provider": "^0.4.4"
17027
+ "@babel/helper-define-polyfill-provider": "^0.5.0"
17028
17028
  }
17029
17029
  },
17030
17030
  "babel-preset-current-node-syntax": {
@@ -17710,9 +17710,9 @@
17710
17710
  }
17711
17711
  },
17712
17712
  "core-js-compat": {
17713
- "version": "3.35.0",
17714
- "resolved": "https://registry.npmjs.org/core-js-compat/-/core-js-compat-3.35.0.tgz",
17715
- "integrity": "sha512-5blwFAddknKeNgsjBzilkdQ0+YK8L1PfqPYq40NOYMYFSS38qj+hpTcLLWwpIwA2A5bje/x5jmVn2tzUMg9IVw==",
17713
+ "version": "3.35.1",
17714
+ "resolved": "https://registry.npmjs.org/core-js-compat/-/core-js-compat-3.35.1.tgz",
17715
+ "integrity": "sha512-sftHa5qUJY3rs9Zht1WEnmkvXputCyDBczPnr7QDgL8n3qrF3CMXY4VPSYtOLLiOUJcah2WNXREd48iOl6mQIw==",
17716
17716
  "dev": true,
17717
17717
  "requires": {
17718
17718
  "browserslist": "^4.22.2"
@@ -18206,16 +18206,16 @@
18206
18206
  "integrity": "sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg=="
18207
18207
  },
18208
18208
  "eslint": {
18209
- "version": "8.56.0",
18210
- "resolved": "https://registry.npmjs.org/eslint/-/eslint-8.56.0.tgz",
18211
- "integrity": "sha512-Go19xM6T9puCOWntie1/P997aXxFsOi37JIHRWI514Hc6ZnaHGKY9xFhrU65RT6CcBEzZoGG1e6Nq+DT04ZtZQ==",
18209
+ "version": "8.57.0",
18210
+ "resolved": "https://registry.npmjs.org/eslint/-/eslint-8.57.0.tgz",
18211
+ "integrity": "sha512-dZ6+mexnaTIbSBZWgou51U6OmzIhYM2VcNdtiTtI7qPNZm35Akpr0f6vtw3w1Kmn5PYo+tZVfh13WrhpS6oLqQ==",
18212
18212
  "dev": true,
18213
18213
  "requires": {
18214
18214
  "@eslint-community/eslint-utils": "^4.2.0",
18215
18215
  "@eslint-community/regexpp": "^4.6.1",
18216
18216
  "@eslint/eslintrc": "^2.1.4",
18217
- "@eslint/js": "8.56.0",
18218
- "@humanwhocodes/config-array": "^0.11.13",
18217
+ "@eslint/js": "8.57.0",
18218
+ "@humanwhocodes/config-array": "^0.11.14",
18219
18219
  "@humanwhocodes/module-importer": "^1.0.1",
18220
18220
  "@nodelib/fs.walk": "^1.2.8",
18221
18221
  "@ungap/structured-clone": "^1.2.0",
@@ -21212,9 +21212,9 @@
21212
21212
  "dev": true
21213
21213
  },
21214
21214
  "nock": {
21215
- "version": "13.5.0",
21216
- "resolved": "https://registry.npmjs.org/nock/-/nock-13.5.0.tgz",
21217
- "integrity": "sha512-9hc1eCS2HtOz+sE9W7JQw/tXJktg0zoPSu48s/pYe73e25JW9ywiowbqnUSd7iZPeVawLcVpPZeZS312fwSY+g==",
21215
+ "version": "13.5.3",
21216
+ "resolved": "https://registry.npmjs.org/nock/-/nock-13.5.3.tgz",
21217
+ "integrity": "sha512-2NlGmHIK2rTeyy7UaY1ZNg0YZfEJMxghXgZi0b4DBsUyoDNTTxZeCSG1nmirAWF44RkkoV8NnegLVQijgVapNQ==",
21218
21218
  "dev": true,
21219
21219
  "requires": {
21220
21220
  "debug": "^4.1.0",
@@ -21427,9 +21427,9 @@
21427
21427
  }
21428
21428
  },
21429
21429
  "open": {
21430
- "version": "10.0.3",
21431
- "resolved": "https://registry.npmjs.org/open/-/open-10.0.3.tgz",
21432
- "integrity": "sha512-dtbI5oW7987hwC9qjJTyABldTaa19SuyJse1QboWv3b0qCcrrLNVDqBx1XgELAjh9QTVQaP/C5b1nhQebd1H2A==",
21430
+ "version": "10.0.4",
21431
+ "resolved": "https://registry.npmjs.org/open/-/open-10.0.4.tgz",
21432
+ "integrity": "sha512-oujJ/FFr7ra6/7gJuQ4ZJJ8Gf2VHM0J3J/W7IvH++zaqEzacWVxzK++NiVY5NLHTTj7u/jNH5H3Ei9biL31Lng==",
21433
21433
  "requires": {
21434
21434
  "default-browser": "^5.2.1",
21435
21435
  "define-lazy-prop": "^3.0.0",
@@ -22095,9 +22095,9 @@
22095
22095
  "integrity": "sha512-NqVDv9TpANUjFm0N8uM5GxL36UgKi9/atZw+x7YFnQ8ckwFGKrl4xX4yWtrey3UJm5nP1kUbnYgLopqWNSRhWw=="
22096
22096
  },
22097
22097
  "semver": {
22098
- "version": "7.5.4",
22099
- "resolved": "https://registry.npmjs.org/semver/-/semver-7.5.4.tgz",
22100
- "integrity": "sha512-1bCSESV6Pv+i21Hvpxp3Dx+pSD8lIPt8uVjRrxAUt/nbswYc+tK6Y2btiULjd4+fnq15PX+nqQDC7Oft7WkwcA==",
22098
+ "version": "7.6.0",
22099
+ "resolved": "https://registry.npmjs.org/semver/-/semver-7.6.0.tgz",
22100
+ "integrity": "sha512-EnwXhrlwXMk9gKu5/flx5sv/an57AkRplG3hTK68W7FRDN+k+OWBj65M7719OkA82XLBxrcX0KSHj+X5COhOVg==",
22101
22101
  "requires": {
22102
22102
  "lru-cache": "^6.0.0"
22103
22103
  },
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@automattic/vip",
3
- "version": "2.38.0",
3
+ "version": "2.38.2",
4
4
  "description": "The VIP Javascript library & CLI",
5
5
  "main": "index.js",
6
6
  "bin": {
@@ -107,9 +107,9 @@
107
107
  "homepage": "https://github.com/Automattic/vip#readme",
108
108
  "devDependencies": {
109
109
  "@automattic/eslint-plugin-wpvip": "0.9.1",
110
- "@babel/cli": "7.23.4",
111
- "@babel/core": "7.23.7",
112
- "@babel/preset-env": "7.23.8",
110
+ "@babel/cli": "7.23.9",
111
+ "@babel/core": "7.23.9",
112
+ "@babel/preset-env": "7.23.9",
113
113
  "@babel/preset-typescript": "7.23.3",
114
114
  "@jest/globals": "^29.7.0",
115
115
  "@jest/test-sequencer": "^29.7.0",
@@ -133,7 +133,7 @@
133
133
  "dockerode": "^4.0.0",
134
134
  "eslint": "^8.35.0",
135
135
  "jest": "^29.7.0",
136
- "nock": "13.5.0",
136
+ "nock": "13.5.3",
137
137
  "prettier": "npm:wp-prettier@2.8.5",
138
138
  "rimraf": "5.0.5",
139
139
  "typescript": "^5.2.2"
@@ -164,7 +164,7 @@
164
164
  "node-fetch": "^2.6.1",
165
165
  "open": "^10.0.0",
166
166
  "proxy-from-env": "^1.1.0",
167
- "semver": "7.5.4",
167
+ "semver": "7.6.0",
168
168
  "shelljs": "^0.8.5",
169
169
  "single-line-log": "1.1.2",
170
170
  "socket.io-client": "^4.5.3",