skikrumb-api 1.1.0 → 1.2.1
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/models.d.ts +11 -0
- package/package.json +2 -2
package/dist/models.d.ts
CHANGED
|
@@ -24,10 +24,21 @@ export interface Data {
|
|
|
24
24
|
firmware: string;
|
|
25
25
|
signal_strength: number;
|
|
26
26
|
altitude: number;
|
|
27
|
+
feature?: Feature;
|
|
28
|
+
}
|
|
29
|
+
export interface Feature {
|
|
30
|
+
name: string;
|
|
31
|
+
type: string;
|
|
32
|
+
uses: string;
|
|
33
|
+
color: string;
|
|
34
|
+
resort: string;
|
|
35
|
+
difficulty: string;
|
|
36
|
+
description: string;
|
|
27
37
|
}
|
|
28
38
|
export interface QueryDevice {
|
|
29
39
|
serial_numbers?: string;
|
|
30
40
|
serial_number?: string;
|
|
41
|
+
deveui?: string;
|
|
31
42
|
order_by?: string;
|
|
32
43
|
ascending?: string;
|
|
33
44
|
start_date?: string;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "skikrumb-api",
|
|
3
|
-
"version": "1.1
|
|
3
|
+
"version": "1.2.1",
|
|
4
4
|
"description": "Wrapper for the skiKrumb API",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"types": "dist/index.d.ts",
|
|
@@ -11,7 +11,7 @@
|
|
|
11
11
|
},
|
|
12
12
|
"keywords": [],
|
|
13
13
|
"author": "",
|
|
14
|
-
"license": "
|
|
14
|
+
"license": "UNLICENSED",
|
|
15
15
|
"devDependencies": {
|
|
16
16
|
"typescript": "^5.1.6"
|
|
17
17
|
},
|