client_plugin_logic_deb 1.8.457 → 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.
Files changed (44) 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 +133 -133
  4. package/Logic_Debertz-ai_module.js +335 -335
  5. package/Logic_Debertz-client_plugin.d.ts +4 -2
  6. package/Logic_Debertz-client_plugin.js +2109 -2109
  7. package/Logic_Debertz-core.js +1740 -1518
  8. package/Logic_Debertz-core.js.map +1 -1
  9. package/Logic_Debertz-engine.js +13155 -13016
  10. package/Logic_Debertz-engine.js.map +1 -1
  11. package/Logic_Debertz-game_client.js +6840 -6840
  12. package/Logic_Debertz-game_server.js +1173 -1173
  13. package/Logic_Debertz-game_server.js.map +1 -1
  14. package/error-library-error.js +7 -7
  15. package/kotlin-kotlin-stdlib.js +536 -534
  16. package/kotlin-kotlin-stdlib.js.map +1 -1
  17. package/kotlinx-atomicfu.js +9 -9
  18. package/kotlinx-coroutines-core.js +226 -196
  19. package/kotlinx-coroutines-core.js.map +1 -1
  20. package/kotlinx-io-kotlinx-io-bytestring.js +20 -20
  21. package/kotlinx-io-kotlinx-io-core.js +52 -52
  22. package/kotlinx-serialization-kotlinx-serialization-core.js +195 -195
  23. package/kotlinx-serialization-kotlinx-serialization-json.js +128 -128
  24. package/ktor-ktor-client-content-negotiation.js +35 -35
  25. package/ktor-ktor-client-core.js +126 -126
  26. package/ktor-ktor-client-logging.js +56 -56
  27. package/ktor-ktor-events.js +6 -6
  28. package/ktor-ktor-http-cio.js +74 -74
  29. package/ktor-ktor-http.js +106 -106
  30. package/ktor-ktor-io.js +73 -73
  31. package/ktor-ktor-serialization-kotlinx-json.js +1 -1
  32. package/ktor-ktor-serialization-kotlinx.js +33 -33
  33. package/ktor-ktor-serialization.js +19 -19
  34. package/ktor-ktor-utils.js +105 -105
  35. package/ktor-ktor-websockets.js +16 -16
  36. package/okio-parent-okio.js +15 -0
  37. package/okio-parent-okio.js.map +1 -0
  38. package/package.json +3 -2
  39. package/random-library-crypto-rand.js +12 -12
  40. package/random-library-secure-random.js +8 -8
  41. package/raspberry-cardgame-lib-core.js +56 -56
  42. package/raspberry-cardgame-lib-logger.js +14 -14
  43. package/raspberry-cardgame-lib-random.js +67 -67
  44. package/uuid.js +20 -20
@@ -263,13 +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, 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
+ get compressLogsEnabled(): boolean;
269
270
  get logsDirectoryPath(): Nullable<string>;
270
271
  get fileNameFormat(): string;
272
+ get delayBeforeCompressLogs(): any/* kotlin.time.Duration */;
271
273
  get requireDirectoryPath(): string;
272
- copy(fileLogsEnabled?: boolean, deleteFilesOnClear?: 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;
273
275
  toString(): string;
274
276
  hashCode(): number;
275
277
  equals(other: Nullable<any>): boolean;