@mana-app/types 0.0.4 → 0.0.5

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.
@@ -37,6 +37,10 @@ export type SourceInfo = {
37
37
  * The Name of this Source, Typically the name of the Source
38
38
  */
39
39
  readonly name: string;
40
+ /**
41
+ * The Semantic Version of the Source
42
+ */
43
+ readonly version: string;
40
44
  /**
41
45
  * The Description of this Source
42
46
  */
@@ -45,18 +49,14 @@ export type SourceInfo = {
45
49
  * The Developers of this Source
46
50
  */
47
51
  readonly developers?: SourceDeveloper[];
48
- /**
49
- * The Semantic Version of the Source
50
- */
51
- readonly version: string;
52
52
  /**
53
53
  * The general content rating of titles on this Source
54
54
  */
55
55
  readonly rating?: CatalogRating;
56
56
  /**
57
- * This Minimum App Version This Source Supports.
57
+ * List of languages codes this source has chapters in ISO-631 Format
58
58
  */
59
- readonly minSupportedAppVersion?: string;
59
+ readonly supportedLanguages?: string[];
60
60
  /**
61
61
  * The filename of the sources cover image within the assets folder.
62
62
  *
@@ -68,15 +68,15 @@ export type SourceInfo = {
68
68
  */
69
69
  readonly thumbnail?: string;
70
70
  /**
71
- * The Websites URL
71
+ * List of badges this source has
72
72
  */
73
- readonly website?: string;
73
+ readonly badges?: string[];
74
74
  /**
75
- * List of languages codes this source has chapters in ISO-631 Format
75
+ * This Minimum App Version This Source Supports.
76
76
  */
77
- readonly supportedLanguages?: string[];
77
+ readonly minSupportedAppVersion?: string;
78
78
  /**
79
- * List of badges this source has
79
+ * The Websites URL
80
80
  */
81
- readonly badges?: SourceBadge[];
81
+ readonly website?: string;
82
82
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mana-app/types",
3
- "version": "0.0.4",
3
+ "version": "0.0.5",
4
4
  "main": "dist/index.js",
5
5
  "types": "dist/index.d.ts",
6
6
  "scripts": {