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
29 changes: 0 additions & 29 deletions .github/workflows/docusaurus-deploy.yml

This file was deleted.

1 change: 0 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,6 @@ ts/
!.yarn/releases
!.yarn/sdks
!.yarn/versions
docusaurus/video/docusaurus/shared
node_modules/.yarn-integrity

node_modules
4 changes: 1 addition & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -102,6 +102,4 @@ docker run --platform=linux/amd64 -v $(pwd):/local ghcr.io/getstream/protobuf-ge

## Video API and server-side SDK documentation

This repository hosts the [API and server-side SDK documentation](https://getstream.io/video/docs/api/) for video.

For more info please see [the nested readme file](./docusaurus/video/docusaurus/README.md)
Is hosted here: https://github.com/GetStream/docs-content
31 changes: 31 additions & 0 deletions docs/chat_v2_openapi.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
<!-- HTML for static distribution bundle build -->
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<title>Swagger UI</title>
<link rel="stylesheet" type="text/css" href="dist/swagger-ui.css" />
<link rel="stylesheet" type="text/css" href="dist/index.css" />
<link
data-react-helmet="true"
rel="icon"
type="image/png"
sizes="32x32"
href="dist/favicon-32x32.png"
/>
<link
data-react-helmet="true"
rel="icon"
type="image/png"
sizes="96x96"
href="dist/favicon-96x96.png"
/>
</head>

<body>
<div id="swagger-ui"></div>
<script src="dist/swagger-ui-bundle.js" charset="UTF-8"></script>
<script src="dist/swagger-ui-standalone-preset.js" charset="UTF-8"></script>
<script src="dist/swagger-initializer_chat_v2.js" charset="UTF-8"></script>
</body>
</html>
35 changes: 21 additions & 14 deletions docs/dist/swagger-initializer.js
Original file line number Diff line number Diff line change
@@ -1,24 +1,31 @@
window.onload = function() {
window.onload = function () {
window.ui = SwaggerUIBundle({
urls: [
{
name: "Chat",
url:"https://raw.githubusercontent.com/GetStream/protocol/main/openapi/chat-openapi.yaml"
name: 'Chat',
url: 'https://raw.githubusercontent.com/GetStream/protocol/main/openapi/chat-openapi.yaml',
},
{
name: "Video",
url:"https://raw.githubusercontent.com/GetStream/protocol/main/openapi/video-openapi.yaml"
}
name: 'Video',
url: 'https://raw.githubusercontent.com/GetStream/protocol/main/openapi/video-openapi.yaml',
},
{
name: 'Chat v2',
url: 'https://raw.githubusercontent.com/GetStream/protocol/main/openapi/v2/chat-serverside-api.yaml',
},
{
name: 'Video v2',
url: 'https://raw.githubusercontent.com/GetStream/protocol/main/openapi/v2/video-serverside-api.yaml',
},
{
name: 'Moderation v2',
url: 'https://raw.githubusercontent.com/GetStream/protocol/main/openapi/v2/moderation-serverside-api.yaml',
},
],
dom_id: '#swagger-ui',
deepLinking: true,
presets: [
SwaggerUIBundle.presets.apis,
SwaggerUIStandalonePreset
],
plugins: [
SwaggerUIBundle.plugins.DownloadUrl,
],
layout: "StandaloneLayout"
presets: [SwaggerUIBundle.presets.apis, SwaggerUIStandalonePreset],
plugins: [SwaggerUIBundle.plugins.DownloadUrl],
layout: 'StandaloneLayout',
});
};
10 changes: 10 additions & 0 deletions docs/dist/swagger-initializer_chat_v2.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
window.onload = function () {
window.ui = SwaggerUIBundle({
url: 'https://raw.githubusercontent.com/GetStream/protocol/main/openapi/v2/chat-serverside-api.yaml',
dom_id: '#swagger-ui',
deepLinking: true,
presets: [SwaggerUIBundle.presets.apis, SwaggerUIStandalonePreset],
plugins: [SwaggerUIBundle.plugins.DownloadUrl],
layout: 'StandaloneLayout',
});
};
10 changes: 10 additions & 0 deletions docs/dist/swagger-initializer_moderation_v2.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
window.onload = function () {
window.ui = SwaggerUIBundle({
url: 'https://raw.githubusercontent.com/GetStream/protocol/main/openapi/v2/moderation-serverside-api.yaml',
dom_id: '#swagger-ui',
deepLinking: true,
presets: [SwaggerUIBundle.presets.apis, SwaggerUIStandalonePreset],
plugins: [SwaggerUIBundle.plugins.DownloadUrl],
layout: 'StandaloneLayout',
});
};
10 changes: 10 additions & 0 deletions docs/dist/swagger-initializer_video_v2.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
window.onload = function () {
window.ui = SwaggerUIBundle({
url: 'https://raw.githubusercontent.com/GetStream/protocol/main/openapi/v2/video-serverside-api.yaml',
dom_id: '#swagger-ui',
deepLinking: true,
presets: [SwaggerUIBundle.presets.apis, SwaggerUIStandalonePreset],
plugins: [SwaggerUIBundle.plugins.DownloadUrl],
layout: 'StandaloneLayout',
});
};
34 changes: 34 additions & 0 deletions docs/moderation_v2_openapi.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
<!-- HTML for static distribution bundle build -->
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<title>Swagger UI</title>
<link rel="stylesheet" type="text/css" href="dist/swagger-ui.css" />
<link rel="stylesheet" type="text/css" href="dist/index.css" />
<link
data-react-helmet="true"
rel="icon"
type="image/png"
sizes="32x32"
href="dist/favicon-32x32.png"
/>
<link
data-react-helmet="true"
rel="icon"
type="image/png"
sizes="96x96"
href="dist/favicon-96x96.png"
/>
</head>

<body>
<div id="swagger-ui"></div>
<script src="dist/swagger-ui-bundle.js" charset="UTF-8"></script>
<script src="dist/swagger-ui-standalone-preset.js" charset="UTF-8"></script>
<script
src="dist/swagger-initializer_moderation_v2.js"
charset="UTF-8"
></script>
</body>
</html>
31 changes: 31 additions & 0 deletions docs/video_v2_openapi.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
<!-- HTML for static distribution bundle build -->
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<title>Swagger UI</title>
<link rel="stylesheet" type="text/css" href="dist/swagger-ui.css" />
<link rel="stylesheet" type="text/css" href="dist/index.css" />
<link
data-react-helmet="true"
rel="icon"
type="image/png"
sizes="32x32"
href="dist/favicon-32x32.png"
/>
<link
data-react-helmet="true"
rel="icon"
type="image/png"
sizes="96x96"
href="dist/favicon-96x96.png"
/>
</head>

<body>
<div id="swagger-ui"></div>
<script src="dist/swagger-ui-bundle.js" charset="UTF-8"></script>
<script src="dist/swagger-ui-standalone-preset.js" charset="UTF-8"></script>
<script src="dist/swagger-initializer_video_v2.js" charset="UTF-8"></script>
</body>
</html>
1 change: 0 additions & 1 deletion docusaurus/video/.env

This file was deleted.

1 change: 0 additions & 1 deletion docusaurus/video/docusaurus/.env

This file was deleted.

23 changes: 0 additions & 23 deletions docusaurus/video/docusaurus/README.md

This file was deleted.

52 changes: 0 additions & 52 deletions docusaurus/video/docusaurus/docs/api/_common_/CallEventModels.jsx

This file was deleted.

65 changes: 0 additions & 65 deletions docusaurus/video/docusaurus/docs/api/_common_/OpenApiModels.jsx

This file was deleted.

Loading