raspberry_games_server_game_logic 1.8.304 → 1.8.306
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/Kosi-Kaverit-kaverit.js +56 -56
- package/Kosi-Kodein-kodein-di.js +511 -511
- package/Kotlin-DateTime-library-kotlinx-datetime.js +1377 -1377
- package/Logic_Debertz-core.js +1510 -1510
- package/Logic_Debertz-engine.js +14422 -14312
- package/Logic_Debertz-engine.js.map +1 -1
- package/Logic_Debertz-game_server.d.ts +4 -3
- package/Logic_Debertz-game_server.js +1026 -954
- package/Logic_Debertz-game_server.js.map +1 -1
- package/kotlin-kotlin-stdlib.js +10 -10
- package/kotlin-kotlin-stdlib.js.map +1 -1
- package/kotlinx-coroutines-core.js +1449 -1603
- package/kotlinx-coroutines-core.js.map +1 -1
- package/kotlinx-io-kotlinx-io-core.js +316 -316
- package/kotlinx-serialization-kotlinx-serialization-core.js +1801 -1801
- package/kotlinx-serialization-kotlinx-serialization-json.js +1328 -1328
- package/ktor-ktor-client-content-negotiation.js +133 -133
- package/ktor-ktor-client-core.js +1536 -1536
- package/ktor-ktor-client-logging.js +287 -287
- package/ktor-ktor-events.js +6 -6
- package/ktor-ktor-http.js +599 -599
- package/ktor-ktor-io.js +1255 -1255
- package/ktor-ktor-serialization-kotlinx-json.js +7 -7
- package/ktor-ktor-serialization-kotlinx.js +139 -139
- package/ktor-ktor-serialization.js +65 -65
- package/ktor-ktor-utils.js +498 -498
- package/ktor-ktor-websockets.js +41 -41
- package/package.json +1 -1
- package/raspberry-cardgame-lib-core.js +193 -187
- package/raspberry-cardgame-lib-core.js.map +1 -1
- package/raspberry-cardgame-lib-random.js +881 -908
- package/raspberry-cardgame-lib-random.js.map +1 -1
- package/secure-random-secure-random.js +5 -5
- package/uuid.js +11 -11
|
@@ -143,13 +143,12 @@ export declare namespace games.raspberry.card_game.random.data.models {
|
|
|
143
143
|
}
|
|
144
144
|
export declare namespace games.raspberry.card_game.random.data.providers {
|
|
145
145
|
class PoolParams {
|
|
146
|
-
constructor(poolSize?: number, thresholdForUsedPool?: number,
|
|
146
|
+
constructor(poolSize?: number, thresholdForUsedPool?: number, failedRequestAttempts?: number, failedAttemptCooldown?: any/* kotlin.time.Duration */);
|
|
147
147
|
get poolSize(): number;
|
|
148
148
|
get thresholdForUsedPool(): number;
|
|
149
|
-
get requestDurationWarn(): number;
|
|
150
149
|
get failedRequestAttempts(): number;
|
|
151
150
|
get failedAttemptCooldown(): any/* kotlin.time.Duration */;
|
|
152
|
-
copy(poolSize?: number, thresholdForUsedPool?: number,
|
|
151
|
+
copy(poolSize?: number, thresholdForUsedPool?: number, failedRequestAttempts?: number, failedAttemptCooldown?: any/* kotlin.time.Duration */): games.raspberry.card_game.random.data.providers.PoolParams;
|
|
153
152
|
toString(): string;
|
|
154
153
|
hashCode(): number;
|
|
155
154
|
equals(other: Nullable<any>): boolean;
|
|
@@ -1590,6 +1589,7 @@ export declare namespace games.jass.logic.data.models.table.round {
|
|
|
1590
1589
|
get trump(): Nullable<any>/* Nullable<io.raspberryapps.card_game.core.data.models.cards.Suit> */;
|
|
1591
1590
|
get selectedTrump(): any/* io.raspberryapps.card_game.core.data.models.cards.Suit */;
|
|
1592
1591
|
get numberOfBribeOrZero(): number;
|
|
1592
|
+
get nextBribeNumber(): number;
|
|
1593
1593
|
copy(roundNumber?: number, numberOfBribe?: Nullable<number>, trump?: Nullable<any>/* Nullable<io.raspberryapps.card_game.core.data.models.cards.Suit> */): games.jass.logic.data.models.table.round.Round;
|
|
1594
1594
|
toString(): string;
|
|
1595
1595
|
hashCode(): number;
|
|
@@ -1641,6 +1641,7 @@ export declare namespace games.jass.logic.domain.interactors.dealer {
|
|
|
1641
1641
|
get name(): "STANDARD" | "REQUEST_HOST_STANDARD" | "RANDOM_ORG" | "RANDOM_ORG_SIGNED" | "FAKE" | "BASED_ON_PREVIOUS" | "OFFLINE_SHUFFLE_SIMULATION" | "EQUAL_HAND_BY_POINTS" | "EQUAL_HAND_BY_VALUE";
|
|
1642
1642
|
get ordinal(): 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8;
|
|
1643
1643
|
shouldEqualiseHand(): boolean;
|
|
1644
|
+
isRandomOrg(): boolean;
|
|
1644
1645
|
static values(): Array<games.jass.logic.domain.interactors.dealer.DealerStrategy>;
|
|
1645
1646
|
static valueOf(value: string): games.jass.logic.domain.interactors.dealer.DealerStrategy;
|
|
1646
1647
|
}
|