client_plugin_logic_deb 1.8.458 → 1.8.461
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 +22 -22
- package/Kosi-Kodein-kodein-di.js +63 -63
- package/Kotlin-DateTime-library-kotlinx-datetime.js +132 -132
- package/Logic_Debertz-ai_module.js +335 -335
- package/Logic_Debertz-client_plugin.d.ts +3 -2
- package/Logic_Debertz-client_plugin.js +2094 -2094
- package/Logic_Debertz-core.js +1383 -1371
- package/Logic_Debertz-core.js.map +1 -1
- package/Logic_Debertz-engine.js +12797 -12808
- package/Logic_Debertz-engine.js.map +1 -1
- package/Logic_Debertz-game_client.js +6785 -6785
- package/Logic_Debertz-game_server.js +1131 -1131
- package/Logic_Debertz-game_server.js.map +1 -1
- package/error-library-error.js +7 -7
- package/kotlin-kotlin-stdlib.js +522 -520
- package/kotlin-kotlin-stdlib.js.map +1 -1
- package/kotlinx-atomicfu.js +9 -9
- package/kotlinx-coroutines-core.js +225 -195
- package/kotlinx-coroutines-core.js.map +1 -1
- package/kotlinx-io-kotlinx-io-bytestring.js +20 -20
- package/kotlinx-io-kotlinx-io-core.js +52 -52
- package/kotlinx-serialization-kotlinx-serialization-core.js +195 -195
- package/kotlinx-serialization-kotlinx-serialization-json.js +128 -128
- package/ktor-ktor-client-content-negotiation.js +35 -35
- package/ktor-ktor-client-core.js +126 -126
- package/ktor-ktor-client-logging.js +56 -56
- package/ktor-ktor-events.js +6 -6
- package/ktor-ktor-http-cio.js +74 -74
- package/ktor-ktor-http.js +106 -106
- package/ktor-ktor-io.js +73 -73
- package/ktor-ktor-serialization-kotlinx-json.js +1 -1
- package/ktor-ktor-serialization-kotlinx.js +33 -33
- package/ktor-ktor-serialization.js +19 -19
- package/ktor-ktor-utils.js +105 -105
- package/ktor-ktor-websockets.js +16 -16
- package/package.json +1 -1
- package/random-library-crypto-rand.js +12 -12
- package/random-library-secure-random.js +8 -8
- package/raspberry-cardgame-lib-core.js +56 -56
- package/raspberry-cardgame-lib-logger.js +14 -14
- package/raspberry-cardgame-lib-random.js +67 -67
- package/uuid.js +20 -20
|
@@ -263,14 +263,15 @@ export declare namespace com.logic {
|
|
|
263
263
|
}
|
|
264
264
|
export declare namespace com.logic.data.models {
|
|
265
265
|
class CoreConfig {
|
|
266
|
-
constructor(fileLogsEnabled?: boolean, deleteFilesOnClear?: boolean, compressLogsEnabled?: boolean, logsDirectoryPath?: Nullable<string>, fileNameFormat?: string);
|
|
266
|
+
constructor(fileLogsEnabled?: boolean, deleteFilesOnClear?: boolean, compressLogsEnabled?: boolean, logsDirectoryPath?: Nullable<string>, fileNameFormat?: string, delayBeforeCompressLogs?: any/* kotlin.time.Duration */);
|
|
267
267
|
get fileLogsEnabled(): boolean;
|
|
268
268
|
get deleteFilesOnClear(): boolean;
|
|
269
269
|
get compressLogsEnabled(): boolean;
|
|
270
270
|
get logsDirectoryPath(): Nullable<string>;
|
|
271
271
|
get fileNameFormat(): string;
|
|
272
|
+
get delayBeforeCompressLogs(): any/* kotlin.time.Duration */;
|
|
272
273
|
get requireDirectoryPath(): string;
|
|
273
|
-
copy(fileLogsEnabled?: boolean, deleteFilesOnClear?: boolean, compressLogsEnabled?: boolean, logsDirectoryPath?: Nullable<string>, fileNameFormat?: string): com.logic.data.models.CoreConfig;
|
|
274
|
+
copy(fileLogsEnabled?: boolean, deleteFilesOnClear?: boolean, compressLogsEnabled?: boolean, logsDirectoryPath?: Nullable<string>, fileNameFormat?: string, delayBeforeCompressLogs?: any/* kotlin.time.Duration */): com.logic.data.models.CoreConfig;
|
|
274
275
|
toString(): string;
|
|
275
276
|
hashCode(): number;
|
|
276
277
|
equals(other: Nullable<any>): boolean;
|