@autobusal/providers 1.0.37 → 1.0.39

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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@autobusal/providers",
3
- "version": "1.0.37",
3
+ "version": "1.0.39",
4
4
  "type": "module",
5
5
  "main": "index.ts",
6
6
  "dependencies": {
@@ -9,6 +9,7 @@ export interface LocationData {
9
9
  export interface CountryData {
10
10
  id: number
11
11
  name: string
12
+ slug?: string
12
13
  }
13
14
 
14
15
  export interface CityData {
package/types/settings.ts CHANGED
@@ -1,4 +1,6 @@
1
1
  export interface SettingsData {
2
+ url: string
3
+
2
4
  preferences: {
3
5
  company: string
4
6
 
@@ -29,11 +31,6 @@ export interface SettingsData {
29
31
  light: any
30
32
  dark: any
31
33
  }
32
-
33
- logo: {
34
- light: string
35
- dark: string
36
- }
37
34
  }
38
35
 
39
36
  export interface MenuData {