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

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

@@ -0,0 +1,42 @@
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
const generic_transformers_1 = require("./generic-transformers");
exports.default = {
/**
* Add a new element into the vector set specified by key
*
* @param parser - The command parser
* @param key - The name of the key that will hold the vector set data
* @param vector - The vector data as array of numbers
* @param element - The name of the element being added to the vector set
* @param options - Optional parameters for vector addition
* @see https://redis.io/commands/vadd/
*/
parseCommand(parser, key, vector, element, options) {
parser.push('VADD');
parser.pushKey(key);
if (options?.REDUCE !== undefined) {
parser.push('REDUCE', options.REDUCE.toString());
}
parser.push('VALUES', vector.length.toString());
for (const value of vector) {
parser.push((0, generic_transformers_1.transformDoubleArgument)(value));
}
parser.push(element);
if (options?.CAS) {
parser.push('CAS');
}
options?.QUANT && parser.push(options.QUANT);
if (options?.EF !== undefined) {
parser.push('EF', options.EF.toString());
}
if (options?.SETATTR) {
parser.push('SETATTR', JSON.stringify(options.SETATTR));
}
if (options?.M !== undefined) {
parser.push('M', options.M.toString());
}
},
transformReply: generic_transformers_1.transformBooleanReply
};
//# sourceMappingURL=VADD.js.map