amends "../../schema/lexicon.pkl" lexicon = 1 id = "app.rocksky.player.addDirectoryToQueue" defs = new Mapping { ["main"] { type = "procedure" description = "Add directory to the player's queue" parameters { type = "params" required = List("directory") properties { ["playerId"] = new StringType { type = "string" } ["directory"] = new StringType { type = "string" description = "The directory to add to the queue" } ["position"] = new IntegerType { type = "integer" description = "Position in the queue to insert the directory at, defaults to the end if not specified" } ["shuffle"] = new BooleanType { type = "boolean" description = "Whether to shuffle the added directory in the queue" } } } } }