velocious 1.0.464 → 1.0.465

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
@@ -3,7 +3,7 @@
3
3
  "velocious": "build/bin/velocious.js"
4
4
  },
5
5
  "name": "velocious",
6
- "version": "1.0.464",
6
+ "version": "1.0.465",
7
7
  "main": "build/index.js",
8
8
  "types": "build/index.d.ts",
9
9
  "files": [
@@ -4254,7 +4254,7 @@ export default class FrontendModelBase {
4254
4254
  * @param {string | number | null} [args.memberId] - Optional member id for member-scoped commands.
4255
4255
  * @param {Record<string, ?>} args.payload - Request payload.
4256
4256
  * @param {string} args.resourcePath - Direct resource path.
4257
- * @returns {Promise<Record<string, ?>>} - Decoded response payload.
4257
+ * @returns {Promise<Record<string, FrontendModelAttributeValue>>} - Decoded response payload.
4258
4258
  */
4259
4259
  static async executeCustomCommand({commandName, commandType, memberId = null, payload, resourcePath}) {
4260
4260
  const serializedPayload = /** @type {Record<string, ?>} */ (serializeFrontendModelTransportValue(payload))
@@ -4279,7 +4279,7 @@ export default class FrontendModelBase {
4279
4279
  scheduleSharedFrontendModelRequestFlush()
4280
4280
  })
4281
4281
 
4282
- const decodedBatchResponse = /** @type {Record<string, ?>} */ (batchResponse)
4282
+ const decodedBatchResponse = /** @type {Record<string, FrontendModelAttributeValue>} */ (batchResponse)
4283
4283
 
4284
4284
  this.throwOnErrorFrontendModelResponse({
4285
4285
  commandType,