@autobusal/providers 1.0.38 → 1.0.40

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.38",
3
+ "version": "1.0.40",
4
4
  "type": "module",
5
5
  "main": "index.ts",
6
6
  "dependencies": {
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
 
@@ -16,6 +18,11 @@ export interface SettingsData {
16
18
  x?: string
17
19
  trustpilot?: string
18
20
  }
21
+
22
+ defaultLocations: {
23
+ from: string
24
+ to: string
25
+ }
19
26
  }
20
27
 
21
28
  theme: {
@@ -29,11 +36,6 @@ export interface SettingsData {
29
36
  light: any
30
37
  dark: any
31
38
  }
32
-
33
- logo: {
34
- light: string
35
- dark: string
36
- }
37
39
  }
38
40
 
39
41
  export interface MenuData {