Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion api/fishjam-server
16 changes: 12 additions & 4 deletions docusaurus.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,6 @@ function injectTypeDocSidebar(
version: SidebarItemsGeneratorVersion,
items: NormalizedSidebar,
): NormalizedSidebar {
console.log(version.versionName);
const docs_without_python_reference = ["0.20.0", "0.21.0", "0.22.0"];

const exclude_python = docs_without_python_reference.includes(
Expand Down Expand Up @@ -107,11 +106,20 @@ function injectTypeDocSidebar(
injectedItems.push({
type: "category",
label: "Server SDK for Python",
link: { type: "doc", id: "api/server-python/fishjam" },
items: [
{
type: "autogenerated",
dirName: "api/server-python",
type: "category",
label: "fishjam",
link: {
type: "doc",
id: "api/server-python/fishjam",
},
items: [
{
type: "autogenerated",
dirName: "api/server-python/fishjam",
},
],
},
],
});
Expand Down
10 changes: 5 additions & 5 deletions versioned_docs/version-0.23.0/api/server-python/fishjam.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,11 +8,11 @@ custom_edit_url: null


## Submodules
- [events](submodules/events)
- [errors](submodules/errors)
- [room](submodules/room)
- [peer](submodules/peer)
- [agent](submodules/agent)
- [events](fishjam/events)
- [errors](fishjam/errors)
- [room](fishjam/room)
- [peer](fishjam/peer)
- [agent](fishjam/agent)

## FishjamClient
```python
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ sidebar_label: agent
custom_edit_url: null
---

# agent
# fishjam.agent



Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ sidebar_label: errors
custom_edit_url: null
---

# errors
# fishjam.errors



Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ sidebar_label: events
custom_edit_url: null
---

# events
# fishjam.events



Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ sidebar_label: peer
custom_edit_url: null
---

# peer
# fishjam.peer



Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ sidebar_label: room
custom_edit_url: null
---

# room
# fishjam.room



Expand Down