Skip to content

Commit

Permalink
ci: regenerated with Speakeasy CLI v1.307.2 (#589)
Browse files Browse the repository at this point in the history
Co-authored-by: speakeasybot <[email protected]>
  • Loading branch information
github-actions[bot] and speakeasybot authored Jun 14, 2024
1 parent 14138f4 commit f72841e
Show file tree
Hide file tree
Showing 2 changed files with 63 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .speakeasy/workflow.lock
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
speakeasyVersion: 1.305.0
speakeasyVersion: 1.307.2
sources:
livepeer-studio-api:
sourceNamespace: livepeer-studio-api
sourceRevisionDigest: sha256:45363ce8c53983bdce5e815ecd07a9798db1e5a1ccecb19e07966d14c1c514c8
sourceBlobDigest: sha256:5beed783f0c6bfd4f2e3998278d6af5f4bf90c86b89664b0d8fc9d6ecca14c6e
sourceRevisionDigest: sha256:f0a2f078c8acc565a8129f116bb01334958fafdb12f7e48bb28fa5d473bb720a
sourceBlobDigest: sha256:6d845c0dcd569197409a44ff61a8eae2666d5ee426778d090b5bf679a3695d60
tags:
- latest
- main
Expand Down
60 changes: 60 additions & 0 deletions openapi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -1071,6 +1071,15 @@ components:
description: ID of the asset from which this asset was created.
creatorId:
$ref: "#/components/schemas/creator-id"
profiles:
type: array
description: |
Requested profiles for the asset to be transcoded into. Currently
only supported for livestream recording assets, configured through
the `stream.recordingSpec` field. If this is not present it means
that default profiles were derived from the input metadata.
items:
$ref: "#/components/schemas/ffmpeg-profile"
storage:
additionalProperties: false
properties:
Expand Down Expand Up @@ -2791,6 +2800,21 @@ paths:
},
],
record: false,
recordingSpec: {
profiles: [
{
width: 1280,
name: "720p",
height: 489382,
bitrate: 3000000,
fps: 30,
fpsDen: 1,
quality: 23,
gop: "2",
profile: Profile.H264Baseline,
},
],
},
multistream: {
targets: [
{
Expand Down Expand Up @@ -2861,6 +2885,21 @@ paths:
},
},
Record: livepeergo.Bool(false),
RecordingSpec: &components.RecordingSpec{
Profiles: []components.FfmpegProfile{
components.FfmpegProfile{
Width: 1280,
Name: "720p",
Height: 489382,
Bitrate: 3000000,
Fps: 30,
FpsDen: livepeergo.Int64(1),
Quality: livepeergo.Int64(23),
Gop: livepeergo.String("2"),
Profile: components.ProfileH264Baseline.ToPointer(),
},
},
},
Multistream: &components.Multistream{
Targets: []components.Target{
components.Target{
Expand Down Expand Up @@ -2929,6 +2968,21 @@ paths:
),
],
record=False,
recording_spec=components.RecordingSpec(
profiles=[
components.FfmpegProfile(
width=1280,
name='720p',
height=489382,
bitrate=3000000,
fps=30,
fps_den=1,
quality=23,
gop='2',
profile=components.Profile.H264_BASELINE,
),
],
),
multistream=components.Multistream(
targets=[
components.Target(
Expand Down Expand Up @@ -4122,6 +4176,7 @@ paths:
async function run() {
const result = await livepeer.webhook.create({
name: "test_webhook",
projectId: "aac12556-4d65-4d34-9fb6-d1f0985eb0a9",
events: [
Events.StreamStarted,
Events.StreamIdle,
Expand Down Expand Up @@ -4154,6 +4209,7 @@ paths:
)
request := components.WebhookInput{
Name: "test_webhook",
ProjectID: livepeergo.String("aac12556-4d65-4d34-9fb6-d1f0985eb0a9"),
Events: []components.Events{
components.EventsStreamStarted,
components.EventsStreamIdle,
Expand Down Expand Up @@ -4184,6 +4240,7 @@ paths:
res = s.webhook.create(request=components.WebhookInput(
name='test_webhook',
project_id='aac12556-4d65-4d34-9fb6-d1f0985eb0a9',
events=[
components.Events.STREAM_STARTED,
components.Events.STREAM_IDLE,
Expand Down Expand Up @@ -4327,6 +4384,7 @@ paths:
async function run() {
const result = await livepeer.webhook.update("<value>", {
name: "test_webhook",
projectId: "aac12556-4d65-4d34-9fb6-d1f0985eb0a9",
events: [
Events.StreamStarted,
Events.StreamIdle,
Expand Down Expand Up @@ -4361,6 +4419,7 @@ paths:
webhook := components.WebhookInput{
Name: "test_webhook",
ProjectID: livepeergo.String("aac12556-4d65-4d34-9fb6-d1f0985eb0a9"),
Events: []components.Events{
components.EventsStreamStarted,
components.EventsStreamIdle,
Expand Down Expand Up @@ -4391,6 +4450,7 @@ paths:
res = s.webhook.update(id='<value>', webhook=components.WebhookInput(
name='test_webhook',
project_id='aac12556-4d65-4d34-9fb6-d1f0985eb0a9',
events=[
components.Events.STREAM_STARTED,
components.Events.STREAM_IDLE,
Expand Down

0 comments on commit f72841e

Please sign in to comment.