Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: 🐝 Update Specs - Generate #708

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
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
8 changes: 4 additions & 4 deletions .speakeasy/workflow.lock
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
speakeasyVersion: 1.488.0
speakeasyVersion: 1.517.3
sources:
livepeer-studio-api:
sourceNamespace: livepeer-studio-api
sourceRevisionDigest: sha256:080442eee9caa414607243ffc49e136e2945fe4de0ff3f69fb2745a9bbaab6db
sourceBlobDigest: sha256:aa1eb89ec2088921bffdf630acb4a5a9169b5384806ebcdb19a321a6ed15dceb
sourceRevisionDigest: sha256:18651ccc4884a2b089f9d0c6673b631c9d7980c813e63d14bff63e7a4f35240b
sourceBlobDigest: sha256:50f137973ae47156ff6dc3811e285de7ae10db626653de49f76cdbfbc82f7e44
tags:
- latest
- speakeasy-sdk-regen-1739232219
- speakeasy-sdk-regen-1739318631
- 1.0.0
targets: {}
workflow:
Expand Down
40 changes: 34 additions & 6 deletions ai/api-reference/gateway.openapi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -856,12 +856,27 @@ paths:
summary: Live Video To Video
description: Apply transformations to a live video streamed to the returned endpoints.
operationId: genLiveVideoToVideo
security:
- HTTPBearer: []
parameters:
- name: requestID
in: header
required: false
schema:
type: string
title: Requestid
- name: streamID
in: header
required: false
schema:
type: string
title: Streamid
requestBody:
required: true
content:
application/json:
schema:
$ref: '#/components/schemas/LiveVideoToVideoParams'
required: true
responses:
'200':
description: Successful Response
Expand All @@ -871,31 +886,29 @@ paths:
$ref: '#/components/schemas/LiveVideoToVideoResponse'
x-speakeasy-name-override: data
'400':
description: Bad Request
content:
application/json:
schema:
$ref: '#/components/schemas/HTTPError'
description: Bad Request
'401':
description: Unauthorized
content:
application/json:
schema:
$ref: '#/components/schemas/HTTPError'
description: Unauthorized
'500':
description: Internal Server Error
content:
application/json:
schema:
$ref: '#/components/schemas/HTTPError'
description: Internal Server Error
'422':
description: Validation Error
content:
application/json:
schema:
$ref: '#/components/schemas/HTTPValidationError'
security:
- HTTPBearer: []
x-speakeasy-name-override: liveVideoToVideo
x-codeSamples:
- lang: typescript
Expand Down Expand Up @@ -1512,6 +1525,16 @@ components:
title: Params
description: Initial parameters for the pipeline.
default: {}
gateway_request_id:
type: string
title: Gateway Request Id
description: The ID of the Gateway request (for logging purposes).
default: ''
stream_id:
type: string
title: Stream Id
description: The Stream ID (for logging purposes).
default: ''
type: object
required:
- subscribe_url
Expand All @@ -1538,6 +1561,11 @@ components:
title: Events Url
description: URL for subscribing to events for pipeline status and logs
default: ''
request_id:
type: string
title: Request Id
description: The ID generated for this request
default: ''
type: object
required:
- subscribe_url
Expand Down