Hello can you explain to me how I can manage to add the 2 permissions to the same command without one deleting the other
const user1 = [{id: idUser1, type: 'USER', permission: true}]
const user2 = [{id: idUser2, type: 'USER', permission: true}]
client.application.commands.permissions.set({ guild: guildId, command: cmdId, permissions: user1 })
client.application.commands.permissions.set({ guild: guildId, command: cmdId, permissions: user2 })