@iobroker/js-controller-adapter 7.0.7 → 7.0.8-alpha.0-20250506-93db56665
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/lib/adapter/adapter.d.ts +4 -0
- package/build/cjs/lib/adapter/adapter.js.map +2 -2
- package/build/esm/lib/adapter/adapter.d.ts +4 -0
- package/build/esm/lib/adapter/adapter.d.ts.map +1 -1
- package/build/esm/lib/adapter/adapter.js.map +1 -1
- package/build/tsconfig.build.tsbuildinfo +1 -1
- package/package.json +10 -10
|
@@ -564,6 +564,10 @@ export declare class AdapterClass extends EventEmitter {
|
|
|
564
564
|
findForeignObject(idOrName: string, type: ioBroker.CommonType | null, options: {
|
|
565
565
|
user?: `system.user.${string}`;
|
|
566
566
|
language?: ioBroker.Languages;
|
|
567
|
+
/** This can be set to true to disable permission checks if they were already checked otherwise. Use it with caution! */
|
|
568
|
+
checked?: boolean;
|
|
569
|
+
/** Search only within the states, that belongs to this user */
|
|
570
|
+
limitToOwnerRights?: boolean;
|
|
567
571
|
}, callback: ioBroker.FindObjectCallback): void;
|
|
568
572
|
/**
|
|
569
573
|
* Find an object by the exact name or ID.
|