@faiber/faiber-modules 0.2.2 → 0.5.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.
@@ -1,586 +1,1597 @@
1
1
  import { ServiceApi, urlEncoded } from "@faiber/sdk-core";
2
2
  export class ModulesOperations extends ServiceApi {
3
- /** GET /; permission: public/session-derived. */
3
+ /**
4
+ * Performs the status route operation for the router capability.
5
+ * Calls `GET /` through the shared IDP-aware Faiber client.
6
+ * @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
7
+ * @returns The complete Axios response, including the typed service envelope, status, and headers.
8
+ * @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
9
+ */
4
10
  routerStatusRouteGet(options) {
5
11
  return this.client.request({ ...options, method: "GET", url: `/` });
6
12
  }
7
- /** GET /api-doc/openapi.json; permission: public/session-derived. */
13
+ /**
14
+ * Performs the beautified openapi operation for the router capability.
15
+ * Calls `GET /api-doc/openapi.json` through the shared IDP-aware Faiber client.
16
+ * @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
17
+ * @returns The complete Axios response, including the typed service envelope, status, and headers.
18
+ * @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
19
+ */
8
20
  routerBeautifiedOpenapiGet(options) {
9
21
  return this.client.request({ ...options, method: "GET", url: `/api-doc/openapi.json` });
10
22
  }
11
- /** GET /api/openapi.json; permission: public/session-derived. */
23
+ /**
24
+ * Performs the openapi json operation for the router capability.
25
+ * Calls `GET /api/openapi.json` through the shared IDP-aware Faiber client.
26
+ * @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
27
+ * @returns The complete Axios response, including the typed service envelope, status, and headers.
28
+ * @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
29
+ */
12
30
  routerOpenapiJsonGet(options) {
13
31
  return this.client.request({ ...options, method: "GET", url: `/api/openapi.json` });
14
32
  }
15
- /** GET /api/v1/access/{host}/{target_id}; permission: public/session-derived. */
33
+ /**
34
+ * Performs the list on target operation for the access capability.
35
+ * Calls `GET /api/v1/access/{host}/{target_id}` through the shared IDP-aware Faiber client.
36
+ * @param host Backend path identifier `host`.
37
+ * @param targetId Backend path identifier `target_id`.
38
+ * @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
39
+ * @returns The complete Axios response, including the typed service envelope, status, and headers.
40
+ * @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
41
+ */
16
42
  accessListOnTargetGet(host, targetId, options) {
17
43
  return this.client.request({ ...options, method: "GET", url: `/api/v1/access/${encodeURIComponent(host)}/${encodeURIComponent(targetId)}` });
18
44
  }
19
- /** POST /api/v1/access/{host}/{target_id}; permission: public/session-derived. */
45
+ /**
46
+ * Performs the grant on target operation for the access capability.
47
+ * Calls `POST /api/v1/access/{host}/{target_id}` through the shared IDP-aware Faiber client.
48
+ * @param host Backend path identifier `host`.
49
+ * @param targetId Backend path identifier `target_id`.
50
+ * @param data Typed JSON request body.
51
+ * @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
52
+ * @returns The complete Axios response, including the typed service envelope, status, and headers.
53
+ * @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
54
+ */
20
55
  accessGrantOnTargetPost(host, targetId, data, options) {
21
56
  return this.client.request({ ...options, method: "POST", url: `/api/v1/access/${encodeURIComponent(host)}/${encodeURIComponent(targetId)}`, data: data });
22
57
  }
23
- /** DELETE /api/v1/access/{host}/{target_id}/{access_id}; permission: public/session-derived. */
58
+ /**
59
+ * Performs the revoke on target operation for the access capability.
60
+ * Calls `DELETE /api/v1/access/{host}/{target_id}/{access_id}` through the shared IDP-aware Faiber client.
61
+ * @param host Backend path identifier `host`.
62
+ * @param targetId Backend path identifier `target_id`.
63
+ * @param accessId Backend path identifier `access_id`.
64
+ * @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
65
+ * @returns The complete Axios response, including the typed service envelope, status, and headers.
66
+ * @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
67
+ */
24
68
  accessRevokeOnTargetDelete(host, targetId, accessId, options) {
25
69
  return this.client.request({ ...options, method: "DELETE", url: `/api/v1/access/${encodeURIComponent(host)}/${encodeURIComponent(targetId)}/${encodeURIComponent(accessId)}` });
26
70
  }
27
- /** PUT /api/v1/access/{host}/{target_id}/{access_id}; permission: public/session-derived. */
71
+ /**
72
+ * Performs the update on target operation for the access capability.
73
+ * Calls `PUT /api/v1/access/{host}/{target_id}/{access_id}` through the shared IDP-aware Faiber client.
74
+ * @param host Backend path identifier `host`.
75
+ * @param targetId Backend path identifier `target_id`.
76
+ * @param accessId Backend path identifier `access_id`.
77
+ * @param data Typed JSON request body.
78
+ * @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
79
+ * @returns The complete Axios response, including the typed service envelope, status, and headers.
80
+ * @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
81
+ */
28
82
  accessUpdateOnTargetPut(host, targetId, accessId, data, options) {
29
83
  return this.client.request({ ...options, method: "PUT", url: `/api/v1/access/${encodeURIComponent(host)}/${encodeURIComponent(targetId)}/${encodeURIComponent(accessId)}`, data: data });
30
84
  }
31
- /** GET /api/v1/audit-logs/{host}/{target_id}; permission: public/session-derived. */
85
+ /**
86
+ * Performs the list on target operation for the audit log capability.
87
+ * Calls `GET /api/v1/audit-logs/{host}/{target_id}` through the shared IDP-aware Faiber client.
88
+ * @param host Backend path identifier `host`.
89
+ * @param targetId Backend path identifier `target_id`.
90
+ * @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
91
+ * @returns The complete Axios response, including the typed service envelope, status, and headers.
92
+ * @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
93
+ */
32
94
  auditLogListOnTargetGet(host, targetId, options) {
33
95
  return this.client.request({ ...options, method: "GET", url: `/api/v1/audit-logs/${encodeURIComponent(host)}/${encodeURIComponent(targetId)}` });
34
96
  }
35
- /** GET /api/v1/auth/self; permission: public/session-derived. */
97
+ /**
98
+ * Performs the get self operation for the session capability.
99
+ * Calls `GET /api/v1/auth/self` through the shared IDP-aware Faiber client.
100
+ * @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
101
+ * @returns The complete Axios response, including the typed service envelope, status, and headers.
102
+ * @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
103
+ */
36
104
  sessionGetSelfGet(options) {
37
105
  return this.client.request({ ...options, method: "GET", url: `/api/v1/auth/self` });
38
106
  }
39
- /** GET /api/v1/authors; permission: public/session-derived. */
107
+ /**
108
+ * Performs the list authors operation for the author capability.
109
+ * Calls `GET /api/v1/authors` through the shared IDP-aware Faiber client.
110
+ * @param params Typed query parameters; omitted members retain backend defaults.
111
+ * @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
112
+ * @returns The complete Axios response, including the typed service envelope, status, and headers.
113
+ * @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
114
+ */
40
115
  authorListAuthorsGet(params, options) {
41
116
  return this.client.request({ ...options, method: "GET", url: `/api/v1/authors`, params });
42
117
  }
43
- /** POST /api/v1/authors; permission: public/session-derived. */
118
+ /**
119
+ * Performs the create author operation for the author capability.
120
+ * Calls `POST /api/v1/authors` through the shared IDP-aware Faiber client.
121
+ * @param data Typed JSON request body.
122
+ * @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
123
+ * @returns The complete Axios response, including the typed service envelope, status, and headers.
124
+ * @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
125
+ */
44
126
  authorCreateAuthorPost(data, options) {
45
127
  return this.client.request({ ...options, method: "POST", url: `/api/v1/authors`, data: data });
46
128
  }
47
- /** DELETE /api/v1/authors/{id}; permission: public/session-derived. */
129
+ /**
130
+ * Performs the delete author operation for the author capability.
131
+ * Calls `DELETE /api/v1/authors/{id}` through the shared IDP-aware Faiber client.
132
+ * @param id Backend path identifier `id`.
133
+ * @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
134
+ * @returns The complete Axios response, including the typed service envelope, status, and headers.
135
+ * @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
136
+ */
48
137
  authorDeleteAuthorDelete(id, options) {
49
138
  return this.client.request({ ...options, method: "DELETE", url: `/api/v1/authors/${encodeURIComponent(id)}` });
50
139
  }
51
- /** GET /api/v1/authors/{id}; permission: public/session-derived. */
140
+ /**
141
+ * Performs the show author operation for the author capability.
142
+ * Calls `GET /api/v1/authors/{id}` through the shared IDP-aware Faiber client.
143
+ * @param id Backend path identifier `id`.
144
+ * @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
145
+ * @returns The complete Axios response, including the typed service envelope, status, and headers.
146
+ * @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
147
+ */
52
148
  authorShowAuthorGet(id, options) {
53
149
  return this.client.request({ ...options, method: "GET", url: `/api/v1/authors/${encodeURIComponent(id)}` });
54
150
  }
55
- /** PATCH /api/v1/authors/{id}; permission: public/session-derived. */
151
+ /**
152
+ * Performs the update author operation for the author capability.
153
+ * Calls `PATCH /api/v1/authors/{id}` through the shared IDP-aware Faiber client.
154
+ * @param id Backend path identifier `id`.
155
+ * @param data Typed JSON request body.
156
+ * @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
157
+ * @returns The complete Axios response, including the typed service envelope, status, and headers.
158
+ * @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
159
+ */
56
160
  authorUpdateAuthorPatch(id, data, options) {
57
161
  return this.client.request({ ...options, method: "PATCH", url: `/api/v1/authors/${encodeURIComponent(id)}`, data: data });
58
162
  }
59
- /** PUT /api/v1/authors/{id}; permission: public/session-derived. */
163
+ /**
164
+ * Performs the update author operation for the author capability.
165
+ * Calls `PUT /api/v1/authors/{id}` through the shared IDP-aware Faiber client.
166
+ * @param id Backend path identifier `id`.
167
+ * @param data Typed JSON request body.
168
+ * @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
169
+ * @returns The complete Axios response, including the typed service envelope, status, and headers.
170
+ * @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
171
+ */
60
172
  authorUpdateAuthorPut(id, data, options) {
61
173
  return this.client.request({ ...options, method: "PUT", url: `/api/v1/authors/${encodeURIComponent(id)}`, data: data });
62
174
  }
63
- /** GET /api/v1/blog/posts; permission: public/session-derived. */
175
+ /**
176
+ * Performs the list posts operation for the blog capability.
177
+ * Calls `GET /api/v1/blog/posts` through the shared IDP-aware Faiber client.
178
+ * @param params Typed query parameters; omitted members retain backend defaults.
179
+ * @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
180
+ * @returns The complete Axios response, including the typed service envelope, status, and headers.
181
+ * @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
182
+ */
64
183
  blogListPostsGet(params, options) {
65
184
  return this.client.request({ ...options, method: "GET", url: `/api/v1/blog/posts`, params });
66
185
  }
67
- /** POST /api/v1/blog/posts; permission: public/session-derived. */
186
+ /**
187
+ * Performs the create post operation for the blog capability.
188
+ * Calls `POST /api/v1/blog/posts` through the shared IDP-aware Faiber client.
189
+ * @param data Typed JSON request body.
190
+ * @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
191
+ * @returns The complete Axios response, including the typed service envelope, status, and headers.
192
+ * @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
193
+ */
68
194
  blogCreatePostPost(data, options) {
69
195
  return this.client.request({ ...options, method: "POST", url: `/api/v1/blog/posts`, data: data });
70
196
  }
71
- /** DELETE /api/v1/blog/posts/{id}; permission: public/session-derived. */
197
+ /**
198
+ * Performs the delete post operation for the blog capability.
199
+ * Calls `DELETE /api/v1/blog/posts/{id}` through the shared IDP-aware Faiber client.
200
+ * @param id Backend path identifier `id`.
201
+ * @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
202
+ * @returns The complete Axios response, including the typed service envelope, status, and headers.
203
+ * @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
204
+ */
72
205
  blogDeletePostDelete(id, options) {
73
206
  return this.client.request({ ...options, method: "DELETE", url: `/api/v1/blog/posts/${encodeURIComponent(id)}` });
74
207
  }
75
- /** GET /api/v1/blog/posts/{id}; permission: public/session-derived. */
208
+ /**
209
+ * Performs the show post operation for the blog capability.
210
+ * Calls `GET /api/v1/blog/posts/{id}` through the shared IDP-aware Faiber client.
211
+ * @param id Backend path identifier `id`.
212
+ * @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
213
+ * @returns The complete Axios response, including the typed service envelope, status, and headers.
214
+ * @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
215
+ */
76
216
  blogShowPostGet(id, options) {
77
217
  return this.client.request({ ...options, method: "GET", url: `/api/v1/blog/posts/${encodeURIComponent(id)}` });
78
218
  }
79
- /** PATCH /api/v1/blog/posts/{id}; permission: public/session-derived. */
219
+ /**
220
+ * Performs the update post operation for the blog capability.
221
+ * Calls `PATCH /api/v1/blog/posts/{id}` through the shared IDP-aware Faiber client.
222
+ * @param id Backend path identifier `id`.
223
+ * @param data Typed JSON request body.
224
+ * @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
225
+ * @returns The complete Axios response, including the typed service envelope, status, and headers.
226
+ * @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
227
+ */
80
228
  blogUpdatePostPatch(id, data, options) {
81
229
  return this.client.request({ ...options, method: "PATCH", url: `/api/v1/blog/posts/${encodeURIComponent(id)}`, data: data });
82
230
  }
83
- /** PUT /api/v1/blog/posts/{id}; permission: public/session-derived. */
231
+ /**
232
+ * Performs the update post operation for the blog capability.
233
+ * Calls `PUT /api/v1/blog/posts/{id}` through the shared IDP-aware Faiber client.
234
+ * @param id Backend path identifier `id`.
235
+ * @param data Typed JSON request body.
236
+ * @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
237
+ * @returns The complete Axios response, including the typed service envelope, status, and headers.
238
+ * @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
239
+ */
84
240
  blogUpdatePostPut(id, data, options) {
85
241
  return this.client.request({ ...options, method: "PUT", url: `/api/v1/blog/posts/${encodeURIComponent(id)}`, data: data });
86
242
  }
87
- /** GET /api/v1/categories; permission: public/session-derived. */
243
+ /**
244
+ * Performs the list categories operation for the category capability.
245
+ * Calls `GET /api/v1/categories` through the shared IDP-aware Faiber client.
246
+ * @param params Typed query parameters; omitted members retain backend defaults.
247
+ * @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
248
+ * @returns The complete Axios response, including the typed service envelope, status, and headers.
249
+ * @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
250
+ */
88
251
  categoryListCategoriesGet(params, options) {
89
252
  return this.client.request({ ...options, method: "GET", url: `/api/v1/categories`, params });
90
253
  }
91
- /** POST /api/v1/categories; permission: public/session-derived. */
254
+ /**
255
+ * Performs the create category operation for the category capability.
256
+ * Calls `POST /api/v1/categories` through the shared IDP-aware Faiber client.
257
+ * @param data Typed JSON request body.
258
+ * @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
259
+ * @returns The complete Axios response, including the typed service envelope, status, and headers.
260
+ * @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
261
+ */
92
262
  categoryCreateCategoryPost(data, options) {
93
263
  return this.client.request({ ...options, method: "POST", url: `/api/v1/categories`, data: data });
94
264
  }
95
- /** DELETE /api/v1/categories/{host}/{target_id}; permission: public/session-derived. */
265
+ /**
266
+ * Performs the detach from target operation for the category capability.
267
+ * Calls `DELETE /api/v1/categories/{host}/{target_id}` through the shared IDP-aware Faiber client.
268
+ * @param host Backend path identifier `host`.
269
+ * @param targetId Backend path identifier `target_id`.
270
+ * @param params Typed query parameters; omitted members retain backend defaults.
271
+ * @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
272
+ * @returns The complete Axios response, including the typed service envelope, status, and headers.
273
+ * @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
274
+ */
96
275
  categoryDetachFromTargetDelete(host, targetId, params, options) {
97
276
  return this.client.request({ ...options, method: "DELETE", url: `/api/v1/categories/${encodeURIComponent(host)}/${encodeURIComponent(targetId)}`, params });
98
277
  }
99
- /** GET /api/v1/categories/{host}/{target_id}; permission: public/session-derived. */
278
+ /**
279
+ * Performs the list on target operation for the category capability.
280
+ * Calls `GET /api/v1/categories/{host}/{target_id}` through the shared IDP-aware Faiber client.
281
+ * @param host Backend path identifier `host`.
282
+ * @param targetId Backend path identifier `target_id`.
283
+ * @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
284
+ * @returns The complete Axios response, including the typed service envelope, status, and headers.
285
+ * @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
286
+ */
100
287
  categoryListOnTargetGet(host, targetId, options) {
101
288
  return this.client.request({ ...options, method: "GET", url: `/api/v1/categories/${encodeURIComponent(host)}/${encodeURIComponent(targetId)}` });
102
289
  }
103
- /** POST /api/v1/categories/{host}/{target_id}; permission: public/session-derived. */
290
+ /**
291
+ * Performs the attach to target operation for the category capability.
292
+ * Calls `POST /api/v1/categories/{host}/{target_id}` through the shared IDP-aware Faiber client.
293
+ * @param host Backend path identifier `host`.
294
+ * @param targetId Backend path identifier `target_id`.
295
+ * @param data Typed JSON request body.
296
+ * @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
297
+ * @returns The complete Axios response, including the typed service envelope, status, and headers.
298
+ * @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
299
+ */
104
300
  categoryAttachToTargetPost(host, targetId, data, options) {
105
301
  return this.client.request({ ...options, method: "POST", url: `/api/v1/categories/${encodeURIComponent(host)}/${encodeURIComponent(targetId)}`, data: data });
106
302
  }
107
- /** DELETE /api/v1/categories/{id}; permission: public/session-derived. */
303
+ /**
304
+ * Performs the delete category operation for the category capability.
305
+ * Calls `DELETE /api/v1/categories/{id}` through the shared IDP-aware Faiber client.
306
+ * @param id Backend path identifier `id`.
307
+ * @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
308
+ * @returns The complete Axios response, including the typed service envelope, status, and headers.
309
+ * @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
310
+ */
108
311
  categoryDeleteCategoryDelete(id, options) {
109
312
  return this.client.request({ ...options, method: "DELETE", url: `/api/v1/categories/${encodeURIComponent(id)}` });
110
313
  }
111
- /** GET /api/v1/categories/{id}; permission: public/session-derived. */
314
+ /**
315
+ * Performs the show category operation for the category capability.
316
+ * Calls `GET /api/v1/categories/{id}` through the shared IDP-aware Faiber client.
317
+ * @param id Backend path identifier `id`.
318
+ * @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
319
+ * @returns The complete Axios response, including the typed service envelope, status, and headers.
320
+ * @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
321
+ */
112
322
  categoryShowCategoryGet(id, options) {
113
323
  return this.client.request({ ...options, method: "GET", url: `/api/v1/categories/${encodeURIComponent(id)}` });
114
324
  }
115
- /** PATCH /api/v1/categories/{id}; permission: public/session-derived. */
325
+ /**
326
+ * Performs the update category operation for the category capability.
327
+ * Calls `PATCH /api/v1/categories/{id}` through the shared IDP-aware Faiber client.
328
+ * @param id Backend path identifier `id`.
329
+ * @param data Typed JSON request body.
330
+ * @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
331
+ * @returns The complete Axios response, including the typed service envelope, status, and headers.
332
+ * @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
333
+ */
116
334
  categoryUpdateCategoryPatch(id, data, options) {
117
335
  return this.client.request({ ...options, method: "PATCH", url: `/api/v1/categories/${encodeURIComponent(id)}`, data: data });
118
336
  }
119
- /** PUT /api/v1/categories/{id}; permission: public/session-derived. */
337
+ /**
338
+ * Performs the update category operation for the category capability.
339
+ * Calls `PUT /api/v1/categories/{id}` through the shared IDP-aware Faiber client.
340
+ * @param id Backend path identifier `id`.
341
+ * @param data Typed JSON request body.
342
+ * @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
343
+ * @returns The complete Axios response, including the typed service envelope, status, and headers.
344
+ * @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
345
+ */
120
346
  categoryUpdateCategoryPut(id, data, options) {
121
347
  return this.client.request({ ...options, method: "PUT", url: `/api/v1/categories/${encodeURIComponent(id)}`, data: data });
122
348
  }
123
- /** GET /api/v1/comments; permission: public/session-derived. */
349
+ /**
350
+ * Performs the list comments operation for the comment capability.
351
+ * Calls `GET /api/v1/comments` through the shared IDP-aware Faiber client.
352
+ * @param params Typed query parameters; omitted members retain backend defaults.
353
+ * @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
354
+ * @returns The complete Axios response, including the typed service envelope, status, and headers.
355
+ * @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
356
+ */
124
357
  commentListCommentsGet(params, options) {
125
358
  return this.client.request({ ...options, method: "GET", url: `/api/v1/comments`, params });
126
359
  }
127
- /** POST /api/v1/comments; permission: public/session-derived. */
360
+ /**
361
+ * Performs the create comment operation for the comment capability.
362
+ * Calls `POST /api/v1/comments` through the shared IDP-aware Faiber client.
363
+ * @param data Typed JSON request body.
364
+ * @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
365
+ * @returns The complete Axios response, including the typed service envelope, status, and headers.
366
+ * @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
367
+ */
128
368
  commentCreateCommentPost(data, options) {
129
369
  return this.client.request({ ...options, method: "POST", url: `/api/v1/comments`, data: data });
130
370
  }
131
- /** GET /api/v1/comments/{host}/{target_id}; permission: public/session-derived. */
371
+ /**
372
+ * Performs the list on target operation for the comment capability.
373
+ * Calls `GET /api/v1/comments/{host}/{target_id}` through the shared IDP-aware Faiber client.
374
+ * @param host Backend path identifier `host`.
375
+ * @param targetId Backend path identifier `target_id`.
376
+ * @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
377
+ * @returns The complete Axios response, including the typed service envelope, status, and headers.
378
+ * @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
379
+ */
132
380
  commentListOnTargetGet(host, targetId, options) {
133
381
  return this.client.request({ ...options, method: "GET", url: `/api/v1/comments/${encodeURIComponent(host)}/${encodeURIComponent(targetId)}` });
134
382
  }
135
- /** POST /api/v1/comments/{host}/{target_id}; permission: public/session-derived. */
383
+ /**
384
+ * Performs the create on target operation for the comment capability.
385
+ * Calls `POST /api/v1/comments/{host}/{target_id}` through the shared IDP-aware Faiber client.
386
+ * @param host Backend path identifier `host`.
387
+ * @param targetId Backend path identifier `target_id`.
388
+ * @param data Typed JSON request body.
389
+ * @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
390
+ * @returns The complete Axios response, including the typed service envelope, status, and headers.
391
+ * @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
392
+ */
136
393
  commentCreateOnTargetPost(host, targetId, data, options) {
137
394
  return this.client.request({ ...options, method: "POST", url: `/api/v1/comments/${encodeURIComponent(host)}/${encodeURIComponent(targetId)}`, data: data });
138
395
  }
139
- /** DELETE /api/v1/comments/{id}; permission: public/session-derived. */
396
+ /**
397
+ * Performs the delete comment operation for the comment capability.
398
+ * Calls `DELETE /api/v1/comments/{id}` through the shared IDP-aware Faiber client.
399
+ * @param id Backend path identifier `id`.
400
+ * @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
401
+ * @returns The complete Axios response, including the typed service envelope, status, and headers.
402
+ * @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
403
+ */
140
404
  commentDeleteCommentDelete(id, options) {
141
405
  return this.client.request({ ...options, method: "DELETE", url: `/api/v1/comments/${encodeURIComponent(id)}` });
142
406
  }
143
- /** GET /api/v1/comments/{id}; permission: public/session-derived. */
407
+ /**
408
+ * Performs the show comment operation for the comment capability.
409
+ * Calls `GET /api/v1/comments/{id}` through the shared IDP-aware Faiber client.
410
+ * @param id Backend path identifier `id`.
411
+ * @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
412
+ * @returns The complete Axios response, including the typed service envelope, status, and headers.
413
+ * @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
414
+ */
144
415
  commentShowCommentGet(id, options) {
145
416
  return this.client.request({ ...options, method: "GET", url: `/api/v1/comments/${encodeURIComponent(id)}` });
146
417
  }
147
- /** PATCH /api/v1/comments/{id}; permission: public/session-derived. */
418
+ /**
419
+ * Performs the update comment operation for the comment capability.
420
+ * Calls `PATCH /api/v1/comments/{id}` through the shared IDP-aware Faiber client.
421
+ * @param id Backend path identifier `id`.
422
+ * @param data Typed JSON request body.
423
+ * @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
424
+ * @returns The complete Axios response, including the typed service envelope, status, and headers.
425
+ * @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
426
+ */
148
427
  commentUpdateCommentPatch(id, data, options) {
149
428
  return this.client.request({ ...options, method: "PATCH", url: `/api/v1/comments/${encodeURIComponent(id)}`, data: data });
150
429
  }
151
- /** PUT /api/v1/comments/{id}; permission: public/session-derived. */
430
+ /**
431
+ * Performs the update comment operation for the comment capability.
432
+ * Calls `PUT /api/v1/comments/{id}` through the shared IDP-aware Faiber client.
433
+ * @param id Backend path identifier `id`.
434
+ * @param data Typed JSON request body.
435
+ * @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
436
+ * @returns The complete Axios response, including the typed service envelope, status, and headers.
437
+ * @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
438
+ */
152
439
  commentUpdateCommentPut(id, data, options) {
153
440
  return this.client.request({ ...options, method: "PUT", url: `/api/v1/comments/${encodeURIComponent(id)}`, data: data });
154
441
  }
155
- /** GET /api/v1/contents; permission: public/session-derived. */
442
+ /**
443
+ * Performs the list contents operation for the content capability.
444
+ * Calls `GET /api/v1/contents` through the shared IDP-aware Faiber client.
445
+ * @param params Typed query parameters; omitted members retain backend defaults.
446
+ * @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
447
+ * @returns The complete Axios response, including the typed service envelope, status, and headers.
448
+ * @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
449
+ */
156
450
  contentListContentsGet(params, options) {
157
451
  return this.client.request({ ...options, method: "GET", url: `/api/v1/contents`, params });
158
452
  }
159
- /** POST /api/v1/contents; permission: public/session-derived. */
453
+ /**
454
+ * Performs the create content operation for the content capability.
455
+ * Calls `POST /api/v1/contents` through the shared IDP-aware Faiber client.
456
+ * @param data Typed JSON request body.
457
+ * @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
458
+ * @returns The complete Axios response, including the typed service envelope, status, and headers.
459
+ * @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
460
+ */
160
461
  contentCreateContentPost(data, options) {
161
462
  return this.client.request({ ...options, method: "POST", url: `/api/v1/contents`, data: data });
162
463
  }
163
- /** DELETE /api/v1/contents/{host}/{target_id}; permission: public/session-derived. */
464
+ /**
465
+ * Performs the detach from target operation for the content capability.
466
+ * Calls `DELETE /api/v1/contents/{host}/{target_id}` through the shared IDP-aware Faiber client.
467
+ * @param host Backend path identifier `host`.
468
+ * @param targetId Backend path identifier `target_id`.
469
+ * @param params Typed query parameters; omitted members retain backend defaults.
470
+ * @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
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: session-derived or public bootstrap route.
473
+ */
164
474
  contentDetachFromTargetDelete(host, targetId, params, options) {
165
475
  return this.client.request({ ...options, method: "DELETE", url: `/api/v1/contents/${encodeURIComponent(host)}/${encodeURIComponent(targetId)}`, params });
166
476
  }
167
- /** GET /api/v1/contents/{host}/{target_id}; permission: public/session-derived. */
477
+ /**
478
+ * Performs the list on target operation for the content capability.
479
+ * Calls `GET /api/v1/contents/{host}/{target_id}` through the shared IDP-aware Faiber client.
480
+ * @param host Backend path identifier `host`.
481
+ * @param targetId Backend path identifier `target_id`.
482
+ * @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
483
+ * @returns The complete Axios response, including the typed service envelope, status, and headers.
484
+ * @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
485
+ */
168
486
  contentListOnTargetGet(host, targetId, options) {
169
487
  return this.client.request({ ...options, method: "GET", url: `/api/v1/contents/${encodeURIComponent(host)}/${encodeURIComponent(targetId)}` });
170
488
  }
171
- /** POST /api/v1/contents/{host}/{target_id}; permission: public/session-derived. */
489
+ /**
490
+ * Performs the attach to target operation for the content capability.
491
+ * Calls `POST /api/v1/contents/{host}/{target_id}` through the shared IDP-aware Faiber client.
492
+ * @param host Backend path identifier `host`.
493
+ * @param targetId Backend path identifier `target_id`.
494
+ * @param data Typed JSON request body.
495
+ * @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
496
+ * @returns The complete Axios response, including the typed service envelope, status, and headers.
497
+ * @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
498
+ */
172
499
  contentAttachToTargetPost(host, targetId, data, options) {
173
500
  return this.client.request({ ...options, method: "POST", url: `/api/v1/contents/${encodeURIComponent(host)}/${encodeURIComponent(targetId)}`, data: data });
174
501
  }
175
- /** DELETE /api/v1/contents/{id}; permission: public/session-derived. */
502
+ /**
503
+ * Performs the delete content operation for the content capability.
504
+ * Calls `DELETE /api/v1/contents/{id}` through the shared IDP-aware Faiber client.
505
+ * @param id Backend path identifier `id`.
506
+ * @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
507
+ * @returns The complete Axios response, including the typed service envelope, status, and headers.
508
+ * @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
509
+ */
176
510
  contentDeleteContentDelete(id, options) {
177
511
  return this.client.request({ ...options, method: "DELETE", url: `/api/v1/contents/${encodeURIComponent(id)}` });
178
512
  }
179
- /** GET /api/v1/contents/{id}; permission: public/session-derived. */
513
+ /**
514
+ * Performs the show content operation for the content capability.
515
+ * Calls `GET /api/v1/contents/{id}` through the shared IDP-aware Faiber client.
516
+ * @param id Backend path identifier `id`.
517
+ * @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
518
+ * @returns The complete Axios response, including the typed service envelope, status, and headers.
519
+ * @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
520
+ */
180
521
  contentShowContentGet(id, options) {
181
522
  return this.client.request({ ...options, method: "GET", url: `/api/v1/contents/${encodeURIComponent(id)}` });
182
523
  }
183
- /** PATCH /api/v1/contents/{id}; permission: public/session-derived. */
524
+ /**
525
+ * Performs the update content operation for the content capability.
526
+ * Calls `PATCH /api/v1/contents/{id}` through the shared IDP-aware Faiber client.
527
+ * @param id Backend path identifier `id`.
528
+ * @param data Typed JSON request body.
529
+ * @param params Typed query parameters; omitted members retain backend defaults.
530
+ * @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
531
+ * @returns The complete Axios response, including the typed service envelope, status, and headers.
532
+ * @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
533
+ */
184
534
  contentUpdateContentPatch(id, data, params, options) {
185
535
  return this.client.request({ ...options, method: "PATCH", url: `/api/v1/contents/${encodeURIComponent(id)}`, data: data, params });
186
536
  }
187
- /** PUT /api/v1/contents/{id}; permission: public/session-derived. */
537
+ /**
538
+ * Performs the update content operation for the content capability.
539
+ * Calls `PUT /api/v1/contents/{id}` through the shared IDP-aware Faiber client.
540
+ * @param id Backend path identifier `id`.
541
+ * @param data Typed JSON request body.
542
+ * @param params Typed query parameters; omitted members retain backend defaults.
543
+ * @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
544
+ * @returns The complete Axios response, including the typed service envelope, status, and headers.
545
+ * @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
546
+ */
188
547
  contentUpdateContentPut(id, data, params, options) {
189
548
  return this.client.request({ ...options, method: "PUT", url: `/api/v1/contents/${encodeURIComponent(id)}`, data: data, params });
190
549
  }
191
- /** GET /api/v1/integration/flow; permission: public/session-derived. */
550
+ /**
551
+ * Performs the flow integration show operation for the integration capability.
552
+ * Calls `GET /api/v1/integration/flow` through the shared IDP-aware Faiber client.
553
+ * @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
554
+ * @returns The complete Axios response, including the typed service envelope, status, and headers.
555
+ * @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
556
+ */
192
557
  integrationFlowIntegrationShowGet(options) {
193
558
  return this.client.request({ ...options, method: "GET", url: `/api/v1/integration/flow` });
194
559
  }
195
- /** GET /api/v1/inventory/inventories; permission: public/session-derived. */
560
+ /**
561
+ * Performs the list inventories operation for the inventory capability.
562
+ * Calls `GET /api/v1/inventory/inventories` through the shared IDP-aware Faiber client.
563
+ * @param params Typed query parameters; omitted members retain backend defaults.
564
+ * @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
565
+ * @returns The complete Axios response, including the typed service envelope, status, and headers.
566
+ * @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
567
+ */
196
568
  inventoryListInventoriesGet(params, options) {
197
569
  return this.client.request({ ...options, method: "GET", url: `/api/v1/inventory/inventories`, params });
198
570
  }
199
- /** POST /api/v1/inventory/inventories; permission: public/session-derived. */
571
+ /**
572
+ * Performs the create inventory operation for the inventory capability.
573
+ * Calls `POST /api/v1/inventory/inventories` through the shared IDP-aware Faiber client.
574
+ * @param data Typed JSON request body.
575
+ * @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
576
+ * @returns The complete Axios response, including the typed service envelope, status, and headers.
577
+ * @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
578
+ */
200
579
  inventoryCreateInventoryPost(data, options) {
201
580
  return this.client.request({ ...options, method: "POST", url: `/api/v1/inventory/inventories`, data: data });
202
581
  }
203
- /** DELETE /api/v1/inventory/inventories/{id}; permission: public/session-derived. */
582
+ /**
583
+ * Performs the delete inventory operation for the inventory capability.
584
+ * Calls `DELETE /api/v1/inventory/inventories/{id}` through the shared IDP-aware Faiber client.
585
+ * @param id Backend path identifier `id`.
586
+ * @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
587
+ * @returns The complete Axios response, including the typed service envelope, status, and headers.
588
+ * @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
589
+ */
204
590
  inventoryDeleteInventoryDelete(id, options) {
205
591
  return this.client.request({ ...options, method: "DELETE", url: `/api/v1/inventory/inventories/${encodeURIComponent(id)}` });
206
592
  }
207
- /** GET /api/v1/inventory/inventories/{id}; permission: public/session-derived. */
593
+ /**
594
+ * Performs the show inventory operation for the inventory capability.
595
+ * Calls `GET /api/v1/inventory/inventories/{id}` through the shared IDP-aware Faiber client.
596
+ * @param id Backend path identifier `id`.
597
+ * @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
598
+ * @returns The complete Axios response, including the typed service envelope, status, and headers.
599
+ * @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
600
+ */
208
601
  inventoryShowInventoryGet(id, options) {
209
602
  return this.client.request({ ...options, method: "GET", url: `/api/v1/inventory/inventories/${encodeURIComponent(id)}` });
210
603
  }
211
- /** PATCH /api/v1/inventory/inventories/{id}; permission: public/session-derived. */
604
+ /**
605
+ * Performs the update inventory operation for the inventory capability.
606
+ * Calls `PATCH /api/v1/inventory/inventories/{id}` through the shared IDP-aware Faiber client.
607
+ * @param id Backend path identifier `id`.
608
+ * @param data Typed JSON request body.
609
+ * @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
610
+ * @returns The complete Axios response, including the typed service envelope, status, and headers.
611
+ * @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
612
+ */
212
613
  inventoryUpdateInventoryPatch(id, data, options) {
213
614
  return this.client.request({ ...options, method: "PATCH", url: `/api/v1/inventory/inventories/${encodeURIComponent(id)}`, data: data });
214
615
  }
215
- /** PUT /api/v1/inventory/inventories/{id}; permission: public/session-derived. */
616
+ /**
617
+ * Performs the update inventory operation for the inventory capability.
618
+ * Calls `PUT /api/v1/inventory/inventories/{id}` through the shared IDP-aware Faiber client.
619
+ * @param id Backend path identifier `id`.
620
+ * @param data Typed JSON request body.
621
+ * @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
622
+ * @returns The complete Axios response, including the typed service envelope, status, and headers.
623
+ * @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
624
+ */
216
625
  inventoryUpdateInventoryPut(id, data, options) {
217
626
  return this.client.request({ ...options, method: "PUT", url: `/api/v1/inventory/inventories/${encodeURIComponent(id)}`, data: data });
218
627
  }
219
- /** GET /api/v1/inventory/stock-movements; permission: public/session-derived. */
628
+ /**
629
+ * Performs the list stock movements operation for the stock movement capability.
630
+ * Calls `GET /api/v1/inventory/stock-movements` through the shared IDP-aware Faiber client.
631
+ * @param params Typed query parameters; omitted members retain backend defaults.
632
+ * @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
633
+ * @returns The complete Axios response, including the typed service envelope, status, and headers.
634
+ * @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
635
+ */
220
636
  stockMovementListStockMovementsGet(params, options) {
221
637
  return this.client.request({ ...options, method: "GET", url: `/api/v1/inventory/stock-movements`, params });
222
638
  }
223
- /** POST /api/v1/inventory/stock-movements; permission: public/session-derived. */
639
+ /**
640
+ * Performs the create stock movement operation for the stock movement capability.
641
+ * Calls `POST /api/v1/inventory/stock-movements` through the shared IDP-aware Faiber client.
642
+ * @param data Typed JSON request body.
643
+ * @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
644
+ * @returns The complete Axios response, including the typed service envelope, status, and headers.
645
+ * @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
646
+ */
224
647
  stockMovementCreateStockMovementPost(data, options) {
225
648
  return this.client.request({ ...options, method: "POST", url: `/api/v1/inventory/stock-movements`, data: data });
226
649
  }
227
- /** GET /api/v1/inventory/warehouses; permission: public/session-derived. */
650
+ /**
651
+ * Performs the list warehouses operation for the inventory capability.
652
+ * Calls `GET /api/v1/inventory/warehouses` through the shared IDP-aware Faiber client.
653
+ * @param params Typed query parameters; omitted members retain backend defaults.
654
+ * @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
655
+ * @returns The complete Axios response, including the typed service envelope, status, and headers.
656
+ * @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
657
+ */
228
658
  inventoryListWarehousesGet(params, options) {
229
659
  return this.client.request({ ...options, method: "GET", url: `/api/v1/inventory/warehouses`, params });
230
660
  }
231
- /** POST /api/v1/inventory/warehouses; permission: public/session-derived. */
661
+ /**
662
+ * Performs the create warehouse operation for the inventory capability.
663
+ * Calls `POST /api/v1/inventory/warehouses` through the shared IDP-aware Faiber client.
664
+ * @param data Typed JSON request body.
665
+ * @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
666
+ * @returns The complete Axios response, including the typed service envelope, status, and headers.
667
+ * @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
668
+ */
232
669
  inventoryCreateWarehousePost(data, options) {
233
670
  return this.client.request({ ...options, method: "POST", url: `/api/v1/inventory/warehouses`, data: data });
234
671
  }
235
- /** DELETE /api/v1/inventory/warehouses/{id}; permission: public/session-derived. */
672
+ /**
673
+ * Performs the delete warehouse operation for the inventory capability.
674
+ * Calls `DELETE /api/v1/inventory/warehouses/{id}` through the shared IDP-aware Faiber client.
675
+ * @param id Backend path identifier `id`.
676
+ * @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
677
+ * @returns The complete Axios response, including the typed service envelope, status, and headers.
678
+ * @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
679
+ */
236
680
  inventoryDeleteWarehouseDelete(id, options) {
237
681
  return this.client.request({ ...options, method: "DELETE", url: `/api/v1/inventory/warehouses/${encodeURIComponent(id)}` });
238
682
  }
239
- /** GET /api/v1/inventory/warehouses/{id}; permission: public/session-derived. */
683
+ /**
684
+ * Performs the show warehouse operation for the inventory capability.
685
+ * Calls `GET /api/v1/inventory/warehouses/{id}` through the shared IDP-aware Faiber client.
686
+ * @param id Backend path identifier `id`.
687
+ * @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
688
+ * @returns The complete Axios response, including the typed service envelope, status, and headers.
689
+ * @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
690
+ */
240
691
  inventoryShowWarehouseGet(id, options) {
241
692
  return this.client.request({ ...options, method: "GET", url: `/api/v1/inventory/warehouses/${encodeURIComponent(id)}` });
242
693
  }
243
- /** PATCH /api/v1/inventory/warehouses/{id}; permission: public/session-derived. */
694
+ /**
695
+ * Performs the update warehouse operation for the inventory capability.
696
+ * Calls `PATCH /api/v1/inventory/warehouses/{id}` through the shared IDP-aware Faiber client.
697
+ * @param id Backend path identifier `id`.
698
+ * @param data Typed JSON request body.
699
+ * @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
700
+ * @returns The complete Axios response, including the typed service envelope, status, and headers.
701
+ * @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
702
+ */
244
703
  inventoryUpdateWarehousePatch(id, data, options) {
245
704
  return this.client.request({ ...options, method: "PATCH", url: `/api/v1/inventory/warehouses/${encodeURIComponent(id)}`, data: data });
246
705
  }
247
- /** PUT /api/v1/inventory/warehouses/{id}; permission: public/session-derived. */
706
+ /**
707
+ * Performs the update warehouse operation for the inventory capability.
708
+ * Calls `PUT /api/v1/inventory/warehouses/{id}` through the shared IDP-aware Faiber client.
709
+ * @param id Backend path identifier `id`.
710
+ * @param data Typed JSON request body.
711
+ * @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
712
+ * @returns The complete Axios response, including the typed service envelope, status, and headers.
713
+ * @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
714
+ */
248
715
  inventoryUpdateWarehousePut(id, data, options) {
249
716
  return this.client.request({ ...options, method: "PUT", url: `/api/v1/inventory/warehouses/${encodeURIComponent(id)}`, data: data });
250
717
  }
251
- /** GET /api/v1/pricing; permission: public/session-derived. */
718
+ /**
719
+ * Performs the list pricing operation for the service pricing capability.
720
+ * Calls `GET /api/v1/pricing` through the shared IDP-aware Faiber client.
721
+ * @param params Typed query parameters; omitted members retain backend defaults.
722
+ * @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
723
+ * @returns The complete Axios response, including the typed service envelope, status, and headers.
724
+ * @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
725
+ */
252
726
  servicePricingListPricingGet(params, options) {
253
727
  return this.client.request({ ...options, method: "GET", url: `/api/v1/pricing`, params });
254
728
  }
255
- /** POST /api/v1/pricing; permission: public/session-derived. */
729
+ /**
730
+ * Performs the create pricing operation for the service pricing capability.
731
+ * Calls `POST /api/v1/pricing` through the shared IDP-aware Faiber client.
732
+ * @param data Typed JSON request body.
733
+ * @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
734
+ * @returns The complete Axios response, including the typed service envelope, status, and headers.
735
+ * @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
736
+ */
256
737
  servicePricingCreatePricingPost(data, options) {
257
738
  return this.client.request({ ...options, method: "POST", url: `/api/v1/pricing`, data: data });
258
739
  }
259
- /** DELETE /api/v1/pricing/{id}; permission: public/session-derived. */
740
+ /**
741
+ * Performs the delete pricing operation for the service pricing capability.
742
+ * Calls `DELETE /api/v1/pricing/{id}` through the shared IDP-aware Faiber client.
743
+ * @param id Backend path identifier `id`.
744
+ * @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
745
+ * @returns The complete Axios response, including the typed service envelope, status, and headers.
746
+ * @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
747
+ */
260
748
  servicePricingDeletePricingDelete(id, options) {
261
749
  return this.client.request({ ...options, method: "DELETE", url: `/api/v1/pricing/${encodeURIComponent(id)}` });
262
750
  }
263
- /** GET /api/v1/pricing/{id}; permission: public/session-derived. */
751
+ /**
752
+ * Performs the show pricing operation for the service pricing capability.
753
+ * Calls `GET /api/v1/pricing/{id}` through the shared IDP-aware Faiber client.
754
+ * @param id Backend path identifier `id`.
755
+ * @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
756
+ * @returns The complete Axios response, including the typed service envelope, status, and headers.
757
+ * @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
758
+ */
264
759
  servicePricingShowPricingGet(id, options) {
265
760
  return this.client.request({ ...options, method: "GET", url: `/api/v1/pricing/${encodeURIComponent(id)}` });
266
761
  }
267
- /** PATCH /api/v1/pricing/{id}; permission: public/session-derived. */
762
+ /**
763
+ * Performs the update pricing operation for the service pricing capability.
764
+ * Calls `PATCH /api/v1/pricing/{id}` through the shared IDP-aware Faiber client.
765
+ * @param id Backend path identifier `id`.
766
+ * @param data Typed JSON request body.
767
+ * @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
768
+ * @returns The complete Axios response, including the typed service envelope, status, and headers.
769
+ * @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
770
+ */
268
771
  servicePricingUpdatePricingPatch(id, data, options) {
269
772
  return this.client.request({ ...options, method: "PATCH", url: `/api/v1/pricing/${encodeURIComponent(id)}`, data: data });
270
773
  }
271
- /** PUT /api/v1/pricing/{id}; permission: public/session-derived. */
774
+ /**
775
+ * Performs the update pricing operation for the service pricing capability.
776
+ * Calls `PUT /api/v1/pricing/{id}` through the shared IDP-aware Faiber client.
777
+ * @param id Backend path identifier `id`.
778
+ * @param data Typed JSON request body.
779
+ * @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
780
+ * @returns The complete Axios response, including the typed service envelope, status, and headers.
781
+ * @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
782
+ */
272
783
  servicePricingUpdatePricingPut(id, data, options) {
273
784
  return this.client.request({ ...options, method: "PUT", url: `/api/v1/pricing/${encodeURIComponent(id)}`, data: data });
274
785
  }
275
- /** DELETE /api/v1/reactions/{host}/{target_id}; permission: public/session-derived. */
786
+ /**
787
+ * Performs the delete on target operation for the reaction capability.
788
+ * Calls `DELETE /api/v1/reactions/{host}/{target_id}` through the shared IDP-aware Faiber client.
789
+ * @param host Backend path identifier `host`.
790
+ * @param targetId Backend path identifier `target_id`.
791
+ * @param params Typed query parameters; omitted members retain backend defaults.
792
+ * @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
793
+ * @returns The complete Axios response, including the typed service envelope, status, and headers.
794
+ * @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
795
+ */
276
796
  reactionDeleteOnTargetDelete(host, targetId, params, options) {
277
797
  return this.client.request({ ...options, method: "DELETE", url: `/api/v1/reactions/${encodeURIComponent(host)}/${encodeURIComponent(targetId)}`, params });
278
798
  }
279
- /** GET /api/v1/reactions/{host}/{target_id}; permission: public/session-derived. */
799
+ /**
800
+ * Performs the list on target operation for the reaction capability.
801
+ * Calls `GET /api/v1/reactions/{host}/{target_id}` through the shared IDP-aware Faiber client.
802
+ * @param host Backend path identifier `host`.
803
+ * @param targetId Backend path identifier `target_id`.
804
+ * @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
805
+ * @returns The complete Axios response, including the typed service envelope, status, and headers.
806
+ * @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
807
+ */
280
808
  reactionListOnTargetGet(host, targetId, options) {
281
809
  return this.client.request({ ...options, method: "GET", url: `/api/v1/reactions/${encodeURIComponent(host)}/${encodeURIComponent(targetId)}` });
282
810
  }
283
- /** POST /api/v1/reactions/{host}/{target_id}; permission: public/session-derived. */
811
+ /**
812
+ * Performs the create on target operation for the reaction capability.
813
+ * Calls `POST /api/v1/reactions/{host}/{target_id}` through the shared IDP-aware Faiber client.
814
+ * @param host Backend path identifier `host`.
815
+ * @param targetId Backend path identifier `target_id`.
816
+ * @param data Typed JSON request body.
817
+ * @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
818
+ * @returns The complete Axios response, including the typed service envelope, status, and headers.
819
+ * @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
820
+ */
284
821
  reactionCreateOnTargetPost(host, targetId, data, options) {
285
822
  return this.client.request({ ...options, method: "POST", url: `/api/v1/reactions/${encodeURIComponent(host)}/${encodeURIComponent(targetId)}`, data: data });
286
823
  }
287
- /** GET /api/v1/requests; permission: public/session-derived. */
824
+ /**
825
+ * Performs the list requests operation for the request capability.
826
+ * Calls `GET /api/v1/requests` through the shared IDP-aware Faiber client.
827
+ * @param params Typed query parameters; omitted members retain backend defaults.
828
+ * @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
829
+ * @returns The complete Axios response, including the typed service envelope, status, and headers.
830
+ * @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
831
+ */
288
832
  requestListRequestsGet(params, options) {
289
833
  return this.client.request({ ...options, method: "GET", url: `/api/v1/requests`, params });
290
834
  }
291
- /** POST /api/v1/requests; permission: public/session-derived. */
835
+ /**
836
+ * Performs the create request operation for the request capability.
837
+ * Calls `POST /api/v1/requests` through the shared IDP-aware Faiber client.
838
+ * @param data Typed JSON request body.
839
+ * @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
840
+ * @returns The complete Axios response, including the typed service envelope, status, and headers.
841
+ * @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
842
+ */
292
843
  requestCreateRequestPost(data, options) {
293
844
  return this.client.request({ ...options, method: "POST", url: `/api/v1/requests`, data: data });
294
845
  }
295
- /** DELETE /api/v1/requests/{host}/{target_id}; permission: public/session-derived. */
846
+ /**
847
+ * Performs the detach from target operation for the request capability.
848
+ * Calls `DELETE /api/v1/requests/{host}/{target_id}` through the shared IDP-aware Faiber client.
849
+ * @param host Backend path identifier `host`.
850
+ * @param targetId Backend path identifier `target_id`.
851
+ * @param params Typed query parameters; omitted members retain backend defaults.
852
+ * @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
853
+ * @returns The complete Axios response, including the typed service envelope, status, and headers.
854
+ * @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
855
+ */
296
856
  requestDetachFromTargetDelete(host, targetId, params, options) {
297
857
  return this.client.request({ ...options, method: "DELETE", url: `/api/v1/requests/${encodeURIComponent(host)}/${encodeURIComponent(targetId)}`, params });
298
858
  }
299
- /** GET /api/v1/requests/{host}/{target_id}; permission: public/session-derived. */
859
+ /**
860
+ * Performs the list on target operation for the request capability.
861
+ * Calls `GET /api/v1/requests/{host}/{target_id}` through the shared IDP-aware Faiber client.
862
+ * @param host Backend path identifier `host`.
863
+ * @param targetId Backend path identifier `target_id`.
864
+ * @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
865
+ * @returns The complete Axios response, including the typed service envelope, status, and headers.
866
+ * @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
867
+ */
300
868
  requestListOnTargetGet(host, targetId, options) {
301
869
  return this.client.request({ ...options, method: "GET", url: `/api/v1/requests/${encodeURIComponent(host)}/${encodeURIComponent(targetId)}` });
302
870
  }
303
- /** POST /api/v1/requests/{host}/{target_id}; permission: public/session-derived. */
871
+ /**
872
+ * Performs the attach to target operation for the request capability.
873
+ * Calls `POST /api/v1/requests/{host}/{target_id}` through the shared IDP-aware Faiber client.
874
+ * @param host Backend path identifier `host`.
875
+ * @param targetId Backend path identifier `target_id`.
876
+ * @param data Typed JSON request body.
877
+ * @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
878
+ * @returns The complete Axios response, including the typed service envelope, status, and headers.
879
+ * @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
880
+ */
304
881
  requestAttachToTargetPost(host, targetId, data, options) {
305
882
  return this.client.request({ ...options, method: "POST", url: `/api/v1/requests/${encodeURIComponent(host)}/${encodeURIComponent(targetId)}`, data: data });
306
883
  }
307
- /** DELETE /api/v1/requests/{id}; permission: public/session-derived. */
884
+ /**
885
+ * Performs the delete request operation for the request capability.
886
+ * Calls `DELETE /api/v1/requests/{id}` through the shared IDP-aware Faiber client.
887
+ * @param id Backend path identifier `id`.
888
+ * @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
889
+ * @returns The complete Axios response, including the typed service envelope, status, and headers.
890
+ * @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
891
+ */
308
892
  requestDeleteRequestDelete(id, options) {
309
893
  return this.client.request({ ...options, method: "DELETE", url: `/api/v1/requests/${encodeURIComponent(id)}` });
310
894
  }
311
- /** GET /api/v1/requests/{id}; permission: public/session-derived. */
895
+ /**
896
+ * Performs the show request operation for the request capability.
897
+ * Calls `GET /api/v1/requests/{id}` through the shared IDP-aware Faiber client.
898
+ * @param id Backend path identifier `id`.
899
+ * @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
900
+ * @returns The complete Axios response, including the typed service envelope, status, and headers.
901
+ * @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
902
+ */
312
903
  requestShowRequestGet(id, options) {
313
904
  return this.client.request({ ...options, method: "GET", url: `/api/v1/requests/${encodeURIComponent(id)}` });
314
905
  }
315
- /** PATCH /api/v1/requests/{id}; permission: public/session-derived. */
906
+ /**
907
+ * Performs the update request operation for the request capability.
908
+ * Calls `PATCH /api/v1/requests/{id}` through the shared IDP-aware Faiber client.
909
+ * @param id Backend path identifier `id`.
910
+ * @param data Typed JSON request body.
911
+ * @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
912
+ * @returns The complete Axios response, including the typed service envelope, status, and headers.
913
+ * @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
914
+ */
316
915
  requestUpdateRequestPatch(id, data, options) {
317
916
  return this.client.request({ ...options, method: "PATCH", url: `/api/v1/requests/${encodeURIComponent(id)}`, data: data });
318
917
  }
319
- /** PUT /api/v1/requests/{id}; permission: public/session-derived. */
918
+ /**
919
+ * Performs the update request operation for the request capability.
920
+ * Calls `PUT /api/v1/requests/{id}` through the shared IDP-aware Faiber client.
921
+ * @param id Backend path identifier `id`.
922
+ * @param data Typed JSON request body.
923
+ * @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
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: session-derived or public bootstrap route.
926
+ */
320
927
  requestUpdateRequestPut(id, data, options) {
321
928
  return this.client.request({ ...options, method: "PUT", url: `/api/v1/requests/${encodeURIComponent(id)}`, data: data });
322
929
  }
323
- /** GET /api/v1/requests/{request_id}/logs; permission: public/session-derived. */
930
+ /**
931
+ * Performs the list logs for request operation for the request capability.
932
+ * Calls `GET /api/v1/requests/{request_id}/logs` through the shared IDP-aware Faiber client.
933
+ * @param requestId Backend path identifier `request_id`.
934
+ * @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
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: session-derived or public bootstrap route.
937
+ */
324
938
  requestListLogsForRequestGet(requestId, options) {
325
939
  return this.client.request({ ...options, method: "GET", url: `/api/v1/requests/${encodeURIComponent(requestId)}/logs` });
326
940
  }
327
- /** POST /api/v1/requests/{request_id}/logs; permission: public/session-derived. */
941
+ /**
942
+ * Performs the submit operation for the request capability.
943
+ * Calls `POST /api/v1/requests/{request_id}/logs` through the shared IDP-aware Faiber client.
944
+ * @param requestId Backend path identifier `request_id`.
945
+ * @param data Typed JSON request body.
946
+ * @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
947
+ * @returns The complete Axios response, including the typed service envelope, status, and headers.
948
+ * @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
949
+ */
328
950
  requestSubmitPost(requestId, data, options) {
329
951
  return this.client.request({ ...options, method: "POST", url: `/api/v1/requests/${encodeURIComponent(requestId)}/logs`, data: data });
330
952
  }
331
- /** GET /api/v1/requests/category/{category_id}/logs; permission: public/session-derived. */
953
+ /**
954
+ * Performs the list logs for category operation for the request capability.
955
+ * Calls `GET /api/v1/requests/category/{category_id}/logs` through the shared IDP-aware Faiber client.
956
+ * @param categoryId Backend path identifier `category_id`.
957
+ * @param params Typed query parameters; omitted members retain backend defaults.
958
+ * @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
959
+ * @returns The complete Axios response, including the typed service envelope, status, and headers.
960
+ * @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
961
+ */
332
962
  requestListLogsForCategoryGet(categoryId, params, options) {
333
963
  return this.client.request({ ...options, method: "GET", url: `/api/v1/requests/category/${encodeURIComponent(categoryId)}/logs`, params });
334
964
  }
335
- /** GET /api/v1/samples; permission: public/session-derived. */
965
+ /**
966
+ * Performs the list samples operation for the user sample capability.
967
+ * Calls `GET /api/v1/samples` through the shared IDP-aware Faiber client.
968
+ * @param params Typed query parameters; omitted members retain backend defaults.
969
+ * @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
970
+ * @returns The complete Axios response, including the typed service envelope, status, and headers.
971
+ * @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
972
+ */
336
973
  userSampleListSamplesGet(params, options) {
337
974
  return this.client.request({ ...options, method: "GET", url: `/api/v1/samples`, params });
338
975
  }
339
- /** POST /api/v1/samples; permission: public/session-derived. */
976
+ /**
977
+ * Performs the create sample operation for the user sample capability.
978
+ * Calls `POST /api/v1/samples` through the shared IDP-aware Faiber client.
979
+ * @param data Typed JSON request body.
980
+ * @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
981
+ * @returns The complete Axios response, including the typed service envelope, status, and headers.
982
+ * @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
983
+ */
340
984
  userSampleCreateSamplePost(data, options) {
341
985
  return this.client.request({ ...options, method: "POST", url: `/api/v1/samples`, data: data });
342
986
  }
343
- /** DELETE /api/v1/samples/{id}; permission: public/session-derived. */
987
+ /**
988
+ * Performs the delete sample operation for the user sample capability.
989
+ * Calls `DELETE /api/v1/samples/{id}` through the shared IDP-aware Faiber client.
990
+ * @param id Backend path identifier `id`.
991
+ * @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
992
+ * @returns The complete Axios response, including the typed service envelope, status, and headers.
993
+ * @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
994
+ */
344
995
  userSampleDeleteSampleDelete(id, options) {
345
996
  return this.client.request({ ...options, method: "DELETE", url: `/api/v1/samples/${encodeURIComponent(id)}` });
346
997
  }
347
- /** GET /api/v1/samples/{id}; permission: public/session-derived. */
998
+ /**
999
+ * Performs the show sample operation for the user sample capability.
1000
+ * Calls `GET /api/v1/samples/{id}` through the shared IDP-aware Faiber client.
1001
+ * @param id Backend path identifier `id`.
1002
+ * @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
1003
+ * @returns The complete Axios response, including the typed service envelope, status, and headers.
1004
+ * @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
1005
+ */
348
1006
  userSampleShowSampleGet(id, options) {
349
1007
  return this.client.request({ ...options, method: "GET", url: `/api/v1/samples/${encodeURIComponent(id)}` });
350
1008
  }
351
- /** PATCH /api/v1/samples/{id}; permission: public/session-derived. */
1009
+ /**
1010
+ * Performs the update sample operation for the user sample capability.
1011
+ * Calls `PATCH /api/v1/samples/{id}` through the shared IDP-aware Faiber client.
1012
+ * @param id Backend path identifier `id`.
1013
+ * @param data Typed JSON request body.
1014
+ * @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
1015
+ * @returns The complete Axios response, including the typed service envelope, status, and headers.
1016
+ * @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
1017
+ */
352
1018
  userSampleUpdateSamplePatch(id, data, options) {
353
1019
  return this.client.request({ ...options, method: "PATCH", url: `/api/v1/samples/${encodeURIComponent(id)}`, data: data });
354
1020
  }
355
- /** PUT /api/v1/samples/{id}; permission: public/session-derived. */
1021
+ /**
1022
+ * Performs the update sample operation for the user sample capability.
1023
+ * Calls `PUT /api/v1/samples/{id}` through the shared IDP-aware Faiber client.
1024
+ * @param id Backend path identifier `id`.
1025
+ * @param data Typed JSON request body.
1026
+ * @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
1027
+ * @returns The complete Axios response, including the typed service envelope, status, and headers.
1028
+ * @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
1029
+ */
356
1030
  userSampleUpdateSamplePut(id, data, options) {
357
1031
  return this.client.request({ ...options, method: "PUT", url: `/api/v1/samples/${encodeURIComponent(id)}`, data: data });
358
1032
  }
359
- /** GET /api/v1/samples/{sample_id}/variables; permission: public/session-derived. */
1033
+ /**
1034
+ * Performs the list sample variables operation for the user sample capability.
1035
+ * Calls `GET /api/v1/samples/{sample_id}/variables` through the shared IDP-aware Faiber client.
1036
+ * @param sampleId Backend path identifier `sample_id`.
1037
+ * @param params Typed query parameters; omitted members retain backend defaults.
1038
+ * @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
1039
+ * @returns The complete Axios response, including the typed service envelope, status, and headers.
1040
+ * @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
1041
+ */
360
1042
  userSampleListSampleVariablesGet(sampleId, params, options) {
361
1043
  return this.client.request({ ...options, method: "GET", url: `/api/v1/samples/${encodeURIComponent(sampleId)}/variables`, params });
362
1044
  }
363
- /** POST /api/v1/samples/{sample_id}/variables; permission: public/session-derived. */
1045
+ /**
1046
+ * Performs the create sample variable operation for the user sample capability.
1047
+ * Calls `POST /api/v1/samples/{sample_id}/variables` through the shared IDP-aware Faiber client.
1048
+ * @param sampleId Backend path identifier `sample_id`.
1049
+ * @param data Typed JSON request body.
1050
+ * @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
1051
+ * @returns The complete Axios response, including the typed service envelope, status, and headers.
1052
+ * @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
1053
+ */
364
1054
  userSampleCreateSampleVariablePost(sampleId, data, options) {
365
1055
  return this.client.request({ ...options, method: "POST", url: `/api/v1/samples/${encodeURIComponent(sampleId)}/variables`, data: data });
366
1056
  }
367
- /** GET /api/v1/samples/by-slug/{slug}/variables-map; permission: public/session-derived. */
1057
+ /**
1058
+ * Performs the variables map by slug operation for the user sample capability.
1059
+ * Calls `GET /api/v1/samples/by-slug/{slug}/variables-map` through the shared IDP-aware Faiber client.
1060
+ * @param slug Backend path identifier `slug`.
1061
+ * @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
1062
+ * @returns The complete Axios response, including the typed service envelope, status, and headers.
1063
+ * @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
1064
+ */
368
1065
  userSampleVariablesMapBySlugGet(slug, options) {
369
1066
  return this.client.request({ ...options, method: "GET", url: `/api/v1/samples/by-slug/${encodeURIComponent(slug)}/variables-map` });
370
1067
  }
371
- /** GET /api/v1/samples/variables; permission: public/session-derived. */
1068
+ /**
1069
+ * Performs the list all variables operation for the user sample capability.
1070
+ * Calls `GET /api/v1/samples/variables` through the shared IDP-aware Faiber client.
1071
+ * @param params Typed query parameters; omitted members retain backend defaults.
1072
+ * @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
1073
+ * @returns The complete Axios response, including the typed service envelope, status, and headers.
1074
+ * @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
1075
+ */
372
1076
  userSampleListAllVariablesGet(params, options) {
373
1077
  return this.client.request({ ...options, method: "GET", url: `/api/v1/samples/variables`, params });
374
1078
  }
375
- /** DELETE /api/v1/samples/variables/{id}; permission: public/session-derived. */
1079
+ /**
1080
+ * Performs the delete variable operation for the user sample capability.
1081
+ * Calls `DELETE /api/v1/samples/variables/{id}` through the shared IDP-aware Faiber client.
1082
+ * @param id Backend path identifier `id`.
1083
+ * @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
1084
+ * @returns The complete Axios response, including the typed service envelope, status, and headers.
1085
+ * @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
1086
+ */
376
1087
  userSampleDeleteVariableDelete(id, options) {
377
1088
  return this.client.request({ ...options, method: "DELETE", url: `/api/v1/samples/variables/${encodeURIComponent(id)}` });
378
1089
  }
379
- /** GET /api/v1/samples/variables/{id}; permission: public/session-derived. */
1090
+ /**
1091
+ * Performs the show variable operation for the user sample capability.
1092
+ * Calls `GET /api/v1/samples/variables/{id}` through the shared IDP-aware Faiber client.
1093
+ * @param id Backend path identifier `id`.
1094
+ * @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
1095
+ * @returns The complete Axios response, including the typed service envelope, status, and headers.
1096
+ * @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
1097
+ */
380
1098
  userSampleShowVariableGet(id, options) {
381
1099
  return this.client.request({ ...options, method: "GET", url: `/api/v1/samples/variables/${encodeURIComponent(id)}` });
382
1100
  }
383
- /** PATCH /api/v1/samples/variables/{id}; permission: public/session-derived. */
1101
+ /**
1102
+ * Performs the update variable operation for the user sample capability.
1103
+ * Calls `PATCH /api/v1/samples/variables/{id}` through the shared IDP-aware Faiber client.
1104
+ * @param id Backend path identifier `id`.
1105
+ * @param data Typed JSON request body.
1106
+ * @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
1107
+ * @returns The complete Axios response, including the typed service envelope, status, and headers.
1108
+ * @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
1109
+ */
384
1110
  userSampleUpdateVariablePatch(id, data, options) {
385
1111
  return this.client.request({ ...options, method: "PATCH", url: `/api/v1/samples/variables/${encodeURIComponent(id)}`, data: data });
386
1112
  }
387
- /** PUT /api/v1/samples/variables/{id}; permission: public/session-derived. */
1113
+ /**
1114
+ * Performs the update variable operation for the user sample capability.
1115
+ * Calls `PUT /api/v1/samples/variables/{id}` through the shared IDP-aware Faiber client.
1116
+ * @param id Backend path identifier `id`.
1117
+ * @param data Typed JSON request body.
1118
+ * @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
1119
+ * @returns The complete Axios response, including the typed service envelope, status, and headers.
1120
+ * @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
1121
+ */
388
1122
  userSampleUpdateVariablePut(id, data, options) {
389
1123
  return this.client.request({ ...options, method: "PUT", url: `/api/v1/samples/variables/${encodeURIComponent(id)}`, data: data });
390
1124
  }
391
- /** GET /api/v1/seo-contents; permission: public/session-derived. */
1125
+ /**
1126
+ * Performs the list seo contents operation for the seo content capability.
1127
+ * Calls `GET /api/v1/seo-contents` through the shared IDP-aware Faiber client.
1128
+ * @param params Typed query parameters; omitted members retain backend defaults.
1129
+ * @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
1130
+ * @returns The complete Axios response, including the typed service envelope, status, and headers.
1131
+ * @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
1132
+ */
392
1133
  seoContentListSeoContentsGet(params, options) {
393
1134
  return this.client.request({ ...options, method: "GET", url: `/api/v1/seo-contents`, params });
394
1135
  }
395
- /** POST /api/v1/seo-contents; permission: public/session-derived. */
1136
+ /**
1137
+ * Performs the create seo content operation for the seo content capability.
1138
+ * Calls `POST /api/v1/seo-contents` through the shared IDP-aware Faiber client.
1139
+ * @param data Typed JSON request body.
1140
+ * @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
1141
+ * @returns The complete Axios response, including the typed service envelope, status, and headers.
1142
+ * @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
1143
+ */
396
1144
  seoContentCreateSeoContentPost(data, options) {
397
1145
  return this.client.request({ ...options, method: "POST", url: `/api/v1/seo-contents`, data: data });
398
1146
  }
399
- /** DELETE /api/v1/seo-contents/{host}/{target_id}; permission: public/session-derived. */
1147
+ /**
1148
+ * Performs the detach from target operation for the seo content capability.
1149
+ * Calls `DELETE /api/v1/seo-contents/{host}/{target_id}` through the shared IDP-aware Faiber client.
1150
+ * @param host Backend path identifier `host`.
1151
+ * @param targetId Backend path identifier `target_id`.
1152
+ * @param params Typed query parameters; omitted members retain backend defaults.
1153
+ * @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
1154
+ * @returns The complete Axios response, including the typed service envelope, status, and headers.
1155
+ * @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
1156
+ */
400
1157
  seoContentDetachFromTargetDelete(host, targetId, params, options) {
401
1158
  return this.client.request({ ...options, method: "DELETE", url: `/api/v1/seo-contents/${encodeURIComponent(host)}/${encodeURIComponent(targetId)}`, params });
402
1159
  }
403
- /** GET /api/v1/seo-contents/{host}/{target_id}; permission: public/session-derived. */
1160
+ /**
1161
+ * Performs the list on target operation for the seo content capability.
1162
+ * Calls `GET /api/v1/seo-contents/{host}/{target_id}` through the shared IDP-aware Faiber client.
1163
+ * @param host Backend path identifier `host`.
1164
+ * @param targetId Backend path identifier `target_id`.
1165
+ * @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
1166
+ * @returns The complete Axios response, including the typed service envelope, status, and headers.
1167
+ * @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
1168
+ */
404
1169
  seoContentListOnTargetGet(host, targetId, options) {
405
1170
  return this.client.request({ ...options, method: "GET", url: `/api/v1/seo-contents/${encodeURIComponent(host)}/${encodeURIComponent(targetId)}` });
406
1171
  }
407
- /** POST /api/v1/seo-contents/{host}/{target_id}; permission: public/session-derived. */
1172
+ /**
1173
+ * Performs the attach to target operation for the seo content capability.
1174
+ * Calls `POST /api/v1/seo-contents/{host}/{target_id}` through the shared IDP-aware Faiber client.
1175
+ * @param host Backend path identifier `host`.
1176
+ * @param targetId Backend path identifier `target_id`.
1177
+ * @param data Typed JSON request body.
1178
+ * @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
1179
+ * @returns The complete Axios response, including the typed service envelope, status, and headers.
1180
+ * @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
1181
+ */
408
1182
  seoContentAttachToTargetPost(host, targetId, data, options) {
409
1183
  return this.client.request({ ...options, method: "POST", url: `/api/v1/seo-contents/${encodeURIComponent(host)}/${encodeURIComponent(targetId)}`, data: data });
410
1184
  }
411
- /** DELETE /api/v1/seo-contents/{id}; permission: public/session-derived. */
1185
+ /**
1186
+ * Performs the delete seo content operation for the seo content capability.
1187
+ * Calls `DELETE /api/v1/seo-contents/{id}` through the shared IDP-aware Faiber client.
1188
+ * @param id Backend path identifier `id`.
1189
+ * @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
1190
+ * @returns The complete Axios response, including the typed service envelope, status, and headers.
1191
+ * @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
1192
+ */
412
1193
  seoContentDeleteSeoContentDelete(id, options) {
413
1194
  return this.client.request({ ...options, method: "DELETE", url: `/api/v1/seo-contents/${encodeURIComponent(id)}` });
414
1195
  }
415
- /** GET /api/v1/seo-contents/{id}; permission: public/session-derived. */
1196
+ /**
1197
+ * Performs the show seo content operation for the seo content capability.
1198
+ * Calls `GET /api/v1/seo-contents/{id}` through the shared IDP-aware Faiber client.
1199
+ * @param id Backend path identifier `id`.
1200
+ * @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
1201
+ * @returns The complete Axios response, including the typed service envelope, status, and headers.
1202
+ * @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
1203
+ */
416
1204
  seoContentShowSeoContentGet(id, options) {
417
1205
  return this.client.request({ ...options, method: "GET", url: `/api/v1/seo-contents/${encodeURIComponent(id)}` });
418
1206
  }
419
- /** PATCH /api/v1/seo-contents/{id}; permission: public/session-derived. */
1207
+ /**
1208
+ * Performs the update seo content operation for the seo content capability.
1209
+ * Calls `PATCH /api/v1/seo-contents/{id}` through the shared IDP-aware Faiber client.
1210
+ * @param id Backend path identifier `id`.
1211
+ * @param data Typed JSON request body.
1212
+ * @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
1213
+ * @returns The complete Axios response, including the typed service envelope, status, and headers.
1214
+ * @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
1215
+ */
420
1216
  seoContentUpdateSeoContentPatch(id, data, options) {
421
1217
  return this.client.request({ ...options, method: "PATCH", url: `/api/v1/seo-contents/${encodeURIComponent(id)}`, data: data });
422
1218
  }
423
- /** PUT /api/v1/seo-contents/{id}; permission: public/session-derived. */
1219
+ /**
1220
+ * Performs the update seo content operation for the seo content capability.
1221
+ * Calls `PUT /api/v1/seo-contents/{id}` through the shared IDP-aware Faiber client.
1222
+ * @param id Backend path identifier `id`.
1223
+ * @param data Typed JSON request body.
1224
+ * @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
1225
+ * @returns The complete Axios response, including the typed service envelope, status, and headers.
1226
+ * @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
1227
+ */
424
1228
  seoContentUpdateSeoContentPut(id, data, options) {
425
1229
  return this.client.request({ ...options, method: "PUT", url: `/api/v1/seo-contents/${encodeURIComponent(id)}`, data: data });
426
1230
  }
427
- /** GET /api/v1/shop/cart; permission: public/session-derived. */
1231
+ /**
1232
+ * Performs the show operation for the cart capability.
1233
+ * Calls `GET /api/v1/shop/cart` through the shared IDP-aware Faiber client.
1234
+ * @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
1235
+ * @returns The complete Axios response, including the typed service envelope, status, and headers.
1236
+ * @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
1237
+ */
428
1238
  cartShowGet(options) {
429
1239
  return this.client.request({ ...options, method: "GET", url: `/api/v1/shop/cart` });
430
1240
  }
431
- /** PUT /api/v1/shop/cart; permission: public/session-derived. */
1241
+ /**
1242
+ * Performs the replace operation for the cart capability.
1243
+ * Calls `PUT /api/v1/shop/cart` through the shared IDP-aware Faiber client.
1244
+ * @param data Typed JSON request body.
1245
+ * @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
1246
+ * @returns The complete Axios response, including the typed service envelope, status, and headers.
1247
+ * @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
1248
+ */
432
1249
  cartReplacePut(data, options) {
433
1250
  return this.client.request({ ...options, method: "PUT", url: `/api/v1/shop/cart`, data: data });
434
1251
  }
435
- /** GET /api/v1/shop/orders; permission: public/session-derived. */
1252
+ /**
1253
+ * Performs the list orders operation for the order capability.
1254
+ * Calls `GET /api/v1/shop/orders` through the shared IDP-aware Faiber client.
1255
+ * @param params Typed query parameters; omitted members retain backend defaults.
1256
+ * @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
1257
+ * @returns The complete Axios response, including the typed service envelope, status, and headers.
1258
+ * @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
1259
+ */
436
1260
  orderListOrdersGet(params, options) {
437
1261
  return this.client.request({ ...options, method: "GET", url: `/api/v1/shop/orders`, params });
438
1262
  }
439
- /** POST /api/v1/shop/orders; permission: public/session-derived. */
1263
+ /**
1264
+ * Performs the create order operation for the order capability.
1265
+ * Calls `POST /api/v1/shop/orders` through the shared IDP-aware Faiber client.
1266
+ * @param data Typed JSON request body.
1267
+ * @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
1268
+ * @returns The complete Axios response, including the typed service envelope, status, and headers.
1269
+ * @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
1270
+ */
440
1271
  orderCreateOrderPost(data, options) {
441
1272
  return this.client.request({ ...options, method: "POST", url: `/api/v1/shop/orders`, data: data });
442
1273
  }
443
- /** DELETE /api/v1/shop/orders/{id}; permission: public/session-derived. */
1274
+ /**
1275
+ * Performs the delete order operation for the order capability.
1276
+ * Calls `DELETE /api/v1/shop/orders/{id}` through the shared IDP-aware Faiber client.
1277
+ * @param id Backend path identifier `id`.
1278
+ * @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
1279
+ * @returns The complete Axios response, including the typed service envelope, status, and headers.
1280
+ * @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
1281
+ */
444
1282
  orderDeleteOrderDelete(id, options) {
445
1283
  return this.client.request({ ...options, method: "DELETE", url: `/api/v1/shop/orders/${encodeURIComponent(id)}` });
446
1284
  }
447
- /** GET /api/v1/shop/orders/{id}; permission: public/session-derived. */
1285
+ /**
1286
+ * Performs the show order operation for the order capability.
1287
+ * Calls `GET /api/v1/shop/orders/{id}` through the shared IDP-aware Faiber client.
1288
+ * @param id Backend path identifier `id`.
1289
+ * @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
1290
+ * @returns The complete Axios response, including the typed service envelope, status, and headers.
1291
+ * @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
1292
+ */
448
1293
  orderShowOrderGet(id, options) {
449
1294
  return this.client.request({ ...options, method: "GET", url: `/api/v1/shop/orders/${encodeURIComponent(id)}` });
450
1295
  }
451
- /** PATCH /api/v1/shop/orders/{id}; permission: public/session-derived. */
1296
+ /**
1297
+ * Performs the update order operation for the order capability.
1298
+ * Calls `PATCH /api/v1/shop/orders/{id}` through the shared IDP-aware Faiber client.
1299
+ * @param id Backend path identifier `id`.
1300
+ * @param data Typed JSON request body.
1301
+ * @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
1302
+ * @returns The complete Axios response, including the typed service envelope, status, and headers.
1303
+ * @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
1304
+ */
452
1305
  orderUpdateOrderPatch(id, data, options) {
453
1306
  return this.client.request({ ...options, method: "PATCH", url: `/api/v1/shop/orders/${encodeURIComponent(id)}`, data: data });
454
1307
  }
455
- /** PUT /api/v1/shop/orders/{id}; permission: public/session-derived. */
1308
+ /**
1309
+ * Performs the update order operation for the order capability.
1310
+ * Calls `PUT /api/v1/shop/orders/{id}` through the shared IDP-aware Faiber client.
1311
+ * @param id Backend path identifier `id`.
1312
+ * @param data Typed JSON request body.
1313
+ * @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
1314
+ * @returns The complete Axios response, including the typed service envelope, status, and headers.
1315
+ * @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
1316
+ */
456
1317
  orderUpdateOrderPut(id, data, options) {
457
1318
  return this.client.request({ ...options, method: "PUT", url: `/api/v1/shop/orders/${encodeURIComponent(id)}`, data: data });
458
1319
  }
459
- /** GET /api/v1/shop/orders/{order_id}/items; permission: public/session-derived. */
1320
+ /**
1321
+ * Performs the list order items operation for the order capability.
1322
+ * Calls `GET /api/v1/shop/orders/{order_id}/items` through the shared IDP-aware Faiber client.
1323
+ * @param orderId Backend path identifier `order_id`.
1324
+ * @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
1325
+ * @returns The complete Axios response, including the typed service envelope, status, and headers.
1326
+ * @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
1327
+ */
460
1328
  orderListOrderItemsGet(orderId, options) {
461
1329
  return this.client.request({ ...options, method: "GET", url: `/api/v1/shop/orders/${encodeURIComponent(orderId)}/items` });
462
1330
  }
463
- /** POST /api/v1/shop/orders/{order_id}/items; permission: public/session-derived. */
1331
+ /**
1332
+ * Performs the add order item operation for the order capability.
1333
+ * Calls `POST /api/v1/shop/orders/{order_id}/items` through the shared IDP-aware Faiber client.
1334
+ * @param orderId Backend path identifier `order_id`.
1335
+ * @param data Typed JSON request body.
1336
+ * @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
1337
+ * @returns The complete Axios response, including the typed service envelope, status, and headers.
1338
+ * @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
1339
+ */
464
1340
  orderAddOrderItemPost(orderId, data, options) {
465
1341
  return this.client.request({ ...options, method: "POST", url: `/api/v1/shop/orders/${encodeURIComponent(orderId)}/items`, data: data });
466
1342
  }
467
- /** GET /api/v1/shop/products; permission: public/session-derived. */
1343
+ /**
1344
+ * Performs the list products operation for the product capability.
1345
+ * Calls `GET /api/v1/shop/products` through the shared IDP-aware Faiber client.
1346
+ * @param params Typed query parameters; omitted members retain backend defaults.
1347
+ * @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
1348
+ * @returns The complete Axios response, including the typed service envelope, status, and headers.
1349
+ * @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
1350
+ */
468
1351
  productListProductsGet(params, options) {
469
1352
  return this.client.request({ ...options, method: "GET", url: `/api/v1/shop/products`, params });
470
1353
  }
471
- /** POST /api/v1/shop/products; permission: public/session-derived. */
1354
+ /**
1355
+ * Performs the create product operation for the product capability.
1356
+ * Calls `POST /api/v1/shop/products` through the shared IDP-aware Faiber client.
1357
+ * @param data Typed JSON request body.
1358
+ * @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
1359
+ * @returns The complete Axios response, including the typed service envelope, status, and headers.
1360
+ * @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
1361
+ */
472
1362
  productCreateProductPost(data, options) {
473
1363
  return this.client.request({ ...options, method: "POST", url: `/api/v1/shop/products`, data: data });
474
1364
  }
475
- /** DELETE /api/v1/shop/products/{id}; permission: public/session-derived. */
1365
+ /**
1366
+ * Performs the delete product operation for the product capability.
1367
+ * Calls `DELETE /api/v1/shop/products/{id}` through the shared IDP-aware Faiber client.
1368
+ * @param id Backend path identifier `id`.
1369
+ * @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
1370
+ * @returns The complete Axios response, including the typed service envelope, status, and headers.
1371
+ * @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
1372
+ */
476
1373
  productDeleteProductDelete(id, options) {
477
1374
  return this.client.request({ ...options, method: "DELETE", url: `/api/v1/shop/products/${encodeURIComponent(id)}` });
478
1375
  }
479
- /** GET /api/v1/shop/products/{id}; permission: public/session-derived. */
1376
+ /**
1377
+ * Performs the show product operation for the product capability.
1378
+ * Calls `GET /api/v1/shop/products/{id}` through the shared IDP-aware Faiber client.
1379
+ * @param id Backend path identifier `id`.
1380
+ * @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
1381
+ * @returns The complete Axios response, including the typed service envelope, status, and headers.
1382
+ * @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
1383
+ */
480
1384
  productShowProductGet(id, options) {
481
1385
  return this.client.request({ ...options, method: "GET", url: `/api/v1/shop/products/${encodeURIComponent(id)}` });
482
1386
  }
483
- /** PATCH /api/v1/shop/products/{id}; permission: public/session-derived. */
1387
+ /**
1388
+ * Performs the update product operation for the product capability.
1389
+ * Calls `PATCH /api/v1/shop/products/{id}` through the shared IDP-aware Faiber client.
1390
+ * @param id Backend path identifier `id`.
1391
+ * @param data Typed JSON request body.
1392
+ * @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
1393
+ * @returns The complete Axios response, including the typed service envelope, status, and headers.
1394
+ * @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
1395
+ */
484
1396
  productUpdateProductPatch(id, data, options) {
485
1397
  return this.client.request({ ...options, method: "PATCH", url: `/api/v1/shop/products/${encodeURIComponent(id)}`, data: data });
486
1398
  }
487
- /** PUT /api/v1/shop/products/{id}; permission: public/session-derived. */
1399
+ /**
1400
+ * Performs the update product operation for the product capability.
1401
+ * Calls `PUT /api/v1/shop/products/{id}` through the shared IDP-aware Faiber client.
1402
+ * @param id Backend path identifier `id`.
1403
+ * @param data Typed JSON request body.
1404
+ * @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
1405
+ * @returns The complete Axios response, including the typed service envelope, status, and headers.
1406
+ * @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
1407
+ */
488
1408
  productUpdateProductPut(id, data, options) {
489
1409
  return this.client.request({ ...options, method: "PUT", url: `/api/v1/shop/products/${encodeURIComponent(id)}`, data: data });
490
1410
  }
491
- /** GET /api/v1/shop/products/{product_id}/variants; permission: public/session-derived. */
1411
+ /**
1412
+ * Performs the list product variants operation for the product capability.
1413
+ * Calls `GET /api/v1/shop/products/{product_id}/variants` through the shared IDP-aware Faiber client.
1414
+ * @param productId Backend path identifier `product_id`.
1415
+ * @param params Typed query parameters; omitted members retain backend defaults.
1416
+ * @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
1417
+ * @returns The complete Axios response, including the typed service envelope, status, and headers.
1418
+ * @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
1419
+ */
492
1420
  productListProductVariantsGet(productId, params, options) {
493
1421
  return this.client.request({ ...options, method: "GET", url: `/api/v1/shop/products/${encodeURIComponent(productId)}/variants`, params });
494
1422
  }
495
- /** POST /api/v1/shop/products/{product_id}/variants; permission: public/session-derived. */
1423
+ /**
1424
+ * Performs the create variant operation for the product capability.
1425
+ * Calls `POST /api/v1/shop/products/{product_id}/variants` through the shared IDP-aware Faiber client.
1426
+ * @param productId Backend path identifier `product_id`.
1427
+ * @param data Typed JSON request body.
1428
+ * @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
1429
+ * @returns The complete Axios response, including the typed service envelope, status, and headers.
1430
+ * @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
1431
+ */
496
1432
  productCreateVariantPost(productId, data, options) {
497
1433
  return this.client.request({ ...options, method: "POST", url: `/api/v1/shop/products/${encodeURIComponent(productId)}/variants`, data: data });
498
1434
  }
499
- /** GET /api/v1/shop/variants; permission: public/session-derived. */
1435
+ /**
1436
+ * Performs the list variants operation for the product capability.
1437
+ * Calls `GET /api/v1/shop/variants` through the shared IDP-aware Faiber client.
1438
+ * @param params Typed query parameters; omitted members retain backend defaults.
1439
+ * @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
1440
+ * @returns The complete Axios response, including the typed service envelope, status, and headers.
1441
+ * @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
1442
+ */
500
1443
  productListVariantsGet(params, options) {
501
1444
  return this.client.request({ ...options, method: "GET", url: `/api/v1/shop/variants`, params });
502
1445
  }
503
- /** DELETE /api/v1/shop/variants/{id}; permission: public/session-derived. */
1446
+ /**
1447
+ * Performs the delete variant operation for the product capability.
1448
+ * Calls `DELETE /api/v1/shop/variants/{id}` through the shared IDP-aware Faiber client.
1449
+ * @param id Backend path identifier `id`.
1450
+ * @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
1451
+ * @returns The complete Axios response, including the typed service envelope, status, and headers.
1452
+ * @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
1453
+ */
504
1454
  productDeleteVariantDelete(id, options) {
505
1455
  return this.client.request({ ...options, method: "DELETE", url: `/api/v1/shop/variants/${encodeURIComponent(id)}` });
506
1456
  }
507
- /** GET /api/v1/shop/variants/{id}; permission: public/session-derived. */
1457
+ /**
1458
+ * Performs the show variant operation for the product capability.
1459
+ * Calls `GET /api/v1/shop/variants/{id}` through the shared IDP-aware Faiber client.
1460
+ * @param id Backend path identifier `id`.
1461
+ * @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
1462
+ * @returns The complete Axios response, including the typed service envelope, status, and headers.
1463
+ * @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
1464
+ */
508
1465
  productShowVariantGet(id, options) {
509
1466
  return this.client.request({ ...options, method: "GET", url: `/api/v1/shop/variants/${encodeURIComponent(id)}` });
510
1467
  }
511
- /** PATCH /api/v1/shop/variants/{id}; permission: public/session-derived. */
1468
+ /**
1469
+ * Performs the update variant operation for the product capability.
1470
+ * Calls `PATCH /api/v1/shop/variants/{id}` through the shared IDP-aware Faiber client.
1471
+ * @param id Backend path identifier `id`.
1472
+ * @param data Typed JSON request body.
1473
+ * @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
1474
+ * @returns The complete Axios response, including the typed service envelope, status, and headers.
1475
+ * @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
1476
+ */
512
1477
  productUpdateVariantPatch(id, data, options) {
513
1478
  return this.client.request({ ...options, method: "PATCH", url: `/api/v1/shop/variants/${encodeURIComponent(id)}`, data: data });
514
1479
  }
515
- /** PUT /api/v1/shop/variants/{id}; permission: public/session-derived. */
1480
+ /**
1481
+ * Performs the update variant operation for the product capability.
1482
+ * Calls `PUT /api/v1/shop/variants/{id}` through the shared IDP-aware Faiber client.
1483
+ * @param id Backend path identifier `id`.
1484
+ * @param data Typed JSON request body.
1485
+ * @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
1486
+ * @returns The complete Axios response, including the typed service envelope, status, and headers.
1487
+ * @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
1488
+ */
516
1489
  productUpdateVariantPut(id, data, options) {
517
1490
  return this.client.request({ ...options, method: "PUT", url: `/api/v1/shop/variants/${encodeURIComponent(id)}`, data: data });
518
1491
  }
519
- /** GET /api/v1/social/moderation/posts; permission: social:post:moderate. */
520
- socialListForModerationGet(params, options) {
521
- return this.client.request({ ...options, method: "GET", url: `/api/v1/social/moderation/posts`, params });
522
- }
523
- /** DELETE /api/v1/social/moderation/posts/{id}; permission: social:post:moderate. */
524
- socialRemoveDelete(id, options) {
525
- return this.client.request({ ...options, method: "DELETE", url: `/api/v1/social/moderation/posts/${encodeURIComponent(id)}` });
526
- }
527
- /** PATCH /api/v1/social/moderation/posts/{id}; permission: social:post:moderate. */
528
- socialManagePatch(id, data, options) {
529
- return this.client.request({ ...options, method: "PATCH", url: `/api/v1/social/moderation/posts/${encodeURIComponent(id)}`, data: data });
530
- }
531
- /** GET /api/v1/social/posts; permission: social:post:read. */
532
- socialListGet(params, options) {
533
- return this.client.request({ ...options, method: "GET", url: `/api/v1/social/posts`, params });
534
- }
535
- /** POST /api/v1/social/posts; permission: social:post:create. */
536
- socialCreatePost(data, options) {
537
- return this.client.request({ ...options, method: "POST", url: `/api/v1/social/posts`, data: data });
538
- }
539
- /** GET /api/v1/social/posts/{id}; permission: social:post:read. */
540
- socialShowGet(id, options) {
541
- return this.client.request({ ...options, method: "GET", url: `/api/v1/social/posts/${encodeURIComponent(id)}` });
542
- }
543
- /** PATCH /api/v1/social/posts/{id}; permission: social:post:update_own. */
544
- socialUpdatePatch(id, data, options) {
545
- return this.client.request({ ...options, method: "PATCH", url: `/api/v1/social/posts/${encodeURIComponent(id)}`, data: data });
546
- }
547
- /** PATCH /api/v1/social/posts/{id}/moderate; permission: social:post:moderate. */
548
- socialModeratePatch(id, data, options) {
549
- return this.client.request({ ...options, method: "PATCH", url: `/api/v1/social/posts/${encodeURIComponent(id)}/moderate`, data: data });
550
- }
551
- /** GET /api/v1/tags; permission: public/session-derived. */
1492
+ /**
1493
+ * Performs the list tags operation for the tag capability.
1494
+ * Calls `GET /api/v1/tags` through the shared IDP-aware Faiber client.
1495
+ * @param params Typed query parameters; omitted members retain backend defaults.
1496
+ * @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
1497
+ * @returns The complete Axios response, including the typed service envelope, status, and headers.
1498
+ * @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
1499
+ */
552
1500
  tagListTagsGet(params, options) {
553
1501
  return this.client.request({ ...options, method: "GET", url: `/api/v1/tags`, params });
554
1502
  }
555
- /** POST /api/v1/tags; permission: public/session-derived. */
1503
+ /**
1504
+ * Performs the create tag operation for the tag capability.
1505
+ * Calls `POST /api/v1/tags` through the shared IDP-aware Faiber client.
1506
+ * @param data Typed JSON request body.
1507
+ * @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
1508
+ * @returns The complete Axios response, including the typed service envelope, status, and headers.
1509
+ * @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
1510
+ */
556
1511
  tagCreateTagPost(data, options) {
557
1512
  return this.client.request({ ...options, method: "POST", url: `/api/v1/tags`, data: data });
558
1513
  }
559
- /** DELETE /api/v1/tags/{host}/{target_id}; permission: public/session-derived. */
1514
+ /**
1515
+ * Performs the detach from target operation for the tag capability.
1516
+ * Calls `DELETE /api/v1/tags/{host}/{target_id}` through the shared IDP-aware Faiber client.
1517
+ * @param host Backend path identifier `host`.
1518
+ * @param targetId Backend path identifier `target_id`.
1519
+ * @param params Typed query parameters; omitted members retain backend defaults.
1520
+ * @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
1521
+ * @returns The complete Axios response, including the typed service envelope, status, and headers.
1522
+ * @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
1523
+ */
560
1524
  tagDetachFromTargetDelete(host, targetId, params, options) {
561
1525
  return this.client.request({ ...options, method: "DELETE", url: `/api/v1/tags/${encodeURIComponent(host)}/${encodeURIComponent(targetId)}`, params });
562
1526
  }
563
- /** GET /api/v1/tags/{host}/{target_id}; permission: public/session-derived. */
1527
+ /**
1528
+ * Performs the list on target operation for the tag capability.
1529
+ * Calls `GET /api/v1/tags/{host}/{target_id}` through the shared IDP-aware Faiber client.
1530
+ * @param host Backend path identifier `host`.
1531
+ * @param targetId Backend path identifier `target_id`.
1532
+ * @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
1533
+ * @returns The complete Axios response, including the typed service envelope, status, and headers.
1534
+ * @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
1535
+ */
564
1536
  tagListOnTargetGet(host, targetId, options) {
565
1537
  return this.client.request({ ...options, method: "GET", url: `/api/v1/tags/${encodeURIComponent(host)}/${encodeURIComponent(targetId)}` });
566
1538
  }
567
- /** POST /api/v1/tags/{host}/{target_id}; permission: public/session-derived. */
1539
+ /**
1540
+ * Performs the attach to target operation for the tag capability.
1541
+ * Calls `POST /api/v1/tags/{host}/{target_id}` through the shared IDP-aware Faiber client.
1542
+ * @param host Backend path identifier `host`.
1543
+ * @param targetId Backend path identifier `target_id`.
1544
+ * @param data Typed JSON request body.
1545
+ * @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
1546
+ * @returns The complete Axios response, including the typed service envelope, status, and headers.
1547
+ * @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
1548
+ */
568
1549
  tagAttachToTargetPost(host, targetId, data, options) {
569
1550
  return this.client.request({ ...options, method: "POST", url: `/api/v1/tags/${encodeURIComponent(host)}/${encodeURIComponent(targetId)}`, data: data });
570
1551
  }
571
- /** DELETE /api/v1/tags/{id}; permission: public/session-derived. */
1552
+ /**
1553
+ * Performs the delete tag operation for the tag capability.
1554
+ * Calls `DELETE /api/v1/tags/{id}` through the shared IDP-aware Faiber client.
1555
+ * @param id Backend path identifier `id`.
1556
+ * @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
1557
+ * @returns The complete Axios response, including the typed service envelope, status, and headers.
1558
+ * @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
1559
+ */
572
1560
  tagDeleteTagDelete(id, options) {
573
1561
  return this.client.request({ ...options, method: "DELETE", url: `/api/v1/tags/${encodeURIComponent(id)}` });
574
1562
  }
575
- /** GET /api/v1/tags/{id}; permission: public/session-derived. */
1563
+ /**
1564
+ * Performs the show tag operation for the tag capability.
1565
+ * Calls `GET /api/v1/tags/{id}` through the shared IDP-aware Faiber client.
1566
+ * @param id Backend path identifier `id`.
1567
+ * @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
1568
+ * @returns The complete Axios response, including the typed service envelope, status, and headers.
1569
+ * @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
1570
+ */
576
1571
  tagShowTagGet(id, options) {
577
1572
  return this.client.request({ ...options, method: "GET", url: `/api/v1/tags/${encodeURIComponent(id)}` });
578
1573
  }
579
- /** PATCH /api/v1/tags/{id}; permission: public/session-derived. */
1574
+ /**
1575
+ * Performs the update tag operation for the tag capability.
1576
+ * Calls `PATCH /api/v1/tags/{id}` through the shared IDP-aware Faiber client.
1577
+ * @param id Backend path identifier `id`.
1578
+ * @param data Typed JSON request body.
1579
+ * @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
1580
+ * @returns The complete Axios response, including the typed service envelope, status, and headers.
1581
+ * @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
1582
+ */
580
1583
  tagUpdateTagPatch(id, data, options) {
581
1584
  return this.client.request({ ...options, method: "PATCH", url: `/api/v1/tags/${encodeURIComponent(id)}`, data: data });
582
1585
  }
583
- /** PUT /api/v1/tags/{id}; permission: public/session-derived. */
1586
+ /**
1587
+ * Performs the update tag operation for the tag capability.
1588
+ * Calls `PUT /api/v1/tags/{id}` through the shared IDP-aware Faiber client.
1589
+ * @param id Backend path identifier `id`.
1590
+ * @param data Typed JSON request body.
1591
+ * @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
1592
+ * @returns The complete Axios response, including the typed service envelope, status, and headers.
1593
+ * @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
1594
+ */
584
1595
  tagUpdateTagPut(id, data, options) {
585
1596
  return this.client.request({ ...options, method: "PUT", url: `/api/v1/tags/${encodeURIComponent(id)}`, data: data });
586
1597
  }