tesla-inventory 2.0.4 → 3.0.0

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/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": "2.0.4",
5
+ "version": "3.0.0",
6
6
  "main": "src/index.js",
7
7
  "author": {
8
8
  "email": "josefrancisco.verdu@gmail.com",
@@ -1,9 +1,9 @@
1
1
  'use strict'
2
2
 
3
3
  const EURO_COUNTRIES = [
4
- 'Österreich',
4
+ 'Austria',
5
5
  'Belgium',
6
- 'Deutschland',
6
+ 'Germany',
7
7
  'Spain',
8
8
  'Finland',
9
9
  'France',
@@ -12,7 +12,7 @@ const EURO_COUNTRIES = [
12
12
  'Luxembourg',
13
13
  'Netherlands',
14
14
  'Portugal',
15
- 'România'
15
+ 'Romania'
16
16
  ]
17
17
 
18
18
  module.exports = Object.fromEntries(
@@ -1,26 +1,30 @@
1
1
  module.exports = {
2
- at: { country: 'Österreich', language: 'de', market: 'AT', super_region: 'europe' },
2
+ at: { country: 'Austria', language: 'de', market: 'AT', super_region: 'europe' },
3
3
  be: { country: 'Belgium', language: 'nl', market: 'BE', super_region: 'europe' },
4
4
  ca: { country: 'Canada', language: 'en', market: 'CA', super_region: 'north america' },
5
5
  ch: { country: 'Switzerland', language: 'de', market: 'CH', super_region: 'europe' },
6
- cz: { country: 'Česko', language: 'cs', market: 'CZ', super_region: 'europe' },
7
- de: { country: 'Deutschland', language: 'de', market: 'DE', super_region: 'europe' },
8
- dk: { country: 'Danmark', language: 'da', market: 'DK', super_region: 'europe' },
6
+ cz: { country: 'Czechia', language: 'cs', market: 'CZ', super_region: 'europe' },
7
+ de: { country: 'Germany', language: 'de', market: 'DE', super_region: 'europe' },
8
+ dk: { country: 'Denmark', language: 'da', market: 'DK', super_region: 'europe' },
9
9
  es: { country: 'Spain', language: 'es', market: 'ES', super_region: 'europe' },
10
10
  fi: { country: 'Finland', language: 'fi', market: 'FI', super_region: 'europe' },
11
11
  fr: { country: 'France', language: 'fr', market: 'FR', super_region: 'europe' },
12
12
  gb: { country: 'United Kingdom', language: 'en', market: 'GB', super_region: 'europe' },
13
- hu: { country: 'Magyarország', language: 'hu', market: 'HU', super_region: 'europe' },
13
+ gr: { country: 'Greece', language: 'el', market: 'GR', super_region: 'europe' },
14
+ hr: { country: 'Croatia', language: 'hr', market: 'HR', super_region: 'europe' },
15
+ hu: { country: 'Hungary', language: 'hu', market: 'HU', super_region: 'europe' },
14
16
  ie: { country: 'Ireland', language: 'en', market: 'IE', super_region: 'europe' },
15
- is: { country: 'Island', language: 'is', market: 'IS', super_region: 'europe' },
17
+ is: { country: 'Iceland', language: 'is', market: 'IS', super_region: 'europe' },
16
18
  it: { country: 'Italy', language: 'it', market: 'IT', super_region: 'europe' },
17
19
  lu: { country: 'Luxembourg', language: 'fr', market: 'LU', super_region: 'europe' },
18
20
  mx: { country: 'Mexico', language: 'es', market: 'MX', super_region: 'north america' },
19
21
  nl: { country: 'Netherlands', language: 'nl', market: 'NL', super_region: 'europe' },
20
22
  no: { country: 'Norway', language: 'no', market: 'NO', super_region: 'europe' },
23
+ pl: { country: 'Poland', language: 'pl', market: 'PL', super_region: 'europe' },
21
24
  pr: { country: 'Puerto Rico', language: 'es', market: 'PR', super_region: 'north america' },
22
25
  pt: { country: 'Portugal', language: 'pt', market: 'PT', super_region: 'europe' },
23
- ro: { country: 'România', language: 'ro', market: 'RO', super_region: 'europe' },
26
+ ro: { country: 'Romania', language: 'ro', market: 'RO', super_region: 'europe' },
24
27
  se: { country: 'Sweden', language: 'sv', market: 'SE', super_region: 'europe' },
28
+ si: { country: 'Slovenia', language: 'sl', market: 'SI', super_region: 'europe' },
25
29
  us: { country: 'United States', language: 'en', market: 'US', super_region: 'north america' }
26
30
  }