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.
Files changed (42) 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 +2094 -2094
  7. package/Logic_Debertz-core.js +1383 -1371
  8. package/Logic_Debertz-core.js.map +1 -1
  9. package/Logic_Debertz-engine.js +12797 -12808
  10. package/Logic_Debertz-engine.js.map +1 -1
  11. package/Logic_Debertz-game_client.js +6785 -6785
  12. package/Logic_Debertz-game_server.js +1131 -1131
  13. package/Logic_Debertz-game_server.js.map +1 -1
  14. package/error-library-error.js +7 -7
  15. package/kotlin-kotlin-stdlib.js +522 -520
  16. package/kotlin-kotlin-stdlib.js.map +1 -1
  17. package/kotlinx-atomicfu.js +9 -9
  18. package/kotlinx-coroutines-core.js +225 -195
  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/package.json +1 -1
  37. package/random-library-crypto-rand.js +12 -12
  38. package/random-library-secure-random.js +8 -8
  39. package/raspberry-cardgame-lib-core.js +56 -56
  40. package/raspberry-cardgame-lib-logger.js +14 -14
  41. package/raspberry-cardgame-lib-random.js +67 -67
  42. 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;