@basmilius/homey-common 1.0.7 → 1.0.9

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/dist/app.d.ts CHANGED
@@ -7,8 +7,8 @@ export declare class App<TApp extends App<any>> extends Homey.App {
7
7
  #private;
8
8
  get registry(): Registry<TApp>;
9
9
  constructor(...args: any[]);
10
- getDevice<TDevice extends Device<TApp>>(id: string): Promise<TDevice | null>;
11
- getDevices<TDevice extends Device<TApp>>(driverId: string): Promise<TDevice[] | null>;
10
+ getDevice<TDevice extends Device<TApp, any>>(id: string): Promise<TDevice | null>;
11
+ getDevices<TDevice extends Device<TApp, any>>(driverId: string): Promise<TDevice[] | null>;
12
12
  getDrivers(): Promise<Driver<TApp>[]>;
13
13
  }
14
14
  export declare class Shortcuts<TApp extends App<TApp>> {
package/dist/flow.d.ts CHANGED
@@ -32,7 +32,7 @@ export declare abstract class FlowConditionEntity<
32
32
  > extends FlowEntity<TApp, Homey.FlowCardCondition, TArgs, TState, boolean> {}
33
33
  export declare abstract class FlowDeviceTriggerEntity<
34
34
  TApp extends App<TApp>,
35
- TDevice extends Device<TApp>,
35
+ TDevice extends Device<TApp, any>,
36
36
  TArgs = unknown,
37
37
  TState = unknown,
38
38
  TTokens = unknown