raspberry_games_engine_helpers 1.8.341 → 1.8.345
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 +881 -887
- package/Kosi-Kodein-kodein-di.js.map +1 -1
- package/Kotlin-DateTime-library-kotlinx-datetime.js +4592 -3613
- package/Kotlin-DateTime-library-kotlinx-datetime.js.map +1 -1
- package/Logic_Debertz-core.js +1260 -1256
- package/Logic_Debertz-core.js.map +1 -1
- package/Logic_Debertz-engine.d.ts +859 -157
- package/Logic_Debertz-engine.js +11476 -11567
- package/Logic_Debertz-engine.js.map +1 -1
- package/kotlin-kotlin-stdlib.js +3343 -3040
- 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.map +1 -1
- 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 +45 -56
- package/kotlinx-io-kotlinx-io-core.js.map +1 -1
- package/kotlinx-serialization-kotlinx-serialization-core.js +2338 -2380
- package/kotlinx-serialization-kotlinx-serialization-core.js.map +1 -1
- package/kotlinx-serialization-kotlinx-serialization-json.js +1967 -1981
- package/kotlinx-serialization-kotlinx-serialization-json.js.map +1 -1
- package/ktor-ktor-client-content-negotiation.js.map +1 -1
- package/ktor-ktor-client-core.js.map +1 -1
- package/ktor-ktor-client-js.js.map +1 -1
- package/ktor-ktor-client-logging.js.map +1 -1
- package/ktor-ktor-events.js.map +1 -1
- package/ktor-ktor-http.js.map +1 -1
- package/ktor-ktor-io.js.map +1 -1
- package/ktor-ktor-serialization-kotlinx-json.js.map +1 -1
- package/ktor-ktor-serialization-kotlinx.js.map +1 -1
- package/ktor-ktor-serialization.js.map +1 -1
- package/ktor-ktor-utils.js.map +1 -1
- package/ktor-ktor-websocket-serialization.js.map +1 -1
- package/ktor-ktor-websockets.js.map +1 -1
- package/package.json +1 -2
- package/raspberry-cardgame-lib-core.js +56 -60
- package/raspberry-cardgame-lib-core.js.map +1 -1
- package/raspberry-cardgame-lib-logger.js +136 -107
- package/raspberry-cardgame-lib-logger.js.map +1 -1
- package/raspberry-cardgame-lib-random.js +79 -78
- package/raspberry-cardgame-lib-random.js.map +1 -1
- package/secure-random-secure-random.js.map +1 -1
- 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,10 +863,14 @@ 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 {
|
|
625
|
-
constructor(finishGameIfAllBots?: boolean, waitForPlayerToReconnect?: boolean, waitForPlayerToReconnectTimeOutMillis?: number, closeIfBotsAtFinish?: boolean, botReplacesPlayerAfterTimeout?: boolean, enabledCombinedEvents?: boolean, delayToAskBotMillis?: number,
|
|
873
|
+
constructor(finishGameIfAllBots?: boolean, waitForPlayerToReconnect?: boolean, waitForPlayerToReconnectTimeOutMillis?: number, closeIfBotsAtFinish?: boolean, botReplacesPlayerAfterTimeout?: boolean, enabledCombinedEvents?: boolean, delayToAskBotMillis?: number, combinedEventsIntervalMillis?: number, serverStateUpdateIntervalMillis?: number);
|
|
626
874
|
get finishGameIfAllBots(): boolean;
|
|
627
875
|
get waitForPlayerToReconnect(): boolean;
|
|
628
876
|
get waitForPlayerToReconnectTimeOutMillis(): number;
|
|
@@ -630,15 +878,30 @@ export declare namespace games.jass.logic.data.models.config {
|
|
|
630
878
|
get botReplacesPlayerAfterTimeout(): boolean;
|
|
631
879
|
get enabledCombinedEvents(): boolean;
|
|
632
880
|
get delayToAskBotMillis(): number;
|
|
633
|
-
get
|
|
634
|
-
|
|
881
|
+
get combinedEventsIntervalMillis(): number;
|
|
882
|
+
get serverStateUpdateIntervalMillis(): number;
|
|
883
|
+
copy(finishGameIfAllBots?: boolean, waitForPlayerToReconnect?: boolean, waitForPlayerToReconnectTimeOutMillis?: number, closeIfBotsAtFinish?: boolean, botReplacesPlayerAfterTimeout?: boolean, enabledCombinedEvents?: boolean, delayToAskBotMillis?: number, combinedEventsIntervalMillis?: number, serverStateUpdateIntervalMillis?: number): games.jass.logic.data.models.config.ServerReduxConfig;
|
|
635
884
|
toString(): string;
|
|
636
885
|
hashCode(): number;
|
|
637
886
|
equals(other: Nullable<any>): boolean;
|
|
638
|
-
|
|
639
|
-
|
|
640
|
-
|
|
641
|
-
|
|
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
|
+
}
|
|
642
905
|
}
|
|
643
906
|
}
|
|
644
907
|
export declare namespace games.jass.logic.data.models.dealer {
|
|
@@ -653,6 +916,10 @@ export declare namespace games.jass.logic.data.models.dealer {
|
|
|
653
916
|
hashCode(): number;
|
|
654
917
|
equals(other: Nullable<any>): boolean;
|
|
655
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
|
+
}
|
|
656
923
|
}
|
|
657
924
|
export declare namespace games.jass.logic.data.models.leagues {
|
|
658
925
|
abstract class League {
|
|
@@ -683,6 +950,10 @@ export declare namespace games.jass.logic.data.models.leagues {
|
|
|
683
950
|
static values(): Array<games.jass.logic.data.models.leagues.League>;
|
|
684
951
|
static valueOf(value: string): games.jass.logic.data.models.leagues.League;
|
|
685
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
|
+
}
|
|
686
957
|
}
|
|
687
958
|
export declare namespace games.jass.logic.data.models.leagues {
|
|
688
959
|
class LeaguesConfig {
|
|
@@ -698,9 +969,22 @@ export declare namespace games.jass.logic.data.models.leagues {
|
|
|
698
969
|
hashCode(): number;
|
|
699
970
|
copy(initialUserRating?: number, minUserRating?: number, maxUserRating?: number, leagues?: Array<games.jass.logic.data.models.leagues.LeagueInfo>): games.jass.logic.data.models.leagues.LeaguesConfig;
|
|
700
971
|
toString(): string;
|
|
701
|
-
|
|
702
|
-
|
|
703
|
-
|
|
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
|
+
}
|
|
704
988
|
}
|
|
705
989
|
class LeagueInfo {
|
|
706
990
|
constructor(league: games.jass.logic.data.models.leagues.League, minRating: number, maxRating: number, enabled: boolean);
|
|
@@ -713,6 +997,10 @@ export declare namespace games.jass.logic.data.models.leagues {
|
|
|
713
997
|
hashCode(): number;
|
|
714
998
|
equals(other: Nullable<any>): boolean;
|
|
715
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
|
+
}
|
|
716
1004
|
}
|
|
717
1005
|
export declare namespace games.jass.logic.data.models.messages.combinatios {
|
|
718
1006
|
abstract class CombinationReason /* implements kotlin.Comparable<games.jass.logic.data.models.messages.combinatios.CombinationReason> */ {
|
|
@@ -750,6 +1038,10 @@ export declare namespace games.jass.logic.data.models.messages.combinatios {
|
|
|
750
1038
|
static values(): Array<games.jass.logic.data.models.messages.combinatios.CombinationReason>;
|
|
751
1039
|
static valueOf(value: string): games.jass.logic.data.models.messages.combinatios.CombinationReason;
|
|
752
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
|
+
}
|
|
753
1045
|
}
|
|
754
1046
|
export declare namespace games.jass.logic.data.models.player {
|
|
755
1047
|
class JassPlayerLite {
|
|
@@ -762,6 +1054,10 @@ export declare namespace games.jass.logic.data.models.player {
|
|
|
762
1054
|
hashCode(): number;
|
|
763
1055
|
equals(other: Nullable<any>): boolean;
|
|
764
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
|
+
}
|
|
765
1061
|
}
|
|
766
1062
|
export declare namespace games.jass.logic.data.models.player {
|
|
767
1063
|
class UserProfilePayload {
|
|
@@ -773,6 +1069,10 @@ export declare namespace games.jass.logic.data.models.player {
|
|
|
773
1069
|
hashCode(): number;
|
|
774
1070
|
equals(other: Nullable<any>): boolean;
|
|
775
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
|
+
}
|
|
776
1076
|
}
|
|
777
1077
|
export declare namespace games.jass.logic.data.models.player.achievements {
|
|
778
1078
|
class Achievements {
|
|
@@ -785,6 +1085,10 @@ export declare namespace games.jass.logic.data.models.player.achievements {
|
|
|
785
1085
|
hashCode(): number;
|
|
786
1086
|
equals(other: Nullable<any>): boolean;
|
|
787
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
|
+
}
|
|
788
1092
|
}
|
|
789
1093
|
export declare namespace games.jass.logic.data.models.player.achievements {
|
|
790
1094
|
class PlayerAchievements implements com.logic.data.models.player.PlayerIdContract {
|
|
@@ -798,6 +1102,10 @@ export declare namespace games.jass.logic.data.models.player.achievements {
|
|
|
798
1102
|
equals(other: Nullable<any>): boolean;
|
|
799
1103
|
readonly __doNotUseOrImplementIt: com.logic.data.models.player.PlayerIdContract["__doNotUseOrImplementIt"];
|
|
800
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
|
+
}
|
|
801
1109
|
}
|
|
802
1110
|
export declare namespace games.jass.logic.data.models.player.analytics {
|
|
803
1111
|
class CombinationsAnalytics {
|
|
@@ -808,6 +1116,10 @@ export declare namespace games.jass.logic.data.models.player.analytics {
|
|
|
808
1116
|
copy(combinations?: Array<games.jass.logic.data.models.player.analytics.CombinationAnalytics>): games.jass.logic.data.models.player.analytics.CombinationsAnalytics;
|
|
809
1117
|
toString(): string;
|
|
810
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
|
+
}
|
|
811
1123
|
class CombinationAnalytics {
|
|
812
1124
|
constructor(type: games.jass.logic.data.models.table.combinations.CombinationType, count: number, acceptedCounts: number);
|
|
813
1125
|
get type(): games.jass.logic.data.models.table.combinations.CombinationType;
|
|
@@ -818,6 +1130,10 @@ export declare namespace games.jass.logic.data.models.player.analytics {
|
|
|
818
1130
|
hashCode(): number;
|
|
819
1131
|
equals(other: Nullable<any>): boolean;
|
|
820
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
|
+
}
|
|
821
1137
|
}
|
|
822
1138
|
export declare namespace games.jass.logic.data.models.player.analytics {
|
|
823
1139
|
class PlayerAnalytics implements com.logic.data.models.player.PlayerIdContract {
|
|
@@ -835,6 +1151,10 @@ export declare namespace games.jass.logic.data.models.player.analytics {
|
|
|
835
1151
|
equals(other: Nullable<any>): boolean;
|
|
836
1152
|
readonly __doNotUseOrImplementIt: com.logic.data.models.player.PlayerIdContract["__doNotUseOrImplementIt"];
|
|
837
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
|
+
}
|
|
838
1158
|
}
|
|
839
1159
|
export declare namespace games.jass.logic.data.models.player.analytics {
|
|
840
1160
|
class PlayerHistoryAnalytics implements com.logic.data.models.player.PlayerIdContract/*, games.jass.logic.data.models.table.history.PlayerHistoryItem */ {
|
|
@@ -850,6 +1170,10 @@ export declare namespace games.jass.logic.data.models.player.analytics {
|
|
|
850
1170
|
equals(other: Nullable<any>): boolean;
|
|
851
1171
|
readonly __doNotUseOrImplementIt: com.logic.data.models.player.PlayerIdContract["__doNotUseOrImplementIt"];
|
|
852
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
|
+
}
|
|
853
1177
|
}
|
|
854
1178
|
export declare namespace games.jass.logic.data.models.player.bids {
|
|
855
1179
|
abstract class BidType {
|
|
@@ -878,10 +1202,23 @@ export declare namespace games.jass.logic.data.models.player.bids {
|
|
|
878
1202
|
get ordinal(): 0 | 1 | 2 | 3 | 4;
|
|
879
1203
|
static values(): Array<games.jass.logic.data.models.player.bids.BidType>;
|
|
880
1204
|
static valueOf(value: string): games.jass.logic.data.models.player.bids.BidType;
|
|
881
|
-
|
|
882
|
-
|
|
883
|
-
|
|
884
|
-
|
|
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
|
+
}
|
|
885
1222
|
}
|
|
886
1223
|
}
|
|
887
1224
|
export declare namespace games.jass.logic.data.models.player.hand {
|
|
@@ -897,6 +1234,10 @@ export declare namespace games.jass.logic.data.models.player.hand {
|
|
|
897
1234
|
hashCode(): number;
|
|
898
1235
|
equals(other: Nullable<any>): boolean;
|
|
899
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
|
+
}
|
|
900
1241
|
}
|
|
901
1242
|
export declare namespace games.jass.logic.data.models.player.points {
|
|
902
1243
|
abstract class PointsDistributeMode {
|
|
@@ -918,6 +1259,10 @@ export declare namespace games.jass.logic.data.models.player.points {
|
|
|
918
1259
|
static values(): Array<games.jass.logic.data.models.player.points.PointsDistributeMode>;
|
|
919
1260
|
static valueOf(value: string): games.jass.logic.data.models.player.points.PointsDistributeMode;
|
|
920
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
|
+
}
|
|
921
1266
|
}
|
|
922
1267
|
export declare namespace games.jass.logic.data.models.player.state {
|
|
923
1268
|
abstract class RoundContractState {
|
|
@@ -941,8 +1286,21 @@ export declare namespace games.jass.logic.data.models.player.state {
|
|
|
941
1286
|
get isControversial(): boolean;
|
|
942
1287
|
static values(): Array<games.jass.logic.data.models.player.state.RoundContractState>;
|
|
943
1288
|
static valueOf(value: string): games.jass.logic.data.models.player.state.RoundContractState;
|
|
944
|
-
|
|
945
|
-
|
|
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
|
+
}
|
|
946
1304
|
}
|
|
947
1305
|
}
|
|
948
1306
|
export declare namespace games.jass.logic.data.models.player.state {
|
|
@@ -968,9 +1326,22 @@ export declare namespace games.jass.logic.data.models.player.state {
|
|
|
968
1326
|
get ordinal(): 0 | 1 | 2 | 3;
|
|
969
1327
|
static values(): Array<games.jass.logic.data.models.player.state.RoundContractType>;
|
|
970
1328
|
static valueOf(value: string): games.jass.logic.data.models.player.state.RoundContractType;
|
|
971
|
-
|
|
972
|
-
|
|
973
|
-
|
|
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
|
+
}
|
|
974
1345
|
}
|
|
975
1346
|
}
|
|
976
1347
|
export declare namespace games.jass.logic.data.models.rules {
|
|
@@ -993,6 +1364,10 @@ export declare namespace games.jass.logic.data.models.rules {
|
|
|
993
1364
|
static values(): Array<games.jass.logic.data.models.rules.PutHigherTrumpCardMode>;
|
|
994
1365
|
static valueOf(value: string): games.jass.logic.data.models.rules.PutHigherTrumpCardMode;
|
|
995
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
|
+
}
|
|
996
1371
|
}
|
|
997
1372
|
export declare namespace games.jass.logic.data.models.rules {
|
|
998
1373
|
abstract class PutHigherTrumpCardPartnerMode {
|
|
@@ -1014,6 +1389,10 @@ export declare namespace games.jass.logic.data.models.rules {
|
|
|
1014
1389
|
static values(): Array<games.jass.logic.data.models.rules.PutHigherTrumpCardPartnerMode>;
|
|
1015
1390
|
static valueOf(value: string): games.jass.logic.data.models.rules.PutHigherTrumpCardPartnerMode;
|
|
1016
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
|
+
}
|
|
1017
1396
|
}
|
|
1018
1397
|
export declare namespace games.jass.logic.data.models.rules {
|
|
1019
1398
|
class Rules {
|
|
@@ -1049,17 +1428,30 @@ export declare namespace games.jass.logic.data.models.rules {
|
|
|
1049
1428
|
equals(other: Nullable<any>): boolean;
|
|
1050
1429
|
hashCode(): number;
|
|
1051
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;
|
|
1052
|
-
|
|
1053
|
-
|
|
1054
|
-
|
|
1055
|
-
|
|
1056
|
-
|
|
1057
|
-
|
|
1058
|
-
|
|
1059
|
-
|
|
1060
|
-
|
|
1061
|
-
|
|
1062
|
-
|
|
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
|
+
}
|
|
1063
1455
|
}
|
|
1064
1456
|
}
|
|
1065
1457
|
export declare namespace games.jass.logic.data.models.rules {
|
|
@@ -1097,6 +1489,10 @@ export declare namespace games.jass.logic.data.models.rules {
|
|
|
1097
1489
|
static values(): Array<games.jass.logic.data.models.rules.RulesSetType>;
|
|
1098
1490
|
static valueOf(value: string): games.jass.logic.data.models.rules.RulesSetType;
|
|
1099
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
|
+
}
|
|
1100
1496
|
}
|
|
1101
1497
|
export declare namespace games.jass.logic.data.models.scenes {
|
|
1102
1498
|
interface ActData {
|
|
@@ -1116,10 +1512,10 @@ export declare namespace games.jass.logic.data.models.scenes {
|
|
|
1116
1512
|
}
|
|
1117
1513
|
export declare namespace games.jass.logic.data.models.table {
|
|
1118
1514
|
class JassTable {
|
|
1119
|
-
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);
|
|
1120
1516
|
get id(): string;
|
|
1121
1517
|
get version(): string;
|
|
1122
|
-
get createdAt(): any/*
|
|
1518
|
+
get createdAt(): any/* kotlin.time.Instant */;
|
|
1123
1519
|
get config(): games.jass.logic.data.models.table.config.Config;
|
|
1124
1520
|
get players(): kotlin.collections.KtList<com.logic.data.models.player.PlayerIdContract/* games.jass.logic.data.models.player.JassPlayer */>;
|
|
1125
1521
|
get spectators(): kotlin.collections.KtList<com.logic.data.models.player.PlayerIdContract/* games.jass.logic.data.models.player.Spectator */>;
|
|
@@ -1132,7 +1528,7 @@ export declare namespace games.jass.logic.data.models.table {
|
|
|
1132
1528
|
get gameHistory(): games.jass.logic.data.models.table.history.GameHistory;
|
|
1133
1529
|
get gameId(): string;
|
|
1134
1530
|
get gameDuration(): any/* kotlin.time.Duration */;
|
|
1135
|
-
get gameCreatedAt(): any/*
|
|
1531
|
+
get gameCreatedAt(): any/* kotlin.time.Instant */;
|
|
1136
1532
|
get playersConnections(): kotlin.collections.KtList<any/* kotlin.Pair<string, com.logic.data.models.player.PlayerConnectionState> */>;
|
|
1137
1533
|
get users(): Array<com.logic.data.models.player.GameUserInfo>;
|
|
1138
1534
|
get isCardDeckExist(): boolean;
|
|
@@ -1140,13 +1536,26 @@ export declare namespace games.jass.logic.data.models.table {
|
|
|
1140
1536
|
get currentTrump(): Nullable<any>/* Nullable<io.raspberryapps.card_game.core.data.models.cards.Suit> */;
|
|
1141
1537
|
get isGameFinished(): boolean;
|
|
1142
1538
|
toString(): string;
|
|
1143
|
-
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;
|
|
1144
1540
|
hashCode(): number;
|
|
1145
1541
|
equals(other: Nullable<any>): boolean;
|
|
1146
|
-
|
|
1147
|
-
|
|
1148
|
-
|
|
1149
|
-
|
|
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
|
+
}
|
|
1150
1559
|
}
|
|
1151
1560
|
}
|
|
1152
1561
|
export declare namespace games.jass.logic.data.models.table {
|
|
@@ -1161,6 +1570,10 @@ export declare namespace games.jass.logic.data.models.table {
|
|
|
1161
1570
|
hashCode(): number;
|
|
1162
1571
|
equals(other: Nullable<any>): boolean;
|
|
1163
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
|
+
}
|
|
1164
1577
|
}
|
|
1165
1578
|
export declare namespace games.jass.logic.data.models.table {
|
|
1166
1579
|
class TableLoggerPayload implements games.raspberry.logger.LoggerPayload {
|
|
@@ -1174,6 +1587,10 @@ export declare namespace games.jass.logic.data.models.table {
|
|
|
1174
1587
|
copy(id?: string, gameId?: string, players?: Array<games.jass.logic.data.models.table.PlayerLoggerPayload>): games.jass.logic.data.models.table.TableLoggerPayload;
|
|
1175
1588
|
readonly __doNotUseOrImplementIt: games.raspberry.logger.LoggerPayload["__doNotUseOrImplementIt"];
|
|
1176
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
|
+
}
|
|
1177
1594
|
class PlayerLoggerPayload implements games.raspberry.logger.LoggerPayload {
|
|
1178
1595
|
constructor(playerId: string, connectionState: Nullable<com.logic.data.models.player.PlayerConnectionState>);
|
|
1179
1596
|
get playerId(): string;
|
|
@@ -1184,6 +1601,10 @@ export declare namespace games.jass.logic.data.models.table {
|
|
|
1184
1601
|
equals(other: Nullable<any>): boolean;
|
|
1185
1602
|
readonly __doNotUseOrImplementIt: games.raspberry.logger.LoggerPayload["__doNotUseOrImplementIt"];
|
|
1186
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
|
+
}
|
|
1187
1608
|
}
|
|
1188
1609
|
export declare namespace games.jass.logic.data.models.table {
|
|
1189
1610
|
class TableStateWithActions {
|
|
@@ -1195,6 +1616,10 @@ export declare namespace games.jass.logic.data.models.table {
|
|
|
1195
1616
|
hashCode(): number;
|
|
1196
1617
|
equals(other: Nullable<any>): boolean;
|
|
1197
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
|
+
}
|
|
1198
1623
|
}
|
|
1199
1624
|
export declare namespace games.jass.logic.data.models.table.combinations {
|
|
1200
1625
|
class Combination /* implements games.jass.logic.data.models.table.combinations.CombinationContract */ {
|
|
@@ -1204,6 +1629,10 @@ export declare namespace games.jass.logic.data.models.table.combinations {
|
|
|
1204
1629
|
hashCode(): number;
|
|
1205
1630
|
equals(other: Nullable<any>): boolean;
|
|
1206
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
|
+
}
|
|
1207
1636
|
}
|
|
1208
1637
|
export declare namespace games.jass.logic.data.models.table.combinations {
|
|
1209
1638
|
abstract class CombinationState {
|
|
@@ -1236,8 +1665,21 @@ export declare namespace games.jass.logic.data.models.table.combinations {
|
|
|
1236
1665
|
get ordinal(): 0 | 1 | 2 | 3 | 4 | 5;
|
|
1237
1666
|
static values(): Array<games.jass.logic.data.models.table.combinations.CombinationState>;
|
|
1238
1667
|
static valueOf(value: string): games.jass.logic.data.models.table.combinations.CombinationState;
|
|
1239
|
-
|
|
1240
|
-
|
|
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
|
+
}
|
|
1241
1683
|
}
|
|
1242
1684
|
}
|
|
1243
1685
|
export declare namespace games.jass.logic.data.models.table.combinations {
|
|
@@ -1319,13 +1761,26 @@ export declare namespace games.jass.logic.data.models.table.combinations {
|
|
|
1319
1761
|
get ordinal(): 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17;
|
|
1320
1762
|
static values(): Array<games.jass.logic.data.models.table.combinations.CombinationType>;
|
|
1321
1763
|
static valueOf(value: string): games.jass.logic.data.models.table.combinations.CombinationType;
|
|
1322
|
-
|
|
1323
|
-
|
|
1324
|
-
|
|
1325
|
-
|
|
1326
|
-
|
|
1327
|
-
|
|
1328
|
-
|
|
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
|
+
}
|
|
1329
1784
|
}
|
|
1330
1785
|
}
|
|
1331
1786
|
export declare namespace games.jass.logic.data.models.table.combinations {
|
|
@@ -1339,6 +1794,10 @@ export declare namespace games.jass.logic.data.models.table.combinations {
|
|
|
1339
1794
|
toString(): string;
|
|
1340
1795
|
readonly __doNotUseOrImplementIt: com.logic.data.models.player.PlayerIdContract["__doNotUseOrImplementIt"];
|
|
1341
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
|
+
}
|
|
1342
1801
|
}
|
|
1343
1802
|
export declare namespace games.jass.logic.data.models.table.config {
|
|
1344
1803
|
abstract class BotIntelligenceLevel {
|
|
@@ -1367,8 +1826,21 @@ export declare namespace games.jass.logic.data.models.table.config {
|
|
|
1367
1826
|
get ordinal(): 0 | 1 | 2 | 3 | 4;
|
|
1368
1827
|
static values(): Array<games.jass.logic.data.models.table.config.BotIntelligenceLevel>;
|
|
1369
1828
|
static valueOf(value: string): games.jass.logic.data.models.table.config.BotIntelligenceLevel;
|
|
1370
|
-
|
|
1371
|
-
|
|
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
|
+
}
|
|
1372
1844
|
}
|
|
1373
1845
|
function getLevel(_this_: games.jass.logic.data.models.table.config.BotIntelligenceLevel): number;
|
|
1374
1846
|
}
|
|
@@ -1392,6 +1864,10 @@ export declare namespace games.jass.logic.data.models.table.config {
|
|
|
1392
1864
|
hashCode(): number;
|
|
1393
1865
|
equals(other: Nullable<any>): boolean;
|
|
1394
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
|
+
}
|
|
1395
1871
|
}
|
|
1396
1872
|
export declare namespace games.jass.logic.data.models.table.config {
|
|
1397
1873
|
class ConfigLite {
|
|
@@ -1411,6 +1887,10 @@ export declare namespace games.jass.logic.data.models.table.config {
|
|
|
1411
1887
|
hashCode(): number;
|
|
1412
1888
|
equals(other: Nullable<any>): boolean;
|
|
1413
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
|
+
}
|
|
1414
1894
|
}
|
|
1415
1895
|
export declare namespace games.jass.logic.data.models.table.config {
|
|
1416
1896
|
class Options {
|
|
@@ -1425,9 +1905,22 @@ export declare namespace games.jass.logic.data.models.table.config {
|
|
|
1425
1905
|
toString(): string;
|
|
1426
1906
|
hashCode(): number;
|
|
1427
1907
|
equals(other: Nullable<any>): boolean;
|
|
1428
|
-
|
|
1429
|
-
|
|
1430
|
-
|
|
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
|
+
}
|
|
1431
1924
|
}
|
|
1432
1925
|
}
|
|
1433
1926
|
export declare namespace games.jass.logic.data.models.table.config {
|
|
@@ -1456,9 +1949,22 @@ export declare namespace games.jass.logic.data.models.table.config {
|
|
|
1456
1949
|
get count(): number;
|
|
1457
1950
|
static values(): Array<games.jass.logic.data.models.table.config.PlayersMode>;
|
|
1458
1951
|
static valueOf(value: string): games.jass.logic.data.models.table.config.PlayersMode;
|
|
1459
|
-
|
|
1460
|
-
|
|
1461
|
-
|
|
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
|
+
}
|
|
1462
1968
|
}
|
|
1463
1969
|
}
|
|
1464
1970
|
export declare namespace games.jass.logic.data.models.table.config {
|
|
@@ -1485,9 +1991,22 @@ export declare namespace games.jass.logic.data.models.table.config {
|
|
|
1485
1991
|
get value(): number;
|
|
1486
1992
|
static values(): Array<games.jass.logic.data.models.table.config.PointsMode>;
|
|
1487
1993
|
static valueOf(value: string): games.jass.logic.data.models.table.config.PointsMode;
|
|
1488
|
-
|
|
1489
|
-
|
|
1490
|
-
|
|
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
|
+
}
|
|
1491
2010
|
}
|
|
1492
2011
|
}
|
|
1493
2012
|
export declare namespace games.jass.logic.data.models.table.config {
|
|
@@ -1508,6 +2027,10 @@ export declare namespace games.jass.logic.data.models.table.config {
|
|
|
1508
2027
|
hashCode(): number;
|
|
1509
2028
|
equals(other: Nullable<any>): boolean;
|
|
1510
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
|
+
}
|
|
1511
2034
|
}
|
|
1512
2035
|
export declare namespace games.jass.logic.data.models.table.config {
|
|
1513
2036
|
abstract class RoomMode {
|
|
@@ -1536,6 +2059,10 @@ export declare namespace games.jass.logic.data.models.table.config {
|
|
|
1536
2059
|
static values(): Array<games.jass.logic.data.models.table.config.RoomMode>;
|
|
1537
2060
|
static valueOf(value: string): games.jass.logic.data.models.table.config.RoomMode;
|
|
1538
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
|
+
}
|
|
1539
2066
|
}
|
|
1540
2067
|
export declare namespace games.jass.logic.data.models.table.history {
|
|
1541
2068
|
class ClientGameHistory {
|
|
@@ -1547,12 +2074,16 @@ export declare namespace games.jass.logic.data.models.table.history {
|
|
|
1547
2074
|
hashCode(): number;
|
|
1548
2075
|
equals(other: Nullable<any>): boolean;
|
|
1549
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
|
+
}
|
|
1550
2081
|
}
|
|
1551
2082
|
export declare namespace games.jass.logic.data.models.table.history {
|
|
1552
2083
|
class GameHistory {
|
|
1553
|
-
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>);
|
|
1554
2085
|
get gameId(): string;
|
|
1555
|
-
get createdAt(): any/*
|
|
2086
|
+
get createdAt(): any/* kotlin.time.Instant */;
|
|
1556
2087
|
get rounds(): Array<games.jass.logic.data.models.table.history.RoundHistory>;
|
|
1557
2088
|
get gameWinners(): Nullable<Array<string>>;
|
|
1558
2089
|
get metadata(): Nullable<games.jass.logic.data.models.table.history.GameHistoryMetadata>;
|
|
@@ -1563,10 +2094,23 @@ export declare namespace games.jass.logic.data.models.table.history {
|
|
|
1563
2094
|
toString(): string;
|
|
1564
2095
|
equals(other: Nullable<any>): boolean;
|
|
1565
2096
|
hashCode(): number;
|
|
1566
|
-
copy(gameId?: string, createdAt?: any/*
|
|
1567
|
-
|
|
1568
|
-
|
|
1569
|
-
|
|
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
|
+
}
|
|
1570
2114
|
}
|
|
1571
2115
|
}
|
|
1572
2116
|
export declare namespace games.jass.logic.data.models.table.history {
|
|
@@ -1578,36 +2122,66 @@ export declare namespace games.jass.logic.data.models.table.history {
|
|
|
1578
2122
|
toString(): string;
|
|
1579
2123
|
hashCode(): number;
|
|
1580
2124
|
equals(other: Nullable<any>): boolean;
|
|
1581
|
-
|
|
1582
|
-
|
|
1583
|
-
|
|
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
|
+
}
|
|
1584
2141
|
}
|
|
1585
2142
|
}
|
|
1586
2143
|
export declare namespace games.jass.logic.data.models.table.history {
|
|
1587
2144
|
class RoundHistory {
|
|
1588
|
-
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 */);
|
|
1589
2146
|
get round(): number;
|
|
1590
2147
|
get items(): Array<games.jass.logic.data.models.table.history.RoundHistoryItem>;
|
|
1591
2148
|
get committed(): Nullable<Array<string>>;
|
|
1592
2149
|
get contractState(): Nullable<games.jass.logic.data.models.player.state.RoundContractState>;
|
|
1593
2150
|
get winners(): Nullable<Array<string>>;
|
|
1594
|
-
get createdAt(): any/*
|
|
2151
|
+
get createdAt(): any/* kotlin.time.Instant */;
|
|
1595
2152
|
isFailedRoundForPlayer(playerId: string): boolean;
|
|
1596
2153
|
get contractStateName(): Nullable<string>;
|
|
1597
2154
|
equals(other: Nullable<any>): boolean;
|
|
1598
2155
|
hashCode(): number;
|
|
1599
2156
|
toStringShort(): string;
|
|
1600
|
-
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;
|
|
1601
2158
|
toString(): string;
|
|
1602
|
-
|
|
1603
|
-
|
|
1604
|
-
|
|
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
|
+
}
|
|
1605
2175
|
}
|
|
1606
2176
|
}
|
|
1607
2177
|
export declare namespace games.jass.logic.data.models.table.history {
|
|
1608
2178
|
abstract class RoundHistoryItem {
|
|
1609
2179
|
protected constructor();
|
|
1610
|
-
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;
|
|
1611
2185
|
}
|
|
1612
2186
|
}
|
|
1613
2187
|
export declare namespace games.jass.logic.data.models.table.round {
|
|
@@ -1623,9 +2197,22 @@ export declare namespace games.jass.logic.data.models.table.round {
|
|
|
1623
2197
|
toString(): string;
|
|
1624
2198
|
hashCode(): number;
|
|
1625
2199
|
equals(other: Nullable<any>): boolean;
|
|
1626
|
-
|
|
1627
|
-
|
|
1628
|
-
|
|
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
|
+
}
|
|
1629
2216
|
}
|
|
1630
2217
|
}
|
|
1631
2218
|
export declare namespace games.jass.logic.domain.interactors.dealer {
|
|
@@ -1674,9 +2261,22 @@ export declare namespace games.jass.logic.domain.interactors.dealer {
|
|
|
1674
2261
|
isRandomOrg(): boolean;
|
|
1675
2262
|
static values(): Array<games.jass.logic.domain.interactors.dealer.DealerStrategy>;
|
|
1676
2263
|
static valueOf(value: string): games.jass.logic.domain.interactors.dealer.DealerStrategy;
|
|
1677
|
-
|
|
1678
|
-
|
|
1679
|
-
|
|
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
|
+
}
|
|
1680
2280
|
}
|
|
1681
2281
|
}
|
|
1682
2282
|
export declare namespace games.jass.logic.redux.actions {
|
|
@@ -1692,6 +2292,10 @@ export declare namespace games.jass.logic.redux.actions {
|
|
|
1692
2292
|
notValidateWhenFinished(): boolean;
|
|
1693
2293
|
readonly __doNotUseOrImplementIt: com.logic.redux.store.definitions.Action["__doNotUseOrImplementIt"] & com.logic.redux.actions.validation.NotValidateIfGameFinishing["__doNotUseOrImplementIt"] & com.logic.redux.actions.validation.NotValidateIfGameFinished["__doNotUseOrImplementIt"];
|
|
1694
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
|
+
}
|
|
1695
2299
|
}
|
|
1696
2300
|
export declare namespace games.jass.logic.redux.actions.client.from {
|
|
1697
2301
|
abstract class FromClientAction implements com.logic.redux.store.definitions.Action {
|
|
@@ -1701,6 +2305,10 @@ export declare namespace games.jass.logic.redux.actions.client.from {
|
|
|
1701
2305
|
get actionTag(): string;
|
|
1702
2306
|
readonly __doNotUseOrImplementIt: com.logic.redux.store.definitions.Action["__doNotUseOrImplementIt"];
|
|
1703
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
|
+
}
|
|
1704
2312
|
}
|
|
1705
2313
|
export declare namespace games.jass.logic.redux.actions.client.to {
|
|
1706
2314
|
class ActionDeliveryPayload {
|
|
@@ -1717,10 +2325,23 @@ export declare namespace games.jass.logic.redux.actions.client.to {
|
|
|
1717
2325
|
equals(other: Nullable<any>): boolean;
|
|
1718
2326
|
hashCode(): number;
|
|
1719
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;
|
|
1720
|
-
|
|
1721
|
-
|
|
1722
|
-
|
|
1723
|
-
|
|
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
|
+
}
|
|
1724
2345
|
}
|
|
1725
2346
|
abstract class ActionDeliveryType {
|
|
1726
2347
|
private constructor();
|
|
@@ -1740,8 +2361,21 @@ export declare namespace games.jass.logic.redux.actions.client.to {
|
|
|
1740
2361
|
get ordinal(): 0 | 1 | 2;
|
|
1741
2362
|
static values(): Array<games.jass.logic.redux.actions.client.to.ActionDeliveryType>;
|
|
1742
2363
|
static valueOf(value: string): games.jass.logic.redux.actions.client.to.ActionDeliveryType;
|
|
1743
|
-
|
|
1744
|
-
|
|
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
|
+
}
|
|
1745
2379
|
}
|
|
1746
2380
|
}
|
|
1747
2381
|
export declare namespace games.jass.logic.redux.actions.client.to {
|
|
@@ -1751,6 +2385,10 @@ export declare namespace games.jass.logic.redux.actions.client.to {
|
|
|
1751
2385
|
get actionTag(): string;
|
|
1752
2386
|
readonly __doNotUseOrImplementIt: com.logic.redux.store.definitions.Action["__doNotUseOrImplementIt"];
|
|
1753
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
|
+
}
|
|
1754
2392
|
}
|
|
1755
2393
|
export declare namespace games.jass.logic.redux.actions.game {
|
|
1756
2394
|
abstract class GameAction implements com.logic.redux.store.definitions.Action {
|
|
@@ -1758,7 +2396,11 @@ export declare namespace games.jass.logic.redux.actions.game {
|
|
|
1758
2396
|
get actionTag(): string;
|
|
1759
2397
|
readonly __doNotUseOrImplementIt: com.logic.redux.store.definitions.Action["__doNotUseOrImplementIt"];
|
|
1760
2398
|
}
|
|
1761
|
-
|
|
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 {
|
|
1762
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);
|
|
1763
2405
|
get id(): string;
|
|
1764
2406
|
get gameId(): string;
|
|
@@ -1775,7 +2417,11 @@ export declare namespace games.jass.logic.redux.actions.game {
|
|
|
1775
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;
|
|
1776
2418
|
get actionTag(): string;
|
|
1777
2419
|
}
|
|
1778
|
-
|
|
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 {
|
|
1779
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);
|
|
1780
2426
|
get id(): string;
|
|
1781
2427
|
get gameId(): string;
|
|
@@ -1794,6 +2440,10 @@ export declare namespace games.jass.logic.redux.actions.game {
|
|
|
1794
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;
|
|
1795
2441
|
get actionTag(): string;
|
|
1796
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
|
+
}
|
|
1797
2447
|
class PartyRestartedAction implements com.logic.redux.store.definitions.Action {
|
|
1798
2448
|
constructor(id: string, roundNumber: number);
|
|
1799
2449
|
get id(): string;
|
|
@@ -1805,6 +2455,10 @@ export declare namespace games.jass.logic.redux.actions.game {
|
|
|
1805
2455
|
get actionTag(): string;
|
|
1806
2456
|
readonly __doNotUseOrImplementIt: com.logic.redux.store.definitions.Action["__doNotUseOrImplementIt"];
|
|
1807
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
|
+
}
|
|
1808
2462
|
}
|
|
1809
2463
|
export declare namespace games.jass.logic.redux.actions.mechanic {
|
|
1810
2464
|
interface GameTransition {
|
|
@@ -1827,6 +2481,10 @@ export declare namespace games.jass.logic.redux.actions.mechanic {
|
|
|
1827
2481
|
get readyPlayerIdsArray(): Array<string>;
|
|
1828
2482
|
readonly __doNotUseOrImplementIt: games.jass.logic.redux.actions.mechanic.GameTransition["__doNotUseOrImplementIt"];
|
|
1829
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
|
+
}
|
|
1830
2488
|
class GameToRoomTransition implements games.jass.logic.redux.actions.mechanic.GameTransition {
|
|
1831
2489
|
constructor(roomId: string, playerIds: Nullable<kotlin.collections.KtList<string>>, previousPlayers: Nullable<kotlin.collections.KtList<string>>);
|
|
1832
2490
|
get roomId(): string;
|
|
@@ -1840,6 +2498,10 @@ export declare namespace games.jass.logic.redux.actions.mechanic {
|
|
|
1840
2498
|
equals(other: Nullable<any>): boolean;
|
|
1841
2499
|
readonly __doNotUseOrImplementIt: games.jass.logic.redux.actions.mechanic.GameTransition["__doNotUseOrImplementIt"];
|
|
1842
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
|
+
}
|
|
1843
2505
|
}
|
|
1844
2506
|
export declare namespace games.jass.logic.redux.actions.mechanic {
|
|
1845
2507
|
abstract class MechanicAction implements com.logic.redux.actions.BufferedAction {
|
|
@@ -1848,6 +2510,10 @@ export declare namespace games.jass.logic.redux.actions.mechanic {
|
|
|
1848
2510
|
get actionTag(): string;
|
|
1849
2511
|
readonly __doNotUseOrImplementIt: com.logic.redux.actions.BufferedAction["__doNotUseOrImplementIt"];
|
|
1850
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
|
+
}
|
|
1851
2517
|
interface FirstMechanicAction extends com.logic.redux.store.definitions.Action, com.logic.redux.actions.IgnoreBufferForAction {
|
|
1852
2518
|
readonly id: string;
|
|
1853
2519
|
readonly version: string;
|
|
@@ -1858,7 +2524,7 @@ export declare namespace games.jass.logic.redux.actions.mechanic {
|
|
|
1858
2524
|
readonly "games.jass.logic.redux.actions.mechanic.FirstMechanicAction": unique symbol;
|
|
1859
2525
|
} & com.logic.redux.store.definitions.Action["__doNotUseOrImplementIt"] & com.logic.redux.actions.IgnoreBufferForAction["__doNotUseOrImplementIt"];
|
|
1860
2526
|
}
|
|
1861
|
-
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 {
|
|
1862
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>);
|
|
1863
2529
|
get config(): games.jass.logic.data.models.table.config.Config;
|
|
1864
2530
|
get id(): string;
|
|
@@ -1874,7 +2540,11 @@ export declare namespace games.jass.logic.redux.actions.mechanic {
|
|
|
1874
2540
|
get actionTag(): string;
|
|
1875
2541
|
readonly __doNotUseOrImplementIt: games.jass.logic.redux.actions.mechanic.MechanicAction["__doNotUseOrImplementIt"] & games.jass.logic.redux.actions.mechanic.FirstMechanicAction["__doNotUseOrImplementIt"];
|
|
1876
2542
|
}
|
|
1877
|
-
|
|
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 {
|
|
1878
2548
|
constructor(previousGameId: string, gameId: string, aid?: Nullable<string>);
|
|
1879
2549
|
get previousGameId(): string;
|
|
1880
2550
|
get gameId(): string;
|
|
@@ -1885,8 +2555,11 @@ export declare namespace games.jass.logic.redux.actions.mechanic {
|
|
|
1885
2555
|
equals(other: Nullable<any>): boolean;
|
|
1886
2556
|
get actionTag(): string;
|
|
1887
2557
|
}
|
|
1888
|
-
|
|
1889
|
-
|
|
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 {
|
|
1890
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>);
|
|
1891
2564
|
get reason(): com.logic.data.models.TerminationGameReason;
|
|
1892
2565
|
get isGameFinished(): boolean;
|
|
@@ -1902,12 +2575,25 @@ export declare namespace games.jass.logic.redux.actions.mechanic {
|
|
|
1902
2575
|
get actionTag(): string;
|
|
1903
2576
|
notValidateWhenFinishing(): boolean;
|
|
1904
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"];
|
|
1905
|
-
static get Companion(): {
|
|
1906
|
-
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;
|
|
1907
|
-
fromTable(table: Nullable<games.jass.logic.data.models.table.JassTable>): games.jass.logic.redux.actions.mechanic.FinishingGameMechanicAction;
|
|
1908
|
-
};
|
|
1909
2578
|
}
|
|
1910
|
-
|
|
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 {
|
|
1911
2597
|
constructor(reason: com.logic.data.models.TerminationGameReason, isGameFinished: boolean, aid?: Nullable<string>, transition?: Nullable<games.jass.logic.redux.actions.mechanic.GameTransition>);
|
|
1912
2598
|
get reason(): com.logic.data.models.TerminationGameReason;
|
|
1913
2599
|
get isGameFinished(): boolean;
|
|
@@ -1921,6 +2607,10 @@ export declare namespace games.jass.logic.redux.actions.mechanic {
|
|
|
1921
2607
|
notValidateWhenFinishing(): boolean;
|
|
1922
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"];
|
|
1923
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
|
+
}
|
|
1924
2614
|
interface NavigationMechanicAction extends com.logic.redux.store.definitions.Action {
|
|
1925
2615
|
readonly sceneId: string;
|
|
1926
2616
|
readonly actId: Nullable<string>;
|
|
@@ -1929,7 +2619,7 @@ export declare namespace games.jass.logic.redux.actions.mechanic {
|
|
|
1929
2619
|
readonly "games.jass.logic.redux.actions.mechanic.NavigationMechanicAction": unique symbol;
|
|
1930
2620
|
} & com.logic.redux.store.definitions.Action["__doNotUseOrImplementIt"];
|
|
1931
2621
|
}
|
|
1932
|
-
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 */ {
|
|
1933
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>);
|
|
1934
2624
|
get sceneId(): string;
|
|
1935
2625
|
get actId(): Nullable<string>;
|
|
@@ -1946,6 +2636,10 @@ export declare namespace games.jass.logic.redux.actions.mechanic {
|
|
|
1946
2636
|
get playerId(): string;
|
|
1947
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"];
|
|
1948
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
|
+
}
|
|
1949
2643
|
interface TerminatedAction extends com.logic.redux.store.definitions.Action {
|
|
1950
2644
|
readonly reason: com.logic.data.models.TerminationGameReason;
|
|
1951
2645
|
readonly isGameFinished: boolean;
|
|
@@ -1954,7 +2648,7 @@ export declare namespace games.jass.logic.redux.actions.mechanic {
|
|
|
1954
2648
|
readonly "games.jass.logic.redux.actions.mechanic.TerminatedAction": unique symbol;
|
|
1955
2649
|
} & com.logic.redux.store.definitions.Action["__doNotUseOrImplementIt"];
|
|
1956
2650
|
}
|
|
1957
|
-
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 {
|
|
1958
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>);
|
|
1959
2653
|
get playerId(): string;
|
|
1960
2654
|
get state(): com.logic.data.models.player.PlayerConnectionState;
|
|
@@ -1973,6 +2667,10 @@ export declare namespace games.jass.logic.redux.actions.mechanic {
|
|
|
1973
2667
|
notValidateWhenFinished(): boolean;
|
|
1974
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"];
|
|
1975
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
|
+
}
|
|
1976
2674
|
}
|
|
1977
2675
|
export declare interface GameHelper {
|
|
1978
2676
|
filterLivePlayers(store: com.logic.redux.store.definitions.Store<any/* games.jass.logic.redux.AppState */>, playerIds: Array<string>): Array<string>;
|
|
@@ -2044,5 +2742,9 @@ export declare namespace di {
|
|
|
2044
2742
|
get gameHelper(): GameHelper;
|
|
2045
2743
|
get gameResources(): GameResources;
|
|
2046
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
|
+
}
|
|
2047
2749
|
}
|
|
2048
2750
|
export as namespace io_raspberryapps_game_engine_engine;
|