@stordata/vsphere-soapify 1.0.20250930130936 → 1.0.20251002001206

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.
@@ -3042,14 +3042,14 @@
3042
3042
  }
3043
3043
  ],
3044
3044
  "type": "sast",
3045
- "start_time": "2025-09-30T13:08:10",
3046
- "end_time": "2025-09-30T13:08:25",
3045
+ "start_time": "2025-10-02T00:10:59",
3046
+ "end_time": "2025-10-02T00:11:14",
3047
3047
  "status": "success",
3048
3048
  "observability": {
3049
3049
  "events": [
3050
3050
  {
3051
3051
  "event": "collect_sast_scan_metrics_from_pipeline",
3052
- "property": "2dc00e31-6dcf-47f1-b6bb-f44c8deda8c2",
3052
+ "property": "1f4eef75-daae-4397-bcfe-ddadc3cb6537",
3053
3053
  "label": "semgrep",
3054
3054
  "value": 0,
3055
3055
  "version": "6.7.1",
@@ -3058,7 +3058,7 @@
3058
3058
  "passthrough_count": 0,
3059
3059
  "custom_exclude_path_count": 0,
3060
3060
  "time_s": 15,
3061
- "file_count": 321
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:ba86ca69-39d8-4c67-a255-b0ef614353ec",
4
+ "serialNumber": "urn:uuid:b1b3a4dd-cf84-467a-90f6-18330de7d13c",
5
5
  "version": 1,
6
6
  "metadata": {
7
- "timestamp": "2025-09-30T13:09:11Z",
7
+ "timestamp": "2025-10-02T00:11:41Z",
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.3",
1482
- "purl": "pkg:npm/mocha@11.7.3",
1481
+ "version": "11.7.4",
1482
+ "purl": "pkg:npm/mocha@11.7.4",
1483
1483
  "type": "library",
1484
- "bom-ref": "pkg:npm/mocha@11.7.3"
1484
+ "bom-ref": "pkg:npm/mocha@11.7.4"
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
  }