@iobroker/js-controller-common-db 7.2.3 → 8.0.0-alpha.1-20260921-e5941ca8a
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.
- package/build/cjs/index.js +3 -3
- package/build/cjs/lib/common/aliasProcessing.js +6 -0
- package/build/cjs/lib/common/aliasProcessing.js.map +2 -2
- package/build/cjs/lib/common/interview.js +2 -0
- package/build/cjs/lib/common/interview.js.map +1 -1
- package/build/cjs/lib/common/logger.d.ts +34 -1
- package/build/cjs/lib/common/logger.js +37 -37
- package/build/cjs/lib/common/logger.js.map +2 -2
- package/build/cjs/lib/common/maybeCallback.js +4 -0
- package/build/cjs/lib/common/maybeCallback.js.map +1 -1
- package/build/cjs/lib/common/password.d.ts +9 -0
- package/build/cjs/lib/common/password.js +8 -6
- package/build/cjs/lib/common/password.js.map +2 -2
- package/build/cjs/lib/common/session.js +10 -5
- package/build/cjs/lib/common/session.js.map +2 -2
- package/build/cjs/lib/common/tools.d.ts +164 -59
- package/build/cjs/lib/common/tools.js +497 -476
- package/build/cjs/lib/common/tools.js.map +3 -3
- package/build/esm/lib/common/aliasProcessing.d.ts.map +1 -1
- package/build/esm/lib/common/aliasProcessing.js +5 -0
- package/build/esm/lib/common/aliasProcessing.js.map +1 -1
- package/build/esm/lib/common/logger.d.ts +34 -1
- package/build/esm/lib/common/logger.d.ts.map +1 -1
- package/build/esm/lib/common/logger.js +45 -49
- package/build/esm/lib/common/logger.js.map +1 -1
- package/build/esm/lib/common/password.d.ts +9 -0
- package/build/esm/lib/common/password.d.ts.map +1 -1
- package/build/esm/lib/common/password.js +5 -0
- package/build/esm/lib/common/password.js.map +1 -1
- package/build/esm/lib/common/session.d.ts.map +1 -1
- package/build/esm/lib/common/session.js +6 -6
- package/build/esm/lib/common/session.js.map +1 -1
- package/build/esm/lib/common/tools.d.ts +164 -59
- package/build/esm/lib/common/tools.d.ts.map +1 -1
- package/build/esm/lib/common/tools.js +535 -586
- package/build/esm/lib/common/tools.js.map +1 -1
- package/build/tsconfig.build.tsbuildinfo +1 -1
- package/package.json +18 -18
|
@@ -1,6 +1,7 @@
|
|
|
1
|
-
import { type
|
|
2
|
-
import type
|
|
3
|
-
|
|
1
|
+
import { type ExecOptions } from 'node:child_process';
|
|
2
|
+
import { type CommandResult, type PackageManager } from '@alcalzone/pak';
|
|
3
|
+
type ObjectsRedisClient = any;
|
|
4
|
+
type StatesRedisClient = any;
|
|
4
5
|
type DockerInformation = {
|
|
5
6
|
/** If it is a Docker installation */
|
|
6
7
|
isDocker: boolean;
|
|
@@ -14,6 +15,7 @@ type DockerInformation = {
|
|
|
14
15
|
/** If it is the official Docker image */
|
|
15
16
|
isOfficial: false;
|
|
16
17
|
};
|
|
18
|
+
/** Detailed information about the host system ioBroker runs on */
|
|
17
19
|
export interface HostInfo {
|
|
18
20
|
/** Converted OS for human readability */
|
|
19
21
|
Platform: NodeJS.Platform | 'docker' | 'Windows' | 'OSX';
|
|
@@ -52,14 +54,15 @@ interface FormatAliasValueOptions {
|
|
|
52
54
|
/** State to format */
|
|
53
55
|
state: ioBroker.State | null | undefined;
|
|
54
56
|
/** Logger used for logging */
|
|
55
|
-
logger:
|
|
57
|
+
logger: InternalLogger;
|
|
56
58
|
/** Prefix for log messages */
|
|
57
59
|
logNamespace: string;
|
|
58
|
-
/**
|
|
60
|
+
/** ID of the source object, used for logging */
|
|
59
61
|
sourceId?: string;
|
|
60
|
-
/**
|
|
62
|
+
/** ID of the target object, used for logging */
|
|
61
63
|
targetId?: string;
|
|
62
64
|
}
|
|
65
|
+
/** Information about the available ioBroker Docker image */
|
|
63
66
|
export interface DockerImageInformation {
|
|
64
67
|
/** The official version like v10.0.0 */
|
|
65
68
|
version: string;
|
|
@@ -93,20 +96,26 @@ export declare function copyAttributes(oldObj: Record<string, any>, newObj: Reco
|
|
|
93
96
|
*/
|
|
94
97
|
export declare function checkNonEditable(oldObject: ioBroker.SettableObject | null, newObject: ioBroker.SettableObject): boolean;
|
|
95
98
|
/**
|
|
96
|
-
* Checks if a version is up
|
|
99
|
+
* Checks if a version is up to date, throws error on invalid version strings
|
|
97
100
|
*
|
|
98
101
|
* @param repoVersion version in repository
|
|
99
102
|
* @param installedVersion the current installed version
|
|
100
103
|
*/
|
|
101
104
|
export declare function upToDate(repoVersion: string, installedVersion: string): boolean;
|
|
102
|
-
|
|
105
|
+
/**
|
|
106
|
+
* Decrypt a phrase that was encrypted with the legacy aes192 algorithm
|
|
107
|
+
*
|
|
108
|
+
* @param password The password used to derive the decryption key
|
|
109
|
+
* @param data The encrypted data to decrypt
|
|
110
|
+
*/
|
|
111
|
+
export declare function decryptPhrase(password: string, data: string | Buffer): Promise<null | string>;
|
|
103
112
|
/**
|
|
104
113
|
* Checks if multiple host objects exists, without using object views
|
|
105
114
|
*
|
|
106
115
|
* @param objects the objects db
|
|
107
116
|
* @returns true if only one host object exists
|
|
108
117
|
*/
|
|
109
|
-
export declare function isSingleHost(objects:
|
|
118
|
+
export declare function isSingleHost(objects: ObjectsRedisClient): Promise<boolean>;
|
|
110
119
|
/**
|
|
111
120
|
* Checks if at least one host is running in a Multihost environment
|
|
112
121
|
*
|
|
@@ -114,7 +123,7 @@ export declare function isSingleHost(objects: any): Promise<boolean>;
|
|
|
114
123
|
* @param states the states db
|
|
115
124
|
* @returns true if one or more hosts running else false
|
|
116
125
|
*/
|
|
117
|
-
export declare function isHostRunning(objects:
|
|
126
|
+
export declare function isHostRunning(objects: ObjectsRedisClient, states: StatesRedisClient): Promise<boolean>;
|
|
118
127
|
/**
|
|
119
128
|
* Checks if ioBroker is installed in a dev environment
|
|
120
129
|
*/
|
|
@@ -151,18 +160,24 @@ export declare function isDocker(): boolean;
|
|
|
151
160
|
* @param objects - objects DB
|
|
152
161
|
* @returns uuid if successfully created/updated
|
|
153
162
|
*/
|
|
154
|
-
export declare function createUuid(objects:
|
|
163
|
+
export declare function createUuid(objects: ObjectsRedisClient): Promise<void | string>;
|
|
155
164
|
/**
|
|
156
|
-
* Download file to tmp or return file name directly
|
|
165
|
+
* Download the file to tmp or return the file name directly
|
|
157
166
|
*
|
|
158
|
-
* @param urlOrPath
|
|
159
|
-
* @param fileName
|
|
160
|
-
* @
|
|
167
|
+
* @param urlOrPath URL to download from, or a local file path
|
|
168
|
+
* @param fileName Target file name used when the source is downloaded to the tmp directory
|
|
169
|
+
* @returns The path to the local file
|
|
161
170
|
*/
|
|
162
|
-
export declare function getFile(urlOrPath: string, fileName: string
|
|
163
|
-
export declare function getJson(urlOrPath: string, agent: string, callback: (sources?: Record<string, any> | null, urlOrPath?: string | null) => void): Promise<void>;
|
|
171
|
+
export declare function getFile(urlOrPath: string, fileName: string): Promise<string>;
|
|
164
172
|
/**
|
|
165
|
-
* Return content of
|
|
173
|
+
* Return the content of a JSON file, downloading it from a URL or reading it directly from disk
|
|
174
|
+
*
|
|
175
|
+
* @param urlOrPath URL to download the JSON from, or a local file path
|
|
176
|
+
* @param agent User agent string used for the download request
|
|
177
|
+
*/
|
|
178
|
+
export declare function getJson<T>(urlOrPath: string, agent?: string): Promise<T | null>;
|
|
179
|
+
/**
|
|
180
|
+
* Return the content of the json file. Download it or read directly
|
|
166
181
|
*
|
|
167
182
|
* @param urlOrPath URL where the json file could be found
|
|
168
183
|
* @param agent optional agent identifier like "Windows Chrome 12.56"
|
|
@@ -182,6 +197,7 @@ interface Multilingual {
|
|
|
182
197
|
uk?: string;
|
|
183
198
|
'zh-cn'?: string;
|
|
184
199
|
}
|
|
200
|
+
/** Information about an installed adapter */
|
|
185
201
|
export interface AdapterInformation {
|
|
186
202
|
/** this flag is only true for the js-controller */
|
|
187
203
|
controller: boolean;
|
|
@@ -189,7 +205,7 @@ export interface AdapterInformation {
|
|
|
189
205
|
version: string;
|
|
190
206
|
/** path to icon of the adapter */
|
|
191
207
|
icon: string;
|
|
192
|
-
/** path to local icon of the
|
|
208
|
+
/** path to the local icon of the adapter */
|
|
193
209
|
localIcon?: string;
|
|
194
210
|
/** title of the adapter */
|
|
195
211
|
title: string;
|
|
@@ -221,16 +237,12 @@ export interface AdapterInformation {
|
|
|
221
237
|
export declare function getInstalledInfo(hostRunningVersion?: string): Record<string, AdapterInformation>;
|
|
222
238
|
/**
|
|
223
239
|
* Get a list of all adapters and controller in some repository file or in /conf/source-dist.json
|
|
224
|
-
*
|
|
225
|
-
* @param urlOrPath URL starting with http:// or https:// or local file link
|
|
226
|
-
* @param additionalInfo destination object
|
|
227
|
-
* @param callback function (err, sources, actualHash) { }
|
|
228
240
|
*/
|
|
229
|
-
export declare function getRepositoryFile(
|
|
241
|
+
export declare function getRepositoryFile(): Promise<ioBroker.RepositoryJson>;
|
|
230
242
|
/** Result of getRepositoryFileAsync */
|
|
231
243
|
export interface RepositoryFile {
|
|
232
244
|
/** The repository JSON content */
|
|
233
|
-
json: ioBroker.RepositoryJson;
|
|
245
|
+
json: ioBroker.RepositoryJson | null;
|
|
234
246
|
/** Whether the repository has changed compared to the provided hash */
|
|
235
247
|
changed: boolean;
|
|
236
248
|
/** The actual hash of the repository */
|
|
@@ -262,9 +274,13 @@ export declare function getAdapterDir(adapter: string): string | null;
|
|
|
262
274
|
* Returns the hostname of this host
|
|
263
275
|
*/
|
|
264
276
|
export declare function getHostName(): string;
|
|
277
|
+
/** Options for installing a node module */
|
|
265
278
|
export interface InstallNodeModuleOptions {
|
|
279
|
+
/** Whether the `--unsafe-perm` flag should be used */
|
|
266
280
|
unsafePerm?: boolean;
|
|
281
|
+
/** Whether to include `stderr` in the output and increase the loglevel to include more than errors */
|
|
267
282
|
debug?: boolean;
|
|
283
|
+
/** Which directory to work in. If none is given, this defaults to ioBroker's root directory. */
|
|
268
284
|
cwd?: string;
|
|
269
285
|
}
|
|
270
286
|
/**
|
|
@@ -281,8 +297,11 @@ export declare function detectPackageManagerWithFallback(cwd?: string): Promise<
|
|
|
281
297
|
* @param options Options for the installation
|
|
282
298
|
*/
|
|
283
299
|
export declare function installNodeModule(npmUrl: string, options?: InstallNodeModuleOptions): Promise<CommandResult>;
|
|
300
|
+
/** Options for uninstalling a node module */
|
|
284
301
|
export interface UninstallNodeModuleOptions {
|
|
302
|
+
/** Whether to include `stderr` in the output and increase the loglevel to include more than errors */
|
|
285
303
|
debug?: boolean;
|
|
304
|
+
/** Which directory to work in. If none is given, this defaults to ioBroker's root directory. */
|
|
286
305
|
cwd?: string;
|
|
287
306
|
}
|
|
288
307
|
/**
|
|
@@ -292,9 +311,13 @@ export interface UninstallNodeModuleOptions {
|
|
|
292
311
|
* @param options Options for the installation
|
|
293
312
|
*/
|
|
294
313
|
export declare function uninstallNodeModule(packageName: string, options?: UninstallNodeModuleOptions): Promise<CommandResult>;
|
|
314
|
+
/** Options for rebuilding native node modules */
|
|
295
315
|
export interface RebuildNodeModulesOptions {
|
|
316
|
+
/** Whether to include `stderr` in the output and increase the loglevel to include more than errors */
|
|
296
317
|
debug?: boolean;
|
|
318
|
+
/** Which directory to work in. If none is given, this defaults to ioBroker's root directory. */
|
|
297
319
|
cwd?: string;
|
|
320
|
+
/** module that should be rebuilt */
|
|
298
321
|
module?: string;
|
|
299
322
|
}
|
|
300
323
|
/**
|
|
@@ -304,15 +327,20 @@ export interface RebuildNodeModulesOptions {
|
|
|
304
327
|
* @param options Options for the rebuild
|
|
305
328
|
*/
|
|
306
329
|
export declare function rebuildNodeModules(options?: RebuildNodeModulesOptions): Promise<CommandResult>;
|
|
330
|
+
/** Information about the disk on which ioBroker is installed */
|
|
307
331
|
export interface GetDiskInfoResponse {
|
|
332
|
+
/** Total size of the disk in bytes */
|
|
308
333
|
'Disk size': number;
|
|
334
|
+
/** Free space on the disk in bytes */
|
|
309
335
|
'Disk free': number;
|
|
310
336
|
}
|
|
311
337
|
/**
|
|
312
|
-
* Read disk
|
|
338
|
+
* Read the disk-free space
|
|
313
339
|
*/
|
|
314
340
|
export declare function getDiskInfo(): Promise<GetDiskInfoResponse | null>;
|
|
341
|
+
/** Parsed information about an SSL/TLS certificate */
|
|
315
342
|
export interface CertificateInfo {
|
|
343
|
+
/** path to the certificate file, or null if the certificate was passed directly */
|
|
316
344
|
certificateFilename: string | null;
|
|
317
345
|
/** the certificate itself */
|
|
318
346
|
certificate: string;
|
|
@@ -320,15 +348,17 @@ export interface CertificateInfo {
|
|
|
320
348
|
serialNumber: string;
|
|
321
349
|
/** type of signature as text like "RSA" */
|
|
322
350
|
signature: string;
|
|
323
|
-
/** bits used for encryption key like 2048 */
|
|
351
|
+
/** bits used for an encryption key like 2048 */
|
|
324
352
|
keyLength: number;
|
|
325
353
|
/** issuer of the certificate */
|
|
326
354
|
issuer: Record<string, any>;
|
|
327
355
|
/** subject that is signed */
|
|
328
356
|
subject: Record<string, any>;
|
|
329
|
-
/** server name this certificate
|
|
357
|
+
/** server name this certificate belongs to */
|
|
330
358
|
dnsNames: {
|
|
359
|
+
/** Type of the subject alternative name entry */
|
|
331
360
|
type: number;
|
|
361
|
+
/** Value of the subject alternative name entry */
|
|
332
362
|
value: string;
|
|
333
363
|
}[];
|
|
334
364
|
/** this certificate can be used for the following purposes */
|
|
@@ -343,12 +373,15 @@ export interface CertificateInfo {
|
|
|
343
373
|
/**
|
|
344
374
|
* Returns information about a certificate
|
|
345
375
|
*
|
|
346
|
-
* @param cert
|
|
376
|
+
* @param cert The certificate as a PEM string, or a path to the certificate file
|
|
347
377
|
* @returns certificate information object
|
|
348
378
|
*/
|
|
349
379
|
export declare function getCertificateInfo(cert: string): null | CertificateInfo;
|
|
380
|
+
/** Default self-signed certificates shipped with the controller */
|
|
350
381
|
export interface DefaultCertificates {
|
|
382
|
+
/** PEM encoded a default private key */
|
|
351
383
|
defaultPrivate: string;
|
|
384
|
+
/** PEM encoded default public certificate */
|
|
352
385
|
defaultPublic: string;
|
|
353
386
|
}
|
|
354
387
|
/** Maximum time after which cert has to expire - 365 days in ms */
|
|
@@ -369,14 +402,14 @@ export declare function generateDefaultCertificates(): DefaultCertificates;
|
|
|
369
402
|
/**
|
|
370
403
|
* Collects information about host and available adapters
|
|
371
404
|
*
|
|
372
|
-
*
|
|
405
|
+
* The following info will be collected:
|
|
373
406
|
* - available adapters
|
|
374
407
|
* - node.js --version
|
|
375
408
|
* - npm --version
|
|
376
409
|
*
|
|
377
410
|
* @param objects db
|
|
378
411
|
*/
|
|
379
|
-
export declare function getHostInfo(objects:
|
|
412
|
+
export declare function getHostInfo(objects: ObjectsRedisClient): Promise<HostInfo>;
|
|
380
413
|
/**
|
|
381
414
|
* Finds the controller root directory
|
|
382
415
|
*
|
|
@@ -391,7 +424,7 @@ export declare function getRootDir(): string;
|
|
|
391
424
|
export declare function isDevServerInstallation(): boolean;
|
|
392
425
|
/**
|
|
393
426
|
* All paths are returned always relative to /node_modules/' + appName + '.js-controller
|
|
394
|
-
* the result has always "/" as last symbol
|
|
427
|
+
* the result has always "/" as the last symbol
|
|
395
428
|
*/
|
|
396
429
|
export declare function getDefaultDataDir(): string;
|
|
397
430
|
/**
|
|
@@ -418,7 +451,15 @@ export declare function promisify(fn: (...args: any[]) => void, context?: any, r
|
|
|
418
451
|
* Otherwise, the Promise will resolve with an array
|
|
419
452
|
*/
|
|
420
453
|
export declare function promisifyNoError(fn: (...args: any[]) => void, context?: any, returnArgNames?: string[]): (...args: any[]) => Promise<any>;
|
|
421
|
-
|
|
454
|
+
/**
|
|
455
|
+
* Set the given quality code on all states belonging to an instance
|
|
456
|
+
*
|
|
457
|
+
* @param objects The objects database client
|
|
458
|
+
* @param states The states database client
|
|
459
|
+
* @param namespace The instance namespace whose states should be updated (e.g. "admin.0")
|
|
460
|
+
* @param q The quality code to assign to each state
|
|
461
|
+
*/
|
|
462
|
+
export declare function setQualityForInstance(objects: ObjectsRedisClient, states: StatesRedisClient, namespace: string, q: number): Promise<void>;
|
|
422
463
|
/**
|
|
423
464
|
* Converts ioB pattern into regex.
|
|
424
465
|
*
|
|
@@ -428,8 +469,7 @@ export declare function pattern2RegEx(pattern: string): string;
|
|
|
428
469
|
/**
|
|
429
470
|
* Checks if a pattern is valid
|
|
430
471
|
*
|
|
431
|
-
* @param pattern
|
|
432
|
-
* @pattern pattern to check for validity
|
|
472
|
+
* @param pattern The pattern to check for validity
|
|
433
473
|
*/
|
|
434
474
|
export declare function isValidPattern(pattern: string): boolean;
|
|
435
475
|
/**
|
|
@@ -473,10 +513,10 @@ export declare function isArray(it: unknown): it is any[];
|
|
|
473
513
|
*/
|
|
474
514
|
export declare function measureEventLoopLag(ms: number, cb: (eventLoopLag?: number) => void): void;
|
|
475
515
|
/**
|
|
476
|
-
* This function
|
|
516
|
+
* This function converts state values by read and write of aliases. Function is synchronous.
|
|
477
517
|
* On errors, null is returned instead
|
|
478
518
|
*
|
|
479
|
-
* @param options
|
|
519
|
+
* @param options Source and target common/id definitions, the state to convert and a logger
|
|
480
520
|
*/
|
|
481
521
|
export declare function formatAliasValue(options: FormatAliasValueOptions): ioBroker.State | null;
|
|
482
522
|
/**
|
|
@@ -487,9 +527,9 @@ export declare function formatAliasValue(options: FormatAliasValueOptions): ioBr
|
|
|
487
527
|
* @param allEnums objects with all enums to use - if not provided all enums will be queried
|
|
488
528
|
* @returns Promise All objects are tried to be updated - reject will happen as soon as one fails with the error of the first fail
|
|
489
529
|
*/
|
|
490
|
-
export declare function removeIdFromAllEnums(objects:
|
|
530
|
+
export declare function removeIdFromAllEnums(objects: ObjectsRedisClient, id: string, allEnums?: Record<string, ioBroker.EnumObject>): Promise<void>;
|
|
491
531
|
/**
|
|
492
|
-
* Parses dependencies to standardized object of form
|
|
532
|
+
* Parses dependencies to a standardized object of form
|
|
493
533
|
*
|
|
494
534
|
* @param dependencies dependencies array or single dependency
|
|
495
535
|
* @returns parsedDeps parsed dependencies
|
|
@@ -501,9 +541,9 @@ export declare function parseDependencies(dependencies: string[] | Record<string
|
|
|
501
541
|
*
|
|
502
542
|
* @param obj an object which will be validated
|
|
503
543
|
* @param extend (optional) if true checks allow more optional cases for extendObject calls
|
|
504
|
-
* @throws Error if a property has the wrong type or `obj.type` is non-existing
|
|
544
|
+
* @throws {Error} if a property has the wrong type or `obj.type` is non-existing
|
|
505
545
|
*/
|
|
506
|
-
export declare function validateGeneralObjectProperties(obj:
|
|
546
|
+
export declare function validateGeneralObjectProperties(obj: ioBroker.SettableObject | null | undefined, extend?: boolean): void;
|
|
507
547
|
/**
|
|
508
548
|
* get all instances of all adapters in the list
|
|
509
549
|
*
|
|
@@ -511,14 +551,14 @@ export declare function validateGeneralObjectProperties(obj: any, extend?: boole
|
|
|
511
551
|
* @param objects class redis objects
|
|
512
552
|
* @returns array of IDs
|
|
513
553
|
*/
|
|
514
|
-
export declare function getAllInstances(adapters: string[], objects:
|
|
554
|
+
export declare function getAllInstances(adapters: string[], objects: ObjectsRedisClient): Promise<string[]>;
|
|
515
555
|
/**
|
|
516
556
|
* Get all existing enums
|
|
517
557
|
*
|
|
518
558
|
* @param objects - objects db
|
|
519
559
|
* @returns Promise
|
|
520
560
|
*/
|
|
521
|
-
export declare function getAllEnums(objects:
|
|
561
|
+
export declare function getAllEnums(objects: ObjectsRedisClient): Promise<Record<string, ioBroker.EnumObject>>;
|
|
522
562
|
/**
|
|
523
563
|
* get async all instances of one adapter
|
|
524
564
|
*
|
|
@@ -526,16 +566,36 @@ export declare function getAllEnums(objects: any): Promise<Record<string, ioBrok
|
|
|
526
566
|
* @param objects objects DB
|
|
527
567
|
* @param withObjects return objects instead of only ids
|
|
528
568
|
*/
|
|
529
|
-
export declare function getInstances<TWithObjects extends boolean>(adapter: string, objects:
|
|
569
|
+
export declare function getInstances<TWithObjects extends boolean>(adapter: string, objects: ObjectsRedisClient, withObjects: TWithObjects): Promise<TWithObjects extends true ? ioBroker.InstanceObject[] : ioBroker.ObjectIDs.Instance[]>;
|
|
530
570
|
/**
|
|
531
571
|
* Executes a command asynchronously. On success, the promise resolves with stdout and stderr.
|
|
532
|
-
*
|
|
572
|
+
* In error, the promise rejects with the exit code or signal, as well as stdout and stderr.
|
|
533
573
|
*
|
|
534
574
|
* @param command The command to execute
|
|
535
575
|
* @param execOptions The options for child_process.exec
|
|
536
576
|
* @returns child process promise
|
|
537
577
|
*/
|
|
538
|
-
export declare function execAsync(command: string, execOptions?: ExecOptions):
|
|
578
|
+
export declare function execAsync(command: string, execOptions?: ExecOptions): Promise<{
|
|
579
|
+
stdout?: string;
|
|
580
|
+
stderr?: string;
|
|
581
|
+
}>;
|
|
582
|
+
/**
|
|
583
|
+
* Executes a command asynchronously. On success, the promise resolves with stdout and stderr.
|
|
584
|
+
*
|
|
585
|
+
* On error it rejects with the error of `child_process.execFile`, whose `code` (the exit code, or `ENOENT` when
|
|
586
|
+
* the command does not exist), `killed` and `signal` say what happened - a command killed by the `timeout`
|
|
587
|
+
* option has to stay distinguishable from one that exited non-zero. Only the message is replaced by the output
|
|
588
|
+
* on stderr when there is any, because that usually says more than "Command failed".
|
|
589
|
+
*
|
|
590
|
+
* @param file The command to execute
|
|
591
|
+
* @param args The arguments to pass to the command
|
|
592
|
+
* @param execOptions The options for child_process.execFile
|
|
593
|
+
* @returns child process promise
|
|
594
|
+
*/
|
|
595
|
+
export declare function execFileAsync(file: string, args: readonly string[], execOptions?: ExecOptions): Promise<{
|
|
596
|
+
stdout?: string;
|
|
597
|
+
stderr?: string;
|
|
598
|
+
}>;
|
|
539
599
|
/**
|
|
540
600
|
* Takes input from one stream and writes it to another as soon as a complete line was read.
|
|
541
601
|
*
|
|
@@ -559,7 +619,7 @@ export declare function resolveAdapterMainFile(adapter: string): Promise<string>
|
|
|
559
619
|
/**
|
|
560
620
|
* Returns the default nodeArgs required to execute the main file, e.g., transpile hooks for TypeScript
|
|
561
621
|
*
|
|
562
|
-
* @param mainFile
|
|
622
|
+
* @param mainFile Path to the adapter main file that will be executed
|
|
563
623
|
* @returns default node args for cli
|
|
564
624
|
*/
|
|
565
625
|
export declare function getDefaultNodeArgs(mainFile: string): string[];
|
|
@@ -575,9 +635,13 @@ export declare function getDefaultRequireResolvePaths(callerModule: NodeModule):
|
|
|
575
635
|
* @param url The URL to parse
|
|
576
636
|
*/
|
|
577
637
|
export declare function isShortGithubUrl(url: string): boolean;
|
|
638
|
+
/** A short GitHub URL parsed into its separate parts */
|
|
578
639
|
export interface ParsedGithubUrl {
|
|
640
|
+
/** GitHub user or organization name */
|
|
579
641
|
user: string;
|
|
642
|
+
/** Repository name */
|
|
580
643
|
repo: string;
|
|
644
|
+
/** Optional commit-ish (branch, tag or commit hash) */
|
|
581
645
|
commit?: string;
|
|
582
646
|
}
|
|
583
647
|
/**
|
|
@@ -614,7 +678,12 @@ export declare function removePreservedProperties(preserve: Record<string, any>,
|
|
|
614
678
|
*/
|
|
615
679
|
export declare function getInstanceIndicatorObjects(namespace: string, adapterCommon: ioBroker.AdapterCommon): ioBroker.StateObject[];
|
|
616
680
|
export type InternalLogger = Omit<ioBroker.Logger, 'level'>;
|
|
617
|
-
|
|
681
|
+
/**
|
|
682
|
+
* Normalize a logger-like object into a complete logger, filling missing log level methods with no-ops
|
|
683
|
+
*
|
|
684
|
+
* @param log A logger or partial logger object; if falsy, a no-op logger is created
|
|
685
|
+
*/
|
|
686
|
+
export declare function getLogger(log?: InternalLogger): InternalLogger;
|
|
618
687
|
/**
|
|
619
688
|
* Set capabilities of the given executable on Linux systems
|
|
620
689
|
*
|
|
@@ -634,8 +703,21 @@ export declare function setExecutableCapabilities(execPath: string, capabilities
|
|
|
634
703
|
* @param password Decoded password for ioBroker.net
|
|
635
704
|
* @returns array of all licenses stored on iobroker.net
|
|
636
705
|
*/
|
|
637
|
-
export declare function updateLicenses(objects:
|
|
706
|
+
export declare function updateLicenses(objects: ObjectsRedisClient, login: string, password: string): Promise<{
|
|
707
|
+
json: string;
|
|
708
|
+
id: string;
|
|
709
|
+
email: string;
|
|
710
|
+
product: string;
|
|
711
|
+
version: string;
|
|
712
|
+
invoice: string;
|
|
713
|
+
uuid: string;
|
|
714
|
+
time: string;
|
|
715
|
+
validTill: string;
|
|
716
|
+
usedBy?: string;
|
|
717
|
+
}[]>;
|
|
718
|
+
/** Options for compressing a file with GZip */
|
|
638
719
|
export interface GZipFileOptions {
|
|
720
|
+
/** Delete the input file after compression. Default: false. */
|
|
639
721
|
deleteInput?: boolean;
|
|
640
722
|
}
|
|
641
723
|
/**
|
|
@@ -646,8 +728,9 @@ export interface GZipFileOptions {
|
|
|
646
728
|
* @param options Options for the compression
|
|
647
729
|
*/
|
|
648
730
|
export declare function compressFileGZip(inputFilename: string, outputFilename: string, options?: GZipFileOptions): Promise<void>;
|
|
731
|
+
/** Result of validating a configured data directory */
|
|
649
732
|
export interface DataDirValidation {
|
|
650
|
-
/** if data directory is valid */
|
|
733
|
+
/** if the data directory is valid */
|
|
651
734
|
valid: boolean;
|
|
652
735
|
/** absolute path it resolves too */
|
|
653
736
|
path: string;
|
|
@@ -655,26 +738,26 @@ export interface DataDirValidation {
|
|
|
655
738
|
reason: string;
|
|
656
739
|
}
|
|
657
740
|
/**
|
|
658
|
-
* Validate if the dir
|
|
741
|
+
* Validate if the dir is a valid dataDir
|
|
659
742
|
* Data dirs in node_modules are not allowed, note that dataDirs are relative to js-controller dir or absolute
|
|
660
743
|
*
|
|
661
744
|
* @param dataDir dataDir to check
|
|
662
745
|
*/
|
|
663
746
|
export declare function validateDataDir(dataDir: string): DataDirValidation;
|
|
664
747
|
/**
|
|
665
|
-
* If an array is passed it will be stringified, else the parameter is returned
|
|
748
|
+
* If an array is passed, it will be stringified, else the parameter is returned
|
|
666
749
|
*
|
|
667
750
|
* @param maybeArr parameter which will be stringified if it is an array
|
|
668
751
|
*/
|
|
669
752
|
export declare function maybeArrayToString<T>(maybeArr: T): T extends any[] ? string : T;
|
|
670
753
|
/**
|
|
671
|
-
* Checks if given ip address is matching ipv4 or ipv6 localhost
|
|
754
|
+
* Checks if the given ip address is matching ipv4 or ipv6 localhost
|
|
672
755
|
*
|
|
673
756
|
* @param ip ipv4 or ipv6 address
|
|
674
757
|
*/
|
|
675
758
|
export declare function isLocalAddress(ip: string): boolean;
|
|
676
759
|
/**
|
|
677
|
-
* Checks if given ip address is matching ipv4 or ipv6 "listen all" address
|
|
760
|
+
* Checks if the given ip address is matching ipv4 or ipv6 "listen all" address
|
|
678
761
|
*
|
|
679
762
|
* @param ip ipv4 or ipv6 address
|
|
680
763
|
*/
|
|
@@ -684,7 +767,7 @@ export declare function isListenAllAddress(ip: string): boolean;
|
|
|
684
767
|
*/
|
|
685
768
|
export declare function getLocalAddress(): '127.0.0.1' | '::1';
|
|
686
769
|
/**
|
|
687
|
-
* Get the ip to listen to all addresses according to configured DNS resolution strategy
|
|
770
|
+
* Get the ip to listen to all addresses according to a configured DNS resolution strategy
|
|
688
771
|
*/
|
|
689
772
|
export declare function getListenAllAddress(): '0.0.0.0' | '::';
|
|
690
773
|
/**
|
|
@@ -692,7 +775,7 @@ export declare function getListenAllAddress(): '0.0.0.0' | '::';
|
|
|
692
775
|
*/
|
|
693
776
|
export declare function ensureDNSOrder(): void;
|
|
694
777
|
/**
|
|
695
|
-
* Determine if ioBroker is installed as systemd service
|
|
778
|
+
* Determine if ioBroker is installed as a systemd service
|
|
696
779
|
*/
|
|
697
780
|
export declare function isIoBrokerInstalledAsSystemd(): Promise<boolean>;
|
|
698
781
|
/**
|
|
@@ -708,13 +791,13 @@ export declare function getHostObject(oldObj?: ioBroker.HostObject | null): ioBr
|
|
|
708
791
|
*/
|
|
709
792
|
export declare function getPidsFileName(): string;
|
|
710
793
|
/**
|
|
711
|
-
* Get all ioBroker process
|
|
794
|
+
* Get all ioBroker process IDs
|
|
712
795
|
*
|
|
713
|
-
* @returns process
|
|
796
|
+
* @returns process IDs or empty array if no process running
|
|
714
797
|
*/
|
|
715
798
|
export declare function getPids(): Promise<number[]>;
|
|
716
799
|
/**
|
|
717
|
-
* Check if given string is a valid loglevel
|
|
800
|
+
* Check if a given string is a valid loglevel
|
|
718
801
|
*
|
|
719
802
|
* @param level level to validate
|
|
720
803
|
*/
|
|
@@ -725,5 +808,27 @@ export declare function isLogLevel(level: string): level is ioBroker.LogLevel;
|
|
|
725
808
|
* @returns pid if running else undefined
|
|
726
809
|
*/
|
|
727
810
|
export declare function getControllerPid(): Promise<number | undefined>;
|
|
811
|
+
/**
|
|
812
|
+
* Check if a process with the given id currently exists
|
|
813
|
+
*
|
|
814
|
+
* @param pid process id to check
|
|
815
|
+
* @returns true if a process with this id is running
|
|
816
|
+
*/
|
|
817
|
+
export declare function isProcessRunning(pid: number): boolean;
|
|
818
|
+
/**
|
|
819
|
+
* Check if a pid is proven to belong to a program which is not the controller
|
|
820
|
+
*
|
|
821
|
+
* After a reboot the operating system may hand a recorded pid to an unrelated program, which
|
|
822
|
+
* Windows in particular does readily, so a live pid alone does not prove the controller is
|
|
823
|
+
* running. Being a Node.js process proves nothing either - Node-RED, zigbee2mqtt or this very CLI
|
|
824
|
+
* are Node.js processes too - so the command line has to identify the controller. This only
|
|
825
|
+
* reports a foreign program when it could actually be identified as one: whenever the process
|
|
826
|
+
* cannot be inspected, the answer is "no", because acting on a wrong guess would start a second
|
|
827
|
+
* controller and both would then fail with EADDRINUSE.
|
|
828
|
+
*
|
|
829
|
+
* @param pid process id to inspect
|
|
830
|
+
* @returns true only if the process was identified as a different program
|
|
831
|
+
*/
|
|
832
|
+
export declare function isForeignProcess(pid: number): Promise<boolean>;
|
|
728
833
|
export * from '../../lib/common/maybeCallback.js';
|
|
729
834
|
//# sourceMappingURL=tools.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"tools.d.ts","sourceRoot":"","sources":["../../../../src/lib/common/tools.ts"],"names":[],"mappings":"AAMA,OAAO,EAAE,KAAK,mBAAmB,EAAuB,MAAM,yBAAyB,CAAC;AAGxF,OAAO,KAAK,EAAE,aAAa,EAAkB,cAAc,EAAE,MAAM,gBAAgB,CAAC;AAQpF,OAAO,KAAK,EAAE,WAAW,EAAE,MAAM,oBAAoB,CAAC;AAwBtD,KAAK,iBAAiB,GAChB;IACI,qCAAqC;IACrC,QAAQ,EAAE,OAAO,CAAC;IAClB,yCAAyC;IACzC,UAAU,EAAE,IAAI,CAAC;IACjB,8CAA8C;IAC9C,eAAe,EAAE,MAAM,CAAC;CAC3B,GACD;IACI,qCAAqC;IACrC,QAAQ,EAAE,OAAO,CAAC;IAClB,yCAAyC;IACzC,UAAU,EAAE,KAAK,CAAC;CACrB,CAAC;AAER,MAAM,WAAW,QAAQ;IACrB,yCAAyC;IACzC,QAAQ,EAAE,MAAM,CAAC,QAAQ,GAAG,QAAQ,GAAG,SAAS,GAAG,KAAK,CAAC;IACzD,wBAAwB;IACxB,EAAE,EAAE,MAAM,CAAC,QAAQ,CAAC;IACpB,gDAAgD;IAChD,iBAAiB,CAAC,EAAE,iBAAiB,CAAC;IACtC,wBAAwB;IACxB,YAAY,EAAE,MAAM,CAAC;IACrB,qBAAqB;IACrB,IAAI,EAAE,MAAM,GAAG,IAAI,CAAC;IACpB,gBAAgB;IAChB,KAAK,EAAE,MAAM,GAAG,IAAI,CAAC;IACrB,gBAAgB;IAChB,KAAK,EAAE,MAAM,GAAG,IAAI,CAAC;IACrB,wBAAwB;IACxB,GAAG,EAAE,MAAM,CAAC;IACZ,+BAA+B;IAC/B,eAAe,EAAE,MAAM,CAAC;IACxB,sBAAsB;IACtB,SAAS,EAAE,MAAM,CAAC;IAClB,4CAA4C;IAC5C,IAAI,EAAE,MAAM,CAAC;IACb,+CAA+C;IAC/C,UAAU,EAAE,MAAM,CAAC;IACnB,mCAAmC;IACnC,gBAAgB,EAAE,MAAM,CAAC;IACzB,kBAAkB;IAClB,GAAG,EAAE,MAAM,CAAC;CACf;AAED,UAAU,uBAAuB;IAC7B,0CAA0C;IAC1C,YAAY,CAAC,EAAE,OAAO,CAAC,QAAQ,CAAC,WAAW,CAAC,CAAC;IAC7C,0CAA0C;IAC1C,YAAY,CAAC,EAAE,OAAO,CAAC,QAAQ,CAAC,WAAW,CAAC,CAAC;IAC7C,sBAAsB;IACtB,KAAK,EAAE,QAAQ,CAAC,KAAK,GAAG,IAAI,GAAG,SAAS,CAAC;IACzC,8BAA8B;IAC9B,MAAM,EAAE,GAAG,CAAC;IACZ,8BAA8B;IAC9B,YAAY,EAAE,MAAM,CAAC;IACrB,gDAAgD;IAChD,QAAQ,CAAC,EAAE,MAAM,CAAC;IAClB,gDAAgD;IAChD,QAAQ,CAAC,EAAE,MAAM,CAAC;CACrB;AAmBD,MAAM,WAAW,sBAAsB;IACnC,wCAAwC;IACxC,OAAO,EAAE,MAAM,CAAC;IAChB,gCAAgC;IAChC,WAAW,EAAE,MAAM,CAAC;IACpB,6DAA6D;IAC7D,KAAK,EAAE,OAAO,CAAC;CAClB;AAED,oBAAY,MAAM;IACd,eAAe,eAAe;IAC9B,kBAAkB,gBAAgB;IAClC,eAAe,cAAc;IAC7B,eAAe,cAAc;CAChC;AA+BD,0DAA0D;AAC1D,eAAO,MAAM,eAAe,QAAmD,CAAC;AAEhF;;;;;;;GAOG;AACH,wBAAgB,cAAc,CAC1B,MAAM,EAAE,MAAM,CAAC,MAAM,EAAE,GAAG,CAAC,EAC3B,MAAM,EAAE,MAAM,CAAC,MAAM,EAAE,GAAG,CAAC,EAC3B,WAAW,CAAC,EAAE,MAAM,CAAC,MAAM,EAAE,GAAG,CAAC,EACjC,SAAS,CAAC,EAAE,OAAO,GACpB,IAAI,CA+BN;AAED;;;;;GAKG;AACH,wBAAgB,gBAAgB,CAC5B,SAAS,EAAE,QAAQ,CAAC,cAAc,GAAG,IAAI,EACzC,SAAS,EAAE,QAAQ,CAAC,cAAc,GACnC,OAAO,CAwDT;AAED;;;;;GAKG;AACH,wBAAgB,QAAQ,CAAC,WAAW,EAAE,MAAM,EAAE,gBAAgB,EAAE,MAAM,GAAG,OAAO,CAG/E;AAGD,wBAAgB,aAAa,CAAC,QAAQ,EAAE,MAAM,EAAE,IAAI,EAAE,GAAG,EAAE,QAAQ,EAAE,CAAC,SAAS,CAAC,EAAE,IAAI,GAAG,MAAM,KAAK,IAAI,GAAG,IAAI,CAwB9G;AAED;;;;;GAKG;AACH,wBAAsB,YAAY,CAAC,OAAO,EAAE,GAAG,GAAG,OAAO,CAAC,OAAO,CAAC,CAOjE;AAED;;;;;;GAMG;AACH,wBAAsB,aAAa,CAAC,OAAO,EAAE,GAAG,EAAE,MAAM,EAAE,GAAG,GAAG,OAAO,CAAC,OAAO,CAAC,CAkB/E;AAED;;GAEG;AACH,wBAAgB,iBAAiB,IAAI,OAAO,CAE3C;AAED,6GAA6G;AAC7G,KAAK,OAAO,GAAG,UAAU,GAAG,UAAU,CAAC;AAcvC,eAAO,MAAM,gBAAgB,aAAa,CAAC;AAC3C,eAAO,MAAM,OAAO,SAAe,CAAC;AAEpC;;;;GAIG;AACH,wBAAgB,OAAO,IAAI,MAAM,EAAE,CAelC;AAgED;;GAEG;AACH,wBAAsB,2BAA2B,IAAI,OAAO,CAAC,sBAAsB,CAAC,CASnF;AAED;;GAEG;AACH,wBAAgB,oBAAoB,IAAI,iBAAiB,CASxD;AAED;;GAEG;AACH,wBAAgB,8BAA8B,IAAI,OAAO,CAmBxD;AAED;;GAEG;AACH,wBAAgB,QAAQ,IAAI,OAAO,CA+BlC;AAgHD;;;;;GAKG;AACH,wBAAsB,UAAU,CAAC,OAAO,EAAE,GAAG,GAAG,OAAO,CAAC,IAAI,GAAG,MAAM,CAAC,CAuErE;AAED;;;;;;GAMG;AACH,wBAAsB,OAAO,CAAC,SAAS,EAAE,MAAM,EAAE,QAAQ,EAAE,MAAM,EAAE,QAAQ,EAAE,CAAC,IAAI,CAAC,EAAE,MAAM,KAAK,IAAI,GAAG,OAAO,CAAC,IAAI,CAAC,CA2CnH;AAGD,wBAAsB,OAAO,CACzB,SAAS,EAAE,MAAM,EACjB,KAAK,EAAE,MAAM,EACb,QAAQ,EAAE,CAAC,OAAO,CAAC,EAAE,MAAM,CAAC,MAAM,EAAE,GAAG,CAAC,GAAG,IAAI,EAAE,SAAS,CAAC,EAAE,MAAM,GAAG,IAAI,KAAK,IAAI,GACpF,OAAO,CAAC,IAAI,CAAC,CA2Ff;AAED;;;;;;GAMG;AACH,wBAAsB,YAAY,CAAC,SAAS,EAAE,MAAM,EAAE,KAAK,CAAC,EAAE,MAAM,GAAG,OAAO,CAAC,MAAM,CAAC,MAAM,EAAE,GAAG,CAAC,GAAG,IAAI,CAAC,CAmDzG;AAyDD,UAAU,YAAY;IAClB,EAAE,EAAE,MAAM,CAAC;IACX,EAAE,CAAC,EAAE,MAAM,CAAC;IACZ,EAAE,CAAC,EAAE,MAAM,CAAC;IACZ,EAAE,CAAC,EAAE,MAAM,CAAC;IACZ,EAAE,CAAC,EAAE,MAAM,CAAC;IACZ,EAAE,CAAC,EAAE,MAAM,CAAC;IACZ,EAAE,CAAC,EAAE,MAAM,CAAC;IACZ,EAAE,CAAC,EAAE,MAAM,CAAC;IACZ,EAAE,CAAC,EAAE,MAAM,CAAC;IACZ,EAAE,CAAC,EAAE,MAAM,CAAC;IACZ,OAAO,CAAC,EAAE,MAAM,CAAC;CACpB;AAED,MAAM,WAAW,kBAAkB;IAC/B,mDAAmD;IACnD,UAAU,EAAE,OAAO,CAAC;IACpB,sBAAsB;IACtB,OAAO,EAAE,MAAM,CAAC;IAChB,kCAAkC;IAClC,IAAI,EAAE,MAAM,CAAC;IACb,uCAAuC;IACvC,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB,2BAA2B;IAC3B,KAAK,EAAE,MAAM,CAAC;IACd,iDAAiD;IACjD,SAAS,EAAE,YAAY,CAAC;IACxB,uDAAuD;IACvD,IAAI,EAAE,YAAY,CAAC;IACnB,8BAA8B;IAC9B,QAAQ,EAAE,oBAAoB,CAAC;IAC/B,8BAA8B;IAC9B,QAAQ,EAAE,MAAM,EAAE,CAAC;IACnB,8BAA8B;IAC9B,MAAM,EAAE,MAAM,CAAC;IACf,gEAAgE;IAChE,cAAc,CAAC,EAAE,MAAM,CAAC;IACxB,0BAA0B;IAC1B,IAAI,EAAE,MAAM,CAAC;IACb,6BAA6B;IAC7B,OAAO,EAAE,MAAM,CAAC;IAChB,iCAAiC;IACjC,UAAU,CAAC,EAAE,MAAM,CAAC;CACvB;AAED;;;;;GAKG;AACH,wBAAgB,gBAAgB,CAAC,kBAAkB,CAAC,EAAE,MAAM,GAAG,MAAM,CAAC,MAAM,EAAE,kBAAkB,CAAC,CAiDhG;AAoQD;;;;;;GAMG;AACH,wBAAgB,iBAAiB,CAC7B,SAAS,EAAE,MAAM,EACjB,cAAc,EAAE,MAAM,CAAC,MAAM,EAAE,GAAG,CAAC,EACnC,QAAQ,EAAE,CAAC,GAAG,CAAC,EAAE,KAAK,GAAG,IAAI,EAAE,OAAO,CAAC,EAAE,MAAM,CAAC,MAAM,EAAE,GAAG,CAAC,EAAE,UAAU,CAAC,EAAE,MAAM,GAAG,MAAM,KAAK,IAAI,GACpG,IAAI,CAqGN;AAED,uCAAuC;AACvC,MAAM,WAAW,cAAc;IAC3B,kCAAkC;IAClC,IAAI,EAAE,QAAQ,CAAC,cAAc,CAAC;IAC9B,uEAAuE;IACvE,OAAO,EAAE,OAAO,CAAC;IACjB,wCAAwC;IACxC,IAAI,EAAE,MAAM,CAAC;CAChB;AAED;;;;;;;GAOG;AACH,wBAAsB,sBAAsB,CACxC,GAAG,EAAE,MAAM,EACX,IAAI,CAAC,EAAE,MAAM,EACb,KAAK,CAAC,EAAE,OAAO,EACf,WAAW,CAAC,EAAE,QAAQ,CAAC,cAAc,GAAG,IAAI,GAC7C,OAAO,CAAC,cAAc,CAAC,CA8CzB;AAED;;;;GAIG;AACH,wBAAsB,YAAY,CAAC,GAAG,EAAE,MAAM,CAAC,MAAM,EAAE,GAAG,CAAC,GAAG,OAAO,CAAC,IAAI,CAAC,CAe1E;AAED;;;;;GAKG;AACH,wBAAgB,aAAa,CAAC,OAAO,EAAE,MAAM,GAAG,MAAM,GAAG,IAAI,CAqC5D;AAED;;GAEG;AACH,wBAAgB,WAAW,IAAI,MAAM,CAYpC;AA+DD,MAAM,WAAW,wBAAwB;IAErC,UAAU,CAAC,EAAE,OAAO,CAAC;IAErB,KAAK,CAAC,EAAE,OAAO,CAAC;IAEhB,GAAG,CAAC,EAAE,MAAM,CAAC;CAChB;AAED;;;;;GAKG;AACH,wBAAsB,gCAAgC,CAAC,GAAG,CAAC,EAAE,MAAM,GAAG,OAAO,CAAC,cAAc,CAAC,CAwB5F;AAED;;;;;GAKG;AACH,wBAAsB,iBAAiB,CACnC,MAAM,EAAE,MAAM,EACd,OAAO,GAAE,wBAA6B,GACvC,OAAO,CAAC,aAAa,CAAC,CA8BxB;AAED,MAAM,WAAW,0BAA0B;IAEvC,KAAK,CAAC,EAAE,OAAO,CAAC;IAEhB,GAAG,CAAC,EAAE,MAAM,CAAC;CAChB;AAED;;;;;GAKG;AACH,wBAAsB,mBAAmB,CACrC,WAAW,EAAE,MAAM,EACnB,OAAO,GAAE,0BAA+B,GACzC,OAAO,CAAC,aAAa,CAAC,CAoBxB;AAED,MAAM,WAAW,yBAAyB;IAEtC,KAAK,CAAC,EAAE,OAAO,CAAC;IAEhB,GAAG,CAAC,EAAE,MAAM,CAAC;IAEb,MAAM,CAAC,EAAE,MAAM,CAAC;CACnB;AAED;;;;;GAKG;AACH,wBAAsB,kBAAkB,CAAC,OAAO,GAAE,yBAA8B,GAAG,OAAO,CAAC,aAAa,CAAC,CAoBxG;AAED,MAAM,WAAW,mBAAmB;IAChC,WAAW,EAAE,MAAM,CAAC;IACpB,WAAW,EAAE,MAAM,CAAC;CACvB;AAED;;GAEG;AACH,wBAAsB,WAAW,IAAI,OAAO,CAAC,mBAAmB,GAAG,IAAI,CAAC,CAwDvE;AAED,MAAM,WAAW,eAAe;IAC5B,mBAAmB,EAAE,MAAM,GAAG,IAAI,CAAC;IACnC,6BAA6B;IAC7B,WAAW,EAAE,MAAM,CAAC;IACpB,oBAAoB;IACpB,YAAY,EAAE,MAAM,CAAC;IACrB,2CAA2C;IAC3C,SAAS,EAAE,MAAM,CAAC;IAClB,6CAA6C;IAC7C,SAAS,EAAE,MAAM,CAAC;IAClB,gCAAgC;IAChC,MAAM,EAAE,MAAM,CAAC,MAAM,EAAE,GAAG,CAAC,CAAC;IAC5B,6BAA6B;IAC7B,OAAO,EAAE,MAAM,CAAC,MAAM,EAAE,GAAG,CAAC,CAAC;IAC7B,6CAA6C;IAC7C,QAAQ,EAAE;QACN,IAAI,EAAE,MAAM,CAAC;QACb,KAAK,EAAE,MAAM,CAAC;KACjB,EAAE,CAAC;IACJ,8DAA8D;IAC9D,QAAQ,EAAE,MAAM,CAAC,MAAM,EAAE,GAAG,CAAC,CAAC;IAC9B,sCAAsC;IACtC,WAAW,EAAE,MAAM,CAAC,MAAM,EAAE,GAAG,CAAC,CAAC;IACjC,0CAA0C;IAC1C,iBAAiB,EAAE,IAAI,CAAC;IACxB,wCAAwC;IACxC,gBAAgB,EAAE,IAAI,CAAC;CAC1B;AAED;;;;;GAKG;AACH,wBAAgB,kBAAkB,CAAC,IAAI,EAAE,MAAM,GAAG,IAAI,GAAG,eAAe,CAyCvE;AAED,MAAM,WAAW,mBAAmB;IAChC,cAAc,EAAE,MAAM,CAAC;IACvB,aAAa,EAAE,MAAM,CAAC;CACzB;AAED,mEAAmE;AACnE,eAAO,MAAM,iBAAiB,QAA6B,CAAC;AAE5D;;;;;;;;;;;GAWG;AACH,wBAAgB,2BAA2B,IAAI,mBAAmB,CA+EjE;AAYD;;;;;;;;;GASG;AACH,wBAAsB,WAAW,CAAC,OAAO,EAAE,GAAG,GAAG,OAAO,CAAC,QAAQ,CAAC,CAsEjE;AAED;;;;GAIG;AACH,wBAAgB,gBAAgB,IAAI,MAAM,CA4CzC;AAED;;GAEG;AACH,wBAAgB,UAAU,IAAI,MAAM,CAEnC;AAED,qEAAqE;AACrE,wBAAgB,uBAAuB,IAAI,OAAO,CAEjD;AAED;;;GAGG;AACH,wBAAgB,iBAAiB,IAAI,MAAM,CAgB1C;AAED;;GAEG;AACH,wBAAgB,iBAAiB,IAAI,MAAM,CA+B1C;AAmBD;;;;;;;;GAQG;AACH,wBAAgB,SAAS,CACrB,EAAE,EAAE,CAAC,GAAG,IAAI,EAAE,GAAG,EAAE,KAAK,IAAI,EAC5B,OAAO,CAAC,EAAE,GAAG,EACb,cAAc,CAAC,EAAE,MAAM,EAAE,GAC1B,CAAC,GAAG,IAAI,EAAE,GAAG,EAAE,KAAK,OAAO,CAAC,GAAG,CAAC,CAkDlC;AAED;;;;;;;;GAQG;AACH,wBAAgB,gBAAgB,CAC5B,EAAE,EAAE,CAAC,GAAG,IAAI,EAAE,GAAG,EAAE,KAAK,IAAI,EAC5B,OAAO,CAAC,EAAE,GAAG,EACb,cAAc,CAAC,EAAE,MAAM,EAAE,GAC1B,CAAC,GAAG,IAAI,EAAE,GAAG,EAAE,KAAK,OAAO,CAAC,GAAG,CAAC,CAwClC;AAYD,wBAAgB,qBAAqB,CAAC,OAAO,EAAE,GAAG,EAAE,MAAM,EAAE,GAAG,EAAE,SAAS,EAAE,MAAM,EAAE,CAAC,EAAE,MAAM,GAAG,OAAO,CAAC,IAAI,CAAC,CAqC5G;AAED;;;;GAIG;AACH,wBAAgB,aAAa,CAAC,OAAO,EAAE,MAAM,GAAG,MAAM,CAarD;AAED;;;;;GAKG;AACH,wBAAgB,cAAc,CAAC,OAAO,EAAE,MAAM,GAAG,OAAO,CAIvD;AA8BD;;;;GAIG;AACH,wBAAgB,gBAAgB,CAAC,GAAG,EAAE,MAAM,GAAG,MAAM,CASpD;AA8BD;;;;;GAKG;AACH,wBAAgB,OAAO,CAAC,GAAG,EAAE,MAAM,EAAE,KAAK,EAAE,MAAM,GAAG,MAAM,CAY1D;AAED;;;;;GAKG;AACH,wBAAgB,OAAO,CAAC,GAAG,EAAE,MAAM,EAAE,KAAK,EAAE,MAAM,GAAG,MAAM,CAc1D;AAED;;;;;GAKG;AACH,wBAAgB,QAAQ,CAAC,EAAE,EAAE,OAAO,GAAG,EAAE,IAAI,MAAM,CAAC,MAAM,EAAE,GAAG,CAAC,CAO/D;AAED;;;;GAIG;AACH,wBAAgB,OAAO,CAAC,EAAE,EAAE,OAAO,GAAG,EAAE,IAAI,GAAG,EAAE,CAEhD;AAED;;;;;GAKG;AACH,wBAAgB,mBAAmB,CAAC,EAAE,EAAE,MAAM,EAAE,EAAE,EAAE,CAAC,YAAY,CAAC,EAAE,MAAM,KAAK,IAAI,GAAG,IAAI,CA8BzF;AAED;;;;;GAKG;AACH,wBAAgB,gBAAgB,CAAC,OAAO,EAAE,uBAAuB,GAAG,QAAQ,CAAC,KAAK,GAAG,IAAI,CA8DxF;AAED;;;;;;;GAOG;AACH,wBAAsB,oBAAoB,CAAC,OAAO,EAAE,GAAG,EAAE,EAAE,EAAE,MAAM,EAAE,QAAQ,CAAC,EAAE,MAAM,CAAC,MAAM,EAAE,GAAG,CAAC,GAAG,OAAO,CAAC,IAAI,CAAC,CAyBlH;AAED;;;;;GAKG;AACH,wBAAgB,iBAAiB,CAC7B,YAAY,EAAE,MAAM,EAAE,GAAG,MAAM,CAAC,MAAM,EAAE,MAAM,CAAC,EAAE,GAAG,MAAM,GAAG,MAAM,CAAC,MAAM,EAAE,MAAM,CAAC,GAAG,SAAS,GAChG,MAAM,CAAC,MAAM,EAAE,MAAM,CAAC,CAsBxB;AAED;;;;;;;GAOG;AACH,wBAAgB,+BAA+B,CAAC,GAAG,EAAE,GAAG,EAAE,MAAM,CAAC,EAAE,OAAO,GAAG,IAAI,CAsLhF;AAED;;;;;;GAMG;AACH,wBAAsB,eAAe,CAAC,QAAQ,EAAE,MAAM,EAAE,EAAE,OAAO,EAAE,GAAG,GAAG,OAAO,CAAC,MAAM,EAAE,CAAC,CAsBzF;AAOD;;;;;GAKG;AACH,wBAAsB,WAAW,CAAC,OAAO,EAAE,GAAG,GAAG,OAAO,CAAC,MAAM,CAAC,MAAM,EAAE,QAAQ,CAAC,UAAU,CAAC,CAAC,CAa5F;AAED;;;;;;GAMG;AACH,wBAAsB,YAAY,CAAC,YAAY,SAAS,OAAO,EAC3D,OAAO,EAAE,MAAM,EACf,OAAO,EAAE,GAAG,EACZ,WAAW,EAAE,YAAY,GAC1B,OAAO,CAAC,YAAY,SAAS,IAAI,GAAG,QAAQ,CAAC,cAAc,EAAE,GAAG,QAAQ,CAAC,SAAS,CAAC,QAAQ,EAAE,CAAC,CAsBhG;AAED;;;;;;;GAOG;AACH,wBAAgB,SAAS,CAAC,OAAO,EAAE,MAAM,EAAE,WAAW,CAAC,EAAE,WAAW,GAAG,mBAAmB,CASzF;AAED;;;;;GAKG;AACH,wBAAgB,YAAY,CAAC,KAAK,EAAE,MAAM,CAAC,cAAc,EAAE,MAAM,EAAE,MAAM,CAAC,cAAc,GAAG,IAAI,CAe9F;AAED;;;;GAIG;AACH,wBAAsB,kBAAkB,CAAC,OAAO,EAAE,MAAM,GAAG,OAAO,CAAC,OAAO,CAAC,CAS1E;AAED;;;;;GAKG;AACH,wBAAsB,sBAAsB,CAAC,OAAO,EAAE,MAAM,GAAG,OAAO,CAAC,MAAM,CAAC,CAqC7E;AAED;;;;;GAKG;AACH,wBAAgB,kBAAkB,CAAC,QAAQ,EAAE,MAAM,GAAG,MAAM,EAAE,CAW7D;AAED;;;;GAIG;AACH,wBAAgB,6BAA6B,CAAC,YAAY,EAAE,UAAU,GAAG,MAAM,EAAE,CAUhF;AAKD;;;;GAIG;AACH,wBAAgB,gBAAgB,CAAC,GAAG,EAAE,MAAM,GAAG,OAAO,CAErD;AAED,MAAM,WAAW,eAAe;IAC5B,IAAI,EAAE,MAAM,CAAC;IACb,IAAI,EAAE,MAAM,CAAC;IACb,MAAM,CAAC,EAAE,MAAM,CAAC;CACnB;AAED;;;;GAIG;AACH,wBAAgB,mBAAmB,CAAC,GAAG,EAAE,MAAM,GAAG,eAAe,GAAG,IAAI,CAUvE;AAMD;;;;GAIG;AACH,wBAAgB,gBAAgB,CAAC,QAAQ,EAAE,MAAM,GAAG,OAAO,CAE1D;AAED;;;;GAIG;AACH,wBAAgB,mBAAmB,CAAC,QAAQ,EAAE,MAAM,GAAG,eAAe,GAAG,IAAI,CAU5E;AAED;;;;;;GAMG;AACH,wBAAgB,yBAAyB,CACrC,QAAQ,EAAE,MAAM,CAAC,MAAM,EAAE,GAAG,CAAC,EAC7B,MAAM,EAAE,MAAM,CAAC,MAAM,EAAE,GAAG,CAAC,EAC3B,MAAM,EAAE,MAAM,CAAC,MAAM,EAAE,GAAG,CAAC,GAC5B,IAAI,CAoBN;AAED;;;;;GAKG;AACH,wBAAgB,2BAA2B,CACvC,SAAS,EAAE,MAAM,EACjB,aAAa,EAAE,QAAQ,CAAC,aAAa,GACtC,QAAQ,CAAC,WAAW,EAAE,CA0MxB;AAED,MAAM,MAAM,cAAc,GAAG,IAAI,CAAC,QAAQ,CAAC,MAAM,EAAE,OAAO,CAAC,CAAC;AAE5D,wBAAgB,SAAS,CAAC,GAAG,EAAE,GAAG,GAAG,cAAc,CAuBlD;AAED;;;;;;;;GAQG;AACH,wBAAsB,yBAAyB,CAC3C,QAAQ,EAAE,MAAM,EAChB,YAAY,EAAE,MAAM,EAAE,EACtB,aAAa,CAAC,EAAE,OAAO,EACvB,aAAa,CAAC,EAAE,OAAO,EACvB,aAAa,CAAC,EAAE,OAAO,GACxB,OAAO,CAAC,IAAI,CAAC,CAoDf;AAuCD;;;;;;;;GAQG;AACH,wBAAsB,cAAc,CAAC,OAAO,EAAE,GAAG,EAAE,KAAK,EAAE,MAAM,EAAE,QAAQ,EAAE,MAAM,GAAG,OAAO,CAAC,GAAG,EAAE,CAAC,CAyElG;AAED,MAAM,WAAW,eAAe;IAE5B,WAAW,CAAC,EAAE,OAAO,CAAC;CACzB;AACD;;;;;;GAMG;AACH,wBAAgB,gBAAgB,CAC5B,aAAa,EAAE,MAAM,EACrB,cAAc,EAAE,MAAM,EACtB,OAAO,GAAE,eAAoB,GAC9B,OAAO,CAAC,IAAI,CAAC,CA6Bf;AAED,MAAM,WAAW,iBAAiB;IAC9B,iCAAiC;IACjC,KAAK,EAAE,OAAO,CAAC;IACf,oCAAoC;IACpC,IAAI,EAAE,MAAM,CAAC;IACb,0BAA0B;IAC1B,MAAM,EAAE,MAAM,CAAC;CAClB;AAED;;;;;GAKG;AACH,wBAAgB,eAAe,CAAC,OAAO,EAAE,MAAM,GAAG,iBAAiB,CAclE;AAED;;;;GAIG;AACH,wBAAgB,kBAAkB,CAAC,CAAC,EAAE,QAAQ,EAAE,CAAC,GAAG,CAAC,SAAS,GAAG,EAAE,GAAG,MAAM,GAAG,CAAC,CAQ/E;AAuBD;;;;GAIG;AACH,wBAAgB,cAAc,CAAC,EAAE,EAAE,MAAM,GAAG,OAAO,CAIlD;AAED;;;;GAIG;AACH,wBAAgB,kBAAkB,CAAC,EAAE,EAAE,MAAM,GAAG,OAAO,CAEtD;AAED;;GAEG;AACH,wBAAgB,eAAe,IAAI,WAAW,GAAG,KAAK,CAIrD;AAED;;GAEG;AACH,wBAAgB,mBAAmB,IAAI,SAAS,GAAG,IAAI,CAItD;AAED;;GAEG;AACH,wBAAgB,cAAc,IAAI,IAAI,CAGrC;AAED;;GAEG;AACH,wBAAsB,4BAA4B,IAAI,OAAO,CAAC,OAAO,CAAC,CAOrE;AAED;;;;GAIG;AACH,wBAAgB,aAAa,CAAC,MAAM,CAAC,EAAE,QAAQ,CAAC,UAAU,GAAG,IAAI,GAAG,QAAQ,CAAC,UAAU,CA6DtF;AAED;;;;GAIG;AACH,wBAAgB,eAAe,IAAI,MAAM,CAExC;AAED;;;;GAIG;AACH,wBAAsB,OAAO,IAAI,OAAO,CAAC,MAAM,EAAE,CAAC,CAajD;AAED;;;;GAIG;AACH,wBAAgB,UAAU,CAAC,KAAK,EAAE,MAAM,GAAG,KAAK,IAAI,QAAQ,CAAC,QAAQ,CAEpE;AAED;;;;GAIG;AACH,wBAAsB,gBAAgB,IAAI,OAAO,CAAC,MAAM,GAAG,SAAS,CAAC,CAGpE;AAED,cAAc,+BAA+B,CAAC"}
|
|
1
|
+
{"version":3,"file":"tools.d.ts","sourceRoot":"","sources":["../../../../src/lib/common/tools.ts"],"names":[],"mappings":"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"}
|