Skip to content

Commit a9d4489

Browse files
authored
chore(types): add image url to planet type (#19)
* chore(types): add `imageUrl` property on `Planet` type * chore(release): bump package version to 1.3.1
1 parent 990a3fd commit a9d4489

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"license": "MIT",
44
"private": false,
55
"description": "The official SDK for HellHub API. Filter and collect data with full type safety out of the box.",
6-
"version": "1.3.0",
6+
"version": "1.3.1",
77
"main": "dist/index.mjs",
88
"types": "dist/index.d.ts",
99
"keywords": [

types/api-entities.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -56,6 +56,7 @@ export interface Planet extends RemoteEntity {
5656
ownerId: number;
5757
sector: Sector;
5858
sectorId: number;
59+
imageUrl: string;
5960
effects: Effect[];
6061
biome: Biome;
6162
biomeId: number;

0 commit comments

Comments
 (0)