alangregory-interfaces 1.0.4 → 1.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/games/mir4/api.d.ts +6 -0
- package/dist/games/mir4/download.d.ts +11 -0
- package/dist/games/mir4/version.d.ts +51 -0
- package/dist/index.d.ts +3 -67
- package/package.json +3 -6
@@ -0,0 +1,51 @@
|
|
1
|
+
export interface VersionCheckResponse {
|
2
|
+
Data: {
|
3
|
+
FrontServerURL: string;
|
4
|
+
FrontServerList: {
|
5
|
+
[index: string]: string;
|
6
|
+
};
|
7
|
+
PaymentServerURL: string;
|
8
|
+
EventServerURL: string;
|
9
|
+
AuthServerURL: string;
|
10
|
+
MaintenanceURL: string;
|
11
|
+
ServiceURL: string;
|
12
|
+
PrivacyURL: string;
|
13
|
+
OperationURL: string;
|
14
|
+
SubscriptionURL: string;
|
15
|
+
CommunityURL: string;
|
16
|
+
CustomerURL: string;
|
17
|
+
CSURL: string;
|
18
|
+
ReportTyposURL: string;
|
19
|
+
GameguideURL: string;
|
20
|
+
HelpURL: string;
|
21
|
+
CouponURL: string;
|
22
|
+
OneStoreLogOutURL: string;
|
23
|
+
PolicyURL: string;
|
24
|
+
HotAndNewURL: string;
|
25
|
+
FrontBannerURL: string;
|
26
|
+
ProfileURL: string;
|
27
|
+
ImgUploadURL: string;
|
28
|
+
IOSConsumeURL: string;
|
29
|
+
HumanAuthURL: string;
|
30
|
+
StoreURL: string;
|
31
|
+
WemixWebAuthURL: string;
|
32
|
+
WemixOAuthURL: string;
|
33
|
+
WemixRedirectURL: string;
|
34
|
+
SteamAuthURL: string;
|
35
|
+
AdUnitAndroid: string;
|
36
|
+
AdUnitiOS: string;
|
37
|
+
isGuestLoginAllowed: boolean;
|
38
|
+
IsGameJoin: boolean;
|
39
|
+
IsMantenance: boolean;
|
40
|
+
UpdateStatus: number;
|
41
|
+
IsWhiteList: boolean;
|
42
|
+
MaintenanceList: {
|
43
|
+
[index: string]: string;
|
44
|
+
};
|
45
|
+
IsGameJoinList: {
|
46
|
+
[index: string]: string;
|
47
|
+
};
|
48
|
+
};
|
49
|
+
Code: string;
|
50
|
+
Msg: string;
|
51
|
+
}
|
package/dist/index.d.ts
CHANGED
@@ -1,67 +1,3 @@
|
|
1
|
-
|
2
|
-
|
3
|
-
|
4
|
-
LauncherVersiin: number;
|
5
|
-
FileData: string;
|
6
|
-
FileSize: number;
|
7
|
-
}
|
8
|
-
export interface VersionCheckResponse {
|
9
|
-
Data: {
|
10
|
-
FrontServerURL: string;
|
11
|
-
FrontServerList: {
|
12
|
-
[index: string]: string;
|
13
|
-
};
|
14
|
-
PaymentServerURL: string;
|
15
|
-
EventServerURL: string;
|
16
|
-
AuthServerURL: string;
|
17
|
-
MaintenanceURL: string;
|
18
|
-
ServiceURL: string;
|
19
|
-
PrivacyURL: string;
|
20
|
-
OperationURL: string;
|
21
|
-
SubscriptionURL: string;
|
22
|
-
CommunityURL: string;
|
23
|
-
CustomerURL: string;
|
24
|
-
CSURL: string;
|
25
|
-
ReportTyposURL: string;
|
26
|
-
GameguideURL: string;
|
27
|
-
HelpURL: string;
|
28
|
-
CouponURL: string;
|
29
|
-
OneStoreLogOutURL: string;
|
30
|
-
PolicyURL: string;
|
31
|
-
HotAndNewURL: string;
|
32
|
-
FrontBannerURL: string;
|
33
|
-
ProfileURL: string;
|
34
|
-
ImgUploadURL: string;
|
35
|
-
IOSConsumeURL: string;
|
36
|
-
HumanAuthURL: string;
|
37
|
-
StoreURL: string;
|
38
|
-
WemixWebAuthURL: string;
|
39
|
-
WemixOAuthURL: string;
|
40
|
-
WemixRedirectURL: string;
|
41
|
-
SteamAuthURL: string;
|
42
|
-
AdUnitAndroid: string;
|
43
|
-
AdUnitiOS: string;
|
44
|
-
isGuestLoginAllowed: boolean;
|
45
|
-
IsGameJoin: boolean;
|
46
|
-
IsMantenance: boolean;
|
47
|
-
UpdateStatus: number;
|
48
|
-
IsWhiteList: boolean;
|
49
|
-
MaintenanceList: {
|
50
|
-
[index: string]: string;
|
51
|
-
};
|
52
|
-
IsGameJoinList: {
|
53
|
-
[index: string]: string;
|
54
|
-
};
|
55
|
-
};
|
56
|
-
Code: string;
|
57
|
-
Msg: string;
|
58
|
-
}
|
59
|
-
|
60
|
-
}
|
61
|
-
declare module 'alangregory-interfaces/index' {
|
62
|
-
|
63
|
-
}
|
64
|
-
declare module 'alangregory-interfaces' {
|
65
|
-
import main = require('alangregory-interfaces/index');
|
66
|
-
export = main;
|
67
|
-
}
|
1
|
+
export * from "./games/mir4/api";
|
2
|
+
export * from "./games/mir4/download";
|
3
|
+
export * from "./games/mir4/version";
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "alangregory-interfaces",
|
3
|
-
"version": "1.0.
|
3
|
+
"version": "1.0.6",
|
4
4
|
"description": "typescript interface definitions",
|
5
5
|
"main": "dist/index.js",
|
6
6
|
"types": "dist/index.d.ts",
|
@@ -8,7 +8,7 @@
|
|
8
8
|
"dist/**/*"
|
9
9
|
],
|
10
10
|
"scripts": {
|
11
|
-
"build": "tsc
|
11
|
+
"build": "tsc",
|
12
12
|
"lint": "eslint . --ext .ts,.tsx"
|
13
13
|
},
|
14
14
|
"repository": {
|
@@ -28,8 +28,5 @@
|
|
28
28
|
"eslint": "^8.28.0",
|
29
29
|
"ts-node": "^10.9.1",
|
30
30
|
"typescript": "^4.9.3"
|
31
|
-
},
|
32
|
-
"dependencies": {
|
33
|
-
"npm-dts": "^1.3.12"
|
34
31
|
}
|
35
|
-
}
|
32
|
+
}
|