@autobusal/providers 1.0.53 → 1.0.55

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.53",
3
+ "version": "1.0.55",
4
4
  "type": "module",
5
5
  "main": "index.ts"
6
6
  }
@@ -0,0 +1,9 @@
1
+ export interface AgentData {
2
+ id: number
3
+ company: string
4
+ link: string
5
+ logo_url: string
6
+ description: string
7
+ banner?: number
8
+ column?: number
9
+ }
@@ -0,0 +1,16 @@
1
+ export interface ArticleData {
2
+ id: number
3
+ title: string
4
+ content: string
5
+ stripped: string
6
+ internal: string
7
+ image_url: string | null
8
+ category: CategoryData
9
+ keywords: string
10
+ created_at: string
11
+ }
12
+
13
+ export interface CategoryData {
14
+ id: number
15
+ name: string
16
+ }