raspberry_games_engine_helpers 1.8.450 → 1.8.453

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.
Files changed (39) hide show
  1. package/Kosi-Kaverit-kaverit.js +83 -83
  2. package/Kosi-Kaverit-kaverit.js.map +1 -1
  3. package/Kosi-Kodein-kodein-di.js +731 -723
  4. package/Kosi-Kodein-kodein-di.js.map +1 -1
  5. package/Kotlin-DateTime-library-kotlinx-datetime.js +1856 -1856
  6. package/Kotlin-DateTime-library-kotlinx-datetime.js.map +1 -1
  7. package/Logic_Debertz-core.js +1133 -1141
  8. package/Logic_Debertz-core.js.map +1 -1
  9. package/Logic_Debertz-engine.d.ts +710 -608
  10. package/Logic_Debertz-engine.js +11947 -11946
  11. package/Logic_Debertz-engine.js.map +1 -1
  12. package/kotlin-kotlin-stdlib.js +3970 -3569
  13. package/kotlin-kotlin-stdlib.js.map +1 -1
  14. package/kotlinx-atomicfu.js +73 -5
  15. package/kotlinx-atomicfu.js.map +1 -1
  16. package/kotlinx-io-kotlinx-io-core.js +17 -17
  17. package/kotlinx-io-kotlinx-io-core.js.map +1 -1
  18. package/kotlinx-serialization-kotlinx-serialization-core.js +2156 -2155
  19. package/kotlinx-serialization-kotlinx-serialization-core.js.map +1 -1
  20. package/kotlinx-serialization-kotlinx-serialization-json-io.js +15 -0
  21. package/kotlinx-serialization-kotlinx-serialization-json.js +1569 -1569
  22. package/kotlinx-serialization-kotlinx-serialization-json.js.map +1 -1
  23. package/ktor-ktor-client-core.js +107 -5
  24. package/ktor-ktor-client-core.js.map +1 -1
  25. package/{ktor-ktor-client-js.js → ktor-ktor-http-cio.js} +2 -2
  26. package/ktor-ktor-http-cio.js.map +1 -0
  27. package/ktor-ktor-io.js +0 -4
  28. package/ktor-ktor-io.js.map +1 -1
  29. package/ktor-ktor-sse.js +15 -0
  30. package/ktor-ktor-sse.js.map +1 -0
  31. package/ktor-ktor-utils.js.map +1 -1
  32. package/package.json +2 -4
  33. package/raspberry-cardgame-lib-core.js +63 -64
  34. package/raspberry-cardgame-lib-core.js.map +1 -1
  35. package/raspberry-cardgame-lib-logger.js +108 -109
  36. package/raspberry-cardgame-lib-logger.js.map +1 -1
  37. package/raspberry-cardgame-lib-random.js +93 -102
  38. package/raspberry-cardgame-lib-random.js.map +1 -1
  39. /package/{ktor-ktor-client-js.js.map → kotlinx-serialization-kotlinx-serialization-json-io.js.map} +0 -0
@@ -7,15 +7,8 @@ export declare namespace kotlin.collections {
7
7
  readonly "kotlin.collections.KtList": unique symbol;
8
8
  };
9
9
  }
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
- }
10
+ namespace KtList {
11
+ function fromJsArray<E>(array: ReadonlyArray<E>): kotlin.collections.KtList<E>;
19
12
  }
20
13
  interface KtMap<K, V> {
21
14
  asJsReadonlyMapView(): ReadonlyMap<K, V>;
@@ -23,15 +16,8 @@ export declare namespace kotlin.collections {
23
16
  readonly "kotlin.collections.KtMap": unique symbol;
24
17
  };
25
18
  }
26
- abstract class KtMap<K, V> extends KtSingleton<KtMap.$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 KtMap.$metadata$ {
31
- abstract class constructor {
32
- fromJsMap<K, V>(map: ReadonlyMap<K, V>): kotlin.collections.KtMap<K, V>;
33
- private constructor();
34
- }
19
+ namespace KtMap {
20
+ function fromJsMap<K, V>(map: ReadonlyMap<K, V>): kotlin.collections.KtMap<K, V>;
35
21
  }
36
22
  interface KtSet<E> /* extends kotlin.collections.Collection<E> */ {
37
23
  asJsReadonlySetView(): ReadonlySet<E>;
@@ -39,14 +25,24 @@ export declare namespace kotlin.collections {
39
25
  readonly "kotlin.collections.KtSet": unique symbol;
40
26
  };
41
27
  }
42
- abstract class KtSet<E> extends KtSingleton<KtSet.$metadata$.constructor>() {
43
- private constructor();
28
+ namespace KtSet {
29
+ function fromJsSet<E>(set: ReadonlySet<E>): kotlin.collections.KtSet<E>;
44
30
  }
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 KtSet.$metadata$ {
47
- abstract class constructor {
48
- fromJsSet<E>(set: ReadonlySet<E>): kotlin.collections.KtSet<E>;
49
- private constructor();
31
+ }
32
+ export declare namespace kotlin {
33
+ class Pair<A, B> /* implements kotlin.io.Serializable */ {
34
+ constructor(first: A, second: B);
35
+ get first(): A;
36
+ get second(): B;
37
+ toString(): string;
38
+ copy(first?: A, second?: B): kotlin.Pair<A, B>;
39
+ hashCode(): number;
40
+ equals(other: Nullable<any>): boolean;
41
+ }
42
+ namespace Pair {
43
+ /** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
44
+ namespace $metadata$ {
45
+ const constructor: abstract new <A, B>() => Pair<A, B>;
50
46
  }
51
47
  }
52
48
  }
@@ -94,9 +90,11 @@ export declare namespace games.raspberry.card_game.random.data.models {
94
90
  hashCode(): number;
95
91
  equals(other: Nullable<any>): boolean;
96
92
  }
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;
93
+ namespace CardDecksRequestUserData {
94
+ /** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
95
+ namespace $metadata$ {
96
+ const constructor: abstract new () => CardDecksRequestUserData;
97
+ }
100
98
  }
101
99
  class CardDeckRequestUserData {
102
100
  constructor(players: kotlin.collections.KtList<games.raspberry.card_game.random.data.models.UserInfoData>, gameId: string);
@@ -107,9 +105,11 @@ export declare namespace games.raspberry.card_game.random.data.models {
107
105
  hashCode(): number;
108
106
  equals(other: Nullable<any>): boolean;
109
107
  }
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;
108
+ namespace CardDeckRequestUserData {
109
+ /** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
110
+ namespace $metadata$ {
111
+ const constructor: abstract new () => CardDeckRequestUserData;
112
+ }
113
113
  }
114
114
  class UserInfoData {
115
115
  constructor(id: string, name: string);
@@ -120,9 +120,11 @@ export declare namespace games.raspberry.card_game.random.data.models {
120
120
  hashCode(): number;
121
121
  equals(other: Nullable<any>): boolean;
122
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;
123
+ namespace UserInfoData {
124
+ /** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
125
+ namespace $metadata$ {
126
+ const constructor: abstract new () => UserInfoData;
127
+ }
126
128
  }
127
129
  }
128
130
  export declare namespace games.raspberry.card_game.random.data.models {
@@ -137,20 +139,22 @@ export declare namespace games.raspberry.card_game.random.data.models {
137
139
  hashCode(): number;
138
140
  equals(other: Nullable<any>): boolean;
139
141
  }
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
142
  namespace GameCardDecksRecord {
143
+ /** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
144
+ namespace $metadata$ {
145
+ const constructor: abstract new () => GameCardDecksRecord;
146
+ }
145
147
  abstract class Companion extends KtSingleton<Companion.$metadata$.constructor>() {
146
148
  private constructor();
147
149
  }
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();
150
+ namespace Companion {
151
+ /** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
152
+ namespace $metadata$ {
153
+ abstract class constructor {
154
+ 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;
155
+ 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;
156
+ private constructor();
157
+ }
154
158
  }
155
159
  }
156
160
  }
@@ -163,9 +167,11 @@ export declare namespace games.raspberry.card_game.random.data.models {
163
167
  hashCode(): number;
164
168
  equals(other: Nullable<any>): boolean;
165
169
  }
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;
170
+ namespace GameCardDeckData {
171
+ /** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
172
+ namespace $metadata$ {
173
+ const constructor: abstract new () => GameCardDeckData;
174
+ }
169
175
  }
170
176
  }
171
177
  export declare namespace games.raspberry.card_game.random.data.models {
@@ -178,9 +184,11 @@ export declare namespace games.raspberry.card_game.random.data.models {
178
184
  hashCode(): number;
179
185
  equals(other: Nullable<any>): boolean;
180
186
  }
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;
187
+ namespace HttpConfig {
188
+ /** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
189
+ namespace $metadata$ {
190
+ const constructor: abstract new () => HttpConfig;
191
+ }
184
192
  }
185
193
  }
186
194
  export declare namespace games.raspberry.card_game.random.data.models {
@@ -195,9 +203,11 @@ export declare namespace games.raspberry.card_game.random.data.models {
195
203
  hashCode(): number;
196
204
  equals(other: Nullable<any>): boolean;
197
205
  }
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;
206
+ namespace RandomOrgConfig {
207
+ /** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
208
+ namespace $metadata$ {
209
+ const constructor: abstract new () => RandomOrgConfig;
210
+ }
201
211
  }
202
212
  }
203
213
  export declare namespace games.raspberry.card_game.random.data.providers {
@@ -212,20 +222,24 @@ export declare namespace games.raspberry.card_game.random.data.providers {
212
222
  hashCode(): number;
213
223
  equals(other: Nullable<any>): boolean;
214
224
  }
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;
225
+ namespace PoolParams {
226
+ /** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
227
+ namespace $metadata$ {
228
+ const constructor: abstract new () => PoolParams;
229
+ }
218
230
  }
219
231
  }
220
232
  export declare namespace io.raspberryapps.cardgame.core {
221
233
  abstract class CoreConfig extends KtSingleton<CoreConfig.$metadata$.constructor>() {
222
234
  private constructor();
223
235
  }
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();
236
+ namespace CoreConfig {
237
+ /** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
238
+ namespace $metadata$ {
239
+ abstract class constructor {
240
+ get version(): string;
241
+ private constructor();
242
+ }
229
243
  }
230
244
  }
231
245
  }
@@ -233,11 +247,13 @@ export declare namespace com.logic {
233
247
  abstract class GameEngineConfig extends KtSingleton<GameEngineConfig.$metadata$.constructor>() {
234
248
  private constructor();
235
249
  }
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();
250
+ namespace GameEngineConfig {
251
+ /** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
252
+ namespace $metadata$ {
253
+ abstract class constructor {
254
+ get version(): string;
255
+ private constructor();
256
+ }
241
257
  }
242
258
  }
243
259
  }
@@ -254,20 +270,22 @@ export declare namespace com.logic.data.models {
254
270
  hashCode(): number;
255
271
  equals(other: Nullable<any>): boolean;
256
272
  }
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
273
  namespace CoreConfig {
274
+ /** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
275
+ namespace $metadata$ {
276
+ const constructor: abstract new () => CoreConfig;
277
+ }
262
278
  abstract class Companion extends KtSingleton<Companion.$metadata$.constructor>() {
263
279
  private constructor();
264
280
  }
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();
281
+ namespace Companion {
282
+ /** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
283
+ namespace $metadata$ {
284
+ abstract class constructor {
285
+ getClientEngineTestMode(fileLogsEnabled: boolean, logsDirectoryPath: string, fileNameFormat?: string): com.logic.data.models.CoreConfig;
286
+ formatter(segment: string, gameId: string, roomId: string, userId: string): string;
287
+ private constructor();
288
+ }
271
289
  }
272
290
  }
273
291
  }
@@ -276,9 +294,11 @@ export declare namespace com.logic.data.models {
276
294
  abstract class TerminationGameReason {
277
295
  protected constructor();
278
296
  }
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;
297
+ namespace TerminationGameReason {
298
+ /** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
299
+ namespace $metadata$ {
300
+ const constructor: abstract new () => TerminationGameReason;
301
+ }
282
302
  }
283
303
  class PlayerLostConnectionReason extends com.logic.data.models.TerminationGameReason.$metadata$.constructor implements com.logic.data.models.FinishPlayerReason {
284
304
  constructor(playerId: string, tag: Nullable<string>);
@@ -290,9 +310,11 @@ export declare namespace com.logic.data.models {
290
310
  equals(other: Nullable<any>): boolean;
291
311
  readonly __doNotUseOrImplementIt: com.logic.data.models.FinishPlayerReason["__doNotUseOrImplementIt"];
292
312
  }
293
- /** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
294
- namespace PlayerLostConnectionReason.$metadata$ {
295
- const constructor: abstract new () => PlayerLostConnectionReason;
313
+ namespace PlayerLostConnectionReason {
314
+ /** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
315
+ namespace $metadata$ {
316
+ const constructor: abstract new () => PlayerLostConnectionReason;
317
+ }
296
318
  }
297
319
  class PlayerTimeoutReason extends com.logic.data.models.TerminationGameReason.$metadata$.constructor implements com.logic.data.models.FinishPlayerReason {
298
320
  constructor(playerId: string, tag: Nullable<string>);
@@ -304,9 +326,11 @@ export declare namespace com.logic.data.models {
304
326
  equals(other: Nullable<any>): boolean;
305
327
  readonly __doNotUseOrImplementIt: com.logic.data.models.FinishPlayerReason["__doNotUseOrImplementIt"];
306
328
  }
307
- /** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
308
- namespace PlayerTimeoutReason.$metadata$ {
309
- const constructor: abstract new () => PlayerTimeoutReason;
329
+ namespace PlayerTimeoutReason {
330
+ /** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
331
+ namespace $metadata$ {
332
+ const constructor: abstract new () => PlayerTimeoutReason;
333
+ }
310
334
  }
311
335
  class PlayerExitReason extends com.logic.data.models.TerminationGameReason.$metadata$.constructor implements com.logic.data.models.FinishPlayerReason {
312
336
  constructor(playerId: string);
@@ -317,9 +341,11 @@ export declare namespace com.logic.data.models {
317
341
  equals(other: Nullable<any>): boolean;
318
342
  readonly __doNotUseOrImplementIt: com.logic.data.models.FinishPlayerReason["__doNotUseOrImplementIt"];
319
343
  }
320
- /** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
321
- namespace PlayerExitReason.$metadata$ {
322
- const constructor: abstract new () => PlayerExitReason;
344
+ namespace PlayerExitReason {
345
+ /** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
346
+ namespace $metadata$ {
347
+ const constructor: abstract new () => PlayerExitReason;
348
+ }
323
349
  }
324
350
  interface FinishPlayerReason {
325
351
  readonly playerId: string;
@@ -335,11 +361,11 @@ export declare namespace com.logic.data.models {
335
361
  hashCode(): number;
336
362
  equals(other: Nullable<any>): boolean;
337
363
  }
338
- /** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
339
- namespace GameFinishedReason.$metadata$ {
340
- const constructor: abstract new () => GameFinishedReason;
341
- }
342
364
  namespace GameFinishedReason {
365
+ /** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
366
+ namespace $metadata$ {
367
+ const constructor: abstract new () => GameFinishedReason;
368
+ }
343
369
  abstract class Reason {
344
370
  private constructor();
345
371
  static get DEPLOY(): com.logic.data.models.GameFinishedReason.Reason & {
@@ -371,19 +397,10 @@ export declare namespace com.logic.data.models {
371
397
  static values(): Array<com.logic.data.models.GameFinishedReason.Reason>;
372
398
  static valueOf(value: string): com.logic.data.models.GameFinishedReason.Reason;
373
399
  }
374
- /** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
375
- namespace Reason.$metadata$ {
376
- const constructor: abstract new () => Reason;
377
- }
378
400
  namespace Reason {
379
- abstract class Companion extends KtSingleton<Companion.$metadata$.constructor>() {
380
- private constructor();
381
- }
382
401
  /** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
383
- namespace Companion.$metadata$ {
384
- abstract class constructor /* implements kotlinx.serialization.internal.SerializerFactory */ {
385
- private constructor();
386
- }
402
+ namespace $metadata$ {
403
+ const constructor: abstract new () => Reason;
387
404
  }
388
405
  }
389
406
  }
@@ -395,11 +412,11 @@ export declare namespace com.logic.data.models {
395
412
  hashCode(): number;
396
413
  equals(other: Nullable<any>): boolean;
397
414
  }
398
- /** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
399
- namespace GameErrorReason.$metadata$ {
400
- const constructor: abstract new () => GameErrorReason;
401
- }
402
415
  namespace GameErrorReason {
416
+ /** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
417
+ namespace $metadata$ {
418
+ const constructor: abstract new () => GameErrorReason;
419
+ }
403
420
  abstract class Reason {
404
421
  private constructor();
405
422
  static get SERVER_ERROR(): com.logic.data.models.GameErrorReason.Reason & {
@@ -431,44 +448,39 @@ export declare namespace com.logic.data.models {
431
448
  static values(): Array<com.logic.data.models.GameErrorReason.Reason>;
432
449
  static valueOf(value: string): com.logic.data.models.GameErrorReason.Reason;
433
450
  }
434
- /** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
435
- namespace Reason.$metadata$ {
436
- const constructor: abstract new () => Reason;
437
- }
438
451
  namespace Reason {
439
- abstract class Companion extends KtSingleton<Companion.$metadata$.constructor>() {
440
- private constructor();
441
- }
442
452
  /** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
443
- namespace Companion.$metadata$ {
444
- abstract class constructor /* implements kotlinx.serialization.internal.SerializerFactory */ {
445
- private constructor();
446
- }
453
+ namespace $metadata$ {
454
+ const constructor: abstract new () => Reason;
447
455
  }
448
456
  }
449
457
  }
450
458
  abstract class WaitingForConnectionReason extends KtSingleton<WaitingForConnectionReason.$metadata$.constructor>() {
451
459
  private constructor();
452
460
  }
453
- /** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
454
- namespace WaitingForConnectionReason.$metadata$ {
455
- abstract class constructor extends com.logic.data.models.TerminationGameReason.$metadata$.constructor {
456
- toString(): string;
457
- hashCode(): number;
458
- equals(other: Nullable<any>): boolean;
459
- private constructor();
461
+ namespace WaitingForConnectionReason {
462
+ /** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
463
+ namespace $metadata$ {
464
+ abstract class constructor extends com.logic.data.models.TerminationGameReason.$metadata$.constructor {
465
+ toString(): string;
466
+ hashCode(): number;
467
+ equals(other: Nullable<any>): boolean;
468
+ private constructor();
469
+ }
460
470
  }
461
471
  }
462
472
  abstract class ProcessingReason extends KtSingleton<ProcessingReason.$metadata$.constructor>() {
463
473
  private constructor();
464
474
  }
465
- /** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
466
- namespace ProcessingReason.$metadata$ {
467
- abstract class constructor extends com.logic.data.models.TerminationGameReason.$metadata$.constructor {
468
- toString(): string;
469
- hashCode(): number;
470
- equals(other: Nullable<any>): boolean;
471
- private constructor();
475
+ namespace ProcessingReason {
476
+ /** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
477
+ namespace $metadata$ {
478
+ abstract class constructor extends com.logic.data.models.TerminationGameReason.$metadata$.constructor {
479
+ toString(): string;
480
+ hashCode(): number;
481
+ equals(other: Nullable<any>): boolean;
482
+ private constructor();
483
+ }
472
484
  }
473
485
  }
474
486
  }
@@ -489,9 +501,11 @@ export declare namespace com.logic.data.models.player {
489
501
  equals(other: Nullable<any>): boolean;
490
502
  readonly __doNotUseOrImplementIt: com.logic.data.models.player.PlayerIdContract["__doNotUseOrImplementIt"];
491
503
  }
492
- /** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
493
- namespace GameUserInfo.$metadata$ {
494
- const constructor: abstract new () => GameUserInfo;
504
+ namespace GameUserInfo {
505
+ /** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
506
+ namespace $metadata$ {
507
+ const constructor: abstract new () => GameUserInfo;
508
+ }
495
509
  }
496
510
  }
497
511
  export declare namespace com.logic.data.models.player {
@@ -558,19 +572,10 @@ export declare namespace com.logic.data.models.player {
558
572
  static values(): Array<com.logic.data.models.player.PlayerConnectionState>;
559
573
  static valueOf(value: string): com.logic.data.models.player.PlayerConnectionState;
560
574
  }
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 PlayerConnectionState.$metadata$ {
563
- const constructor: abstract new () => PlayerConnectionState;
564
- }
565
575
  namespace PlayerConnectionState {
566
- abstract class Companion extends KtSingleton<Companion.$metadata$.constructor>() {
567
- private constructor();
568
- }
569
576
  /** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
570
- namespace Companion.$metadata$ {
571
- abstract class constructor /* implements kotlinx.serialization.internal.SerializerFactory */ {
572
- private constructor();
573
- }
577
+ namespace $metadata$ {
578
+ const constructor: abstract new () => PlayerConnectionState;
574
579
  }
575
580
  }
576
581
  }
@@ -586,9 +591,11 @@ export declare namespace com.logic.data.models.player {
586
591
  hashCode(): number;
587
592
  equals(other: Nullable<any>): boolean;
588
593
  }
589
- /** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
590
- namespace Team.$metadata$ {
591
- const constructor: abstract new () => Team;
594
+ namespace Team {
595
+ /** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
596
+ namespace $metadata$ {
597
+ const constructor: abstract new () => Team;
598
+ }
592
599
  }
593
600
  }
594
601
  export declare namespace com.logic.redux.actions {
@@ -680,19 +687,10 @@ export declare namespace com.logic.utils.logger.outputs {
680
687
  static values(): Array<com.logic.utils.logger.outputs.LogType>;
681
688
  static valueOf(value: string): com.logic.utils.logger.outputs.LogType;
682
689
  }
683
- /** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
684
- namespace LogType.$metadata$ {
685
- const constructor: abstract new () => LogType;
686
- }
687
690
  namespace LogType {
688
- abstract class Companion extends KtSingleton<Companion.$metadata$.constructor>() {
689
- private constructor();
690
- }
691
691
  /** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
692
- namespace Companion.$metadata$ {
693
- abstract class constructor /* implements kotlinx.serialization.internal.SerializerFactory */ {
694
- private constructor();
695
- }
692
+ namespace $metadata$ {
693
+ const constructor: abstract new () => LogType;
696
694
  }
697
695
  }
698
696
  }
@@ -717,22 +715,17 @@ export declare namespace com.logic.utils.logger.outputs {
717
715
  hashCode(): number;
718
716
  equals(other: Nullable<any>): boolean;
719
717
  }
720
- /** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
721
- namespace LoggerOutputDataDto.$metadata$ {
722
- const constructor: abstract new () => LoggerOutputDataDto;
723
- }
724
718
  namespace LoggerOutputDataDto {
725
- abstract class Companion extends KtSingleton<Companion.$metadata$.constructor>() {
726
- private constructor();
727
- }
728
719
  /** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
729
- namespace Companion.$metadata$ {
730
- abstract class constructor {
731
- private constructor();
732
- }
720
+ namespace $metadata$ {
721
+ const constructor: abstract new () => LoggerOutputDataDto;
733
722
  }
734
723
  }
735
724
  }
725
+ export declare namespace io.ktor.client.engine.js {
726
+ /** @deprecated */
727
+ const initHook: any;
728
+ }
736
729
  export declare namespace games.jass.logic {
737
730
  interface GameStoreContract {
738
731
  readonly id: string;
@@ -759,20 +752,22 @@ export declare namespace games.jass.logic.data.models {
759
752
  copy(dealerStrategy?: games.jass.logic.domain.interactors.dealer.DealerStrategy, cardsInCycle?: number, isBotsAreHappy?: boolean, cards?: Nullable<Array<number>>, shuffleCardsPlayerNumber?: Nullable<number>, shouldDisplayDealerStrategy?: boolean): games.jass.logic.data.models.DealerConfig;
760
753
  toString(): string;
761
754
  }
762
- /** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
763
- namespace DealerConfig.$metadata$ {
764
- const constructor: abstract new () => DealerConfig;
765
- }
766
755
  namespace DealerConfig {
756
+ /** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
757
+ namespace $metadata$ {
758
+ const constructor: abstract new () => DealerConfig;
759
+ }
767
760
  abstract class Companion extends KtSingleton<Companion.$metadata$.constructor>() {
768
761
  private constructor();
769
762
  }
770
- /** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
771
- namespace Companion.$metadata$ {
772
- abstract class constructor {
773
- getFromServerConfig(dealerStrategy?: string, cardsJson?: Nullable<string>): games.jass.logic.data.models.DealerConfig;
774
- fake(cards?: Array<number>): games.jass.logic.data.models.DealerConfig;
775
- private constructor();
763
+ namespace Companion {
764
+ /** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
765
+ namespace $metadata$ {
766
+ abstract class constructor {
767
+ getFromServerConfig(dealerStrategy?: string, cardsJson?: Nullable<string>): games.jass.logic.data.models.DealerConfig;
768
+ fake(cards?: Array<number>): games.jass.logic.data.models.DealerConfig;
769
+ private constructor();
770
+ }
776
771
  }
777
772
  }
778
773
  }
@@ -791,19 +786,21 @@ export declare namespace games.jass.logic.data.models {
791
786
  hashCode(): number;
792
787
  equals(other: Nullable<any>): boolean;
793
788
  }
794
- /** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
795
- namespace EngineBotConfig.$metadata$ {
796
- const constructor: abstract new () => EngineBotConfig;
797
- }
798
789
  namespace EngineBotConfig {
790
+ /** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
791
+ namespace $metadata$ {
792
+ const constructor: abstract new () => EngineBotConfig;
793
+ }
799
794
  abstract class Companion extends KtSingleton<Companion.$metadata$.constructor>() {
800
795
  private constructor();
801
796
  }
802
- /** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
803
- namespace Companion.$metadata$ {
804
- abstract class constructor {
805
- getServerEngineMode(enableBotChat: boolean, openAiApiKey: Nullable<string>): games.jass.logic.data.models.EngineBotConfig;
806
- private constructor();
797
+ namespace Companion {
798
+ /** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
799
+ namespace $metadata$ {
800
+ abstract class constructor {
801
+ getServerEngineMode(enableBotChat: boolean, openAiApiKey: Nullable<string>): games.jass.logic.data.models.EngineBotConfig;
802
+ private constructor();
803
+ }
807
804
  }
808
805
  }
809
806
  }
@@ -827,20 +824,22 @@ export declare namespace games.jass.logic.data.models {
827
824
  hashCode(): number;
828
825
  equals(other: Nullable<any>): boolean;
829
826
  }
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 EngineLogicConfig.$metadata$ {
832
- const constructor: abstract new () => EngineLogicConfig;
833
- }
834
827
  namespace EngineLogicConfig {
828
+ /** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
829
+ namespace $metadata$ {
830
+ const constructor: abstract new () => EngineLogicConfig;
831
+ }
835
832
  abstract class Companion extends KtSingleton<Companion.$metadata$.constructor>() {
836
833
  private constructor();
837
834
  }
838
- /** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
839
- namespace Companion.$metadata$ {
840
- abstract class constructor {
841
- getClientEngineTestMode(): games.jass.logic.data.models.EngineLogicConfig;
842
- 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;
843
- private constructor();
835
+ namespace Companion {
836
+ /** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
837
+ namespace $metadata$ {
838
+ abstract class constructor {
839
+ getClientEngineTestMode(): games.jass.logic.data.models.EngineLogicConfig;
840
+ 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;
841
+ private constructor();
842
+ }
844
843
  }
845
844
  }
846
845
  }
@@ -874,19 +873,10 @@ export declare namespace games.jass.logic.data.models {
874
873
  static values(): Array<games.jass.logic.data.models.GameLifecycleState>;
875
874
  static valueOf(value: string): games.jass.logic.data.models.GameLifecycleState;
876
875
  }
877
- /** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
878
- namespace GameLifecycleState.$metadata$ {
879
- const constructor: abstract new () => GameLifecycleState;
880
- }
881
876
  namespace GameLifecycleState {
882
- abstract class Companion extends KtSingleton<Companion.$metadata$.constructor>() {
883
- private constructor();
884
- }
885
877
  /** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
886
- namespace Companion.$metadata$ {
887
- abstract class constructor /* implements kotlinx.serialization.internal.SerializerFactory */ {
888
- private constructor();
889
- }
878
+ namespace $metadata$ {
879
+ const constructor: abstract new () => GameLifecycleState;
890
880
  }
891
881
  }
892
882
  }
@@ -905,9 +895,11 @@ export declare namespace games.jass.logic.data.models {
905
895
  toString(): string;
906
896
  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;
907
897
  }
908
- /** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
909
- namespace GameSessionAnalytics.$metadata$ {
910
- const constructor: abstract new () => GameSessionAnalytics;
898
+ namespace GameSessionAnalytics {
899
+ /** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
900
+ namespace $metadata$ {
901
+ const constructor: abstract new () => GameSessionAnalytics;
902
+ }
911
903
  }
912
904
  class CombinationPair {
913
905
  constructor(type: games.jass.logic.data.models.table.combinations.CombinationType, count: number);
@@ -918,9 +910,11 @@ export declare namespace games.jass.logic.data.models {
918
910
  hashCode(): number;
919
911
  equals(other: Nullable<any>): boolean;
920
912
  }
921
- /** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
922
- namespace CombinationPair.$metadata$ {
923
- const constructor: abstract new () => CombinationPair;
913
+ namespace CombinationPair {
914
+ /** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
915
+ namespace $metadata$ {
916
+ const constructor: abstract new () => CombinationPair;
917
+ }
924
918
  }
925
919
  }
926
920
  export declare namespace games.jass.logic.data.models.config {
@@ -943,9 +937,11 @@ export declare namespace games.jass.logic.data.models.config {
943
937
  hashCode(): number;
944
938
  equals(other: Nullable<any>): boolean;
945
939
  }
946
- /** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
947
- namespace RatingConfig.$metadata$ {
948
- const constructor: abstract new () => RatingConfig;
940
+ namespace RatingConfig {
941
+ /** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
942
+ namespace $metadata$ {
943
+ const constructor: abstract new () => RatingConfig;
944
+ }
949
945
  }
950
946
  }
951
947
  export declare namespace games.jass.logic.data.models.config {
@@ -967,21 +963,23 @@ export declare namespace games.jass.logic.data.models.config {
967
963
  hashCode(): number;
968
964
  equals(other: Nullable<any>): boolean;
969
965
  }
970
- /** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
971
- namespace ServerReduxConfig.$metadata$ {
972
- const constructor: abstract new () => ServerReduxConfig;
973
- }
974
966
  namespace ServerReduxConfig {
967
+ /** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
968
+ namespace $metadata$ {
969
+ const constructor: abstract new () => ServerReduxConfig;
970
+ }
975
971
  abstract class Companion extends KtSingleton<Companion.$metadata$.constructor>() {
976
972
  private constructor();
977
973
  }
978
- /** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
979
- namespace Companion.$metadata$ {
980
- abstract class constructor {
981
- get DELAY_TO_BUFFER_EVENTS_MILLIS(): number;
982
- get DELAY_TO_BUFFER_STATE_UPDATES_MILLIS(): number;
983
- getServerEngineMode(botReplacesPlayerAfterTimeout: boolean, closeIfBotsAtFinish?: boolean, enabledCombinedEvents?: boolean, delayToAskBotMillis?: number, combinedEventsIntervalMillis?: number, serverStateUpdateIntervalMillis?: number): games.jass.logic.data.models.config.ServerReduxConfig;
984
- private constructor();
974
+ namespace Companion {
975
+ /** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
976
+ namespace $metadata$ {
977
+ abstract class constructor {
978
+ get DELAY_TO_BUFFER_EVENTS_MILLIS(): number;
979
+ get DELAY_TO_BUFFER_STATE_UPDATES_MILLIS(): number;
980
+ getServerEngineMode(botReplacesPlayerAfterTimeout: boolean, closeIfBotsAtFinish?: boolean, enabledCombinedEvents?: boolean, delayToAskBotMillis?: number, combinedEventsIntervalMillis?: number, serverStateUpdateIntervalMillis?: number): games.jass.logic.data.models.config.ServerReduxConfig;
981
+ private constructor();
982
+ }
985
983
  }
986
984
  }
987
985
  }
@@ -1000,9 +998,11 @@ export declare namespace games.jass.logic.data.models.dealer {
1000
998
  hashCode(): number;
1001
999
  equals(other: Nullable<any>): boolean;
1002
1000
  }
1003
- /** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
1004
- namespace RandomData.$metadata$ {
1005
- const constructor: abstract new () => RandomData;
1001
+ namespace RandomData {
1002
+ /** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
1003
+ namespace $metadata$ {
1004
+ const constructor: abstract new () => RandomData;
1005
+ }
1006
1006
  }
1007
1007
  }
1008
1008
  export declare namespace games.jass.logic.data.models.leagues {
@@ -1015,9 +1015,11 @@ export declare namespace games.jass.logic.data.models.leagues {
1015
1015
  hashCode(): number;
1016
1016
  equals(other: Nullable<any>): boolean;
1017
1017
  }
1018
- /** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
1019
- namespace EngineSettings.$metadata$ {
1020
- const constructor: abstract new () => EngineSettings;
1018
+ namespace EngineSettings {
1019
+ /** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
1020
+ namespace $metadata$ {
1021
+ const constructor: abstract new () => EngineSettings;
1022
+ }
1021
1023
  }
1022
1024
  }
1023
1025
  export declare namespace games.jass.logic.data.models.leagues {
@@ -1049,9 +1051,11 @@ export declare namespace games.jass.logic.data.models.leagues {
1049
1051
  static values(): Array<games.jass.logic.data.models.leagues.League>;
1050
1052
  static valueOf(value: string): games.jass.logic.data.models.leagues.League;
1051
1053
  }
1052
- /** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
1053
- namespace League.$metadata$ {
1054
- const constructor: abstract new () => League;
1054
+ namespace League {
1055
+ /** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
1056
+ namespace $metadata$ {
1057
+ const constructor: abstract new () => League;
1058
+ }
1055
1059
  }
1056
1060
  }
1057
1061
  export declare namespace games.jass.logic.data.models.leagues {
@@ -1069,19 +1073,21 @@ export declare namespace games.jass.logic.data.models.leagues {
1069
1073
  copy(initialUserRating?: number, minUserRating?: number, maxUserRating?: number, leagues?: Array<games.jass.logic.data.models.leagues.LeagueInfo>): games.jass.logic.data.models.leagues.LeaguesConfig;
1070
1074
  toString(): string;
1071
1075
  }
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 LeaguesConfig.$metadata$ {
1074
- const constructor: abstract new () => LeaguesConfig;
1075
- }
1076
1076
  namespace LeaguesConfig {
1077
+ /** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
1078
+ namespace $metadata$ {
1079
+ const constructor: abstract new () => LeaguesConfig;
1080
+ }
1077
1081
  abstract class Companion extends KtSingleton<Companion.$metadata$.constructor>() {
1078
1082
  private constructor();
1079
1083
  }
1080
- /** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
1081
- namespace Companion.$metadata$ {
1082
- abstract class constructor {
1083
- defaultConfig(): games.jass.logic.data.models.leagues.LeaguesConfig;
1084
- private constructor();
1084
+ namespace Companion {
1085
+ /** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
1086
+ namespace $metadata$ {
1087
+ abstract class constructor {
1088
+ defaultConfig(): games.jass.logic.data.models.leagues.LeaguesConfig;
1089
+ private constructor();
1090
+ }
1085
1091
  }
1086
1092
  }
1087
1093
  }
@@ -1096,9 +1102,11 @@ export declare namespace games.jass.logic.data.models.leagues {
1096
1102
  hashCode(): number;
1097
1103
  equals(other: Nullable<any>): boolean;
1098
1104
  }
1099
- /** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
1100
- namespace LeagueInfo.$metadata$ {
1101
- const constructor: abstract new () => LeagueInfo;
1105
+ namespace LeagueInfo {
1106
+ /** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
1107
+ namespace $metadata$ {
1108
+ const constructor: abstract new () => LeagueInfo;
1109
+ }
1102
1110
  }
1103
1111
  }
1104
1112
  export declare namespace games.jass.logic.data.models.messages {
@@ -1113,24 +1121,28 @@ export declare namespace games.jass.logic.data.models.messages {
1113
1121
  readonly "games.jass.logic.data.models.messages.Message": unique symbol;
1114
1122
  };
1115
1123
  }
1116
- abstract class Message extends KtSingleton<Message.$metadata$.constructor>() {
1117
- private constructor();
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 Message.$metadata$ {
1121
- abstract class constructor {
1122
- get WHO_SHUFFLE_CARDS_TYPE(): string;
1123
- get PHRASE_MESSAGE_TYPE(): string;
1124
- get STICKER_MESSAGE_TYPE(): string;
1125
- get COMBINATIONS_MESSAGE_TYPE(): string;
1126
- get POINTS_MESSAGE_TYPE(): string;
1127
- get TEXT_MESSAGE_TYPE(): string;
1128
- get WINNER_COMBINATIONS_MESSAGE_TYPE(): string;
1129
- get VALIDATION_MESSAGE_TYPE(): string;
1130
- get EVENT_MESSAGE_TYPE(): string;
1131
- get RANDOM_SIGNATURE_MESSAGE_TYPE(): string;
1124
+ namespace Message {
1125
+ abstract class Companion extends KtSingleton<Companion.$metadata$.constructor>() {
1132
1126
  private constructor();
1133
1127
  }
1128
+ namespace Companion {
1129
+ /** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
1130
+ namespace $metadata$ {
1131
+ abstract class constructor {
1132
+ get WHO_SHUFFLE_CARDS_TYPE(): string;
1133
+ get PHRASE_MESSAGE_TYPE(): string;
1134
+ get STICKER_MESSAGE_TYPE(): string;
1135
+ get COMBINATIONS_MESSAGE_TYPE(): string;
1136
+ get POINTS_MESSAGE_TYPE(): string;
1137
+ get TEXT_MESSAGE_TYPE(): string;
1138
+ get WINNER_COMBINATIONS_MESSAGE_TYPE(): string;
1139
+ get VALIDATION_MESSAGE_TYPE(): string;
1140
+ get EVENT_MESSAGE_TYPE(): string;
1141
+ get RANDOM_SIGNATURE_MESSAGE_TYPE(): string;
1142
+ private constructor();
1143
+ }
1144
+ }
1145
+ }
1134
1146
  }
1135
1147
  }
1136
1148
  export declare namespace games.jass.logic.data.models.messages {
@@ -1181,9 +1193,11 @@ export declare namespace games.jass.logic.data.models.messages.combinatios {
1181
1193
  static values(): Array<games.jass.logic.data.models.messages.combinatios.CombinationReason>;
1182
1194
  static valueOf(value: string): games.jass.logic.data.models.messages.combinatios.CombinationReason;
1183
1195
  }
1184
- /** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
1185
- namespace CombinationReason.$metadata$ {
1186
- const constructor: abstract new () => CombinationReason;
1196
+ namespace CombinationReason {
1197
+ /** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
1198
+ namespace $metadata$ {
1199
+ const constructor: abstract new () => CombinationReason;
1200
+ }
1187
1201
  }
1188
1202
  }
1189
1203
  export declare namespace games.jass.logic.data.models.messages.text {
@@ -1206,9 +1220,11 @@ export declare namespace games.jass.logic.data.models.messages.text {
1206
1220
  get createdAtString(): string;
1207
1221
  readonly __doNotUseOrImplementIt: games.jass.logic.data.models.messages.UserMessage["__doNotUseOrImplementIt"];
1208
1222
  }
1209
- /** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
1210
- namespace TextMessage.$metadata$ {
1211
- const constructor: abstract new () => TextMessage;
1223
+ namespace TextMessage {
1224
+ /** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
1225
+ namespace $metadata$ {
1226
+ const constructor: abstract new () => TextMessage;
1227
+ }
1212
1228
  }
1213
1229
  }
1214
1230
  export declare namespace games.jass.logic.data.models.player {
@@ -1222,9 +1238,11 @@ export declare namespace games.jass.logic.data.models.player {
1222
1238
  hashCode(): number;
1223
1239
  equals(other: Nullable<any>): boolean;
1224
1240
  }
1225
- /** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
1226
- namespace JassPlayerLite.$metadata$ {
1227
- const constructor: abstract new () => JassPlayerLite;
1241
+ namespace JassPlayerLite {
1242
+ /** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
1243
+ namespace $metadata$ {
1244
+ const constructor: abstract new () => JassPlayerLite;
1245
+ }
1228
1246
  }
1229
1247
  }
1230
1248
  export declare namespace games.jass.logic.data.models.player {
@@ -1237,9 +1255,11 @@ export declare namespace games.jass.logic.data.models.player {
1237
1255
  hashCode(): number;
1238
1256
  equals(other: Nullable<any>): boolean;
1239
1257
  }
1240
- /** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
1241
- namespace UserProfilePayload.$metadata$ {
1242
- const constructor: abstract new () => UserProfilePayload;
1258
+ namespace UserProfilePayload {
1259
+ /** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
1260
+ namespace $metadata$ {
1261
+ const constructor: abstract new () => UserProfilePayload;
1262
+ }
1243
1263
  }
1244
1264
  }
1245
1265
  export declare namespace games.jass.logic.data.models.player.achievements {
@@ -1253,9 +1273,11 @@ export declare namespace games.jass.logic.data.models.player.achievements {
1253
1273
  hashCode(): number;
1254
1274
  equals(other: Nullable<any>): boolean;
1255
1275
  }
1256
- /** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
1257
- namespace Achievements.$metadata$ {
1258
- const constructor: abstract new () => Achievements;
1276
+ namespace Achievements {
1277
+ /** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
1278
+ namespace $metadata$ {
1279
+ const constructor: abstract new () => Achievements;
1280
+ }
1259
1281
  }
1260
1282
  }
1261
1283
  export declare namespace games.jass.logic.data.models.player.achievements {
@@ -1271,9 +1293,11 @@ export declare namespace games.jass.logic.data.models.player.achievements {
1271
1293
  equals(other: Nullable<any>): boolean;
1272
1294
  readonly __doNotUseOrImplementIt: com.logic.data.models.player.PlayerIdContract["__doNotUseOrImplementIt"];
1273
1295
  }
1274
- /** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
1275
- namespace PlayerAchievements.$metadata$ {
1276
- const constructor: abstract new () => PlayerAchievements;
1296
+ namespace PlayerAchievements {
1297
+ /** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
1298
+ namespace $metadata$ {
1299
+ const constructor: abstract new () => PlayerAchievements;
1300
+ }
1277
1301
  }
1278
1302
  }
1279
1303
  export declare namespace games.jass.logic.data.models.player.analytics {
@@ -1285,9 +1309,11 @@ export declare namespace games.jass.logic.data.models.player.analytics {
1285
1309
  copy(combinations?: Array<games.jass.logic.data.models.player.analytics.CombinationAnalytics>): games.jass.logic.data.models.player.analytics.CombinationsAnalytics;
1286
1310
  toString(): string;
1287
1311
  }
1288
- /** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
1289
- namespace CombinationsAnalytics.$metadata$ {
1290
- const constructor: abstract new () => CombinationsAnalytics;
1312
+ namespace CombinationsAnalytics {
1313
+ /** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
1314
+ namespace $metadata$ {
1315
+ const constructor: abstract new () => CombinationsAnalytics;
1316
+ }
1291
1317
  }
1292
1318
  class CombinationAnalytics {
1293
1319
  constructor(type: games.jass.logic.data.models.table.combinations.CombinationType, count: number, acceptedCounts: number);
@@ -1299,9 +1325,11 @@ export declare namespace games.jass.logic.data.models.player.analytics {
1299
1325
  hashCode(): number;
1300
1326
  equals(other: Nullable<any>): boolean;
1301
1327
  }
1302
- /** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
1303
- namespace CombinationAnalytics.$metadata$ {
1304
- const constructor: abstract new () => CombinationAnalytics;
1328
+ namespace CombinationAnalytics {
1329
+ /** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
1330
+ namespace $metadata$ {
1331
+ const constructor: abstract new () => CombinationAnalytics;
1332
+ }
1305
1333
  }
1306
1334
  }
1307
1335
  export declare namespace games.jass.logic.data.models.player.analytics {
@@ -1320,9 +1348,11 @@ export declare namespace games.jass.logic.data.models.player.analytics {
1320
1348
  equals(other: Nullable<any>): boolean;
1321
1349
  readonly __doNotUseOrImplementIt: com.logic.data.models.player.PlayerIdContract["__doNotUseOrImplementIt"];
1322
1350
  }
1323
- /** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
1324
- namespace PlayerAnalytics.$metadata$ {
1325
- const constructor: abstract new () => PlayerAnalytics;
1351
+ namespace PlayerAnalytics {
1352
+ /** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
1353
+ namespace $metadata$ {
1354
+ const constructor: abstract new () => PlayerAnalytics;
1355
+ }
1326
1356
  }
1327
1357
  }
1328
1358
  export declare namespace games.jass.logic.data.models.player.analytics {
@@ -1339,9 +1369,11 @@ export declare namespace games.jass.logic.data.models.player.analytics {
1339
1369
  equals(other: Nullable<any>): boolean;
1340
1370
  readonly __doNotUseOrImplementIt: com.logic.data.models.player.PlayerIdContract["__doNotUseOrImplementIt"];
1341
1371
  }
1342
- /** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
1343
- namespace PlayerHistoryAnalytics.$metadata$ {
1344
- const constructor: abstract new () => PlayerHistoryAnalytics;
1372
+ namespace PlayerHistoryAnalytics {
1373
+ /** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
1374
+ namespace $metadata$ {
1375
+ const constructor: abstract new () => PlayerHistoryAnalytics;
1376
+ }
1345
1377
  }
1346
1378
  }
1347
1379
  export declare namespace games.jass.logic.data.models.player.bids {
@@ -1372,20 +1404,22 @@ export declare namespace games.jass.logic.data.models.player.bids {
1372
1404
  static values(): Array<games.jass.logic.data.models.player.bids.BidType>;
1373
1405
  static valueOf(value: string): games.jass.logic.data.models.player.bids.BidType;
1374
1406
  }
1375
- /** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
1376
- namespace BidType.$metadata$ {
1377
- const constructor: abstract new () => BidType;
1378
- }
1379
1407
  namespace BidType {
1408
+ /** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
1409
+ namespace $metadata$ {
1410
+ const constructor: abstract new () => BidType;
1411
+ }
1380
1412
  abstract class Companion extends KtSingleton<Companion.$metadata$.constructor>() {
1381
1413
  private constructor();
1382
1414
  }
1383
- /** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
1384
- namespace Companion.$metadata$ {
1385
- abstract class constructor /* implements kotlinx.serialization.internal.SerializerFactory */ {
1386
- get belotBalgarian(): Array<games.jass.logic.data.models.player.bids.BidType>;
1387
- get coinche(): Array<games.jass.logic.data.models.player.bids.BidType>;
1388
- private constructor();
1415
+ namespace Companion {
1416
+ /** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
1417
+ namespace $metadata$ {
1418
+ abstract class constructor /* implements kotlinx.serialization.internal.SerializerFactory */ {
1419
+ get belotBalgarian(): Array<games.jass.logic.data.models.player.bids.BidType>;
1420
+ get coinche(): Array<games.jass.logic.data.models.player.bids.BidType>;
1421
+ private constructor();
1422
+ }
1389
1423
  }
1390
1424
  }
1391
1425
  }
@@ -1403,9 +1437,11 @@ export declare namespace games.jass.logic.data.models.player.hand {
1403
1437
  hashCode(): number;
1404
1438
  equals(other: Nullable<any>): boolean;
1405
1439
  }
1406
- /** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
1407
- namespace CombinationRecord.$metadata$ {
1408
- const constructor: abstract new () => CombinationRecord;
1440
+ namespace CombinationRecord {
1441
+ /** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
1442
+ namespace $metadata$ {
1443
+ const constructor: abstract new () => CombinationRecord;
1444
+ }
1409
1445
  }
1410
1446
  }
1411
1447
  export declare namespace games.jass.logic.data.models.player.points {
@@ -1428,9 +1464,11 @@ export declare namespace games.jass.logic.data.models.player.points {
1428
1464
  static values(): Array<games.jass.logic.data.models.player.points.PointsDistributeMode>;
1429
1465
  static valueOf(value: string): games.jass.logic.data.models.player.points.PointsDistributeMode;
1430
1466
  }
1431
- /** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
1432
- namespace PointsDistributeMode.$metadata$ {
1433
- const constructor: abstract new () => PointsDistributeMode;
1467
+ namespace PointsDistributeMode {
1468
+ /** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
1469
+ namespace $metadata$ {
1470
+ const constructor: abstract new () => PointsDistributeMode;
1471
+ }
1434
1472
  }
1435
1473
  }
1436
1474
  export declare namespace games.jass.logic.data.models.player.state {
@@ -1446,9 +1484,11 @@ export declare namespace games.jass.logic.data.models.player.state {
1446
1484
  hashCode(): number;
1447
1485
  equals(other: Nullable<any>): boolean;
1448
1486
  }
1449
- /** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
1450
- namespace PlayerLeftResult.$metadata$ {
1451
- const constructor: abstract new () => PlayerLeftResult;
1487
+ namespace PlayerLeftResult {
1488
+ /** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
1489
+ namespace $metadata$ {
1490
+ const constructor: abstract new () => PlayerLeftResult;
1491
+ }
1452
1492
  }
1453
1493
  }
1454
1494
  export declare namespace games.jass.logic.data.models.player.state {
@@ -1474,19 +1514,10 @@ export declare namespace games.jass.logic.data.models.player.state {
1474
1514
  static values(): Array<games.jass.logic.data.models.player.state.RoundContractState>;
1475
1515
  static valueOf(value: string): games.jass.logic.data.models.player.state.RoundContractState;
1476
1516
  }
1477
- /** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
1478
- namespace RoundContractState.$metadata$ {
1479
- const constructor: abstract new () => RoundContractState;
1480
- }
1481
1517
  namespace RoundContractState {
1482
- abstract class Companion extends KtSingleton<Companion.$metadata$.constructor>() {
1483
- private constructor();
1484
- }
1485
1518
  /** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
1486
- namespace Companion.$metadata$ {
1487
- abstract class constructor /* implements kotlinx.serialization.internal.SerializerFactory */ {
1488
- private constructor();
1489
- }
1519
+ namespace $metadata$ {
1520
+ const constructor: abstract new () => RoundContractState;
1490
1521
  }
1491
1522
  }
1492
1523
  }
@@ -1514,19 +1545,21 @@ export declare namespace games.jass.logic.data.models.player.state {
1514
1545
  static values(): Array<games.jass.logic.data.models.player.state.RoundContractType>;
1515
1546
  static valueOf(value: string): games.jass.logic.data.models.player.state.RoundContractType;
1516
1547
  }
1517
- /** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
1518
- namespace RoundContractType.$metadata$ {
1519
- const constructor: abstract new () => RoundContractType;
1520
- }
1521
1548
  namespace RoundContractType {
1549
+ /** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
1550
+ namespace $metadata$ {
1551
+ const constructor: abstract new () => RoundContractType;
1552
+ }
1522
1553
  abstract class Companion extends KtSingleton<Companion.$metadata$.constructor>() {
1523
1554
  private constructor();
1524
1555
  }
1525
- /** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
1526
- namespace Companion.$metadata$ {
1527
- abstract class constructor /* implements kotlinx.serialization.internal.SerializerFactory */ {
1528
- get debertzContractTypes(): kotlin.collections.KtList<games.jass.logic.data.models.player.state.RoundContractType>;
1529
- private constructor();
1556
+ namespace Companion {
1557
+ /** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
1558
+ namespace $metadata$ {
1559
+ abstract class constructor /* implements kotlinx.serialization.internal.SerializerFactory */ {
1560
+ get debertzContractTypes(): kotlin.collections.KtList<games.jass.logic.data.models.player.state.RoundContractType>;
1561
+ private constructor();
1562
+ }
1530
1563
  }
1531
1564
  }
1532
1565
  }
@@ -1551,9 +1584,11 @@ export declare namespace games.jass.logic.data.models.rules {
1551
1584
  static values(): Array<games.jass.logic.data.models.rules.PutHigherTrumpCardMode>;
1552
1585
  static valueOf(value: string): games.jass.logic.data.models.rules.PutHigherTrumpCardMode;
1553
1586
  }
1554
- /** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
1555
- namespace PutHigherTrumpCardMode.$metadata$ {
1556
- const constructor: abstract new () => PutHigherTrumpCardMode;
1587
+ namespace PutHigherTrumpCardMode {
1588
+ /** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
1589
+ namespace $metadata$ {
1590
+ const constructor: abstract new () => PutHigherTrumpCardMode;
1591
+ }
1557
1592
  }
1558
1593
  }
1559
1594
  export declare namespace games.jass.logic.data.models.rules {
@@ -1576,9 +1611,11 @@ export declare namespace games.jass.logic.data.models.rules {
1576
1611
  static values(): Array<games.jass.logic.data.models.rules.PutHigherTrumpCardPartnerMode>;
1577
1612
  static valueOf(value: string): games.jass.logic.data.models.rules.PutHigherTrumpCardPartnerMode;
1578
1613
  }
1579
- /** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
1580
- namespace PutHigherTrumpCardPartnerMode.$metadata$ {
1581
- const constructor: abstract new () => PutHigherTrumpCardPartnerMode;
1614
+ namespace PutHigherTrumpCardPartnerMode {
1615
+ /** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
1616
+ namespace $metadata$ {
1617
+ const constructor: abstract new () => PutHigherTrumpCardPartnerMode;
1618
+ }
1582
1619
  }
1583
1620
  }
1584
1621
  export declare namespace games.jass.logic.data.models.rules {
@@ -1616,27 +1653,29 @@ export declare namespace games.jass.logic.data.models.rules {
1616
1653
  hashCode(): number;
1617
1654
  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;
1618
1655
  }
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 Rules.$metadata$ {
1621
- const constructor: abstract new () => Rules;
1622
- }
1623
1656
  namespace Rules {
1657
+ /** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
1658
+ namespace $metadata$ {
1659
+ const constructor: abstract new () => Rules;
1660
+ }
1624
1661
  abstract class Companion extends KtSingleton<Companion.$metadata$.constructor>() {
1625
1662
  private constructor();
1626
1663
  }
1627
- /** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
1628
- namespace Companion.$metadata$ {
1629
- abstract class constructor {
1630
- get HAND_CARDS_INITIAL(): number;
1631
- get HAND_CARDS_FINAL(): number;
1632
- kharkiv(): games.jass.logic.data.models.rules.Rules;
1633
- saltivka(): games.jass.logic.data.models.rules.Rules;
1634
- klabor(): games.jass.logic.data.models.rules.Rules;
1635
- belotBulgarian(): games.jass.logic.data.models.rules.Rules;
1636
- debertzCommon(): games.jass.logic.data.models.rules.Rules;
1637
- belot(): games.jass.logic.data.models.rules.Rules;
1638
- custom(): games.jass.logic.data.models.rules.Rules;
1639
- private constructor();
1664
+ namespace Companion {
1665
+ /** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
1666
+ namespace $metadata$ {
1667
+ abstract class constructor {
1668
+ get HAND_CARDS_INITIAL(): number;
1669
+ get HAND_CARDS_FINAL(): number;
1670
+ kharkiv(): games.jass.logic.data.models.rules.Rules;
1671
+ saltivka(): games.jass.logic.data.models.rules.Rules;
1672
+ klabor(): games.jass.logic.data.models.rules.Rules;
1673
+ belotBulgarian(): games.jass.logic.data.models.rules.Rules;
1674
+ debertzCommon(): games.jass.logic.data.models.rules.Rules;
1675
+ belot(): games.jass.logic.data.models.rules.Rules;
1676
+ custom(): games.jass.logic.data.models.rules.Rules;
1677
+ private constructor();
1678
+ }
1640
1679
  }
1641
1680
  }
1642
1681
  }
@@ -1676,9 +1715,11 @@ export declare namespace games.jass.logic.data.models.rules {
1676
1715
  static values(): Array<games.jass.logic.data.models.rules.RulesSetType>;
1677
1716
  static valueOf(value: string): games.jass.logic.data.models.rules.RulesSetType;
1678
1717
  }
1679
- /** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
1680
- namespace RulesSetType.$metadata$ {
1681
- const constructor: abstract new () => RulesSetType;
1718
+ namespace RulesSetType {
1719
+ /** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
1720
+ namespace $metadata$ {
1721
+ const constructor: abstract new () => RulesSetType;
1722
+ }
1682
1723
  }
1683
1724
  }
1684
1725
  export declare namespace games.jass.logic.data.models.scenes {
@@ -1718,7 +1759,7 @@ export declare namespace games.jass.logic.data.models.table {
1718
1759
  get gameId(): string;
1719
1760
  get gameDuration(): any/* kotlin.time.Duration */;
1720
1761
  get gameCreatedAt(): any/* kotlin.time.Instant */;
1721
- get playersConnections(): kotlin.collections.KtList<any/* kotlin.Pair<string, com.logic.data.models.player.PlayerConnectionState> */>;
1762
+ get playersConnections(): kotlin.collections.KtList<kotlin.Pair<string, com.logic.data.models.player.PlayerConnectionState>>;
1722
1763
  get users(): Array<com.logic.data.models.player.GameUserInfo>;
1723
1764
  get isCardDeckExist(): boolean;
1724
1765
  get requireCardDeck(): any/* games.jass.logic.data.models.table.cards.CardDeck */;
@@ -1729,20 +1770,22 @@ export declare namespace games.jass.logic.data.models.table {
1729
1770
  hashCode(): number;
1730
1771
  equals(other: Nullable<any>): boolean;
1731
1772
  }
1732
- /** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
1733
- namespace JassTable.$metadata$ {
1734
- const constructor: abstract new () => JassTable;
1735
- }
1736
1773
  namespace JassTable {
1774
+ /** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
1775
+ namespace $metadata$ {
1776
+ const constructor: abstract new () => JassTable;
1777
+ }
1737
1778
  abstract class Companion extends KtSingleton<Companion.$metadata$.constructor>() {
1738
1779
  private constructor();
1739
1780
  }
1740
- /** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
1741
- namespace Companion.$metadata$ {
1742
- abstract class constructor {
1743
- 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;
1744
- restartRound(roomId: string, gameId: string, version: string, tableLite: games.jass.logic.data.models.table.JassTableLite): games.jass.logic.data.models.table.JassTable;
1745
- private constructor();
1781
+ namespace Companion {
1782
+ /** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
1783
+ namespace $metadata$ {
1784
+ abstract class constructor {
1785
+ 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;
1786
+ restartRound(roomId: string, gameId: string, version: string, tableLite: games.jass.logic.data.models.table.JassTableLite): games.jass.logic.data.models.table.JassTable;
1787
+ private constructor();
1788
+ }
1746
1789
  }
1747
1790
  }
1748
1791
  }
@@ -1759,9 +1802,11 @@ export declare namespace games.jass.logic.data.models.table {
1759
1802
  hashCode(): number;
1760
1803
  equals(other: Nullable<any>): boolean;
1761
1804
  }
1762
- /** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
1763
- namespace JassTableLite.$metadata$ {
1764
- const constructor: abstract new () => JassTableLite;
1805
+ namespace JassTableLite {
1806
+ /** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
1807
+ namespace $metadata$ {
1808
+ const constructor: abstract new () => JassTableLite;
1809
+ }
1765
1810
  }
1766
1811
  }
1767
1812
  export declare namespace games.jass.logic.data.models.table {
@@ -1776,9 +1821,11 @@ export declare namespace games.jass.logic.data.models.table {
1776
1821
  copy(id?: string, gameId?: string, players?: Array<games.jass.logic.data.models.table.PlayerLoggerPayload>): games.jass.logic.data.models.table.TableLoggerPayload;
1777
1822
  readonly __doNotUseOrImplementIt: games.raspberry.logger.LoggerPayload["__doNotUseOrImplementIt"];
1778
1823
  }
1779
- /** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
1780
- namespace TableLoggerPayload.$metadata$ {
1781
- const constructor: abstract new () => TableLoggerPayload;
1824
+ namespace TableLoggerPayload {
1825
+ /** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
1826
+ namespace $metadata$ {
1827
+ const constructor: abstract new () => TableLoggerPayload;
1828
+ }
1782
1829
  }
1783
1830
  class PlayerLoggerPayload implements games.raspberry.logger.LoggerPayload {
1784
1831
  constructor(playerId: string, connectionState: Nullable<com.logic.data.models.player.PlayerConnectionState>);
@@ -1790,9 +1837,11 @@ export declare namespace games.jass.logic.data.models.table {
1790
1837
  equals(other: Nullable<any>): boolean;
1791
1838
  readonly __doNotUseOrImplementIt: games.raspberry.logger.LoggerPayload["__doNotUseOrImplementIt"];
1792
1839
  }
1793
- /** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
1794
- namespace PlayerLoggerPayload.$metadata$ {
1795
- const constructor: abstract new () => PlayerLoggerPayload;
1840
+ namespace PlayerLoggerPayload {
1841
+ /** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
1842
+ namespace $metadata$ {
1843
+ const constructor: abstract new () => PlayerLoggerPayload;
1844
+ }
1796
1845
  }
1797
1846
  }
1798
1847
  export declare namespace games.jass.logic.data.models.table {
@@ -1805,9 +1854,11 @@ export declare namespace games.jass.logic.data.models.table {
1805
1854
  hashCode(): number;
1806
1855
  equals(other: Nullable<any>): boolean;
1807
1856
  }
1808
- /** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
1809
- namespace TableStateWithActions.$metadata$ {
1810
- const constructor: abstract new () => TableStateWithActions;
1857
+ namespace TableStateWithActions {
1858
+ /** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
1859
+ namespace $metadata$ {
1860
+ const constructor: abstract new () => TableStateWithActions;
1861
+ }
1811
1862
  }
1812
1863
  }
1813
1864
  export declare namespace games.jass.logic.data.models.table.combinations {
@@ -1818,9 +1869,11 @@ export declare namespace games.jass.logic.data.models.table.combinations {
1818
1869
  hashCode(): number;
1819
1870
  equals(other: Nullable<any>): boolean;
1820
1871
  }
1821
- /** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
1822
- namespace Combination.$metadata$ {
1823
- const constructor: abstract new () => Combination;
1872
+ namespace Combination {
1873
+ /** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
1874
+ namespace $metadata$ {
1875
+ const constructor: abstract new () => Combination;
1876
+ }
1824
1877
  }
1825
1878
  }
1826
1879
  export declare namespace games.jass.logic.data.models.table.combinations {
@@ -1855,19 +1908,10 @@ export declare namespace games.jass.logic.data.models.table.combinations {
1855
1908
  static values(): Array<games.jass.logic.data.models.table.combinations.CombinationState>;
1856
1909
  static valueOf(value: string): games.jass.logic.data.models.table.combinations.CombinationState;
1857
1910
  }
1858
- /** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
1859
- namespace CombinationState.$metadata$ {
1860
- const constructor: abstract new () => CombinationState;
1861
- }
1862
1911
  namespace CombinationState {
1863
- abstract class Companion extends KtSingleton<Companion.$metadata$.constructor>() {
1864
- private constructor();
1865
- }
1866
1912
  /** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
1867
- namespace Companion.$metadata$ {
1868
- abstract class constructor /* implements kotlinx.serialization.internal.SerializerFactory */ {
1869
- private constructor();
1870
- }
1913
+ namespace $metadata$ {
1914
+ const constructor: abstract new () => CombinationState;
1871
1915
  }
1872
1916
  }
1873
1917
  }
@@ -1951,23 +1995,25 @@ export declare namespace games.jass.logic.data.models.table.combinations {
1951
1995
  static values(): Array<games.jass.logic.data.models.table.combinations.CombinationType>;
1952
1996
  static valueOf(value: string): games.jass.logic.data.models.table.combinations.CombinationType;
1953
1997
  }
1954
- /** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
1955
- namespace CombinationType.$metadata$ {
1956
- const constructor: abstract new () => CombinationType;
1957
- }
1958
1998
  namespace CombinationType {
1999
+ /** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
2000
+ namespace $metadata$ {
2001
+ const constructor: abstract new () => CombinationType;
2002
+ }
1959
2003
  abstract class Companion extends KtSingleton<Companion.$metadata$.constructor>() {
1960
2004
  private constructor();
1961
2005
  }
1962
- /** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
1963
- namespace Companion.$metadata$ {
1964
- abstract class constructor /* implements kotlinx.serialization.internal.SerializerFactory */ {
1965
- get withFirstCardCombination(): kotlin.collections.KtList<games.jass.logic.data.models.table.combinations.CombinationType>;
1966
- get inRowCombinations(): kotlin.collections.KtList<games.jass.logic.data.models.table.combinations.CombinationType>;
1967
- get fourCardsCombinations(): kotlin.collections.KtList<games.jass.logic.data.models.table.combinations.CombinationType>;
1968
- get debertzWithFirstCardCombinations(): kotlin.collections.KtList<games.jass.logic.data.models.table.combinations.CombinationType>;
1969
- get belotWithFirstCardCombination(): kotlin.collections.KtList<games.jass.logic.data.models.table.combinations.CombinationType>;
1970
- private constructor();
2006
+ namespace Companion {
2007
+ /** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
2008
+ namespace $metadata$ {
2009
+ abstract class constructor /* implements kotlinx.serialization.internal.SerializerFactory */ {
2010
+ get withFirstCardCombination(): kotlin.collections.KtList<games.jass.logic.data.models.table.combinations.CombinationType>;
2011
+ get inRowCombinations(): kotlin.collections.KtList<games.jass.logic.data.models.table.combinations.CombinationType>;
2012
+ get fourCardsCombinations(): kotlin.collections.KtList<games.jass.logic.data.models.table.combinations.CombinationType>;
2013
+ get debertzWithFirstCardCombinations(): kotlin.collections.KtList<games.jass.logic.data.models.table.combinations.CombinationType>;
2014
+ get belotWithFirstCardCombination(): kotlin.collections.KtList<games.jass.logic.data.models.table.combinations.CombinationType>;
2015
+ private constructor();
2016
+ }
1971
2017
  }
1972
2018
  }
1973
2019
  }
@@ -1983,9 +2029,11 @@ export declare namespace games.jass.logic.data.models.table.combinations {
1983
2029
  toString(): string;
1984
2030
  readonly __doNotUseOrImplementIt: com.logic.data.models.player.PlayerIdContract["__doNotUseOrImplementIt"];
1985
2031
  }
1986
- /** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
1987
- namespace PlayerCombinations.$metadata$ {
1988
- const constructor: abstract new () => PlayerCombinations;
2032
+ namespace PlayerCombinations {
2033
+ /** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
2034
+ namespace $metadata$ {
2035
+ const constructor: abstract new () => PlayerCombinations;
2036
+ }
1989
2037
  }
1990
2038
  }
1991
2039
  export declare namespace games.jass.logic.data.models.table.config {
@@ -2016,19 +2064,10 @@ export declare namespace games.jass.logic.data.models.table.config {
2016
2064
  static values(): Array<games.jass.logic.data.models.table.config.BotIntelligenceLevel>;
2017
2065
  static valueOf(value: string): games.jass.logic.data.models.table.config.BotIntelligenceLevel;
2018
2066
  }
2019
- /** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
2020
- namespace BotIntelligenceLevel.$metadata$ {
2021
- const constructor: abstract new () => BotIntelligenceLevel;
2022
- }
2023
2067
  namespace BotIntelligenceLevel {
2024
- abstract class Companion extends KtSingleton<Companion.$metadata$.constructor>() {
2025
- private constructor();
2026
- }
2027
2068
  /** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
2028
- namespace Companion.$metadata$ {
2029
- abstract class constructor /* implements kotlinx.serialization.internal.SerializerFactory */ {
2030
- private constructor();
2031
- }
2069
+ namespace $metadata$ {
2070
+ const constructor: abstract new () => BotIntelligenceLevel;
2032
2071
  }
2033
2072
  }
2034
2073
  function getLevel(_this_: games.jass.logic.data.models.table.config.BotIntelligenceLevel): number;
@@ -2053,9 +2092,11 @@ export declare namespace games.jass.logic.data.models.table.config {
2053
2092
  hashCode(): number;
2054
2093
  equals(other: Nullable<any>): boolean;
2055
2094
  }
2056
- /** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
2057
- namespace Config.$metadata$ {
2058
- const constructor: abstract new () => Config;
2095
+ namespace Config {
2096
+ /** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
2097
+ namespace $metadata$ {
2098
+ const constructor: abstract new () => Config;
2099
+ }
2059
2100
  }
2060
2101
  }
2061
2102
  export declare namespace games.jass.logic.data.models.table.config {
@@ -2076,9 +2117,11 @@ export declare namespace games.jass.logic.data.models.table.config {
2076
2117
  hashCode(): number;
2077
2118
  equals(other: Nullable<any>): boolean;
2078
2119
  }
2079
- /** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
2080
- namespace ConfigLite.$metadata$ {
2081
- const constructor: abstract new () => ConfigLite;
2120
+ namespace ConfigLite {
2121
+ /** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
2122
+ namespace $metadata$ {
2123
+ const constructor: abstract new () => ConfigLite;
2124
+ }
2082
2125
  }
2083
2126
  }
2084
2127
  export declare namespace games.jass.logic.data.models.table.config {
@@ -2095,19 +2138,21 @@ export declare namespace games.jass.logic.data.models.table.config {
2095
2138
  hashCode(): number;
2096
2139
  equals(other: Nullable<any>): boolean;
2097
2140
  }
2098
- /** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
2099
- namespace Options.$metadata$ {
2100
- const constructor: abstract new () => Options;
2101
- }
2102
2141
  namespace Options {
2142
+ /** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
2143
+ namespace $metadata$ {
2144
+ const constructor: abstract new () => Options;
2145
+ }
2103
2146
  abstract class Companion extends KtSingleton<Companion.$metadata$.constructor>() {
2104
2147
  private constructor();
2105
2148
  }
2106
- /** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
2107
- namespace Companion.$metadata$ {
2108
- abstract class constructor {
2109
- getServerOptions(isEnableChat?: boolean, isBotsEnabled?: boolean, isEnableChoosePartnerScreen?: boolean): games.jass.logic.data.models.table.config.Options;
2110
- private constructor();
2149
+ namespace Companion {
2150
+ /** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
2151
+ namespace $metadata$ {
2152
+ abstract class constructor {
2153
+ getServerOptions(isEnableChat?: boolean, isBotsEnabled?: boolean, isEnableChoosePartnerScreen?: boolean): games.jass.logic.data.models.table.config.Options;
2154
+ private constructor();
2155
+ }
2111
2156
  }
2112
2157
  }
2113
2158
  }
@@ -2139,19 +2184,21 @@ export declare namespace games.jass.logic.data.models.table.config {
2139
2184
  static values(): Array<games.jass.logic.data.models.table.config.PlayersMode>;
2140
2185
  static valueOf(value: string): games.jass.logic.data.models.table.config.PlayersMode;
2141
2186
  }
2142
- /** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
2143
- namespace PlayersMode.$metadata$ {
2144
- const constructor: abstract new () => PlayersMode;
2145
- }
2146
2187
  namespace PlayersMode {
2188
+ /** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
2189
+ namespace $metadata$ {
2190
+ const constructor: abstract new () => PlayersMode;
2191
+ }
2147
2192
  abstract class Companion extends KtSingleton<Companion.$metadata$.constructor>() {
2148
2193
  private constructor();
2149
2194
  }
2150
- /** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
2151
- namespace Companion.$metadata$ {
2152
- abstract class constructor /* implements kotlinx.serialization.internal.SerializerFactory */ {
2153
- create(number: number): games.jass.logic.data.models.table.config.PlayersMode;
2154
- private constructor();
2195
+ namespace Companion {
2196
+ /** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
2197
+ namespace $metadata$ {
2198
+ abstract class constructor /* implements kotlinx.serialization.internal.SerializerFactory */ {
2199
+ create(number: number): games.jass.logic.data.models.table.config.PlayersMode;
2200
+ private constructor();
2201
+ }
2155
2202
  }
2156
2203
  }
2157
2204
  }
@@ -2181,19 +2228,21 @@ export declare namespace games.jass.logic.data.models.table.config {
2181
2228
  static values(): Array<games.jass.logic.data.models.table.config.PointsMode>;
2182
2229
  static valueOf(value: string): games.jass.logic.data.models.table.config.PointsMode;
2183
2230
  }
2184
- /** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
2185
- namespace PointsMode.$metadata$ {
2186
- const constructor: abstract new () => PointsMode;
2187
- }
2188
2231
  namespace PointsMode {
2232
+ /** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
2233
+ namespace $metadata$ {
2234
+ const constructor: abstract new () => PointsMode;
2235
+ }
2189
2236
  abstract class Companion extends KtSingleton<Companion.$metadata$.constructor>() {
2190
2237
  private constructor();
2191
2238
  }
2192
- /** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
2193
- namespace Companion.$metadata$ {
2194
- abstract class constructor /* implements kotlinx.serialization.internal.SerializerFactory */ {
2195
- create(points: number): games.jass.logic.data.models.table.config.PointsMode;
2196
- private constructor();
2239
+ namespace Companion {
2240
+ /** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
2241
+ namespace $metadata$ {
2242
+ abstract class constructor /* implements kotlinx.serialization.internal.SerializerFactory */ {
2243
+ create(points: number): games.jass.logic.data.models.table.config.PointsMode;
2244
+ private constructor();
2245
+ }
2197
2246
  }
2198
2247
  }
2199
2248
  }
@@ -2216,9 +2265,11 @@ export declare namespace games.jass.logic.data.models.table.config {
2216
2265
  hashCode(): number;
2217
2266
  equals(other: Nullable<any>): boolean;
2218
2267
  }
2219
- /** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
2220
- namespace RoomConfig.$metadata$ {
2221
- const constructor: abstract new () => RoomConfig;
2268
+ namespace RoomConfig {
2269
+ /** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
2270
+ namespace $metadata$ {
2271
+ const constructor: abstract new () => RoomConfig;
2272
+ }
2222
2273
  }
2223
2274
  }
2224
2275
  export declare namespace games.jass.logic.data.models.table.config {
@@ -2248,9 +2299,11 @@ export declare namespace games.jass.logic.data.models.table.config {
2248
2299
  static values(): Array<games.jass.logic.data.models.table.config.RoomMode>;
2249
2300
  static valueOf(value: string): games.jass.logic.data.models.table.config.RoomMode;
2250
2301
  }
2251
- /** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
2252
- namespace RoomMode.$metadata$ {
2253
- const constructor: abstract new () => RoomMode;
2302
+ namespace RoomMode {
2303
+ /** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
2304
+ namespace $metadata$ {
2305
+ const constructor: abstract new () => RoomMode;
2306
+ }
2254
2307
  }
2255
2308
  }
2256
2309
  export declare namespace games.jass.logic.data.models.table.history {
@@ -2263,9 +2316,11 @@ export declare namespace games.jass.logic.data.models.table.history {
2263
2316
  hashCode(): number;
2264
2317
  equals(other: Nullable<any>): boolean;
2265
2318
  }
2266
- /** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
2267
- namespace ClientGameHistory.$metadata$ {
2268
- const constructor: abstract new () => ClientGameHistory;
2319
+ namespace ClientGameHistory {
2320
+ /** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
2321
+ namespace $metadata$ {
2322
+ const constructor: abstract new () => ClientGameHistory;
2323
+ }
2269
2324
  }
2270
2325
  }
2271
2326
  export declare namespace games.jass.logic.data.models.table.history {
@@ -2285,19 +2340,21 @@ export declare namespace games.jass.logic.data.models.table.history {
2285
2340
  hashCode(): number;
2286
2341
  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;
2287
2342
  }
2288
- /** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
2289
- namespace GameHistory.$metadata$ {
2290
- const constructor: abstract new () => GameHistory;
2291
- }
2292
2343
  namespace GameHistory {
2344
+ /** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
2345
+ namespace $metadata$ {
2346
+ const constructor: abstract new () => GameHistory;
2347
+ }
2293
2348
  abstract class Companion extends KtSingleton<Companion.$metadata$.constructor>() {
2294
2349
  private constructor();
2295
2350
  }
2296
- /** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
2297
- namespace Companion.$metadata$ {
2298
- abstract class constructor {
2299
- initial(gameId: string, createdAt?: any/* kotlin.time.Instant */): games.jass.logic.data.models.table.history.GameHistory;
2300
- private constructor();
2351
+ namespace Companion {
2352
+ /** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
2353
+ namespace $metadata$ {
2354
+ abstract class constructor {
2355
+ initial(gameId: string, createdAt?: any/* kotlin.time.Instant */): games.jass.logic.data.models.table.history.GameHistory;
2356
+ private constructor();
2357
+ }
2301
2358
  }
2302
2359
  }
2303
2360
  }
@@ -2312,19 +2369,21 @@ export declare namespace games.jass.logic.data.models.table.history {
2312
2369
  hashCode(): number;
2313
2370
  equals(other: Nullable<any>): boolean;
2314
2371
  }
2315
- /** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
2316
- namespace GameHistoryMetadata.$metadata$ {
2317
- const constructor: abstract new () => GameHistoryMetadata;
2318
- }
2319
2372
  namespace GameHistoryMetadata {
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 $metadata$ {
2375
+ const constructor: abstract new () => GameHistoryMetadata;
2376
+ }
2320
2377
  abstract class Companion extends KtSingleton<Companion.$metadata$.constructor>() {
2321
2378
  private constructor();
2322
2379
  }
2323
- /** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
2324
- namespace Companion.$metadata$ {
2325
- abstract class constructor {
2326
- initial(): games.jass.logic.data.models.table.history.GameHistoryMetadata;
2327
- private constructor();
2380
+ namespace Companion {
2381
+ /** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
2382
+ namespace $metadata$ {
2383
+ abstract class constructor {
2384
+ initial(): games.jass.logic.data.models.table.history.GameHistoryMetadata;
2385
+ private constructor();
2386
+ }
2328
2387
  }
2329
2388
  }
2330
2389
  }
@@ -2346,19 +2405,21 @@ export declare namespace games.jass.logic.data.models.table.history {
2346
2405
  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;
2347
2406
  toString(): string;
2348
2407
  }
2349
- /** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
2350
- namespace RoundHistory.$metadata$ {
2351
- const constructor: abstract new () => RoundHistory;
2352
- }
2353
2408
  namespace RoundHistory {
2409
+ /** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
2410
+ namespace $metadata$ {
2411
+ const constructor: abstract new () => RoundHistory;
2412
+ }
2354
2413
  abstract class Companion extends KtSingleton<Companion.$metadata$.constructor>() {
2355
2414
  private constructor();
2356
2415
  }
2357
- /** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
2358
- namespace Companion.$metadata$ {
2359
- abstract class constructor {
2360
- initial(roundNumber: number): games.jass.logic.data.models.table.history.RoundHistory;
2361
- private constructor();
2416
+ namespace Companion {
2417
+ /** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
2418
+ namespace $metadata$ {
2419
+ abstract class constructor {
2420
+ initial(roundNumber: number): games.jass.logic.data.models.table.history.RoundHistory;
2421
+ private constructor();
2422
+ }
2362
2423
  }
2363
2424
  }
2364
2425
  }
@@ -2368,9 +2429,11 @@ export declare namespace games.jass.logic.data.models.table.history {
2368
2429
  protected constructor();
2369
2430
  abstract get createdAt(): any/* kotlin.time.Instant */;
2370
2431
  }
2371
- /** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
2372
- namespace RoundHistoryItem.$metadata$ {
2373
- const constructor: abstract new () => RoundHistoryItem;
2432
+ namespace RoundHistoryItem {
2433
+ /** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
2434
+ namespace $metadata$ {
2435
+ const constructor: abstract new () => RoundHistoryItem;
2436
+ }
2374
2437
  }
2375
2438
  }
2376
2439
  export declare namespace games.jass.logic.data.models.table.round {
@@ -2388,19 +2451,21 @@ export declare namespace games.jass.logic.data.models.table.round {
2388
2451
  hashCode(): number;
2389
2452
  equals(other: Nullable<any>): boolean;
2390
2453
  }
2391
- /** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
2392
- namespace Round.$metadata$ {
2393
- const constructor: abstract new () => Round;
2394
- }
2395
2454
  namespace Round {
2455
+ /** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
2456
+ namespace $metadata$ {
2457
+ const constructor: abstract new () => Round;
2458
+ }
2396
2459
  abstract class Companion extends KtSingleton<Companion.$metadata$.constructor>() {
2397
2460
  private constructor();
2398
2461
  }
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 Companion.$metadata$ {
2401
- abstract class constructor {
2402
- initial(): games.jass.logic.data.models.table.round.Round;
2403
- private constructor();
2462
+ namespace Companion {
2463
+ /** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
2464
+ namespace $metadata$ {
2465
+ abstract class constructor {
2466
+ initial(): games.jass.logic.data.models.table.round.Round;
2467
+ private constructor();
2468
+ }
2404
2469
  }
2405
2470
  }
2406
2471
  }
@@ -2452,19 +2517,21 @@ export declare namespace games.jass.logic.domain.interactors.dealer {
2452
2517
  static values(): Array<games.jass.logic.domain.interactors.dealer.DealerStrategy>;
2453
2518
  static valueOf(value: string): games.jass.logic.domain.interactors.dealer.DealerStrategy;
2454
2519
  }
2455
- /** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
2456
- namespace DealerStrategy.$metadata$ {
2457
- const constructor: abstract new () => DealerStrategy;
2458
- }
2459
2520
  namespace DealerStrategy {
2521
+ /** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
2522
+ namespace $metadata$ {
2523
+ const constructor: abstract new () => DealerStrategy;
2524
+ }
2460
2525
  abstract class Companion extends KtSingleton<Companion.$metadata$.constructor>() {
2461
2526
  private constructor();
2462
2527
  }
2463
- /** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
2464
- namespace Companion.$metadata$ {
2465
- abstract class constructor {
2466
- default(): games.jass.logic.domain.interactors.dealer.DealerStrategy;
2467
- private constructor();
2528
+ namespace Companion {
2529
+ /** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
2530
+ namespace $metadata$ {
2531
+ abstract class constructor {
2532
+ default(): games.jass.logic.domain.interactors.dealer.DealerStrategy;
2533
+ private constructor();
2534
+ }
2468
2535
  }
2469
2536
  }
2470
2537
  }
@@ -2488,9 +2555,11 @@ export declare namespace games.jass.logic.redux.actions {
2488
2555
  ignoreValidation(): boolean;
2489
2556
  readonly __doNotUseOrImplementIt: com.logic.redux.store.definitions.Action["__doNotUseOrImplementIt"] & com.logic.redux.actions.validation.NotValidateIfGameFinished["__doNotUseOrImplementIt"];
2490
2557
  }
2491
- /** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
2492
- namespace ClearAction.$metadata$ {
2493
- const constructor: abstract new () => ClearAction;
2558
+ namespace ClearAction {
2559
+ /** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
2560
+ namespace $metadata$ {
2561
+ const constructor: abstract new () => ClearAction;
2562
+ }
2494
2563
  }
2495
2564
  }
2496
2565
  export declare namespace games.jass.logic.redux.actions.client.from {
@@ -2501,9 +2570,11 @@ export declare namespace games.jass.logic.redux.actions.client.from {
2501
2570
  get actionTag(): string;
2502
2571
  readonly __doNotUseOrImplementIt: com.logic.redux.store.definitions.Action["__doNotUseOrImplementIt"];
2503
2572
  }
2504
- /** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
2505
- namespace FromClientAction.$metadata$ {
2506
- const constructor: abstract new () => FromClientAction;
2573
+ namespace FromClientAction {
2574
+ /** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
2575
+ namespace $metadata$ {
2576
+ const constructor: abstract new () => FromClientAction;
2577
+ }
2507
2578
  }
2508
2579
  }
2509
2580
  export declare namespace games.jass.logic.redux.actions.client.to {
@@ -2522,20 +2593,22 @@ export declare namespace games.jass.logic.redux.actions.client.to {
2522
2593
  hashCode(): number;
2523
2594
  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;
2524
2595
  }
2525
- /** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
2526
- namespace ActionDeliveryPayload.$metadata$ {
2527
- const constructor: abstract new () => ActionDeliveryPayload;
2528
- }
2529
2596
  namespace ActionDeliveryPayload {
2597
+ /** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
2598
+ namespace $metadata$ {
2599
+ const constructor: abstract new () => ActionDeliveryPayload;
2600
+ }
2530
2601
  abstract class Companion extends KtSingleton<Companion.$metadata$.constructor>() {
2531
2602
  private constructor();
2532
2603
  }
2533
- /** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
2534
- namespace Companion.$metadata$ {
2535
- abstract class constructor {
2536
- userFromTable(aid: string, table: games.jass.logic.data.models.table.JassTable, sendToPlayerId: string): games.jass.logic.redux.actions.client.to.ActionDeliveryPayload;
2537
- user(aid: string, tableId: string, sendToPlayerId: string): games.jass.logic.redux.actions.client.to.ActionDeliveryPayload;
2538
- private constructor();
2604
+ namespace Companion {
2605
+ /** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
2606
+ namespace $metadata$ {
2607
+ abstract class constructor {
2608
+ userFromTable(aid: string, table: games.jass.logic.data.models.table.JassTable, sendToPlayerId: string): games.jass.logic.redux.actions.client.to.ActionDeliveryPayload;
2609
+ user(aid: string, tableId: string, sendToPlayerId: string): games.jass.logic.redux.actions.client.to.ActionDeliveryPayload;
2610
+ private constructor();
2611
+ }
2539
2612
  }
2540
2613
  }
2541
2614
  }
@@ -2558,19 +2631,10 @@ export declare namespace games.jass.logic.redux.actions.client.to {
2558
2631
  static values(): Array<games.jass.logic.redux.actions.client.to.ActionDeliveryType>;
2559
2632
  static valueOf(value: string): games.jass.logic.redux.actions.client.to.ActionDeliveryType;
2560
2633
  }
2561
- /** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
2562
- namespace ActionDeliveryType.$metadata$ {
2563
- const constructor: abstract new () => ActionDeliveryType;
2564
- }
2565
2634
  namespace ActionDeliveryType {
2566
- abstract class Companion extends KtSingleton<Companion.$metadata$.constructor>() {
2567
- private constructor();
2568
- }
2569
2635
  /** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
2570
- namespace Companion.$metadata$ {
2571
- abstract class constructor /* implements kotlinx.serialization.internal.SerializerFactory */ {
2572
- private constructor();
2573
- }
2636
+ namespace $metadata$ {
2637
+ const constructor: abstract new () => ActionDeliveryType;
2574
2638
  }
2575
2639
  }
2576
2640
  }
@@ -2581,9 +2645,11 @@ export declare namespace games.jass.logic.redux.actions.client.to {
2581
2645
  get actionTag(): string;
2582
2646
  readonly __doNotUseOrImplementIt: com.logic.redux.store.definitions.Action["__doNotUseOrImplementIt"];
2583
2647
  }
2584
- /** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
2585
- namespace ToClientAction.$metadata$ {
2586
- const constructor: abstract new () => ToClientAction;
2648
+ namespace ToClientAction {
2649
+ /** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
2650
+ namespace $metadata$ {
2651
+ const constructor: abstract new () => ToClientAction;
2652
+ }
2587
2653
  }
2588
2654
  }
2589
2655
  export declare namespace games.jass.logic.redux.actions.game {
@@ -2592,9 +2658,11 @@ export declare namespace games.jass.logic.redux.actions.game {
2592
2658
  get actionTag(): string;
2593
2659
  readonly __doNotUseOrImplementIt: com.logic.redux.store.definitions.Action["__doNotUseOrImplementIt"];
2594
2660
  }
2595
- /** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
2596
- namespace GameAction.$metadata$ {
2597
- const constructor: abstract new () => GameAction;
2661
+ namespace GameAction {
2662
+ /** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
2663
+ namespace $metadata$ {
2664
+ const constructor: abstract new () => GameAction;
2665
+ }
2598
2666
  }
2599
2667
  class RoundStartedAction extends games.jass.logic.redux.actions.game.GameAction.$metadata$.constructor {
2600
2668
  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);
@@ -2613,9 +2681,11 @@ export declare namespace games.jass.logic.redux.actions.game {
2613
2681
  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;
2614
2682
  get actionTag(): string;
2615
2683
  }
2616
- /** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
2617
- namespace RoundStartedAction.$metadata$ {
2618
- const constructor: abstract new () => RoundStartedAction;
2684
+ namespace RoundStartedAction {
2685
+ /** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
2686
+ namespace $metadata$ {
2687
+ const constructor: abstract new () => RoundStartedAction;
2688
+ }
2619
2689
  }
2620
2690
  class RoundEndedAction extends games.jass.logic.redux.actions.game.GameAction.$metadata$.constructor {
2621
2691
  constructor(id: string, gameId: string, roundNumber: number, earnedBiggestPointPlayerId: string, gameLosers: Nullable<Array<string>>, gameWinners: Nullable<Array<string>>, leftPermanentlyPlayers: 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);
@@ -2637,9 +2707,11 @@ export declare namespace games.jass.logic.redux.actions.game {
2637
2707
  copy(id?: string, gameId?: string, roundNumber?: number, earnedBiggestPointPlayerId?: string, gameLosers?: Nullable<Array<string>>, gameWinners?: Nullable<Array<string>>, leftPermanentlyPlayers?: 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;
2638
2708
  get actionTag(): string;
2639
2709
  }
2640
- /** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
2641
- namespace RoundEndedAction.$metadata$ {
2642
- const constructor: abstract new () => RoundEndedAction;
2710
+ namespace RoundEndedAction {
2711
+ /** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
2712
+ namespace $metadata$ {
2713
+ const constructor: abstract new () => RoundEndedAction;
2714
+ }
2643
2715
  }
2644
2716
  class PartyRestartedAction implements com.logic.redux.store.definitions.Action {
2645
2717
  constructor(id: string, roundNumber: number);
@@ -2652,9 +2724,11 @@ export declare namespace games.jass.logic.redux.actions.game {
2652
2724
  get actionTag(): string;
2653
2725
  readonly __doNotUseOrImplementIt: com.logic.redux.store.definitions.Action["__doNotUseOrImplementIt"];
2654
2726
  }
2655
- /** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
2656
- namespace PartyRestartedAction.$metadata$ {
2657
- const constructor: abstract new () => PartyRestartedAction;
2727
+ namespace PartyRestartedAction {
2728
+ /** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
2729
+ namespace $metadata$ {
2730
+ const constructor: abstract new () => PartyRestartedAction;
2731
+ }
2658
2732
  }
2659
2733
  }
2660
2734
  export declare namespace games.jass.logic.redux.actions.mechanic {
@@ -2678,9 +2752,11 @@ export declare namespace games.jass.logic.redux.actions.mechanic {
2678
2752
  get isEnableChoosePartnerScreen(): boolean;
2679
2753
  readonly __doNotUseOrImplementIt: games.jass.logic.redux.actions.mechanic.GameTransition["__doNotUseOrImplementIt"];
2680
2754
  }
2681
- /** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
2682
- namespace RevengeRoomTransition.$metadata$ {
2683
- const constructor: abstract new () => RevengeRoomTransition;
2755
+ namespace RevengeRoomTransition {
2756
+ /** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
2757
+ namespace $metadata$ {
2758
+ const constructor: abstract new () => RevengeRoomTransition;
2759
+ }
2684
2760
  }
2685
2761
  class GameToRoomTransition implements games.jass.logic.redux.actions.mechanic.GameTransition {
2686
2762
  constructor(roomId: string, playerIds: kotlin.collections.KtList<string>, previousPlayers: kotlin.collections.KtList<string>);
@@ -2695,9 +2771,11 @@ export declare namespace games.jass.logic.redux.actions.mechanic {
2695
2771
  equals(other: Nullable<any>): boolean;
2696
2772
  readonly __doNotUseOrImplementIt: games.jass.logic.redux.actions.mechanic.GameTransition["__doNotUseOrImplementIt"];
2697
2773
  }
2698
- /** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
2699
- namespace GameToRoomTransition.$metadata$ {
2700
- const constructor: abstract new () => GameToRoomTransition;
2774
+ namespace GameToRoomTransition {
2775
+ /** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
2776
+ namespace $metadata$ {
2777
+ const constructor: abstract new () => GameToRoomTransition;
2778
+ }
2701
2779
  }
2702
2780
  }
2703
2781
  export declare namespace games.jass.logic.redux.actions.mechanic {
@@ -2707,9 +2785,11 @@ export declare namespace games.jass.logic.redux.actions.mechanic {
2707
2785
  get actionTag(): string;
2708
2786
  readonly __doNotUseOrImplementIt: com.logic.redux.actions.BufferedAction["__doNotUseOrImplementIt"];
2709
2787
  }
2710
- /** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
2711
- namespace MechanicAction.$metadata$ {
2712
- const constructor: abstract new () => MechanicAction;
2788
+ namespace MechanicAction {
2789
+ /** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
2790
+ namespace $metadata$ {
2791
+ const constructor: abstract new () => MechanicAction;
2792
+ }
2713
2793
  }
2714
2794
  interface FirstMechanicAction extends com.logic.redux.store.definitions.Action, com.logic.redux.actions.IgnoreBufferForAction, games.jass.logic.redux.actions.mechanic.PlayerOrderChangeMechanicAction {
2715
2795
  readonly id: string;
@@ -2744,9 +2824,11 @@ export declare namespace games.jass.logic.redux.actions.mechanic {
2744
2824
  get actionTag(): string;
2745
2825
  readonly __doNotUseOrImplementIt: games.jass.logic.redux.actions.mechanic.MechanicAction["__doNotUseOrImplementIt"] & games.jass.logic.redux.actions.mechanic.FirstMechanicAction["__doNotUseOrImplementIt"];
2746
2826
  }
2747
- /** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
2748
- namespace StartGameMechanicAction.$metadata$ {
2749
- const constructor: abstract new () => StartGameMechanicAction;
2827
+ namespace StartGameMechanicAction {
2828
+ /** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
2829
+ namespace $metadata$ {
2830
+ const constructor: abstract new () => StartGameMechanicAction;
2831
+ }
2750
2832
  }
2751
2833
  class StartNewGameMechanicAction extends games.jass.logic.redux.actions.mechanic.MechanicAction.$metadata$.constructor {
2752
2834
  constructor(previousGameId: string, gameId: string, aid?: Nullable<string>);
@@ -2759,9 +2841,11 @@ export declare namespace games.jass.logic.redux.actions.mechanic {
2759
2841
  equals(other: Nullable<any>): boolean;
2760
2842
  get actionTag(): string;
2761
2843
  }
2762
- /** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
2763
- namespace StartNewGameMechanicAction.$metadata$ {
2764
- const constructor: abstract new () => StartNewGameMechanicAction;
2844
+ namespace StartNewGameMechanicAction {
2845
+ /** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
2846
+ namespace $metadata$ {
2847
+ const constructor: abstract new () => StartNewGameMechanicAction;
2848
+ }
2765
2849
  }
2766
2850
  class ContinueGameMechanicAction extends games.jass.logic.redux.actions.mechanic.MechanicAction.$metadata$.constructor implements games.jass.logic.redux.actions.mechanic.FirstMechanicAction, com.logic.redux.actions.validation.NotValidateIfGameFinished {
2767
2851
  constructor(table: games.jass.logic.data.models.table.JassTable, reason: any/* com.logic.data.models.ContinueGameReason */, payload?: Nullable<games.jass.logic.redux.AppStatePayload>, aid?: Nullable<string>);
@@ -2783,9 +2867,11 @@ export declare namespace games.jass.logic.redux.actions.mechanic {
2783
2867
  ignoreValidation(): boolean;
2784
2868
  readonly __doNotUseOrImplementIt: games.jass.logic.redux.actions.mechanic.MechanicAction["__doNotUseOrImplementIt"] & games.jass.logic.redux.actions.mechanic.FirstMechanicAction["__doNotUseOrImplementIt"] & com.logic.redux.actions.validation.NotValidateIfGameFinished["__doNotUseOrImplementIt"];
2785
2869
  }
2786
- /** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
2787
- namespace ContinueGameMechanicAction.$metadata$ {
2788
- const constructor: abstract new () => ContinueGameMechanicAction;
2870
+ namespace ContinueGameMechanicAction {
2871
+ /** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
2872
+ namespace $metadata$ {
2873
+ const constructor: abstract new () => ContinueGameMechanicAction;
2874
+ }
2789
2875
  }
2790
2876
  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 {
2791
2877
  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>);
@@ -2804,20 +2890,22 @@ export declare namespace games.jass.logic.redux.actions.mechanic {
2804
2890
  ignoreValidation(): boolean;
2805
2891
  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"];
2806
2892
  }
2807
- /** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
2808
- namespace FinishingGameMechanicAction.$metadata$ {
2809
- const constructor: abstract new () => FinishingGameMechanicAction;
2810
- }
2811
2893
  namespace FinishingGameMechanicAction {
2894
+ /** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
2895
+ namespace $metadata$ {
2896
+ const constructor: abstract new () => FinishingGameMechanicAction;
2897
+ }
2812
2898
  abstract class Companion extends KtSingleton<Companion.$metadata$.constructor>() {
2813
2899
  private constructor();
2814
2900
  }
2815
- /** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
2816
- namespace Companion.$metadata$ {
2817
- abstract class constructor {
2818
- 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;
2819
- fromTable(table: Nullable<games.jass.logic.data.models.table.JassTable>): games.jass.logic.redux.actions.mechanic.FinishingGameMechanicAction;
2820
- private constructor();
2901
+ namespace Companion {
2902
+ /** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
2903
+ namespace $metadata$ {
2904
+ abstract class constructor {
2905
+ 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;
2906
+ fromTable(table: Nullable<games.jass.logic.data.models.table.JassTable>): games.jass.logic.redux.actions.mechanic.FinishingGameMechanicAction;
2907
+ private constructor();
2908
+ }
2821
2909
  }
2822
2910
  }
2823
2911
  }
@@ -2835,9 +2923,11 @@ export declare namespace games.jass.logic.redux.actions.mechanic {
2835
2923
  ignoreValidation(): boolean;
2836
2924
  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"];
2837
2925
  }
2838
- /** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
2839
- namespace FinishGameMechanicAction.$metadata$ {
2840
- const constructor: abstract new () => FinishGameMechanicAction;
2926
+ namespace FinishGameMechanicAction {
2927
+ /** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
2928
+ namespace $metadata$ {
2929
+ const constructor: abstract new () => FinishGameMechanicAction;
2930
+ }
2841
2931
  }
2842
2932
  interface NavigationMechanicAction extends com.logic.redux.store.definitions.Action {
2843
2933
  readonly sceneId: string;
@@ -2863,9 +2953,11 @@ export declare namespace games.jass.logic.redux.actions.mechanic {
2863
2953
  get actionTag(): string;
2864
2954
  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.NotValidateIfGameFinished["__doNotUseOrImplementIt"];
2865
2955
  }
2866
- /** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
2867
- namespace SceneMechanicAction.$metadata$ {
2868
- const constructor: abstract new () => SceneMechanicAction;
2956
+ namespace SceneMechanicAction {
2957
+ /** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
2958
+ namespace $metadata$ {
2959
+ const constructor: abstract new () => SceneMechanicAction;
2960
+ }
2869
2961
  }
2870
2962
  interface TerminatedAction extends com.logic.redux.store.definitions.Action {
2871
2963
  readonly reason: com.logic.data.models.TerminationGameReason;
@@ -2889,9 +2981,11 @@ export declare namespace games.jass.logic.redux.actions.mechanic {
2889
2981
  get actionTag(): string;
2890
2982
  readonly __doNotUseOrImplementIt: games.jass.logic.redux.actions.mechanic.MechanicAction["__doNotUseOrImplementIt"] & com.logic.redux.store.definitions.Action["__doNotUseOrImplementIt"] & com.logic.redux.actions.BufferedAction["__doNotUseOrImplementIt"] & games.jass.logic.redux.actions.mechanic.PlayerOrderChangeMechanicAction["__doNotUseOrImplementIt"];
2891
2983
  }
2892
- /** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
2893
- namespace TeamsDataMechanicAction.$metadata$ {
2894
- const constructor: abstract new () => TeamsDataMechanicAction;
2984
+ namespace TeamsDataMechanicAction {
2985
+ /** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
2986
+ namespace $metadata$ {
2987
+ const constructor: abstract new () => TeamsDataMechanicAction;
2988
+ }
2895
2989
  }
2896
2990
  class PlayerConnectionChangedMechanicAction extends games.jass.logic.redux.actions.mechanic.MechanicAction.$metadata$.constructor implements com.logic.redux.actions.validation.NotValidateIfGameFinished, com.logic.redux.actions.validation.NotValidateIfGameNotCreated {
2897
2991
  constructor(playerId: string, state: com.logic.data.models.player.PlayerConnectionState, previousState: com.logic.data.models.player.PlayerConnectionState, causeState?: Nullable<com.logic.data.models.player.PlayerConnectionState>, isNoneActivePlayers?: boolean, reconnectUntilTime?: Nullable<string>, aid?: Nullable<string>);
@@ -2914,9 +3008,11 @@ export declare namespace games.jass.logic.redux.actions.mechanic {
2914
3008
  get actionTag(): string;
2915
3009
  readonly __doNotUseOrImplementIt: games.jass.logic.redux.actions.mechanic.MechanicAction["__doNotUseOrImplementIt"] & com.logic.redux.actions.validation.NotValidateIfGameFinished["__doNotUseOrImplementIt"] & com.logic.redux.actions.validation.NotValidateIfGameNotCreated["__doNotUseOrImplementIt"];
2916
3010
  }
2917
- /** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
2918
- namespace PlayerConnectionChangedMechanicAction.$metadata$ {
2919
- const constructor: abstract new () => PlayerConnectionChangedMechanicAction;
3011
+ namespace PlayerConnectionChangedMechanicAction {
3012
+ /** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
3013
+ namespace $metadata$ {
3014
+ const constructor: abstract new () => PlayerConnectionChangedMechanicAction;
3015
+ }
2920
3016
  }
2921
3017
  class MessageMechanicAction extends games.jass.logic.redux.actions.mechanic.MechanicAction.$metadata$.constructor implements com.logic.redux.actions.IgnoreBufferForAction {
2922
3018
  constructor(message: games.jass.logic.data.models.messages.Message, aid?: Nullable<string>);
@@ -2929,9 +3025,11 @@ export declare namespace games.jass.logic.redux.actions.mechanic {
2929
3025
  get actionTag(): string;
2930
3026
  readonly __doNotUseOrImplementIt: games.jass.logic.redux.actions.mechanic.MechanicAction["__doNotUseOrImplementIt"] & com.logic.redux.actions.IgnoreBufferForAction["__doNotUseOrImplementIt"];
2931
3027
  }
2932
- /** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
2933
- namespace MessageMechanicAction.$metadata$ {
2934
- const constructor: abstract new () => MessageMechanicAction;
3028
+ namespace MessageMechanicAction {
3029
+ /** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
3030
+ namespace $metadata$ {
3031
+ const constructor: abstract new () => MessageMechanicAction;
3032
+ }
2935
3033
  }
2936
3034
  }
2937
3035
  export declare interface GameHelper {
@@ -3012,9 +3110,11 @@ export declare namespace di {
3012
3110
  get gameHelper(): GameHelper;
3013
3111
  get gameResources(): GameResources;
3014
3112
  }
3015
- /** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
3016
- namespace EngineHelpersFactory.$metadata$ {
3017
- const constructor: abstract new () => EngineHelpersFactory;
3113
+ namespace EngineHelpersFactory {
3114
+ /** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
3115
+ namespace $metadata$ {
3116
+ const constructor: abstract new () => EngineHelpersFactory;
3117
+ }
3018
3118
  }
3019
3119
  }
3020
3120
  export declare namespace models {
@@ -3027,9 +3127,11 @@ export declare namespace models {
3027
3127
  hashCode(): number;
3028
3128
  equals(other: Nullable<any>): boolean;
3029
3129
  }
3030
- /** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
3031
- namespace BotRatingRange.$metadata$ {
3032
- const constructor: abstract new () => BotRatingRange;
3130
+ namespace BotRatingRange {
3131
+ /** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
3132
+ namespace $metadata$ {
3133
+ const constructor: abstract new () => BotRatingRange;
3134
+ }
3033
3135
  }
3034
3136
  }
3035
3137
  export as namespace io_raspberryapps_game_engine_engine;