samsung-device-helper 0.0.19 → 0.0.22
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/README.md +6 -0
- package/dist/data/samsung-devices-2026.js +19 -23
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -1,5 +1,11 @@
|
|
|
1
1
|
# Samsung Device Helper
|
|
2
2
|
|
|
3
|
+
[](https://www.npmjs.com/package/samsung-device-helper)
|
|
4
|
+
[](https://github.com/kulcsarrudolf/samsung-device-helper/blob/main/LICENSE)
|
|
5
|
+
[](https://www.npmjs.com/package/samsung-device-helper)
|
|
6
|
+
[](https://github.com/kulcsarrudolf/samsung-device-helper)
|
|
7
|
+
[](https://github.com/kulcsarrudolf/samsung-device-helper/actions)
|
|
8
|
+
|
|
3
9
|
`samsung-device-helper` is an npm package designed to provide a comprehensive list of Samsung devices, including phones, tablets, and watches. The package offers utility functions to retrieve device names by model and fetch lists of devices by category. **Note:** the list of phones includes models released after 2017, ensuring up-to-date information on the latest Samsung phones.
|
|
4
10
|
|
|
5
11
|
## Installation
|
|
@@ -6,22 +6,17 @@ exports.samsungDevices2026 = [
|
|
|
6
6
|
name: "Galaxy A07",
|
|
7
7
|
releaseDate: "01-13-2026",
|
|
8
8
|
type: "phone",
|
|
9
|
-
models: [
|
|
10
|
-
"SM-A076",
|
|
11
|
-
],
|
|
9
|
+
models: ["SM-A076"],
|
|
12
10
|
},
|
|
13
11
|
{
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
"SM-E076B",
|
|
18
|
-
"SM-E076B/DS"
|
|
19
|
-
]
|
|
12
|
+
name: "Galaxy F70e",
|
|
13
|
+
releaseDate: "02-17-2026",
|
|
14
|
+
models: ["SM-E076B", "SM-E076B/DS"],
|
|
20
15
|
},
|
|
21
16
|
{
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
17
|
+
name: "Galaxy S26",
|
|
18
|
+
releaseDate: "03-06-2026",
|
|
19
|
+
models: [
|
|
25
20
|
"SM-S942B",
|
|
26
21
|
"SM-S942B/DS",
|
|
27
22
|
"SM-S942U",
|
|
@@ -30,13 +25,13 @@ exports.samsungDevices2026 = [
|
|
|
30
25
|
"SM-S942N",
|
|
31
26
|
"SM-S9420",
|
|
32
27
|
"SM-S942E",
|
|
33
|
-
"SM-S942E/DS"
|
|
34
|
-
]
|
|
28
|
+
"SM-S942E/DS",
|
|
29
|
+
],
|
|
35
30
|
},
|
|
36
31
|
{
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
32
|
+
name: "Galaxy S26+",
|
|
33
|
+
releaseDate: "03-06-2026",
|
|
34
|
+
models: [
|
|
40
35
|
"SM-S947B",
|
|
41
36
|
"SM-S947B/DS",
|
|
42
37
|
"SM-S947U",
|
|
@@ -45,13 +40,14 @@ exports.samsungDevices2026 = [
|
|
|
45
40
|
"SM-S947N",
|
|
46
41
|
"SM-S9470",
|
|
47
42
|
"SM-S947E",
|
|
48
|
-
"SM-S947E/DS"
|
|
49
|
-
]
|
|
43
|
+
"SM-S947E/DS",
|
|
44
|
+
],
|
|
50
45
|
},
|
|
51
46
|
{
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
"
|
|
47
|
+
name: "Galaxy S26 Ultra",
|
|
48
|
+
releaseDate: "03-06-2026",
|
|
49
|
+
type: "phone",
|
|
50
|
+
models: [
|
|
55
51
|
"SM-S948B",
|
|
56
52
|
"SM-S948B/DS",
|
|
57
53
|
"SM-S948U",
|
|
@@ -61,6 +57,6 @@ exports.samsungDevices2026 = [
|
|
|
61
57
|
"SM-S9480",
|
|
62
58
|
"SM-S948E",
|
|
63
59
|
"SM-S948E/DS"
|
|
64
|
-
]
|
|
60
|
+
],
|
|
65
61
|
}
|
|
66
62
|
];
|