@logspace/sdk 1.1.4 → 1.1.6

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@logspace/sdk",
3
- "version": "1.1.4",
3
+ "version": "1.1.6",
4
4
  "description": "LogSpace JavaScript SDK for session recording and logging",
5
5
  "type": "module",
6
6
  "main": "./logspace.umd.js",
package/sdk/types.d.ts CHANGED
@@ -146,7 +146,7 @@ export interface SessionLimits {
146
146
  */
147
147
  maxLogs?: number;
148
148
  /** Maximum session size in bytes before auto-ending
149
- * @default 10485760 (10MB)
149
+ * @default 52428800 (50MB)
150
150
  */
151
151
  maxSize?: number;
152
152
  /** Maximum session duration in seconds before auto-ending
@@ -298,7 +298,7 @@ export interface LogSpaceConfig {
298
298
  */
299
299
  privacy?: PrivacyConfig;
300
300
  /** Session limits for protection against memory issues
301
- * @default { maxLogs: 10000, maxSize: 10485760, maxDuration: 1800, idleTimeout: 120, rateLimit: 100, deduplicate: true }
301
+ * @default { maxLogs: 10000, maxSize: 52428800, maxDuration: 1800, idleTimeout: 120, rateLimit: 100, deduplicate: true }
302
302
  */
303
303
  limits?: SessionLimits;
304
304
  /** Configure when to auto-end sessions