Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@iobroker/types

Package Overview
Dependencies
Maintainers
6
Versions
200
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@iobroker/types - npm Package Compare versions

Comparing version 6.0.1-alpha.0-20240529-9dbeeb628 to 6.0.1-alpha.0-20240530-b38e01746

39

build/objects.d.ts

@@ -384,3 +384,6 @@ import type * as os from 'node:os';

name: string;
/** Changeable name of the host */
title: string;
/** base64 encoded icon */
icon?: string;
installedVersion: string; // e.g. 1.2.3 (following semver)

@@ -575,4 +578,6 @@ /** The command line of the executable */

adminTab?: {
name?: string;
/** Icon name for FontAwesome */
name?: StringOrTranslated;
/** Base 64 icon for the tab */
icon?: string;
/** @deprecated icon name for FontAwesome (works only in admin 4)*/
'fa-icon'?: string;

@@ -585,2 +590,4 @@ /** If true, the Tab is not reloaded when the configuration changes */

singleton?: boolean;
/** Order number in admin tabs */
order?: number;
};

@@ -648,3 +655,3 @@ allowInit?: boolean;

/** News per version in i18n */
news?: Record<string, Record<string, Translated>>;
news?: { [version: string]: Translated };
/** If `true`, no configuration dialog will be shown */

@@ -697,3 +704,3 @@ noConfig?: true;

/** The translated names of this adapter to be shown in the admin UI */
titleLang?: Record<Languages, string>;
titleLang?: StringOrTranslated;
/** @deprecated The name of this adapter to be shown in the admin UI. Use @see titleLang instead. */

@@ -727,4 +734,6 @@ title?: string;

messages?: MessageRule[];
/** If specific update of this adapter should be ignored, specifies version number to be ignored */
/** If a specific update of this adapter should be ignored, specifies version number to be ignored */
ignoreVersion?: string;
/** Sentry and other plugins */
plugins?: { [pluginName: string]: Record<string, any> };

@@ -746,2 +755,6 @@ // Make it possible to narrow the object type using the custom property

latitude: string;
/** Optional user's city (only for diagnostics) */
city?: string;
/** Optional user's country (only for diagnostics) */
country?: string;
/** Default history instance */

@@ -774,8 +787,18 @@ defaultHistory: string;

};
/** Deactivated instances, that should not be shown in admin/Intro page */
intro?: string[];
/** Which tabs are visible in admin in the left menu */
tabsVisible?: {
/** Name of the tab */
name: string;
/** If the tab should be visible */
visible: boolean;
/** Optional color of the tab */
color?: string;
}[];
/** Global saved expert mode for admin */
expertMode?: boolean;
// Make it possible to narrow the object type using the custom property
custom?: undefined;
/** Deactivated instances, that should not be shown in admin/Intro page */
intro?: string[];
}

@@ -782,0 +805,0 @@

@@ -291,2 +291,4 @@ // Types which are safe to share within this repository AND publicly

aggregate?: 'minmax' | 'min' | 'max' | 'average' | 'total' | 'count' | 'none';
/** Returned data is normally sorted ascending by date, this option lets you return the newest instead of the oldest values if the number of returned points is limited */
returnNewestEntries?: boolean;
}

@@ -293,0 +295,0 @@

{
"name": "@iobroker/types",
"version": "6.0.1-alpha.0-20240529-9dbeeb628",
"version": "6.0.1-alpha.0-20240530-b38e01746",
"engines": {

@@ -44,3 +44,3 @@ "node": ">=12.0.0"

},
"gitHead": "d2cedb0986ea9cbf250d1ce4eea775af36f80c7a"
"gitHead": "6c0a9fb047a2b8548d2c4ec77609bd1aa04ebbf1"
}
SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc