diff --git a/CHANGELOG.md b/CHANGELOG.md index 2b48b86..a95408c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -82,6 +82,7 @@ For major (breaking) changes - **version 4, 3 and 2** - see end of page. | Version | Date | Comment | | ------- | ---------- | --------------------------------------------------------------------------------------------------- | +| 5.17.13 | 2023-05-24 | `typings` fix typings dynamicData, networkInterfaceDatass | | 5.17.12 | 2023-02-28 | `uuid()` fix unique mac address issue (Android) | | 5.17.11 | 2023-02-27 | `blockDevices()` raid added label, uuid (linux) | | 5.17.10 | 2023-02-23 | `blockDevices()` fixed parsing raids (linux) | diff --git a/README.md b/README.md index bb634d3..31ef5d6 100644 --- a/README.md +++ b/README.md @@ -29,7 +29,7 @@ [![MIT license][license-img]][license-url] ## The Systeminformation Project -This is amazing. Started as a small project just for myself, it now has > 15,000 lines of code, > 500 versions published, up to 6 mio downloads per month, > 140 mio downloads overall. #1 NPM ranking for backend packages. Thank you to all who contributed to this project! +This is amazing. Started as a small project just for myself, it now has > 15,000 lines of code, > 500 versions published, up to 6 mio downloads per month, > 150 mio downloads overall. #1 NPM ranking for backend packages. Thank you to all who contributed to this project! ## New Version 5.0 diff --git a/docs/history.html b/docs/history.html index 117bcb4..e2d5ec8 100644 --- a/docs/history.html +++ b/docs/history.html @@ -57,6 +57,11 @@ + + 5.17.13 + 2023-05-24 + typings fix typings dynamicData, networkInterfaceData + 5.17.12 2023-02-28 diff --git a/docs/index.html b/docs/index.html index 323ba5e..ac43588 100644 --- a/docs/index.html +++ b/docs/index.html @@ -170,7 +170,7 @@
systeminformation
 
-
New Version: 5.17.12
+
New Version: 5.17.13
@@ -204,7 +204,7 @@
-
15,385
+
15,389
Lines of code
@@ -212,7 +212,7 @@
Downloads last month
-
597
+
612
Dependents
diff --git a/lib/index.d.ts b/lib/index.d.ts index 9e7de70..9dede7a 100644 --- a/lib/index.d.ts +++ b/lib/index.d.ts @@ -492,6 +492,7 @@ export namespace Systeminformation { interface NetworkInterfacesData { iface: string; ifaceName: string; + default: boolean; ip4: string; ip4subnet: string; ip6: string; @@ -924,14 +925,14 @@ export namespace Systeminformation { v8: string; cpuCurrentSpeed: CpuCurrentSpeedData; users: UserData[]; - processes: ProcessesData; + processes: ProcessesData[]; currentLoad: CurrentLoadData; cpuTemperature: CpuTemperatureData; - networkStats: NetworkStatsData; - networkConnections: NetworkConnectionsData; + networkStats: NetworkStatsData[]; + networkConnections: NetworkConnectionsData[]; mem: MemData; battery: BatteryData; - services: ServicesData; + services: ServicesData[]; fsSize: FsSizeData; fsStats: FsStatsData; disksIO: DisksIoData;