diff --git a/package.json b/package.json index aa991a7..3d1be8c 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "aviationweather", - "version": "1.2.2", + "version": "1.2.3", "description": "Node.js wrapper for aviation weather, written in TypeScript", "main": "build/index.js", "types": "build/index.d.ts", diff --git a/src/types/responses/AW/IAIREP.ts b/src/types/responses/AW/IAIREP.ts index f160821..455ca81 100644 --- a/src/types/responses/AW/IAIREP.ts +++ b/src/types/responses/AW/IAIREP.ts @@ -109,7 +109,7 @@ export interface IAIREP { /** * Temperature (C) */ - temp_c?: string; + temp_c?: number; /** * Wind direction-the direction from where the wind is blowing (degree) @@ -134,5 +134,5 @@ export interface IAIREP { /** * Raw PIREP in text */ - raw_text?: string; + raw_text: string; }