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.
- package/README.md +36 -0
- package/build/src/background-jobs/main.d.ts.map +1 -1
- package/build/src/background-jobs/main.js +8 -1
- package/build/src/background-jobs/types.d.ts +6 -2
- package/build/src/background-jobs/types.d.ts.map +1 -1
- package/build/src/background-jobs/types.js +3 -2
- package/build/src/background-jobs/worker.d.ts +34 -1
- package/build/src/background-jobs/worker.d.ts.map +1 -1
- package/build/src/background-jobs/worker.js +76 -7
- package/build/src/configuration-types.d.ts +5 -0
- package/build/src/configuration-types.d.ts.map +1 -1
- package/build/src/configuration-types.js +2 -1
- package/build/src/configuration.d.ts +4 -0
- package/build/src/configuration.d.ts.map +1 -1
- package/build/src/configuration.js +9 -1
- package/build/src/database/drivers/base.d.ts +47 -1
- package/build/src/database/drivers/base.d.ts.map +1 -1
- package/build/src/database/drivers/base.js +97 -9
- package/build/src/database/query/index.d.ts +10 -1
- package/build/src/database/query/index.d.ts.map +1 -1
- package/build/src/database/query/index.js +13 -4
- package/build/src/database/query/model-class-query.d.ts.map +1 -1
- package/build/src/database/query/model-class-query.js +13 -4
- package/build/src/database/record/index.js +5 -5
- package/build/src/frontend-models/base.d.ts +1 -1
- package/build/src/frontend-models/base.js +2 -2
- package/build/src/frontend-models/websocket-channel.d.ts +7 -6
- package/build/src/frontend-models/websocket-channel.d.ts.map +1 -1
- package/build/src/frontend-models/websocket-channel.js +9 -7
- package/build/src/http-server/client/request.d.ts +5 -0
- package/build/src/http-server/client/request.d.ts.map +1 -1
- package/build/src/http-server/client/request.js +10 -1
- package/build/src/http-server/client/websocket-request.d.ts +10 -1
- package/build/src/http-server/client/websocket-request.d.ts.map +1 -1
- package/build/src/http-server/client/websocket-request.js +14 -2
- package/build/src/http-server/client/websocket-session.d.ts.map +1 -1
- package/build/src/http-server/client/websocket-session.js +2 -1
- package/build/src/logger.d.ts +5 -0
- package/build/src/logger.d.ts.map +1 -1
- package/build/src/logger.js +39 -7
- package/build/src/utils/backtrace-cleaner.d.ts +50 -0
- package/build/src/utils/backtrace-cleaner.d.ts.map +1 -1
- package/build/src/utils/backtrace-cleaner.js +165 -2
- 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
|
|
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}
|