@stordata/vsphere-soapify 1.0.20250926220820 → 1.0.20250930162123

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.
@@ -2,7 +2,7 @@
2
2
  "version": "15.2.2",
3
3
  "vulnerabilities": [
4
4
  {
5
- "id": "86da563015e2b254075da9ecd35869c6a90bcfc46cf923e03ed0ec966bcf5aa1",
5
+ "id": "8646136a771899e2fcd1f86f3216f6dd337537c591f09e104b0abd2422ecdd55",
6
6
  "category": "sast",
7
7
  "name": "Incorrect regular expression",
8
8
  "description": "Ensure that the regex used to compare with user supplied input is safe from regular expression denial of service.\n",
@@ -18,6 +18,11 @@
18
18
  "end_line": 20
19
19
  },
20
20
  "identifiers": [
21
+ {
22
+ "type": "semgrep_id",
23
+ "name": "nodejs_scan.javascript-dos-rule-regex_dos",
24
+ "value": "nodejs_scan.javascript-dos-rule-regex_dos"
25
+ },
21
26
  {
22
27
  "type": "cwe",
23
28
  "name": "CWE-185",
@@ -38,11 +43,6 @@
38
43
  "type": "njsscan_rule_type",
39
44
  "name": "NodeJS Scan ID javascript-dos-rule-regex_dos",
40
45
  "value": "Ensure that the regex used to compare with user supplied input is safe from regular expression denial of service."
41
- },
42
- {
43
- "type": "semgrep_id",
44
- "name": "nodejs_scan.javascript-dos-rule-regex_dos",
45
- "value": "nodejs_scan.javascript-dos-rule-regex_dos"
46
46
  }
47
47
  ]
48
48
  }
@@ -55,7 +55,7 @@
55
55
  "vendor": {
56
56
  "name": "GitLab"
57
57
  },
58
- "version": "6.7.0"
58
+ "version": "6.7.1"
59
59
  },
60
60
  "scanner": {
61
61
  "id": "semgrep",
@@ -3042,23 +3042,23 @@
3042
3042
  }
3043
3043
  ],
3044
3044
  "type": "sast",
3045
- "start_time": "2025-09-26T22:08:01",
3046
- "end_time": "2025-09-26T22:08:14",
3045
+ "start_time": "2025-09-30T16:20:55",
3046
+ "end_time": "2025-09-30T16:21:10",
3047
3047
  "status": "success",
3048
3048
  "observability": {
3049
3049
  "events": [
3050
3050
  {
3051
3051
  "event": "collect_sast_scan_metrics_from_pipeline",
3052
- "property": "500f52e1-6b93-428e-bece-ae927344ed72",
3052
+ "property": "4911752b-0475-438a-939a-9976dff1bc2a",
3053
3053
  "label": "semgrep",
3054
3054
  "value": 0,
3055
- "version": "6.7.0",
3055
+ "version": "6.7.1",
3056
3056
  "exit_code": 0,
3057
3057
  "override_count": 0,
3058
3058
  "passthrough_count": 0,
3059
3059
  "custom_exclude_path_count": 0,
3060
- "time_s": 13,
3061
- "file_count": 321
3060
+ "time_s": 14,
3061
+ "file_count": 322
3062
3062
  }
3063
3063
  ]
3064
3064
  }
@@ -1,10 +1,10 @@
1
1
  {
2
2
  "bomFormat": "CycloneDX",
3
3
  "specVersion": "1.4",
4
- "serialNumber": "urn:uuid:6c80530d-d6ab-4356-b6be-99778403d23f",
4
+ "serialNumber": "urn:uuid:f1750ee1-383b-4815-93f7-2e537ea4ffcb",
5
5
  "version": 1,
6
6
  "metadata": {
7
- "timestamp": "2025-09-26T22:07:50Z",
7
+ "timestamp": "2025-09-30T16:20:56Z",
8
8
  "tools": [
9
9
  {
10
10
  "vendor": "GitLab",
@@ -1478,10 +1478,10 @@
1478
1478
  },
1479
1479
  {
1480
1480
  "name": "mocha",
1481
- "version": "11.7.2",
1482
- "purl": "pkg:npm/mocha@11.7.2",
1481
+ "version": "11.7.3",
1482
+ "purl": "pkg:npm/mocha@11.7.3",
1483
1483
  "type": "library",
1484
- "bom-ref": "pkg:npm/mocha@11.7.2"
1484
+ "bom-ref": "pkg:npm/mocha@11.7.3"
1485
1485
  },
1486
1486
  {
1487
1487
  "name": "mockdate",
package/lib/client.js CHANGED
@@ -36,12 +36,12 @@ module.exports = class Client {
36
36
  *
37
37
  * Normally you wouldn't use this method directly, but rather one of the getter for core managed objects, then
38
38
  * call managed methods directly on the managed object. This method is however exposed for convenience, or if
39
- * the call you're interested in isn't modelled by the library yet.
39
+ * the call you're interested in isn't modeled by the library yet.
40
40
  *
41
41
  * @returns {Promise<soap.Client>} A Promise resolving with the node-soap Client.
42
42
  */
43
43
  getClient() {
44
- const wsdl = `${__dirname}/wsdl/6.5/vimService.wsdl`;
44
+ const wsdl = `${__dirname}/wsdl/6.7/vimService.wsdl`;
45
45
 
46
46
  return this._cache('client', () => soap.createClientAsync(wsdl, { endpoint: this.url, ...this.options }));
47
47
  }