@mana-app/types 0.0.4 → 0.0.6
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/dist/types/core/SourceInfo.d.ts +12 -12
- package/package.json +34 -34
|
@@ -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
|
-
*
|
|
57
|
+
* List of languages codes this source has chapters in ISO-631 Format
|
|
58
58
|
*/
|
|
59
|
-
readonly
|
|
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
|
-
*
|
|
71
|
+
* List of badges this source has
|
|
72
72
|
*/
|
|
73
|
-
readonly
|
|
73
|
+
readonly badges?: string[];
|
|
74
74
|
/**
|
|
75
|
-
*
|
|
75
|
+
* This Minimum App Version This Source Supports.
|
|
76
76
|
*/
|
|
77
|
-
readonly
|
|
77
|
+
readonly minSupportedAppVersion?: string;
|
|
78
78
|
/**
|
|
79
|
-
*
|
|
79
|
+
* The Websites URL
|
|
80
80
|
*/
|
|
81
|
-
readonly
|
|
81
|
+
readonly website?: string;
|
|
82
82
|
};
|
package/package.json
CHANGED
|
@@ -1,35 +1,35 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "@mana-app/types",
|
|
3
|
-
"version": "0.0.
|
|
4
|
-
"main": "dist/index.js",
|
|
5
|
-
"types": "dist/index.d.ts",
|
|
6
|
-
"scripts": {
|
|
7
|
-
"build": "rm -rf ./dist && tsc",
|
|
8
|
-
"check:circular": "dpdm ."
|
|
9
|
-
},
|
|
10
|
-
"devDependencies": {
|
|
11
|
-
"@types/node": "^20.11.30",
|
|
12
|
-
"@typescript-eslint/eslint-plugin": "^7.3.1",
|
|
13
|
-
"dpdm": "^3.14.0",
|
|
14
|
-
"eslint": "^8.57.0",
|
|
15
|
-
"prettier": "^3.2.5",
|
|
16
|
-
"typescript": "^5.4.3"
|
|
17
|
-
},
|
|
18
|
-
"keywords": [
|
|
19
|
-
"mana"
|
|
20
|
-
],
|
|
21
|
-
"author": {
|
|
22
|
-
"name": "Seyden",
|
|
23
|
-
"email": "saiifii@live.de",
|
|
24
|
-
"url": "https://github.com/Seyden"
|
|
25
|
-
},
|
|
26
|
-
"license": "MIT",
|
|
27
|
-
"description": "Types & Interfaces for Mana’s JavaScriptCore and WebKit environment.",
|
|
28
|
-
"files": [
|
|
29
|
-
"/dist"
|
|
30
|
-
],
|
|
31
|
-
"repository": {
|
|
32
|
-
"type": "git",
|
|
33
|
-
"url": "https://github.com/Mana-iOS/types.git"
|
|
34
|
-
}
|
|
1
|
+
{
|
|
2
|
+
"name": "@mana-app/types",
|
|
3
|
+
"version": "0.0.6",
|
|
4
|
+
"main": "dist/index.js",
|
|
5
|
+
"types": "dist/index.d.ts",
|
|
6
|
+
"scripts": {
|
|
7
|
+
"build": "rm -rf ./dist && tsc",
|
|
8
|
+
"check:circular": "dpdm ."
|
|
9
|
+
},
|
|
10
|
+
"devDependencies": {
|
|
11
|
+
"@types/node": "^20.11.30",
|
|
12
|
+
"@typescript-eslint/eslint-plugin": "^7.3.1",
|
|
13
|
+
"dpdm": "^3.14.0",
|
|
14
|
+
"eslint": "^8.57.0",
|
|
15
|
+
"prettier": "^3.2.5",
|
|
16
|
+
"typescript": "^5.4.3"
|
|
17
|
+
},
|
|
18
|
+
"keywords": [
|
|
19
|
+
"mana"
|
|
20
|
+
],
|
|
21
|
+
"author": {
|
|
22
|
+
"name": "Seyden",
|
|
23
|
+
"email": "saiifii@live.de",
|
|
24
|
+
"url": "https://github.com/Seyden"
|
|
25
|
+
},
|
|
26
|
+
"license": "MIT",
|
|
27
|
+
"description": "Types & Interfaces for Mana’s JavaScriptCore and WebKit environment.",
|
|
28
|
+
"files": [
|
|
29
|
+
"/dist"
|
|
30
|
+
],
|
|
31
|
+
"repository": {
|
|
32
|
+
"type": "git",
|
|
33
|
+
"url": "https://github.com/Mana-iOS/types.git"
|
|
34
|
+
}
|
|
35
35
|
}
|