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