@iobroker/js-controller-common-db
Version:
The Library contains the common utils for the ioBroker controller which can be used by db classes too, as they do not rely on the db (circular dependencies).
13 lines • 663 B
JavaScript
/** Prefix for system internal adapter and instance ids */
export const SYSTEM_ADAPTER_PREFIX = 'system.adapter.';
/** Prefix for host object ids */
export const SYSTEM_HOST_PREFIX = 'system.host.';
/** The system repositories id */
export const SYSTEM_REPOSITORIES_ID = 'system.repositories';
/** The system config id */
export const SYSTEM_CONFIG_ID = 'system.config';
/** Unicode symbol to be appended on endkey of getObjectView */
export const HIGHEST_UNICODE_SYMBOL = '\u9999';
/** Default limit for generating a warning if exceeding the number of objects per instance */
export const DEFAULT_OBJECTS_WARN_LIMIT = 5_000;
//# sourceMappingURL=constants.js.map