Fix async lifecycle ordering, add _spa_init boot phase, update to jqhtml _load_only/_load_render_only flags
🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
24
node_modules/@redis/client/dist/lib/commands/XDEL.js
generated
vendored
Executable file
24
node_modules/@redis/client/dist/lib/commands/XDEL.js
generated
vendored
Executable file
@@ -0,0 +1,24 @@
|
||||
"use strict";
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
/**
|
||||
* Command for removing messages from a stream
|
||||
*/
|
||||
exports.default = {
|
||||
IS_READ_ONLY: false,
|
||||
/**
|
||||
* Constructs the XDEL command to remove one or more messages from a stream
|
||||
*
|
||||
* @param parser - The command parser
|
||||
* @param key - The stream key
|
||||
* @param id - One or more message IDs to delete
|
||||
* @returns The number of messages actually deleted
|
||||
* @see https://redis.io/commands/xdel/
|
||||
*/
|
||||
parseCommand(parser, key, id) {
|
||||
parser.push('XDEL');
|
||||
parser.pushKey(key);
|
||||
parser.pushVariadic(id);
|
||||
},
|
||||
transformReply: undefined
|
||||
};
|
||||
//# sourceMappingURL=XDEL.js.map
|
||||
Reference in New Issue
Block a user