@faiber/faiber-drm 0.5.2 → 0.7.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/dist/.tsbuildinfo +1 -1
- package/dist/index.d.ts +4 -0
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +4 -0
- package/dist/index.js.map +1 -1
- package/dist/operations.d.ts +822 -0
- package/dist/operations.d.ts.map +1 -0
- package/dist/operations.js +997 -0
- package/dist/operations.js.map +1 -0
- package/dist/operations.types.d.ts +1141 -0
- package/dist/operations.types.d.ts.map +1 -0
- package/dist/operations.types.js +2 -0
- package/dist/operations.types.js.map +1 -0
- package/package.json +2 -2
|
@@ -0,0 +1,822 @@
|
|
|
1
|
+
import { ServiceApi, type Identifier, type RequestOptions } from "@faiber/sdk-core";
|
|
2
|
+
import type * as T from "./operations.types.js";
|
|
3
|
+
export declare class DrmOperations extends ServiceApi {
|
|
4
|
+
/**
|
|
5
|
+
* Performs the audit events operation for the router capability.
|
|
6
|
+
* Calls `GET /audit-events` through the shared IDP-aware Faiber client.
|
|
7
|
+
* @param params Typed query parameters; omitted members retain backend defaults.
|
|
8
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
9
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
10
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
|
|
11
|
+
*/
|
|
12
|
+
routerAuditEventsGet(params?: T.RouterAuditEventsGetQuery, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.RouterAuditEventsGetResponse, unknown, {}>>;
|
|
13
|
+
/**
|
|
14
|
+
* Performs the list composition categories operation for the router capability.
|
|
15
|
+
* Calls `GET /composition-categories` through the shared IDP-aware Faiber client.
|
|
16
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
17
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
18
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
|
|
19
|
+
*/
|
|
20
|
+
routerListCompositionCategoriesGet(options?: RequestOptions): Promise<import("axios").AxiosResponse<T.RouterListCompositionCategoriesGetResponse, unknown, {}>>;
|
|
21
|
+
/**
|
|
22
|
+
* Performs the create composition category operation for the router capability.
|
|
23
|
+
* Calls `POST /composition-categories` through the shared IDP-aware Faiber client.
|
|
24
|
+
* @param data Typed JSON request body.
|
|
25
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
26
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
27
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
|
|
28
|
+
*/
|
|
29
|
+
routerCreateCompositionCategoryPost(data: T.RouterCreateCompositionCategoryPostInput, options?: RequestOptions<T.RouterCreateCompositionCategoryPostInput>): Promise<import("axios").AxiosResponse<T.RouterCreateCompositionCategoryPostResponseData, T.RouterCreateCompositionCategoryPostInput, {}>>;
|
|
30
|
+
/**
|
|
31
|
+
* Performs the delete composition category operation for the router capability.
|
|
32
|
+
* Calls `DELETE /composition-categories/{id}` through the shared IDP-aware Faiber client.
|
|
33
|
+
* @param id Backend path identifier `id`.
|
|
34
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
35
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
36
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
|
|
37
|
+
*/
|
|
38
|
+
routerDeleteCompositionCategoryDelete(id: Identifier, options?: RequestOptions): Promise<import("axios").AxiosResponse<void, unknown, {}>>;
|
|
39
|
+
/**
|
|
40
|
+
* Performs the update composition category operation for the router capability.
|
|
41
|
+
* Calls `PATCH /composition-categories/{id}` through the shared IDP-aware Faiber client.
|
|
42
|
+
* @param id Backend path identifier `id`.
|
|
43
|
+
* @param data Typed JSON request body.
|
|
44
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
45
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
46
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
|
|
47
|
+
*/
|
|
48
|
+
routerUpdateCompositionCategoryPatch(id: Identifier, data: T.RouterUpdateCompositionCategoryPatchInput, options?: RequestOptions<T.RouterUpdateCompositionCategoryPatchInput>): Promise<import("axios").AxiosResponse<T.RouterUpdateCompositionCategoryPatchResponseData, T.RouterUpdateCompositionCategoryPatchInput, {}>>;
|
|
49
|
+
/**
|
|
50
|
+
* Performs the list compositions operation for the router capability.
|
|
51
|
+
* Calls `GET /compositions` through the shared IDP-aware Faiber client.
|
|
52
|
+
* @param params Typed query parameters; omitted members retain backend defaults.
|
|
53
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
54
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
55
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
|
|
56
|
+
*/
|
|
57
|
+
routerListCompositionsGet(params?: T.RouterListCompositionsGetQuery, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.RouterListCompositionsGetResponse, unknown, {}>>;
|
|
58
|
+
/**
|
|
59
|
+
* Performs the create composition operation for the router capability.
|
|
60
|
+
* Calls `POST /compositions` through the shared IDP-aware Faiber client.
|
|
61
|
+
* @param data Typed JSON request body.
|
|
62
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
63
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
64
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
|
|
65
|
+
*/
|
|
66
|
+
routerCreateCompositionPost(data: T.RouterCreateCompositionPostInput, options?: RequestOptions<T.RouterCreateCompositionPostInput>): Promise<import("axios").AxiosResponse<T.RouterCreateCompositionPostResponseData, T.RouterCreateCompositionPostInput, {}>>;
|
|
67
|
+
/**
|
|
68
|
+
* Performs the list manifests operation for the router capability.
|
|
69
|
+
* Calls `GET /compositions/{id}/manifests` through the shared IDP-aware Faiber client.
|
|
70
|
+
* @param id Backend path identifier `id`.
|
|
71
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
72
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
73
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
|
|
74
|
+
*/
|
|
75
|
+
routerListManifestsGetCompositionsIdManifests(id: Identifier, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.RouterListManifestsGetCompositionsIdManifestsResponse, unknown, {}>>;
|
|
76
|
+
/**
|
|
77
|
+
* Performs the create manifest version operation for the router capability.
|
|
78
|
+
* Calls `POST /compositions/{id}/manifests` through the shared IDP-aware Faiber client.
|
|
79
|
+
* @param id Backend path identifier `id`.
|
|
80
|
+
* @param data Typed JSON request body.
|
|
81
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
82
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
83
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
|
|
84
|
+
*/
|
|
85
|
+
routerCreateManifestVersionPost(id: Identifier, data: T.RouterCreateManifestVersionPostInput, options?: RequestOptions<T.RouterCreateManifestVersionPostInput>): Promise<import("axios").AxiosResponse<T.RouterCreateManifestVersionPostResponseData, T.RouterCreateManifestVersionPostInput, {}>>;
|
|
86
|
+
/**
|
|
87
|
+
* Performs the publish operation for the router capability.
|
|
88
|
+
* Calls `POST /compositions/{id}/publish` through the shared IDP-aware Faiber client.
|
|
89
|
+
* @param id Backend path identifier `id`.
|
|
90
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
91
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
92
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
|
|
93
|
+
*/
|
|
94
|
+
routerPublishPostCompositionsIdPublish(id: Identifier, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.RouterPublishPostCompositionsIdPublishResponseData, unknown, {}>>;
|
|
95
|
+
/**
|
|
96
|
+
* Performs the get workflow operation for the router capability.
|
|
97
|
+
* Calls `GET /compositions/{id}/workflow` through the shared IDP-aware Faiber client.
|
|
98
|
+
* @param id Backend path identifier `id`.
|
|
99
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
100
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
101
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
|
|
102
|
+
*/
|
|
103
|
+
routerGetWorkflowGetCompositionsIdWorkflow(id: Identifier, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.RouterGetWorkflowGetCompositionsIdWorkflowResponseData, unknown, {}>>;
|
|
104
|
+
/**
|
|
105
|
+
* Performs the save workflow operation for the router capability.
|
|
106
|
+
* Calls `PUT /compositions/{id}/workflow` through the shared IDP-aware Faiber client.
|
|
107
|
+
* @param id Backend path identifier `id`.
|
|
108
|
+
* @param data Typed JSON request body.
|
|
109
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
110
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
111
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
|
|
112
|
+
*/
|
|
113
|
+
routerSaveWorkflowPutCompositionsIdWorkflow(id: Identifier, data: T.RouterSaveWorkflowPutCompositionsIdWorkflowInput, options?: RequestOptions<T.RouterSaveWorkflowPutCompositionsIdWorkflowInput>): Promise<import("axios").AxiosResponse<T.RouterSaveWorkflowPutCompositionsIdWorkflowResponseData, T.RouterSaveWorkflowPutCompositionsIdWorkflowInput, {}>>;
|
|
114
|
+
/**
|
|
115
|
+
* Performs the dashboard operation for the router capability.
|
|
116
|
+
* Calls `GET /dashboard/summary` through the shared IDP-aware Faiber client.
|
|
117
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
118
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
119
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
|
|
120
|
+
*/
|
|
121
|
+
routerDashboardGet(options?: RequestOptions): Promise<import("axios").AxiosResponse<import("@faiber/sdk-core").JsonValue, unknown, {}>>;
|
|
122
|
+
/**
|
|
123
|
+
* Performs the list jobs operation for the router capability.
|
|
124
|
+
* Calls `GET /drm/jobs` through the shared IDP-aware Faiber client.
|
|
125
|
+
* @param params Typed query parameters; omitted members retain backend defaults.
|
|
126
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
127
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
128
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
|
|
129
|
+
*/
|
|
130
|
+
routerListJobsGet(params?: T.RouterListJobsGetQuery, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.RouterListJobsGetResponse, unknown, {}>>;
|
|
131
|
+
/**
|
|
132
|
+
* Performs the create job operation for the router capability.
|
|
133
|
+
* Calls `POST /drm/jobs` through the shared IDP-aware Faiber client.
|
|
134
|
+
* @param data Typed JSON request body.
|
|
135
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
136
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
137
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
|
|
138
|
+
*/
|
|
139
|
+
routerCreateJobPost(data: T.RouterCreateJobPostInput, options?: RequestOptions<T.RouterCreateJobPostInput>): Promise<import("axios").AxiosResponse<T.RouterCreateJobPostResponseData, T.RouterCreateJobPostInput, {}>>;
|
|
140
|
+
/**
|
|
141
|
+
* Performs the cancel job operation for the router capability.
|
|
142
|
+
* Calls `DELETE /drm/jobs/{id}` through the shared IDP-aware Faiber client.
|
|
143
|
+
* @param id Backend path identifier `id`.
|
|
144
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
145
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
146
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
|
|
147
|
+
*/
|
|
148
|
+
routerCancelJobDelete(id: Identifier, options?: RequestOptions): Promise<import("axios").AxiosResponse<void, unknown, {}>>;
|
|
149
|
+
/**
|
|
150
|
+
* Performs the retry job operation for the router capability.
|
|
151
|
+
* Calls `POST /drm/jobs/{id}/retry` through the shared IDP-aware Faiber client.
|
|
152
|
+
* @param id Backend path identifier `id`.
|
|
153
|
+
* @param data Typed JSON request body.
|
|
154
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
155
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
156
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
|
|
157
|
+
*/
|
|
158
|
+
routerRetryJobPost(id: Identifier, data: T.RouterRetryJobPostInput, options?: RequestOptions<T.RouterRetryJobPostInput>): Promise<import("axios").AxiosResponse<T.RouterRetryJobPostResponseData, T.RouterRetryJobPostInput, {}>>;
|
|
159
|
+
/**
|
|
160
|
+
* Performs the retry all failed operation for the router capability.
|
|
161
|
+
* Calls `POST /drm/jobs/actions/retry-failed` through the shared IDP-aware Faiber client.
|
|
162
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
163
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
164
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
|
|
165
|
+
*/
|
|
166
|
+
routerRetryAllFailedPost(options?: RequestOptions): Promise<import("axios").AxiosResponse<T.RouterRetryAllFailedPostResponseData, unknown, {}>>;
|
|
167
|
+
/**
|
|
168
|
+
* Performs the list external references operation for the router capability.
|
|
169
|
+
* Calls `GET /external-references` through the shared IDP-aware Faiber client.
|
|
170
|
+
* @param params Typed query parameters; omitted members retain backend defaults.
|
|
171
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
172
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
173
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
|
|
174
|
+
*/
|
|
175
|
+
routerListExternalReferencesGet(params?: T.RouterListExternalReferencesGetQuery, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.RouterListExternalReferencesGetResponse, unknown, {}>>;
|
|
176
|
+
/**
|
|
177
|
+
* Performs the upsert external reference operation for the router capability.
|
|
178
|
+
* Calls `POST /external-references` through the shared IDP-aware Faiber client.
|
|
179
|
+
* @param data Typed JSON request body.
|
|
180
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
181
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
182
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
|
|
183
|
+
*/
|
|
184
|
+
routerUpsertExternalReferencePost(data: T.RouterUpsertExternalReferencePostInput, options?: RequestOptions<T.RouterUpsertExternalReferencePostInput>): Promise<import("axios").AxiosResponse<T.RouterUpsertExternalReferencePostResponseData, T.RouterUpsertExternalReferencePostInput, {}>>;
|
|
185
|
+
/**
|
|
186
|
+
* Performs the list folders operation for the router capability.
|
|
187
|
+
* Calls `GET /folders` through the shared IDP-aware Faiber client.
|
|
188
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
189
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
190
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
|
|
191
|
+
*/
|
|
192
|
+
routerListFoldersGet(options?: RequestOptions): Promise<import("axios").AxiosResponse<T.RouterListFoldersGetResponse, unknown, {}>>;
|
|
193
|
+
/**
|
|
194
|
+
* Performs the create folder operation for the router capability.
|
|
195
|
+
* Calls `POST /folders` through the shared IDP-aware Faiber client.
|
|
196
|
+
* @param data Typed JSON request body.
|
|
197
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
198
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
199
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
|
|
200
|
+
*/
|
|
201
|
+
routerCreateFolderPost(data: T.RouterCreateFolderPostInput, options?: RequestOptions<T.RouterCreateFolderPostInput>): Promise<import("axios").AxiosResponse<T.RouterCreateFolderPostResponseData, T.RouterCreateFolderPostInput, {}>>;
|
|
202
|
+
/**
|
|
203
|
+
* Performs the delete folder operation for the router capability.
|
|
204
|
+
* Calls `DELETE /folders/{id}` through the shared IDP-aware Faiber client.
|
|
205
|
+
* @param id Backend path identifier `id`.
|
|
206
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
207
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
208
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
|
|
209
|
+
*/
|
|
210
|
+
routerDeleteFolderDelete(id: Identifier, options?: RequestOptions): Promise<import("axios").AxiosResponse<void, unknown, {}>>;
|
|
211
|
+
/**
|
|
212
|
+
* Performs the update folder operation for the router capability.
|
|
213
|
+
* Calls `PATCH /folders/{id}` through the shared IDP-aware Faiber client.
|
|
214
|
+
* @param id Backend path identifier `id`.
|
|
215
|
+
* @param data Typed JSON request body.
|
|
216
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
217
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
218
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
|
|
219
|
+
*/
|
|
220
|
+
routerUpdateFolderPatch(id: Identifier, data: T.RouterUpdateFolderPatchInput, options?: RequestOptions<T.RouterUpdateFolderPatchInput>): Promise<import("axios").AxiosResponse<T.RouterUpdateFolderPatchResponseData, T.RouterUpdateFolderPatchInput, {}>>;
|
|
221
|
+
/**
|
|
222
|
+
* Performs the list libraries operation for the router capability.
|
|
223
|
+
* Calls `GET /libraries` through the shared IDP-aware Faiber client.
|
|
224
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
225
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
226
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
|
|
227
|
+
*/
|
|
228
|
+
routerListLibrariesGet(options?: RequestOptions): Promise<import("axios").AxiosResponse<T.RouterListLibrariesGetResponse, unknown, {}>>;
|
|
229
|
+
/**
|
|
230
|
+
* Performs the create library operation for the router capability.
|
|
231
|
+
* Calls `POST /libraries` through the shared IDP-aware Faiber client.
|
|
232
|
+
* @param data Typed JSON request body.
|
|
233
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
234
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
235
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
|
|
236
|
+
*/
|
|
237
|
+
routerCreateLibraryPost(data: T.RouterCreateLibraryPostInput, options?: RequestOptions<T.RouterCreateLibraryPostInput>): Promise<import("axios").AxiosResponse<T.RouterCreateLibraryPostResponseData, T.RouterCreateLibraryPostInput, {}>>;
|
|
238
|
+
/**
|
|
239
|
+
* Performs the delete library operation for the router capability.
|
|
240
|
+
* Calls `DELETE /libraries/{id}` through the shared IDP-aware Faiber client.
|
|
241
|
+
* @param id Backend path identifier `id`.
|
|
242
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
243
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
244
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
|
|
245
|
+
*/
|
|
246
|
+
routerDeleteLibraryDelete(id: Identifier, options?: RequestOptions): Promise<import("axios").AxiosResponse<void, unknown, {}>>;
|
|
247
|
+
/**
|
|
248
|
+
* Performs the get library operation for the router capability.
|
|
249
|
+
* Calls `GET /libraries/{id}` through the shared IDP-aware Faiber client.
|
|
250
|
+
* @param id Backend path identifier `id`.
|
|
251
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
252
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
253
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
|
|
254
|
+
*/
|
|
255
|
+
routerGetLibraryGet(id: Identifier, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.RouterGetLibraryGetResponseData, unknown, {}>>;
|
|
256
|
+
/**
|
|
257
|
+
* Performs the update library operation for the router capability.
|
|
258
|
+
* Calls `PATCH /libraries/{id}` through the shared IDP-aware Faiber client.
|
|
259
|
+
* @param id Backend path identifier `id`.
|
|
260
|
+
* @param data Typed JSON request body.
|
|
261
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
262
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
263
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
|
|
264
|
+
*/
|
|
265
|
+
routerUpdateLibraryPatch(id: Identifier, data: T.RouterUpdateLibraryPatchInput, options?: RequestOptions<T.RouterUpdateLibraryPatchInput>): Promise<import("axios").AxiosResponse<T.RouterUpdateLibraryPatchResponseData, T.RouterUpdateLibraryPatchInput, {}>>;
|
|
266
|
+
/**
|
|
267
|
+
* Performs the list categories operation for the router capability.
|
|
268
|
+
* Calls `GET /libraries/{id}/categories` through the shared IDP-aware Faiber client.
|
|
269
|
+
* @param id Backend path identifier `id`.
|
|
270
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
271
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
272
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
|
|
273
|
+
*/
|
|
274
|
+
routerListCategoriesGet(id: Identifier, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.RouterListCategoriesGetResponse, unknown, {}>>;
|
|
275
|
+
/**
|
|
276
|
+
* Performs the create category operation for the router capability.
|
|
277
|
+
* Calls `POST /libraries/{id}/categories` through the shared IDP-aware Faiber client.
|
|
278
|
+
* @param id Backend path identifier `id`.
|
|
279
|
+
* @param data Typed JSON request body.
|
|
280
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
281
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
282
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
|
|
283
|
+
*/
|
|
284
|
+
routerCreateCategoryPostLibrariesIdCategories(id: Identifier, data: T.RouterCreateCategoryPostLibrariesIdCategoriesInput, options?: RequestOptions<T.RouterCreateCategoryPostLibrariesIdCategoriesInput>): Promise<import("axios").AxiosResponse<T.RouterCreateCategoryPostLibrariesIdCategoriesResponseData, T.RouterCreateCategoryPostLibrariesIdCategoriesInput, {}>>;
|
|
285
|
+
/**
|
|
286
|
+
* Performs the list items operation for the router capability.
|
|
287
|
+
* Calls `GET /libraries/{id}/items` through the shared IDP-aware Faiber client.
|
|
288
|
+
* @param id Backend path identifier `id`.
|
|
289
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
290
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
291
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
|
|
292
|
+
*/
|
|
293
|
+
routerListItemsGet(id: Identifier, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.RouterListItemsGetResponse, unknown, {}>>;
|
|
294
|
+
/**
|
|
295
|
+
* Performs the create item operation for the router capability.
|
|
296
|
+
* Calls `POST /libraries/{id}/items` through the shared IDP-aware Faiber client.
|
|
297
|
+
* @param id Backend path identifier `id`.
|
|
298
|
+
* @param data Typed JSON request body.
|
|
299
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
300
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
301
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
|
|
302
|
+
*/
|
|
303
|
+
routerCreateItemPost(id: Identifier, data: T.RouterCreateItemPostInput, options?: RequestOptions<T.RouterCreateItemPostInput>): Promise<import("axios").AxiosResponse<T.RouterCreateItemPostResponseData, T.RouterCreateItemPostInput, {}>>;
|
|
304
|
+
/**
|
|
305
|
+
* Performs the query items operation for the router capability.
|
|
306
|
+
* Calls `GET /libraries/{id}/items/query` through the shared IDP-aware Faiber client.
|
|
307
|
+
* @param id Backend path identifier `id`.
|
|
308
|
+
* @param params Typed query parameters; omitted members retain backend defaults.
|
|
309
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
310
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
311
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
|
|
312
|
+
*/
|
|
313
|
+
routerQueryItemsGet(id: Identifier, params?: T.RouterQueryItemsGetQuery, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.RouterQueryItemsGetResponse, unknown, {}>>;
|
|
314
|
+
/**
|
|
315
|
+
* Performs the library stats operation for the router capability.
|
|
316
|
+
* Calls `GET /libraries/{id}/stats` through the shared IDP-aware Faiber client.
|
|
317
|
+
* @param id Backend path identifier `id`.
|
|
318
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
319
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
320
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
|
|
321
|
+
*/
|
|
322
|
+
routerLibraryStatsGet(id: Identifier, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.RouterLibraryStatsGetResponseData, unknown, {}>>;
|
|
323
|
+
/**
|
|
324
|
+
* Performs the archive category operation for the router capability.
|
|
325
|
+
* Calls `DELETE /libraries/{library_id}/categories/{id}` through the shared IDP-aware Faiber client.
|
|
326
|
+
* @param libraryId Backend path identifier `library_id`.
|
|
327
|
+
* @param id Backend path identifier `id`.
|
|
328
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
329
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
330
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
|
|
331
|
+
*/
|
|
332
|
+
routerArchiveCategoryDelete(libraryId: Identifier, id: Identifier, options?: RequestOptions): Promise<import("axios").AxiosResponse<void, unknown, {}>>;
|
|
333
|
+
/**
|
|
334
|
+
* Performs the update category operation for the router capability.
|
|
335
|
+
* Calls `PATCH /libraries/{library_id}/categories/{id}` through the shared IDP-aware Faiber client.
|
|
336
|
+
* @param libraryId Backend path identifier `library_id`.
|
|
337
|
+
* @param id Backend path identifier `id`.
|
|
338
|
+
* @param data Typed JSON request body.
|
|
339
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
340
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
341
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
|
|
342
|
+
*/
|
|
343
|
+
routerUpdateCategoryPatchLibrariesLibraryIdCategoriesId(libraryId: Identifier, id: Identifier, data: T.RouterUpdateCategoryPatchLibrariesLibraryIdCategoriesIdInput, options?: RequestOptions<T.RouterUpdateCategoryPatchLibrariesLibraryIdCategoriesIdInput>): Promise<import("axios").AxiosResponse<T.RouterUpdateCategoryPatchLibrariesLibraryIdCategoriesIdResponseData, T.RouterUpdateCategoryPatchLibrariesLibraryIdCategoriesIdInput, {}>>;
|
|
344
|
+
/**
|
|
345
|
+
* Performs the archive item operation for the router capability.
|
|
346
|
+
* Calls `DELETE /libraries/{library_id}/items/{id}` through the shared IDP-aware Faiber client.
|
|
347
|
+
* @param libraryId Backend path identifier `library_id`.
|
|
348
|
+
* @param id Backend path identifier `id`.
|
|
349
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
350
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
351
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
|
|
352
|
+
*/
|
|
353
|
+
routerArchiveItemDelete(libraryId: Identifier, id: Identifier, options?: RequestOptions): Promise<import("axios").AxiosResponse<void, unknown, {}>>;
|
|
354
|
+
/**
|
|
355
|
+
* Performs the get item operation for the router capability.
|
|
356
|
+
* Calls `GET /libraries/{library_id}/items/{id}` through the shared IDP-aware Faiber client.
|
|
357
|
+
* @param libraryId Backend path identifier `library_id`.
|
|
358
|
+
* @param id Backend path identifier `id`.
|
|
359
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
360
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
361
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
|
|
362
|
+
*/
|
|
363
|
+
routerGetItemGet(libraryId: Identifier, id: Identifier, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.RouterGetItemGetResponseData, unknown, {}>>;
|
|
364
|
+
/**
|
|
365
|
+
* Performs the update item operation for the router capability.
|
|
366
|
+
* Calls `PUT /libraries/{library_id}/items/{id}` through the shared IDP-aware Faiber client.
|
|
367
|
+
* @param libraryId Backend path identifier `library_id`.
|
|
368
|
+
* @param id Backend path identifier `id`.
|
|
369
|
+
* @param data Typed JSON request body.
|
|
370
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
371
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
372
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
|
|
373
|
+
*/
|
|
374
|
+
routerUpdateItemPut(libraryId: Identifier, id: Identifier, data: T.RouterUpdateItemPutInput, options?: RequestOptions<T.RouterUpdateItemPutInput>): Promise<import("axios").AxiosResponse<T.RouterUpdateItemPutResponseData, T.RouterUpdateItemPutInput, {}>>;
|
|
375
|
+
/**
|
|
376
|
+
* Performs the item attachments operation for the router capability.
|
|
377
|
+
* Calls `GET /libraries/{library_id}/items/{id}/attachments` through the shared IDP-aware Faiber client.
|
|
378
|
+
* @param libraryId Backend path identifier `library_id`.
|
|
379
|
+
* @param id Backend path identifier `id`.
|
|
380
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
381
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
382
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
|
|
383
|
+
*/
|
|
384
|
+
routerItemAttachmentsGet(libraryId: Identifier, id: Identifier, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.RouterItemAttachmentsGetResponse, unknown, {}>>;
|
|
385
|
+
/**
|
|
386
|
+
* Performs the attach media operation for the router capability.
|
|
387
|
+
* Calls `POST /libraries/{library_id}/items/{id}/attachments` through the shared IDP-aware Faiber client.
|
|
388
|
+
* @param libraryId Backend path identifier `library_id`.
|
|
389
|
+
* @param id Backend path identifier `id`.
|
|
390
|
+
* @param data Typed JSON request body.
|
|
391
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
392
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
393
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
|
|
394
|
+
*/
|
|
395
|
+
routerAttachMediaPost(libraryId: Identifier, id: Identifier, data: T.RouterAttachMediaPostInput, options?: RequestOptions<T.RouterAttachMediaPostInput>): Promise<import("axios").AxiosResponse<T.RouterAttachMediaPostResponseData, T.RouterAttachMediaPostInput, {}>>;
|
|
396
|
+
/**
|
|
397
|
+
* Performs the clear key license operation for the router capability.
|
|
398
|
+
* Calls `GET /licenses/clearkey` through the shared IDP-aware Faiber client.
|
|
399
|
+
* @param params Typed query parameters; omitted members retain backend defaults.
|
|
400
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
401
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
402
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
|
|
403
|
+
*/
|
|
404
|
+
routerClearKeyLicenseGet(params?: T.RouterClearKeyLicenseGetQuery, options?: RequestOptions): Promise<import("axios").AxiosResponse<import("@faiber/sdk-core").JsonValue, unknown, {}>>;
|
|
405
|
+
/**
|
|
406
|
+
* Performs the list media operation for the router capability.
|
|
407
|
+
* Calls `GET /media` through the shared IDP-aware Faiber client.
|
|
408
|
+
* @param params Typed query parameters; omitted members retain backend defaults.
|
|
409
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
410
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
411
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
|
|
412
|
+
*/
|
|
413
|
+
routerListMediaGet(params?: T.RouterListMediaGetQuery, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.RouterListMediaGetResponse, unknown, {}>>;
|
|
414
|
+
/**
|
|
415
|
+
* Performs the upload media operation for the router capability.
|
|
416
|
+
* Calls `POST /media` through the shared IDP-aware Faiber client.
|
|
417
|
+
* @param data Typed multipart form.
|
|
418
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
419
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
420
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
|
|
421
|
+
*/
|
|
422
|
+
routerUploadMediaPost(data: T.RouterUploadMediaPostInput, options?: RequestOptions<T.RouterUploadMediaPostInput>): Promise<import("axios").AxiosResponse<T.RouterUploadMediaPostResponseData, FormData, {}>>;
|
|
423
|
+
/**
|
|
424
|
+
* Performs the delete media operation for the router capability.
|
|
425
|
+
* Calls `DELETE /media/{id}` through the shared IDP-aware Faiber client.
|
|
426
|
+
* @param id Backend path identifier `id`.
|
|
427
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
428
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
429
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
|
|
430
|
+
*/
|
|
431
|
+
routerDeleteMediaDelete(id: Identifier, options?: RequestOptions): Promise<import("axios").AxiosResponse<void, unknown, {}>>;
|
|
432
|
+
/**
|
|
433
|
+
* Performs the get media operation for the router capability.
|
|
434
|
+
* Calls `GET /media/{id}` through the shared IDP-aware Faiber client.
|
|
435
|
+
* @param id Backend path identifier `id`.
|
|
436
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
437
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
438
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
|
|
439
|
+
*/
|
|
440
|
+
routerGetMediaGet(id: Identifier, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.RouterGetMediaGetResponseData, unknown, {}>>;
|
|
441
|
+
/**
|
|
442
|
+
* Performs the update media operation for the router capability.
|
|
443
|
+
* Calls `PATCH /media/{id}` through the shared IDP-aware Faiber client.
|
|
444
|
+
* @param id Backend path identifier `id`.
|
|
445
|
+
* @param data Typed JSON request body.
|
|
446
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
447
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
448
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
|
|
449
|
+
*/
|
|
450
|
+
routerUpdateMediaPatch(id: Identifier, data: T.RouterUpdateMediaPatchInput, options?: RequestOptions<T.RouterUpdateMediaPatchInput>): Promise<import("axios").AxiosResponse<T.RouterUpdateMediaPatchResponseData, T.RouterUpdateMediaPatchInput, {}>>;
|
|
451
|
+
/**
|
|
452
|
+
* Performs the list packages operation for the router capability.
|
|
453
|
+
* Calls `GET /media/{id}/packages` through the shared IDP-aware Faiber client.
|
|
454
|
+
* @param id Backend path identifier `id`.
|
|
455
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
456
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
457
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
|
|
458
|
+
*/
|
|
459
|
+
routerListPackagesGet(id: Identifier, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.RouterListPackagesGetResponse, unknown, {}>>;
|
|
460
|
+
/**
|
|
461
|
+
* Performs the regenerate operation for the router capability.
|
|
462
|
+
* Calls `POST /media/{id}/packages` through the shared IDP-aware Faiber client.
|
|
463
|
+
* @param id Backend path identifier `id`.
|
|
464
|
+
* @param data Typed JSON request body.
|
|
465
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
466
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
467
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
|
|
468
|
+
*/
|
|
469
|
+
routerRegeneratePost(id: Identifier, data: T.RouterRegeneratePostInput, options?: RequestOptions<T.RouterRegeneratePostInput>): Promise<import("axios").AxiosResponse<T.RouterRegeneratePostResponseData, T.RouterRegeneratePostInput, {}>>;
|
|
470
|
+
/**
|
|
471
|
+
* Performs the playback operation for the router capability.
|
|
472
|
+
* Calls `GET /media/{id}/playback` through the shared IDP-aware Faiber client.
|
|
473
|
+
* @param id Backend path identifier `id`.
|
|
474
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
475
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
476
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
|
|
477
|
+
*/
|
|
478
|
+
routerPlaybackGet(id: Identifier, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.RouterPlaybackGetResponseData, unknown, {}>>;
|
|
479
|
+
/**
|
|
480
|
+
* Performs the drm statuses operation for the router capability.
|
|
481
|
+
* Calls `GET /media/drm-statuses` through the shared IDP-aware Faiber client.
|
|
482
|
+
* @param params Typed query parameters; omitted members retain backend defaults.
|
|
483
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
484
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
485
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
|
|
486
|
+
*/
|
|
487
|
+
routerDrmStatusesGet(params?: T.RouterDrmStatusesGetQuery, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.RouterDrmStatusesGetResponse, unknown, {}>>;
|
|
488
|
+
/**
|
|
489
|
+
* Performs the archive package operation for the router capability.
|
|
490
|
+
* Calls `DELETE /media/packages/{id}` through the shared IDP-aware Faiber client.
|
|
491
|
+
* @param id Backend path identifier `id`.
|
|
492
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
493
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
494
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
|
|
495
|
+
*/
|
|
496
|
+
routerArchivePackageDelete(id: Identifier, options?: RequestOptions): Promise<import("axios").AxiosResponse<void, unknown, {}>>;
|
|
497
|
+
/**
|
|
498
|
+
* Performs the register existing media operation for the router capability.
|
|
499
|
+
* Calls `POST /media/register` through the shared IDP-aware Faiber client.
|
|
500
|
+
* @param data Typed JSON request body.
|
|
501
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
502
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
503
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
|
|
504
|
+
*/
|
|
505
|
+
routerRegisterExistingMediaPost(data: T.RouterRegisterExistingMediaPostInput, options?: RequestOptions<T.RouterRegisterExistingMediaPostInput>): Promise<import("axios").AxiosResponse<T.RouterRegisterExistingMediaPostResponseData, T.RouterRegisterExistingMediaPostInput, {}>>;
|
|
506
|
+
/**
|
|
507
|
+
* Performs the list mixed media operation for the router capability.
|
|
508
|
+
* Calls `GET /mixed-media` through the shared IDP-aware Faiber client.
|
|
509
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
510
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
511
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
|
|
512
|
+
*/
|
|
513
|
+
routerListMixedMediaGet(options?: RequestOptions): Promise<import("axios").AxiosResponse<T.RouterListMixedMediaGetResponse, unknown, {}>>;
|
|
514
|
+
/**
|
|
515
|
+
* Performs the create mixed media operation for the router capability.
|
|
516
|
+
* Calls `POST /mixed-media` through the shared IDP-aware Faiber client.
|
|
517
|
+
* @param data Typed JSON request body.
|
|
518
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
519
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
520
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
|
|
521
|
+
*/
|
|
522
|
+
routerCreateMixedMediaPost(data: T.RouterCreateMixedMediaPostInput, options?: RequestOptions<T.RouterCreateMixedMediaPostInput>): Promise<import("axios").AxiosResponse<T.RouterCreateMixedMediaPostResponseData, T.RouterCreateMixedMediaPostInput, {}>>;
|
|
523
|
+
/**
|
|
524
|
+
* Performs the delete mixed media operation for the router capability.
|
|
525
|
+
* Calls `DELETE /mixed-media/{id}` through the shared IDP-aware Faiber client.
|
|
526
|
+
* @param id Backend path identifier `id`.
|
|
527
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
528
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
529
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
|
|
530
|
+
*/
|
|
531
|
+
routerDeleteMixedMediaDelete(id: Identifier, options?: RequestOptions): Promise<import("axios").AxiosResponse<void, unknown, {}>>;
|
|
532
|
+
/**
|
|
533
|
+
* Performs the get mixed media operation for the router capability.
|
|
534
|
+
* Calls `GET /mixed-media/{id}` through the shared IDP-aware Faiber client.
|
|
535
|
+
* @param id Backend path identifier `id`.
|
|
536
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
537
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
538
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
|
|
539
|
+
*/
|
|
540
|
+
routerGetMixedMediaGet(id: Identifier, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.RouterGetMixedMediaGetResponseData, unknown, {}>>;
|
|
541
|
+
/**
|
|
542
|
+
* Performs the update mixed media operation for the router capability.
|
|
543
|
+
* Calls `PATCH /mixed-media/{id}` through the shared IDP-aware Faiber client.
|
|
544
|
+
* @param id Backend path identifier `id`.
|
|
545
|
+
* @param data Typed JSON request body.
|
|
546
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
547
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
548
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
|
|
549
|
+
*/
|
|
550
|
+
routerUpdateMixedMediaPatch(id: Identifier, data: T.RouterUpdateMixedMediaPatchInput, options?: RequestOptions<T.RouterUpdateMixedMediaPatchInput>): Promise<import("axios").AxiosResponse<T.RouterUpdateMixedMediaPatchResponseData, T.RouterUpdateMixedMediaPatchInput, {}>>;
|
|
551
|
+
/**
|
|
552
|
+
* Performs the create category operation for the router capability.
|
|
553
|
+
* Calls `POST /mixed-media/{id}/categories` through the shared IDP-aware Faiber client.
|
|
554
|
+
* @param id Backend path identifier `id`.
|
|
555
|
+
* @param data Typed JSON request body.
|
|
556
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
557
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
558
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
|
|
559
|
+
*/
|
|
560
|
+
routerCreateCategoryPostMixedMediaIdCategories(id: Identifier, data: T.RouterCreateCategoryPostMixedMediaIdCategoriesInput, options?: RequestOptions<T.RouterCreateCategoryPostMixedMediaIdCategoriesInput>): Promise<import("axios").AxiosResponse<T.RouterCreateCategoryPostMixedMediaIdCategoriesResponseData, T.RouterCreateCategoryPostMixedMediaIdCategoriesInput, {}>>;
|
|
561
|
+
/**
|
|
562
|
+
* Performs the get manifest operation for the router capability.
|
|
563
|
+
* Calls `GET /mixed-media/{id}/manifest` through the shared IDP-aware Faiber client.
|
|
564
|
+
* @param id Backend path identifier `id`.
|
|
565
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
566
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
567
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
|
|
568
|
+
*/
|
|
569
|
+
routerGetManifestGet(id: Identifier, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.RouterGetManifestGetResponseData, unknown, {}>>;
|
|
570
|
+
/**
|
|
571
|
+
* Performs the list manifests operation for the router capability.
|
|
572
|
+
* Calls `GET /mixed-media/{id}/manifests` through the shared IDP-aware Faiber client.
|
|
573
|
+
* @param id Backend path identifier `id`.
|
|
574
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
575
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
576
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
|
|
577
|
+
*/
|
|
578
|
+
routerListManifestsGetMixedMediaIdManifests(id: Identifier, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.RouterListManifestsGetMixedMediaIdManifestsResponse, unknown, {}>>;
|
|
579
|
+
/**
|
|
580
|
+
* Performs the create part operation for the router capability.
|
|
581
|
+
* Calls `POST /mixed-media/{id}/parts` through the shared IDP-aware Faiber client.
|
|
582
|
+
* @param id Backend path identifier `id`.
|
|
583
|
+
* @param data Typed JSON request body.
|
|
584
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
585
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
586
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
|
|
587
|
+
*/
|
|
588
|
+
routerCreatePartPost(id: Identifier, data: T.RouterCreatePartPostInput, options?: RequestOptions<T.RouterCreatePartPostInput>): Promise<import("axios").AxiosResponse<T.RouterCreatePartPostResponseData, T.RouterCreatePartPostInput, {}>>;
|
|
589
|
+
/**
|
|
590
|
+
* Performs the publish operation for the router capability.
|
|
591
|
+
* Calls `POST /mixed-media/{id}/publish` through the shared IDP-aware Faiber client.
|
|
592
|
+
* @param id Backend path identifier `id`.
|
|
593
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
594
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
595
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
|
|
596
|
+
*/
|
|
597
|
+
routerPublishPostMixedMediaIdPublish(id: Identifier, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.RouterPublishPostMixedMediaIdPublishResponseData, unknown, {}>>;
|
|
598
|
+
/**
|
|
599
|
+
* Performs the resources operation for the router capability.
|
|
600
|
+
* Calls `GET /mixed-media/{id}/resources` through the shared IDP-aware Faiber client.
|
|
601
|
+
* @param id Backend path identifier `id`.
|
|
602
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
603
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
604
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
|
|
605
|
+
*/
|
|
606
|
+
routerResourcesGet(id: Identifier, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.RouterResourcesGetResponseData, unknown, {}>>;
|
|
607
|
+
/**
|
|
608
|
+
* Performs the get workflow operation for the router capability.
|
|
609
|
+
* Calls `GET /mixed-media/{id}/workflow` through the shared IDP-aware Faiber client.
|
|
610
|
+
* @param id Backend path identifier `id`.
|
|
611
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
612
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
613
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
|
|
614
|
+
*/
|
|
615
|
+
routerGetWorkflowGetMixedMediaIdWorkflow(id: Identifier, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.RouterGetWorkflowGetMixedMediaIdWorkflowResponseData, unknown, {}>>;
|
|
616
|
+
/**
|
|
617
|
+
* Performs the save workflow operation for the router capability.
|
|
618
|
+
* Calls `PUT /mixed-media/{id}/workflow` through the shared IDP-aware Faiber client.
|
|
619
|
+
* @param id Backend path identifier `id`.
|
|
620
|
+
* @param data Typed JSON request body.
|
|
621
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
622
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
623
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
|
|
624
|
+
*/
|
|
625
|
+
routerSaveWorkflowPutMixedMediaIdWorkflow(id: Identifier, data: T.RouterSaveWorkflowPutMixedMediaIdWorkflowInput, options?: RequestOptions<T.RouterSaveWorkflowPutMixedMediaIdWorkflowInput>): Promise<import("axios").AxiosResponse<T.RouterSaveWorkflowPutMixedMediaIdWorkflowResponseData, T.RouterSaveWorkflowPutMixedMediaIdWorkflowInput, {}>>;
|
|
626
|
+
/**
|
|
627
|
+
* Performs the delete category operation for the router capability.
|
|
628
|
+
* Calls `DELETE /mixed-media/{mixed_id}/categories/{id}` through the shared IDP-aware Faiber client.
|
|
629
|
+
* @param mixedId Backend path identifier `mixed_id`.
|
|
630
|
+
* @param id Backend path identifier `id`.
|
|
631
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
632
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
633
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
|
|
634
|
+
*/
|
|
635
|
+
routerDeleteCategoryDelete(mixedId: Identifier, id: Identifier, options?: RequestOptions): Promise<import("axios").AxiosResponse<void, unknown, {}>>;
|
|
636
|
+
/**
|
|
637
|
+
* Performs the update category operation for the router capability.
|
|
638
|
+
* Calls `PATCH /mixed-media/{mixed_id}/categories/{id}` through the shared IDP-aware Faiber client.
|
|
639
|
+
* @param mixedId Backend path identifier `mixed_id`.
|
|
640
|
+
* @param id Backend path identifier `id`.
|
|
641
|
+
* @param data Typed JSON request body.
|
|
642
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
643
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
644
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
|
|
645
|
+
*/
|
|
646
|
+
routerUpdateCategoryPatchMixedMediaMixedIdCategoriesId(mixedId: Identifier, id: Identifier, data: T.RouterUpdateCategoryPatchMixedMediaMixedIdCategoriesIdInput, options?: RequestOptions<T.RouterUpdateCategoryPatchMixedMediaMixedIdCategoriesIdInput>): Promise<import("axios").AxiosResponse<T.RouterUpdateCategoryPatchMixedMediaMixedIdCategoriesIdResponseData, T.RouterUpdateCategoryPatchMixedMediaMixedIdCategoriesIdInput, {}>>;
|
|
647
|
+
/**
|
|
648
|
+
* Performs the delete part operation for the router capability.
|
|
649
|
+
* Calls `DELETE /mixed-media/{mixed_id}/parts/{id}` through the shared IDP-aware Faiber client.
|
|
650
|
+
* @param mixedId Backend path identifier `mixed_id`.
|
|
651
|
+
* @param id Backend path identifier `id`.
|
|
652
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
653
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
654
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
|
|
655
|
+
*/
|
|
656
|
+
routerDeletePartDelete(mixedId: Identifier, id: Identifier, options?: RequestOptions): Promise<import("axios").AxiosResponse<void, unknown, {}>>;
|
|
657
|
+
/**
|
|
658
|
+
* Performs the get part operation for the router capability.
|
|
659
|
+
* Calls `GET /mixed-media/{mixed_id}/parts/{id}` through the shared IDP-aware Faiber client.
|
|
660
|
+
* @param mixedId Backend path identifier `mixed_id`.
|
|
661
|
+
* @param id Backend path identifier `id`.
|
|
662
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
663
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
664
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
|
|
665
|
+
*/
|
|
666
|
+
routerGetPartGet(mixedId: Identifier, id: Identifier, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.RouterGetPartGetResponseData, unknown, {}>>;
|
|
667
|
+
/**
|
|
668
|
+
* Performs the update part operation for the router capability.
|
|
669
|
+
* Calls `PUT /mixed-media/{mixed_id}/parts/{id}` through the shared IDP-aware Faiber client.
|
|
670
|
+
* @param mixedId Backend path identifier `mixed_id`.
|
|
671
|
+
* @param id Backend path identifier `id`.
|
|
672
|
+
* @param data Typed JSON request body.
|
|
673
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
674
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
675
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
|
|
676
|
+
*/
|
|
677
|
+
routerUpdatePartPut(mixedId: Identifier, id: Identifier, data: T.RouterUpdatePartPutInput, options?: RequestOptions<T.RouterUpdatePartPutInput>): Promise<import("axios").AxiosResponse<T.RouterUpdatePartPutResponseData, T.RouterUpdatePartPutInput, {}>>;
|
|
678
|
+
/**
|
|
679
|
+
* Performs the health operation for the router capability.
|
|
680
|
+
* Calls `GET /operations/health` through the shared IDP-aware Faiber client.
|
|
681
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
682
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
683
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
|
|
684
|
+
*/
|
|
685
|
+
routerHealthGet(options?: RequestOptions): Promise<import("axios").AxiosResponse<import("@faiber/sdk-core").JsonValue, unknown, {}>>;
|
|
686
|
+
/**
|
|
687
|
+
* Performs the get settings operation for the router capability.
|
|
688
|
+
* Calls `GET /operations/settings` through the shared IDP-aware Faiber client.
|
|
689
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
690
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
691
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
|
|
692
|
+
*/
|
|
693
|
+
routerGetSettingsGet(options?: RequestOptions): Promise<import("axios").AxiosResponse<T.RouterGetSettingsGetResponseData, unknown, {}>>;
|
|
694
|
+
/**
|
|
695
|
+
* Performs the update settings operation for the router capability.
|
|
696
|
+
* Calls `PATCH /operations/settings` through the shared IDP-aware Faiber client.
|
|
697
|
+
* @param data Typed JSON request body.
|
|
698
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
699
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
700
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
|
|
701
|
+
*/
|
|
702
|
+
routerUpdateSettingsPatch(data: T.RouterUpdateSettingsPatchInput, options?: RequestOptions<T.RouterUpdateSettingsPatchInput>): Promise<import("axios").AxiosResponse<T.RouterUpdateSettingsPatchResponseData, T.RouterUpdateSettingsPatchInput, {}>>;
|
|
703
|
+
/**
|
|
704
|
+
* Performs the transcription models operation for the router capability.
|
|
705
|
+
* Calls `GET /operations/transcription-models` through the shared IDP-aware Faiber client.
|
|
706
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
707
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
708
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
|
|
709
|
+
*/
|
|
710
|
+
routerTranscriptionModelsGet(options?: RequestOptions): Promise<import("axios").AxiosResponse<T.RouterTranscriptionModelsGetResponse, unknown, {}>>;
|
|
711
|
+
/**
|
|
712
|
+
* Performs the legacy enqueue operation for the router capability.
|
|
713
|
+
* Calls `POST /packages` through the shared IDP-aware Faiber client.
|
|
714
|
+
* @param data Typed JSON request body.
|
|
715
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
716
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
717
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
|
|
718
|
+
*/
|
|
719
|
+
routerLegacyEnqueuePost(data: T.RouterLegacyEnqueuePostInput, options?: RequestOptions<T.RouterLegacyEnqueuePostInput>): Promise<import("axios").AxiosResponse<import("@faiber/sdk-core").JsonValue, T.RouterLegacyEnqueuePostInput, {}>>;
|
|
720
|
+
/**
|
|
721
|
+
* Performs the legacy status operation for the router capability.
|
|
722
|
+
* Calls `GET /packages/{kind}/{media_id}` through the shared IDP-aware Faiber client.
|
|
723
|
+
* @param kind Backend path identifier `kind`.
|
|
724
|
+
* @param mediaId Backend path identifier `media_id`.
|
|
725
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
726
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
727
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
|
|
728
|
+
*/
|
|
729
|
+
routerLegacyStatusGet(kind: Identifier, mediaId: Identifier, options?: RequestOptions): Promise<import("axios").AxiosResponse<import("@faiber/sdk-core").JsonValue, unknown, {}>>;
|
|
730
|
+
/**
|
|
731
|
+
* Performs the package file operation for the router capability.
|
|
732
|
+
* Calls `GET /packages/{package_id}/files/{*path}` through the shared IDP-aware Faiber client.
|
|
733
|
+
* @param packageId Backend path identifier `package_id`.
|
|
734
|
+
* @param path Backend path identifier `*path`.
|
|
735
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
736
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
737
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
|
|
738
|
+
*/
|
|
739
|
+
routerPackageFileGet(packageId: Identifier, path: Identifier, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.RouterPackageFileGetResponse, unknown, {}>>;
|
|
740
|
+
/**
|
|
741
|
+
* Performs the status operation for the router capability.
|
|
742
|
+
* Calls `GET /status` through the shared IDP-aware Faiber client.
|
|
743
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
744
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
745
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
|
|
746
|
+
*/
|
|
747
|
+
routerStatusGet(options?: RequestOptions): Promise<import("axios").AxiosResponse<import("@faiber/sdk-core").JsonValue, unknown, {}>>;
|
|
748
|
+
/**
|
|
749
|
+
* Performs the list tags operation for the router capability.
|
|
750
|
+
* Calls `GET /tags` through the shared IDP-aware Faiber client.
|
|
751
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
752
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
753
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
|
|
754
|
+
*/
|
|
755
|
+
routerListTagsGet(options?: RequestOptions): Promise<import("axios").AxiosResponse<T.RouterListTagsGetResponse, unknown, {}>>;
|
|
756
|
+
/**
|
|
757
|
+
* Performs the create tag operation for the router capability.
|
|
758
|
+
* Calls `POST /tags` through the shared IDP-aware Faiber client.
|
|
759
|
+
* @param data Typed JSON request body.
|
|
760
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
761
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
762
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
|
|
763
|
+
*/
|
|
764
|
+
routerCreateTagPost(data: T.RouterCreateTagPostInput, options?: RequestOptions<T.RouterCreateTagPostInput>): Promise<import("axios").AxiosResponse<T.RouterCreateTagPostResponseData, T.RouterCreateTagPostInput, {}>>;
|
|
765
|
+
/**
|
|
766
|
+
* Performs the delete tag operation for the router capability.
|
|
767
|
+
* Calls `DELETE /tags/{id}` through the shared IDP-aware Faiber client.
|
|
768
|
+
* @param id Backend path identifier `id`.
|
|
769
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
770
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
771
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
|
|
772
|
+
*/
|
|
773
|
+
routerDeleteTagDelete(id: Identifier, options?: RequestOptions): Promise<import("axios").AxiosResponse<void, unknown, {}>>;
|
|
774
|
+
/**
|
|
775
|
+
* Performs the create upload session operation for the router capability.
|
|
776
|
+
* Calls `POST /upload-sessions` through the shared IDP-aware Faiber client.
|
|
777
|
+
* @param data Typed JSON request body.
|
|
778
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
779
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
780
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
|
|
781
|
+
*/
|
|
782
|
+
routerCreateUploadSessionPost(data: T.RouterCreateUploadSessionPostInput, options?: RequestOptions<T.RouterCreateUploadSessionPostInput>): Promise<import("axios").AxiosResponse<T.RouterCreateUploadSessionPostResponseData, T.RouterCreateUploadSessionPostInput, {}>>;
|
|
783
|
+
/**
|
|
784
|
+
* Performs the cancel upload operation for the router capability.
|
|
785
|
+
* Calls `DELETE /upload-sessions/{id}` through the shared IDP-aware Faiber client.
|
|
786
|
+
* @param id Backend path identifier `id`.
|
|
787
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
788
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
789
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
|
|
790
|
+
*/
|
|
791
|
+
routerCancelUploadDelete(id: Identifier, options?: RequestOptions): Promise<import("axios").AxiosResponse<void, unknown, {}>>;
|
|
792
|
+
/**
|
|
793
|
+
* Performs the get upload session operation for the router capability.
|
|
794
|
+
* Calls `GET /upload-sessions/{id}` through the shared IDP-aware Faiber client.
|
|
795
|
+
* @param id Backend path identifier `id`.
|
|
796
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
797
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
798
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
|
|
799
|
+
*/
|
|
800
|
+
routerGetUploadSessionGet(id: Identifier, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.RouterGetUploadSessionGetResponseData, unknown, {}>>;
|
|
801
|
+
/**
|
|
802
|
+
* Performs the complete upload operation for the router capability.
|
|
803
|
+
* Calls `POST /upload-sessions/{id}/complete` through the shared IDP-aware Faiber client.
|
|
804
|
+
* @param id Backend path identifier `id`.
|
|
805
|
+
* @param data Typed JSON request body.
|
|
806
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
807
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
808
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
|
|
809
|
+
*/
|
|
810
|
+
routerCompleteUploadPost(id: Identifier, data: T.RouterCompleteUploadPostInput, options?: RequestOptions<T.RouterCompleteUploadPostInput>): Promise<import("axios").AxiosResponse<T.RouterCompleteUploadPostResponseData, T.RouterCompleteUploadPostInput, {}>>;
|
|
811
|
+
/**
|
|
812
|
+
* Performs the put upload part operation for the router capability.
|
|
813
|
+
* Calls `PUT /upload-sessions/{id}/parts/{part_number}` through the shared IDP-aware Faiber client.
|
|
814
|
+
* @param id Backend path identifier `id`.
|
|
815
|
+
* @param partNumber Backend path identifier `part_number`.
|
|
816
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
817
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
818
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
|
|
819
|
+
*/
|
|
820
|
+
routerPutUploadPartPut(id: Identifier, partNumber: Identifier, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.RouterPutUploadPartPutResponseData, unknown, {}>>;
|
|
821
|
+
}
|
|
822
|
+
//# sourceMappingURL=operations.d.ts.map
|