samsung-device-helper 0.0.18 → 0.0.21
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/data/samsung-devices-2026.js +19 -23
- package/package.json +63 -56
|
@@ -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
|
];
|
package/package.json
CHANGED
|
@@ -1,56 +1,63 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "samsung-device-helper",
|
|
3
|
-
"version": "0.0.
|
|
4
|
-
"description": "A utility to help you identify Samsung devices",
|
|
5
|
-
"main": "dist/index.js",
|
|
6
|
-
"types": "dist/index.d.ts",
|
|
7
|
-
"files": [
|
|
8
|
-
"dist/**/*"
|
|
9
|
-
],
|
|
10
|
-
"scripts": {
|
|
11
|
-
"prebuild": "shx rm -rf dist",
|
|
12
|
-
"build": "tsc",
|
|
13
|
-
"pretest": "tsc -p tests",
|
|
14
|
-
"test": "mocha",
|
|
15
|
-
"prepack": "yarn run build",
|
|
16
|
-
"pack": "yarn pack",
|
|
17
|
-
"publish": "yarn publish",
|
|
18
|
-
"format": "prettier --write 'src/**/*.ts' 'tests/**/*.ts'",
|
|
19
|
-
"format:check": "prettier --check 'src/**/*.ts' 'tests/**/*.ts'"
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
"
|
|
29
|
-
"
|
|
30
|
-
"
|
|
31
|
-
"
|
|
32
|
-
"device
|
|
33
|
-
"device
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
"
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
"@types/
|
|
44
|
-
"@types/
|
|
45
|
-
"
|
|
46
|
-
"
|
|
47
|
-
"
|
|
48
|
-
"
|
|
49
|
-
"
|
|
50
|
-
"
|
|
51
|
-
"
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
"
|
|
55
|
-
|
|
56
|
-
}
|
|
1
|
+
{
|
|
2
|
+
"name": "samsung-device-helper",
|
|
3
|
+
"version": "0.0.21",
|
|
4
|
+
"description": "A utility to help you identify Samsung devices",
|
|
5
|
+
"main": "dist/index.js",
|
|
6
|
+
"types": "dist/index.d.ts",
|
|
7
|
+
"files": [
|
|
8
|
+
"dist/**/*"
|
|
9
|
+
],
|
|
10
|
+
"scripts": {
|
|
11
|
+
"prebuild": "shx rm -rf dist",
|
|
12
|
+
"build": "tsc",
|
|
13
|
+
"pretest": "tsc -p tests",
|
|
14
|
+
"test": "mocha",
|
|
15
|
+
"prepack": "yarn run build",
|
|
16
|
+
"pack": "yarn pack",
|
|
17
|
+
"publish": "yarn publish",
|
|
18
|
+
"format": "prettier --write 'src/**/*.ts' 'tests/**/*.ts'",
|
|
19
|
+
"format:check": "prettier --check 'src/**/*.ts' 'tests/**/*.ts'",
|
|
20
|
+
"prepare": "husky",
|
|
21
|
+
"release": "bash scripts/release.sh"
|
|
22
|
+
},
|
|
23
|
+
"repository": {
|
|
24
|
+
"type": "git",
|
|
25
|
+
"url": "git+https://github.com/kulcsarrudolf/samsung-device-helper.git"
|
|
26
|
+
},
|
|
27
|
+
"keywords": [
|
|
28
|
+
"samsung",
|
|
29
|
+
"device",
|
|
30
|
+
"helper",
|
|
31
|
+
"utility",
|
|
32
|
+
"device identification",
|
|
33
|
+
"device model",
|
|
34
|
+
"device name",
|
|
35
|
+
"device type"
|
|
36
|
+
],
|
|
37
|
+
"author": "Kulcsár Rudolf",
|
|
38
|
+
"license": "MIT",
|
|
39
|
+
"bugs": {
|
|
40
|
+
"url": "https://github.com/kulcsarrudolf/samsung-device-helper/issues"
|
|
41
|
+
},
|
|
42
|
+
"devDependencies": {
|
|
43
|
+
"@types/chai": "^4.3.5",
|
|
44
|
+
"@types/mocha": "^10.0.1",
|
|
45
|
+
"@types/node": "^20.4.2",
|
|
46
|
+
"@types/sinon": "^10.0.15",
|
|
47
|
+
"chai": "^4.3.7",
|
|
48
|
+
"chalk": "^4.1.2",
|
|
49
|
+
"husky": "^9.1.7",
|
|
50
|
+
"lint-staged": "^16.2.7",
|
|
51
|
+
"mocha": "^10.2.0",
|
|
52
|
+
"prettier": "^3.8.1",
|
|
53
|
+
"shx": "^0.3.4",
|
|
54
|
+
"sinon": "^15.2.0",
|
|
55
|
+
"typescript": "^5.1.6"
|
|
56
|
+
},
|
|
57
|
+
"engines": {
|
|
58
|
+
"node": ">=18"
|
|
59
|
+
},
|
|
60
|
+
"lint-staged": {
|
|
61
|
+
"*.ts": "prettier --write"
|
|
62
|
+
}
|
|
63
|
+
}
|