velocious 1.0.358 → 1.0.360

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/README.md +36 -0
  2. package/build/src/background-jobs/main.d.ts.map +1 -1
  3. package/build/src/background-jobs/main.js +8 -1
  4. package/build/src/background-jobs/types.d.ts +6 -2
  5. package/build/src/background-jobs/types.d.ts.map +1 -1
  6. package/build/src/background-jobs/types.js +3 -2
  7. package/build/src/background-jobs/worker.d.ts +34 -1
  8. package/build/src/background-jobs/worker.d.ts.map +1 -1
  9. package/build/src/background-jobs/worker.js +76 -7
  10. package/build/src/configuration-types.d.ts +5 -0
  11. package/build/src/configuration-types.d.ts.map +1 -1
  12. package/build/src/configuration-types.js +2 -1
  13. package/build/src/configuration.d.ts +4 -0
  14. package/build/src/configuration.d.ts.map +1 -1
  15. package/build/src/configuration.js +9 -1
  16. package/build/src/database/drivers/base.d.ts +47 -1
  17. package/build/src/database/drivers/base.d.ts.map +1 -1
  18. package/build/src/database/drivers/base.js +97 -9
  19. package/build/src/database/query/index.d.ts +10 -1
  20. package/build/src/database/query/index.d.ts.map +1 -1
  21. package/build/src/database/query/index.js +13 -4
  22. package/build/src/database/query/model-class-query.d.ts.map +1 -1
  23. package/build/src/database/query/model-class-query.js +13 -4
  24. package/build/src/database/record/index.js +5 -5
  25. package/build/src/frontend-models/base.d.ts +1 -1
  26. package/build/src/frontend-models/base.js +2 -2
  27. package/build/src/frontend-models/websocket-channel.d.ts +7 -6
  28. package/build/src/frontend-models/websocket-channel.d.ts.map +1 -1
  29. package/build/src/frontend-models/websocket-channel.js +9 -7
  30. package/build/src/http-server/client/request.d.ts +5 -0
  31. package/build/src/http-server/client/request.d.ts.map +1 -1
  32. package/build/src/http-server/client/request.js +10 -1
  33. package/build/src/http-server/client/websocket-request.d.ts +10 -1
  34. package/build/src/http-server/client/websocket-request.d.ts.map +1 -1
  35. package/build/src/http-server/client/websocket-request.js +14 -2
  36. package/build/src/http-server/client/websocket-session.d.ts.map +1 -1
  37. package/build/src/http-server/client/websocket-session.js +2 -1
  38. package/build/src/logger.d.ts +5 -0
  39. package/build/src/logger.d.ts.map +1 -1
  40. package/build/src/logger.js +39 -7
  41. package/build/src/utils/backtrace-cleaner.d.ts +50 -0
  42. package/build/src/utils/backtrace-cleaner.d.ts.map +1 -1
  43. package/build/src/utils/backtrace-cleaner.js +165 -2
  44. package/package.json +1 -1
@@ -321,7 +321,7 @@ export default class FrontendModelBase {
321
321
  static dropWebsocket(): Promise<void>;
322
322
  /**
323
323
  * Sets global metadata on the WebSocket connection. Sent to the server immediately
324
- * over WebSocket and included with every HTTP request as headers.
324
+ * over WebSocket and exposed to WebSocket-borne requests as request metadata.
325
325
  * @param {string} key - Metadata key.
326
326
  * @param {any} value - Metadata value (null to clear).
327
327
  * @returns {void}