@autobusal/providers 1.0.24 → 1.0.26

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.
Files changed (2) hide show
  1. package/package.json +1 -1
  2. package/types.ts +12 -4
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@autobusal/providers",
3
- "version": "1.0.24",
3
+ "version": "1.0.26",
4
4
  "type": "module",
5
5
  "main": "index.ts",
6
6
  "dependencies": {
package/types.ts CHANGED
@@ -1,10 +1,6 @@
1
1
  export interface SettingsData {
2
2
  preferences: {
3
3
  company: string
4
- logo: {
5
- light: string
6
- dark: string
7
- }
8
4
 
9
5
  googleAnalyticsID: string | null
10
6
 
@@ -31,6 +27,11 @@ export interface SettingsData {
31
27
  light: any
32
28
  dark: any
33
29
  }
30
+
31
+ logo: {
32
+ light: string
33
+ dark: string
34
+ }
34
35
  }
35
36
 
36
37
  export interface MenuData {
@@ -44,4 +45,11 @@ export interface MenuData {
44
45
 
45
46
  export interface UserData {
46
47
  user: any
48
+ }
49
+
50
+ export interface CityData {
51
+ id: number
52
+ name: string
53
+ location: number[]
54
+ slug: string
47
55
  }