client_plugin_logic_deb 1.8.458 → 1.8.467

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 (43) hide show
  1. package/Kosi-Kaverit-kaverit.js +22 -22
  2. package/Kosi-Kodein-kodein-di.js +63 -63
  3. package/Kotlin-DateTime-library-kotlinx-datetime.js +132 -132
  4. package/Logic_Debertz-ai_module.js +335 -335
  5. package/Logic_Debertz-client_plugin.d.ts +3 -2
  6. package/Logic_Debertz-client_plugin.js +2092 -2092
  7. package/Logic_Debertz-core.js +1383 -1371
  8. package/Logic_Debertz-core.js.map +1 -1
  9. package/Logic_Debertz-engine.js +12728 -12793
  10. package/Logic_Debertz-engine.js.map +1 -1
  11. package/Logic_Debertz-game_client.js +6823 -6824
  12. package/Logic_Debertz-game_client.js.map +1 -1
  13. package/Logic_Debertz-game_server.js +1131 -1131
  14. package/Logic_Debertz-game_server.js.map +1 -1
  15. package/error-library-error.js +7 -7
  16. package/kotlin-kotlin-stdlib.js +512 -510
  17. package/kotlin-kotlin-stdlib.js.map +1 -1
  18. package/kotlinx-atomicfu.js +9 -9
  19. package/kotlinx-coroutines-core.js +226 -196
  20. package/kotlinx-coroutines-core.js.map +1 -1
  21. package/kotlinx-io-kotlinx-io-bytestring.js +20 -20
  22. package/kotlinx-io-kotlinx-io-core.js +52 -52
  23. package/kotlinx-serialization-kotlinx-serialization-core.js +195 -195
  24. package/kotlinx-serialization-kotlinx-serialization-json.js +128 -128
  25. package/ktor-ktor-client-content-negotiation.js +35 -35
  26. package/ktor-ktor-client-core.js +126 -126
  27. package/ktor-ktor-client-logging.js +56 -56
  28. package/ktor-ktor-events.js +6 -6
  29. package/ktor-ktor-http-cio.js +74 -74
  30. package/ktor-ktor-http.js +106 -106
  31. package/ktor-ktor-io.js +73 -73
  32. package/ktor-ktor-serialization-kotlinx-json.js +1 -1
  33. package/ktor-ktor-serialization-kotlinx.js +33 -33
  34. package/ktor-ktor-serialization.js +19 -19
  35. package/ktor-ktor-utils.js +105 -105
  36. package/ktor-ktor-websockets.js +16 -16
  37. package/package.json +1 -1
  38. package/random-library-crypto-rand.js +12 -12
  39. package/random-library-secure-random.js +8 -8
  40. package/raspberry-cardgame-lib-core.js +56 -56
  41. package/raspberry-cardgame-lib-logger.js +14 -14
  42. package/raspberry-cardgame-lib-random.js +67 -67
  43. 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;