(self, project_id: str = "")
| 243 | return resp.status_code, resp.text |
| 244 | |
| 245 | def get_extensions(self, project_id: str = "") -> dict[str, Any]: |
| 246 | return self.get( |
| 247 | f"/projects/{project_id}/extensions", |
| 248 | { |
| 249 | "project_id": project_id, |
| 250 | }, |
| 251 | ) |
| 252 | |
| 253 | def get_topics( |
| 254 | self, |