(guildId: string)
| 135 | } |
| 136 | |
| 137 | async getAllScripts(guildId: string): Promise<ApiResult<Script[]>> { |
| 138 | return await this.get(`/api/guilds/${guildId}/scripts`); |
| 139 | } |
| 140 | |
| 141 | async getAllScriptsWithPlugins(guildId: string): Promise<ApiResult<ScriptsWithPlugins>> { |
| 142 | return await this.get(`/api/guilds/${guildId}/scripts_with_plugins`); |
no test coverage detected