@autobusal/providers 1.2.0 → 1.2.2

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.2.0",
3
+ "version": "1.2.2",
4
4
  "type": "module",
5
5
  "main": "index.ts"
6
6
  }
package/types/articles.ts CHANGED
@@ -9,7 +9,9 @@ export interface ArticleData {
9
9
  language: string
10
10
  description: string
11
11
  image?: string[]
12
+ views: number
12
13
  keywords: string
14
+ display_at: string
13
15
  created_at: string
14
16
  }
15
17
 
@@ -18,4 +20,9 @@ export interface CategoryData {
18
20
  name: string
19
21
  name_en?: string
20
22
  name_sq?: string
23
+ }
24
+
25
+ export interface MoreData {
26
+ top: ArticleData[]
27
+ last: ArticleData[]
21
28
  }
package/types/settings.ts CHANGED
@@ -17,6 +17,9 @@ export interface SettingsData {
17
17
  social: {
18
18
  facebook?: string
19
19
  x?: string
20
+ instagram?: string
21
+ tiktok?: string
22
+ linkedin?: string
20
23
  trustpilot?: string
21
24
  }
22
25