tesla-inventory 3.0.2 → 3.0.5
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 +3 -3
- package/package.json +1 -1
- package/src/codes.json +1 -1
- package/src/inventories/euro.js +2 -2
- package/src/prices/gb.json +1 -0
- package/src/prices/us.json +1 -0
package/README.md
CHANGED
|
@@ -51,7 +51,7 @@ These options can be:
|
|
|
51
51
|
|
|
52
52
|
## License
|
|
53
53
|
|
|
54
|
-
**tesla-inventory** © [
|
|
55
|
-
Authored and maintained by [
|
|
54
|
+
**tesla-inventory** © [Tesla Hunt](https://teslahunt.io), released under the [MIT](https://github.com/teslahunt/inventory/blob/master/LICENSE.md) License.<br>
|
|
55
|
+
Authored and maintained by [Tesla Hunt](https://teslahunt.io) with help from [contributors](https://github.com/teslahunt/inventory/contributors).
|
|
56
56
|
|
|
57
|
-
> [
|
|
57
|
+
> [teslahunt.io](https://teslahunt.io) · GitHub [teslahunt](https://github.com/teslahunt) · Twitter [@teslahuntio](https://twitter.com/teslahuntio)
|
package/package.json
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
"name": "tesla-inventory",
|
|
3
3
|
"description": "Retrieve real-time data from Tesla Inventory.",
|
|
4
4
|
"homepage": "https://nicedoc.io/Kikobeats/tesla-inventory",
|
|
5
|
-
"version": "3.0.
|
|
5
|
+
"version": "3.0.5",
|
|
6
6
|
"main": "src/index.js",
|
|
7
7
|
"author": {
|
|
8
8
|
"email": "josefrancisco.verdu@gmail.com",
|
package/src/codes.json
CHANGED
|
@@ -38,7 +38,7 @@
|
|
|
38
38
|
"AU3P": "Sound Studio Package",
|
|
39
39
|
"AUF1": "Premium Speakers Enabled",
|
|
40
40
|
"AUF2": "Premium Speakers Disabled",
|
|
41
|
-
"BC00": "
|
|
41
|
+
"BC00": "Brake Calipers M4.42/44",
|
|
42
42
|
"BC0B": "Black Brake Calipers",
|
|
43
43
|
"BC0R": "Red Brake Calipers",
|
|
44
44
|
"BC3B": "Black Brake Calipers",
|
package/src/inventories/euro.js
CHANGED
|
@@ -21,5 +21,5 @@ module.exports = Object.fromEntries(
|
|
|
21
21
|
Object.entries(require('.')).filter(([, inventory]) => test(inventory))
|
|
22
22
|
)
|
|
23
23
|
|
|
24
|
-
module.exports
|
|
25
|
-
module.exports
|
|
24
|
+
Object.defineProperty(module.exports, 'EURO_COUNTRIES', { value: EURO_COUNTRIES })
|
|
25
|
+
Object.defineProperty(module.exports, 'test', { value: test })
|
package/src/prices/gb.json
CHANGED