Skip to content

Commit

Permalink
Rebuild for release
Browse files Browse the repository at this point in the history
  • Loading branch information
mattdavis90 committed Oct 24, 2023
1 parent cf6e158 commit 8462f74
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
3 changes: 2 additions & 1 deletion build/types/index.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ import { ACHorizontalSwing, ACMode, ACVerticalSwing, AirComfortFreshnessValue, A
export type DeepPartial<T> = T extends object ? {
[P in keyof T]?: DeepPartial<T[P]>;
} : T;
type Nullable<T> = T | null;
/** Example: `'en'` */
export type Locale = string;
/** Example: `'Europe/Paris'` */
Expand Down Expand Up @@ -102,7 +103,7 @@ export type MobileDevice = {
name: string;
id: number;
settings: MobileDeviceSettings;
location: MobileDeviceLocation;
location?: Nullable<MobileDeviceLocation>;
deviceMetadata: MobileDeviceMetadata;
};
export type Me = {
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "node-tado-client",
"version": "0.13.2",
"version": "0.13.3",
"description": "A Tado client for nodejs",
"main": "build/index.js",
"types": "build/index.d.ts",
Expand Down

0 comments on commit 8462f74

Please sign in to comment.