e4k-data 4.66.17 → 4.69.3
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/LICENSE +1 -1
- package/README.md +2 -2
- package/data/buildings.json +380 -167
- package/data/constructionItems.json +90 -0
- package/data/expansions.json +54 -54
- package/data/horses.json +143 -143
- package/data/leaguetypeEvents.json +12 -12
- package/data/packages.json +1540 -0
- package/data/rewards.json +161 -33
- package/data/version.json +1 -1
- package/data/versionInfo.json +3 -3
- package/data/wodIds.json +192 -192
- package/images/x768.json +958 -20
- package/languages/da.json +103 -15
- package/languages/de.json +107 -19
- package/languages/el.json +104 -16
- package/languages/en.json +104 -16
- package/languages/es.json +108 -20
- package/languages/fi.json +104 -16
- package/languages/fr.json +107 -19
- package/languages/it.json +103 -15
- package/languages/ja.json +104 -16
- package/languages/ko.json +103 -15
- package/languages/nl.json +104 -16
- package/languages/no.json +104 -16
- package/languages/pl.json +106 -18
- package/languages/pt.json +103 -15
- package/languages/ru.json +108 -20
- package/languages/sv.json +104 -16
- package/languages/tr.json +104 -16
- package/languages/zh_CN.json +103 -15
- package/languages/zh_TW.json +104 -16
- package/package.json +1 -1
- package/typings/images.d.ts +62 -0
- package/typings/languages.d.ts +127 -39
- package/typings/types.d.ts +115 -115
package/typings/types.d.ts
CHANGED
|
@@ -1,116 +1,116 @@
|
|
|
1
|
-
export * from './data';
|
|
2
|
-
import {Data} from './data';
|
|
3
|
-
export * from './images';
|
|
4
|
-
import {Images} from './images';
|
|
5
|
-
export * from './languages';
|
|
6
|
-
import {Languages} from './languages';
|
|
7
|
-
|
|
8
|
-
declare module 'e4k-data' {
|
|
9
|
-
interface E4KData {
|
|
10
|
-
country: Countries;
|
|
11
|
-
data: Data;
|
|
12
|
-
imageData: Images;
|
|
13
|
-
imageBaseUrl: string;
|
|
14
|
-
languages: Languages;
|
|
15
|
-
network: Network;
|
|
16
|
-
}
|
|
17
|
-
|
|
18
|
-
const e4KData: E4KData;
|
|
19
|
-
export = e4KData;
|
|
20
|
-
}
|
|
21
|
-
|
|
22
|
-
///region Country
|
|
23
|
-
export interface Countries {
|
|
24
|
-
versionNo: number,
|
|
25
|
-
deployTime: number,
|
|
26
|
-
AR: Country,
|
|
27
|
-
ARAB: Country,
|
|
28
|
-
ASIA: Country,
|
|
29
|
-
AU: Country,
|
|
30
|
-
BR: Country,
|
|
31
|
-
CN: Country,
|
|
32
|
-
DE: Country,
|
|
33
|
-
DK: Country,
|
|
34
|
-
ES: Country,
|
|
35
|
-
FI: Country,
|
|
36
|
-
FR: Country,
|
|
37
|
-
GB: Country,
|
|
38
|
-
GR: Country,
|
|
39
|
-
HISP: Country,
|
|
40
|
-
ID: Country,
|
|
41
|
-
IN: Country,
|
|
42
|
-
IT: Country,
|
|
43
|
-
JP: Country,
|
|
44
|
-
KR: Country,
|
|
45
|
-
MX: Country,
|
|
46
|
-
NL: Country,
|
|
47
|
-
NO: Country,
|
|
48
|
-
PH: Country,
|
|
49
|
-
PL: Country,
|
|
50
|
-
PT: Country,
|
|
51
|
-
RU: Country,
|
|
52
|
-
SE: Country,
|
|
53
|
-
TR: Country,
|
|
54
|
-
US: Country,
|
|
55
|
-
XX: Country,
|
|
56
|
-
AE: Country,
|
|
57
|
-
HANT: Country,
|
|
58
|
-
}
|
|
59
|
-
|
|
60
|
-
export interface Country {
|
|
61
|
-
country: string,
|
|
62
|
-
lang: string,
|
|
63
|
-
flashCode: string,
|
|
64
|
-
timezoneStart: number,
|
|
65
|
-
timezoneEnd: number,
|
|
66
|
-
browserCodes: string,
|
|
67
|
-
geoIpCodes: string,
|
|
68
|
-
np: string,
|
|
69
|
-
}
|
|
70
|
-
|
|
71
|
-
///endregion
|
|
72
|
-
|
|
73
|
-
///region Network
|
|
74
|
-
export interface Network {
|
|
75
|
-
versionNo: number,
|
|
76
|
-
deployTime: number,
|
|
77
|
-
is_approval: boolean,
|
|
78
|
-
instances: { instance: NetworkInstance[] },
|
|
79
|
-
"test-instances"?: { instance: NetworkInstance[] },
|
|
80
|
-
general: {
|
|
81
|
-
defaultinstance: number,
|
|
82
|
-
allowedfullscreen: boolean,
|
|
83
|
-
networkname: string,
|
|
84
|
-
usekeybaselogin: boolean,
|
|
85
|
-
networkbuddies: boolean,
|
|
86
|
-
enablefeedmessages: boolean,
|
|
87
|
-
enablelonelycow: boolean,
|
|
88
|
-
requestpaybyjs: boolean,
|
|
89
|
-
earncredits: number,
|
|
90
|
-
useexternallinks: boolean,
|
|
91
|
-
invitefriends: boolean,
|
|
92
|
-
maxusernamelength: number,
|
|
93
|
-
usepayment: boolean,
|
|
94
|
-
showversion: boolean,
|
|
95
|
-
replaceUrlPatternForWebSocket: boolean,
|
|
96
|
-
useWebSocket: boolean,
|
|
97
|
-
webSocketProtocol: string
|
|
98
|
-
}
|
|
99
|
-
}
|
|
100
|
-
|
|
101
|
-
export interface NetworkInstance {
|
|
102
|
-
value: number,
|
|
103
|
-
server: string,
|
|
104
|
-
port: number,
|
|
105
|
-
zone: string
|
|
106
|
-
zoneId: number,
|
|
107
|
-
instanceName: number,
|
|
108
|
-
isFavorite: 0 | 1,
|
|
109
|
-
instanceLocaId: string,
|
|
110
|
-
isPriority: 0 | 1,
|
|
111
|
-
isInternational: 0 | 1,
|
|
112
|
-
countries: string[],
|
|
113
|
-
defaultcountry?: string,
|
|
114
|
-
}
|
|
115
|
-
|
|
1
|
+
export * from './data';
|
|
2
|
+
import {Data} from './data';
|
|
3
|
+
export * from './images';
|
|
4
|
+
import {Images} from './images';
|
|
5
|
+
export * from './languages';
|
|
6
|
+
import {Languages} from './languages';
|
|
7
|
+
|
|
8
|
+
declare module 'e4k-data' {
|
|
9
|
+
interface E4KData {
|
|
10
|
+
country: Countries;
|
|
11
|
+
data: Data;
|
|
12
|
+
imageData: Images;
|
|
13
|
+
imageBaseUrl: string;
|
|
14
|
+
languages: Languages;
|
|
15
|
+
network: Network;
|
|
16
|
+
}
|
|
17
|
+
|
|
18
|
+
const e4KData: E4KData;
|
|
19
|
+
export = e4KData;
|
|
20
|
+
}
|
|
21
|
+
|
|
22
|
+
///region Country
|
|
23
|
+
export interface Countries {
|
|
24
|
+
versionNo: number,
|
|
25
|
+
deployTime: number,
|
|
26
|
+
AR: Country,
|
|
27
|
+
ARAB: Country,
|
|
28
|
+
ASIA: Country,
|
|
29
|
+
AU: Country,
|
|
30
|
+
BR: Country,
|
|
31
|
+
CN: Country,
|
|
32
|
+
DE: Country,
|
|
33
|
+
DK: Country,
|
|
34
|
+
ES: Country,
|
|
35
|
+
FI: Country,
|
|
36
|
+
FR: Country,
|
|
37
|
+
GB: Country,
|
|
38
|
+
GR: Country,
|
|
39
|
+
HISP: Country,
|
|
40
|
+
ID: Country,
|
|
41
|
+
IN: Country,
|
|
42
|
+
IT: Country,
|
|
43
|
+
JP: Country,
|
|
44
|
+
KR: Country,
|
|
45
|
+
MX: Country,
|
|
46
|
+
NL: Country,
|
|
47
|
+
NO: Country,
|
|
48
|
+
PH: Country,
|
|
49
|
+
PL: Country,
|
|
50
|
+
PT: Country,
|
|
51
|
+
RU: Country,
|
|
52
|
+
SE: Country,
|
|
53
|
+
TR: Country,
|
|
54
|
+
US: Country,
|
|
55
|
+
XX: Country,
|
|
56
|
+
AE: Country,
|
|
57
|
+
HANT: Country,
|
|
58
|
+
}
|
|
59
|
+
|
|
60
|
+
export interface Country {
|
|
61
|
+
country: string,
|
|
62
|
+
lang: string,
|
|
63
|
+
flashCode: string,
|
|
64
|
+
timezoneStart: number,
|
|
65
|
+
timezoneEnd: number,
|
|
66
|
+
browserCodes: string,
|
|
67
|
+
geoIpCodes: string,
|
|
68
|
+
np: string,
|
|
69
|
+
}
|
|
70
|
+
|
|
71
|
+
///endregion
|
|
72
|
+
|
|
73
|
+
///region Network
|
|
74
|
+
export interface Network {
|
|
75
|
+
versionNo: number,
|
|
76
|
+
deployTime: number,
|
|
77
|
+
is_approval: boolean,
|
|
78
|
+
instances: { instance: NetworkInstance[] },
|
|
79
|
+
"test-instances"?: { instance: NetworkInstance[] },
|
|
80
|
+
general: {
|
|
81
|
+
defaultinstance: number,
|
|
82
|
+
allowedfullscreen: boolean,
|
|
83
|
+
networkname: string,
|
|
84
|
+
usekeybaselogin: boolean,
|
|
85
|
+
networkbuddies: boolean,
|
|
86
|
+
enablefeedmessages: boolean,
|
|
87
|
+
enablelonelycow: boolean,
|
|
88
|
+
requestpaybyjs: boolean,
|
|
89
|
+
earncredits: number,
|
|
90
|
+
useexternallinks: boolean,
|
|
91
|
+
invitefriends: boolean,
|
|
92
|
+
maxusernamelength: number,
|
|
93
|
+
usepayment: boolean,
|
|
94
|
+
showversion: boolean,
|
|
95
|
+
replaceUrlPatternForWebSocket: boolean,
|
|
96
|
+
useWebSocket: boolean,
|
|
97
|
+
webSocketProtocol: string
|
|
98
|
+
}
|
|
99
|
+
}
|
|
100
|
+
|
|
101
|
+
export interface NetworkInstance {
|
|
102
|
+
value: number,
|
|
103
|
+
server: string,
|
|
104
|
+
port: number,
|
|
105
|
+
zone: string
|
|
106
|
+
zoneId: number,
|
|
107
|
+
instanceName: number,
|
|
108
|
+
isFavorite: 0 | 1,
|
|
109
|
+
instanceLocaId: string,
|
|
110
|
+
isPriority: 0 | 1,
|
|
111
|
+
isInternational: 0 | 1,
|
|
112
|
+
countries: string[],
|
|
113
|
+
defaultcountry?: string,
|
|
114
|
+
}
|
|
115
|
+
|
|
116
116
|
///endregion
|