@opensecurity/zonzon-control-plane 0.1.5 → 0.1.7

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.
@@ -1,4 +1,4 @@
1
- import * as http from "http";
1
+ import * as http from "node:http";
2
2
  import { ConfigService } from "./config.service.js";
3
3
  export declare class ConfigHandler {
4
4
  private service;
@@ -1,6 +1,6 @@
1
1
  import { describe, it, before, after } from "node:test";
2
2
  import assert from "node:assert";
3
- import * as http from "http";
3
+ import * as http from "node:http";
4
4
  import * as os from "node:os";
5
5
  import * as path from "node:path";
6
6
  import { promises as fs } from "node:fs";
package/dist/index.js CHANGED
@@ -1,4 +1,4 @@
1
- import * as http from "http";
1
+ import * as http from "node:http";
2
2
  import * as fs from "node:fs";
3
3
  import { audit } from "@opensecurity/zonzon-core";
4
4
  import { ConfigService } from "./domain/config/config.service.js";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@opensecurity/zonzon-control-plane",
3
- "version": "0.1.5",
3
+ "version": "0.1.7",
4
4
  "description": "dynamic configuration api for the core engine",
5
5
  "type": "module",
6
6
  "author": "Lucian BLETAN <neuraluc@gmail.com>",
@@ -28,7 +28,7 @@
28
28
  "build": "tsc -b"
29
29
  },
30
30
  "dependencies": {
31
- "@opensecurity/zonzon-core": "^0.1.5",
31
+ "@opensecurity/zonzon-core": "^0.1.7",
32
32
  "zod": "^3.24.2"
33
33
  }
34
34
  }