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.
@@ -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