@autobusal/providers 1.0.26 → 1.0.28

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 -1
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@autobusal/providers",
3
- "version": "1.0.26",
3
+ "version": "1.0.28",
4
4
  "type": "module",
5
5
  "main": "index.ts",
6
6
  "dependencies": {
package/types.ts CHANGED
@@ -50,6 +50,17 @@ export interface UserData {
50
50
  export interface CityData {
51
51
  id: number
52
52
  name: string
53
- location: number[]
53
+ location: string[]
54
54
  slug: string
55
+ }
56
+
57
+ export interface OperatorData {
58
+ id: number
59
+ company: string
60
+ code: string
61
+ link: string
62
+ logo_url: string
63
+ description: string
64
+ banner?: number
65
+ column?: number
55
66
  }