@smartico/public-api 0.0.80 → 0.0.82

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.
@@ -20,5 +20,6 @@ export interface TournamentPublicMeta {
20
20
  label_tag?: string;
21
21
  custom_label_tag?: string;
22
22
  featured?: boolean;
23
+ position?: number;
23
24
  custom_data?: string;
24
25
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@smartico/public-api",
3
- "version": "0.0.80",
3
+ "version": "0.0.82",
4
4
  "description": "Smartico public API",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
@@ -25,6 +25,8 @@ export interface TournamentPublicMeta {
25
25
 
26
26
  featured?: boolean;
27
27
 
28
+ position?: number;
29
+
28
30
  // custom data as string or JSON string that can be used in UIWidget
29
31
  custom_data?: string;
30
32
  }