@iobroker/types
Advanced tools
Comparing version 6.0.5 to 6.0.6-alpha.0-20240624-92c3310c8
@@ -746,5 +746,5 @@ import type * as os from 'node:os'; | ||
/** Configured longitude */ | ||
longitude: string; | ||
longitude?: number; | ||
/** Configured latitude */ | ||
latitude: string; | ||
latitude?: number; | ||
/** Optional user's city (only for diagnostics) */ | ||
@@ -754,2 +754,8 @@ city?: string; | ||
country?: string; | ||
/** User-defined temperature unit */ | ||
tempUnit?: '°C' | '°F'; | ||
/** User-defined currency */ | ||
currency?: string; | ||
/** User-defined first day of the week */ | ||
firstDayOfWeek?: 'monday' | 'sunday'; | ||
/** Default history instance */ | ||
@@ -756,0 +762,0 @@ defaultHistory: string; |
@@ -18,2 +18,5 @@ // Types which are safe to share within this repository AND publicly | ||
/** Type of T but makes specific optional properties required */ | ||
export type WithRequired<T, K extends keyof T> = T & { [P in K]-?: T[P] }; | ||
declare global { | ||
@@ -20,0 +23,0 @@ namespace ioBroker { |
{ | ||
"name": "@iobroker/types", | ||
"version": "6.0.5", | ||
"version": "6.0.6-alpha.0-20240624-92c3310c8", | ||
"engines": { | ||
@@ -44,3 +44,3 @@ "node": ">=12.0.0" | ||
}, | ||
"gitHead": "ae36e4198ad3f2311da0d649765a020f67fa73dd" | ||
"gitHead": "5488022a25457c5e7a130d57e846b972ed6d91f4" | ||
} |
Sorry, the diff of this file is too big to display
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
No v1
QualityPackage is not semver >=1. This means it is not stable and does not support ^ ranges.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
165585
3177
2