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:
root
2026-03-06 22:33:38 +00:00
parent 11c95a2886
commit d1ac456279
2718 changed files with 70593 additions and 6320 deletions

50
node_modules/@redis/client/dist/lib/commands/XRANGE.js generated vendored Executable file
View File

@@ -0,0 +1,50 @@
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.xRangeArguments = void 0;
const generic_transformers_1 = require("./generic-transformers");
/**
* Helper function to build XRANGE command arguments
*
* @param start - Start of ID range (use '-' for minimum ID)
* @param end - End of ID range (use '+' for maximum ID)
* @param options - Additional options for the range query
* @returns Array of arguments for the XRANGE command
*/
function xRangeArguments(start, end, options) {
const args = [start, end];
if (options?.COUNT) {
args.push('COUNT', options.COUNT.toString());
}
return args;
}
exports.xRangeArguments = xRangeArguments;
exports.default = {
CACHEABLE: true,
IS_READ_ONLY: true,
/**
* Constructs the XRANGE command to read stream entries in a specific range
*
* @param parser - The command parser
* @param key - The stream key
* @param args - Arguments tuple containing start ID, end ID, and options
* @returns Array of messages in the specified range
* @see https://redis.io/commands/xrange/
*/
parseCommand(parser, key, ...args) {
parser.push('XRANGE');
parser.pushKey(key);
parser.pushVariadic(xRangeArguments(args[0], args[1], args[2]));
},
/**
* Transforms the raw XRANGE reply into structured message objects
*
* @param reply - Raw reply from Redis
* @param preserve - Preserve options (unused)
* @param typeMapping - Type mapping for message fields
* @returns Array of structured message objects
*/
transformReply(reply, preserve, typeMapping) {
return reply.map(generic_transformers_1.transformStreamMessageReply.bind(undefined, typeMapping));
}
};
//# sourceMappingURL=XRANGE.js.map