tesla-inventory 3.0.2 → 3.0.3
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/inventories/euro.js +2 -2
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.3",
|
|
6
6
|
"main": "src/index.js",
|
|
7
7
|
"author": {
|
|
8
8
|
"email": "josefrancisco.verdu@gmail.com",
|
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 })
|