Skip to content

Commit 4f2a162

Browse files
ci: regenerated with Speakeasy CLI v1.305.0 (#587)
Co-authored-by: speakeasybot <[email protected]>
1 parent f36113c commit 4f2a162

File tree

2 files changed

+48
-4
lines changed

2 files changed

+48
-4
lines changed

.speakeasy/workflow.lock

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
1-
speakeasyVersion: 1.299.10
1+
speakeasyVersion: 1.305.0
22
sources:
33
livepeer-studio-api:
44
sourceNamespace: livepeer-studio-api
5-
sourceRevisionDigest: sha256:5a428d18b17a2222136d999b7902f930f71e91a2713e82703d2f258e92947710
6-
sourceBlobDigest: sha256:535883213f543d89ee6b25abb75cda97bf693cc15dd833f4edae4192f5c60833
5+
sourceRevisionDigest: sha256:45363ce8c53983bdce5e815ecd07a9798db1e5a1ccecb19e07966d14c1c514c8
6+
sourceBlobDigest: sha256:5beed783f0c6bfd4f2e3998278d6af5f4bf90c86b89664b0d8fc9d6ecca14c6e
77
tags:
88
- latest
99
- main

openapi.yaml

+45-1
Original file line numberDiff line numberDiff line change
@@ -181,6 +181,10 @@ components:
181181
type: string
182182
readOnly: true
183183
deprecated: true
184+
projectId:
185+
type: string
186+
description: The ID of the project
187+
example: aac12556-4d65-4d34-9fb6-d1f0985eb0a9
184188
createdAt:
185189
type: number
186190
readOnly: true
@@ -604,12 +608,31 @@ components:
604608
height: 720
605609
items:
606610
$ref: "#/components/schemas/ffmpeg-profile"
611+
projectId:
612+
type: string
613+
description: The ID of the project
614+
example: aac12556-4d65-4d34-9fb6-d1f0985eb0a9
607615
record:
608616
description: |
609617
Should this stream be recorded? Uses default settings. For more
610618
customization, create and configure an object store.
611619
type: boolean
612620
example: false
621+
recordingSpec:
622+
type: object
623+
description: |
624+
Configuration for recording the stream. This can only be set if
625+
`record` is true.
626+
additionalProperties: false
627+
properties:
628+
profiles:
629+
type: array
630+
items:
631+
$ref: "#/components/schemas/ffmpeg-profile"
632+
description: |
633+
Profiles to record the stream in. If not specified, the stream
634+
will be recorded in the same profiles as the stream itself. Keep
635+
in mind that the source rendition will always be recorded.
613636
multistream:
614637
type: object
615638
additionalProperties: false
@@ -662,6 +685,8 @@ components:
662685
$ref: "#/components/schemas/ffmpeg-profile"
663686
record:
664687
$ref: "#/components/schemas/stream/properties/record"
688+
recordingSpec:
689+
$ref: "#/components/schemas/stream/properties/recordingSpec"
665690
multistream:
666691
$ref: "#/components/schemas/stream/properties/multistream"
667692
userTags:
@@ -852,6 +877,10 @@ components:
852877
type: string
853878
example: de7818e7-610a-4057-8f6f-b785dc1e6f88
854879
description: Points to parent stream object
880+
projectId:
881+
type: string
882+
description: The ID of the project
883+
example: aac12556-4d65-4d34-9fb6-d1f0985eb0a9
855884
record:
856885
description: >
857886
Whether the stream should be recorded. Uses default settings. For more customization, create and configure an object store.
@@ -884,6 +913,8 @@ components:
884913
type: array
885914
items:
886915
$ref: "#/components/schemas/ffmpeg-profile"
916+
recordingSpec:
917+
$ref: "#/components/schemas/stream/properties/recordingSpec"
887918
error:
888919
type: object
889920
properties:
@@ -1252,6 +1283,15 @@ components:
12521283
readOnly: true
12531284
type: string
12541285
description: URL to access file via HTTP through an IPFS gateway
1286+
new-signing-key-payload:
1287+
additionalProperties: false
1288+
properties:
1289+
name:
1290+
type: string
1291+
description: Name of the signing key
1292+
projectId:
1293+
type: string
1294+
description: Project ID to which this signing key belongs
12551295
new-asset-payload:
12561296
additionalProperties: false
12571297
required:
@@ -2067,6 +2107,10 @@ components:
20672107
type: boolean
20682108
description: Disable the signing key to allow rotation safely
20692109
example: false
2110+
projectId:
2111+
type: string
2112+
description: The ID of the project
2113+
example: aac12556-4d65-4d34-9fb
20702114
user:
20712115
type: object
20722116
required:
@@ -7690,7 +7734,7 @@ paths:
76907734
)
76917735
76927736
7693-
res = s.session.get_recorded(parent_id='<value>', record=1)
7737+
res = s.session.get_recorded(parent_id='<value>', record=True)
76947738
76957739
if res.data is not None:
76967740
# handle response

0 commit comments

Comments
 (0)