@faiber/faiber-drm 0.10.1 → 0.11.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +4 -1
- package/dist/.tsbuildinfo +1 -1
- package/dist/index.d.ts +79 -0
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +78 -0
- package/dist/index.js.map +1 -1
- package/dist/operations.d.ts +208 -207
- package/dist/operations.d.ts.map +1 -1
- package/dist/operations.js +304 -303
- package/dist/operations.js.map +1 -1
- package/dist/operations.types.d.ts +488 -437
- package/dist/operations.types.d.ts.map +1 -1
- package/package.json +2 -2
|
@@ -23,14 +23,10 @@ export type RouterListAnalysesGetResponse = BackendJson<"Page<CompositionAnalysi
|
|
|
23
23
|
/** Backend response type: Vec<composition_category::Model>. */
|
|
24
24
|
export interface RouterListCompositionCategoriesGetResponseItem extends JsonObject {
|
|
25
25
|
"id": string;
|
|
26
|
-
"
|
|
27
|
-
"
|
|
28
|
-
"entity_type": string;
|
|
29
|
-
"entity_id"?: string | null;
|
|
30
|
-
"request_id"?: string | null;
|
|
31
|
-
"before_data"?: BackendJson<"Json"> | null;
|
|
32
|
-
"after_data"?: BackendJson<"Json"> | null;
|
|
26
|
+
"parent_id"?: string | null;
|
|
27
|
+
"title": string;
|
|
33
28
|
"created_at": string;
|
|
29
|
+
"updated_at": string;
|
|
34
30
|
}
|
|
35
31
|
export type RouterListCompositionCategoriesGetResponse = RouterListCompositionCategoriesGetResponseItem[];
|
|
36
32
|
/** Backend request type: CompositionCategoryInput. */
|
|
@@ -41,14 +37,10 @@ export interface RouterCreateCompositionCategoryPostInput extends JsonObject {
|
|
|
41
37
|
/** Backend response type: composition_category::Model. */
|
|
42
38
|
export interface RouterCreateCompositionCategoryPostResponseData extends JsonObject {
|
|
43
39
|
"id": string;
|
|
44
|
-
"
|
|
45
|
-
"
|
|
46
|
-
"entity_type": string;
|
|
47
|
-
"entity_id"?: string | null;
|
|
48
|
-
"request_id"?: string | null;
|
|
49
|
-
"before_data"?: BackendJson<"Json"> | null;
|
|
50
|
-
"after_data"?: BackendJson<"Json"> | null;
|
|
40
|
+
"parent_id"?: string | null;
|
|
41
|
+
"title": string;
|
|
51
42
|
"created_at": string;
|
|
43
|
+
"updated_at": string;
|
|
52
44
|
}
|
|
53
45
|
export type RouterCreateCompositionCategoryPostResponse = RouterCreateCompositionCategoryPostResponseData;
|
|
54
46
|
/** Backend response type: no-content. */
|
|
@@ -61,14 +53,10 @@ export interface RouterUpdateCompositionCategoryPatchInput extends JsonObject {
|
|
|
61
53
|
/** Backend response type: composition_category::Model. */
|
|
62
54
|
export interface RouterUpdateCompositionCategoryPatchResponseData extends JsonObject {
|
|
63
55
|
"id": string;
|
|
64
|
-
"
|
|
65
|
-
"
|
|
66
|
-
"entity_type": string;
|
|
67
|
-
"entity_id"?: string | null;
|
|
68
|
-
"request_id"?: string | null;
|
|
69
|
-
"before_data"?: BackendJson<"Json"> | null;
|
|
70
|
-
"after_data"?: BackendJson<"Json"> | null;
|
|
56
|
+
"parent_id"?: string | null;
|
|
57
|
+
"title": string;
|
|
71
58
|
"created_at": string;
|
|
59
|
+
"updated_at": string;
|
|
72
60
|
}
|
|
73
61
|
export type RouterUpdateCompositionCategoryPatchResponse = RouterUpdateCompositionCategoryPatchResponseData;
|
|
74
62
|
/** Backend query type: CompositionQuery. */
|
|
@@ -92,29 +80,27 @@ export interface RouterCreateCompositionPostInput extends JsonObject {
|
|
|
92
80
|
/** Backend response type: mixed_media::Model. */
|
|
93
81
|
export interface RouterCreateCompositionPostResponseData extends JsonObject {
|
|
94
82
|
"id": string;
|
|
95
|
-
"
|
|
96
|
-
"
|
|
97
|
-
"
|
|
98
|
-
"
|
|
99
|
-
"
|
|
100
|
-
"
|
|
101
|
-
"
|
|
83
|
+
"library_id": string;
|
|
84
|
+
"category_id"?: string | null;
|
|
85
|
+
"name": string;
|
|
86
|
+
"description"?: string | null;
|
|
87
|
+
"transcription_language": string;
|
|
88
|
+
"status": string;
|
|
89
|
+
"manifest_version": number;
|
|
90
|
+
"published_at"?: string | null;
|
|
102
91
|
"created_at": string;
|
|
92
|
+
"updated_at": string;
|
|
103
93
|
}
|
|
104
94
|
export type RouterCreateCompositionPostResponse = RouterCreateCompositionPostResponseData;
|
|
105
95
|
/** Backend response type: Vec<mixed_media_manifest::Model>. */
|
|
106
|
-
export interface
|
|
96
|
+
export interface RouterListManifestsGetApiV1CompositionsIdManifestsResponseItem extends JsonObject {
|
|
107
97
|
"id": string;
|
|
108
|
-
"
|
|
109
|
-
"
|
|
110
|
-
"
|
|
111
|
-
"entity_id"?: string | null;
|
|
112
|
-
"request_id"?: string | null;
|
|
113
|
-
"before_data"?: BackendJson<"Json"> | null;
|
|
114
|
-
"after_data"?: BackendJson<"Json"> | null;
|
|
98
|
+
"mixed_media_id": string;
|
|
99
|
+
"version": number;
|
|
100
|
+
"document": BackendJson<"Json">;
|
|
115
101
|
"created_at": string;
|
|
116
102
|
}
|
|
117
|
-
export type
|
|
103
|
+
export type RouterListManifestsGetApiV1CompositionsIdManifestsResponse = RouterListManifestsGetApiV1CompositionsIdManifestsResponseItem[];
|
|
118
104
|
/** Backend request type: HistoricalManifestInput. */
|
|
119
105
|
export interface RouterCreateManifestVersionPostInput extends JsonObject {
|
|
120
106
|
"id"?: string | null;
|
|
@@ -124,60 +110,44 @@ export interface RouterCreateManifestVersionPostInput extends JsonObject {
|
|
|
124
110
|
/** Backend response type: mixed_media_manifest::Model. */
|
|
125
111
|
export interface RouterCreateManifestVersionPostResponseData extends JsonObject {
|
|
126
112
|
"id": string;
|
|
127
|
-
"
|
|
128
|
-
"
|
|
129
|
-
"
|
|
130
|
-
"entity_id"?: string | null;
|
|
131
|
-
"request_id"?: string | null;
|
|
132
|
-
"before_data"?: BackendJson<"Json"> | null;
|
|
133
|
-
"after_data"?: BackendJson<"Json"> | null;
|
|
113
|
+
"mixed_media_id": string;
|
|
114
|
+
"version": number;
|
|
115
|
+
"document": BackendJson<"Json">;
|
|
134
116
|
"created_at": string;
|
|
135
117
|
}
|
|
136
118
|
export type RouterCreateManifestVersionPostResponse = RouterCreateManifestVersionPostResponseData;
|
|
137
119
|
/** Backend response type: mixed_media_manifest::Model. */
|
|
138
|
-
export interface
|
|
120
|
+
export interface RouterPublishPostApiV1CompositionsIdPublishResponseData extends JsonObject {
|
|
139
121
|
"id": string;
|
|
140
|
-
"
|
|
141
|
-
"
|
|
142
|
-
"
|
|
143
|
-
"entity_id"?: string | null;
|
|
144
|
-
"request_id"?: string | null;
|
|
145
|
-
"before_data"?: BackendJson<"Json"> | null;
|
|
146
|
-
"after_data"?: BackendJson<"Json"> | null;
|
|
122
|
+
"mixed_media_id": string;
|
|
123
|
+
"version": number;
|
|
124
|
+
"document": BackendJson<"Json">;
|
|
147
125
|
"created_at": string;
|
|
148
126
|
}
|
|
149
|
-
export type
|
|
127
|
+
export type RouterPublishPostApiV1CompositionsIdPublishResponse = RouterPublishPostApiV1CompositionsIdPublishResponseData;
|
|
150
128
|
/** Backend response type: mixed_media_workflow::Model. */
|
|
151
|
-
export interface
|
|
152
|
-
"
|
|
153
|
-
"
|
|
154
|
-
"
|
|
155
|
-
"
|
|
156
|
-
"
|
|
157
|
-
"request_id"?: string | null;
|
|
158
|
-
"before_data"?: BackendJson<"Json"> | null;
|
|
159
|
-
"after_data"?: BackendJson<"Json"> | null;
|
|
160
|
-
"created_at": string;
|
|
129
|
+
export interface RouterGetWorkflowGetApiV1CompositionsIdWorkflowResponseData extends JsonObject {
|
|
130
|
+
"mixed_media_id": string;
|
|
131
|
+
"nodes": BackendJson<"Json">;
|
|
132
|
+
"edges": BackendJson<"Json">;
|
|
133
|
+
"revision": number;
|
|
134
|
+
"updated_at": string;
|
|
161
135
|
}
|
|
162
|
-
export type
|
|
136
|
+
export type RouterGetWorkflowGetApiV1CompositionsIdWorkflowResponse = RouterGetWorkflowGetApiV1CompositionsIdWorkflowResponseData;
|
|
163
137
|
/** Backend request type: WorkflowInput. */
|
|
164
|
-
export interface
|
|
138
|
+
export interface RouterSaveWorkflowPutApiV1CompositionsIdWorkflowInput extends JsonObject {
|
|
165
139
|
"nodes": JsonValue;
|
|
166
140
|
"edges": JsonValue;
|
|
167
141
|
}
|
|
168
142
|
/** Backend response type: mixed_media_workflow::Model. */
|
|
169
|
-
export interface
|
|
170
|
-
"
|
|
171
|
-
"
|
|
172
|
-
"
|
|
173
|
-
"
|
|
174
|
-
"
|
|
175
|
-
"request_id"?: string | null;
|
|
176
|
-
"before_data"?: BackendJson<"Json"> | null;
|
|
177
|
-
"after_data"?: BackendJson<"Json"> | null;
|
|
178
|
-
"created_at": string;
|
|
143
|
+
export interface RouterSaveWorkflowPutApiV1CompositionsIdWorkflowResponseData extends JsonObject {
|
|
144
|
+
"mixed_media_id": string;
|
|
145
|
+
"nodes": BackendJson<"Json">;
|
|
146
|
+
"edges": BackendJson<"Json">;
|
|
147
|
+
"revision": number;
|
|
148
|
+
"updated_at": string;
|
|
179
149
|
}
|
|
180
|
-
export type
|
|
150
|
+
export type RouterSaveWorkflowPutApiV1CompositionsIdWorkflowResponse = RouterSaveWorkflowPutApiV1CompositionsIdWorkflowResponseData;
|
|
181
151
|
/** Backend response type: serde_json::Value. */
|
|
182
152
|
export type RouterDashboardGetResponse = JsonValue;
|
|
183
153
|
/** Backend query type: DrmJobQuery. */
|
|
@@ -199,14 +169,20 @@ export interface RouterCreateJobPostInput extends JsonObject {
|
|
|
199
169
|
/** Backend response type: DrmJobResponse. */
|
|
200
170
|
export interface RouterCreateJobPostResponseData extends JsonObject {
|
|
201
171
|
"id": string;
|
|
202
|
-
"
|
|
203
|
-
"
|
|
204
|
-
"
|
|
205
|
-
"
|
|
206
|
-
"
|
|
207
|
-
"
|
|
208
|
-
"
|
|
172
|
+
"media_id": string;
|
|
173
|
+
"package_id"?: string | null;
|
|
174
|
+
"status": string;
|
|
175
|
+
"stage": string;
|
|
176
|
+
"progress": number;
|
|
177
|
+
"attempts": number;
|
|
178
|
+
"max_attempts": number;
|
|
179
|
+
"next_retry_at"?: string | null;
|
|
180
|
+
"last_error"?: string | null;
|
|
181
|
+
"config": BackendJson<"Json">;
|
|
209
182
|
"created_at": string;
|
|
183
|
+
"updated_at": string;
|
|
184
|
+
"started_at"?: string | null;
|
|
185
|
+
"completed_at"?: string | null;
|
|
210
186
|
"media_name": string;
|
|
211
187
|
"media_type": string;
|
|
212
188
|
}
|
|
@@ -223,14 +199,20 @@ export interface RouterRetryJobPostInput extends JsonObject {
|
|
|
223
199
|
/** Backend response type: DrmJobResponse. */
|
|
224
200
|
export interface RouterRetryJobPostResponseData extends JsonObject {
|
|
225
201
|
"id": string;
|
|
226
|
-
"
|
|
227
|
-
"
|
|
228
|
-
"
|
|
229
|
-
"
|
|
230
|
-
"
|
|
231
|
-
"
|
|
232
|
-
"
|
|
202
|
+
"media_id": string;
|
|
203
|
+
"package_id"?: string | null;
|
|
204
|
+
"status": string;
|
|
205
|
+
"stage": string;
|
|
206
|
+
"progress": number;
|
|
207
|
+
"attempts": number;
|
|
208
|
+
"max_attempts": number;
|
|
209
|
+
"next_retry_at"?: string | null;
|
|
210
|
+
"last_error"?: string | null;
|
|
211
|
+
"config": BackendJson<"Json">;
|
|
233
212
|
"created_at": string;
|
|
213
|
+
"updated_at": string;
|
|
214
|
+
"started_at"?: string | null;
|
|
215
|
+
"completed_at"?: string | null;
|
|
234
216
|
"media_name": string;
|
|
235
217
|
"media_type": string;
|
|
236
218
|
}
|
|
@@ -247,15 +229,14 @@ export interface RouterListExternalReferencesGetQuery extends QueryParams {
|
|
|
247
229
|
}
|
|
248
230
|
/** Backend response type: Vec<external_reference::Model>. */
|
|
249
231
|
export interface RouterListExternalReferencesGetResponseItem extends JsonObject {
|
|
250
|
-
"
|
|
251
|
-
"actor_id"?: string | null;
|
|
252
|
-
"action": string;
|
|
232
|
+
"system": string;
|
|
253
233
|
"entity_type": string;
|
|
254
|
-
"
|
|
255
|
-
"
|
|
256
|
-
"
|
|
257
|
-
"
|
|
234
|
+
"external_id": string;
|
|
235
|
+
"internal_type": string;
|
|
236
|
+
"internal_id": string;
|
|
237
|
+
"metadata": BackendJson<"Json">;
|
|
258
238
|
"created_at": string;
|
|
239
|
+
"updated_at": string;
|
|
259
240
|
}
|
|
260
241
|
export type RouterListExternalReferencesGetResponse = RouterListExternalReferencesGetResponseItem[];
|
|
261
242
|
/** Backend request type: ExternalReferenceInput. */
|
|
@@ -269,28 +250,23 @@ export interface RouterUpsertExternalReferencePostInput extends JsonObject {
|
|
|
269
250
|
}
|
|
270
251
|
/** Backend response type: external_reference::Model. */
|
|
271
252
|
export interface RouterUpsertExternalReferencePostResponseData extends JsonObject {
|
|
272
|
-
"
|
|
273
|
-
"actor_id"?: string | null;
|
|
274
|
-
"action": string;
|
|
253
|
+
"system": string;
|
|
275
254
|
"entity_type": string;
|
|
276
|
-
"
|
|
277
|
-
"
|
|
278
|
-
"
|
|
279
|
-
"
|
|
255
|
+
"external_id": string;
|
|
256
|
+
"internal_type": string;
|
|
257
|
+
"internal_id": string;
|
|
258
|
+
"metadata": BackendJson<"Json">;
|
|
280
259
|
"created_at": string;
|
|
260
|
+
"updated_at": string;
|
|
281
261
|
}
|
|
282
262
|
export type RouterUpsertExternalReferencePostResponse = RouterUpsertExternalReferencePostResponseData;
|
|
283
263
|
/** Backend response type: Vec<folder::Model>. */
|
|
284
264
|
export interface RouterListFoldersGetResponseItem extends JsonObject {
|
|
285
265
|
"id": string;
|
|
286
|
-
"
|
|
287
|
-
"
|
|
288
|
-
"entity_type": string;
|
|
289
|
-
"entity_id"?: string | null;
|
|
290
|
-
"request_id"?: string | null;
|
|
291
|
-
"before_data"?: BackendJson<"Json"> | null;
|
|
292
|
-
"after_data"?: BackendJson<"Json"> | null;
|
|
266
|
+
"parent_id"?: string | null;
|
|
267
|
+
"name": string;
|
|
293
268
|
"created_at": string;
|
|
269
|
+
"updated_at": string;
|
|
294
270
|
}
|
|
295
271
|
export type RouterListFoldersGetResponse = RouterListFoldersGetResponseItem[];
|
|
296
272
|
/** Backend request type: FolderInput. */
|
|
@@ -301,14 +277,10 @@ export interface RouterCreateFolderPostInput extends JsonObject {
|
|
|
301
277
|
/** Backend response type: folder::Model. */
|
|
302
278
|
export interface RouterCreateFolderPostResponseData extends JsonObject {
|
|
303
279
|
"id": string;
|
|
304
|
-
"
|
|
305
|
-
"
|
|
306
|
-
"entity_type": string;
|
|
307
|
-
"entity_id"?: string | null;
|
|
308
|
-
"request_id"?: string | null;
|
|
309
|
-
"before_data"?: BackendJson<"Json"> | null;
|
|
310
|
-
"after_data"?: BackendJson<"Json"> | null;
|
|
280
|
+
"parent_id"?: string | null;
|
|
281
|
+
"name": string;
|
|
311
282
|
"created_at": string;
|
|
283
|
+
"updated_at": string;
|
|
312
284
|
}
|
|
313
285
|
export type RouterCreateFolderPostResponse = RouterCreateFolderPostResponseData;
|
|
314
286
|
/** Backend response type: no-content. */
|
|
@@ -321,27 +293,21 @@ export interface RouterUpdateFolderPatchInput extends JsonObject {
|
|
|
321
293
|
/** Backend response type: folder::Model. */
|
|
322
294
|
export interface RouterUpdateFolderPatchResponseData extends JsonObject {
|
|
323
295
|
"id": string;
|
|
324
|
-
"
|
|
325
|
-
"
|
|
326
|
-
"entity_type": string;
|
|
327
|
-
"entity_id"?: string | null;
|
|
328
|
-
"request_id"?: string | null;
|
|
329
|
-
"before_data"?: BackendJson<"Json"> | null;
|
|
330
|
-
"after_data"?: BackendJson<"Json"> | null;
|
|
296
|
+
"parent_id"?: string | null;
|
|
297
|
+
"name": string;
|
|
331
298
|
"created_at": string;
|
|
299
|
+
"updated_at": string;
|
|
332
300
|
}
|
|
333
301
|
export type RouterUpdateFolderPatchResponse = RouterUpdateFolderPatchResponseData;
|
|
334
302
|
/** Backend response type: Vec<content_library::Model>. */
|
|
335
303
|
export interface RouterListLibrariesGetResponseItem extends JsonObject {
|
|
336
304
|
"id": string;
|
|
337
|
-
"
|
|
338
|
-
"
|
|
339
|
-
"
|
|
340
|
-
"
|
|
341
|
-
"request_id"?: string | null;
|
|
342
|
-
"before_data"?: BackendJson<"Json"> | null;
|
|
343
|
-
"after_data"?: BackendJson<"Json"> | null;
|
|
305
|
+
"name": string;
|
|
306
|
+
"description"?: string | null;
|
|
307
|
+
"status": string;
|
|
308
|
+
"visibility": string;
|
|
344
309
|
"created_at": string;
|
|
310
|
+
"updated_at": string;
|
|
345
311
|
}
|
|
346
312
|
export type RouterListLibrariesGetResponse = RouterListLibrariesGetResponseItem[];
|
|
347
313
|
/** Backend request type: LibraryInput. */
|
|
@@ -355,14 +321,12 @@ export interface RouterCreateLibraryPostInput extends JsonObject {
|
|
|
355
321
|
/** Backend response type: content_library::Model. */
|
|
356
322
|
export interface RouterCreateLibraryPostResponseData extends JsonObject {
|
|
357
323
|
"id": string;
|
|
358
|
-
"
|
|
359
|
-
"
|
|
360
|
-
"
|
|
361
|
-
"
|
|
362
|
-
"request_id"?: string | null;
|
|
363
|
-
"before_data"?: BackendJson<"Json"> | null;
|
|
364
|
-
"after_data"?: BackendJson<"Json"> | null;
|
|
324
|
+
"name": string;
|
|
325
|
+
"description"?: string | null;
|
|
326
|
+
"status": string;
|
|
327
|
+
"visibility": string;
|
|
365
328
|
"created_at": string;
|
|
329
|
+
"updated_at": string;
|
|
366
330
|
}
|
|
367
331
|
export type RouterCreateLibraryPostResponse = RouterCreateLibraryPostResponseData;
|
|
368
332
|
/** Backend response type: no-content. */
|
|
@@ -370,14 +334,12 @@ export type RouterDeleteLibraryDeleteResponse = void;
|
|
|
370
334
|
/** Backend response type: content_library::Model. */
|
|
371
335
|
export interface RouterGetLibraryGetResponseData extends JsonObject {
|
|
372
336
|
"id": string;
|
|
373
|
-
"
|
|
374
|
-
"
|
|
375
|
-
"
|
|
376
|
-
"
|
|
377
|
-
"request_id"?: string | null;
|
|
378
|
-
"before_data"?: BackendJson<"Json"> | null;
|
|
379
|
-
"after_data"?: BackendJson<"Json"> | null;
|
|
337
|
+
"name": string;
|
|
338
|
+
"description"?: string | null;
|
|
339
|
+
"status": string;
|
|
340
|
+
"visibility": string;
|
|
380
341
|
"created_at": string;
|
|
342
|
+
"updated_at": string;
|
|
381
343
|
}
|
|
382
344
|
export type RouterGetLibraryGetResponse = RouterGetLibraryGetResponseData;
|
|
383
345
|
/** Backend request type: LibraryInput. */
|
|
@@ -391,59 +353,63 @@ export interface RouterUpdateLibraryPatchInput extends JsonObject {
|
|
|
391
353
|
/** Backend response type: content_library::Model. */
|
|
392
354
|
export interface RouterUpdateLibraryPatchResponseData extends JsonObject {
|
|
393
355
|
"id": string;
|
|
394
|
-
"
|
|
395
|
-
"
|
|
396
|
-
"
|
|
397
|
-
"
|
|
398
|
-
"request_id"?: string | null;
|
|
399
|
-
"before_data"?: BackendJson<"Json"> | null;
|
|
400
|
-
"after_data"?: BackendJson<"Json"> | null;
|
|
356
|
+
"name": string;
|
|
357
|
+
"description"?: string | null;
|
|
358
|
+
"status": string;
|
|
359
|
+
"visibility": string;
|
|
401
360
|
"created_at": string;
|
|
361
|
+
"updated_at": string;
|
|
402
362
|
}
|
|
403
363
|
export type RouterUpdateLibraryPatchResponse = RouterUpdateLibraryPatchResponseData;
|
|
404
364
|
/** Backend response type: Vec<content_category::Model>. */
|
|
405
365
|
export interface RouterListCategoriesGetResponseItem extends JsonObject {
|
|
406
366
|
"id": string;
|
|
407
|
-
"
|
|
408
|
-
"
|
|
409
|
-
"
|
|
410
|
-
"
|
|
411
|
-
"request_id"?: string | null;
|
|
412
|
-
"before_data"?: BackendJson<"Json"> | null;
|
|
413
|
-
"after_data"?: BackendJson<"Json"> | null;
|
|
367
|
+
"mixed_media_id"?: string | null;
|
|
368
|
+
"library_id": string;
|
|
369
|
+
"parent_id"?: string | null;
|
|
370
|
+
"title": string;
|
|
414
371
|
"created_at": string;
|
|
372
|
+
"updated_at": string;
|
|
373
|
+
"archived_at"?: string | null;
|
|
415
374
|
}
|
|
416
375
|
export type RouterListCategoriesGetResponse = RouterListCategoriesGetResponseItem[];
|
|
417
376
|
/** Backend request type: GenericCategoryInput. */
|
|
418
|
-
export interface
|
|
377
|
+
export interface RouterCreateCategoryPostApiV1LibrariesIdCategoriesInput extends JsonObject {
|
|
419
378
|
"id"?: string | null;
|
|
420
379
|
"parent_id"?: string | null;
|
|
421
380
|
"title": string;
|
|
422
381
|
}
|
|
423
382
|
/** Backend response type: content_category::Model. */
|
|
424
|
-
export interface
|
|
383
|
+
export interface RouterCreateCategoryPostApiV1LibrariesIdCategoriesResponseData extends JsonObject {
|
|
425
384
|
"id": string;
|
|
426
|
-
"
|
|
427
|
-
"
|
|
428
|
-
"
|
|
429
|
-
"
|
|
430
|
-
"request_id"?: string | null;
|
|
431
|
-
"before_data"?: BackendJson<"Json"> | null;
|
|
432
|
-
"after_data"?: BackendJson<"Json"> | null;
|
|
385
|
+
"mixed_media_id"?: string | null;
|
|
386
|
+
"library_id": string;
|
|
387
|
+
"parent_id"?: string | null;
|
|
388
|
+
"title": string;
|
|
433
389
|
"created_at": string;
|
|
390
|
+
"updated_at": string;
|
|
391
|
+
"archived_at"?: string | null;
|
|
434
392
|
}
|
|
435
|
-
export type
|
|
393
|
+
export type RouterCreateCategoryPostApiV1LibrariesIdCategoriesResponse = RouterCreateCategoryPostApiV1LibrariesIdCategoriesResponseData;
|
|
436
394
|
/** Backend response type: Vec<media_part::Model>. */
|
|
437
395
|
export interface RouterListItemsGetResponseItem extends JsonObject {
|
|
438
396
|
"id": string;
|
|
439
|
-
"
|
|
440
|
-
"
|
|
441
|
-
"
|
|
442
|
-
"
|
|
443
|
-
"
|
|
444
|
-
"
|
|
445
|
-
"
|
|
397
|
+
"mixed_media_id"?: string | null;
|
|
398
|
+
"library_id": string;
|
|
399
|
+
"category_id"?: string | null;
|
|
400
|
+
"title": string;
|
|
401
|
+
"state": string;
|
|
402
|
+
"media_type"?: string | null;
|
|
403
|
+
"duration_seconds": number;
|
|
404
|
+
"textual": BackendJson<"Json">;
|
|
405
|
+
"rewards": BackendJson<"Json">;
|
|
406
|
+
"textual_hint"?: string | null;
|
|
407
|
+
"game_id"?: string | null;
|
|
408
|
+
"primary_media_id"?: string | null;
|
|
409
|
+
"hint_media_id"?: string | null;
|
|
446
410
|
"created_at": string;
|
|
411
|
+
"updated_at": string;
|
|
412
|
+
"archived_at"?: string | null;
|
|
447
413
|
}
|
|
448
414
|
export type RouterListItemsGetResponse = RouterListItemsGetResponseItem[];
|
|
449
415
|
/** Backend request type: ContentItemInput. */
|
|
@@ -462,14 +428,22 @@ export interface RouterCreateItemPostInput extends JsonObject {
|
|
|
462
428
|
/** Backend response type: media_part::Model. */
|
|
463
429
|
export interface RouterCreateItemPostResponseData extends JsonObject {
|
|
464
430
|
"id": string;
|
|
465
|
-
"
|
|
466
|
-
"
|
|
467
|
-
"
|
|
468
|
-
"
|
|
469
|
-
"
|
|
470
|
-
"
|
|
471
|
-
"
|
|
431
|
+
"mixed_media_id"?: string | null;
|
|
432
|
+
"library_id": string;
|
|
433
|
+
"category_id"?: string | null;
|
|
434
|
+
"title": string;
|
|
435
|
+
"state": string;
|
|
436
|
+
"media_type"?: string | null;
|
|
437
|
+
"duration_seconds": number;
|
|
438
|
+
"textual": BackendJson<"Json">;
|
|
439
|
+
"rewards": BackendJson<"Json">;
|
|
440
|
+
"textual_hint"?: string | null;
|
|
441
|
+
"game_id"?: string | null;
|
|
442
|
+
"primary_media_id"?: string | null;
|
|
443
|
+
"hint_media_id"?: string | null;
|
|
472
444
|
"created_at": string;
|
|
445
|
+
"updated_at": string;
|
|
446
|
+
"archived_at"?: string | null;
|
|
473
447
|
}
|
|
474
448
|
export type RouterCreateItemPostResponse = RouterCreateItemPostResponseData;
|
|
475
449
|
/** Backend query type: ContentItemsQuery. */
|
|
@@ -495,37 +469,44 @@ export type RouterLibraryStatsGetResponse = RouterLibraryStatsGetResponseData;
|
|
|
495
469
|
/** Backend response type: no-content. */
|
|
496
470
|
export type RouterArchiveCategoryDeleteResponse = void;
|
|
497
471
|
/** Backend request type: GenericCategoryInput. */
|
|
498
|
-
export interface
|
|
472
|
+
export interface RouterUpdateCategoryPatchApiV1LibrariesLibraryIdCategoriesIdInput extends JsonObject {
|
|
499
473
|
"id"?: string | null;
|
|
500
474
|
"parent_id"?: string | null;
|
|
501
475
|
"title": string;
|
|
502
476
|
}
|
|
503
477
|
/** Backend response type: content_category::Model. */
|
|
504
|
-
export interface
|
|
478
|
+
export interface RouterUpdateCategoryPatchApiV1LibrariesLibraryIdCategoriesIdResponseData extends JsonObject {
|
|
505
479
|
"id": string;
|
|
506
|
-
"
|
|
507
|
-
"
|
|
508
|
-
"
|
|
509
|
-
"
|
|
510
|
-
"request_id"?: string | null;
|
|
511
|
-
"before_data"?: BackendJson<"Json"> | null;
|
|
512
|
-
"after_data"?: BackendJson<"Json"> | null;
|
|
480
|
+
"mixed_media_id"?: string | null;
|
|
481
|
+
"library_id": string;
|
|
482
|
+
"parent_id"?: string | null;
|
|
483
|
+
"title": string;
|
|
513
484
|
"created_at": string;
|
|
485
|
+
"updated_at": string;
|
|
486
|
+
"archived_at"?: string | null;
|
|
514
487
|
}
|
|
515
|
-
export type
|
|
488
|
+
export type RouterUpdateCategoryPatchApiV1LibrariesLibraryIdCategoriesIdResponse = RouterUpdateCategoryPatchApiV1LibrariesLibraryIdCategoriesIdResponseData;
|
|
516
489
|
/** Backend response type: no-content. */
|
|
517
490
|
export type RouterArchiveItemDeleteResponse = void;
|
|
518
491
|
/** Backend response type: media_part::Model. */
|
|
519
492
|
export interface RouterGetItemGetResponseData extends JsonObject {
|
|
520
493
|
"id": string;
|
|
521
|
-
"
|
|
522
|
-
"
|
|
523
|
-
"
|
|
524
|
-
"
|
|
525
|
-
"
|
|
526
|
-
"
|
|
527
|
-
"
|
|
494
|
+
"mixed_media_id"?: string | null;
|
|
495
|
+
"library_id": string;
|
|
496
|
+
"category_id"?: string | null;
|
|
497
|
+
"title": string;
|
|
498
|
+
"state": string;
|
|
499
|
+
"media_type"?: string | null;
|
|
500
|
+
"duration_seconds": number;
|
|
501
|
+
"textual": BackendJson<"Json">;
|
|
502
|
+
"rewards": BackendJson<"Json">;
|
|
503
|
+
"textual_hint"?: string | null;
|
|
504
|
+
"game_id"?: string | null;
|
|
505
|
+
"primary_media_id"?: string | null;
|
|
506
|
+
"hint_media_id"?: string | null;
|
|
528
507
|
"created_at": string;
|
|
508
|
+
"updated_at": string;
|
|
509
|
+
"archived_at"?: string | null;
|
|
529
510
|
}
|
|
530
511
|
export type RouterGetItemGetResponse = RouterGetItemGetResponseData;
|
|
531
512
|
/** Backend request type: ContentItemInput. */
|
|
@@ -544,26 +525,31 @@ export interface RouterUpdateItemPutInput extends JsonObject {
|
|
|
544
525
|
/** Backend response type: media_part::Model. */
|
|
545
526
|
export interface RouterUpdateItemPutResponseData extends JsonObject {
|
|
546
527
|
"id": string;
|
|
547
|
-
"
|
|
548
|
-
"
|
|
549
|
-
"
|
|
550
|
-
"
|
|
551
|
-
"
|
|
552
|
-
"
|
|
553
|
-
"
|
|
528
|
+
"mixed_media_id"?: string | null;
|
|
529
|
+
"library_id": string;
|
|
530
|
+
"category_id"?: string | null;
|
|
531
|
+
"title": string;
|
|
532
|
+
"state": string;
|
|
533
|
+
"media_type"?: string | null;
|
|
534
|
+
"duration_seconds": number;
|
|
535
|
+
"textual": BackendJson<"Json">;
|
|
536
|
+
"rewards": BackendJson<"Json">;
|
|
537
|
+
"textual_hint"?: string | null;
|
|
538
|
+
"game_id"?: string | null;
|
|
539
|
+
"primary_media_id"?: string | null;
|
|
540
|
+
"hint_media_id"?: string | null;
|
|
554
541
|
"created_at": string;
|
|
542
|
+
"updated_at": string;
|
|
543
|
+
"archived_at"?: string | null;
|
|
555
544
|
}
|
|
556
545
|
export type RouterUpdateItemPutResponse = RouterUpdateItemPutResponseData;
|
|
557
546
|
/** Backend response type: Vec<content_item_media::Model>. */
|
|
558
547
|
export interface RouterItemAttachmentsGetResponseItem extends JsonObject {
|
|
559
|
-
"
|
|
560
|
-
"
|
|
561
|
-
"
|
|
562
|
-
"
|
|
563
|
-
"
|
|
564
|
-
"request_id"?: string | null;
|
|
565
|
-
"before_data"?: BackendJson<"Json"> | null;
|
|
566
|
-
"after_data"?: BackendJson<"Json"> | null;
|
|
548
|
+
"content_item_id": string;
|
|
549
|
+
"media_id": string;
|
|
550
|
+
"slot": string;
|
|
551
|
+
"position": number;
|
|
552
|
+
"is_current": boolean;
|
|
567
553
|
"created_at": string;
|
|
568
554
|
}
|
|
569
555
|
export type RouterItemAttachmentsGetResponse = RouterItemAttachmentsGetResponseItem[];
|
|
@@ -576,14 +562,11 @@ export interface RouterAttachMediaPostInput extends JsonObject {
|
|
|
576
562
|
}
|
|
577
563
|
/** Backend response type: content_item_media::Model. */
|
|
578
564
|
export interface RouterAttachMediaPostResponseData extends JsonObject {
|
|
579
|
-
"
|
|
580
|
-
"
|
|
581
|
-
"
|
|
582
|
-
"
|
|
583
|
-
"
|
|
584
|
-
"request_id"?: string | null;
|
|
585
|
-
"before_data"?: BackendJson<"Json"> | null;
|
|
586
|
-
"after_data"?: BackendJson<"Json"> | null;
|
|
565
|
+
"content_item_id": string;
|
|
566
|
+
"media_id": string;
|
|
567
|
+
"slot": string;
|
|
568
|
+
"position": number;
|
|
569
|
+
"is_current": boolean;
|
|
587
570
|
"created_at": string;
|
|
588
571
|
}
|
|
589
572
|
export type RouterAttachMediaPostResponse = RouterAttachMediaPostResponseData;
|
|
@@ -609,14 +592,21 @@ export type RouterUploadMediaPostInput = FormData;
|
|
|
609
592
|
/** Backend response type: MediaResponse. */
|
|
610
593
|
export interface RouterUploadMediaPostResponseData extends JsonObject {
|
|
611
594
|
"id": string;
|
|
612
|
-
"
|
|
613
|
-
"
|
|
614
|
-
"
|
|
615
|
-
"
|
|
616
|
-
"
|
|
617
|
-
"
|
|
618
|
-
"
|
|
595
|
+
"folder_id"?: string | null;
|
|
596
|
+
"name": string;
|
|
597
|
+
"description"?: string | null;
|
|
598
|
+
"media_type": string;
|
|
599
|
+
"mime_type": string;
|
|
600
|
+
"object_key": string;
|
|
601
|
+
"bucket": string;
|
|
602
|
+
"size_bytes": number;
|
|
603
|
+
"duration_seconds"?: number | null;
|
|
604
|
+
"status": string;
|
|
605
|
+
"original_filename"?: string | null;
|
|
606
|
+
"checksum_sha256"?: string | null;
|
|
607
|
+
"archived_at"?: string | null;
|
|
619
608
|
"created_at": string;
|
|
609
|
+
"updated_at": string;
|
|
620
610
|
"tags": BackendJson<"entity::tag::Model">[];
|
|
621
611
|
"transcription"?: BackendJson<"entity::media_transcription::Model"> | null;
|
|
622
612
|
}
|
|
@@ -626,14 +616,21 @@ export type RouterDeleteMediaDeleteResponse = void;
|
|
|
626
616
|
/** Backend response type: MediaResponse. */
|
|
627
617
|
export interface RouterGetMediaGetResponseData extends JsonObject {
|
|
628
618
|
"id": string;
|
|
629
|
-
"
|
|
630
|
-
"
|
|
631
|
-
"
|
|
632
|
-
"
|
|
633
|
-
"
|
|
634
|
-
"
|
|
635
|
-
"
|
|
619
|
+
"folder_id"?: string | null;
|
|
620
|
+
"name": string;
|
|
621
|
+
"description"?: string | null;
|
|
622
|
+
"media_type": string;
|
|
623
|
+
"mime_type": string;
|
|
624
|
+
"object_key": string;
|
|
625
|
+
"bucket": string;
|
|
626
|
+
"size_bytes": number;
|
|
627
|
+
"duration_seconds"?: number | null;
|
|
628
|
+
"status": string;
|
|
629
|
+
"original_filename"?: string | null;
|
|
630
|
+
"checksum_sha256"?: string | null;
|
|
631
|
+
"archived_at"?: string | null;
|
|
636
632
|
"created_at": string;
|
|
633
|
+
"updated_at": string;
|
|
637
634
|
"tags": BackendJson<"entity::tag::Model">[];
|
|
638
635
|
"transcription"?: BackendJson<"entity::media_transcription::Model"> | null;
|
|
639
636
|
}
|
|
@@ -650,14 +647,21 @@ export interface RouterUpdateMediaPatchInput extends JsonObject {
|
|
|
650
647
|
/** Backend response type: MediaResponse. */
|
|
651
648
|
export interface RouterUpdateMediaPatchResponseData extends JsonObject {
|
|
652
649
|
"id": string;
|
|
653
|
-
"
|
|
654
|
-
"
|
|
655
|
-
"
|
|
656
|
-
"
|
|
657
|
-
"
|
|
658
|
-
"
|
|
659
|
-
"
|
|
650
|
+
"folder_id"?: string | null;
|
|
651
|
+
"name": string;
|
|
652
|
+
"description"?: string | null;
|
|
653
|
+
"media_type": string;
|
|
654
|
+
"mime_type": string;
|
|
655
|
+
"object_key": string;
|
|
656
|
+
"bucket": string;
|
|
657
|
+
"size_bytes": number;
|
|
658
|
+
"duration_seconds"?: number | null;
|
|
659
|
+
"status": string;
|
|
660
|
+
"original_filename"?: string | null;
|
|
661
|
+
"checksum_sha256"?: string | null;
|
|
662
|
+
"archived_at"?: string | null;
|
|
660
663
|
"created_at": string;
|
|
664
|
+
"updated_at": string;
|
|
661
665
|
"tags": BackendJson<"entity::tag::Model">[];
|
|
662
666
|
"transcription"?: BackendJson<"entity::media_transcription::Model"> | null;
|
|
663
667
|
}
|
|
@@ -665,14 +669,18 @@ export type RouterUpdateMediaPatchResponse = RouterUpdateMediaPatchResponseData;
|
|
|
665
669
|
/** Backend response type: Vec<PackageResponse>. */
|
|
666
670
|
export interface RouterListPackagesGetResponseItem extends JsonObject {
|
|
667
671
|
"id": string;
|
|
668
|
-
"
|
|
669
|
-
"
|
|
670
|
-
"
|
|
671
|
-
"
|
|
672
|
-
"
|
|
673
|
-
"
|
|
674
|
-
"
|
|
672
|
+
"media_id": string;
|
|
673
|
+
"revision": number;
|
|
674
|
+
"status": string;
|
|
675
|
+
"profile": BackendJson<"Json">;
|
|
676
|
+
"manifest_dash_key"?: string | null;
|
|
677
|
+
"manifest_hls_key"?: string | null;
|
|
678
|
+
"object_prefix": string;
|
|
679
|
+
"checksum_manifest"?: string | null;
|
|
680
|
+
"last_error"?: string | null;
|
|
675
681
|
"created_at": string;
|
|
682
|
+
"updated_at": string;
|
|
683
|
+
"completed_at"?: string | null;
|
|
676
684
|
"dash_url"?: string | null;
|
|
677
685
|
"hls_url"?: string | null;
|
|
678
686
|
}
|
|
@@ -687,14 +695,20 @@ export interface RouterRegeneratePostInput extends JsonObject {
|
|
|
687
695
|
/** Backend response type: drm_job::Model. */
|
|
688
696
|
export interface RouterRegeneratePostResponseData extends JsonObject {
|
|
689
697
|
"id": string;
|
|
690
|
-
"
|
|
691
|
-
"
|
|
692
|
-
"
|
|
693
|
-
"
|
|
694
|
-
"
|
|
695
|
-
"
|
|
696
|
-
"
|
|
698
|
+
"media_id": string;
|
|
699
|
+
"package_id"?: string | null;
|
|
700
|
+
"status": string;
|
|
701
|
+
"stage": string;
|
|
702
|
+
"progress": number;
|
|
703
|
+
"attempts": number;
|
|
704
|
+
"max_attempts": number;
|
|
705
|
+
"next_retry_at"?: string | null;
|
|
706
|
+
"last_error"?: string | null;
|
|
707
|
+
"config": BackendJson<"Json">;
|
|
697
708
|
"created_at": string;
|
|
709
|
+
"updated_at": string;
|
|
710
|
+
"started_at"?: string | null;
|
|
711
|
+
"completed_at"?: string | null;
|
|
698
712
|
}
|
|
699
713
|
export type RouterRegeneratePostResponse = RouterRegeneratePostResponseData;
|
|
700
714
|
/** Backend response type: PlaybackResponse. */
|
|
@@ -713,14 +727,21 @@ export interface RouterBatchMediaPostInput extends JsonObject {
|
|
|
713
727
|
/** Backend response type: Vec<MediaResponse>. */
|
|
714
728
|
export interface RouterBatchMediaPostResponseItem extends JsonObject {
|
|
715
729
|
"id": string;
|
|
716
|
-
"
|
|
717
|
-
"
|
|
718
|
-
"
|
|
719
|
-
"
|
|
720
|
-
"
|
|
721
|
-
"
|
|
722
|
-
"
|
|
730
|
+
"folder_id"?: string | null;
|
|
731
|
+
"name": string;
|
|
732
|
+
"description"?: string | null;
|
|
733
|
+
"media_type": string;
|
|
734
|
+
"mime_type": string;
|
|
735
|
+
"object_key": string;
|
|
736
|
+
"bucket": string;
|
|
737
|
+
"size_bytes": number;
|
|
738
|
+
"duration_seconds"?: number | null;
|
|
739
|
+
"status": string;
|
|
740
|
+
"original_filename"?: string | null;
|
|
741
|
+
"checksum_sha256"?: string | null;
|
|
742
|
+
"archived_at"?: string | null;
|
|
723
743
|
"created_at": string;
|
|
744
|
+
"updated_at": string;
|
|
724
745
|
"tags": BackendJson<"entity::tag::Model">[];
|
|
725
746
|
"transcription"?: BackendJson<"entity::media_transcription::Model"> | null;
|
|
726
747
|
}
|
|
@@ -756,14 +777,21 @@ export interface RouterRegisterExistingMediaPostInput extends JsonObject {
|
|
|
756
777
|
/** Backend response type: MediaResponse. */
|
|
757
778
|
export interface RouterRegisterExistingMediaPostResponseData extends JsonObject {
|
|
758
779
|
"id": string;
|
|
759
|
-
"
|
|
760
|
-
"
|
|
761
|
-
"
|
|
762
|
-
"
|
|
763
|
-
"
|
|
764
|
-
"
|
|
765
|
-
"
|
|
780
|
+
"folder_id"?: string | null;
|
|
781
|
+
"name": string;
|
|
782
|
+
"description"?: string | null;
|
|
783
|
+
"media_type": string;
|
|
784
|
+
"mime_type": string;
|
|
785
|
+
"object_key": string;
|
|
786
|
+
"bucket": string;
|
|
787
|
+
"size_bytes": number;
|
|
788
|
+
"duration_seconds"?: number | null;
|
|
789
|
+
"status": string;
|
|
790
|
+
"original_filename"?: string | null;
|
|
791
|
+
"checksum_sha256"?: string | null;
|
|
792
|
+
"archived_at"?: string | null;
|
|
766
793
|
"created_at": string;
|
|
794
|
+
"updated_at": string;
|
|
767
795
|
"tags": BackendJson<"entity::tag::Model">[];
|
|
768
796
|
"transcription"?: BackendJson<"entity::media_transcription::Model"> | null;
|
|
769
797
|
}
|
|
@@ -771,14 +799,16 @@ export type RouterRegisterExistingMediaPostResponse = RouterRegisterExistingMedi
|
|
|
771
799
|
/** Backend response type: Vec<mixed_media::Model>. */
|
|
772
800
|
export interface RouterListMixedMediaGetResponseItem extends JsonObject {
|
|
773
801
|
"id": string;
|
|
774
|
-
"
|
|
775
|
-
"
|
|
776
|
-
"
|
|
777
|
-
"
|
|
778
|
-
"
|
|
779
|
-
"
|
|
780
|
-
"
|
|
802
|
+
"library_id": string;
|
|
803
|
+
"category_id"?: string | null;
|
|
804
|
+
"name": string;
|
|
805
|
+
"description"?: string | null;
|
|
806
|
+
"transcription_language": string;
|
|
807
|
+
"status": string;
|
|
808
|
+
"manifest_version": number;
|
|
809
|
+
"published_at"?: string | null;
|
|
781
810
|
"created_at": string;
|
|
811
|
+
"updated_at": string;
|
|
782
812
|
}
|
|
783
813
|
export type RouterListMixedMediaGetResponse = RouterListMixedMediaGetResponseItem[];
|
|
784
814
|
/** Backend request type: MixedMediaInput. */
|
|
@@ -792,14 +822,16 @@ export interface RouterCreateMixedMediaPostInput extends JsonObject {
|
|
|
792
822
|
/** Backend response type: mixed_media::Model. */
|
|
793
823
|
export interface RouterCreateMixedMediaPostResponseData extends JsonObject {
|
|
794
824
|
"id": string;
|
|
795
|
-
"
|
|
796
|
-
"
|
|
797
|
-
"
|
|
798
|
-
"
|
|
799
|
-
"
|
|
800
|
-
"
|
|
801
|
-
"
|
|
825
|
+
"library_id": string;
|
|
826
|
+
"category_id"?: string | null;
|
|
827
|
+
"name": string;
|
|
828
|
+
"description"?: string | null;
|
|
829
|
+
"transcription_language": string;
|
|
830
|
+
"status": string;
|
|
831
|
+
"manifest_version": number;
|
|
832
|
+
"published_at"?: string | null;
|
|
802
833
|
"created_at": string;
|
|
834
|
+
"updated_at": string;
|
|
803
835
|
}
|
|
804
836
|
export type RouterCreateMixedMediaPostResponse = RouterCreateMixedMediaPostResponseData;
|
|
805
837
|
/** Backend response type: no-content. */
|
|
@@ -807,14 +839,16 @@ export type RouterDeleteMixedMediaDeleteResponse = void;
|
|
|
807
839
|
/** Backend response type: mixed_media::Model. */
|
|
808
840
|
export interface RouterGetMixedMediaGetResponseData extends JsonObject {
|
|
809
841
|
"id": string;
|
|
810
|
-
"
|
|
811
|
-
"
|
|
812
|
-
"
|
|
813
|
-
"
|
|
814
|
-
"
|
|
815
|
-
"
|
|
816
|
-
"
|
|
842
|
+
"library_id": string;
|
|
843
|
+
"category_id"?: string | null;
|
|
844
|
+
"name": string;
|
|
845
|
+
"description"?: string | null;
|
|
846
|
+
"transcription_language": string;
|
|
847
|
+
"status": string;
|
|
848
|
+
"manifest_version": number;
|
|
849
|
+
"published_at"?: string | null;
|
|
817
850
|
"created_at": string;
|
|
851
|
+
"updated_at": string;
|
|
818
852
|
}
|
|
819
853
|
export type RouterGetMixedMediaGetResponse = RouterGetMixedMediaGetResponseData;
|
|
820
854
|
/** Backend request type: MixedMediaUpdate. */
|
|
@@ -829,14 +863,16 @@ export interface RouterUpdateMixedMediaPatchInput extends JsonObject {
|
|
|
829
863
|
/** Backend response type: mixed_media::Model. */
|
|
830
864
|
export interface RouterUpdateMixedMediaPatchResponseData extends JsonObject {
|
|
831
865
|
"id": string;
|
|
832
|
-
"
|
|
833
|
-
"
|
|
834
|
-
"
|
|
835
|
-
"
|
|
836
|
-
"
|
|
837
|
-
"
|
|
838
|
-
"
|
|
866
|
+
"library_id": string;
|
|
867
|
+
"category_id"?: string | null;
|
|
868
|
+
"name": string;
|
|
869
|
+
"description"?: string | null;
|
|
870
|
+
"transcription_language": string;
|
|
871
|
+
"status": string;
|
|
872
|
+
"manifest_version": number;
|
|
873
|
+
"published_at"?: string | null;
|
|
839
874
|
"created_at": string;
|
|
875
|
+
"updated_at": string;
|
|
840
876
|
}
|
|
841
877
|
export type RouterUpdateMixedMediaPatchResponse = RouterUpdateMixedMediaPatchResponseData;
|
|
842
878
|
/** Backend response type: Option<CompositionAnalysis>. */
|
|
@@ -866,25 +902,24 @@ export interface RouterStartAnalysisPostResponseData extends JsonObject {
|
|
|
866
902
|
}
|
|
867
903
|
export type RouterStartAnalysisPostResponse = RouterStartAnalysisPostResponseData;
|
|
868
904
|
/** Backend request type: CategoryInput. */
|
|
869
|
-
export interface
|
|
905
|
+
export interface RouterCreateCategoryPostApiV1MixedMediaIdCategoriesInput extends JsonObject {
|
|
870
906
|
"title": string;
|
|
871
907
|
"parent_id"?: string | null;
|
|
872
908
|
}
|
|
873
909
|
/** Backend response type: content_category::Model. */
|
|
874
|
-
export interface
|
|
910
|
+
export interface RouterCreateCategoryPostApiV1MixedMediaIdCategoriesResponseData extends JsonObject {
|
|
875
911
|
"id": string;
|
|
876
|
-
"
|
|
877
|
-
"
|
|
878
|
-
"
|
|
879
|
-
"
|
|
880
|
-
"request_id"?: string | null;
|
|
881
|
-
"before_data"?: BackendJson<"Json"> | null;
|
|
882
|
-
"after_data"?: BackendJson<"Json"> | null;
|
|
912
|
+
"mixed_media_id"?: string | null;
|
|
913
|
+
"library_id": string;
|
|
914
|
+
"parent_id"?: string | null;
|
|
915
|
+
"title": string;
|
|
883
916
|
"created_at": string;
|
|
917
|
+
"updated_at": string;
|
|
918
|
+
"archived_at"?: string | null;
|
|
884
919
|
}
|
|
885
|
-
export type
|
|
920
|
+
export type RouterCreateCategoryPostApiV1MixedMediaIdCategoriesResponse = RouterCreateCategoryPostApiV1MixedMediaIdCategoriesResponseData;
|
|
886
921
|
/** Backend response type: KnowledgeSyncSettings. */
|
|
887
|
-
export interface
|
|
922
|
+
export interface RouterGetSettingsGetApiV1MixedMediaIdKnowledgeSyncResponseData extends JsonObject {
|
|
888
923
|
"mixed_media_id": string;
|
|
889
924
|
"enabled": boolean;
|
|
890
925
|
"knowledge_base_id"?: string | null;
|
|
@@ -895,7 +930,7 @@ export interface RouterGetSettingsGetMixedMediaIdKnowledgeSyncResponseData exten
|
|
|
895
930
|
"last_error"?: string | null;
|
|
896
931
|
"last_synced_at"?: string | null;
|
|
897
932
|
}
|
|
898
|
-
export type
|
|
933
|
+
export type RouterGetSettingsGetApiV1MixedMediaIdKnowledgeSyncResponse = RouterGetSettingsGetApiV1MixedMediaIdKnowledgeSyncResponseData;
|
|
899
934
|
/** Backend response type: KnowledgeSyncSettings. */
|
|
900
935
|
export interface RouterSyncNowPostResponseData extends JsonObject {
|
|
901
936
|
"mixed_media_id": string;
|
|
@@ -930,29 +965,21 @@ export type RouterUpdateSettingsPutResponse = RouterUpdateSettingsPutResponseDat
|
|
|
930
965
|
/** Backend response type: mixed_media_manifest::Model. */
|
|
931
966
|
export interface RouterGetManifestGetResponseData extends JsonObject {
|
|
932
967
|
"id": string;
|
|
933
|
-
"
|
|
934
|
-
"
|
|
935
|
-
"
|
|
936
|
-
"entity_id"?: string | null;
|
|
937
|
-
"request_id"?: string | null;
|
|
938
|
-
"before_data"?: BackendJson<"Json"> | null;
|
|
939
|
-
"after_data"?: BackendJson<"Json"> | null;
|
|
968
|
+
"mixed_media_id": string;
|
|
969
|
+
"version": number;
|
|
970
|
+
"document": BackendJson<"Json">;
|
|
940
971
|
"created_at": string;
|
|
941
972
|
}
|
|
942
973
|
export type RouterGetManifestGetResponse = RouterGetManifestGetResponseData;
|
|
943
974
|
/** Backend response type: Vec<mixed_media_manifest::Model>. */
|
|
944
|
-
export interface
|
|
975
|
+
export interface RouterListManifestsGetApiV1MixedMediaIdManifestsResponseItem extends JsonObject {
|
|
945
976
|
"id": string;
|
|
946
|
-
"
|
|
947
|
-
"
|
|
948
|
-
"
|
|
949
|
-
"entity_id"?: string | null;
|
|
950
|
-
"request_id"?: string | null;
|
|
951
|
-
"before_data"?: BackendJson<"Json"> | null;
|
|
952
|
-
"after_data"?: BackendJson<"Json"> | null;
|
|
977
|
+
"mixed_media_id": string;
|
|
978
|
+
"version": number;
|
|
979
|
+
"document": BackendJson<"Json">;
|
|
953
980
|
"created_at": string;
|
|
954
981
|
}
|
|
955
|
-
export type
|
|
982
|
+
export type RouterListManifestsGetApiV1MixedMediaIdManifestsResponse = RouterListManifestsGetApiV1MixedMediaIdManifestsResponseItem[];
|
|
956
983
|
/** Backend request type: PartInput. */
|
|
957
984
|
export interface RouterCreatePartPostInput extends JsonObject {
|
|
958
985
|
"category_id"?: string | null;
|
|
@@ -970,29 +997,33 @@ export interface RouterCreatePartPostInput extends JsonObject {
|
|
|
970
997
|
/** Backend response type: media_part::Model. */
|
|
971
998
|
export interface RouterCreatePartPostResponseData extends JsonObject {
|
|
972
999
|
"id": string;
|
|
973
|
-
"
|
|
974
|
-
"
|
|
975
|
-
"
|
|
976
|
-
"
|
|
977
|
-
"
|
|
978
|
-
"
|
|
979
|
-
"
|
|
1000
|
+
"mixed_media_id"?: string | null;
|
|
1001
|
+
"library_id": string;
|
|
1002
|
+
"category_id"?: string | null;
|
|
1003
|
+
"title": string;
|
|
1004
|
+
"state": string;
|
|
1005
|
+
"media_type"?: string | null;
|
|
1006
|
+
"duration_seconds": number;
|
|
1007
|
+
"textual": BackendJson<"Json">;
|
|
1008
|
+
"rewards": BackendJson<"Json">;
|
|
1009
|
+
"textual_hint"?: string | null;
|
|
1010
|
+
"game_id"?: string | null;
|
|
1011
|
+
"primary_media_id"?: string | null;
|
|
1012
|
+
"hint_media_id"?: string | null;
|
|
980
1013
|
"created_at": string;
|
|
1014
|
+
"updated_at": string;
|
|
1015
|
+
"archived_at"?: string | null;
|
|
981
1016
|
}
|
|
982
1017
|
export type RouterCreatePartPostResponse = RouterCreatePartPostResponseData;
|
|
983
1018
|
/** Backend response type: mixed_media_manifest::Model. */
|
|
984
|
-
export interface
|
|
1019
|
+
export interface RouterPublishPostApiV1MixedMediaIdPublishResponseData extends JsonObject {
|
|
985
1020
|
"id": string;
|
|
986
|
-
"
|
|
987
|
-
"
|
|
988
|
-
"
|
|
989
|
-
"entity_id"?: string | null;
|
|
990
|
-
"request_id"?: string | null;
|
|
991
|
-
"before_data"?: BackendJson<"Json"> | null;
|
|
992
|
-
"after_data"?: BackendJson<"Json"> | null;
|
|
1021
|
+
"mixed_media_id": string;
|
|
1022
|
+
"version": number;
|
|
1023
|
+
"document": BackendJson<"Json">;
|
|
993
1024
|
"created_at": string;
|
|
994
1025
|
}
|
|
995
|
-
export type
|
|
1026
|
+
export type RouterPublishPostApiV1MixedMediaIdPublishResponse = RouterPublishPostApiV1MixedMediaIdPublishResponseData;
|
|
996
1027
|
/** Backend response type: EditorResources. */
|
|
997
1028
|
export interface RouterResourcesGetResponseData extends JsonObject {
|
|
998
1029
|
"categories": BackendJson<"entity::content_category::Model">[];
|
|
@@ -1000,69 +1031,68 @@ export interface RouterResourcesGetResponseData extends JsonObject {
|
|
|
1000
1031
|
}
|
|
1001
1032
|
export type RouterResourcesGetResponse = RouterResourcesGetResponseData;
|
|
1002
1033
|
/** Backend response type: mixed_media_workflow::Model. */
|
|
1003
|
-
export interface
|
|
1004
|
-
"
|
|
1005
|
-
"
|
|
1006
|
-
"
|
|
1007
|
-
"
|
|
1008
|
-
"
|
|
1009
|
-
"request_id"?: string | null;
|
|
1010
|
-
"before_data"?: BackendJson<"Json"> | null;
|
|
1011
|
-
"after_data"?: BackendJson<"Json"> | null;
|
|
1012
|
-
"created_at": string;
|
|
1034
|
+
export interface RouterGetWorkflowGetApiV1MixedMediaIdWorkflowResponseData extends JsonObject {
|
|
1035
|
+
"mixed_media_id": string;
|
|
1036
|
+
"nodes": BackendJson<"Json">;
|
|
1037
|
+
"edges": BackendJson<"Json">;
|
|
1038
|
+
"revision": number;
|
|
1039
|
+
"updated_at": string;
|
|
1013
1040
|
}
|
|
1014
|
-
export type
|
|
1041
|
+
export type RouterGetWorkflowGetApiV1MixedMediaIdWorkflowResponse = RouterGetWorkflowGetApiV1MixedMediaIdWorkflowResponseData;
|
|
1015
1042
|
/** Backend request type: WorkflowInput. */
|
|
1016
|
-
export interface
|
|
1043
|
+
export interface RouterSaveWorkflowPutApiV1MixedMediaIdWorkflowInput extends JsonObject {
|
|
1017
1044
|
"nodes": JsonValue;
|
|
1018
1045
|
"edges": JsonValue;
|
|
1019
1046
|
}
|
|
1020
1047
|
/** Backend response type: mixed_media_workflow::Model. */
|
|
1021
|
-
export interface
|
|
1022
|
-
"
|
|
1023
|
-
"
|
|
1024
|
-
"
|
|
1025
|
-
"
|
|
1026
|
-
"
|
|
1027
|
-
"request_id"?: string | null;
|
|
1028
|
-
"before_data"?: BackendJson<"Json"> | null;
|
|
1029
|
-
"after_data"?: BackendJson<"Json"> | null;
|
|
1030
|
-
"created_at": string;
|
|
1048
|
+
export interface RouterSaveWorkflowPutApiV1MixedMediaIdWorkflowResponseData extends JsonObject {
|
|
1049
|
+
"mixed_media_id": string;
|
|
1050
|
+
"nodes": BackendJson<"Json">;
|
|
1051
|
+
"edges": BackendJson<"Json">;
|
|
1052
|
+
"revision": number;
|
|
1053
|
+
"updated_at": string;
|
|
1031
1054
|
}
|
|
1032
|
-
export type
|
|
1055
|
+
export type RouterSaveWorkflowPutApiV1MixedMediaIdWorkflowResponse = RouterSaveWorkflowPutApiV1MixedMediaIdWorkflowResponseData;
|
|
1033
1056
|
/** Backend response type: no-content. */
|
|
1034
1057
|
export type RouterDeleteCategoryDeleteResponse = void;
|
|
1035
1058
|
/** Backend request type: CategoryInput. */
|
|
1036
|
-
export interface
|
|
1059
|
+
export interface RouterUpdateCategoryPatchApiV1MixedMediaMixedIdCategoriesIdInput extends JsonObject {
|
|
1037
1060
|
"title": string;
|
|
1038
1061
|
"parent_id"?: string | null;
|
|
1039
1062
|
}
|
|
1040
1063
|
/** Backend response type: content_category::Model. */
|
|
1041
|
-
export interface
|
|
1064
|
+
export interface RouterUpdateCategoryPatchApiV1MixedMediaMixedIdCategoriesIdResponseData extends JsonObject {
|
|
1042
1065
|
"id": string;
|
|
1043
|
-
"
|
|
1044
|
-
"
|
|
1045
|
-
"
|
|
1046
|
-
"
|
|
1047
|
-
"request_id"?: string | null;
|
|
1048
|
-
"before_data"?: BackendJson<"Json"> | null;
|
|
1049
|
-
"after_data"?: BackendJson<"Json"> | null;
|
|
1066
|
+
"mixed_media_id"?: string | null;
|
|
1067
|
+
"library_id": string;
|
|
1068
|
+
"parent_id"?: string | null;
|
|
1069
|
+
"title": string;
|
|
1050
1070
|
"created_at": string;
|
|
1071
|
+
"updated_at": string;
|
|
1072
|
+
"archived_at"?: string | null;
|
|
1051
1073
|
}
|
|
1052
|
-
export type
|
|
1074
|
+
export type RouterUpdateCategoryPatchApiV1MixedMediaMixedIdCategoriesIdResponse = RouterUpdateCategoryPatchApiV1MixedMediaMixedIdCategoriesIdResponseData;
|
|
1053
1075
|
/** Backend response type: no-content. */
|
|
1054
1076
|
export type RouterDeletePartDeleteResponse = void;
|
|
1055
1077
|
/** Backend response type: media_part::Model. */
|
|
1056
1078
|
export interface RouterGetPartGetResponseData extends JsonObject {
|
|
1057
1079
|
"id": string;
|
|
1058
|
-
"
|
|
1059
|
-
"
|
|
1060
|
-
"
|
|
1061
|
-
"
|
|
1062
|
-
"
|
|
1063
|
-
"
|
|
1064
|
-
"
|
|
1080
|
+
"mixed_media_id"?: string | null;
|
|
1081
|
+
"library_id": string;
|
|
1082
|
+
"category_id"?: string | null;
|
|
1083
|
+
"title": string;
|
|
1084
|
+
"state": string;
|
|
1085
|
+
"media_type"?: string | null;
|
|
1086
|
+
"duration_seconds": number;
|
|
1087
|
+
"textual": BackendJson<"Json">;
|
|
1088
|
+
"rewards": BackendJson<"Json">;
|
|
1089
|
+
"textual_hint"?: string | null;
|
|
1090
|
+
"game_id"?: string | null;
|
|
1091
|
+
"primary_media_id"?: string | null;
|
|
1092
|
+
"hint_media_id"?: string | null;
|
|
1065
1093
|
"created_at": string;
|
|
1094
|
+
"updated_at": string;
|
|
1095
|
+
"archived_at"?: string | null;
|
|
1066
1096
|
}
|
|
1067
1097
|
export type RouterGetPartGetResponse = RouterGetPartGetResponseData;
|
|
1068
1098
|
/** Backend request type: PartInput. */
|
|
@@ -1082,14 +1112,22 @@ export interface RouterUpdatePartPutInput extends JsonObject {
|
|
|
1082
1112
|
/** Backend response type: media_part::Model. */
|
|
1083
1113
|
export interface RouterUpdatePartPutResponseData extends JsonObject {
|
|
1084
1114
|
"id": string;
|
|
1085
|
-
"
|
|
1086
|
-
"
|
|
1087
|
-
"
|
|
1088
|
-
"
|
|
1089
|
-
"
|
|
1090
|
-
"
|
|
1091
|
-
"
|
|
1115
|
+
"mixed_media_id"?: string | null;
|
|
1116
|
+
"library_id": string;
|
|
1117
|
+
"category_id"?: string | null;
|
|
1118
|
+
"title": string;
|
|
1119
|
+
"state": string;
|
|
1120
|
+
"media_type"?: string | null;
|
|
1121
|
+
"duration_seconds": number;
|
|
1122
|
+
"textual": BackendJson<"Json">;
|
|
1123
|
+
"rewards": BackendJson<"Json">;
|
|
1124
|
+
"textual_hint"?: string | null;
|
|
1125
|
+
"game_id"?: string | null;
|
|
1126
|
+
"primary_media_id"?: string | null;
|
|
1127
|
+
"hint_media_id"?: string | null;
|
|
1092
1128
|
"created_at": string;
|
|
1129
|
+
"updated_at": string;
|
|
1130
|
+
"archived_at"?: string | null;
|
|
1093
1131
|
}
|
|
1094
1132
|
export type RouterUpdatePartPutResponse = RouterUpdatePartPutResponseData;
|
|
1095
1133
|
/** Backend response type: serde_json::Value. */
|
|
@@ -1097,13 +1135,13 @@ export type RouterHealthGetResponse = JsonValue;
|
|
|
1097
1135
|
/** Backend response type: Value. */
|
|
1098
1136
|
export type RouterKnowledgeCatalogGetResponse = JsonValue;
|
|
1099
1137
|
/** Backend response type: SettingsResponse. */
|
|
1100
|
-
export interface
|
|
1138
|
+
export interface RouterGetSettingsGetApiV1OperationsSettingsResponseData extends JsonObject {
|
|
1101
1139
|
"package_concurrency": number;
|
|
1102
1140
|
"transcription_enabled": boolean;
|
|
1103
1141
|
"transcription_model_ref"?: string | null;
|
|
1104
1142
|
"summary_model_ref"?: string | null;
|
|
1105
1143
|
}
|
|
1106
|
-
export type
|
|
1144
|
+
export type RouterGetSettingsGetApiV1OperationsSettingsResponse = RouterGetSettingsGetApiV1OperationsSettingsResponseData;
|
|
1107
1145
|
/** Backend request type: SettingsInput. */
|
|
1108
1146
|
export interface RouterUpdateSettingsPatchInput extends JsonObject {
|
|
1109
1147
|
"package_concurrency": number;
|
|
@@ -1146,13 +1184,7 @@ export type RouterStatusGetResponse = JsonValue;
|
|
|
1146
1184
|
/** Backend response type: Vec<tag::Model>. */
|
|
1147
1185
|
export interface RouterListTagsGetResponseItem extends JsonObject {
|
|
1148
1186
|
"id": string;
|
|
1149
|
-
"
|
|
1150
|
-
"action": string;
|
|
1151
|
-
"entity_type": string;
|
|
1152
|
-
"entity_id"?: string | null;
|
|
1153
|
-
"request_id"?: string | null;
|
|
1154
|
-
"before_data"?: BackendJson<"Json"> | null;
|
|
1155
|
-
"after_data"?: BackendJson<"Json"> | null;
|
|
1187
|
+
"name": string;
|
|
1156
1188
|
"created_at": string;
|
|
1157
1189
|
}
|
|
1158
1190
|
export type RouterListTagsGetResponse = RouterListTagsGetResponseItem[];
|
|
@@ -1163,13 +1195,7 @@ export interface RouterCreateTagPostInput extends JsonObject {
|
|
|
1163
1195
|
/** Backend response type: tag::Model. */
|
|
1164
1196
|
export interface RouterCreateTagPostResponseData extends JsonObject {
|
|
1165
1197
|
"id": string;
|
|
1166
|
-
"
|
|
1167
|
-
"action": string;
|
|
1168
|
-
"entity_type": string;
|
|
1169
|
-
"entity_id"?: string | null;
|
|
1170
|
-
"request_id"?: string | null;
|
|
1171
|
-
"before_data"?: BackendJson<"Json"> | null;
|
|
1172
|
-
"after_data"?: BackendJson<"Json"> | null;
|
|
1198
|
+
"name": string;
|
|
1173
1199
|
"created_at": string;
|
|
1174
1200
|
}
|
|
1175
1201
|
export type RouterCreateTagPostResponse = RouterCreateTagPostResponseData;
|
|
@@ -1189,14 +1215,24 @@ export interface RouterCreateUploadSessionPostInput extends JsonObject {
|
|
|
1189
1215
|
/** Backend response type: UploadSessionResponse. */
|
|
1190
1216
|
export interface RouterCreateUploadSessionPostResponseData extends JsonObject {
|
|
1191
1217
|
"id": string;
|
|
1192
|
-
"
|
|
1193
|
-
"
|
|
1194
|
-
"
|
|
1195
|
-
"
|
|
1196
|
-
"
|
|
1197
|
-
"
|
|
1198
|
-
"
|
|
1218
|
+
"media_id": string;
|
|
1219
|
+
"object_key": string;
|
|
1220
|
+
"multipart_upload_id": string;
|
|
1221
|
+
"filename": string;
|
|
1222
|
+
"name": string;
|
|
1223
|
+
"description"?: string | null;
|
|
1224
|
+
"mime_type": string;
|
|
1225
|
+
"media_type": string;
|
|
1226
|
+
"folder_id"?: string | null;
|
|
1227
|
+
"total_bytes": number;
|
|
1228
|
+
"part_size": number;
|
|
1229
|
+
"checksum_sha256"?: string | null;
|
|
1230
|
+
"status": string;
|
|
1231
|
+
"error"?: string | null;
|
|
1232
|
+
"expires_at": string;
|
|
1199
1233
|
"created_at": string;
|
|
1234
|
+
"updated_at": string;
|
|
1235
|
+
"completed_at"?: string | null;
|
|
1200
1236
|
"parts": BackendJson<"upload_part::Model">[];
|
|
1201
1237
|
}
|
|
1202
1238
|
export type RouterCreateUploadSessionPostResponse = RouterCreateUploadSessionPostResponseData;
|
|
@@ -1205,14 +1241,24 @@ export type RouterCancelUploadDeleteResponse = void;
|
|
|
1205
1241
|
/** Backend response type: UploadSessionResponse. */
|
|
1206
1242
|
export interface RouterGetUploadSessionGetResponseData extends JsonObject {
|
|
1207
1243
|
"id": string;
|
|
1208
|
-
"
|
|
1209
|
-
"
|
|
1210
|
-
"
|
|
1211
|
-
"
|
|
1212
|
-
"
|
|
1213
|
-
"
|
|
1214
|
-
"
|
|
1244
|
+
"media_id": string;
|
|
1245
|
+
"object_key": string;
|
|
1246
|
+
"multipart_upload_id": string;
|
|
1247
|
+
"filename": string;
|
|
1248
|
+
"name": string;
|
|
1249
|
+
"description"?: string | null;
|
|
1250
|
+
"mime_type": string;
|
|
1251
|
+
"media_type": string;
|
|
1252
|
+
"folder_id"?: string | null;
|
|
1253
|
+
"total_bytes": number;
|
|
1254
|
+
"part_size": number;
|
|
1255
|
+
"checksum_sha256"?: string | null;
|
|
1256
|
+
"status": string;
|
|
1257
|
+
"error"?: string | null;
|
|
1258
|
+
"expires_at": string;
|
|
1215
1259
|
"created_at": string;
|
|
1260
|
+
"updated_at": string;
|
|
1261
|
+
"completed_at"?: string | null;
|
|
1216
1262
|
"parts": BackendJson<"upload_part::Model">[];
|
|
1217
1263
|
}
|
|
1218
1264
|
export type RouterGetUploadSessionGetResponse = RouterGetUploadSessionGetResponseData;
|
|
@@ -1223,28 +1269,33 @@ export interface RouterCompleteUploadPostInput extends JsonObject {
|
|
|
1223
1269
|
/** Backend response type: MediaResponse. */
|
|
1224
1270
|
export interface RouterCompleteUploadPostResponseData extends JsonObject {
|
|
1225
1271
|
"id": string;
|
|
1226
|
-
"
|
|
1227
|
-
"
|
|
1228
|
-
"
|
|
1229
|
-
"
|
|
1230
|
-
"
|
|
1231
|
-
"
|
|
1232
|
-
"
|
|
1272
|
+
"folder_id"?: string | null;
|
|
1273
|
+
"name": string;
|
|
1274
|
+
"description"?: string | null;
|
|
1275
|
+
"media_type": string;
|
|
1276
|
+
"mime_type": string;
|
|
1277
|
+
"object_key": string;
|
|
1278
|
+
"bucket": string;
|
|
1279
|
+
"size_bytes": number;
|
|
1280
|
+
"duration_seconds"?: number | null;
|
|
1281
|
+
"status": string;
|
|
1282
|
+
"original_filename"?: string | null;
|
|
1283
|
+
"checksum_sha256"?: string | null;
|
|
1284
|
+
"archived_at"?: string | null;
|
|
1233
1285
|
"created_at": string;
|
|
1286
|
+
"updated_at": string;
|
|
1234
1287
|
"tags": BackendJson<"entity::tag::Model">[];
|
|
1235
1288
|
"transcription"?: BackendJson<"entity::media_transcription::Model"> | null;
|
|
1236
1289
|
}
|
|
1237
1290
|
export type RouterCompleteUploadPostResponse = RouterCompleteUploadPostResponseData;
|
|
1291
|
+
/** Backend request type: binary byte stream. */
|
|
1292
|
+
export type RouterPutUploadPartPutInput = Blob | ArrayBuffer | ArrayBufferView;
|
|
1238
1293
|
/** Backend response type: upload_part::Model. */
|
|
1239
1294
|
export interface RouterPutUploadPartPutResponseData extends JsonObject {
|
|
1240
|
-
"
|
|
1241
|
-
"
|
|
1242
|
-
"
|
|
1243
|
-
"
|
|
1244
|
-
"entity_id"?: string | null;
|
|
1245
|
-
"request_id"?: string | null;
|
|
1246
|
-
"before_data"?: BackendJson<"Json"> | null;
|
|
1247
|
-
"after_data"?: BackendJson<"Json"> | null;
|
|
1295
|
+
"session_id": string;
|
|
1296
|
+
"part_number": number;
|
|
1297
|
+
"etag": string;
|
|
1298
|
+
"size_bytes": number;
|
|
1248
1299
|
"created_at": string;
|
|
1249
1300
|
}
|
|
1250
1301
|
export type RouterPutUploadPartPutResponse = RouterPutUploadPartPutResponseData;
|