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
|
@@ -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,
|
|
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,
|
|
4282
|
+
const decodedBatchResponse = /** @type {Record<string, FrontendModelAttributeValue>} */ (batchResponse)
|
|
4283
4283
|
|
|
4284
4284
|
this.throwOnErrorFrontendModelResponse({
|
|
4285
4285
|
commandType,
|