raspberry_games_server_game_logic 1.8.342 → 1.8.346
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/Kosi-Kaverit-kaverit.js +105 -117
- package/Kosi-Kaverit-kaverit.js.map +1 -1
- package/Kosi-Kodein-kodein-di.js +935 -945
- package/Kosi-Kodein-kodein-di.js.map +1 -1
- package/Kotlin-DateTime-library-kotlinx-datetime.js +4637 -3658
- package/Kotlin-DateTime-library-kotlinx-datetime.js.map +1 -1
- package/Logic_Debertz-core.js +1909 -1936
- package/Logic_Debertz-core.js.map +1 -1
- package/Logic_Debertz-engine.js +18559 -19039
- package/Logic_Debertz-engine.js.map +1 -1
- package/Logic_Debertz-game_server.d.ts +934 -167
- package/Logic_Debertz-game_server.js +2061 -2015
- package/Logic_Debertz-game_server.js.map +1 -1
- package/kotlin-kotlin-stdlib.js +4834 -4537
- package/kotlin-kotlin-stdlib.js.map +1 -1
- package/kotlin_org_jetbrains_kotlin_kotlin_dom_api_compat.js.map +1 -1
- package/kotlinx-atomicfu.js +25 -26
- package/kotlinx-atomicfu.js.map +1 -1
- package/kotlinx-coroutines-core.js +3195 -3373
- package/kotlinx-coroutines-core.js.map +1 -1
- package/kotlinx-io-kotlinx-io-bytestring.js.map +1 -1
- package/kotlinx-io-kotlinx-io-core.js +459 -523
- package/kotlinx-io-kotlinx-io-core.js.map +1 -1
- package/kotlinx-serialization-kotlinx-serialization-core.js +2372 -2414
- package/kotlinx-serialization-kotlinx-serialization-core.js.map +1 -1
- package/kotlinx-serialization-kotlinx-serialization-json.js +1963 -1977
- package/kotlinx-serialization-kotlinx-serialization-json.js.map +1 -1
- package/ktor-ktor-client-content-negotiation.js +194 -194
- package/ktor-ktor-client-content-negotiation.js.map +1 -1
- package/ktor-ktor-client-core.js +1902 -1937
- package/ktor-ktor-client-core.js.map +1 -1
- package/ktor-ktor-client-js.js.map +1 -1
- package/ktor-ktor-client-logging.js +393 -399
- package/ktor-ktor-client-logging.js.map +1 -1
- package/ktor-ktor-events.js +12 -15
- package/ktor-ktor-events.js.map +1 -1
- package/ktor-ktor-http.js +964 -1154
- package/ktor-ktor-http.js.map +1 -1
- package/ktor-ktor-io.js +1715 -1825
- package/ktor-ktor-io.js.map +1 -1
- package/ktor-ktor-serialization-kotlinx-json.js +8 -8
- package/ktor-ktor-serialization-kotlinx-json.js.map +1 -1
- package/ktor-ktor-serialization-kotlinx.js +238 -243
- package/ktor-ktor-serialization-kotlinx.js.map +1 -1
- package/ktor-ktor-serialization.js +100 -96
- package/ktor-ktor-serialization.js.map +1 -1
- package/ktor-ktor-utils.js +655 -689
- package/ktor-ktor-utils.js.map +1 -1
- package/ktor-ktor-websocket-serialization.js.map +1 -1
- package/ktor-ktor-websockets.js +71 -77
- package/ktor-ktor-websockets.js.map +1 -1
- package/package.json +1 -2
- package/raspberry-cardgame-lib-core.js +326 -360
- package/raspberry-cardgame-lib-core.js.map +1 -1
- package/raspberry-cardgame-lib-logger.js +148 -119
- package/raspberry-cardgame-lib-logger.js.map +1 -1
- package/raspberry-cardgame-lib-random.js +965 -1034
- package/raspberry-cardgame-lib-random.js.map +1 -1
- package/secure-random-secure-random.js +36 -35
- package/secure-random-secure-random.js.map +1 -1
- package/uuid.js +35 -39
- package/uuid.js.map +1 -1
- package/kotlin-kotlinx-atomicfu-runtime.js +0 -15
- package/kotlin-kotlinx-atomicfu-runtime.js.map +0 -1
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
type Nullable<T> = T | null | undefined
|
|
2
|
+
declare function KtSingleton<T>(): T & (abstract new() => any);
|
|
2
3
|
export declare namespace kotlin.collections {
|
|
3
4
|
interface KtList<E> /* extends kotlin.collections.Collection<E> */ {
|
|
4
5
|
asJsReadonlyArrayView(): ReadonlyArray<E>;
|
|
@@ -6,27 +7,48 @@ export declare namespace kotlin.collections {
|
|
|
6
7
|
readonly "kotlin.collections.KtList": unique symbol;
|
|
7
8
|
};
|
|
8
9
|
}
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
}
|
|
10
|
+
abstract class KtList<E> extends KtSingleton<KtList.$metadata$.constructor>() {
|
|
11
|
+
private constructor();
|
|
12
|
+
}
|
|
13
|
+
/** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
|
|
14
|
+
namespace KtList.$metadata$ {
|
|
15
|
+
abstract class constructor {
|
|
16
|
+
fromJsArray<E>(array: ReadonlyArray<E>): kotlin.collections.KtList<E>;
|
|
17
|
+
private constructor();
|
|
18
|
+
}
|
|
19
|
+
}
|
|
12
20
|
interface KtSet<E> /* extends kotlin.collections.Collection<E> */ {
|
|
13
21
|
asJsReadonlySetView(): ReadonlySet<E>;
|
|
14
22
|
readonly __doNotUseOrImplementIt: {
|
|
15
23
|
readonly "kotlin.collections.KtSet": unique symbol;
|
|
16
24
|
};
|
|
17
25
|
}
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
}
|
|
26
|
+
abstract class KtSet<E> extends KtSingleton<KtSet.$metadata$.constructor>() {
|
|
27
|
+
private constructor();
|
|
28
|
+
}
|
|
29
|
+
/** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
|
|
30
|
+
namespace KtSet.$metadata$ {
|
|
31
|
+
abstract class constructor {
|
|
32
|
+
fromJsSet<E>(set: ReadonlySet<E>): kotlin.collections.KtSet<E>;
|
|
33
|
+
private constructor();
|
|
34
|
+
}
|
|
35
|
+
}
|
|
21
36
|
interface KtMap<K, V> {
|
|
22
37
|
asJsReadonlyMapView(): ReadonlyMap<K, V>;
|
|
23
38
|
readonly __doNotUseOrImplementIt: {
|
|
24
39
|
readonly "kotlin.collections.KtMap": unique symbol;
|
|
25
40
|
};
|
|
26
41
|
}
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
}
|
|
42
|
+
abstract class KtMap<K, V> extends KtSingleton<KtMap.$metadata$.constructor>() {
|
|
43
|
+
private constructor();
|
|
44
|
+
}
|
|
45
|
+
/** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
|
|
46
|
+
namespace KtMap.$metadata$ {
|
|
47
|
+
abstract class constructor {
|
|
48
|
+
fromJsMap<K, V>(map: ReadonlyMap<K, V>): kotlin.collections.KtMap<K, V>;
|
|
49
|
+
private constructor();
|
|
50
|
+
}
|
|
51
|
+
}
|
|
30
52
|
}
|
|
31
53
|
export declare namespace games.raspberry.logger {
|
|
32
54
|
interface LoggerEnabledTrigger extends games.raspberry.logger.RaspberryLogger {
|
|
@@ -72,6 +94,10 @@ export declare namespace games.raspberry.card_game.random.data.models {
|
|
|
72
94
|
hashCode(): number;
|
|
73
95
|
equals(other: Nullable<any>): boolean;
|
|
74
96
|
}
|
|
97
|
+
/** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
|
|
98
|
+
namespace CardDecksRequestUserData.$metadata$ {
|
|
99
|
+
const constructor: abstract new () => CardDecksRequestUserData;
|
|
100
|
+
}
|
|
75
101
|
class CardDeckRequestUserData {
|
|
76
102
|
constructor(players: kotlin.collections.KtList<games.raspberry.card_game.random.data.models.UserInfoData>, gameId: string);
|
|
77
103
|
get players(): kotlin.collections.KtList<games.raspberry.card_game.random.data.models.UserInfoData>;
|
|
@@ -81,6 +107,10 @@ export declare namespace games.raspberry.card_game.random.data.models {
|
|
|
81
107
|
hashCode(): number;
|
|
82
108
|
equals(other: Nullable<any>): boolean;
|
|
83
109
|
}
|
|
110
|
+
/** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
|
|
111
|
+
namespace CardDeckRequestUserData.$metadata$ {
|
|
112
|
+
const constructor: abstract new () => CardDeckRequestUserData;
|
|
113
|
+
}
|
|
84
114
|
class UserInfoData {
|
|
85
115
|
constructor(id: string, name: string);
|
|
86
116
|
get id(): string;
|
|
@@ -90,6 +120,10 @@ export declare namespace games.raspberry.card_game.random.data.models {
|
|
|
90
120
|
hashCode(): number;
|
|
91
121
|
equals(other: Nullable<any>): boolean;
|
|
92
122
|
}
|
|
123
|
+
/** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
|
|
124
|
+
namespace UserInfoData.$metadata$ {
|
|
125
|
+
const constructor: abstract new () => UserInfoData;
|
|
126
|
+
}
|
|
93
127
|
}
|
|
94
128
|
export declare namespace games.raspberry.card_game.random.data.models {
|
|
95
129
|
class GameCardDecksRecord {
|
|
@@ -102,10 +136,23 @@ export declare namespace games.raspberry.card_game.random.data.models {
|
|
|
102
136
|
toString(): string;
|
|
103
137
|
hashCode(): number;
|
|
104
138
|
equals(other: Nullable<any>): boolean;
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
139
|
+
}
|
|
140
|
+
/** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
|
|
141
|
+
namespace GameCardDecksRecord.$metadata$ {
|
|
142
|
+
const constructor: abstract new () => GameCardDecksRecord;
|
|
143
|
+
}
|
|
144
|
+
namespace GameCardDecksRecord {
|
|
145
|
+
abstract class Companion extends KtSingleton<Companion.$metadata$.constructor>() {
|
|
146
|
+
private constructor();
|
|
147
|
+
}
|
|
148
|
+
/** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
|
|
149
|
+
namespace Companion.$metadata$ {
|
|
150
|
+
abstract class constructor {
|
|
151
|
+
firstRound(poolId: string, signature: Nullable<string>, newCardDeckData: games.raspberry.card_game.random.data.models.GameCardDeckData, userData: games.raspberry.card_game.random.data.models.CardDeckRequestUserData): games.raspberry.card_game.random.data.models.GameCardDecksRecord;
|
|
152
|
+
nextRound(gameCardDecksRecord: games.raspberry.card_game.random.data.models.GameCardDecksRecord, newCardDeckData: games.raspberry.card_game.random.data.models.GameCardDeckData): games.raspberry.card_game.random.data.models.GameCardDecksRecord;
|
|
153
|
+
private constructor();
|
|
154
|
+
}
|
|
155
|
+
}
|
|
109
156
|
}
|
|
110
157
|
class GameCardDeckData {
|
|
111
158
|
constructor(cardDeckIndex: number, cards: kotlin.collections.KtList<number>);
|
|
@@ -116,6 +163,10 @@ export declare namespace games.raspberry.card_game.random.data.models {
|
|
|
116
163
|
hashCode(): number;
|
|
117
164
|
equals(other: Nullable<any>): boolean;
|
|
118
165
|
}
|
|
166
|
+
/** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
|
|
167
|
+
namespace GameCardDeckData.$metadata$ {
|
|
168
|
+
const constructor: abstract new () => GameCardDeckData;
|
|
169
|
+
}
|
|
119
170
|
}
|
|
120
171
|
export declare namespace games.raspberry.card_game.random.data.models {
|
|
121
172
|
class HttpConfig {
|
|
@@ -127,6 +178,10 @@ export declare namespace games.raspberry.card_game.random.data.models {
|
|
|
127
178
|
hashCode(): number;
|
|
128
179
|
equals(other: Nullable<any>): boolean;
|
|
129
180
|
}
|
|
181
|
+
/** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
|
|
182
|
+
namespace HttpConfig.$metadata$ {
|
|
183
|
+
const constructor: abstract new () => HttpConfig;
|
|
184
|
+
}
|
|
130
185
|
}
|
|
131
186
|
export declare namespace games.raspberry.card_game.random.data.models {
|
|
132
187
|
class RandomOrgConfig {
|
|
@@ -140,6 +195,10 @@ export declare namespace games.raspberry.card_game.random.data.models {
|
|
|
140
195
|
hashCode(): number;
|
|
141
196
|
equals(other: Nullable<any>): boolean;
|
|
142
197
|
}
|
|
198
|
+
/** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
|
|
199
|
+
namespace RandomOrgConfig.$metadata$ {
|
|
200
|
+
const constructor: abstract new () => RandomOrgConfig;
|
|
201
|
+
}
|
|
143
202
|
}
|
|
144
203
|
export declare namespace games.raspberry.card_game.random.data.providers {
|
|
145
204
|
class PoolParams {
|
|
@@ -153,16 +212,34 @@ export declare namespace games.raspberry.card_game.random.data.providers {
|
|
|
153
212
|
hashCode(): number;
|
|
154
213
|
equals(other: Nullable<any>): boolean;
|
|
155
214
|
}
|
|
215
|
+
/** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
|
|
216
|
+
namespace PoolParams.$metadata$ {
|
|
217
|
+
const constructor: abstract new () => PoolParams;
|
|
218
|
+
}
|
|
156
219
|
}
|
|
157
220
|
export declare namespace io.raspberryapps.cardgame.core {
|
|
158
|
-
|
|
159
|
-
|
|
160
|
-
}
|
|
221
|
+
abstract class CoreConfig extends KtSingleton<CoreConfig.$metadata$.constructor>() {
|
|
222
|
+
private constructor();
|
|
223
|
+
}
|
|
224
|
+
/** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
|
|
225
|
+
namespace CoreConfig.$metadata$ {
|
|
226
|
+
abstract class constructor {
|
|
227
|
+
get version(): string;
|
|
228
|
+
private constructor();
|
|
229
|
+
}
|
|
230
|
+
}
|
|
161
231
|
}
|
|
162
232
|
export declare namespace com.logic {
|
|
163
|
-
|
|
164
|
-
|
|
165
|
-
}
|
|
233
|
+
abstract class GameEngineConfig extends KtSingleton<GameEngineConfig.$metadata$.constructor>() {
|
|
234
|
+
private constructor();
|
|
235
|
+
}
|
|
236
|
+
/** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
|
|
237
|
+
namespace GameEngineConfig.$metadata$ {
|
|
238
|
+
abstract class constructor {
|
|
239
|
+
get version(): string;
|
|
240
|
+
private constructor();
|
|
241
|
+
}
|
|
242
|
+
}
|
|
166
243
|
}
|
|
167
244
|
export declare namespace com.logic.data.models {
|
|
168
245
|
class CoreConfig {
|
|
@@ -176,17 +253,34 @@ export declare namespace com.logic.data.models {
|
|
|
176
253
|
toString(): string;
|
|
177
254
|
hashCode(): number;
|
|
178
255
|
equals(other: Nullable<any>): boolean;
|
|
179
|
-
|
|
180
|
-
|
|
181
|
-
|
|
182
|
-
|
|
256
|
+
}
|
|
257
|
+
/** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
|
|
258
|
+
namespace CoreConfig.$metadata$ {
|
|
259
|
+
const constructor: abstract new () => CoreConfig;
|
|
260
|
+
}
|
|
261
|
+
namespace CoreConfig {
|
|
262
|
+
abstract class Companion extends KtSingleton<Companion.$metadata$.constructor>() {
|
|
263
|
+
private constructor();
|
|
264
|
+
}
|
|
265
|
+
/** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
|
|
266
|
+
namespace Companion.$metadata$ {
|
|
267
|
+
abstract class constructor {
|
|
268
|
+
getClientEngineTestMode(fileLogsEnabled: boolean, logsDirectoryPath: string, fileNameFormat?: string): com.logic.data.models.CoreConfig;
|
|
269
|
+
formatter(segment: string, gameId: string, roomId: string, userId: string): string;
|
|
270
|
+
private constructor();
|
|
271
|
+
}
|
|
272
|
+
}
|
|
183
273
|
}
|
|
184
274
|
}
|
|
185
275
|
export declare namespace com.logic.data.models {
|
|
186
276
|
abstract class TerminationGameReason {
|
|
187
277
|
protected constructor();
|
|
188
278
|
}
|
|
189
|
-
|
|
279
|
+
/** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
|
|
280
|
+
namespace TerminationGameReason.$metadata$ {
|
|
281
|
+
const constructor: abstract new () => TerminationGameReason;
|
|
282
|
+
}
|
|
283
|
+
class PlayerLostConnectionReason extends com.logic.data.models.TerminationGameReason.$metadata$.constructor implements com.logic.data.models.FinishPlayerReason {
|
|
190
284
|
constructor(playerId: string, tag: Nullable<string>);
|
|
191
285
|
get playerId(): string;
|
|
192
286
|
get tag(): Nullable<string>;
|
|
@@ -197,7 +291,11 @@ export declare namespace com.logic.data.models {
|
|
|
197
291
|
equals(other: Nullable<any>): boolean;
|
|
198
292
|
readonly __doNotUseOrImplementIt: com.logic.data.models.FinishPlayerReason["__doNotUseOrImplementIt"];
|
|
199
293
|
}
|
|
200
|
-
|
|
294
|
+
/** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
|
|
295
|
+
namespace PlayerLostConnectionReason.$metadata$ {
|
|
296
|
+
const constructor: abstract new () => PlayerLostConnectionReason;
|
|
297
|
+
}
|
|
298
|
+
class PlayerTimeoutReason extends com.logic.data.models.TerminationGameReason.$metadata$.constructor implements com.logic.data.models.FinishPlayerReason {
|
|
201
299
|
constructor(playerId: string, tag: Nullable<string>);
|
|
202
300
|
get playerId(): string;
|
|
203
301
|
get tag(): Nullable<string>;
|
|
@@ -208,7 +306,11 @@ export declare namespace com.logic.data.models {
|
|
|
208
306
|
equals(other: Nullable<any>): boolean;
|
|
209
307
|
readonly __doNotUseOrImplementIt: com.logic.data.models.FinishPlayerReason["__doNotUseOrImplementIt"];
|
|
210
308
|
}
|
|
211
|
-
|
|
309
|
+
/** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
|
|
310
|
+
namespace PlayerTimeoutReason.$metadata$ {
|
|
311
|
+
const constructor: abstract new () => PlayerTimeoutReason;
|
|
312
|
+
}
|
|
313
|
+
class PlayerExitReason extends com.logic.data.models.TerminationGameReason.$metadata$.constructor implements com.logic.data.models.FinishPlayerReason {
|
|
212
314
|
constructor(playerId: string);
|
|
213
315
|
get playerId(): string;
|
|
214
316
|
get connectionState(): com.logic.data.models.player.PlayerConnectionState;
|
|
@@ -218,6 +320,10 @@ export declare namespace com.logic.data.models {
|
|
|
218
320
|
equals(other: Nullable<any>): boolean;
|
|
219
321
|
readonly __doNotUseOrImplementIt: com.logic.data.models.FinishPlayerReason["__doNotUseOrImplementIt"];
|
|
220
322
|
}
|
|
323
|
+
/** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
|
|
324
|
+
namespace PlayerExitReason.$metadata$ {
|
|
325
|
+
const constructor: abstract new () => PlayerExitReason;
|
|
326
|
+
}
|
|
221
327
|
interface FinishPlayerReason {
|
|
222
328
|
readonly playerId: string;
|
|
223
329
|
readonly connectionState: com.logic.data.models.player.PlayerConnectionState;
|
|
@@ -225,7 +331,7 @@ export declare namespace com.logic.data.models {
|
|
|
225
331
|
readonly "com.logic.data.models.FinishPlayerReason": unique symbol;
|
|
226
332
|
};
|
|
227
333
|
}
|
|
228
|
-
class GameFinishedReason extends com.logic.data.models.TerminationGameReason {
|
|
334
|
+
class GameFinishedReason extends com.logic.data.models.TerminationGameReason.$metadata$.constructor {
|
|
229
335
|
constructor(reason: com.logic.data.models.GameFinishedReason.Reason);
|
|
230
336
|
get reason(): com.logic.data.models.GameFinishedReason.Reason;
|
|
231
337
|
copy(reason?: com.logic.data.models.GameFinishedReason.Reason): com.logic.data.models.GameFinishedReason;
|
|
@@ -233,6 +339,10 @@ export declare namespace com.logic.data.models {
|
|
|
233
339
|
hashCode(): number;
|
|
234
340
|
equals(other: Nullable<any>): boolean;
|
|
235
341
|
}
|
|
342
|
+
/** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
|
|
343
|
+
namespace GameFinishedReason.$metadata$ {
|
|
344
|
+
const constructor: abstract new () => GameFinishedReason;
|
|
345
|
+
}
|
|
236
346
|
namespace GameFinishedReason {
|
|
237
347
|
abstract class Reason {
|
|
238
348
|
private constructor();
|
|
@@ -264,11 +374,24 @@ export declare namespace com.logic.data.models {
|
|
|
264
374
|
get ordinal(): 0 | 1 | 2 | 3 | 4 | 5;
|
|
265
375
|
static values(): Array<com.logic.data.models.GameFinishedReason.Reason>;
|
|
266
376
|
static valueOf(value: string): com.logic.data.models.GameFinishedReason.Reason;
|
|
267
|
-
|
|
268
|
-
|
|
377
|
+
}
|
|
378
|
+
/** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
|
|
379
|
+
namespace Reason.$metadata$ {
|
|
380
|
+
const constructor: abstract new () => Reason;
|
|
381
|
+
}
|
|
382
|
+
namespace Reason {
|
|
383
|
+
abstract class Companion extends KtSingleton<Companion.$metadata$.constructor>() {
|
|
384
|
+
private constructor();
|
|
385
|
+
}
|
|
386
|
+
/** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
|
|
387
|
+
namespace Companion.$metadata$ {
|
|
388
|
+
abstract class constructor /* implements kotlinx.serialization.internal.SerializerFactory */ {
|
|
389
|
+
private constructor();
|
|
390
|
+
}
|
|
391
|
+
}
|
|
269
392
|
}
|
|
270
393
|
}
|
|
271
|
-
class GameErrorReason extends com.logic.data.models.TerminationGameReason {
|
|
394
|
+
class GameErrorReason extends com.logic.data.models.TerminationGameReason.$metadata$.constructor {
|
|
272
395
|
constructor(reason: com.logic.data.models.GameErrorReason.Reason);
|
|
273
396
|
get reason(): com.logic.data.models.GameErrorReason.Reason;
|
|
274
397
|
copy(reason?: com.logic.data.models.GameErrorReason.Reason): com.logic.data.models.GameErrorReason;
|
|
@@ -276,6 +399,10 @@ export declare namespace com.logic.data.models {
|
|
|
276
399
|
hashCode(): number;
|
|
277
400
|
equals(other: Nullable<any>): boolean;
|
|
278
401
|
}
|
|
402
|
+
/** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
|
|
403
|
+
namespace GameErrorReason.$metadata$ {
|
|
404
|
+
const constructor: abstract new () => GameErrorReason;
|
|
405
|
+
}
|
|
279
406
|
namespace GameErrorReason {
|
|
280
407
|
abstract class Reason {
|
|
281
408
|
private constructor();
|
|
@@ -307,20 +434,47 @@ export declare namespace com.logic.data.models {
|
|
|
307
434
|
get ordinal(): 0 | 1 | 2 | 3 | 4 | 5;
|
|
308
435
|
static values(): Array<com.logic.data.models.GameErrorReason.Reason>;
|
|
309
436
|
static valueOf(value: string): com.logic.data.models.GameErrorReason.Reason;
|
|
310
|
-
|
|
311
|
-
|
|
437
|
+
}
|
|
438
|
+
/** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
|
|
439
|
+
namespace Reason.$metadata$ {
|
|
440
|
+
const constructor: abstract new () => Reason;
|
|
441
|
+
}
|
|
442
|
+
namespace Reason {
|
|
443
|
+
abstract class Companion extends KtSingleton<Companion.$metadata$.constructor>() {
|
|
444
|
+
private constructor();
|
|
445
|
+
}
|
|
446
|
+
/** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
|
|
447
|
+
namespace Companion.$metadata$ {
|
|
448
|
+
abstract class constructor /* implements kotlinx.serialization.internal.SerializerFactory */ {
|
|
449
|
+
private constructor();
|
|
450
|
+
}
|
|
451
|
+
}
|
|
452
|
+
}
|
|
453
|
+
}
|
|
454
|
+
abstract class WaitingForConnectionReason extends KtSingleton<WaitingForConnectionReason.$metadata$.constructor>() {
|
|
455
|
+
private constructor();
|
|
456
|
+
}
|
|
457
|
+
/** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
|
|
458
|
+
namespace WaitingForConnectionReason.$metadata$ {
|
|
459
|
+
abstract class constructor extends com.logic.data.models.TerminationGameReason.$metadata$.constructor {
|
|
460
|
+
toString(): string;
|
|
461
|
+
hashCode(): number;
|
|
462
|
+
equals(other: Nullable<any>): boolean;
|
|
463
|
+
private constructor();
|
|
464
|
+
}
|
|
465
|
+
}
|
|
466
|
+
abstract class ProcessingReason extends KtSingleton<ProcessingReason.$metadata$.constructor>() {
|
|
467
|
+
private constructor();
|
|
468
|
+
}
|
|
469
|
+
/** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
|
|
470
|
+
namespace ProcessingReason.$metadata$ {
|
|
471
|
+
abstract class constructor extends com.logic.data.models.TerminationGameReason.$metadata$.constructor {
|
|
472
|
+
toString(): string;
|
|
473
|
+
hashCode(): number;
|
|
474
|
+
equals(other: Nullable<any>): boolean;
|
|
475
|
+
private constructor();
|
|
312
476
|
}
|
|
313
477
|
}
|
|
314
|
-
const WaitingForConnectionReason: {
|
|
315
|
-
toString(): string;
|
|
316
|
-
hashCode(): number;
|
|
317
|
-
equals(other: Nullable<any>): boolean;
|
|
318
|
-
} & com.logic.data.models.TerminationGameReason;
|
|
319
|
-
const ProcessingReason: {
|
|
320
|
-
toString(): string;
|
|
321
|
-
hashCode(): number;
|
|
322
|
-
equals(other: Nullable<any>): boolean;
|
|
323
|
-
} & com.logic.data.models.TerminationGameReason;
|
|
324
478
|
}
|
|
325
479
|
export declare namespace com.logic.data.models.player {
|
|
326
480
|
class GameUserInfo implements com.logic.data.models.player.PlayerIdContract {
|
|
@@ -339,6 +493,10 @@ export declare namespace com.logic.data.models.player {
|
|
|
339
493
|
equals(other: Nullable<any>): boolean;
|
|
340
494
|
readonly __doNotUseOrImplementIt: com.logic.data.models.player.PlayerIdContract["__doNotUseOrImplementIt"];
|
|
341
495
|
}
|
|
496
|
+
/** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
|
|
497
|
+
namespace GameUserInfo.$metadata$ {
|
|
498
|
+
const constructor: abstract new () => GameUserInfo;
|
|
499
|
+
}
|
|
342
500
|
}
|
|
343
501
|
export declare namespace com.logic.data.models.player {
|
|
344
502
|
interface PlayerIdContract {
|
|
@@ -391,8 +549,21 @@ export declare namespace com.logic.data.models.player {
|
|
|
391
549
|
get isServerDisconnectReason(): boolean;
|
|
392
550
|
static values(): Array<com.logic.data.models.player.PlayerConnectionState>;
|
|
393
551
|
static valueOf(value: string): com.logic.data.models.player.PlayerConnectionState;
|
|
394
|
-
|
|
395
|
-
|
|
552
|
+
}
|
|
553
|
+
/** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
|
|
554
|
+
namespace PlayerConnectionState.$metadata$ {
|
|
555
|
+
const constructor: abstract new () => PlayerConnectionState;
|
|
556
|
+
}
|
|
557
|
+
namespace PlayerConnectionState {
|
|
558
|
+
abstract class Companion extends KtSingleton<Companion.$metadata$.constructor>() {
|
|
559
|
+
private constructor();
|
|
560
|
+
}
|
|
561
|
+
/** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
|
|
562
|
+
namespace Companion.$metadata$ {
|
|
563
|
+
abstract class constructor /* implements kotlinx.serialization.internal.SerializerFactory */ {
|
|
564
|
+
private constructor();
|
|
565
|
+
}
|
|
566
|
+
}
|
|
396
567
|
}
|
|
397
568
|
}
|
|
398
569
|
export declare namespace com.logic.redux.actions {
|
|
@@ -475,8 +646,21 @@ export declare namespace com.logic.utils.logger.outputs {
|
|
|
475
646
|
get ordinal(): 0 | 1 | 2 | 3 | 4;
|
|
476
647
|
static values(): Array<com.logic.utils.logger.outputs.LogType>;
|
|
477
648
|
static valueOf(value: string): com.logic.utils.logger.outputs.LogType;
|
|
478
|
-
|
|
479
|
-
|
|
649
|
+
}
|
|
650
|
+
/** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
|
|
651
|
+
namespace LogType.$metadata$ {
|
|
652
|
+
const constructor: abstract new () => LogType;
|
|
653
|
+
}
|
|
654
|
+
namespace LogType {
|
|
655
|
+
abstract class Companion extends KtSingleton<Companion.$metadata$.constructor>() {
|
|
656
|
+
private constructor();
|
|
657
|
+
}
|
|
658
|
+
/** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
|
|
659
|
+
namespace Companion.$metadata$ {
|
|
660
|
+
abstract class constructor /* implements kotlinx.serialization.internal.SerializerFactory */ {
|
|
661
|
+
private constructor();
|
|
662
|
+
}
|
|
663
|
+
}
|
|
480
664
|
}
|
|
481
665
|
}
|
|
482
666
|
export declare namespace com.logic.utils.logger.outputs {
|
|
@@ -499,8 +683,21 @@ export declare namespace com.logic.utils.logger.outputs {
|
|
|
499
683
|
toString(): string;
|
|
500
684
|
hashCode(): number;
|
|
501
685
|
equals(other: Nullable<any>): boolean;
|
|
502
|
-
|
|
503
|
-
|
|
686
|
+
}
|
|
687
|
+
/** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
|
|
688
|
+
namespace LoggerOutputDataDto.$metadata$ {
|
|
689
|
+
const constructor: abstract new () => LoggerOutputDataDto;
|
|
690
|
+
}
|
|
691
|
+
namespace LoggerOutputDataDto {
|
|
692
|
+
abstract class Companion extends KtSingleton<Companion.$metadata$.constructor>() {
|
|
693
|
+
private constructor();
|
|
694
|
+
}
|
|
695
|
+
/** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
|
|
696
|
+
namespace Companion.$metadata$ {
|
|
697
|
+
abstract class constructor {
|
|
698
|
+
private constructor();
|
|
699
|
+
}
|
|
700
|
+
}
|
|
504
701
|
}
|
|
505
702
|
}
|
|
506
703
|
export declare namespace games.jass.logic {
|
|
@@ -526,10 +723,23 @@ export declare namespace games.jass.logic.data.models {
|
|
|
526
723
|
hashCode(): number;
|
|
527
724
|
copy(dealerStrategy?: games.jass.logic.domain.interactors.dealer.DealerStrategy, isBotsAreHappy?: boolean, cards?: Nullable<Array<number>>, shuffleCardsPlayerNumber?: Nullable<number>, shouldDisplayDealerStrategy?: boolean): games.jass.logic.data.models.DealerConfig;
|
|
528
725
|
toString(): string;
|
|
529
|
-
|
|
530
|
-
|
|
531
|
-
|
|
532
|
-
|
|
726
|
+
}
|
|
727
|
+
/** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
|
|
728
|
+
namespace DealerConfig.$metadata$ {
|
|
729
|
+
const constructor: abstract new () => DealerConfig;
|
|
730
|
+
}
|
|
731
|
+
namespace DealerConfig {
|
|
732
|
+
abstract class Companion extends KtSingleton<Companion.$metadata$.constructor>() {
|
|
733
|
+
private constructor();
|
|
734
|
+
}
|
|
735
|
+
/** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
|
|
736
|
+
namespace Companion.$metadata$ {
|
|
737
|
+
abstract class constructor {
|
|
738
|
+
getFromServerConfig(dealerStrategy?: string, cardsJson?: Nullable<string>): games.jass.logic.data.models.DealerConfig;
|
|
739
|
+
fake(cards?: Array<number>): games.jass.logic.data.models.DealerConfig;
|
|
740
|
+
private constructor();
|
|
741
|
+
}
|
|
742
|
+
}
|
|
533
743
|
}
|
|
534
744
|
}
|
|
535
745
|
export declare namespace games.jass.logic.data.models {
|
|
@@ -544,6 +754,10 @@ export declare namespace games.jass.logic.data.models {
|
|
|
544
754
|
hashCode(): number;
|
|
545
755
|
equals(other: Nullable<any>): boolean;
|
|
546
756
|
}
|
|
757
|
+
/** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
|
|
758
|
+
namespace EngineBotConfig.$metadata$ {
|
|
759
|
+
const constructor: abstract new () => EngineBotConfig;
|
|
760
|
+
}
|
|
547
761
|
}
|
|
548
762
|
export declare namespace games.jass.logic.data.models {
|
|
549
763
|
class EngineLogicConfig {
|
|
@@ -562,10 +776,23 @@ export declare namespace games.jass.logic.data.models {
|
|
|
562
776
|
toString(): string;
|
|
563
777
|
hashCode(): number;
|
|
564
778
|
equals(other: Nullable<any>): boolean;
|
|
565
|
-
|
|
566
|
-
|
|
567
|
-
|
|
568
|
-
|
|
779
|
+
}
|
|
780
|
+
/** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
|
|
781
|
+
namespace EngineLogicConfig.$metadata$ {
|
|
782
|
+
const constructor: abstract new () => EngineLogicConfig;
|
|
783
|
+
}
|
|
784
|
+
namespace EngineLogicConfig {
|
|
785
|
+
abstract class Companion extends KtSingleton<Companion.$metadata$.constructor>() {
|
|
786
|
+
private constructor();
|
|
787
|
+
}
|
|
788
|
+
/** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
|
|
789
|
+
namespace Companion.$metadata$ {
|
|
790
|
+
abstract class constructor {
|
|
791
|
+
getClientEngineTestMode(): games.jass.logic.data.models.EngineLogicConfig;
|
|
792
|
+
getServerEngineMode(roomMode: string, isPrivate: boolean, transition: Nullable<games.jass.logic.redux.actions.mechanic.GameTransition>, fromRound: Nullable<number>, isProduction: boolean, validateFromClientActionTags?: boolean, openRoomIfFinished?: boolean, playerTimeoutFactorToFinishStep?: number): games.jass.logic.data.models.EngineLogicConfig;
|
|
793
|
+
private constructor();
|
|
794
|
+
}
|
|
795
|
+
}
|
|
569
796
|
}
|
|
570
797
|
}
|
|
571
798
|
export declare namespace games.jass.logic.data.models {
|
|
@@ -591,8 +818,21 @@ export declare namespace games.jass.logic.data.models {
|
|
|
591
818
|
get ordinal(): 0 | 1 | 2 | 3;
|
|
592
819
|
static values(): Array<games.jass.logic.data.models.GameLifecycleState>;
|
|
593
820
|
static valueOf(value: string): games.jass.logic.data.models.GameLifecycleState;
|
|
594
|
-
|
|
595
|
-
|
|
821
|
+
}
|
|
822
|
+
/** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
|
|
823
|
+
namespace GameLifecycleState.$metadata$ {
|
|
824
|
+
const constructor: abstract new () => GameLifecycleState;
|
|
825
|
+
}
|
|
826
|
+
namespace GameLifecycleState {
|
|
827
|
+
abstract class Companion extends KtSingleton<Companion.$metadata$.constructor>() {
|
|
828
|
+
private constructor();
|
|
829
|
+
}
|
|
830
|
+
/** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
|
|
831
|
+
namespace Companion.$metadata$ {
|
|
832
|
+
abstract class constructor /* implements kotlinx.serialization.internal.SerializerFactory */ {
|
|
833
|
+
private constructor();
|
|
834
|
+
}
|
|
835
|
+
}
|
|
596
836
|
}
|
|
597
837
|
}
|
|
598
838
|
export declare namespace games.jass.logic.data.models {
|
|
@@ -610,6 +850,10 @@ export declare namespace games.jass.logic.data.models {
|
|
|
610
850
|
toString(): string;
|
|
611
851
|
copy(duration?: any/* kotlin.time.Duration */, gamesCount?: number, roundsCountTotal?: number, handsCount?: number, playerAnalytics?: Array<games.jass.logic.data.models.player.analytics.PlayerAnalytics>): games.jass.logic.data.models.GameSessionAnalytics;
|
|
612
852
|
}
|
|
853
|
+
/** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
|
|
854
|
+
namespace GameSessionAnalytics.$metadata$ {
|
|
855
|
+
const constructor: abstract new () => GameSessionAnalytics;
|
|
856
|
+
}
|
|
613
857
|
class CombinationPair {
|
|
614
858
|
constructor(type: games.jass.logic.data.models.table.combinations.CombinationType, count: number);
|
|
615
859
|
get type(): games.jass.logic.data.models.table.combinations.CombinationType;
|
|
@@ -619,6 +863,10 @@ export declare namespace games.jass.logic.data.models {
|
|
|
619
863
|
hashCode(): number;
|
|
620
864
|
equals(other: Nullable<any>): boolean;
|
|
621
865
|
}
|
|
866
|
+
/** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
|
|
867
|
+
namespace CombinationPair.$metadata$ {
|
|
868
|
+
const constructor: abstract new () => CombinationPair;
|
|
869
|
+
}
|
|
622
870
|
}
|
|
623
871
|
export declare namespace games.jass.logic.data.models.config {
|
|
624
872
|
class ServerReduxConfig {
|
|
@@ -636,11 +884,24 @@ export declare namespace games.jass.logic.data.models.config {
|
|
|
636
884
|
toString(): string;
|
|
637
885
|
hashCode(): number;
|
|
638
886
|
equals(other: Nullable<any>): boolean;
|
|
639
|
-
|
|
640
|
-
|
|
641
|
-
|
|
642
|
-
|
|
643
|
-
|
|
887
|
+
}
|
|
888
|
+
/** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
|
|
889
|
+
namespace ServerReduxConfig.$metadata$ {
|
|
890
|
+
const constructor: abstract new () => ServerReduxConfig;
|
|
891
|
+
}
|
|
892
|
+
namespace ServerReduxConfig {
|
|
893
|
+
abstract class Companion extends KtSingleton<Companion.$metadata$.constructor>() {
|
|
894
|
+
private constructor();
|
|
895
|
+
}
|
|
896
|
+
/** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
|
|
897
|
+
namespace Companion.$metadata$ {
|
|
898
|
+
abstract class constructor {
|
|
899
|
+
get DELAY_TO_BUFFER_EVENTS_MILLIS(): number;
|
|
900
|
+
get DELAY_TO_BUFFER_STATE_UPDATES_MILLIS(): number;
|
|
901
|
+
getServerEngineMode(finishGameIfAllBots: boolean, botReplacesPlayerAfterTimeout: boolean, closeIfBotsAtFinish: boolean, enabledCombinedEvents?: boolean, delayToAskBotMillis?: number, combinedEventsIntervalMillis?: number, serverStateUpdateIntervalMillis?: number): games.jass.logic.data.models.config.ServerReduxConfig;
|
|
902
|
+
private constructor();
|
|
903
|
+
}
|
|
904
|
+
}
|
|
644
905
|
}
|
|
645
906
|
}
|
|
646
907
|
export declare namespace games.jass.logic.data.models.dealer {
|
|
@@ -655,6 +916,10 @@ export declare namespace games.jass.logic.data.models.dealer {
|
|
|
655
916
|
hashCode(): number;
|
|
656
917
|
equals(other: Nullable<any>): boolean;
|
|
657
918
|
}
|
|
919
|
+
/** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
|
|
920
|
+
namespace RandomData.$metadata$ {
|
|
921
|
+
const constructor: abstract new () => RandomData;
|
|
922
|
+
}
|
|
658
923
|
}
|
|
659
924
|
export declare namespace games.jass.logic.data.models.leagues {
|
|
660
925
|
abstract class League {
|
|
@@ -685,6 +950,10 @@ export declare namespace games.jass.logic.data.models.leagues {
|
|
|
685
950
|
static values(): Array<games.jass.logic.data.models.leagues.League>;
|
|
686
951
|
static valueOf(value: string): games.jass.logic.data.models.leagues.League;
|
|
687
952
|
}
|
|
953
|
+
/** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
|
|
954
|
+
namespace League.$metadata$ {
|
|
955
|
+
const constructor: abstract new () => League;
|
|
956
|
+
}
|
|
688
957
|
}
|
|
689
958
|
export declare namespace games.jass.logic.data.models.leagues {
|
|
690
959
|
class LeaguesConfig {
|
|
@@ -700,9 +969,22 @@ export declare namespace games.jass.logic.data.models.leagues {
|
|
|
700
969
|
hashCode(): number;
|
|
701
970
|
copy(initialUserRating?: number, minUserRating?: number, maxUserRating?: number, leagues?: Array<games.jass.logic.data.models.leagues.LeagueInfo>): games.jass.logic.data.models.leagues.LeaguesConfig;
|
|
702
971
|
toString(): string;
|
|
703
|
-
|
|
704
|
-
|
|
705
|
-
|
|
972
|
+
}
|
|
973
|
+
/** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
|
|
974
|
+
namespace LeaguesConfig.$metadata$ {
|
|
975
|
+
const constructor: abstract new () => LeaguesConfig;
|
|
976
|
+
}
|
|
977
|
+
namespace LeaguesConfig {
|
|
978
|
+
abstract class Companion extends KtSingleton<Companion.$metadata$.constructor>() {
|
|
979
|
+
private constructor();
|
|
980
|
+
}
|
|
981
|
+
/** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
|
|
982
|
+
namespace Companion.$metadata$ {
|
|
983
|
+
abstract class constructor {
|
|
984
|
+
defaultConfig(): games.jass.logic.data.models.leagues.LeaguesConfig;
|
|
985
|
+
private constructor();
|
|
986
|
+
}
|
|
987
|
+
}
|
|
706
988
|
}
|
|
707
989
|
class LeagueInfo {
|
|
708
990
|
constructor(league: games.jass.logic.data.models.leagues.League, minRating: number, maxRating: number, enabled: boolean);
|
|
@@ -715,6 +997,10 @@ export declare namespace games.jass.logic.data.models.leagues {
|
|
|
715
997
|
hashCode(): number;
|
|
716
998
|
equals(other: Nullable<any>): boolean;
|
|
717
999
|
}
|
|
1000
|
+
/** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
|
|
1001
|
+
namespace LeagueInfo.$metadata$ {
|
|
1002
|
+
const constructor: abstract new () => LeagueInfo;
|
|
1003
|
+
}
|
|
718
1004
|
}
|
|
719
1005
|
export declare namespace games.jass.logic.data.models.messages.combinatios {
|
|
720
1006
|
abstract class CombinationReason /* implements kotlin.Comparable<games.jass.logic.data.models.messages.combinatios.CombinationReason> */ {
|
|
@@ -752,6 +1038,10 @@ export declare namespace games.jass.logic.data.models.messages.combinatios {
|
|
|
752
1038
|
static values(): Array<games.jass.logic.data.models.messages.combinatios.CombinationReason>;
|
|
753
1039
|
static valueOf(value: string): games.jass.logic.data.models.messages.combinatios.CombinationReason;
|
|
754
1040
|
}
|
|
1041
|
+
/** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
|
|
1042
|
+
namespace CombinationReason.$metadata$ {
|
|
1043
|
+
const constructor: abstract new () => CombinationReason;
|
|
1044
|
+
}
|
|
755
1045
|
}
|
|
756
1046
|
export declare namespace games.jass.logic.data.models.player {
|
|
757
1047
|
class JassPlayerLite {
|
|
@@ -764,6 +1054,10 @@ export declare namespace games.jass.logic.data.models.player {
|
|
|
764
1054
|
hashCode(): number;
|
|
765
1055
|
equals(other: Nullable<any>): boolean;
|
|
766
1056
|
}
|
|
1057
|
+
/** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
|
|
1058
|
+
namespace JassPlayerLite.$metadata$ {
|
|
1059
|
+
const constructor: abstract new () => JassPlayerLite;
|
|
1060
|
+
}
|
|
767
1061
|
}
|
|
768
1062
|
export declare namespace games.jass.logic.data.models.player {
|
|
769
1063
|
class UserProfilePayload {
|
|
@@ -775,6 +1069,10 @@ export declare namespace games.jass.logic.data.models.player {
|
|
|
775
1069
|
hashCode(): number;
|
|
776
1070
|
equals(other: Nullable<any>): boolean;
|
|
777
1071
|
}
|
|
1072
|
+
/** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
|
|
1073
|
+
namespace UserProfilePayload.$metadata$ {
|
|
1074
|
+
const constructor: abstract new () => UserProfilePayload;
|
|
1075
|
+
}
|
|
778
1076
|
}
|
|
779
1077
|
export declare namespace games.jass.logic.data.models.player.achievements {
|
|
780
1078
|
class Achievements {
|
|
@@ -787,6 +1085,10 @@ export declare namespace games.jass.logic.data.models.player.achievements {
|
|
|
787
1085
|
hashCode(): number;
|
|
788
1086
|
equals(other: Nullable<any>): boolean;
|
|
789
1087
|
}
|
|
1088
|
+
/** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
|
|
1089
|
+
namespace Achievements.$metadata$ {
|
|
1090
|
+
const constructor: abstract new () => Achievements;
|
|
1091
|
+
}
|
|
790
1092
|
}
|
|
791
1093
|
export declare namespace games.jass.logic.data.models.player.achievements {
|
|
792
1094
|
class PlayerAchievements implements com.logic.data.models.player.PlayerIdContract {
|
|
@@ -800,6 +1102,10 @@ export declare namespace games.jass.logic.data.models.player.achievements {
|
|
|
800
1102
|
equals(other: Nullable<any>): boolean;
|
|
801
1103
|
readonly __doNotUseOrImplementIt: com.logic.data.models.player.PlayerIdContract["__doNotUseOrImplementIt"];
|
|
802
1104
|
}
|
|
1105
|
+
/** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
|
|
1106
|
+
namespace PlayerAchievements.$metadata$ {
|
|
1107
|
+
const constructor: abstract new () => PlayerAchievements;
|
|
1108
|
+
}
|
|
803
1109
|
}
|
|
804
1110
|
export declare namespace games.jass.logic.data.models.player.analytics {
|
|
805
1111
|
class CombinationsAnalytics {
|
|
@@ -810,6 +1116,10 @@ export declare namespace games.jass.logic.data.models.player.analytics {
|
|
|
810
1116
|
copy(combinations?: Array<games.jass.logic.data.models.player.analytics.CombinationAnalytics>): games.jass.logic.data.models.player.analytics.CombinationsAnalytics;
|
|
811
1117
|
toString(): string;
|
|
812
1118
|
}
|
|
1119
|
+
/** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
|
|
1120
|
+
namespace CombinationsAnalytics.$metadata$ {
|
|
1121
|
+
const constructor: abstract new () => CombinationsAnalytics;
|
|
1122
|
+
}
|
|
813
1123
|
class CombinationAnalytics {
|
|
814
1124
|
constructor(type: games.jass.logic.data.models.table.combinations.CombinationType, count: number, acceptedCounts: number);
|
|
815
1125
|
get type(): games.jass.logic.data.models.table.combinations.CombinationType;
|
|
@@ -820,6 +1130,10 @@ export declare namespace games.jass.logic.data.models.player.analytics {
|
|
|
820
1130
|
hashCode(): number;
|
|
821
1131
|
equals(other: Nullable<any>): boolean;
|
|
822
1132
|
}
|
|
1133
|
+
/** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
|
|
1134
|
+
namespace CombinationAnalytics.$metadata$ {
|
|
1135
|
+
const constructor: abstract new () => CombinationAnalytics;
|
|
1136
|
+
}
|
|
823
1137
|
}
|
|
824
1138
|
export declare namespace games.jass.logic.data.models.player.analytics {
|
|
825
1139
|
class PlayerAnalytics implements com.logic.data.models.player.PlayerIdContract {
|
|
@@ -837,6 +1151,10 @@ export declare namespace games.jass.logic.data.models.player.analytics {
|
|
|
837
1151
|
equals(other: Nullable<any>): boolean;
|
|
838
1152
|
readonly __doNotUseOrImplementIt: com.logic.data.models.player.PlayerIdContract["__doNotUseOrImplementIt"];
|
|
839
1153
|
}
|
|
1154
|
+
/** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
|
|
1155
|
+
namespace PlayerAnalytics.$metadata$ {
|
|
1156
|
+
const constructor: abstract new () => PlayerAnalytics;
|
|
1157
|
+
}
|
|
840
1158
|
}
|
|
841
1159
|
export declare namespace games.jass.logic.data.models.player.analytics {
|
|
842
1160
|
class PlayerHistoryAnalytics implements com.logic.data.models.player.PlayerIdContract/*, games.jass.logic.data.models.table.history.PlayerHistoryItem */ {
|
|
@@ -852,6 +1170,10 @@ export declare namespace games.jass.logic.data.models.player.analytics {
|
|
|
852
1170
|
equals(other: Nullable<any>): boolean;
|
|
853
1171
|
readonly __doNotUseOrImplementIt: com.logic.data.models.player.PlayerIdContract["__doNotUseOrImplementIt"];
|
|
854
1172
|
}
|
|
1173
|
+
/** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
|
|
1174
|
+
namespace PlayerHistoryAnalytics.$metadata$ {
|
|
1175
|
+
const constructor: abstract new () => PlayerHistoryAnalytics;
|
|
1176
|
+
}
|
|
855
1177
|
}
|
|
856
1178
|
export declare namespace games.jass.logic.data.models.player.bids {
|
|
857
1179
|
abstract class BidType {
|
|
@@ -880,10 +1202,23 @@ export declare namespace games.jass.logic.data.models.player.bids {
|
|
|
880
1202
|
get ordinal(): 0 | 1 | 2 | 3 | 4;
|
|
881
1203
|
static values(): Array<games.jass.logic.data.models.player.bids.BidType>;
|
|
882
1204
|
static valueOf(value: string): games.jass.logic.data.models.player.bids.BidType;
|
|
883
|
-
|
|
884
|
-
|
|
885
|
-
|
|
886
|
-
|
|
1205
|
+
}
|
|
1206
|
+
/** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
|
|
1207
|
+
namespace BidType.$metadata$ {
|
|
1208
|
+
const constructor: abstract new () => BidType;
|
|
1209
|
+
}
|
|
1210
|
+
namespace BidType {
|
|
1211
|
+
abstract class Companion extends KtSingleton<Companion.$metadata$.constructor>() {
|
|
1212
|
+
private constructor();
|
|
1213
|
+
}
|
|
1214
|
+
/** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
|
|
1215
|
+
namespace Companion.$metadata$ {
|
|
1216
|
+
abstract class constructor /* implements kotlinx.serialization.internal.SerializerFactory */ {
|
|
1217
|
+
get belotBalgarian(): Array<games.jass.logic.data.models.player.bids.BidType>;
|
|
1218
|
+
get coinche(): Array<games.jass.logic.data.models.player.bids.BidType>;
|
|
1219
|
+
private constructor();
|
|
1220
|
+
}
|
|
1221
|
+
}
|
|
887
1222
|
}
|
|
888
1223
|
}
|
|
889
1224
|
export declare namespace games.jass.logic.data.models.player.hand {
|
|
@@ -899,6 +1234,10 @@ export declare namespace games.jass.logic.data.models.player.hand {
|
|
|
899
1234
|
hashCode(): number;
|
|
900
1235
|
equals(other: Nullable<any>): boolean;
|
|
901
1236
|
}
|
|
1237
|
+
/** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
|
|
1238
|
+
namespace CombinationRecord.$metadata$ {
|
|
1239
|
+
const constructor: abstract new () => CombinationRecord;
|
|
1240
|
+
}
|
|
902
1241
|
}
|
|
903
1242
|
export declare namespace games.jass.logic.data.models.player.points {
|
|
904
1243
|
abstract class PointsDistributeMode {
|
|
@@ -920,6 +1259,10 @@ export declare namespace games.jass.logic.data.models.player.points {
|
|
|
920
1259
|
static values(): Array<games.jass.logic.data.models.player.points.PointsDistributeMode>;
|
|
921
1260
|
static valueOf(value: string): games.jass.logic.data.models.player.points.PointsDistributeMode;
|
|
922
1261
|
}
|
|
1262
|
+
/** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
|
|
1263
|
+
namespace PointsDistributeMode.$metadata$ {
|
|
1264
|
+
const constructor: abstract new () => PointsDistributeMode;
|
|
1265
|
+
}
|
|
923
1266
|
}
|
|
924
1267
|
export declare namespace games.jass.logic.data.models.player.state {
|
|
925
1268
|
abstract class RoundContractState {
|
|
@@ -943,8 +1286,21 @@ export declare namespace games.jass.logic.data.models.player.state {
|
|
|
943
1286
|
get isControversial(): boolean;
|
|
944
1287
|
static values(): Array<games.jass.logic.data.models.player.state.RoundContractState>;
|
|
945
1288
|
static valueOf(value: string): games.jass.logic.data.models.player.state.RoundContractState;
|
|
946
|
-
|
|
947
|
-
|
|
1289
|
+
}
|
|
1290
|
+
/** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
|
|
1291
|
+
namespace RoundContractState.$metadata$ {
|
|
1292
|
+
const constructor: abstract new () => RoundContractState;
|
|
1293
|
+
}
|
|
1294
|
+
namespace RoundContractState {
|
|
1295
|
+
abstract class Companion extends KtSingleton<Companion.$metadata$.constructor>() {
|
|
1296
|
+
private constructor();
|
|
1297
|
+
}
|
|
1298
|
+
/** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
|
|
1299
|
+
namespace Companion.$metadata$ {
|
|
1300
|
+
abstract class constructor /* implements kotlinx.serialization.internal.SerializerFactory */ {
|
|
1301
|
+
private constructor();
|
|
1302
|
+
}
|
|
1303
|
+
}
|
|
948
1304
|
}
|
|
949
1305
|
}
|
|
950
1306
|
export declare namespace games.jass.logic.data.models.player.state {
|
|
@@ -970,9 +1326,22 @@ export declare namespace games.jass.logic.data.models.player.state {
|
|
|
970
1326
|
get ordinal(): 0 | 1 | 2 | 3;
|
|
971
1327
|
static values(): Array<games.jass.logic.data.models.player.state.RoundContractType>;
|
|
972
1328
|
static valueOf(value: string): games.jass.logic.data.models.player.state.RoundContractType;
|
|
973
|
-
|
|
974
|
-
|
|
975
|
-
|
|
1329
|
+
}
|
|
1330
|
+
/** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
|
|
1331
|
+
namespace RoundContractType.$metadata$ {
|
|
1332
|
+
const constructor: abstract new () => RoundContractType;
|
|
1333
|
+
}
|
|
1334
|
+
namespace RoundContractType {
|
|
1335
|
+
abstract class Companion extends KtSingleton<Companion.$metadata$.constructor>() {
|
|
1336
|
+
private constructor();
|
|
1337
|
+
}
|
|
1338
|
+
/** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
|
|
1339
|
+
namespace Companion.$metadata$ {
|
|
1340
|
+
abstract class constructor /* implements kotlinx.serialization.internal.SerializerFactory */ {
|
|
1341
|
+
get debertzContractTypes(): kotlin.collections.KtList<games.jass.logic.data.models.player.state.RoundContractType>;
|
|
1342
|
+
private constructor();
|
|
1343
|
+
}
|
|
1344
|
+
}
|
|
976
1345
|
}
|
|
977
1346
|
}
|
|
978
1347
|
export declare namespace games.jass.logic.data.models.rules {
|
|
@@ -995,6 +1364,10 @@ export declare namespace games.jass.logic.data.models.rules {
|
|
|
995
1364
|
static values(): Array<games.jass.logic.data.models.rules.PutHigherTrumpCardMode>;
|
|
996
1365
|
static valueOf(value: string): games.jass.logic.data.models.rules.PutHigherTrumpCardMode;
|
|
997
1366
|
}
|
|
1367
|
+
/** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
|
|
1368
|
+
namespace PutHigherTrumpCardMode.$metadata$ {
|
|
1369
|
+
const constructor: abstract new () => PutHigherTrumpCardMode;
|
|
1370
|
+
}
|
|
998
1371
|
}
|
|
999
1372
|
export declare namespace games.jass.logic.data.models.rules {
|
|
1000
1373
|
abstract class PutHigherTrumpCardPartnerMode {
|
|
@@ -1016,6 +1389,10 @@ export declare namespace games.jass.logic.data.models.rules {
|
|
|
1016
1389
|
static values(): Array<games.jass.logic.data.models.rules.PutHigherTrumpCardPartnerMode>;
|
|
1017
1390
|
static valueOf(value: string): games.jass.logic.data.models.rules.PutHigherTrumpCardPartnerMode;
|
|
1018
1391
|
}
|
|
1392
|
+
/** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
|
|
1393
|
+
namespace PutHigherTrumpCardPartnerMode.$metadata$ {
|
|
1394
|
+
const constructor: abstract new () => PutHigherTrumpCardPartnerMode;
|
|
1395
|
+
}
|
|
1019
1396
|
}
|
|
1020
1397
|
export declare namespace games.jass.logic.data.models.rules {
|
|
1021
1398
|
class Rules {
|
|
@@ -1051,17 +1428,30 @@ export declare namespace games.jass.logic.data.models.rules {
|
|
|
1051
1428
|
equals(other: Nullable<any>): boolean;
|
|
1052
1429
|
hashCode(): number;
|
|
1053
1430
|
copy(name?: Nullable<string>, playerWhoChooseSuitGoFirst?: boolean, winnerShuffleCards?: boolean, playWithoutLiabilities?: boolean, trumpCardGoToPlayerWhoShuffleCards?: boolean, dealerInitialCardsCount?: number, dealerFinalCardsCount?: number, dealerCounterClockwise?: boolean, contractTypes?: Array<games.jass.logic.data.models.player.state.RoundContractType>, bidTypes?: Array<games.jass.logic.data.models.player.bids.BidType>, needToPutHigherTrump?: boolean, trumpCardStepMode?: games.jass.logic.data.models.rules.PutHigherTrumpCardMode, trumpCardStepPartnerMode?: games.jass.logic.data.models.rules.PutHigherTrumpCardPartnerMode, combinationsWithFirstCard?: Array<games.jass.logic.data.models.table.combinations.CombinationType>, protectBella?: boolean, oneTryToProtectBella?: boolean, enableFourSevensCombination?: boolean, enableTrumpSevenCombination?: boolean, enableTrumpSevenCombinationAfterDistribution?: boolean, checkTrumpCombination?: boolean, checkOnlyTrumpDebertz?: boolean, pointsDistributeMode?: games.jass.logic.data.models.player.points.PointsDistributeMode, enableFineAfterThirdFailedContract?: boolean, fineAfterThirdFailedContract?: number, enableFineIfNoBribes?: boolean, fineIfNoBribes?: number): games.jass.logic.data.models.rules.Rules;
|
|
1054
|
-
|
|
1055
|
-
|
|
1056
|
-
|
|
1057
|
-
|
|
1058
|
-
|
|
1059
|
-
|
|
1060
|
-
|
|
1061
|
-
|
|
1062
|
-
|
|
1063
|
-
|
|
1064
|
-
|
|
1431
|
+
}
|
|
1432
|
+
/** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
|
|
1433
|
+
namespace Rules.$metadata$ {
|
|
1434
|
+
const constructor: abstract new () => Rules;
|
|
1435
|
+
}
|
|
1436
|
+
namespace Rules {
|
|
1437
|
+
abstract class Companion extends KtSingleton<Companion.$metadata$.constructor>() {
|
|
1438
|
+
private constructor();
|
|
1439
|
+
}
|
|
1440
|
+
/** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
|
|
1441
|
+
namespace Companion.$metadata$ {
|
|
1442
|
+
abstract class constructor {
|
|
1443
|
+
get HAND_CARDS_INITIAL(): number;
|
|
1444
|
+
get HAND_CARDS_FINAL(): number;
|
|
1445
|
+
kharkiv(): games.jass.logic.data.models.rules.Rules;
|
|
1446
|
+
saltivka(): games.jass.logic.data.models.rules.Rules;
|
|
1447
|
+
klabor(): games.jass.logic.data.models.rules.Rules;
|
|
1448
|
+
belotBulgarian(): games.jass.logic.data.models.rules.Rules;
|
|
1449
|
+
debertzCommon(): games.jass.logic.data.models.rules.Rules;
|
|
1450
|
+
belot(): games.jass.logic.data.models.rules.Rules;
|
|
1451
|
+
custom(): games.jass.logic.data.models.rules.Rules;
|
|
1452
|
+
private constructor();
|
|
1453
|
+
}
|
|
1454
|
+
}
|
|
1065
1455
|
}
|
|
1066
1456
|
}
|
|
1067
1457
|
export declare namespace games.jass.logic.data.models.rules {
|
|
@@ -1099,6 +1489,10 @@ export declare namespace games.jass.logic.data.models.rules {
|
|
|
1099
1489
|
static values(): Array<games.jass.logic.data.models.rules.RulesSetType>;
|
|
1100
1490
|
static valueOf(value: string): games.jass.logic.data.models.rules.RulesSetType;
|
|
1101
1491
|
}
|
|
1492
|
+
/** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
|
|
1493
|
+
namespace RulesSetType.$metadata$ {
|
|
1494
|
+
const constructor: abstract new () => RulesSetType;
|
|
1495
|
+
}
|
|
1102
1496
|
}
|
|
1103
1497
|
export declare namespace games.jass.logic.data.models.scenes {
|
|
1104
1498
|
interface ActData {
|
|
@@ -1118,10 +1512,10 @@ export declare namespace games.jass.logic.data.models.scenes {
|
|
|
1118
1512
|
}
|
|
1119
1513
|
export declare namespace games.jass.logic.data.models.table {
|
|
1120
1514
|
class JassTable {
|
|
1121
|
-
constructor(id: string, version: string, createdAt: any/*
|
|
1515
|
+
constructor(id: string, version: string, createdAt: any/* kotlin.time.Instant */, config: games.jass.logic.data.models.table.config.Config, players: kotlin.collections.KtList<com.logic.data.models.player.PlayerIdContract/* games.jass.logic.data.models.player.JassPlayer */>, spectators: kotlin.collections.KtList<com.logic.data.models.player.PlayerIdContract/* games.jass.logic.data.models.player.Spectator */>, sceneInfo: any/* games.jass.logic.data.models.table.scene.SceneInfo */, cardsOnTable: kotlin.collections.KtList<com.logic.data.models.player.PlayerIdContract/* games.jass.logic.data.models.table.bribes.CardOnTable */>, bribes: kotlin.collections.KtList<any/* games.jass.logic.data.models.table.cards.Bribe */>, cardDeck: Nullable<any>/* Nullable<games.jass.logic.data.models.table.cards.CardDeck> */, requestedCardDecks: kotlin.collections.KtList<any/* games.jass.logic.data.models.table.cards.CardDeck */>, gameInfo: any/* games.jass.logic.data.models.table.GameInfo */, gameHistory: games.jass.logic.data.models.table.history.GameHistory);
|
|
1122
1516
|
get id(): string;
|
|
1123
1517
|
get version(): string;
|
|
1124
|
-
get createdAt(): any/*
|
|
1518
|
+
get createdAt(): any/* kotlin.time.Instant */;
|
|
1125
1519
|
get config(): games.jass.logic.data.models.table.config.Config;
|
|
1126
1520
|
get players(): kotlin.collections.KtList<com.logic.data.models.player.PlayerIdContract/* games.jass.logic.data.models.player.JassPlayer */>;
|
|
1127
1521
|
get spectators(): kotlin.collections.KtList<com.logic.data.models.player.PlayerIdContract/* games.jass.logic.data.models.player.Spectator */>;
|
|
@@ -1134,7 +1528,7 @@ export declare namespace games.jass.logic.data.models.table {
|
|
|
1134
1528
|
get gameHistory(): games.jass.logic.data.models.table.history.GameHistory;
|
|
1135
1529
|
get gameId(): string;
|
|
1136
1530
|
get gameDuration(): any/* kotlin.time.Duration */;
|
|
1137
|
-
get gameCreatedAt(): any/*
|
|
1531
|
+
get gameCreatedAt(): any/* kotlin.time.Instant */;
|
|
1138
1532
|
get playersConnections(): kotlin.collections.KtList<any/* kotlin.Pair<string, com.logic.data.models.player.PlayerConnectionState> */>;
|
|
1139
1533
|
get users(): Array<com.logic.data.models.player.GameUserInfo>;
|
|
1140
1534
|
get isCardDeckExist(): boolean;
|
|
@@ -1142,13 +1536,26 @@ export declare namespace games.jass.logic.data.models.table {
|
|
|
1142
1536
|
get currentTrump(): Nullable<any>/* Nullable<io.raspberryapps.card_game.core.data.models.cards.Suit> */;
|
|
1143
1537
|
get isGameFinished(): boolean;
|
|
1144
1538
|
toString(): string;
|
|
1145
|
-
copy(id?: string, version?: string, createdAt?: any/*
|
|
1539
|
+
copy(id?: string, version?: string, createdAt?: any/* kotlin.time.Instant */, config?: games.jass.logic.data.models.table.config.Config, players?: kotlin.collections.KtList<com.logic.data.models.player.PlayerIdContract/* games.jass.logic.data.models.player.JassPlayer */>, spectators?: kotlin.collections.KtList<com.logic.data.models.player.PlayerIdContract/* games.jass.logic.data.models.player.Spectator */>, sceneInfo?: any/* games.jass.logic.data.models.table.scene.SceneInfo */, cardsOnTable?: kotlin.collections.KtList<com.logic.data.models.player.PlayerIdContract/* games.jass.logic.data.models.table.bribes.CardOnTable */>, bribes?: kotlin.collections.KtList<any/* games.jass.logic.data.models.table.cards.Bribe */>, cardDeck?: Nullable<any>/* Nullable<games.jass.logic.data.models.table.cards.CardDeck> */, requestedCardDecks?: kotlin.collections.KtList<any/* games.jass.logic.data.models.table.cards.CardDeck */>, gameInfo?: any/* games.jass.logic.data.models.table.GameInfo */, gameHistory?: games.jass.logic.data.models.table.history.GameHistory): games.jass.logic.data.models.table.JassTable;
|
|
1146
1540
|
hashCode(): number;
|
|
1147
1541
|
equals(other: Nullable<any>): boolean;
|
|
1148
|
-
|
|
1149
|
-
|
|
1150
|
-
|
|
1151
|
-
|
|
1542
|
+
}
|
|
1543
|
+
/** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
|
|
1544
|
+
namespace JassTable.$metadata$ {
|
|
1545
|
+
const constructor: abstract new () => JassTable;
|
|
1546
|
+
}
|
|
1547
|
+
namespace JassTable {
|
|
1548
|
+
abstract class Companion extends KtSingleton<Companion.$metadata$.constructor>() {
|
|
1549
|
+
private constructor();
|
|
1550
|
+
}
|
|
1551
|
+
/** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
|
|
1552
|
+
namespace Companion.$metadata$ {
|
|
1553
|
+
abstract class constructor {
|
|
1554
|
+
initial(tableId: string, gameId: string, version: string, config: games.jass.logic.data.models.table.config.Config, players: kotlin.collections.KtList<com.logic.data.models.player.PlayerIdContract/* games.jass.logic.data.models.player.JassPlayer */>, spectators: kotlin.collections.KtList<com.logic.data.models.player.PlayerIdContract/* games.jass.logic.data.models.player.Spectator */>): games.jass.logic.data.models.table.JassTable;
|
|
1555
|
+
restartRound(roomId: string, gameId: string, version: string, tableLite: games.jass.logic.data.models.table.JassTableLite): games.jass.logic.data.models.table.JassTable;
|
|
1556
|
+
private constructor();
|
|
1557
|
+
}
|
|
1558
|
+
}
|
|
1152
1559
|
}
|
|
1153
1560
|
}
|
|
1154
1561
|
export declare namespace games.jass.logic.data.models.table {
|
|
@@ -1163,6 +1570,10 @@ export declare namespace games.jass.logic.data.models.table {
|
|
|
1163
1570
|
hashCode(): number;
|
|
1164
1571
|
equals(other: Nullable<any>): boolean;
|
|
1165
1572
|
}
|
|
1573
|
+
/** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
|
|
1574
|
+
namespace JassTableLite.$metadata$ {
|
|
1575
|
+
const constructor: abstract new () => JassTableLite;
|
|
1576
|
+
}
|
|
1166
1577
|
}
|
|
1167
1578
|
export declare namespace games.jass.logic.data.models.table {
|
|
1168
1579
|
class TableLoggerPayload implements games.raspberry.logger.LoggerPayload {
|
|
@@ -1176,6 +1587,10 @@ export declare namespace games.jass.logic.data.models.table {
|
|
|
1176
1587
|
copy(id?: string, gameId?: string, players?: Array<games.jass.logic.data.models.table.PlayerLoggerPayload>): games.jass.logic.data.models.table.TableLoggerPayload;
|
|
1177
1588
|
readonly __doNotUseOrImplementIt: games.raspberry.logger.LoggerPayload["__doNotUseOrImplementIt"];
|
|
1178
1589
|
}
|
|
1590
|
+
/** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
|
|
1591
|
+
namespace TableLoggerPayload.$metadata$ {
|
|
1592
|
+
const constructor: abstract new () => TableLoggerPayload;
|
|
1593
|
+
}
|
|
1179
1594
|
class PlayerLoggerPayload implements games.raspberry.logger.LoggerPayload {
|
|
1180
1595
|
constructor(playerId: string, connectionState: Nullable<com.logic.data.models.player.PlayerConnectionState>);
|
|
1181
1596
|
get playerId(): string;
|
|
@@ -1186,6 +1601,10 @@ export declare namespace games.jass.logic.data.models.table {
|
|
|
1186
1601
|
equals(other: Nullable<any>): boolean;
|
|
1187
1602
|
readonly __doNotUseOrImplementIt: games.raspberry.logger.LoggerPayload["__doNotUseOrImplementIt"];
|
|
1188
1603
|
}
|
|
1604
|
+
/** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
|
|
1605
|
+
namespace PlayerLoggerPayload.$metadata$ {
|
|
1606
|
+
const constructor: abstract new () => PlayerLoggerPayload;
|
|
1607
|
+
}
|
|
1189
1608
|
}
|
|
1190
1609
|
export declare namespace games.jass.logic.data.models.table {
|
|
1191
1610
|
class TableStateWithActions {
|
|
@@ -1197,6 +1616,10 @@ export declare namespace games.jass.logic.data.models.table {
|
|
|
1197
1616
|
hashCode(): number;
|
|
1198
1617
|
equals(other: Nullable<any>): boolean;
|
|
1199
1618
|
}
|
|
1619
|
+
/** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
|
|
1620
|
+
namespace TableStateWithActions.$metadata$ {
|
|
1621
|
+
const constructor: abstract new () => TableStateWithActions;
|
|
1622
|
+
}
|
|
1200
1623
|
}
|
|
1201
1624
|
export declare namespace games.jass.logic.data.models.table.combinations {
|
|
1202
1625
|
class Combination /* implements games.jass.logic.data.models.table.combinations.CombinationContract */ {
|
|
@@ -1206,6 +1629,10 @@ export declare namespace games.jass.logic.data.models.table.combinations {
|
|
|
1206
1629
|
hashCode(): number;
|
|
1207
1630
|
equals(other: Nullable<any>): boolean;
|
|
1208
1631
|
}
|
|
1632
|
+
/** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
|
|
1633
|
+
namespace Combination.$metadata$ {
|
|
1634
|
+
const constructor: abstract new () => Combination;
|
|
1635
|
+
}
|
|
1209
1636
|
}
|
|
1210
1637
|
export declare namespace games.jass.logic.data.models.table.combinations {
|
|
1211
1638
|
abstract class CombinationState {
|
|
@@ -1238,8 +1665,21 @@ export declare namespace games.jass.logic.data.models.table.combinations {
|
|
|
1238
1665
|
get ordinal(): 0 | 1 | 2 | 3 | 4 | 5;
|
|
1239
1666
|
static values(): Array<games.jass.logic.data.models.table.combinations.CombinationState>;
|
|
1240
1667
|
static valueOf(value: string): games.jass.logic.data.models.table.combinations.CombinationState;
|
|
1241
|
-
|
|
1242
|
-
|
|
1668
|
+
}
|
|
1669
|
+
/** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
|
|
1670
|
+
namespace CombinationState.$metadata$ {
|
|
1671
|
+
const constructor: abstract new () => CombinationState;
|
|
1672
|
+
}
|
|
1673
|
+
namespace CombinationState {
|
|
1674
|
+
abstract class Companion extends KtSingleton<Companion.$metadata$.constructor>() {
|
|
1675
|
+
private constructor();
|
|
1676
|
+
}
|
|
1677
|
+
/** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
|
|
1678
|
+
namespace Companion.$metadata$ {
|
|
1679
|
+
abstract class constructor /* implements kotlinx.serialization.internal.SerializerFactory */ {
|
|
1680
|
+
private constructor();
|
|
1681
|
+
}
|
|
1682
|
+
}
|
|
1243
1683
|
}
|
|
1244
1684
|
}
|
|
1245
1685
|
export declare namespace games.jass.logic.data.models.table.combinations {
|
|
@@ -1321,13 +1761,26 @@ export declare namespace games.jass.logic.data.models.table.combinations {
|
|
|
1321
1761
|
get ordinal(): 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17;
|
|
1322
1762
|
static values(): Array<games.jass.logic.data.models.table.combinations.CombinationType>;
|
|
1323
1763
|
static valueOf(value: string): games.jass.logic.data.models.table.combinations.CombinationType;
|
|
1324
|
-
|
|
1325
|
-
|
|
1326
|
-
|
|
1327
|
-
|
|
1328
|
-
|
|
1329
|
-
|
|
1330
|
-
|
|
1764
|
+
}
|
|
1765
|
+
/** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
|
|
1766
|
+
namespace CombinationType.$metadata$ {
|
|
1767
|
+
const constructor: abstract new () => CombinationType;
|
|
1768
|
+
}
|
|
1769
|
+
namespace CombinationType {
|
|
1770
|
+
abstract class Companion extends KtSingleton<Companion.$metadata$.constructor>() {
|
|
1771
|
+
private constructor();
|
|
1772
|
+
}
|
|
1773
|
+
/** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
|
|
1774
|
+
namespace Companion.$metadata$ {
|
|
1775
|
+
abstract class constructor /* implements kotlinx.serialization.internal.SerializerFactory */ {
|
|
1776
|
+
get withFirstCardCombination(): kotlin.collections.KtList<games.jass.logic.data.models.table.combinations.CombinationType>;
|
|
1777
|
+
get inRowCombinations(): kotlin.collections.KtList<games.jass.logic.data.models.table.combinations.CombinationType>;
|
|
1778
|
+
get fourCardsCombinations(): kotlin.collections.KtList<games.jass.logic.data.models.table.combinations.CombinationType>;
|
|
1779
|
+
get debertzWithFirstCardCombinations(): kotlin.collections.KtList<games.jass.logic.data.models.table.combinations.CombinationType>;
|
|
1780
|
+
get belotWithFirstCardCombination(): kotlin.collections.KtList<games.jass.logic.data.models.table.combinations.CombinationType>;
|
|
1781
|
+
private constructor();
|
|
1782
|
+
}
|
|
1783
|
+
}
|
|
1331
1784
|
}
|
|
1332
1785
|
}
|
|
1333
1786
|
export declare namespace games.jass.logic.data.models.table.combinations {
|
|
@@ -1341,6 +1794,10 @@ export declare namespace games.jass.logic.data.models.table.combinations {
|
|
|
1341
1794
|
toString(): string;
|
|
1342
1795
|
readonly __doNotUseOrImplementIt: com.logic.data.models.player.PlayerIdContract["__doNotUseOrImplementIt"];
|
|
1343
1796
|
}
|
|
1797
|
+
/** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
|
|
1798
|
+
namespace PlayerCombinations.$metadata$ {
|
|
1799
|
+
const constructor: abstract new () => PlayerCombinations;
|
|
1800
|
+
}
|
|
1344
1801
|
}
|
|
1345
1802
|
export declare namespace games.jass.logic.data.models.table.config {
|
|
1346
1803
|
abstract class BotIntelligenceLevel {
|
|
@@ -1369,8 +1826,21 @@ export declare namespace games.jass.logic.data.models.table.config {
|
|
|
1369
1826
|
get ordinal(): 0 | 1 | 2 | 3 | 4;
|
|
1370
1827
|
static values(): Array<games.jass.logic.data.models.table.config.BotIntelligenceLevel>;
|
|
1371
1828
|
static valueOf(value: string): games.jass.logic.data.models.table.config.BotIntelligenceLevel;
|
|
1372
|
-
|
|
1373
|
-
|
|
1829
|
+
}
|
|
1830
|
+
/** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
|
|
1831
|
+
namespace BotIntelligenceLevel.$metadata$ {
|
|
1832
|
+
const constructor: abstract new () => BotIntelligenceLevel;
|
|
1833
|
+
}
|
|
1834
|
+
namespace BotIntelligenceLevel {
|
|
1835
|
+
abstract class Companion extends KtSingleton<Companion.$metadata$.constructor>() {
|
|
1836
|
+
private constructor();
|
|
1837
|
+
}
|
|
1838
|
+
/** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
|
|
1839
|
+
namespace Companion.$metadata$ {
|
|
1840
|
+
abstract class constructor /* implements kotlinx.serialization.internal.SerializerFactory */ {
|
|
1841
|
+
private constructor();
|
|
1842
|
+
}
|
|
1843
|
+
}
|
|
1374
1844
|
}
|
|
1375
1845
|
function getLevel(_this_: games.jass.logic.data.models.table.config.BotIntelligenceLevel): number;
|
|
1376
1846
|
}
|
|
@@ -1394,6 +1864,10 @@ export declare namespace games.jass.logic.data.models.table.config {
|
|
|
1394
1864
|
hashCode(): number;
|
|
1395
1865
|
equals(other: Nullable<any>): boolean;
|
|
1396
1866
|
}
|
|
1867
|
+
/** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
|
|
1868
|
+
namespace Config.$metadata$ {
|
|
1869
|
+
const constructor: abstract new () => Config;
|
|
1870
|
+
}
|
|
1397
1871
|
}
|
|
1398
1872
|
export declare namespace games.jass.logic.data.models.table.config {
|
|
1399
1873
|
class ConfigLite {
|
|
@@ -1413,6 +1887,10 @@ export declare namespace games.jass.logic.data.models.table.config {
|
|
|
1413
1887
|
hashCode(): number;
|
|
1414
1888
|
equals(other: Nullable<any>): boolean;
|
|
1415
1889
|
}
|
|
1890
|
+
/** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
|
|
1891
|
+
namespace ConfigLite.$metadata$ {
|
|
1892
|
+
const constructor: abstract new () => ConfigLite;
|
|
1893
|
+
}
|
|
1416
1894
|
}
|
|
1417
1895
|
export declare namespace games.jass.logic.data.models.table.config {
|
|
1418
1896
|
class Options {
|
|
@@ -1427,9 +1905,22 @@ export declare namespace games.jass.logic.data.models.table.config {
|
|
|
1427
1905
|
toString(): string;
|
|
1428
1906
|
hashCode(): number;
|
|
1429
1907
|
equals(other: Nullable<any>): boolean;
|
|
1430
|
-
|
|
1431
|
-
|
|
1432
|
-
|
|
1908
|
+
}
|
|
1909
|
+
/** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
|
|
1910
|
+
namespace Options.$metadata$ {
|
|
1911
|
+
const constructor: abstract new () => Options;
|
|
1912
|
+
}
|
|
1913
|
+
namespace Options {
|
|
1914
|
+
abstract class Companion extends KtSingleton<Companion.$metadata$.constructor>() {
|
|
1915
|
+
private constructor();
|
|
1916
|
+
}
|
|
1917
|
+
/** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
|
|
1918
|
+
namespace Companion.$metadata$ {
|
|
1919
|
+
abstract class constructor {
|
|
1920
|
+
getServerOptions(isEnableChat?: boolean, isBotsEnabled?: boolean, isEnableChoosePartnerScreen?: boolean): games.jass.logic.data.models.table.config.Options;
|
|
1921
|
+
private constructor();
|
|
1922
|
+
}
|
|
1923
|
+
}
|
|
1433
1924
|
}
|
|
1434
1925
|
}
|
|
1435
1926
|
export declare namespace games.jass.logic.data.models.table.config {
|
|
@@ -1458,9 +1949,22 @@ export declare namespace games.jass.logic.data.models.table.config {
|
|
|
1458
1949
|
get count(): number;
|
|
1459
1950
|
static values(): Array<games.jass.logic.data.models.table.config.PlayersMode>;
|
|
1460
1951
|
static valueOf(value: string): games.jass.logic.data.models.table.config.PlayersMode;
|
|
1461
|
-
|
|
1462
|
-
|
|
1463
|
-
|
|
1952
|
+
}
|
|
1953
|
+
/** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
|
|
1954
|
+
namespace PlayersMode.$metadata$ {
|
|
1955
|
+
const constructor: abstract new () => PlayersMode;
|
|
1956
|
+
}
|
|
1957
|
+
namespace PlayersMode {
|
|
1958
|
+
abstract class Companion extends KtSingleton<Companion.$metadata$.constructor>() {
|
|
1959
|
+
private constructor();
|
|
1960
|
+
}
|
|
1961
|
+
/** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
|
|
1962
|
+
namespace Companion.$metadata$ {
|
|
1963
|
+
abstract class constructor /* implements kotlinx.serialization.internal.SerializerFactory */ {
|
|
1964
|
+
create(number: number): games.jass.logic.data.models.table.config.PlayersMode;
|
|
1965
|
+
private constructor();
|
|
1966
|
+
}
|
|
1967
|
+
}
|
|
1464
1968
|
}
|
|
1465
1969
|
}
|
|
1466
1970
|
export declare namespace games.jass.logic.data.models.table.config {
|
|
@@ -1487,9 +1991,22 @@ export declare namespace games.jass.logic.data.models.table.config {
|
|
|
1487
1991
|
get value(): number;
|
|
1488
1992
|
static values(): Array<games.jass.logic.data.models.table.config.PointsMode>;
|
|
1489
1993
|
static valueOf(value: string): games.jass.logic.data.models.table.config.PointsMode;
|
|
1490
|
-
|
|
1491
|
-
|
|
1492
|
-
|
|
1994
|
+
}
|
|
1995
|
+
/** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
|
|
1996
|
+
namespace PointsMode.$metadata$ {
|
|
1997
|
+
const constructor: abstract new () => PointsMode;
|
|
1998
|
+
}
|
|
1999
|
+
namespace PointsMode {
|
|
2000
|
+
abstract class Companion extends KtSingleton<Companion.$metadata$.constructor>() {
|
|
2001
|
+
private constructor();
|
|
2002
|
+
}
|
|
2003
|
+
/** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
|
|
2004
|
+
namespace Companion.$metadata$ {
|
|
2005
|
+
abstract class constructor /* implements kotlinx.serialization.internal.SerializerFactory */ {
|
|
2006
|
+
create(points: number): games.jass.logic.data.models.table.config.PointsMode;
|
|
2007
|
+
private constructor();
|
|
2008
|
+
}
|
|
2009
|
+
}
|
|
1493
2010
|
}
|
|
1494
2011
|
}
|
|
1495
2012
|
export declare namespace games.jass.logic.data.models.table.config {
|
|
@@ -1510,6 +2027,10 @@ export declare namespace games.jass.logic.data.models.table.config {
|
|
|
1510
2027
|
hashCode(): number;
|
|
1511
2028
|
equals(other: Nullable<any>): boolean;
|
|
1512
2029
|
}
|
|
2030
|
+
/** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
|
|
2031
|
+
namespace RoomConfig.$metadata$ {
|
|
2032
|
+
const constructor: abstract new () => RoomConfig;
|
|
2033
|
+
}
|
|
1513
2034
|
}
|
|
1514
2035
|
export declare namespace games.jass.logic.data.models.table.config {
|
|
1515
2036
|
abstract class RoomMode {
|
|
@@ -1538,6 +2059,10 @@ export declare namespace games.jass.logic.data.models.table.config {
|
|
|
1538
2059
|
static values(): Array<games.jass.logic.data.models.table.config.RoomMode>;
|
|
1539
2060
|
static valueOf(value: string): games.jass.logic.data.models.table.config.RoomMode;
|
|
1540
2061
|
}
|
|
2062
|
+
/** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
|
|
2063
|
+
namespace RoomMode.$metadata$ {
|
|
2064
|
+
const constructor: abstract new () => RoomMode;
|
|
2065
|
+
}
|
|
1541
2066
|
}
|
|
1542
2067
|
export declare namespace games.jass.logic.data.models.table.history {
|
|
1543
2068
|
class ClientGameHistory {
|
|
@@ -1549,12 +2074,16 @@ export declare namespace games.jass.logic.data.models.table.history {
|
|
|
1549
2074
|
hashCode(): number;
|
|
1550
2075
|
equals(other: Nullable<any>): boolean;
|
|
1551
2076
|
}
|
|
2077
|
+
/** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
|
|
2078
|
+
namespace ClientGameHistory.$metadata$ {
|
|
2079
|
+
const constructor: abstract new () => ClientGameHistory;
|
|
2080
|
+
}
|
|
1552
2081
|
}
|
|
1553
2082
|
export declare namespace games.jass.logic.data.models.table.history {
|
|
1554
2083
|
class GameHistory {
|
|
1555
|
-
constructor(gameId: string, createdAt: any/*
|
|
2084
|
+
constructor(gameId: string, createdAt: any/* kotlin.time.Instant */, rounds: Array<games.jass.logic.data.models.table.history.RoundHistory>, gameWinners: Nullable<Array<string>>, metadata: Nullable<games.jass.logic.data.models.table.history.GameHistoryMetadata>);
|
|
1556
2085
|
get gameId(): string;
|
|
1557
|
-
get createdAt(): any/*
|
|
2086
|
+
get createdAt(): any/* kotlin.time.Instant */;
|
|
1558
2087
|
get rounds(): Array<games.jass.logic.data.models.table.history.RoundHistory>;
|
|
1559
2088
|
get gameWinners(): Nullable<Array<string>>;
|
|
1560
2089
|
get metadata(): Nullable<games.jass.logic.data.models.table.history.GameHistoryMetadata>;
|
|
@@ -1565,10 +2094,23 @@ export declare namespace games.jass.logic.data.models.table.history {
|
|
|
1565
2094
|
toString(): string;
|
|
1566
2095
|
equals(other: Nullable<any>): boolean;
|
|
1567
2096
|
hashCode(): number;
|
|
1568
|
-
copy(gameId?: string, createdAt?: any/*
|
|
1569
|
-
|
|
1570
|
-
|
|
1571
|
-
|
|
2097
|
+
copy(gameId?: string, createdAt?: any/* kotlin.time.Instant */, rounds?: Array<games.jass.logic.data.models.table.history.RoundHistory>, gameWinners?: Nullable<Array<string>>, metadata?: Nullable<games.jass.logic.data.models.table.history.GameHistoryMetadata>): games.jass.logic.data.models.table.history.GameHistory;
|
|
2098
|
+
}
|
|
2099
|
+
/** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
|
|
2100
|
+
namespace GameHistory.$metadata$ {
|
|
2101
|
+
const constructor: abstract new () => GameHistory;
|
|
2102
|
+
}
|
|
2103
|
+
namespace GameHistory {
|
|
2104
|
+
abstract class Companion extends KtSingleton<Companion.$metadata$.constructor>() {
|
|
2105
|
+
private constructor();
|
|
2106
|
+
}
|
|
2107
|
+
/** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
|
|
2108
|
+
namespace Companion.$metadata$ {
|
|
2109
|
+
abstract class constructor {
|
|
2110
|
+
initial(gameId: string, createdAt?: any/* kotlin.time.Instant */): games.jass.logic.data.models.table.history.GameHistory;
|
|
2111
|
+
private constructor();
|
|
2112
|
+
}
|
|
2113
|
+
}
|
|
1572
2114
|
}
|
|
1573
2115
|
}
|
|
1574
2116
|
export declare namespace games.jass.logic.data.models.table.history {
|
|
@@ -1580,36 +2122,66 @@ export declare namespace games.jass.logic.data.models.table.history {
|
|
|
1580
2122
|
toString(): string;
|
|
1581
2123
|
hashCode(): number;
|
|
1582
2124
|
equals(other: Nullable<any>): boolean;
|
|
1583
|
-
|
|
1584
|
-
|
|
1585
|
-
|
|
2125
|
+
}
|
|
2126
|
+
/** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
|
|
2127
|
+
namespace GameHistoryMetadata.$metadata$ {
|
|
2128
|
+
const constructor: abstract new () => GameHistoryMetadata;
|
|
2129
|
+
}
|
|
2130
|
+
namespace GameHistoryMetadata {
|
|
2131
|
+
abstract class Companion extends KtSingleton<Companion.$metadata$.constructor>() {
|
|
2132
|
+
private constructor();
|
|
2133
|
+
}
|
|
2134
|
+
/** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
|
|
2135
|
+
namespace Companion.$metadata$ {
|
|
2136
|
+
abstract class constructor {
|
|
2137
|
+
initial(): games.jass.logic.data.models.table.history.GameHistoryMetadata;
|
|
2138
|
+
private constructor();
|
|
2139
|
+
}
|
|
2140
|
+
}
|
|
1586
2141
|
}
|
|
1587
2142
|
}
|
|
1588
2143
|
export declare namespace games.jass.logic.data.models.table.history {
|
|
1589
2144
|
class RoundHistory {
|
|
1590
|
-
constructor(round: number, items: Array<games.jass.logic.data.models.table.history.RoundHistoryItem>, committed: Nullable<Array<string>>, contractState: Nullable<games.jass.logic.data.models.player.state.RoundContractState>, winners: Nullable<Array<string>>, createdAt: any/*
|
|
2145
|
+
constructor(round: number, items: Array<games.jass.logic.data.models.table.history.RoundHistoryItem>, committed: Nullable<Array<string>>, contractState: Nullable<games.jass.logic.data.models.player.state.RoundContractState>, winners: Nullable<Array<string>>, createdAt: any/* kotlin.time.Instant */);
|
|
1591
2146
|
get round(): number;
|
|
1592
2147
|
get items(): Array<games.jass.logic.data.models.table.history.RoundHistoryItem>;
|
|
1593
2148
|
get committed(): Nullable<Array<string>>;
|
|
1594
2149
|
get contractState(): Nullable<games.jass.logic.data.models.player.state.RoundContractState>;
|
|
1595
2150
|
get winners(): Nullable<Array<string>>;
|
|
1596
|
-
get createdAt(): any/*
|
|
2151
|
+
get createdAt(): any/* kotlin.time.Instant */;
|
|
1597
2152
|
isFailedRoundForPlayer(playerId: string): boolean;
|
|
1598
2153
|
get contractStateName(): Nullable<string>;
|
|
1599
2154
|
equals(other: Nullable<any>): boolean;
|
|
1600
2155
|
hashCode(): number;
|
|
1601
2156
|
toStringShort(): string;
|
|
1602
|
-
copy(round?: number, items?: Array<games.jass.logic.data.models.table.history.RoundHistoryItem>, committed?: Nullable<Array<string>>, contractState?: Nullable<games.jass.logic.data.models.player.state.RoundContractState>, winners?: Nullable<Array<string>>, createdAt?: any/*
|
|
2157
|
+
copy(round?: number, items?: Array<games.jass.logic.data.models.table.history.RoundHistoryItem>, committed?: Nullable<Array<string>>, contractState?: Nullable<games.jass.logic.data.models.player.state.RoundContractState>, winners?: Nullable<Array<string>>, createdAt?: any/* kotlin.time.Instant */): games.jass.logic.data.models.table.history.RoundHistory;
|
|
1603
2158
|
toString(): string;
|
|
1604
|
-
|
|
1605
|
-
|
|
1606
|
-
|
|
2159
|
+
}
|
|
2160
|
+
/** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
|
|
2161
|
+
namespace RoundHistory.$metadata$ {
|
|
2162
|
+
const constructor: abstract new () => RoundHistory;
|
|
2163
|
+
}
|
|
2164
|
+
namespace RoundHistory {
|
|
2165
|
+
abstract class Companion extends KtSingleton<Companion.$metadata$.constructor>() {
|
|
2166
|
+
private constructor();
|
|
2167
|
+
}
|
|
2168
|
+
/** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
|
|
2169
|
+
namespace Companion.$metadata$ {
|
|
2170
|
+
abstract class constructor {
|
|
2171
|
+
initial(roundNumber: number): games.jass.logic.data.models.table.history.RoundHistory;
|
|
2172
|
+
private constructor();
|
|
2173
|
+
}
|
|
2174
|
+
}
|
|
1607
2175
|
}
|
|
1608
2176
|
}
|
|
1609
2177
|
export declare namespace games.jass.logic.data.models.table.history {
|
|
1610
2178
|
abstract class RoundHistoryItem {
|
|
1611
2179
|
protected constructor();
|
|
1612
|
-
abstract get createdAt(): any/*
|
|
2180
|
+
abstract get createdAt(): any/* kotlin.time.Instant */;
|
|
2181
|
+
}
|
|
2182
|
+
/** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
|
|
2183
|
+
namespace RoundHistoryItem.$metadata$ {
|
|
2184
|
+
const constructor: abstract new () => RoundHistoryItem;
|
|
1613
2185
|
}
|
|
1614
2186
|
}
|
|
1615
2187
|
export declare namespace games.jass.logic.data.models.table.round {
|
|
@@ -1625,9 +2197,22 @@ export declare namespace games.jass.logic.data.models.table.round {
|
|
|
1625
2197
|
toString(): string;
|
|
1626
2198
|
hashCode(): number;
|
|
1627
2199
|
equals(other: Nullable<any>): boolean;
|
|
1628
|
-
|
|
1629
|
-
|
|
1630
|
-
|
|
2200
|
+
}
|
|
2201
|
+
/** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
|
|
2202
|
+
namespace Round.$metadata$ {
|
|
2203
|
+
const constructor: abstract new () => Round;
|
|
2204
|
+
}
|
|
2205
|
+
namespace Round {
|
|
2206
|
+
abstract class Companion extends KtSingleton<Companion.$metadata$.constructor>() {
|
|
2207
|
+
private constructor();
|
|
2208
|
+
}
|
|
2209
|
+
/** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
|
|
2210
|
+
namespace Companion.$metadata$ {
|
|
2211
|
+
abstract class constructor {
|
|
2212
|
+
initial(): games.jass.logic.data.models.table.round.Round;
|
|
2213
|
+
private constructor();
|
|
2214
|
+
}
|
|
2215
|
+
}
|
|
1631
2216
|
}
|
|
1632
2217
|
}
|
|
1633
2218
|
export declare namespace games.jass.logic.domain.interactors.dealer {
|
|
@@ -1676,9 +2261,22 @@ export declare namespace games.jass.logic.domain.interactors.dealer {
|
|
|
1676
2261
|
isRandomOrg(): boolean;
|
|
1677
2262
|
static values(): Array<games.jass.logic.domain.interactors.dealer.DealerStrategy>;
|
|
1678
2263
|
static valueOf(value: string): games.jass.logic.domain.interactors.dealer.DealerStrategy;
|
|
1679
|
-
|
|
1680
|
-
|
|
1681
|
-
|
|
2264
|
+
}
|
|
2265
|
+
/** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
|
|
2266
|
+
namespace DealerStrategy.$metadata$ {
|
|
2267
|
+
const constructor: abstract new () => DealerStrategy;
|
|
2268
|
+
}
|
|
2269
|
+
namespace DealerStrategy {
|
|
2270
|
+
abstract class Companion extends KtSingleton<Companion.$metadata$.constructor>() {
|
|
2271
|
+
private constructor();
|
|
2272
|
+
}
|
|
2273
|
+
/** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
|
|
2274
|
+
namespace Companion.$metadata$ {
|
|
2275
|
+
abstract class constructor {
|
|
2276
|
+
default(): games.jass.logic.domain.interactors.dealer.DealerStrategy;
|
|
2277
|
+
private constructor();
|
|
2278
|
+
}
|
|
2279
|
+
}
|
|
1682
2280
|
}
|
|
1683
2281
|
}
|
|
1684
2282
|
export declare namespace games.jass.logic.redux.actions {
|
|
@@ -1694,6 +2292,10 @@ export declare namespace games.jass.logic.redux.actions {
|
|
|
1694
2292
|
notValidateWhenFinished(): boolean;
|
|
1695
2293
|
readonly __doNotUseOrImplementIt: com.logic.redux.store.definitions.Action["__doNotUseOrImplementIt"] & com.logic.redux.actions.validation.NotValidateIfGameFinishing["__doNotUseOrImplementIt"] & com.logic.redux.actions.validation.NotValidateIfGameFinished["__doNotUseOrImplementIt"];
|
|
1696
2294
|
}
|
|
2295
|
+
/** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
|
|
2296
|
+
namespace ClearAction.$metadata$ {
|
|
2297
|
+
const constructor: abstract new () => ClearAction;
|
|
2298
|
+
}
|
|
1697
2299
|
}
|
|
1698
2300
|
export declare namespace games.jass.logic.redux.actions.client.from {
|
|
1699
2301
|
abstract class FromClientAction implements com.logic.redux.store.definitions.Action {
|
|
@@ -1703,6 +2305,10 @@ export declare namespace games.jass.logic.redux.actions.client.from {
|
|
|
1703
2305
|
get actionTag(): string;
|
|
1704
2306
|
readonly __doNotUseOrImplementIt: com.logic.redux.store.definitions.Action["__doNotUseOrImplementIt"];
|
|
1705
2307
|
}
|
|
2308
|
+
/** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
|
|
2309
|
+
namespace FromClientAction.$metadata$ {
|
|
2310
|
+
const constructor: abstract new () => FromClientAction;
|
|
2311
|
+
}
|
|
1706
2312
|
}
|
|
1707
2313
|
export declare namespace games.jass.logic.redux.actions.client.to {
|
|
1708
2314
|
class ActionDeliveryPayload {
|
|
@@ -1719,10 +2325,23 @@ export declare namespace games.jass.logic.redux.actions.client.to {
|
|
|
1719
2325
|
equals(other: Nullable<any>): boolean;
|
|
1720
2326
|
hashCode(): number;
|
|
1721
2327
|
copy(tableId?: string, aid?: string, includePlayers?: Array<string>, excludePlayers?: Array<string>, deliveryType?: games.jass.logic.redux.actions.client.to.ActionDeliveryType): games.jass.logic.redux.actions.client.to.ActionDeliveryPayload;
|
|
1722
|
-
|
|
1723
|
-
|
|
1724
|
-
|
|
1725
|
-
|
|
2328
|
+
}
|
|
2329
|
+
/** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
|
|
2330
|
+
namespace ActionDeliveryPayload.$metadata$ {
|
|
2331
|
+
const constructor: abstract new () => ActionDeliveryPayload;
|
|
2332
|
+
}
|
|
2333
|
+
namespace ActionDeliveryPayload {
|
|
2334
|
+
abstract class Companion extends KtSingleton<Companion.$metadata$.constructor>() {
|
|
2335
|
+
private constructor();
|
|
2336
|
+
}
|
|
2337
|
+
/** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
|
|
2338
|
+
namespace Companion.$metadata$ {
|
|
2339
|
+
abstract class constructor {
|
|
2340
|
+
userFromTable(aid: string, table: games.jass.logic.data.models.table.JassTable, sendToPlayerId: string): games.jass.logic.redux.actions.client.to.ActionDeliveryPayload;
|
|
2341
|
+
user(aid: string, tableId: string, sendToPlayerId: string): games.jass.logic.redux.actions.client.to.ActionDeliveryPayload;
|
|
2342
|
+
private constructor();
|
|
2343
|
+
}
|
|
2344
|
+
}
|
|
1726
2345
|
}
|
|
1727
2346
|
abstract class ActionDeliveryType {
|
|
1728
2347
|
private constructor();
|
|
@@ -1742,8 +2361,21 @@ export declare namespace games.jass.logic.redux.actions.client.to {
|
|
|
1742
2361
|
get ordinal(): 0 | 1 | 2;
|
|
1743
2362
|
static values(): Array<games.jass.logic.redux.actions.client.to.ActionDeliveryType>;
|
|
1744
2363
|
static valueOf(value: string): games.jass.logic.redux.actions.client.to.ActionDeliveryType;
|
|
1745
|
-
|
|
1746
|
-
|
|
2364
|
+
}
|
|
2365
|
+
/** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
|
|
2366
|
+
namespace ActionDeliveryType.$metadata$ {
|
|
2367
|
+
const constructor: abstract new () => ActionDeliveryType;
|
|
2368
|
+
}
|
|
2369
|
+
namespace ActionDeliveryType {
|
|
2370
|
+
abstract class Companion extends KtSingleton<Companion.$metadata$.constructor>() {
|
|
2371
|
+
private constructor();
|
|
2372
|
+
}
|
|
2373
|
+
/** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
|
|
2374
|
+
namespace Companion.$metadata$ {
|
|
2375
|
+
abstract class constructor /* implements kotlinx.serialization.internal.SerializerFactory */ {
|
|
2376
|
+
private constructor();
|
|
2377
|
+
}
|
|
2378
|
+
}
|
|
1747
2379
|
}
|
|
1748
2380
|
}
|
|
1749
2381
|
export declare namespace games.jass.logic.redux.actions.client.to {
|
|
@@ -1753,6 +2385,10 @@ export declare namespace games.jass.logic.redux.actions.client.to {
|
|
|
1753
2385
|
get actionTag(): string;
|
|
1754
2386
|
readonly __doNotUseOrImplementIt: com.logic.redux.store.definitions.Action["__doNotUseOrImplementIt"];
|
|
1755
2387
|
}
|
|
2388
|
+
/** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
|
|
2389
|
+
namespace ToClientAction.$metadata$ {
|
|
2390
|
+
const constructor: abstract new () => ToClientAction;
|
|
2391
|
+
}
|
|
1756
2392
|
}
|
|
1757
2393
|
export declare namespace games.jass.logic.redux.actions.game {
|
|
1758
2394
|
abstract class GameAction implements com.logic.redux.store.definitions.Action {
|
|
@@ -1760,7 +2396,11 @@ export declare namespace games.jass.logic.redux.actions.game {
|
|
|
1760
2396
|
get actionTag(): string;
|
|
1761
2397
|
readonly __doNotUseOrImplementIt: com.logic.redux.store.definitions.Action["__doNotUseOrImplementIt"];
|
|
1762
2398
|
}
|
|
1763
|
-
|
|
2399
|
+
/** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
|
|
2400
|
+
namespace GameAction.$metadata$ {
|
|
2401
|
+
const constructor: abstract new () => GameAction;
|
|
2402
|
+
}
|
|
2403
|
+
class RoundStartedAction extends games.jass.logic.redux.actions.game.GameAction.$metadata$.constructor {
|
|
1764
2404
|
constructor(id: string, gameId: string, roundNumber: number, players: Array<string>, isFirstRound: boolean, gameNumber: number, roomMode: games.jass.logic.data.models.table.config.RoomMode, gameHistory: games.jass.logic.data.models.table.history.GameHistory);
|
|
1765
2405
|
get id(): string;
|
|
1766
2406
|
get gameId(): string;
|
|
@@ -1777,7 +2417,11 @@ export declare namespace games.jass.logic.redux.actions.game {
|
|
|
1777
2417
|
copy(id?: string, gameId?: string, roundNumber?: number, players?: Array<string>, isFirstRound?: boolean, gameNumber?: number, roomMode?: games.jass.logic.data.models.table.config.RoomMode, gameHistory?: games.jass.logic.data.models.table.history.GameHistory): games.jass.logic.redux.actions.game.RoundStartedAction;
|
|
1778
2418
|
get actionTag(): string;
|
|
1779
2419
|
}
|
|
1780
|
-
|
|
2420
|
+
/** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
|
|
2421
|
+
namespace RoundStartedAction.$metadata$ {
|
|
2422
|
+
const constructor: abstract new () => RoundStartedAction;
|
|
2423
|
+
}
|
|
2424
|
+
class RoundEndedAction extends games.jass.logic.redux.actions.game.GameAction.$metadata$.constructor {
|
|
1781
2425
|
constructor(id: string, gameId: string, roundNumber: number, earnedBiggestPointPlayerId: string, gameLosers: Nullable<Array<string>> | undefined, gameWinners: Nullable<Array<string>> | undefined, playersGameAnalytics: Nullable<Array<games.jass.logic.data.models.player.analytics.PlayerAnalytics>>, playersRoundAnalytics: Nullable<Array<games.jass.logic.data.models.player.analytics.PlayerAnalytics>>, achievements: Nullable<Array<games.jass.logic.data.models.player.achievements.PlayerAchievements>>, gameHistory: games.jass.logic.data.models.table.history.GameHistory);
|
|
1782
2426
|
get id(): string;
|
|
1783
2427
|
get gameId(): string;
|
|
@@ -1796,6 +2440,10 @@ export declare namespace games.jass.logic.redux.actions.game {
|
|
|
1796
2440
|
copy(id?: string, gameId?: string, roundNumber?: number, earnedBiggestPointPlayerId?: string, gameLosers?: Nullable<Array<string>>, gameWinners?: Nullable<Array<string>>, playersGameAnalytics?: Nullable<Array<games.jass.logic.data.models.player.analytics.PlayerAnalytics>>, playersRoundAnalytics?: Nullable<Array<games.jass.logic.data.models.player.analytics.PlayerAnalytics>>, achievements?: Nullable<Array<games.jass.logic.data.models.player.achievements.PlayerAchievements>>, gameHistory?: games.jass.logic.data.models.table.history.GameHistory): games.jass.logic.redux.actions.game.RoundEndedAction;
|
|
1797
2441
|
get actionTag(): string;
|
|
1798
2442
|
}
|
|
2443
|
+
/** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
|
|
2444
|
+
namespace RoundEndedAction.$metadata$ {
|
|
2445
|
+
const constructor: abstract new () => RoundEndedAction;
|
|
2446
|
+
}
|
|
1799
2447
|
class PartyRestartedAction implements com.logic.redux.store.definitions.Action {
|
|
1800
2448
|
constructor(id: string, roundNumber: number);
|
|
1801
2449
|
get id(): string;
|
|
@@ -1807,6 +2455,10 @@ export declare namespace games.jass.logic.redux.actions.game {
|
|
|
1807
2455
|
get actionTag(): string;
|
|
1808
2456
|
readonly __doNotUseOrImplementIt: com.logic.redux.store.definitions.Action["__doNotUseOrImplementIt"];
|
|
1809
2457
|
}
|
|
2458
|
+
/** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
|
|
2459
|
+
namespace PartyRestartedAction.$metadata$ {
|
|
2460
|
+
const constructor: abstract new () => PartyRestartedAction;
|
|
2461
|
+
}
|
|
1810
2462
|
}
|
|
1811
2463
|
export declare namespace games.jass.logic.redux.actions.mechanic {
|
|
1812
2464
|
interface GameTransition {
|
|
@@ -1829,6 +2481,10 @@ export declare namespace games.jass.logic.redux.actions.mechanic {
|
|
|
1829
2481
|
get readyPlayerIdsArray(): Array<string>;
|
|
1830
2482
|
readonly __doNotUseOrImplementIt: games.jass.logic.redux.actions.mechanic.GameTransition["__doNotUseOrImplementIt"];
|
|
1831
2483
|
}
|
|
2484
|
+
/** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
|
|
2485
|
+
namespace RevengeRoomTransition.$metadata$ {
|
|
2486
|
+
const constructor: abstract new () => RevengeRoomTransition;
|
|
2487
|
+
}
|
|
1832
2488
|
class GameToRoomTransition implements games.jass.logic.redux.actions.mechanic.GameTransition {
|
|
1833
2489
|
constructor(roomId: string, playerIds: Nullable<kotlin.collections.KtList<string>>, previousPlayers: Nullable<kotlin.collections.KtList<string>>);
|
|
1834
2490
|
get roomId(): string;
|
|
@@ -1842,6 +2498,10 @@ export declare namespace games.jass.logic.redux.actions.mechanic {
|
|
|
1842
2498
|
equals(other: Nullable<any>): boolean;
|
|
1843
2499
|
readonly __doNotUseOrImplementIt: games.jass.logic.redux.actions.mechanic.GameTransition["__doNotUseOrImplementIt"];
|
|
1844
2500
|
}
|
|
2501
|
+
/** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
|
|
2502
|
+
namespace GameToRoomTransition.$metadata$ {
|
|
2503
|
+
const constructor: abstract new () => GameToRoomTransition;
|
|
2504
|
+
}
|
|
1845
2505
|
}
|
|
1846
2506
|
export declare namespace games.jass.logic.redux.actions.mechanic {
|
|
1847
2507
|
abstract class MechanicAction implements com.logic.redux.actions.BufferedAction {
|
|
@@ -1850,6 +2510,10 @@ export declare namespace games.jass.logic.redux.actions.mechanic {
|
|
|
1850
2510
|
get actionTag(): string;
|
|
1851
2511
|
readonly __doNotUseOrImplementIt: com.logic.redux.actions.BufferedAction["__doNotUseOrImplementIt"];
|
|
1852
2512
|
}
|
|
2513
|
+
/** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
|
|
2514
|
+
namespace MechanicAction.$metadata$ {
|
|
2515
|
+
const constructor: abstract new () => MechanicAction;
|
|
2516
|
+
}
|
|
1853
2517
|
interface FirstMechanicAction extends com.logic.redux.store.definitions.Action, com.logic.redux.actions.IgnoreBufferForAction {
|
|
1854
2518
|
readonly id: string;
|
|
1855
2519
|
readonly version: string;
|
|
@@ -1860,7 +2524,7 @@ export declare namespace games.jass.logic.redux.actions.mechanic {
|
|
|
1860
2524
|
readonly "games.jass.logic.redux.actions.mechanic.FirstMechanicAction": unique symbol;
|
|
1861
2525
|
} & com.logic.redux.store.definitions.Action["__doNotUseOrImplementIt"] & com.logic.redux.actions.IgnoreBufferForAction["__doNotUseOrImplementIt"];
|
|
1862
2526
|
}
|
|
1863
|
-
class StartGameMechanicAction extends games.jass.logic.redux.actions.mechanic.MechanicAction implements games.jass.logic.redux.actions.mechanic.FirstMechanicAction {
|
|
2527
|
+
class StartGameMechanicAction extends games.jass.logic.redux.actions.mechanic.MechanicAction.$metadata$.constructor implements games.jass.logic.redux.actions.mechanic.FirstMechanicAction {
|
|
1864
2528
|
constructor(config: games.jass.logic.data.models.table.config.Config, roomId: string, version: string, gameCreatorPlayerId: string, users: kotlin.collections.KtList<com.logic.data.models.player.GameUserInfo>, aid: Nullable<string> | undefined, spectators: kotlin.collections.KtList<com.logic.data.models.player.GameUserInfo>);
|
|
1865
2529
|
get config(): games.jass.logic.data.models.table.config.Config;
|
|
1866
2530
|
get id(): string;
|
|
@@ -1876,7 +2540,11 @@ export declare namespace games.jass.logic.redux.actions.mechanic {
|
|
|
1876
2540
|
get actionTag(): string;
|
|
1877
2541
|
readonly __doNotUseOrImplementIt: games.jass.logic.redux.actions.mechanic.MechanicAction["__doNotUseOrImplementIt"] & games.jass.logic.redux.actions.mechanic.FirstMechanicAction["__doNotUseOrImplementIt"];
|
|
1878
2542
|
}
|
|
1879
|
-
|
|
2543
|
+
/** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
|
|
2544
|
+
namespace StartGameMechanicAction.$metadata$ {
|
|
2545
|
+
const constructor: abstract new () => StartGameMechanicAction;
|
|
2546
|
+
}
|
|
2547
|
+
class StartNewGameMechanicAction extends games.jass.logic.redux.actions.mechanic.MechanicAction.$metadata$.constructor {
|
|
1880
2548
|
constructor(previousGameId: string, gameId: string, aid?: Nullable<string>);
|
|
1881
2549
|
get previousGameId(): string;
|
|
1882
2550
|
get gameId(): string;
|
|
@@ -1887,8 +2555,11 @@ export declare namespace games.jass.logic.redux.actions.mechanic {
|
|
|
1887
2555
|
equals(other: Nullable<any>): boolean;
|
|
1888
2556
|
get actionTag(): string;
|
|
1889
2557
|
}
|
|
1890
|
-
|
|
1891
|
-
|
|
2558
|
+
/** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
|
|
2559
|
+
namespace StartNewGameMechanicAction.$metadata$ {
|
|
2560
|
+
const constructor: abstract new () => StartNewGameMechanicAction;
|
|
2561
|
+
}
|
|
2562
|
+
class FinishingGameMechanicAction extends games.jass.logic.redux.actions.mechanic.MechanicAction.$metadata$.constructor implements games.jass.logic.redux.actions.mechanic.TerminatedAction, com.logic.redux.actions.validation.NotValidateIfGameFinishing {
|
|
1892
2563
|
constructor(reason: com.logic.data.models.TerminationGameReason, isGameFinished: boolean, transition: Nullable<games.jass.logic.redux.actions.mechanic.GameTransition>, sessionAnalytics?: Nullable<games.jass.logic.data.models.GameSessionAnalytics>, gameHistory?: Nullable<games.jass.logic.data.models.table.history.GameHistory>, isRoundHistorySaved?: boolean, aid?: Nullable<string>);
|
|
1893
2564
|
get reason(): com.logic.data.models.TerminationGameReason;
|
|
1894
2565
|
get isGameFinished(): boolean;
|
|
@@ -1904,12 +2575,25 @@ export declare namespace games.jass.logic.redux.actions.mechanic {
|
|
|
1904
2575
|
get actionTag(): string;
|
|
1905
2576
|
notValidateWhenFinishing(): boolean;
|
|
1906
2577
|
readonly __doNotUseOrImplementIt: games.jass.logic.redux.actions.mechanic.MechanicAction["__doNotUseOrImplementIt"] & games.jass.logic.redux.actions.mechanic.TerminatedAction["__doNotUseOrImplementIt"] & com.logic.redux.actions.validation.NotValidateIfGameFinishing["__doNotUseOrImplementIt"];
|
|
1907
|
-
static get Companion(): {
|
|
1908
|
-
fromTableWithAnalytics(reason: com.logic.data.models.TerminationGameReason, isGameFinished: boolean, table: Nullable<games.jass.logic.data.models.table.JassTable>, transition?: Nullable<games.jass.logic.redux.actions.mechanic.GameTransition>): games.jass.logic.redux.actions.mechanic.FinishingGameMechanicAction;
|
|
1909
|
-
fromTable(table: Nullable<games.jass.logic.data.models.table.JassTable>): games.jass.logic.redux.actions.mechanic.FinishingGameMechanicAction;
|
|
1910
|
-
};
|
|
1911
2578
|
}
|
|
1912
|
-
|
|
2579
|
+
/** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
|
|
2580
|
+
namespace FinishingGameMechanicAction.$metadata$ {
|
|
2581
|
+
const constructor: abstract new () => FinishingGameMechanicAction;
|
|
2582
|
+
}
|
|
2583
|
+
namespace FinishingGameMechanicAction {
|
|
2584
|
+
abstract class Companion extends KtSingleton<Companion.$metadata$.constructor>() {
|
|
2585
|
+
private constructor();
|
|
2586
|
+
}
|
|
2587
|
+
/** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
|
|
2588
|
+
namespace Companion.$metadata$ {
|
|
2589
|
+
abstract class constructor {
|
|
2590
|
+
fromTableWithAnalytics(reason: com.logic.data.models.TerminationGameReason, isGameFinished: boolean, table: Nullable<games.jass.logic.data.models.table.JassTable>, transition?: Nullable<games.jass.logic.redux.actions.mechanic.GameTransition>): games.jass.logic.redux.actions.mechanic.FinishingGameMechanicAction;
|
|
2591
|
+
fromTable(table: Nullable<games.jass.logic.data.models.table.JassTable>): games.jass.logic.redux.actions.mechanic.FinishingGameMechanicAction;
|
|
2592
|
+
private constructor();
|
|
2593
|
+
}
|
|
2594
|
+
}
|
|
2595
|
+
}
|
|
2596
|
+
class FinishGameMechanicAction extends games.jass.logic.redux.actions.mechanic.MechanicAction.$metadata$.constructor implements com.logic.redux.actions.validation.NotValidateIfGameFinishing, games.jass.logic.redux.actions.mechanic.TerminatedAction {
|
|
1913
2597
|
constructor(reason: com.logic.data.models.TerminationGameReason, isGameFinished: boolean, aid?: Nullable<string>, transition?: Nullable<games.jass.logic.redux.actions.mechanic.GameTransition>);
|
|
1914
2598
|
get reason(): com.logic.data.models.TerminationGameReason;
|
|
1915
2599
|
get isGameFinished(): boolean;
|
|
@@ -1923,6 +2607,10 @@ export declare namespace games.jass.logic.redux.actions.mechanic {
|
|
|
1923
2607
|
notValidateWhenFinishing(): boolean;
|
|
1924
2608
|
readonly __doNotUseOrImplementIt: games.jass.logic.redux.actions.mechanic.MechanicAction["__doNotUseOrImplementIt"] & com.logic.redux.actions.validation.NotValidateIfGameFinishing["__doNotUseOrImplementIt"] & games.jass.logic.redux.actions.mechanic.TerminatedAction["__doNotUseOrImplementIt"];
|
|
1925
2609
|
}
|
|
2610
|
+
/** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
|
|
2611
|
+
namespace FinishGameMechanicAction.$metadata$ {
|
|
2612
|
+
const constructor: abstract new () => FinishGameMechanicAction;
|
|
2613
|
+
}
|
|
1926
2614
|
interface NavigationMechanicAction extends com.logic.redux.store.definitions.Action {
|
|
1927
2615
|
readonly sceneId: string;
|
|
1928
2616
|
readonly actId: Nullable<string>;
|
|
@@ -1931,7 +2619,7 @@ export declare namespace games.jass.logic.redux.actions.mechanic {
|
|
|
1931
2619
|
readonly "games.jass.logic.redux.actions.mechanic.NavigationMechanicAction": unique symbol;
|
|
1932
2620
|
} & com.logic.redux.store.definitions.Action["__doNotUseOrImplementIt"];
|
|
1933
2621
|
}
|
|
1934
|
-
class SceneMechanicAction extends games.jass.logic.redux.actions.mechanic.MechanicAction implements games.jass.logic.redux.actions.mechanic.NavigationMechanicAction, com.logic.redux.store.definitions.Action, com.logic.redux.actions.ReleaseBufferTriggerAction, com.logic.data.models.player.PlayerIdContract, com.logic.redux.actions.validation.NotValidateIfGameFinishing, com.logic.redux.actions.validation.NotValidateIfGameFinished/*, games.jass.logic.redux.actions.mechanic.NextPlayerTurnAction, games.jass.logic.redux.actions.mechanic.PlayerTurnIdAnswerAction */ {
|
|
2622
|
+
class SceneMechanicAction extends games.jass.logic.redux.actions.mechanic.MechanicAction.$metadata$.constructor implements games.jass.logic.redux.actions.mechanic.NavigationMechanicAction, com.logic.redux.store.definitions.Action, com.logic.redux.actions.ReleaseBufferTriggerAction, com.logic.data.models.player.PlayerIdContract, com.logic.redux.actions.validation.NotValidateIfGameFinishing, com.logic.redux.actions.validation.NotValidateIfGameFinished/*, games.jass.logic.redux.actions.mechanic.NextPlayerTurnAction, games.jass.logic.redux.actions.mechanic.PlayerTurnIdAnswerAction */ {
|
|
1935
2623
|
constructor(currentTurnPlayerId: Nullable<string>, sceneId: string, actId?: Nullable<string>, sceneData?: Nullable<games.jass.logic.data.models.scenes.SceneData>, actData?: Nullable<games.jass.logic.data.models.scenes.ActData>, aid?: Nullable<string>);
|
|
1936
2624
|
get sceneId(): string;
|
|
1937
2625
|
get actId(): Nullable<string>;
|
|
@@ -1948,6 +2636,10 @@ export declare namespace games.jass.logic.redux.actions.mechanic {
|
|
|
1948
2636
|
get playerId(): string;
|
|
1949
2637
|
readonly __doNotUseOrImplementIt: games.jass.logic.redux.actions.mechanic.MechanicAction["__doNotUseOrImplementIt"] & games.jass.logic.redux.actions.mechanic.NavigationMechanicAction["__doNotUseOrImplementIt"] & com.logic.redux.store.definitions.Action["__doNotUseOrImplementIt"] & com.logic.redux.actions.ReleaseBufferTriggerAction["__doNotUseOrImplementIt"] & com.logic.data.models.player.PlayerIdContract["__doNotUseOrImplementIt"] & com.logic.redux.actions.validation.NotValidateIfGameFinishing["__doNotUseOrImplementIt"] & com.logic.redux.actions.validation.NotValidateIfGameFinished["__doNotUseOrImplementIt"];
|
|
1950
2638
|
}
|
|
2639
|
+
/** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
|
|
2640
|
+
namespace SceneMechanicAction.$metadata$ {
|
|
2641
|
+
const constructor: abstract new () => SceneMechanicAction;
|
|
2642
|
+
}
|
|
1951
2643
|
interface TerminatedAction extends com.logic.redux.store.definitions.Action {
|
|
1952
2644
|
readonly reason: com.logic.data.models.TerminationGameReason;
|
|
1953
2645
|
readonly isGameFinished: boolean;
|
|
@@ -1956,7 +2648,7 @@ export declare namespace games.jass.logic.redux.actions.mechanic {
|
|
|
1956
2648
|
readonly "games.jass.logic.redux.actions.mechanic.TerminatedAction": unique symbol;
|
|
1957
2649
|
} & com.logic.redux.store.definitions.Action["__doNotUseOrImplementIt"];
|
|
1958
2650
|
}
|
|
1959
|
-
class PlayerConnectionChangedMechanicAction extends games.jass.logic.redux.actions.mechanic.MechanicAction implements com.logic.redux.actions.validation.NotValidateIfGameFinishing, com.logic.redux.actions.validation.NotValidateIfGameFinished {
|
|
2651
|
+
class PlayerConnectionChangedMechanicAction extends games.jass.logic.redux.actions.mechanic.MechanicAction.$metadata$.constructor implements com.logic.redux.actions.validation.NotValidateIfGameFinishing, com.logic.redux.actions.validation.NotValidateIfGameFinished {
|
|
1960
2652
|
constructor(playerId: string, state: com.logic.data.models.player.PlayerConnectionState, causeState?: Nullable<com.logic.data.models.player.PlayerConnectionState>, isNoneActivePlayers?: boolean, reconnectUntilTime?: Nullable<string>, aid?: Nullable<string>);
|
|
1961
2653
|
get playerId(): string;
|
|
1962
2654
|
get state(): com.logic.data.models.player.PlayerConnectionState;
|
|
@@ -1975,6 +2667,10 @@ export declare namespace games.jass.logic.redux.actions.mechanic {
|
|
|
1975
2667
|
notValidateWhenFinished(): boolean;
|
|
1976
2668
|
readonly __doNotUseOrImplementIt: games.jass.logic.redux.actions.mechanic.MechanicAction["__doNotUseOrImplementIt"] & com.logic.redux.actions.validation.NotValidateIfGameFinishing["__doNotUseOrImplementIt"] & com.logic.redux.actions.validation.NotValidateIfGameFinished["__doNotUseOrImplementIt"];
|
|
1977
2669
|
}
|
|
2670
|
+
/** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
|
|
2671
|
+
namespace PlayerConnectionChangedMechanicAction.$metadata$ {
|
|
2672
|
+
const constructor: abstract new () => PlayerConnectionChangedMechanicAction;
|
|
2673
|
+
}
|
|
1978
2674
|
}
|
|
1979
2675
|
export declare interface GameHelper {
|
|
1980
2676
|
filterLivePlayers(store: com.logic.redux.store.definitions.Store<any/* games.jass.logic.redux.AppState */>, playerIds: Array<string>): Array<string>;
|
|
@@ -2046,6 +2742,10 @@ export declare namespace di {
|
|
|
2046
2742
|
get gameHelper(): GameHelper;
|
|
2047
2743
|
get gameResources(): GameResources;
|
|
2048
2744
|
}
|
|
2745
|
+
/** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
|
|
2746
|
+
namespace EngineHelpersFactory.$metadata$ {
|
|
2747
|
+
const constructor: abstract new () => EngineHelpersFactory;
|
|
2748
|
+
}
|
|
2049
2749
|
}
|
|
2050
2750
|
export declare namespace games.jass.logic.server.data.models.config {
|
|
2051
2751
|
class ServerConfig {
|
|
@@ -2056,9 +2756,22 @@ export declare namespace games.jass.logic.server.data.models.config {
|
|
|
2056
2756
|
toString(): string;
|
|
2057
2757
|
hashCode(): number;
|
|
2058
2758
|
equals(other: Nullable<any>): boolean;
|
|
2059
|
-
|
|
2060
|
-
|
|
2061
|
-
|
|
2759
|
+
}
|
|
2760
|
+
/** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
|
|
2761
|
+
namespace ServerConfig.$metadata$ {
|
|
2762
|
+
const constructor: abstract new () => ServerConfig;
|
|
2763
|
+
}
|
|
2764
|
+
namespace ServerConfig {
|
|
2765
|
+
abstract class Companion extends KtSingleton<Companion.$metadata$.constructor>() {
|
|
2766
|
+
private constructor();
|
|
2767
|
+
}
|
|
2768
|
+
/** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
|
|
2769
|
+
namespace Companion.$metadata$ {
|
|
2770
|
+
abstract class constructor {
|
|
2771
|
+
initial(fromRound: Nullable<number>): games.jass.logic.server.data.models.config.ServerConfig;
|
|
2772
|
+
private constructor();
|
|
2773
|
+
}
|
|
2774
|
+
}
|
|
2062
2775
|
}
|
|
2063
2776
|
}
|
|
2064
2777
|
export declare namespace games.jass.logic.server.data.models.serializable {
|
|
@@ -2067,8 +2780,15 @@ export declare namespace games.jass.logic.server.data.models.serializable {
|
|
|
2067
2780
|
readonly "games.jass.logic.server.data.models.serializable.ServerStateUpdateDto": unique symbol;
|
|
2068
2781
|
};
|
|
2069
2782
|
}
|
|
2070
|
-
|
|
2071
|
-
|
|
2783
|
+
abstract class ServerStateUpdateDto extends KtSingleton<ServerStateUpdateDto.$metadata$.constructor>() {
|
|
2784
|
+
private constructor();
|
|
2785
|
+
}
|
|
2786
|
+
/** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
|
|
2787
|
+
namespace ServerStateUpdateDto.$metadata$ {
|
|
2788
|
+
abstract class constructor /* implements kotlinx.serialization.internal.SerializerFactory */ {
|
|
2789
|
+
private constructor();
|
|
2790
|
+
}
|
|
2791
|
+
}
|
|
2072
2792
|
class TableStateUpdateDto implements games.jass.logic.server.data.models.serializable.ServerStateUpdateDto {
|
|
2073
2793
|
constructor(table: string);
|
|
2074
2794
|
get table(): string;
|
|
@@ -2077,8 +2797,21 @@ export declare namespace games.jass.logic.server.data.models.serializable {
|
|
|
2077
2797
|
hashCode(): number;
|
|
2078
2798
|
equals(other: Nullable<any>): boolean;
|
|
2079
2799
|
readonly __doNotUseOrImplementIt: games.jass.logic.server.data.models.serializable.ServerStateUpdateDto["__doNotUseOrImplementIt"];
|
|
2080
|
-
|
|
2081
|
-
|
|
2800
|
+
}
|
|
2801
|
+
/** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
|
|
2802
|
+
namespace TableStateUpdateDto.$metadata$ {
|
|
2803
|
+
const constructor: abstract new () => TableStateUpdateDto;
|
|
2804
|
+
}
|
|
2805
|
+
namespace TableStateUpdateDto {
|
|
2806
|
+
abstract class Companion extends KtSingleton<Companion.$metadata$.constructor>() {
|
|
2807
|
+
private constructor();
|
|
2808
|
+
}
|
|
2809
|
+
/** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
|
|
2810
|
+
namespace Companion.$metadata$ {
|
|
2811
|
+
abstract class constructor {
|
|
2812
|
+
private constructor();
|
|
2813
|
+
}
|
|
2814
|
+
}
|
|
2082
2815
|
}
|
|
2083
2816
|
class ActionsStateUpdateDto implements games.jass.logic.server.data.models.serializable.ServerStateUpdateDto {
|
|
2084
2817
|
constructor(actions: string);
|
|
@@ -2088,8 +2821,21 @@ export declare namespace games.jass.logic.server.data.models.serializable {
|
|
|
2088
2821
|
hashCode(): number;
|
|
2089
2822
|
equals(other: Nullable<any>): boolean;
|
|
2090
2823
|
readonly __doNotUseOrImplementIt: games.jass.logic.server.data.models.serializable.ServerStateUpdateDto["__doNotUseOrImplementIt"];
|
|
2091
|
-
|
|
2092
|
-
|
|
2824
|
+
}
|
|
2825
|
+
/** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
|
|
2826
|
+
namespace ActionsStateUpdateDto.$metadata$ {
|
|
2827
|
+
const constructor: abstract new () => ActionsStateUpdateDto;
|
|
2828
|
+
}
|
|
2829
|
+
namespace ActionsStateUpdateDto {
|
|
2830
|
+
abstract class Companion extends KtSingleton<Companion.$metadata$.constructor>() {
|
|
2831
|
+
private constructor();
|
|
2832
|
+
}
|
|
2833
|
+
/** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
|
|
2834
|
+
namespace Companion.$metadata$ {
|
|
2835
|
+
abstract class constructor {
|
|
2836
|
+
private constructor();
|
|
2837
|
+
}
|
|
2838
|
+
}
|
|
2093
2839
|
}
|
|
2094
2840
|
}
|
|
2095
2841
|
export declare namespace games.jass.logic.server.data.models.state {
|
|
@@ -2107,6 +2853,10 @@ export declare namespace games.jass.logic.server.data.models.state {
|
|
|
2107
2853
|
equals(other: Nullable<any>): boolean;
|
|
2108
2854
|
readonly __doNotUseOrImplementIt: games.jass.logic.server.data.models.state.ServerStateUpdate["__doNotUseOrImplementIt"];
|
|
2109
2855
|
}
|
|
2856
|
+
/** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
|
|
2857
|
+
namespace TableStateUpdate.$metadata$ {
|
|
2858
|
+
const constructor: abstract new () => TableStateUpdate;
|
|
2859
|
+
}
|
|
2110
2860
|
class ActionsStateUpdate implements games.jass.logic.server.data.models.state.ServerStateUpdate {
|
|
2111
2861
|
constructor(actions: kotlin.collections.KtList<games.jass.logic.redux.actions.client.from.FromClientAction>);
|
|
2112
2862
|
get actions(): kotlin.collections.KtList<games.jass.logic.redux.actions.client.from.FromClientAction>;
|
|
@@ -2116,6 +2866,10 @@ export declare namespace games.jass.logic.server.data.models.state {
|
|
|
2116
2866
|
equals(other: Nullable<any>): boolean;
|
|
2117
2867
|
readonly __doNotUseOrImplementIt: games.jass.logic.server.data.models.state.ServerStateUpdate["__doNotUseOrImplementIt"];
|
|
2118
2868
|
}
|
|
2869
|
+
/** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
|
|
2870
|
+
namespace ActionsStateUpdate.$metadata$ {
|
|
2871
|
+
const constructor: abstract new () => ActionsStateUpdate;
|
|
2872
|
+
}
|
|
2119
2873
|
}
|
|
2120
2874
|
export declare namespace games.jass.logic.server.domain {
|
|
2121
2875
|
interface ServerGameEngineContract extends games.jass.logic.GameStoreContract {
|
|
@@ -2150,9 +2904,22 @@ export declare namespace games.jass.logic.server.redux.state {
|
|
|
2150
2904
|
toString(): string;
|
|
2151
2905
|
hashCode(): number;
|
|
2152
2906
|
equals(other: Nullable<any>): boolean;
|
|
2153
|
-
|
|
2154
|
-
|
|
2155
|
-
|
|
2907
|
+
}
|
|
2908
|
+
/** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
|
|
2909
|
+
namespace ServerStatePayload.$metadata$ {
|
|
2910
|
+
const constructor: abstract new () => ServerStatePayload;
|
|
2911
|
+
}
|
|
2912
|
+
namespace ServerStatePayload {
|
|
2913
|
+
abstract class Companion extends KtSingleton<Companion.$metadata$.constructor>() {
|
|
2914
|
+
private constructor();
|
|
2915
|
+
}
|
|
2916
|
+
/** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
|
|
2917
|
+
namespace Companion.$metadata$ {
|
|
2918
|
+
abstract class constructor {
|
|
2919
|
+
initial(config?: games.jass.logic.server.data.models.config.ServerConfig): games.jass.logic.server.redux.state.ServerStatePayload;
|
|
2920
|
+
private constructor();
|
|
2921
|
+
}
|
|
2922
|
+
}
|
|
2156
2923
|
}
|
|
2157
2924
|
}
|
|
2158
2925
|
export declare interface GameEngineController {
|