@faiber/faiber-drm 0.10.1 → 0.11.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +4 -1
- package/dist/.tsbuildinfo +1 -1
- package/dist/index.d.ts +79 -0
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +78 -0
- package/dist/index.js.map +1 -1
- package/dist/operations.d.ts +208 -207
- package/dist/operations.d.ts.map +1 -1
- package/dist/operations.js +304 -303
- package/dist/operations.js.map +1 -1
- package/dist/operations.types.d.ts +488 -437
- package/dist/operations.types.d.ts.map +1 -1
- package/package.json +2 -2
package/dist/operations.js
CHANGED
|
@@ -2,1085 +2,1086 @@ import { ServiceApi, urlEncoded } from "@faiber/sdk-core";
|
|
|
2
2
|
export class DrmOperations extends ServiceApi {
|
|
3
3
|
/**
|
|
4
4
|
* Performs the audit events operation for the router capability.
|
|
5
|
-
* Calls `GET /audit-events` through the shared IDP-aware Faiber client.
|
|
5
|
+
* Calls `GET /api/v1/audit-events` through the shared IDP-aware Faiber client.
|
|
6
6
|
* @param params Typed query parameters; omitted members retain backend defaults.
|
|
7
7
|
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
8
8
|
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
9
|
-
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission:
|
|
9
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: drm:audit:read.
|
|
10
10
|
*/
|
|
11
11
|
routerAuditEventsGet(params, options) {
|
|
12
|
-
return this.client.request({ ...options, method: "GET", url: `/audit-events`, params });
|
|
12
|
+
return this.client.request({ ...options, method: "GET", url: `/api/v1/audit-events`, params });
|
|
13
13
|
}
|
|
14
14
|
/**
|
|
15
15
|
* Performs the list analyses operation for the router capability.
|
|
16
|
-
* Calls `GET /composition-analyses` through the shared IDP-aware Faiber client.
|
|
16
|
+
* Calls `GET /api/v1/composition-analyses` through the shared IDP-aware Faiber client.
|
|
17
17
|
* @param params Typed query parameters; omitted members retain backend defaults.
|
|
18
18
|
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
19
19
|
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
20
|
-
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission:
|
|
20
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: drm:composition:read.
|
|
21
21
|
*/
|
|
22
22
|
routerListAnalysesGet(params, options) {
|
|
23
|
-
return this.client.request({ ...options, method: "GET", url: `/composition-analyses`, params });
|
|
23
|
+
return this.client.request({ ...options, method: "GET", url: `/api/v1/composition-analyses`, params });
|
|
24
24
|
}
|
|
25
25
|
/**
|
|
26
26
|
* Performs the list composition categories operation for the router capability.
|
|
27
|
-
* Calls `GET /composition-categories` through the shared IDP-aware Faiber client.
|
|
27
|
+
* Calls `GET /api/v1/composition-categories` through the shared IDP-aware Faiber client.
|
|
28
28
|
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
29
29
|
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
30
|
-
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission:
|
|
30
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: drm:composition:read.
|
|
31
31
|
*/
|
|
32
32
|
routerListCompositionCategoriesGet(options) {
|
|
33
|
-
return this.client.request({ ...options, method: "GET", url: `/composition-categories` });
|
|
33
|
+
return this.client.request({ ...options, method: "GET", url: `/api/v1/composition-categories` });
|
|
34
34
|
}
|
|
35
35
|
/**
|
|
36
36
|
* Performs the create composition category operation for the router capability.
|
|
37
|
-
* Calls `POST /composition-categories` through the shared IDP-aware Faiber client.
|
|
37
|
+
* Calls `POST /api/v1/composition-categories` through the shared IDP-aware Faiber client.
|
|
38
38
|
* @param data Typed JSON request body.
|
|
39
39
|
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
40
40
|
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
41
|
-
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission:
|
|
41
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: drm:composition:write.
|
|
42
42
|
*/
|
|
43
43
|
routerCreateCompositionCategoryPost(data, options) {
|
|
44
|
-
return this.client.request({ ...options, method: "POST", url: `/composition-categories`, data: data });
|
|
44
|
+
return this.client.request({ ...options, method: "POST", url: `/api/v1/composition-categories`, data: data });
|
|
45
45
|
}
|
|
46
46
|
/**
|
|
47
47
|
* Performs the delete composition category operation for the router capability.
|
|
48
|
-
* Calls `DELETE /composition-categories/{id}` through the shared IDP-aware Faiber client.
|
|
48
|
+
* Calls `DELETE /api/v1/composition-categories/{id}` through the shared IDP-aware Faiber client.
|
|
49
49
|
* @param id Backend path identifier `id`.
|
|
50
50
|
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
51
51
|
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
52
|
-
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission:
|
|
52
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: drm:composition:write.
|
|
53
53
|
*/
|
|
54
54
|
routerDeleteCompositionCategoryDelete(id, options) {
|
|
55
|
-
return this.client.request({ ...options, method: "DELETE", url: `/composition-categories/${encodeURIComponent(id)}` });
|
|
55
|
+
return this.client.request({ ...options, method: "DELETE", url: `/api/v1/composition-categories/${encodeURIComponent(id)}` });
|
|
56
56
|
}
|
|
57
57
|
/**
|
|
58
58
|
* Performs the update composition category operation for the router capability.
|
|
59
|
-
* Calls `PATCH /composition-categories/{id}` through the shared IDP-aware Faiber client.
|
|
59
|
+
* Calls `PATCH /api/v1/composition-categories/{id}` through the shared IDP-aware Faiber client.
|
|
60
60
|
* @param id Backend path identifier `id`.
|
|
61
61
|
* @param data Typed JSON request body.
|
|
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:
|
|
64
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: drm:composition:write.
|
|
65
65
|
*/
|
|
66
66
|
routerUpdateCompositionCategoryPatch(id, data, options) {
|
|
67
|
-
return this.client.request({ ...options, method: "PATCH", url: `/composition-categories/${encodeURIComponent(id)}`, data: data });
|
|
67
|
+
return this.client.request({ ...options, method: "PATCH", url: `/api/v1/composition-categories/${encodeURIComponent(id)}`, data: data });
|
|
68
68
|
}
|
|
69
69
|
/**
|
|
70
70
|
* Performs the list compositions operation for the router capability.
|
|
71
|
-
* Calls `GET /compositions` through the shared IDP-aware Faiber client.
|
|
71
|
+
* Calls `GET /api/v1/compositions` through the shared IDP-aware Faiber client.
|
|
72
72
|
* @param params Typed query parameters; omitted members retain backend defaults.
|
|
73
73
|
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
74
74
|
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
75
|
-
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission:
|
|
75
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: drm:composition:read.
|
|
76
76
|
*/
|
|
77
77
|
routerListCompositionsGet(params, options) {
|
|
78
|
-
return this.client.request({ ...options, method: "GET", url: `/compositions`, params });
|
|
78
|
+
return this.client.request({ ...options, method: "GET", url: `/api/v1/compositions`, params });
|
|
79
79
|
}
|
|
80
80
|
/**
|
|
81
81
|
* Performs the create composition operation for the router capability.
|
|
82
|
-
* Calls `POST /compositions` through the shared IDP-aware Faiber client.
|
|
82
|
+
* Calls `POST /api/v1/compositions` through the shared IDP-aware Faiber client.
|
|
83
83
|
* @param data Typed JSON request body.
|
|
84
84
|
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
85
85
|
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
86
|
-
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission:
|
|
86
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: drm:composition:write.
|
|
87
87
|
*/
|
|
88
88
|
routerCreateCompositionPost(data, options) {
|
|
89
|
-
return this.client.request({ ...options, method: "POST", url: `/compositions`, data: data });
|
|
89
|
+
return this.client.request({ ...options, method: "POST", url: `/api/v1/compositions`, data: data });
|
|
90
90
|
}
|
|
91
91
|
/**
|
|
92
92
|
* Performs the list manifests operation for the router capability.
|
|
93
|
-
* Calls `GET /compositions/{id}/manifests` through the shared IDP-aware Faiber client.
|
|
93
|
+
* Calls `GET /api/v1/compositions/{id}/manifests` through the shared IDP-aware Faiber client.
|
|
94
94
|
* @param id Backend path identifier `id`.
|
|
95
95
|
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
96
96
|
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
97
|
-
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission:
|
|
97
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: drm:composition:read.
|
|
98
98
|
*/
|
|
99
|
-
|
|
100
|
-
return this.client.request({ ...options, method: "GET", url: `/compositions/${encodeURIComponent(id)}/manifests` });
|
|
99
|
+
routerListManifestsGetApiV1CompositionsIdManifests(id, options) {
|
|
100
|
+
return this.client.request({ ...options, method: "GET", url: `/api/v1/compositions/${encodeURIComponent(id)}/manifests` });
|
|
101
101
|
}
|
|
102
102
|
/**
|
|
103
103
|
* Performs the create manifest version operation for the router capability.
|
|
104
|
-
* Calls `POST /compositions/{id}/manifests` through the shared IDP-aware Faiber client.
|
|
104
|
+
* Calls `POST /api/v1/compositions/{id}/manifests` through the shared IDP-aware Faiber client.
|
|
105
105
|
* @param id Backend path identifier `id`.
|
|
106
106
|
* @param data Typed JSON request body.
|
|
107
107
|
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
108
108
|
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
109
|
-
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission:
|
|
109
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: drm:composition:write.
|
|
110
110
|
*/
|
|
111
111
|
routerCreateManifestVersionPost(id, data, options) {
|
|
112
|
-
return this.client.request({ ...options, method: "POST", url: `/compositions/${encodeURIComponent(id)}/manifests`, data: data });
|
|
112
|
+
return this.client.request({ ...options, method: "POST", url: `/api/v1/compositions/${encodeURIComponent(id)}/manifests`, data: data });
|
|
113
113
|
}
|
|
114
114
|
/**
|
|
115
115
|
* Performs the publish operation for the router capability.
|
|
116
|
-
* Calls `POST /compositions/{id}/publish` through the shared IDP-aware Faiber client.
|
|
116
|
+
* Calls `POST /api/v1/compositions/{id}/publish` through the shared IDP-aware Faiber client.
|
|
117
117
|
* @param id Backend path identifier `id`.
|
|
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:
|
|
120
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: drm:composition:write.
|
|
121
121
|
*/
|
|
122
|
-
|
|
123
|
-
return this.client.request({ ...options, method: "POST", url: `/compositions/${encodeURIComponent(id)}/publish` });
|
|
122
|
+
routerPublishPostApiV1CompositionsIdPublish(id, options) {
|
|
123
|
+
return this.client.request({ ...options, method: "POST", url: `/api/v1/compositions/${encodeURIComponent(id)}/publish` });
|
|
124
124
|
}
|
|
125
125
|
/**
|
|
126
126
|
* Performs the get workflow operation for the router capability.
|
|
127
|
-
* Calls `GET /compositions/{id}/workflow` through the shared IDP-aware Faiber client.
|
|
127
|
+
* Calls `GET /api/v1/compositions/{id}/workflow` through the shared IDP-aware Faiber client.
|
|
128
128
|
* @param id Backend path identifier `id`.
|
|
129
129
|
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
130
130
|
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
131
|
-
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission:
|
|
131
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: drm:composition:read.
|
|
132
132
|
*/
|
|
133
|
-
|
|
134
|
-
return this.client.request({ ...options, method: "GET", url: `/compositions/${encodeURIComponent(id)}/workflow` });
|
|
133
|
+
routerGetWorkflowGetApiV1CompositionsIdWorkflow(id, options) {
|
|
134
|
+
return this.client.request({ ...options, method: "GET", url: `/api/v1/compositions/${encodeURIComponent(id)}/workflow` });
|
|
135
135
|
}
|
|
136
136
|
/**
|
|
137
137
|
* Performs the save workflow operation for the router capability.
|
|
138
|
-
* Calls `PUT /compositions/{id}/workflow` through the shared IDP-aware Faiber client.
|
|
138
|
+
* Calls `PUT /api/v1/compositions/{id}/workflow` through the shared IDP-aware Faiber client.
|
|
139
139
|
* @param id Backend path identifier `id`.
|
|
140
140
|
* @param data Typed JSON request body.
|
|
141
141
|
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
142
142
|
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
143
|
-
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission:
|
|
143
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: drm:composition:write.
|
|
144
144
|
*/
|
|
145
|
-
|
|
146
|
-
return this.client.request({ ...options, method: "PUT", url: `/compositions/${encodeURIComponent(id)}/workflow`, data: data });
|
|
145
|
+
routerSaveWorkflowPutApiV1CompositionsIdWorkflow(id, data, options) {
|
|
146
|
+
return this.client.request({ ...options, method: "PUT", url: `/api/v1/compositions/${encodeURIComponent(id)}/workflow`, data: data });
|
|
147
147
|
}
|
|
148
148
|
/**
|
|
149
149
|
* Performs the dashboard operation for the router capability.
|
|
150
|
-
* Calls `GET /dashboard/summary` through the shared IDP-aware Faiber client.
|
|
150
|
+
* Calls `GET /api/v1/dashboard/summary` through the shared IDP-aware Faiber client.
|
|
151
151
|
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
152
152
|
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
153
|
-
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission:
|
|
153
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: drm:read.
|
|
154
154
|
*/
|
|
155
155
|
routerDashboardGet(options) {
|
|
156
|
-
return this.client.request({ ...options, method: "GET", url: `/dashboard/summary` });
|
|
156
|
+
return this.client.request({ ...options, method: "GET", url: `/api/v1/dashboard/summary` });
|
|
157
157
|
}
|
|
158
158
|
/**
|
|
159
159
|
* Performs the list jobs operation for the router capability.
|
|
160
|
-
* Calls `GET /drm/jobs` through the shared IDP-aware Faiber client.
|
|
160
|
+
* Calls `GET /api/v1/drm/jobs` through the shared IDP-aware Faiber client.
|
|
161
161
|
* @param params Typed query parameters; omitted members retain backend defaults.
|
|
162
162
|
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
163
163
|
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
164
|
-
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission:
|
|
164
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: drm:package:read.
|
|
165
165
|
*/
|
|
166
166
|
routerListJobsGet(params, options) {
|
|
167
|
-
return this.client.request({ ...options, method: "GET", url: `/drm/jobs`, params });
|
|
167
|
+
return this.client.request({ ...options, method: "GET", url: `/api/v1/drm/jobs`, params });
|
|
168
168
|
}
|
|
169
169
|
/**
|
|
170
170
|
* Performs the create job operation for the router capability.
|
|
171
|
-
* Calls `POST /drm/jobs` through the shared IDP-aware Faiber client.
|
|
171
|
+
* Calls `POST /api/v1/drm/jobs` through the shared IDP-aware Faiber client.
|
|
172
172
|
* @param data Typed JSON request body.
|
|
173
173
|
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
174
174
|
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
175
|
-
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission:
|
|
175
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: drm:package:write.
|
|
176
176
|
*/
|
|
177
177
|
routerCreateJobPost(data, options) {
|
|
178
|
-
return this.client.request({ ...options, method: "POST", url: `/drm/jobs`, data: data });
|
|
178
|
+
return this.client.request({ ...options, method: "POST", url: `/api/v1/drm/jobs`, data: data });
|
|
179
179
|
}
|
|
180
180
|
/**
|
|
181
181
|
* Performs the cancel job operation for the router capability.
|
|
182
|
-
* Calls `DELETE /drm/jobs/{id}` through the shared IDP-aware Faiber client.
|
|
182
|
+
* Calls `DELETE /api/v1/drm/jobs/{id}` through the shared IDP-aware Faiber client.
|
|
183
183
|
* @param id Backend path identifier `id`.
|
|
184
184
|
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
185
185
|
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
186
|
-
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission:
|
|
186
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: drm:package:write.
|
|
187
187
|
*/
|
|
188
188
|
routerCancelJobDelete(id, options) {
|
|
189
|
-
return this.client.request({ ...options, method: "DELETE", url: `/drm/jobs/${encodeURIComponent(id)}` });
|
|
189
|
+
return this.client.request({ ...options, method: "DELETE", url: `/api/v1/drm/jobs/${encodeURIComponent(id)}` });
|
|
190
190
|
}
|
|
191
191
|
/**
|
|
192
192
|
* Performs the retry job operation for the router capability.
|
|
193
|
-
* Calls `POST /drm/jobs/{id}/retry` through the shared IDP-aware Faiber client.
|
|
193
|
+
* Calls `POST /api/v1/drm/jobs/{id}/retry` through the shared IDP-aware Faiber client.
|
|
194
194
|
* @param id Backend path identifier `id`.
|
|
195
195
|
* @param data Typed JSON request body.
|
|
196
196
|
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
197
197
|
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
198
|
-
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission:
|
|
198
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: drm:package:write.
|
|
199
199
|
*/
|
|
200
200
|
routerRetryJobPost(id, data, options) {
|
|
201
|
-
return this.client.request({ ...options, method: "POST", url: `/drm/jobs/${encodeURIComponent(id)}/retry`, data: data });
|
|
201
|
+
return this.client.request({ ...options, method: "POST", url: `/api/v1/drm/jobs/${encodeURIComponent(id)}/retry`, data: data });
|
|
202
202
|
}
|
|
203
203
|
/**
|
|
204
204
|
* Performs the retry all failed operation for the router capability.
|
|
205
|
-
* Calls `POST /drm/jobs/actions/retry-failed` through the shared IDP-aware Faiber client.
|
|
205
|
+
* Calls `POST /api/v1/drm/jobs/actions/retry-failed` through the shared IDP-aware Faiber client.
|
|
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:
|
|
208
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: drm:package:write.
|
|
209
209
|
*/
|
|
210
210
|
routerRetryAllFailedPost(options) {
|
|
211
|
-
return this.client.request({ ...options, method: "POST", url: `/drm/jobs/actions/retry-failed` });
|
|
211
|
+
return this.client.request({ ...options, method: "POST", url: `/api/v1/drm/jobs/actions/retry-failed` });
|
|
212
212
|
}
|
|
213
213
|
/**
|
|
214
214
|
* Performs the list external references operation for the router capability.
|
|
215
|
-
* Calls `GET /external-references` through the shared IDP-aware Faiber client.
|
|
215
|
+
* Calls `GET /api/v1/external-references` through the shared IDP-aware Faiber client.
|
|
216
216
|
* @param params Typed query parameters; omitted members retain backend defaults.
|
|
217
217
|
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
218
218
|
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
219
|
-
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission:
|
|
219
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: drm:composition:read.
|
|
220
220
|
*/
|
|
221
221
|
routerListExternalReferencesGet(params, options) {
|
|
222
|
-
return this.client.request({ ...options, method: "GET", url: `/external-references`, params });
|
|
222
|
+
return this.client.request({ ...options, method: "GET", url: `/api/v1/external-references`, params });
|
|
223
223
|
}
|
|
224
224
|
/**
|
|
225
225
|
* Performs the upsert external reference operation for the router capability.
|
|
226
|
-
* Calls `POST /external-references` through the shared IDP-aware Faiber client.
|
|
226
|
+
* Calls `POST /api/v1/external-references` through the shared IDP-aware Faiber client.
|
|
227
227
|
* @param data Typed JSON request body.
|
|
228
228
|
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
229
229
|
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
230
|
-
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission:
|
|
230
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: drm:composition:write.
|
|
231
231
|
*/
|
|
232
232
|
routerUpsertExternalReferencePost(data, options) {
|
|
233
|
-
return this.client.request({ ...options, method: "POST", url: `/external-references`, data: data });
|
|
233
|
+
return this.client.request({ ...options, method: "POST", url: `/api/v1/external-references`, data: data });
|
|
234
234
|
}
|
|
235
235
|
/**
|
|
236
236
|
* Performs the list folders operation for the router capability.
|
|
237
|
-
* Calls `GET /folders` through the shared IDP-aware Faiber client.
|
|
237
|
+
* Calls `GET /api/v1/folders` through the shared IDP-aware Faiber client.
|
|
238
238
|
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
239
239
|
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
240
|
-
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission:
|
|
240
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: drm:media:read.
|
|
241
241
|
*/
|
|
242
242
|
routerListFoldersGet(options) {
|
|
243
|
-
return this.client.request({ ...options, method: "GET", url: `/folders` });
|
|
243
|
+
return this.client.request({ ...options, method: "GET", url: `/api/v1/folders` });
|
|
244
244
|
}
|
|
245
245
|
/**
|
|
246
246
|
* Performs the create folder operation for the router capability.
|
|
247
|
-
* Calls `POST /folders` through the shared IDP-aware Faiber client.
|
|
247
|
+
* Calls `POST /api/v1/folders` through the shared IDP-aware Faiber client.
|
|
248
248
|
* @param data Typed JSON request body.
|
|
249
249
|
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
250
250
|
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
251
|
-
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission:
|
|
251
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: drm:media:write.
|
|
252
252
|
*/
|
|
253
253
|
routerCreateFolderPost(data, options) {
|
|
254
|
-
return this.client.request({ ...options, method: "POST", url: `/folders`, data: data });
|
|
254
|
+
return this.client.request({ ...options, method: "POST", url: `/api/v1/folders`, data: data });
|
|
255
255
|
}
|
|
256
256
|
/**
|
|
257
257
|
* Performs the delete folder operation for the router capability.
|
|
258
|
-
* Calls `DELETE /folders/{id}` through the shared IDP-aware Faiber client.
|
|
258
|
+
* Calls `DELETE /api/v1/folders/{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:
|
|
262
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: drm:media:write.
|
|
263
263
|
*/
|
|
264
264
|
routerDeleteFolderDelete(id, options) {
|
|
265
|
-
return this.client.request({ ...options, method: "DELETE", url: `/folders/${encodeURIComponent(id)}` });
|
|
265
|
+
return this.client.request({ ...options, method: "DELETE", url: `/api/v1/folders/${encodeURIComponent(id)}` });
|
|
266
266
|
}
|
|
267
267
|
/**
|
|
268
268
|
* Performs the update folder operation for the router capability.
|
|
269
|
-
* Calls `PATCH /folders/{id}` through the shared IDP-aware Faiber client.
|
|
269
|
+
* Calls `PATCH /api/v1/folders/{id}` through the shared IDP-aware Faiber client.
|
|
270
270
|
* @param id Backend path identifier `id`.
|
|
271
271
|
* @param data Typed JSON request body.
|
|
272
272
|
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
273
273
|
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
274
|
-
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission:
|
|
274
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: drm:media:write.
|
|
275
275
|
*/
|
|
276
276
|
routerUpdateFolderPatch(id, data, options) {
|
|
277
|
-
return this.client.request({ ...options, method: "PATCH", url: `/folders/${encodeURIComponent(id)}`, data: data });
|
|
277
|
+
return this.client.request({ ...options, method: "PATCH", url: `/api/v1/folders/${encodeURIComponent(id)}`, data: data });
|
|
278
278
|
}
|
|
279
279
|
/**
|
|
280
280
|
* Performs the list libraries operation for the router capability.
|
|
281
|
-
* Calls `GET /libraries` through the shared IDP-aware Faiber client.
|
|
281
|
+
* Calls `GET /api/v1/libraries` through the shared IDP-aware Faiber client.
|
|
282
282
|
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
283
283
|
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
284
|
-
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission:
|
|
284
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: drm:library:read.
|
|
285
285
|
*/
|
|
286
286
|
routerListLibrariesGet(options) {
|
|
287
|
-
return this.client.request({ ...options, method: "GET", url: `/libraries` });
|
|
287
|
+
return this.client.request({ ...options, method: "GET", url: `/api/v1/libraries` });
|
|
288
288
|
}
|
|
289
289
|
/**
|
|
290
290
|
* Performs the create library operation for the router capability.
|
|
291
|
-
* Calls `POST /libraries` through the shared IDP-aware Faiber client.
|
|
291
|
+
* Calls `POST /api/v1/libraries` through the shared IDP-aware Faiber client.
|
|
292
292
|
* @param data Typed JSON request body.
|
|
293
293
|
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
294
294
|
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
295
|
-
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission:
|
|
295
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: drm:library:write.
|
|
296
296
|
*/
|
|
297
297
|
routerCreateLibraryPost(data, options) {
|
|
298
|
-
return this.client.request({ ...options, method: "POST", url: `/libraries`, data: data });
|
|
298
|
+
return this.client.request({ ...options, method: "POST", url: `/api/v1/libraries`, data: data });
|
|
299
299
|
}
|
|
300
300
|
/**
|
|
301
301
|
* Performs the delete library operation for the router capability.
|
|
302
|
-
* Calls `DELETE /libraries/{id}` through the shared IDP-aware Faiber client.
|
|
302
|
+
* Calls `DELETE /api/v1/libraries/{id}` through the shared IDP-aware Faiber client.
|
|
303
303
|
* @param id Backend path identifier `id`.
|
|
304
304
|
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
305
305
|
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
306
|
-
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission:
|
|
306
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: drm:library:delete.
|
|
307
307
|
*/
|
|
308
308
|
routerDeleteLibraryDelete(id, options) {
|
|
309
|
-
return this.client.request({ ...options, method: "DELETE", url: `/libraries/${encodeURIComponent(id)}` });
|
|
309
|
+
return this.client.request({ ...options, method: "DELETE", url: `/api/v1/libraries/${encodeURIComponent(id)}` });
|
|
310
310
|
}
|
|
311
311
|
/**
|
|
312
312
|
* Performs the get library operation for the router capability.
|
|
313
|
-
* Calls `GET /libraries/{id}` through the shared IDP-aware Faiber client.
|
|
313
|
+
* Calls `GET /api/v1/libraries/{id}` through the shared IDP-aware Faiber client.
|
|
314
314
|
* @param id Backend path identifier `id`.
|
|
315
315
|
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
316
316
|
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
317
|
-
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission:
|
|
317
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: drm:library:read.
|
|
318
318
|
*/
|
|
319
319
|
routerGetLibraryGet(id, options) {
|
|
320
|
-
return this.client.request({ ...options, method: "GET", url: `/libraries/${encodeURIComponent(id)}` });
|
|
320
|
+
return this.client.request({ ...options, method: "GET", url: `/api/v1/libraries/${encodeURIComponent(id)}` });
|
|
321
321
|
}
|
|
322
322
|
/**
|
|
323
323
|
* Performs the update library operation for the router capability.
|
|
324
|
-
* Calls `PATCH /libraries/{id}` through the shared IDP-aware Faiber client.
|
|
324
|
+
* Calls `PATCH /api/v1/libraries/{id}` through the shared IDP-aware Faiber client.
|
|
325
325
|
* @param id Backend path identifier `id`.
|
|
326
326
|
* @param data Typed JSON request body.
|
|
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:
|
|
329
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: drm:library:write.
|
|
330
330
|
*/
|
|
331
331
|
routerUpdateLibraryPatch(id, data, options) {
|
|
332
|
-
return this.client.request({ ...options, method: "PATCH", url: `/libraries/${encodeURIComponent(id)}`, data: data });
|
|
332
|
+
return this.client.request({ ...options, method: "PATCH", url: `/api/v1/libraries/${encodeURIComponent(id)}`, data: data });
|
|
333
333
|
}
|
|
334
334
|
/**
|
|
335
335
|
* Performs the list categories operation for the router capability.
|
|
336
|
-
* Calls `GET /libraries/{id}/categories` through the shared IDP-aware Faiber client.
|
|
336
|
+
* Calls `GET /api/v1/libraries/{id}/categories` through the shared IDP-aware Faiber client.
|
|
337
337
|
* @param id Backend path identifier `id`.
|
|
338
338
|
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
339
339
|
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
340
|
-
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission:
|
|
340
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: drm:library:read.
|
|
341
341
|
*/
|
|
342
342
|
routerListCategoriesGet(id, options) {
|
|
343
|
-
return this.client.request({ ...options, method: "GET", url: `/libraries/${encodeURIComponent(id)}/categories` });
|
|
343
|
+
return this.client.request({ ...options, method: "GET", url: `/api/v1/libraries/${encodeURIComponent(id)}/categories` });
|
|
344
344
|
}
|
|
345
345
|
/**
|
|
346
346
|
* Performs the create category operation for the router capability.
|
|
347
|
-
* Calls `POST /libraries/{id}/categories` through the shared IDP-aware Faiber client.
|
|
347
|
+
* Calls `POST /api/v1/libraries/{id}/categories` through the shared IDP-aware Faiber client.
|
|
348
348
|
* @param id Backend path identifier `id`.
|
|
349
349
|
* @param data Typed JSON request body.
|
|
350
350
|
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
351
351
|
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
352
|
-
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission:
|
|
352
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: drm:library:write.
|
|
353
353
|
*/
|
|
354
|
-
|
|
355
|
-
return this.client.request({ ...options, method: "POST", url: `/libraries/${encodeURIComponent(id)}/categories`, data: data });
|
|
354
|
+
routerCreateCategoryPostApiV1LibrariesIdCategories(id, data, options) {
|
|
355
|
+
return this.client.request({ ...options, method: "POST", url: `/api/v1/libraries/${encodeURIComponent(id)}/categories`, data: data });
|
|
356
356
|
}
|
|
357
357
|
/**
|
|
358
358
|
* Performs the list items operation for the router capability.
|
|
359
|
-
* Calls `GET /libraries/{id}/items` through the shared IDP-aware Faiber client.
|
|
359
|
+
* Calls `GET /api/v1/libraries/{id}/items` through the shared IDP-aware Faiber client.
|
|
360
360
|
* @param id Backend path identifier `id`.
|
|
361
361
|
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
362
362
|
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
363
|
-
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission:
|
|
363
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: drm:content:read.
|
|
364
364
|
*/
|
|
365
365
|
routerListItemsGet(id, options) {
|
|
366
|
-
return this.client.request({ ...options, method: "GET", url: `/libraries/${encodeURIComponent(id)}/items` });
|
|
366
|
+
return this.client.request({ ...options, method: "GET", url: `/api/v1/libraries/${encodeURIComponent(id)}/items` });
|
|
367
367
|
}
|
|
368
368
|
/**
|
|
369
369
|
* Performs the create item operation for the router capability.
|
|
370
|
-
* Calls `POST /libraries/{id}/items` through the shared IDP-aware Faiber client.
|
|
370
|
+
* Calls `POST /api/v1/libraries/{id}/items` through the shared IDP-aware Faiber client.
|
|
371
371
|
* @param id Backend path identifier `id`.
|
|
372
372
|
* @param data Typed JSON request body.
|
|
373
373
|
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
374
374
|
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
375
|
-
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission:
|
|
375
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: drm:content:write.
|
|
376
376
|
*/
|
|
377
377
|
routerCreateItemPost(id, data, options) {
|
|
378
|
-
return this.client.request({ ...options, method: "POST", url: `/libraries/${encodeURIComponent(id)}/items`, data: data });
|
|
378
|
+
return this.client.request({ ...options, method: "POST", url: `/api/v1/libraries/${encodeURIComponent(id)}/items`, data: data });
|
|
379
379
|
}
|
|
380
380
|
/**
|
|
381
381
|
* Performs the query items operation for the router capability.
|
|
382
|
-
* Calls `GET /libraries/{id}/items/query` through the shared IDP-aware Faiber client.
|
|
382
|
+
* Calls `GET /api/v1/libraries/{id}/items/query` through the shared IDP-aware Faiber client.
|
|
383
383
|
* @param id Backend path identifier `id`.
|
|
384
384
|
* @param params Typed query parameters; omitted members retain backend defaults.
|
|
385
385
|
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
386
386
|
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
387
|
-
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission:
|
|
387
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: drm:content:read.
|
|
388
388
|
*/
|
|
389
389
|
routerQueryItemsGet(id, params, options) {
|
|
390
|
-
return this.client.request({ ...options, method: "GET", url: `/libraries/${encodeURIComponent(id)}/items/query`, params });
|
|
390
|
+
return this.client.request({ ...options, method: "GET", url: `/api/v1/libraries/${encodeURIComponent(id)}/items/query`, params });
|
|
391
391
|
}
|
|
392
392
|
/**
|
|
393
393
|
* Performs the library stats operation for the router capability.
|
|
394
|
-
* Calls `GET /libraries/{id}/stats` through the shared IDP-aware Faiber client.
|
|
394
|
+
* Calls `GET /api/v1/libraries/{id}/stats` through the shared IDP-aware Faiber client.
|
|
395
395
|
* @param id Backend path identifier `id`.
|
|
396
396
|
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
397
397
|
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
398
|
-
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission:
|
|
398
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: drm:library:read.
|
|
399
399
|
*/
|
|
400
400
|
routerLibraryStatsGet(id, options) {
|
|
401
|
-
return this.client.request({ ...options, method: "GET", url: `/libraries/${encodeURIComponent(id)}/stats` });
|
|
401
|
+
return this.client.request({ ...options, method: "GET", url: `/api/v1/libraries/${encodeURIComponent(id)}/stats` });
|
|
402
402
|
}
|
|
403
403
|
/**
|
|
404
404
|
* Performs the archive category operation for the router capability.
|
|
405
|
-
* Calls `DELETE /libraries/{library_id}/categories/{id}` through the shared IDP-aware Faiber client.
|
|
405
|
+
* Calls `DELETE /api/v1/libraries/{library_id}/categories/{id}` through the shared IDP-aware Faiber client.
|
|
406
406
|
* @param libraryId Backend path identifier `library_id`.
|
|
407
407
|
* @param id Backend path identifier `id`.
|
|
408
408
|
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
409
409
|
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
410
|
-
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission:
|
|
410
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: drm:library:write.
|
|
411
411
|
*/
|
|
412
412
|
routerArchiveCategoryDelete(libraryId, id, options) {
|
|
413
|
-
return this.client.request({ ...options, method: "DELETE", url: `/libraries/${encodeURIComponent(libraryId)}/categories/${encodeURIComponent(id)}` });
|
|
413
|
+
return this.client.request({ ...options, method: "DELETE", url: `/api/v1/libraries/${encodeURIComponent(libraryId)}/categories/${encodeURIComponent(id)}` });
|
|
414
414
|
}
|
|
415
415
|
/**
|
|
416
416
|
* Performs the update category operation for the router capability.
|
|
417
|
-
* Calls `PATCH /libraries/{library_id}/categories/{id}` through the shared IDP-aware Faiber client.
|
|
417
|
+
* Calls `PATCH /api/v1/libraries/{library_id}/categories/{id}` through the shared IDP-aware Faiber client.
|
|
418
418
|
* @param libraryId Backend path identifier `library_id`.
|
|
419
419
|
* @param id Backend path identifier `id`.
|
|
420
420
|
* @param data Typed JSON request body.
|
|
421
421
|
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
422
422
|
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
423
|
-
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission:
|
|
423
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: drm:library:write.
|
|
424
424
|
*/
|
|
425
|
-
|
|
426
|
-
return this.client.request({ ...options, method: "PATCH", url: `/libraries/${encodeURIComponent(libraryId)}/categories/${encodeURIComponent(id)}`, data: data });
|
|
425
|
+
routerUpdateCategoryPatchApiV1LibrariesLibraryIdCategoriesId(libraryId, id, data, options) {
|
|
426
|
+
return this.client.request({ ...options, method: "PATCH", url: `/api/v1/libraries/${encodeURIComponent(libraryId)}/categories/${encodeURIComponent(id)}`, data: data });
|
|
427
427
|
}
|
|
428
428
|
/**
|
|
429
429
|
* Performs the archive item operation for the router capability.
|
|
430
|
-
* Calls `DELETE /libraries/{library_id}/items/{id}` through the shared IDP-aware Faiber client.
|
|
430
|
+
* Calls `DELETE /api/v1/libraries/{library_id}/items/{id}` through the shared IDP-aware Faiber client.
|
|
431
431
|
* @param libraryId Backend path identifier `library_id`.
|
|
432
432
|
* @param id Backend path identifier `id`.
|
|
433
433
|
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
434
434
|
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
435
|
-
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission:
|
|
435
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: drm:content:write.
|
|
436
436
|
*/
|
|
437
437
|
routerArchiveItemDelete(libraryId, id, options) {
|
|
438
|
-
return this.client.request({ ...options, method: "DELETE", url: `/libraries/${encodeURIComponent(libraryId)}/items/${encodeURIComponent(id)}` });
|
|
438
|
+
return this.client.request({ ...options, method: "DELETE", url: `/api/v1/libraries/${encodeURIComponent(libraryId)}/items/${encodeURIComponent(id)}` });
|
|
439
439
|
}
|
|
440
440
|
/**
|
|
441
441
|
* Performs the get item operation for the router capability.
|
|
442
|
-
* Calls `GET /libraries/{library_id}/items/{id}` through the shared IDP-aware Faiber client.
|
|
442
|
+
* Calls `GET /api/v1/libraries/{library_id}/items/{id}` through the shared IDP-aware Faiber client.
|
|
443
443
|
* @param libraryId Backend path identifier `library_id`.
|
|
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:
|
|
447
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: drm:content:read.
|
|
448
448
|
*/
|
|
449
449
|
routerGetItemGet(libraryId, id, options) {
|
|
450
|
-
return this.client.request({ ...options, method: "GET", url: `/libraries/${encodeURIComponent(libraryId)}/items/${encodeURIComponent(id)}` });
|
|
450
|
+
return this.client.request({ ...options, method: "GET", url: `/api/v1/libraries/${encodeURIComponent(libraryId)}/items/${encodeURIComponent(id)}` });
|
|
451
451
|
}
|
|
452
452
|
/**
|
|
453
453
|
* Performs the update item operation for the router capability.
|
|
454
|
-
* Calls `PUT /libraries/{library_id}/items/{id}` through the shared IDP-aware Faiber client.
|
|
454
|
+
* Calls `PUT /api/v1/libraries/{library_id}/items/{id}` through the shared IDP-aware Faiber client.
|
|
455
455
|
* @param libraryId Backend path identifier `library_id`.
|
|
456
456
|
* @param id Backend path identifier `id`.
|
|
457
457
|
* @param data Typed JSON request body.
|
|
458
458
|
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
459
459
|
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
460
|
-
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission:
|
|
460
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: drm:content:write.
|
|
461
461
|
*/
|
|
462
462
|
routerUpdateItemPut(libraryId, id, data, options) {
|
|
463
|
-
return this.client.request({ ...options, method: "PUT", url: `/libraries/${encodeURIComponent(libraryId)}/items/${encodeURIComponent(id)}`, data: data });
|
|
463
|
+
return this.client.request({ ...options, method: "PUT", url: `/api/v1/libraries/${encodeURIComponent(libraryId)}/items/${encodeURIComponent(id)}`, data: data });
|
|
464
464
|
}
|
|
465
465
|
/**
|
|
466
466
|
* Performs the item attachments operation for the router capability.
|
|
467
|
-
* Calls `GET /libraries/{library_id}/items/{id}/attachments` through the shared IDP-aware Faiber client.
|
|
467
|
+
* Calls `GET /api/v1/libraries/{library_id}/items/{id}/attachments` through the shared IDP-aware Faiber client.
|
|
468
468
|
* @param libraryId Backend path identifier `library_id`.
|
|
469
469
|
* @param id Backend path identifier `id`.
|
|
470
470
|
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
471
471
|
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
472
|
-
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission:
|
|
472
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: drm:content:read.
|
|
473
473
|
*/
|
|
474
474
|
routerItemAttachmentsGet(libraryId, id, options) {
|
|
475
|
-
return this.client.request({ ...options, method: "GET", url: `/libraries/${encodeURIComponent(libraryId)}/items/${encodeURIComponent(id)}/attachments` });
|
|
475
|
+
return this.client.request({ ...options, method: "GET", url: `/api/v1/libraries/${encodeURIComponent(libraryId)}/items/${encodeURIComponent(id)}/attachments` });
|
|
476
476
|
}
|
|
477
477
|
/**
|
|
478
478
|
* Performs the attach media operation for the router capability.
|
|
479
|
-
* Calls `POST /libraries/{library_id}/items/{id}/attachments` through the shared IDP-aware Faiber client.
|
|
479
|
+
* Calls `POST /api/v1/libraries/{library_id}/items/{id}/attachments` through the shared IDP-aware Faiber client.
|
|
480
480
|
* @param libraryId Backend path identifier `library_id`.
|
|
481
481
|
* @param id Backend path identifier `id`.
|
|
482
482
|
* @param data Typed JSON request body.
|
|
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:
|
|
485
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: drm:content:write.
|
|
486
486
|
*/
|
|
487
487
|
routerAttachMediaPost(libraryId, id, data, options) {
|
|
488
|
-
return this.client.request({ ...options, method: "POST", url: `/libraries/${encodeURIComponent(libraryId)}/items/${encodeURIComponent(id)}/attachments`, data: data });
|
|
488
|
+
return this.client.request({ ...options, method: "POST", url: `/api/v1/libraries/${encodeURIComponent(libraryId)}/items/${encodeURIComponent(id)}/attachments`, data: data });
|
|
489
489
|
}
|
|
490
490
|
/**
|
|
491
491
|
* Performs the clear key license operation for the router capability.
|
|
492
|
-
* Calls `GET /licenses/clearkey` through the shared IDP-aware Faiber client.
|
|
492
|
+
* Calls `GET /api/v1/licenses/clearkey` through the shared IDP-aware Faiber client.
|
|
493
493
|
* @param params Typed query parameters; omitted members retain backend defaults.
|
|
494
494
|
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
495
495
|
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
496
|
-
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission:
|
|
496
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: drm:license:read.
|
|
497
497
|
*/
|
|
498
498
|
routerClearKeyLicenseGet(params, options) {
|
|
499
|
-
return this.client.request({ ...options, method: "GET", url: `/licenses/clearkey`, params });
|
|
499
|
+
return this.client.request({ ...options, method: "GET", url: `/api/v1/licenses/clearkey`, params });
|
|
500
500
|
}
|
|
501
501
|
/**
|
|
502
502
|
* Performs the list media operation for the router capability.
|
|
503
|
-
* Calls `GET /media` through the shared IDP-aware Faiber client.
|
|
503
|
+
* Calls `GET /api/v1/media` through the shared IDP-aware Faiber client.
|
|
504
504
|
* @param params Typed query parameters; omitted members retain backend defaults.
|
|
505
505
|
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
506
506
|
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
507
|
-
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission:
|
|
507
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: drm:media:read.
|
|
508
508
|
*/
|
|
509
509
|
routerListMediaGet(params, options) {
|
|
510
|
-
return this.client.request({ ...options, method: "GET", url: `/media`, params });
|
|
510
|
+
return this.client.request({ ...options, method: "GET", url: `/api/v1/media`, params });
|
|
511
511
|
}
|
|
512
512
|
/**
|
|
513
513
|
* Performs the upload media operation for the router capability.
|
|
514
|
-
* Calls `POST /media` through the shared IDP-aware Faiber client.
|
|
514
|
+
* Calls `POST /api/v1/media` through the shared IDP-aware Faiber client.
|
|
515
515
|
* @param data Typed multipart form.
|
|
516
516
|
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
517
517
|
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
518
|
-
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission:
|
|
518
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: drm:media:write.
|
|
519
519
|
*/
|
|
520
520
|
routerUploadMediaPost(data, options) {
|
|
521
|
-
return this.client.request({ ...options, method: "POST", url: `/media`, data: data });
|
|
521
|
+
return this.client.request({ ...options, method: "POST", url: `/api/v1/media`, data: data });
|
|
522
522
|
}
|
|
523
523
|
/**
|
|
524
524
|
* Performs the delete media operation for the router capability.
|
|
525
|
-
* Calls `DELETE /media/{id}` through the shared IDP-aware Faiber client.
|
|
525
|
+
* Calls `DELETE /api/v1/media/{id}` through the shared IDP-aware Faiber client.
|
|
526
526
|
* @param id Backend path identifier `id`.
|
|
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:
|
|
529
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: drm:media:write.
|
|
530
530
|
*/
|
|
531
531
|
routerDeleteMediaDelete(id, options) {
|
|
532
|
-
return this.client.request({ ...options, method: "DELETE", url: `/media/${encodeURIComponent(id)}` });
|
|
532
|
+
return this.client.request({ ...options, method: "DELETE", url: `/api/v1/media/${encodeURIComponent(id)}` });
|
|
533
533
|
}
|
|
534
534
|
/**
|
|
535
535
|
* Performs the get media operation for the router capability.
|
|
536
|
-
* Calls `GET /media/{id}` through the shared IDP-aware Faiber client.
|
|
536
|
+
* Calls `GET /api/v1/media/{id}` through the shared IDP-aware Faiber client.
|
|
537
537
|
* @param id Backend path identifier `id`.
|
|
538
538
|
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
539
539
|
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
540
|
-
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission:
|
|
540
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: drm:media:read.
|
|
541
541
|
*/
|
|
542
542
|
routerGetMediaGet(id, options) {
|
|
543
|
-
return this.client.request({ ...options, method: "GET", url: `/media/${encodeURIComponent(id)}` });
|
|
543
|
+
return this.client.request({ ...options, method: "GET", url: `/api/v1/media/${encodeURIComponent(id)}` });
|
|
544
544
|
}
|
|
545
545
|
/**
|
|
546
546
|
* Performs the update media operation for the router capability.
|
|
547
|
-
* Calls `PATCH /media/{id}` through the shared IDP-aware Faiber client.
|
|
547
|
+
* Calls `PATCH /api/v1/media/{id}` through the shared IDP-aware Faiber client.
|
|
548
548
|
* @param id Backend path identifier `id`.
|
|
549
549
|
* @param data Typed JSON request body.
|
|
550
550
|
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
551
551
|
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
552
|
-
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission:
|
|
552
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: drm:media:write.
|
|
553
553
|
*/
|
|
554
554
|
routerUpdateMediaPatch(id, data, options) {
|
|
555
|
-
return this.client.request({ ...options, method: "PATCH", url: `/media/${encodeURIComponent(id)}`, data: data });
|
|
555
|
+
return this.client.request({ ...options, method: "PATCH", url: `/api/v1/media/${encodeURIComponent(id)}`, data: data });
|
|
556
556
|
}
|
|
557
557
|
/**
|
|
558
558
|
* Performs the list packages operation for the router capability.
|
|
559
|
-
* Calls `GET /media/{id}/packages` through the shared IDP-aware Faiber client.
|
|
559
|
+
* Calls `GET /api/v1/media/{id}/packages` through the shared IDP-aware Faiber client.
|
|
560
560
|
* @param id Backend path identifier `id`.
|
|
561
561
|
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
562
562
|
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
563
|
-
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission:
|
|
563
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: drm:package:read.
|
|
564
564
|
*/
|
|
565
565
|
routerListPackagesGet(id, options) {
|
|
566
|
-
return this.client.request({ ...options, method: "GET", url: `/media/${encodeURIComponent(id)}/packages` });
|
|
566
|
+
return this.client.request({ ...options, method: "GET", url: `/api/v1/media/${encodeURIComponent(id)}/packages` });
|
|
567
567
|
}
|
|
568
568
|
/**
|
|
569
569
|
* Performs the regenerate operation for the router capability.
|
|
570
|
-
* Calls `POST /media/{id}/packages` through the shared IDP-aware Faiber client.
|
|
570
|
+
* Calls `POST /api/v1/media/{id}/packages` through the shared IDP-aware Faiber client.
|
|
571
571
|
* @param id Backend path identifier `id`.
|
|
572
572
|
* @param data Typed JSON request body.
|
|
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:
|
|
575
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: drm:package:write.
|
|
576
576
|
*/
|
|
577
577
|
routerRegeneratePost(id, data, options) {
|
|
578
|
-
return this.client.request({ ...options, method: "POST", url: `/media/${encodeURIComponent(id)}/packages`, data: data });
|
|
578
|
+
return this.client.request({ ...options, method: "POST", url: `/api/v1/media/${encodeURIComponent(id)}/packages`, data: data });
|
|
579
579
|
}
|
|
580
580
|
/**
|
|
581
581
|
* Performs the playback operation for the router capability.
|
|
582
|
-
* Calls `GET /media/{id}/playback` through the shared IDP-aware Faiber client.
|
|
582
|
+
* Calls `GET /api/v1/media/{id}/playback` through the shared IDP-aware Faiber client.
|
|
583
583
|
* @param id Backend path identifier `id`.
|
|
584
584
|
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
585
585
|
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
586
|
-
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission:
|
|
586
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: drm:media:read.
|
|
587
587
|
*/
|
|
588
588
|
routerPlaybackGet(id, options) {
|
|
589
|
-
return this.client.request({ ...options, method: "GET", url: `/media/${encodeURIComponent(id)}/playback` });
|
|
589
|
+
return this.client.request({ ...options, method: "GET", url: `/api/v1/media/${encodeURIComponent(id)}/playback` });
|
|
590
590
|
}
|
|
591
591
|
/**
|
|
592
592
|
* Performs the batch media operation for the router capability.
|
|
593
|
-
* Calls `POST /media/batch` through the shared IDP-aware Faiber client.
|
|
593
|
+
* Calls `POST /api/v1/media/batch` through the shared IDP-aware Faiber client.
|
|
594
594
|
* @param data Typed JSON request body.
|
|
595
595
|
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
596
596
|
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
597
|
-
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission:
|
|
597
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: drm:media:write.
|
|
598
598
|
*/
|
|
599
599
|
routerBatchMediaPost(data, options) {
|
|
600
|
-
return this.client.request({ ...options, method: "POST", url: `/media/batch`, data: data });
|
|
600
|
+
return this.client.request({ ...options, method: "POST", url: `/api/v1/media/batch`, data: data });
|
|
601
601
|
}
|
|
602
602
|
/**
|
|
603
603
|
* Performs the drm statuses operation for the router capability.
|
|
604
|
-
* Calls `GET /media/drm-statuses` through the shared IDP-aware Faiber client.
|
|
604
|
+
* Calls `GET /api/v1/media/drm-statuses` through the shared IDP-aware Faiber client.
|
|
605
605
|
* @param params Typed query parameters; omitted members retain backend defaults.
|
|
606
606
|
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
607
607
|
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
608
|
-
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission:
|
|
608
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: drm:media:read.
|
|
609
609
|
*/
|
|
610
610
|
routerDrmStatusesGet(params, options) {
|
|
611
|
-
return this.client.request({ ...options, method: "GET", url: `/media/drm-statuses`, params });
|
|
611
|
+
return this.client.request({ ...options, method: "GET", url: `/api/v1/media/drm-statuses`, params });
|
|
612
612
|
}
|
|
613
613
|
/**
|
|
614
614
|
* Performs the archive package operation for the router capability.
|
|
615
|
-
* Calls `DELETE /media/packages/{id}` through the shared IDP-aware Faiber client.
|
|
615
|
+
* Calls `DELETE /api/v1/media/packages/{id}` through the shared IDP-aware Faiber client.
|
|
616
616
|
* @param id Backend path identifier `id`.
|
|
617
617
|
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
618
618
|
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
619
|
-
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission:
|
|
619
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: drm:package:write.
|
|
620
620
|
*/
|
|
621
621
|
routerArchivePackageDelete(id, options) {
|
|
622
|
-
return this.client.request({ ...options, method: "DELETE", url: `/media/packages/${encodeURIComponent(id)}` });
|
|
622
|
+
return this.client.request({ ...options, method: "DELETE", url: `/api/v1/media/packages/${encodeURIComponent(id)}` });
|
|
623
623
|
}
|
|
624
624
|
/**
|
|
625
625
|
* Performs the register existing media operation for the router capability.
|
|
626
|
-
* Calls `POST /media/register` through the shared IDP-aware Faiber client.
|
|
626
|
+
* Calls `POST /api/v1/media/register` through the shared IDP-aware Faiber client.
|
|
627
627
|
* @param data Typed JSON request body.
|
|
628
628
|
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
629
629
|
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
630
|
-
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission:
|
|
630
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: drm:media:write.
|
|
631
631
|
*/
|
|
632
632
|
routerRegisterExistingMediaPost(data, options) {
|
|
633
|
-
return this.client.request({ ...options, method: "POST", url: `/media/register`, data: data });
|
|
633
|
+
return this.client.request({ ...options, method: "POST", url: `/api/v1/media/register`, data: data });
|
|
634
634
|
}
|
|
635
635
|
/**
|
|
636
636
|
* Performs the list mixed media operation for the router capability.
|
|
637
|
-
* Calls `GET /mixed-media` through the shared IDP-aware Faiber client.
|
|
637
|
+
* Calls `GET /api/v1/mixed-media` through the shared IDP-aware Faiber client.
|
|
638
638
|
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
639
639
|
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
640
|
-
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission:
|
|
640
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: drm:composition:read.
|
|
641
641
|
*/
|
|
642
642
|
routerListMixedMediaGet(options) {
|
|
643
|
-
return this.client.request({ ...options, method: "GET", url: `/mixed-media` });
|
|
643
|
+
return this.client.request({ ...options, method: "GET", url: `/api/v1/mixed-media` });
|
|
644
644
|
}
|
|
645
645
|
/**
|
|
646
646
|
* Performs the create mixed media operation for the router capability.
|
|
647
|
-
* Calls `POST /mixed-media` through the shared IDP-aware Faiber client.
|
|
647
|
+
* Calls `POST /api/v1/mixed-media` through the shared IDP-aware Faiber client.
|
|
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:
|
|
651
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: drm:composition:write.
|
|
652
652
|
*/
|
|
653
653
|
routerCreateMixedMediaPost(data, options) {
|
|
654
|
-
return this.client.request({ ...options, method: "POST", url: `/mixed-media`, data: data });
|
|
654
|
+
return this.client.request({ ...options, method: "POST", url: `/api/v1/mixed-media`, data: data });
|
|
655
655
|
}
|
|
656
656
|
/**
|
|
657
657
|
* Performs the delete mixed media operation for the router capability.
|
|
658
|
-
* Calls `DELETE /mixed-media/{id}` through the shared IDP-aware Faiber client.
|
|
658
|
+
* Calls `DELETE /api/v1/mixed-media/{id}` through the shared IDP-aware Faiber client.
|
|
659
659
|
* @param id Backend path identifier `id`.
|
|
660
660
|
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
661
661
|
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
662
|
-
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission:
|
|
662
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: drm:composition:write.
|
|
663
663
|
*/
|
|
664
664
|
routerDeleteMixedMediaDelete(id, options) {
|
|
665
|
-
return this.client.request({ ...options, method: "DELETE", url: `/mixed-media/${encodeURIComponent(id)}` });
|
|
665
|
+
return this.client.request({ ...options, method: "DELETE", url: `/api/v1/mixed-media/${encodeURIComponent(id)}` });
|
|
666
666
|
}
|
|
667
667
|
/**
|
|
668
668
|
* Performs the get mixed media operation for the router capability.
|
|
669
|
-
* Calls `GET /mixed-media/{id}` through the shared IDP-aware Faiber client.
|
|
669
|
+
* Calls `GET /api/v1/mixed-media/{id}` through the shared IDP-aware Faiber client.
|
|
670
670
|
* @param id Backend path identifier `id`.
|
|
671
671
|
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
672
672
|
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
673
|
-
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission:
|
|
673
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: drm:composition:read.
|
|
674
674
|
*/
|
|
675
675
|
routerGetMixedMediaGet(id, options) {
|
|
676
|
-
return this.client.request({ ...options, method: "GET", url: `/mixed-media/${encodeURIComponent(id)}` });
|
|
676
|
+
return this.client.request({ ...options, method: "GET", url: `/api/v1/mixed-media/${encodeURIComponent(id)}` });
|
|
677
677
|
}
|
|
678
678
|
/**
|
|
679
679
|
* Performs the update mixed media operation for the router capability.
|
|
680
|
-
* Calls `PATCH /mixed-media/{id}` through the shared IDP-aware Faiber client.
|
|
680
|
+
* Calls `PATCH /api/v1/mixed-media/{id}` through the shared IDP-aware Faiber client.
|
|
681
681
|
* @param id Backend path identifier `id`.
|
|
682
682
|
* @param data Typed JSON request body.
|
|
683
683
|
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
684
684
|
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
685
|
-
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission:
|
|
685
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: drm:composition:write.
|
|
686
686
|
*/
|
|
687
687
|
routerUpdateMixedMediaPatch(id, data, options) {
|
|
688
|
-
return this.client.request({ ...options, method: "PATCH", url: `/mixed-media/${encodeURIComponent(id)}`, data: data });
|
|
688
|
+
return this.client.request({ ...options, method: "PATCH", url: `/api/v1/mixed-media/${encodeURIComponent(id)}`, data: data });
|
|
689
689
|
}
|
|
690
690
|
/**
|
|
691
691
|
* Performs the get analysis operation for the router capability.
|
|
692
|
-
* Calls `GET /mixed-media/{id}/analysis` through the shared IDP-aware Faiber client.
|
|
692
|
+
* Calls `GET /api/v1/mixed-media/{id}/analysis` through the shared IDP-aware Faiber client.
|
|
693
693
|
* @param id Backend path identifier `id`.
|
|
694
694
|
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
695
695
|
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
696
|
-
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission:
|
|
696
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: drm:composition:read.
|
|
697
697
|
*/
|
|
698
698
|
routerGetAnalysisGet(id, options) {
|
|
699
|
-
return this.client.request({ ...options, method: "GET", url: `/mixed-media/${encodeURIComponent(id)}/analysis` });
|
|
699
|
+
return this.client.request({ ...options, method: "GET", url: `/api/v1/mixed-media/${encodeURIComponent(id)}/analysis` });
|
|
700
700
|
}
|
|
701
701
|
/**
|
|
702
702
|
* Performs the start analysis operation for the router capability.
|
|
703
|
-
* Calls `POST /mixed-media/{id}/analysis` through the shared IDP-aware Faiber client.
|
|
703
|
+
* Calls `POST /api/v1/mixed-media/{id}/analysis` through the shared IDP-aware Faiber client.
|
|
704
704
|
* @param id Backend path identifier `id`.
|
|
705
705
|
* @param data Typed JSON request body.
|
|
706
706
|
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
707
707
|
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
708
|
-
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission:
|
|
708
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: drm:composition:write.
|
|
709
709
|
*/
|
|
710
710
|
routerStartAnalysisPost(id, data, options) {
|
|
711
|
-
return this.client.request({ ...options, method: "POST", url: `/mixed-media/${encodeURIComponent(id)}/analysis`, data: data });
|
|
711
|
+
return this.client.request({ ...options, method: "POST", url: `/api/v1/mixed-media/${encodeURIComponent(id)}/analysis`, data: data });
|
|
712
712
|
}
|
|
713
713
|
/**
|
|
714
714
|
* Performs the create category operation for the router capability.
|
|
715
|
-
* Calls `POST /mixed-media/{id}/categories` through the shared IDP-aware Faiber client.
|
|
715
|
+
* Calls `POST /api/v1/mixed-media/{id}/categories` through the shared IDP-aware Faiber client.
|
|
716
716
|
* @param id Backend path identifier `id`.
|
|
717
717
|
* @param data Typed JSON request body.
|
|
718
718
|
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
719
719
|
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
720
|
-
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission:
|
|
720
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: drm:composition:write.
|
|
721
721
|
*/
|
|
722
|
-
|
|
723
|
-
return this.client.request({ ...options, method: "POST", url: `/mixed-media/${encodeURIComponent(id)}/categories`, data: data });
|
|
722
|
+
routerCreateCategoryPostApiV1MixedMediaIdCategories(id, data, options) {
|
|
723
|
+
return this.client.request({ ...options, method: "POST", url: `/api/v1/mixed-media/${encodeURIComponent(id)}/categories`, data: data });
|
|
724
724
|
}
|
|
725
725
|
/**
|
|
726
726
|
* Performs the get settings operation for the router capability.
|
|
727
|
-
* Calls `GET /mixed-media/{id}/knowledge-sync` through the shared IDP-aware Faiber client.
|
|
727
|
+
* Calls `GET /api/v1/mixed-media/{id}/knowledge-sync` through the shared IDP-aware Faiber client.
|
|
728
728
|
* @param id Backend path identifier `id`.
|
|
729
729
|
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
730
730
|
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
731
|
-
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission:
|
|
731
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: drm:composition:read.
|
|
732
732
|
*/
|
|
733
|
-
|
|
734
|
-
return this.client.request({ ...options, method: "GET", url: `/mixed-media/${encodeURIComponent(id)}/knowledge-sync` });
|
|
733
|
+
routerGetSettingsGetApiV1MixedMediaIdKnowledgeSync(id, options) {
|
|
734
|
+
return this.client.request({ ...options, method: "GET", url: `/api/v1/mixed-media/${encodeURIComponent(id)}/knowledge-sync` });
|
|
735
735
|
}
|
|
736
736
|
/**
|
|
737
737
|
* Performs the sync now operation for the router capability.
|
|
738
|
-
* Calls `POST /mixed-media/{id}/knowledge-sync` through the shared IDP-aware Faiber client.
|
|
738
|
+
* Calls `POST /api/v1/mixed-media/{id}/knowledge-sync` through the shared IDP-aware Faiber client.
|
|
739
739
|
* @param id Backend path identifier `id`.
|
|
740
740
|
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
741
741
|
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
742
|
-
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission:
|
|
742
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: drm:composition:write.
|
|
743
743
|
*/
|
|
744
744
|
routerSyncNowPost(id, options) {
|
|
745
|
-
return this.client.request({ ...options, method: "POST", url: `/mixed-media/${encodeURIComponent(id)}/knowledge-sync` });
|
|
745
|
+
return this.client.request({ ...options, method: "POST", url: `/api/v1/mixed-media/${encodeURIComponent(id)}/knowledge-sync` });
|
|
746
746
|
}
|
|
747
747
|
/**
|
|
748
748
|
* Performs the update settings operation for the router capability.
|
|
749
|
-
* Calls `PUT /mixed-media/{id}/knowledge-sync` through the shared IDP-aware Faiber client.
|
|
749
|
+
* Calls `PUT /api/v1/mixed-media/{id}/knowledge-sync` through the shared IDP-aware Faiber client.
|
|
750
750
|
* @param id Backend path identifier `id`.
|
|
751
751
|
* @param data Typed JSON request body.
|
|
752
752
|
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
753
753
|
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
754
|
-
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission:
|
|
754
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: drm:composition:write.
|
|
755
755
|
*/
|
|
756
756
|
routerUpdateSettingsPut(id, data, options) {
|
|
757
|
-
return this.client.request({ ...options, method: "PUT", url: `/mixed-media/${encodeURIComponent(id)}/knowledge-sync`, data: data });
|
|
757
|
+
return this.client.request({ ...options, method: "PUT", url: `/api/v1/mixed-media/${encodeURIComponent(id)}/knowledge-sync`, data: data });
|
|
758
758
|
}
|
|
759
759
|
/**
|
|
760
760
|
* Performs the get manifest operation for the router capability.
|
|
761
|
-
* Calls `GET /mixed-media/{id}/manifest` through the shared IDP-aware Faiber client.
|
|
761
|
+
* Calls `GET /api/v1/mixed-media/{id}/manifest` through the shared IDP-aware Faiber client.
|
|
762
762
|
* @param id Backend path identifier `id`.
|
|
763
763
|
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
764
764
|
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
765
|
-
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission:
|
|
765
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: drm:composition:read.
|
|
766
766
|
*/
|
|
767
767
|
routerGetManifestGet(id, options) {
|
|
768
|
-
return this.client.request({ ...options, method: "GET", url: `/mixed-media/${encodeURIComponent(id)}/manifest` });
|
|
768
|
+
return this.client.request({ ...options, method: "GET", url: `/api/v1/mixed-media/${encodeURIComponent(id)}/manifest` });
|
|
769
769
|
}
|
|
770
770
|
/**
|
|
771
771
|
* Performs the list manifests operation for the router capability.
|
|
772
|
-
* Calls `GET /mixed-media/{id}/manifests` through the shared IDP-aware Faiber client.
|
|
772
|
+
* Calls `GET /api/v1/mixed-media/{id}/manifests` through the shared IDP-aware Faiber client.
|
|
773
773
|
* @param id Backend path identifier `id`.
|
|
774
774
|
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
775
775
|
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
776
|
-
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission:
|
|
776
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: drm:composition:read.
|
|
777
777
|
*/
|
|
778
|
-
|
|
779
|
-
return this.client.request({ ...options, method: "GET", url: `/mixed-media/${encodeURIComponent(id)}/manifests` });
|
|
778
|
+
routerListManifestsGetApiV1MixedMediaIdManifests(id, options) {
|
|
779
|
+
return this.client.request({ ...options, method: "GET", url: `/api/v1/mixed-media/${encodeURIComponent(id)}/manifests` });
|
|
780
780
|
}
|
|
781
781
|
/**
|
|
782
782
|
* Performs the create part operation for the router capability.
|
|
783
|
-
* Calls `POST /mixed-media/{id}/parts` through the shared IDP-aware Faiber client.
|
|
783
|
+
* Calls `POST /api/v1/mixed-media/{id}/parts` through the shared IDP-aware Faiber client.
|
|
784
784
|
* @param id Backend path identifier `id`.
|
|
785
785
|
* @param data Typed JSON request body.
|
|
786
786
|
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
787
787
|
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
788
|
-
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission:
|
|
788
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: drm:composition:write.
|
|
789
789
|
*/
|
|
790
790
|
routerCreatePartPost(id, data, options) {
|
|
791
|
-
return this.client.request({ ...options, method: "POST", url: `/mixed-media/${encodeURIComponent(id)}/parts`, data: data });
|
|
791
|
+
return this.client.request({ ...options, method: "POST", url: `/api/v1/mixed-media/${encodeURIComponent(id)}/parts`, data: data });
|
|
792
792
|
}
|
|
793
793
|
/**
|
|
794
794
|
* Performs the publish operation for the router capability.
|
|
795
|
-
* Calls `POST /mixed-media/{id}/publish` through the shared IDP-aware Faiber client.
|
|
795
|
+
* Calls `POST /api/v1/mixed-media/{id}/publish` through the shared IDP-aware Faiber client.
|
|
796
796
|
* @param id Backend path identifier `id`.
|
|
797
797
|
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
798
798
|
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
799
|
-
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission:
|
|
799
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: drm:composition:write.
|
|
800
800
|
*/
|
|
801
|
-
|
|
802
|
-
return this.client.request({ ...options, method: "POST", url: `/mixed-media/${encodeURIComponent(id)}/publish` });
|
|
801
|
+
routerPublishPostApiV1MixedMediaIdPublish(id, options) {
|
|
802
|
+
return this.client.request({ ...options, method: "POST", url: `/api/v1/mixed-media/${encodeURIComponent(id)}/publish` });
|
|
803
803
|
}
|
|
804
804
|
/**
|
|
805
805
|
* Performs the resources operation for the router capability.
|
|
806
|
-
* Calls `GET /mixed-media/{id}/resources` through the shared IDP-aware Faiber client.
|
|
806
|
+
* Calls `GET /api/v1/mixed-media/{id}/resources` through the shared IDP-aware Faiber client.
|
|
807
807
|
* @param id Backend path identifier `id`.
|
|
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:
|
|
810
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: drm:composition:read.
|
|
811
811
|
*/
|
|
812
812
|
routerResourcesGet(id, options) {
|
|
813
|
-
return this.client.request({ ...options, method: "GET", url: `/mixed-media/${encodeURIComponent(id)}/resources` });
|
|
813
|
+
return this.client.request({ ...options, method: "GET", url: `/api/v1/mixed-media/${encodeURIComponent(id)}/resources` });
|
|
814
814
|
}
|
|
815
815
|
/**
|
|
816
816
|
* Performs the get workflow operation for the router capability.
|
|
817
|
-
* Calls `GET /mixed-media/{id}/workflow` through the shared IDP-aware Faiber client.
|
|
817
|
+
* Calls `GET /api/v1/mixed-media/{id}/workflow` through the shared IDP-aware Faiber client.
|
|
818
818
|
* @param id Backend path identifier `id`.
|
|
819
819
|
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
820
820
|
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
821
|
-
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission:
|
|
821
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: drm:composition:read.
|
|
822
822
|
*/
|
|
823
|
-
|
|
824
|
-
return this.client.request({ ...options, method: "GET", url: `/mixed-media/${encodeURIComponent(id)}/workflow` });
|
|
823
|
+
routerGetWorkflowGetApiV1MixedMediaIdWorkflow(id, options) {
|
|
824
|
+
return this.client.request({ ...options, method: "GET", url: `/api/v1/mixed-media/${encodeURIComponent(id)}/workflow` });
|
|
825
825
|
}
|
|
826
826
|
/**
|
|
827
827
|
* Performs the save workflow operation for the router capability.
|
|
828
|
-
* Calls `PUT /mixed-media/{id}/workflow` through the shared IDP-aware Faiber client.
|
|
828
|
+
* Calls `PUT /api/v1/mixed-media/{id}/workflow` through the shared IDP-aware Faiber client.
|
|
829
829
|
* @param id Backend path identifier `id`.
|
|
830
830
|
* @param data Typed JSON request body.
|
|
831
831
|
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
832
832
|
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
833
|
-
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission:
|
|
833
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: drm:composition:write.
|
|
834
834
|
*/
|
|
835
|
-
|
|
836
|
-
return this.client.request({ ...options, method: "PUT", url: `/mixed-media/${encodeURIComponent(id)}/workflow`, data: data });
|
|
835
|
+
routerSaveWorkflowPutApiV1MixedMediaIdWorkflow(id, data, options) {
|
|
836
|
+
return this.client.request({ ...options, method: "PUT", url: `/api/v1/mixed-media/${encodeURIComponent(id)}/workflow`, data: data });
|
|
837
837
|
}
|
|
838
838
|
/**
|
|
839
839
|
* Performs the delete category operation for the router capability.
|
|
840
|
-
* Calls `DELETE /mixed-media/{mixed_id}/categories/{id}` through the shared IDP-aware Faiber client.
|
|
840
|
+
* Calls `DELETE /api/v1/mixed-media/{mixed_id}/categories/{id}` through the shared IDP-aware Faiber client.
|
|
841
841
|
* @param mixedId Backend path identifier `mixed_id`.
|
|
842
842
|
* @param id Backend path identifier `id`.
|
|
843
843
|
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
844
844
|
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
845
|
-
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission:
|
|
845
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: drm:composition:write.
|
|
846
846
|
*/
|
|
847
847
|
routerDeleteCategoryDelete(mixedId, id, options) {
|
|
848
|
-
return this.client.request({ ...options, method: "DELETE", url: `/mixed-media/${encodeURIComponent(mixedId)}/categories/${encodeURIComponent(id)}` });
|
|
848
|
+
return this.client.request({ ...options, method: "DELETE", url: `/api/v1/mixed-media/${encodeURIComponent(mixedId)}/categories/${encodeURIComponent(id)}` });
|
|
849
849
|
}
|
|
850
850
|
/**
|
|
851
851
|
* Performs the update category operation for the router capability.
|
|
852
|
-
* Calls `PATCH /mixed-media/{mixed_id}/categories/{id}` through the shared IDP-aware Faiber client.
|
|
852
|
+
* Calls `PATCH /api/v1/mixed-media/{mixed_id}/categories/{id}` through the shared IDP-aware Faiber client.
|
|
853
853
|
* @param mixedId Backend path identifier `mixed_id`.
|
|
854
854
|
* @param id Backend path identifier `id`.
|
|
855
855
|
* @param data Typed JSON request body.
|
|
856
856
|
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
857
857
|
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
858
|
-
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission:
|
|
858
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: drm:composition:write.
|
|
859
859
|
*/
|
|
860
|
-
|
|
861
|
-
return this.client.request({ ...options, method: "PATCH", url: `/mixed-media/${encodeURIComponent(mixedId)}/categories/${encodeURIComponent(id)}`, data: data });
|
|
860
|
+
routerUpdateCategoryPatchApiV1MixedMediaMixedIdCategoriesId(mixedId, id, data, options) {
|
|
861
|
+
return this.client.request({ ...options, method: "PATCH", url: `/api/v1/mixed-media/${encodeURIComponent(mixedId)}/categories/${encodeURIComponent(id)}`, data: data });
|
|
862
862
|
}
|
|
863
863
|
/**
|
|
864
864
|
* Performs the delete part operation for the router capability.
|
|
865
|
-
* Calls `DELETE /mixed-media/{mixed_id}/parts/{id}` through the shared IDP-aware Faiber client.
|
|
865
|
+
* Calls `DELETE /api/v1/mixed-media/{mixed_id}/parts/{id}` through the shared IDP-aware Faiber client.
|
|
866
866
|
* @param mixedId Backend path identifier `mixed_id`.
|
|
867
867
|
* @param id Backend path identifier `id`.
|
|
868
868
|
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
869
869
|
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
870
|
-
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission:
|
|
870
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: drm:composition:write.
|
|
871
871
|
*/
|
|
872
872
|
routerDeletePartDelete(mixedId, id, options) {
|
|
873
|
-
return this.client.request({ ...options, method: "DELETE", url: `/mixed-media/${encodeURIComponent(mixedId)}/parts/${encodeURIComponent(id)}` });
|
|
873
|
+
return this.client.request({ ...options, method: "DELETE", url: `/api/v1/mixed-media/${encodeURIComponent(mixedId)}/parts/${encodeURIComponent(id)}` });
|
|
874
874
|
}
|
|
875
875
|
/**
|
|
876
876
|
* Performs the get part operation for the router capability.
|
|
877
|
-
* Calls `GET /mixed-media/{mixed_id}/parts/{id}` through the shared IDP-aware Faiber client.
|
|
877
|
+
* Calls `GET /api/v1/mixed-media/{mixed_id}/parts/{id}` through the shared IDP-aware Faiber client.
|
|
878
878
|
* @param mixedId Backend path identifier `mixed_id`.
|
|
879
879
|
* @param id Backend path identifier `id`.
|
|
880
880
|
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
881
881
|
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
882
|
-
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission:
|
|
882
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: drm:composition:read.
|
|
883
883
|
*/
|
|
884
884
|
routerGetPartGet(mixedId, id, options) {
|
|
885
|
-
return this.client.request({ ...options, method: "GET", url: `/mixed-media/${encodeURIComponent(mixedId)}/parts/${encodeURIComponent(id)}` });
|
|
885
|
+
return this.client.request({ ...options, method: "GET", url: `/api/v1/mixed-media/${encodeURIComponent(mixedId)}/parts/${encodeURIComponent(id)}` });
|
|
886
886
|
}
|
|
887
887
|
/**
|
|
888
888
|
* Performs the update part operation for the router capability.
|
|
889
|
-
* Calls `PUT /mixed-media/{mixed_id}/parts/{id}` through the shared IDP-aware Faiber client.
|
|
889
|
+
* Calls `PUT /api/v1/mixed-media/{mixed_id}/parts/{id}` through the shared IDP-aware Faiber client.
|
|
890
890
|
* @param mixedId Backend path identifier `mixed_id`.
|
|
891
891
|
* @param id Backend path identifier `id`.
|
|
892
892
|
* @param data Typed JSON request body.
|
|
893
893
|
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
894
894
|
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
895
|
-
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission:
|
|
895
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: drm:composition:write.
|
|
896
896
|
*/
|
|
897
897
|
routerUpdatePartPut(mixedId, id, data, options) {
|
|
898
|
-
return this.client.request({ ...options, method: "PUT", url: `/mixed-media/${encodeURIComponent(mixedId)}/parts/${encodeURIComponent(id)}`, data: data });
|
|
898
|
+
return this.client.request({ ...options, method: "PUT", url: `/api/v1/mixed-media/${encodeURIComponent(mixedId)}/parts/${encodeURIComponent(id)}`, data: data });
|
|
899
899
|
}
|
|
900
900
|
/**
|
|
901
901
|
* Performs the health operation for the router capability.
|
|
902
|
-
* Calls `GET /operations/health` through the shared IDP-aware Faiber client.
|
|
902
|
+
* Calls `GET /api/v1/operations/health` through the shared IDP-aware Faiber client.
|
|
903
903
|
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
904
904
|
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
905
|
-
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission:
|
|
905
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: drm:read.
|
|
906
906
|
*/
|
|
907
907
|
routerHealthGet(options) {
|
|
908
|
-
return this.client.request({ ...options, method: "GET", url: `/operations/health` });
|
|
908
|
+
return this.client.request({ ...options, method: "GET", url: `/api/v1/operations/health` });
|
|
909
909
|
}
|
|
910
910
|
/**
|
|
911
911
|
* Performs the knowledge catalog operation for the router capability.
|
|
912
|
-
* Calls `GET /operations/knowledge-catalog` through the shared IDP-aware Faiber client.
|
|
912
|
+
* Calls `GET /api/v1/operations/knowledge-catalog` through the shared IDP-aware Faiber client.
|
|
913
913
|
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
914
914
|
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
915
|
-
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission:
|
|
915
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: drm:read.
|
|
916
916
|
*/
|
|
917
917
|
routerKnowledgeCatalogGet(options) {
|
|
918
|
-
return this.client.request({ ...options, method: "GET", url: `/operations/knowledge-catalog` });
|
|
918
|
+
return this.client.request({ ...options, method: "GET", url: `/api/v1/operations/knowledge-catalog` });
|
|
919
919
|
}
|
|
920
920
|
/**
|
|
921
921
|
* Performs the get settings operation for the router capability.
|
|
922
|
-
* Calls `GET /operations/settings` through the shared IDP-aware Faiber client.
|
|
922
|
+
* Calls `GET /api/v1/operations/settings` through the shared IDP-aware Faiber client.
|
|
923
923
|
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
924
924
|
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
925
|
-
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission:
|
|
925
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: drm:manage.
|
|
926
926
|
*/
|
|
927
|
-
|
|
928
|
-
return this.client.request({ ...options, method: "GET", url: `/operations/settings` });
|
|
927
|
+
routerGetSettingsGetApiV1OperationsSettings(options) {
|
|
928
|
+
return this.client.request({ ...options, method: "GET", url: `/api/v1/operations/settings` });
|
|
929
929
|
}
|
|
930
930
|
/**
|
|
931
931
|
* Performs the update settings operation for the router capability.
|
|
932
|
-
* Calls `PATCH /operations/settings` through the shared IDP-aware Faiber client.
|
|
932
|
+
* Calls `PATCH /api/v1/operations/settings` through the shared IDP-aware Faiber client.
|
|
933
933
|
* @param data Typed JSON request body.
|
|
934
934
|
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
935
935
|
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
936
|
-
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission:
|
|
936
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: drm:manage.
|
|
937
937
|
*/
|
|
938
938
|
routerUpdateSettingsPatch(data, options) {
|
|
939
|
-
return this.client.request({ ...options, method: "PATCH", url: `/operations/settings`, data: data });
|
|
939
|
+
return this.client.request({ ...options, method: "PATCH", url: `/api/v1/operations/settings`, data: data });
|
|
940
940
|
}
|
|
941
941
|
/**
|
|
942
942
|
* Performs the transcription models operation for the router capability.
|
|
943
|
-
* Calls `GET /operations/transcription-models` through the shared IDP-aware Faiber client.
|
|
943
|
+
* Calls `GET /api/v1/operations/transcription-models` through the shared IDP-aware Faiber client.
|
|
944
944
|
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
945
945
|
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
946
|
-
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission:
|
|
946
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: drm:manage.
|
|
947
947
|
*/
|
|
948
948
|
routerTranscriptionModelsGet(options) {
|
|
949
|
-
return this.client.request({ ...options, method: "GET", url: `/operations/transcription-models` });
|
|
949
|
+
return this.client.request({ ...options, method: "GET", url: `/api/v1/operations/transcription-models` });
|
|
950
950
|
}
|
|
951
951
|
/**
|
|
952
952
|
* Performs the legacy enqueue operation for the router capability.
|
|
953
|
-
* Calls `POST /packages` through the shared IDP-aware Faiber client.
|
|
953
|
+
* Calls `POST /api/v1/packages` through the shared IDP-aware Faiber client.
|
|
954
954
|
* @param data Typed JSON request body.
|
|
955
955
|
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
956
956
|
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
957
|
-
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission:
|
|
957
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: drm:package:write.
|
|
958
958
|
*/
|
|
959
959
|
routerLegacyEnqueuePost(data, options) {
|
|
960
|
-
return this.client.request({ ...options, method: "POST", url: `/packages`, data: data });
|
|
960
|
+
return this.client.request({ ...options, method: "POST", url: `/api/v1/packages`, data: data });
|
|
961
961
|
}
|
|
962
962
|
/**
|
|
963
963
|
* Performs the legacy status operation for the router capability.
|
|
964
|
-
* Calls `GET /packages/{kind}/{media_id}` through the shared IDP-aware Faiber client.
|
|
964
|
+
* Calls `GET /api/v1/packages/{kind}/{media_id}` through the shared IDP-aware Faiber client.
|
|
965
965
|
* @param kind Backend path identifier `kind`.
|
|
966
966
|
* @param mediaId Backend path identifier `media_id`.
|
|
967
967
|
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
968
968
|
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
969
|
-
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission:
|
|
969
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: drm:package:read.
|
|
970
970
|
*/
|
|
971
971
|
routerLegacyStatusGet(kind, mediaId, options) {
|
|
972
|
-
return this.client.request({ ...options, method: "GET", url: `/packages/${encodeURIComponent(kind)}/${encodeURIComponent(mediaId)}` });
|
|
972
|
+
return this.client.request({ ...options, method: "GET", url: `/api/v1/packages/${encodeURIComponent(kind)}/${encodeURIComponent(mediaId)}` });
|
|
973
973
|
}
|
|
974
974
|
/**
|
|
975
975
|
* Performs the package file operation for the router capability.
|
|
976
|
-
* Calls `GET /packages/{package_id}/files/{*path}` through the shared IDP-aware Faiber client.
|
|
976
|
+
* Calls `GET /api/v1/packages/{package_id}/files/{*path}` through the shared IDP-aware Faiber client.
|
|
977
977
|
* @param packageId Backend path identifier `package_id`.
|
|
978
978
|
* @param path Backend path identifier `*path`.
|
|
979
979
|
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
980
980
|
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
981
|
-
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission:
|
|
981
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: drm:package:read.
|
|
982
982
|
*/
|
|
983
983
|
routerPackageFileGet(packageId, path, options) {
|
|
984
|
-
return this.client.request({ ...options, method: "GET", url: `/packages/${encodeURIComponent(packageId)}/files/${encodeURIComponent(path)}` });
|
|
984
|
+
return this.client.request({ ...options, method: "GET", url: `/api/v1/packages/${encodeURIComponent(packageId)}/files/${encodeURIComponent(path)}` });
|
|
985
985
|
}
|
|
986
986
|
/**
|
|
987
987
|
* Performs the status operation for the router capability.
|
|
988
|
-
* Calls `GET /status` through the shared IDP-aware Faiber client.
|
|
988
|
+
* Calls `GET /api/v1/status` through the shared IDP-aware Faiber client.
|
|
989
989
|
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
990
990
|
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
991
|
-
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission:
|
|
991
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: drm:read.
|
|
992
992
|
*/
|
|
993
993
|
routerStatusGet(options) {
|
|
994
|
-
return this.client.request({ ...options, method: "GET", url: `/status` });
|
|
994
|
+
return this.client.request({ ...options, method: "GET", url: `/api/v1/status` });
|
|
995
995
|
}
|
|
996
996
|
/**
|
|
997
997
|
* Performs the list tags operation for the router capability.
|
|
998
|
-
* Calls `GET /tags` through the shared IDP-aware Faiber client.
|
|
998
|
+
* Calls `GET /api/v1/tags` through the shared IDP-aware Faiber client.
|
|
999
999
|
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
1000
1000
|
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
1001
|
-
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission:
|
|
1001
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: drm:media:read.
|
|
1002
1002
|
*/
|
|
1003
1003
|
routerListTagsGet(options) {
|
|
1004
|
-
return this.client.request({ ...options, method: "GET", url: `/tags` });
|
|
1004
|
+
return this.client.request({ ...options, method: "GET", url: `/api/v1/tags` });
|
|
1005
1005
|
}
|
|
1006
1006
|
/**
|
|
1007
1007
|
* Performs the create tag operation for the router capability.
|
|
1008
|
-
* Calls `POST /tags` through the shared IDP-aware Faiber client.
|
|
1008
|
+
* Calls `POST /api/v1/tags` through the shared IDP-aware Faiber client.
|
|
1009
1009
|
* @param data Typed JSON request body.
|
|
1010
1010
|
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
1011
1011
|
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
1012
|
-
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission:
|
|
1012
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: drm:media:write.
|
|
1013
1013
|
*/
|
|
1014
1014
|
routerCreateTagPost(data, options) {
|
|
1015
|
-
return this.client.request({ ...options, method: "POST", url: `/tags`, data: data });
|
|
1015
|
+
return this.client.request({ ...options, method: "POST", url: `/api/v1/tags`, data: data });
|
|
1016
1016
|
}
|
|
1017
1017
|
/**
|
|
1018
1018
|
* Performs the delete tag operation for the router capability.
|
|
1019
|
-
* Calls `DELETE /tags/{id}` through the shared IDP-aware Faiber client.
|
|
1019
|
+
* Calls `DELETE /api/v1/tags/{id}` through the shared IDP-aware Faiber client.
|
|
1020
1020
|
* @param id Backend path identifier `id`.
|
|
1021
1021
|
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
1022
1022
|
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
1023
|
-
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission:
|
|
1023
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: drm:media:write.
|
|
1024
1024
|
*/
|
|
1025
1025
|
routerDeleteTagDelete(id, options) {
|
|
1026
|
-
return this.client.request({ ...options, method: "DELETE", url: `/tags/${encodeURIComponent(id)}` });
|
|
1026
|
+
return this.client.request({ ...options, method: "DELETE", url: `/api/v1/tags/${encodeURIComponent(id)}` });
|
|
1027
1027
|
}
|
|
1028
1028
|
/**
|
|
1029
1029
|
* Performs the create upload session operation for the router capability.
|
|
1030
|
-
* Calls `POST /upload-sessions` through the shared IDP-aware Faiber client.
|
|
1030
|
+
* Calls `POST /api/v1/upload-sessions` through the shared IDP-aware Faiber client.
|
|
1031
1031
|
* @param data Typed JSON request body.
|
|
1032
1032
|
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
1033
1033
|
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
1034
|
-
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission:
|
|
1034
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: drm:media:write.
|
|
1035
1035
|
*/
|
|
1036
1036
|
routerCreateUploadSessionPost(data, options) {
|
|
1037
|
-
return this.client.request({ ...options, method: "POST", url: `/upload-sessions`, data: data });
|
|
1037
|
+
return this.client.request({ ...options, method: "POST", url: `/api/v1/upload-sessions`, data: data });
|
|
1038
1038
|
}
|
|
1039
1039
|
/**
|
|
1040
1040
|
* Performs the cancel upload operation for the router capability.
|
|
1041
|
-
* Calls `DELETE /upload-sessions/{id}` through the shared IDP-aware Faiber client.
|
|
1041
|
+
* Calls `DELETE /api/v1/upload-sessions/{id}` through the shared IDP-aware Faiber client.
|
|
1042
1042
|
* @param id Backend path identifier `id`.
|
|
1043
1043
|
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
1044
1044
|
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
1045
|
-
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission:
|
|
1045
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: drm:media:write.
|
|
1046
1046
|
*/
|
|
1047
1047
|
routerCancelUploadDelete(id, options) {
|
|
1048
|
-
return this.client.request({ ...options, method: "DELETE", url: `/upload-sessions/${encodeURIComponent(id)}` });
|
|
1048
|
+
return this.client.request({ ...options, method: "DELETE", url: `/api/v1/upload-sessions/${encodeURIComponent(id)}` });
|
|
1049
1049
|
}
|
|
1050
1050
|
/**
|
|
1051
1051
|
* Performs the get upload session operation for the router capability.
|
|
1052
|
-
* Calls `GET /upload-sessions/{id}` through the shared IDP-aware Faiber client.
|
|
1052
|
+
* Calls `GET /api/v1/upload-sessions/{id}` through the shared IDP-aware Faiber client.
|
|
1053
1053
|
* @param id Backend path identifier `id`.
|
|
1054
1054
|
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
1055
1055
|
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
1056
|
-
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission:
|
|
1056
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: drm:media:read.
|
|
1057
1057
|
*/
|
|
1058
1058
|
routerGetUploadSessionGet(id, options) {
|
|
1059
|
-
return this.client.request({ ...options, method: "GET", url: `/upload-sessions/${encodeURIComponent(id)}` });
|
|
1059
|
+
return this.client.request({ ...options, method: "GET", url: `/api/v1/upload-sessions/${encodeURIComponent(id)}` });
|
|
1060
1060
|
}
|
|
1061
1061
|
/**
|
|
1062
1062
|
* Performs the complete upload operation for the router capability.
|
|
1063
|
-
* Calls `POST /upload-sessions/{id}/complete` through the shared IDP-aware Faiber client.
|
|
1063
|
+
* Calls `POST /api/v1/upload-sessions/{id}/complete` through the shared IDP-aware Faiber client.
|
|
1064
1064
|
* @param id Backend path identifier `id`.
|
|
1065
1065
|
* @param data Typed JSON request body.
|
|
1066
1066
|
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
1067
1067
|
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
1068
|
-
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission:
|
|
1068
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: drm:media:write.
|
|
1069
1069
|
*/
|
|
1070
1070
|
routerCompleteUploadPost(id, data, options) {
|
|
1071
|
-
return this.client.request({ ...options, method: "POST", url: `/upload-sessions/${encodeURIComponent(id)}/complete`, data: data });
|
|
1071
|
+
return this.client.request({ ...options, method: "POST", url: `/api/v1/upload-sessions/${encodeURIComponent(id)}/complete`, data: data });
|
|
1072
1072
|
}
|
|
1073
1073
|
/**
|
|
1074
1074
|
* Performs the put upload part operation for the router capability.
|
|
1075
|
-
* Calls `PUT /upload-sessions/{id}/parts/{part_number}` through the shared IDP-aware Faiber client.
|
|
1075
|
+
* Calls `PUT /api/v1/upload-sessions/{id}/parts/{part_number}` through the shared IDP-aware Faiber client.
|
|
1076
1076
|
* @param id Backend path identifier `id`.
|
|
1077
1077
|
* @param partNumber Backend path identifier `part_number`.
|
|
1078
|
+
* @param data Typed binary byte stream.
|
|
1078
1079
|
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
1079
1080
|
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
1080
|
-
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission:
|
|
1081
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: drm:media:write.
|
|
1081
1082
|
*/
|
|
1082
|
-
routerPutUploadPartPut(id, partNumber, options) {
|
|
1083
|
-
return this.client.request({ ...options, method: "PUT", url: `/upload-sessions/${encodeURIComponent(id)}/parts/${encodeURIComponent(partNumber)}
|
|
1083
|
+
routerPutUploadPartPut(id, partNumber, data, options) {
|
|
1084
|
+
return this.client.request({ ...options, method: "PUT", url: `/api/v1/upload-sessions/${encodeURIComponent(id)}/parts/${encodeURIComponent(partNumber)}`, data: data, headers: { "Content-Type": "application/octet-stream", ...options?.headers } });
|
|
1084
1085
|
}
|
|
1085
1086
|
}
|
|
1086
1087
|
//# sourceMappingURL=operations.js.map
|