@faiber/faiber-modules 0.3.0 → 0.5.1

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,281 +1,1400 @@
1
1
  import { ServiceApi, type Identifier, type RequestOptions } from "@faiber/sdk-core";
2
2
  import type * as T from "./operations.types.js";
3
3
  export declare class ModulesOperations extends ServiceApi {
4
- /** GET /; permission: public/session-derived. */
4
+ /**
5
+ * Performs the status route operation for the router capability.
6
+ * Calls `GET /` through the shared IDP-aware Faiber client.
7
+ * @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
8
+ * @returns The complete Axios response, including the typed service envelope, status, and headers.
9
+ * @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
10
+ */
5
11
  routerStatusRouteGet(options?: RequestOptions): Promise<import("axios").AxiosResponse<T.RouterStatusRouteGetResponse, unknown, {}>>;
6
- /** GET /api-doc/openapi.json; permission: public/session-derived. */
12
+ /**
13
+ * Performs the beautified openapi operation for the router capability.
14
+ * Calls `GET /api-doc/openapi.json` through the shared IDP-aware Faiber client.
15
+ * @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
16
+ * @returns The complete Axios response, including the typed service envelope, status, and headers.
17
+ * @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
18
+ */
7
19
  routerBeautifiedOpenapiGet(options?: RequestOptions): Promise<import("axios").AxiosResponse<T.RouterBeautifiedOpenapiGetResponse, unknown, {}>>;
8
- /** GET /api/openapi.json; permission: public/session-derived. */
20
+ /**
21
+ * Performs the openapi json operation for the router capability.
22
+ * Calls `GET /api/openapi.json` through the shared IDP-aware Faiber client.
23
+ * @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
24
+ * @returns The complete Axios response, including the typed service envelope, status, and headers.
25
+ * @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
26
+ */
9
27
  routerOpenapiJsonGet(options?: RequestOptions): Promise<import("axios").AxiosResponse<T.RouterOpenapiJsonGetResponse, unknown, {}>>;
10
- /** GET /api/v1/access/{host}/{target_id}; permission: public/session-derived. */
28
+ /**
29
+ * Performs the list on target operation for the access capability.
30
+ * Calls `GET /api/v1/access/{host}/{target_id}` through the shared IDP-aware Faiber client.
31
+ * @param host Backend path identifier `host`.
32
+ * @param targetId Backend path identifier `target_id`.
33
+ * @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
34
+ * @returns The complete Axios response, including the typed service envelope, status, and headers.
35
+ * @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
36
+ */
11
37
  accessListOnTargetGet(host: Identifier, targetId: Identifier, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.AccessListOnTargetGetResponse, unknown, {}>>;
12
- /** POST /api/v1/access/{host}/{target_id}; permission: public/session-derived. */
38
+ /**
39
+ * Performs the grant on target operation for the access capability.
40
+ * Calls `POST /api/v1/access/{host}/{target_id}` through the shared IDP-aware Faiber client.
41
+ * @param host Backend path identifier `host`.
42
+ * @param targetId Backend path identifier `target_id`.
43
+ * @param data Typed JSON request body.
44
+ * @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
45
+ * @returns The complete Axios response, including the typed service envelope, status, and headers.
46
+ * @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
47
+ */
13
48
  accessGrantOnTargetPost(host: Identifier, targetId: Identifier, data: T.AccessGrantOnTargetPostInput, options?: RequestOptions<T.AccessGrantOnTargetPostInput>): Promise<import("axios").AxiosResponse<T.AccessGrantOnTargetPostResponse, T.AccessGrantOnTargetPostInput, {}>>;
14
- /** DELETE /api/v1/access/{host}/{target_id}/{access_id}; permission: public/session-derived. */
15
- accessRevokeOnTargetDelete(host: Identifier, targetId: Identifier, accessId: Identifier, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.AccessRevokeOnTargetDeleteResponse, unknown, {}>>;
16
- /** PUT /api/v1/access/{host}/{target_id}/{access_id}; permission: public/session-derived. */
49
+ /**
50
+ * Performs the revoke on target operation for the access capability.
51
+ * Calls `DELETE /api/v1/access/{host}/{target_id}/{access_id}` through the shared IDP-aware Faiber client.
52
+ * @param host Backend path identifier `host`.
53
+ * @param targetId Backend path identifier `target_id`.
54
+ * @param accessId Backend path identifier `access_id`.
55
+ * @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
56
+ * @returns The complete Axios response, including the typed service envelope, status, and headers.
57
+ * @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
58
+ */
59
+ accessRevokeOnTargetDelete(host: Identifier, targetId: Identifier, accessId: Identifier, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.AccessRevokeOnTargetDeleteResponseData, unknown, {}>>;
60
+ /**
61
+ * Performs the update on target operation for the access capability.
62
+ * Calls `PUT /api/v1/access/{host}/{target_id}/{access_id}` through the shared IDP-aware Faiber client.
63
+ * @param host Backend path identifier `host`.
64
+ * @param targetId Backend path identifier `target_id`.
65
+ * @param accessId Backend path identifier `access_id`.
66
+ * @param data Typed JSON request body.
67
+ * @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
68
+ * @returns The complete Axios response, including the typed service envelope, status, and headers.
69
+ * @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
70
+ */
17
71
  accessUpdateOnTargetPut(host: Identifier, targetId: Identifier, accessId: Identifier, data: T.AccessUpdateOnTargetPutInput, options?: RequestOptions<T.AccessUpdateOnTargetPutInput>): Promise<import("axios").AxiosResponse<T.AccessUpdateOnTargetPutResponse, T.AccessUpdateOnTargetPutInput, {}>>;
18
- /** GET /api/v1/audit-logs/{host}/{target_id}; permission: public/session-derived. */
72
+ /**
73
+ * Performs the list on target operation for the audit log capability.
74
+ * Calls `GET /api/v1/audit-logs/{host}/{target_id}` through the shared IDP-aware Faiber client.
75
+ * @param host Backend path identifier `host`.
76
+ * @param targetId Backend path identifier `target_id`.
77
+ * @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
78
+ * @returns The complete Axios response, including the typed service envelope, status, and headers.
79
+ * @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
80
+ */
19
81
  auditLogListOnTargetGet(host: Identifier, targetId: Identifier, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.AuditLogListOnTargetGetResponse, unknown, {}>>;
20
- /** GET /api/v1/auth/self; permission: public/session-derived. */
82
+ /**
83
+ * Performs the get self operation for the session capability.
84
+ * Calls `GET /api/v1/auth/self` through the shared IDP-aware Faiber client.
85
+ * @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
86
+ * @returns The complete Axios response, including the typed service envelope, status, and headers.
87
+ * @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
88
+ */
21
89
  sessionGetSelfGet(options?: RequestOptions): Promise<import("axios").AxiosResponse<T.SessionGetSelfGetResponse, unknown, {}>>;
22
- /** GET /api/v1/authors; permission: public/session-derived. */
90
+ /**
91
+ * Performs the list authors operation for the author capability.
92
+ * Calls `GET /api/v1/authors` through the shared IDP-aware Faiber client.
93
+ * @param params Typed query parameters; omitted members retain backend defaults.
94
+ * @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
95
+ * @returns The complete Axios response, including the typed service envelope, status, and headers.
96
+ * @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
97
+ */
23
98
  authorListAuthorsGet(params?: T.AuthorListAuthorsGetQuery, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.AuthorListAuthorsGetResponse, unknown, {}>>;
24
- /** POST /api/v1/authors; permission: public/session-derived. */
99
+ /**
100
+ * Performs the create author operation for the author capability.
101
+ * Calls `POST /api/v1/authors` through the shared IDP-aware Faiber client.
102
+ * @param data Typed JSON request body.
103
+ * @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
104
+ * @returns The complete Axios response, including the typed service envelope, status, and headers.
105
+ * @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
106
+ */
25
107
  authorCreateAuthorPost(data: T.AuthorCreateAuthorPostInput, options?: RequestOptions<T.AuthorCreateAuthorPostInput>): Promise<import("axios").AxiosResponse<T.AuthorCreateAuthorPostResponse, T.AuthorCreateAuthorPostInput, {}>>;
26
- /** DELETE /api/v1/authors/{id}; permission: public/session-derived. */
27
- authorDeleteAuthorDelete(id: Identifier, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.AuthorDeleteAuthorDeleteResponse, unknown, {}>>;
28
- /** GET /api/v1/authors/{id}; permission: public/session-derived. */
108
+ /**
109
+ * Performs the delete author operation for the author capability.
110
+ * Calls `DELETE /api/v1/authors/{id}` through the shared IDP-aware Faiber client.
111
+ * @param id Backend path identifier `id`.
112
+ * @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
113
+ * @returns The complete Axios response, including the typed service envelope, status, and headers.
114
+ * @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
115
+ */
116
+ authorDeleteAuthorDelete(id: Identifier, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.AuthorDeleteAuthorDeleteResponseData, unknown, {}>>;
117
+ /**
118
+ * Performs the show author operation for the author capability.
119
+ * Calls `GET /api/v1/authors/{id}` through the shared IDP-aware Faiber client.
120
+ * @param id Backend path identifier `id`.
121
+ * @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
122
+ * @returns The complete Axios response, including the typed service envelope, status, and headers.
123
+ * @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
124
+ */
29
125
  authorShowAuthorGet(id: Identifier, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.AuthorShowAuthorGetResponse, unknown, {}>>;
30
- /** PATCH /api/v1/authors/{id}; permission: public/session-derived. */
126
+ /**
127
+ * Performs the update author operation for the author capability.
128
+ * Calls `PATCH /api/v1/authors/{id}` through the shared IDP-aware Faiber client.
129
+ * @param id Backend path identifier `id`.
130
+ * @param data Typed JSON request body.
131
+ * @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
132
+ * @returns The complete Axios response, including the typed service envelope, status, and headers.
133
+ * @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
134
+ */
31
135
  authorUpdateAuthorPatch(id: Identifier, data: T.AuthorUpdateAuthorPatchInput, options?: RequestOptions<T.AuthorUpdateAuthorPatchInput>): Promise<import("axios").AxiosResponse<T.AuthorUpdateAuthorPatchResponse, T.AuthorUpdateAuthorPatchInput, {}>>;
32
- /** PUT /api/v1/authors/{id}; permission: public/session-derived. */
136
+ /**
137
+ * Performs the update author operation for the author capability.
138
+ * Calls `PUT /api/v1/authors/{id}` through the shared IDP-aware Faiber client.
139
+ * @param id Backend path identifier `id`.
140
+ * @param data Typed JSON request body.
141
+ * @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
142
+ * @returns The complete Axios response, including the typed service envelope, status, and headers.
143
+ * @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
144
+ */
33
145
  authorUpdateAuthorPut(id: Identifier, data: T.AuthorUpdateAuthorPutInput, options?: RequestOptions<T.AuthorUpdateAuthorPutInput>): Promise<import("axios").AxiosResponse<T.AuthorUpdateAuthorPutResponse, T.AuthorUpdateAuthorPutInput, {}>>;
34
- /** GET /api/v1/blog/posts; permission: public/session-derived. */
146
+ /**
147
+ * Performs the list posts operation for the blog capability.
148
+ * Calls `GET /api/v1/blog/posts` through the shared IDP-aware Faiber client.
149
+ * @param params Typed query parameters; omitted members retain backend defaults.
150
+ * @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
151
+ * @returns The complete Axios response, including the typed service envelope, status, and headers.
152
+ * @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
153
+ */
35
154
  blogListPostsGet(params?: T.BlogListPostsGetQuery, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.BlogListPostsGetResponse, unknown, {}>>;
36
- /** POST /api/v1/blog/posts; permission: public/session-derived. */
155
+ /**
156
+ * Performs the create post operation for the blog capability.
157
+ * Calls `POST /api/v1/blog/posts` through the shared IDP-aware Faiber client.
158
+ * @param data Typed JSON request body.
159
+ * @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
160
+ * @returns The complete Axios response, including the typed service envelope, status, and headers.
161
+ * @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
162
+ */
37
163
  blogCreatePostPost(data: T.BlogCreatePostPostInput, options?: RequestOptions<T.BlogCreatePostPostInput>): Promise<import("axios").AxiosResponse<T.BlogCreatePostPostResponse, T.BlogCreatePostPostInput, {}>>;
38
- /** DELETE /api/v1/blog/posts/{id}; permission: public/session-derived. */
39
- blogDeletePostDelete(id: Identifier, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.BlogDeletePostDeleteResponse, unknown, {}>>;
40
- /** GET /api/v1/blog/posts/{id}; permission: public/session-derived. */
164
+ /**
165
+ * Performs the delete post operation for the blog capability.
166
+ * Calls `DELETE /api/v1/blog/posts/{id}` through the shared IDP-aware Faiber client.
167
+ * @param id Backend path identifier `id`.
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
+ */
172
+ blogDeletePostDelete(id: Identifier, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.BlogDeletePostDeleteResponseData, unknown, {}>>;
173
+ /**
174
+ * Performs the show post operation for the blog capability.
175
+ * Calls `GET /api/v1/blog/posts/{id}` through the shared IDP-aware Faiber client.
176
+ * @param id Backend path identifier `id`.
177
+ * @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
178
+ * @returns The complete Axios response, including the typed service envelope, status, and headers.
179
+ * @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
180
+ */
41
181
  blogShowPostGet(id: Identifier, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.BlogShowPostGetResponse, unknown, {}>>;
42
- /** PATCH /api/v1/blog/posts/{id}; permission: public/session-derived. */
182
+ /**
183
+ * Performs the update post operation for the blog capability.
184
+ * Calls `PATCH /api/v1/blog/posts/{id}` through the shared IDP-aware Faiber client.
185
+ * @param id Backend path identifier `id`.
186
+ * @param data Typed JSON request body.
187
+ * @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
188
+ * @returns The complete Axios response, including the typed service envelope, status, and headers.
189
+ * @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
190
+ */
43
191
  blogUpdatePostPatch(id: Identifier, data: T.BlogUpdatePostPatchInput, options?: RequestOptions<T.BlogUpdatePostPatchInput>): Promise<import("axios").AxiosResponse<T.BlogUpdatePostPatchResponse, T.BlogUpdatePostPatchInput, {}>>;
44
- /** PUT /api/v1/blog/posts/{id}; permission: public/session-derived. */
192
+ /**
193
+ * Performs the update post operation for the blog capability.
194
+ * Calls `PUT /api/v1/blog/posts/{id}` through the shared IDP-aware Faiber client.
195
+ * @param id Backend path identifier `id`.
196
+ * @param data Typed JSON request body.
197
+ * @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
198
+ * @returns The complete Axios response, including the typed service envelope, status, and headers.
199
+ * @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
200
+ */
45
201
  blogUpdatePostPut(id: Identifier, data: T.BlogUpdatePostPutInput, options?: RequestOptions<T.BlogUpdatePostPutInput>): Promise<import("axios").AxiosResponse<T.BlogUpdatePostPutResponse, T.BlogUpdatePostPutInput, {}>>;
46
- /** GET /api/v1/categories; permission: public/session-derived. */
202
+ /**
203
+ * Performs the list categories operation for the category capability.
204
+ * Calls `GET /api/v1/categories` through the shared IDP-aware Faiber client.
205
+ * @param params Typed query parameters; omitted members retain backend defaults.
206
+ * @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
207
+ * @returns The complete Axios response, including the typed service envelope, status, and headers.
208
+ * @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
209
+ */
47
210
  categoryListCategoriesGet(params?: T.CategoryListCategoriesGetQuery, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.CategoryListCategoriesGetResponse, unknown, {}>>;
48
- /** POST /api/v1/categories; permission: public/session-derived. */
211
+ /**
212
+ * Performs the create category operation for the category capability.
213
+ * Calls `POST /api/v1/categories` through the shared IDP-aware Faiber client.
214
+ * @param data Typed JSON request body.
215
+ * @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
216
+ * @returns The complete Axios response, including the typed service envelope, status, and headers.
217
+ * @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
218
+ */
49
219
  categoryCreateCategoryPost(data: T.CategoryCreateCategoryPostInput, options?: RequestOptions<T.CategoryCreateCategoryPostInput>): Promise<import("axios").AxiosResponse<T.CategoryCreateCategoryPostResponse, T.CategoryCreateCategoryPostInput, {}>>;
50
- /** DELETE /api/v1/categories/{host}/{target_id}; permission: public/session-derived. */
51
- categoryDetachFromTargetDelete(host: Identifier, targetId: Identifier, params?: T.CategoryDetachFromTargetDeleteQuery, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.CategoryDetachFromTargetDeleteResponse, unknown, {}>>;
52
- /** GET /api/v1/categories/{host}/{target_id}; permission: public/session-derived. */
220
+ /**
221
+ * Performs the detach from target operation for the category capability.
222
+ * Calls `DELETE /api/v1/categories/{host}/{target_id}` through the shared IDP-aware Faiber client.
223
+ * @param host Backend path identifier `host`.
224
+ * @param targetId Backend path identifier `target_id`.
225
+ * @param params Typed query parameters; omitted members retain backend defaults.
226
+ * @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
227
+ * @returns The complete Axios response, including the typed service envelope, status, and headers.
228
+ * @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
229
+ */
230
+ categoryDetachFromTargetDelete(host: Identifier, targetId: Identifier, params?: T.CategoryDetachFromTargetDeleteQuery, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.CategoryDetachFromTargetDeleteResponseData, unknown, {}>>;
231
+ /**
232
+ * Performs the list on target operation for the category capability.
233
+ * Calls `GET /api/v1/categories/{host}/{target_id}` through the shared IDP-aware Faiber client.
234
+ * @param host Backend path identifier `host`.
235
+ * @param targetId Backend path identifier `target_id`.
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
+ */
53
240
  categoryListOnTargetGet(host: Identifier, targetId: Identifier, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.CategoryListOnTargetGetResponse, unknown, {}>>;
54
- /** POST /api/v1/categories/{host}/{target_id}; permission: public/session-derived. */
241
+ /**
242
+ * Performs the attach to target operation for the category capability.
243
+ * Calls `POST /api/v1/categories/{host}/{target_id}` through the shared IDP-aware Faiber client.
244
+ * @param host Backend path identifier `host`.
245
+ * @param targetId Backend path identifier `target_id`.
246
+ * @param data Typed JSON request body.
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
+ */
55
251
  categoryAttachToTargetPost(host: Identifier, targetId: Identifier, data: T.CategoryAttachToTargetPostInput, options?: RequestOptions<T.CategoryAttachToTargetPostInput>): Promise<import("axios").AxiosResponse<T.CategoryAttachToTargetPostResponse, T.CategoryAttachToTargetPostInput, {}>>;
56
- /** DELETE /api/v1/categories/{id}; permission: public/session-derived. */
57
- categoryDeleteCategoryDelete(id: Identifier, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.CategoryDeleteCategoryDeleteResponse, unknown, {}>>;
58
- /** GET /api/v1/categories/{id}; permission: public/session-derived. */
252
+ /**
253
+ * Performs the delete category operation for the category capability.
254
+ * Calls `DELETE /api/v1/categories/{id}` through the shared IDP-aware Faiber client.
255
+ * @param id Backend path identifier `id`.
256
+ * @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
257
+ * @returns The complete Axios response, including the typed service envelope, status, and headers.
258
+ * @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
259
+ */
260
+ categoryDeleteCategoryDelete(id: Identifier, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.CategoryDeleteCategoryDeleteResponseData, unknown, {}>>;
261
+ /**
262
+ * Performs the show category operation for the category capability.
263
+ * Calls `GET /api/v1/categories/{id}` through the shared IDP-aware Faiber client.
264
+ * @param id Backend path identifier `id`.
265
+ * @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
266
+ * @returns The complete Axios response, including the typed service envelope, status, and headers.
267
+ * @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
268
+ */
59
269
  categoryShowCategoryGet(id: Identifier, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.CategoryShowCategoryGetResponse, unknown, {}>>;
60
- /** PATCH /api/v1/categories/{id}; permission: public/session-derived. */
270
+ /**
271
+ * Performs the update category operation for the category capability.
272
+ * Calls `PATCH /api/v1/categories/{id}` through the shared IDP-aware Faiber client.
273
+ * @param id Backend path identifier `id`.
274
+ * @param data Typed JSON request body.
275
+ * @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
276
+ * @returns The complete Axios response, including the typed service envelope, status, and headers.
277
+ * @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
278
+ */
61
279
  categoryUpdateCategoryPatch(id: Identifier, data: T.CategoryUpdateCategoryPatchInput, options?: RequestOptions<T.CategoryUpdateCategoryPatchInput>): Promise<import("axios").AxiosResponse<T.CategoryUpdateCategoryPatchResponse, T.CategoryUpdateCategoryPatchInput, {}>>;
62
- /** PUT /api/v1/categories/{id}; permission: public/session-derived. */
280
+ /**
281
+ * Performs the update category operation for the category capability.
282
+ * Calls `PUT /api/v1/categories/{id}` through the shared IDP-aware Faiber client.
283
+ * @param id Backend path identifier `id`.
284
+ * @param data Typed JSON request body.
285
+ * @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
286
+ * @returns The complete Axios response, including the typed service envelope, status, and headers.
287
+ * @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
288
+ */
63
289
  categoryUpdateCategoryPut(id: Identifier, data: T.CategoryUpdateCategoryPutInput, options?: RequestOptions<T.CategoryUpdateCategoryPutInput>): Promise<import("axios").AxiosResponse<T.CategoryUpdateCategoryPutResponse, T.CategoryUpdateCategoryPutInput, {}>>;
64
- /** GET /api/v1/comments; permission: public/session-derived. */
290
+ /**
291
+ * Performs the list comments operation for the comment capability.
292
+ * Calls `GET /api/v1/comments` through the shared IDP-aware Faiber client.
293
+ * @param params Typed query parameters; omitted members retain backend defaults.
294
+ * @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
295
+ * @returns The complete Axios response, including the typed service envelope, status, and headers.
296
+ * @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
297
+ */
65
298
  commentListCommentsGet(params?: T.CommentListCommentsGetQuery, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.CommentListCommentsGetResponse, unknown, {}>>;
66
- /** POST /api/v1/comments; permission: public/session-derived. */
299
+ /**
300
+ * Performs the create comment operation for the comment capability.
301
+ * Calls `POST /api/v1/comments` through the shared IDP-aware Faiber client.
302
+ * @param data Typed JSON request body.
303
+ * @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
304
+ * @returns The complete Axios response, including the typed service envelope, status, and headers.
305
+ * @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
306
+ */
67
307
  commentCreateCommentPost(data: T.CommentCreateCommentPostInput, options?: RequestOptions<T.CommentCreateCommentPostInput>): Promise<import("axios").AxiosResponse<T.CommentCreateCommentPostResponse, T.CommentCreateCommentPostInput, {}>>;
68
- /** GET /api/v1/comments/{host}/{target_id}; permission: public/session-derived. */
308
+ /**
309
+ * Performs the list on target operation for the comment capability.
310
+ * Calls `GET /api/v1/comments/{host}/{target_id}` through the shared IDP-aware Faiber client.
311
+ * @param host Backend path identifier `host`.
312
+ * @param targetId Backend path identifier `target_id`.
313
+ * @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
314
+ * @returns The complete Axios response, including the typed service envelope, status, and headers.
315
+ * @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
316
+ */
69
317
  commentListOnTargetGet(host: Identifier, targetId: Identifier, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.CommentListOnTargetGetResponse, unknown, {}>>;
70
- /** POST /api/v1/comments/{host}/{target_id}; permission: public/session-derived. */
318
+ /**
319
+ * Performs the create on target operation for the comment capability.
320
+ * Calls `POST /api/v1/comments/{host}/{target_id}` through the shared IDP-aware Faiber client.
321
+ * @param host Backend path identifier `host`.
322
+ * @param targetId Backend path identifier `target_id`.
323
+ * @param data Typed JSON request body.
324
+ * @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
325
+ * @returns The complete Axios response, including the typed service envelope, status, and headers.
326
+ * @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
327
+ */
71
328
  commentCreateOnTargetPost(host: Identifier, targetId: Identifier, data: T.CommentCreateOnTargetPostInput, options?: RequestOptions<T.CommentCreateOnTargetPostInput>): Promise<import("axios").AxiosResponse<T.CommentCreateOnTargetPostResponse, T.CommentCreateOnTargetPostInput, {}>>;
72
- /** DELETE /api/v1/comments/{id}; permission: public/session-derived. */
73
- commentDeleteCommentDelete(id: Identifier, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.CommentDeleteCommentDeleteResponse, unknown, {}>>;
74
- /** GET /api/v1/comments/{id}; permission: public/session-derived. */
329
+ /**
330
+ * Performs the delete comment operation for the comment capability.
331
+ * Calls `DELETE /api/v1/comments/{id}` through the shared IDP-aware Faiber client.
332
+ * @param id Backend path identifier `id`.
333
+ * @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
334
+ * @returns The complete Axios response, including the typed service envelope, status, and headers.
335
+ * @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
336
+ */
337
+ commentDeleteCommentDelete(id: Identifier, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.CommentDeleteCommentDeleteResponseData, unknown, {}>>;
338
+ /**
339
+ * Performs the show comment operation for the comment capability.
340
+ * Calls `GET /api/v1/comments/{id}` through the shared IDP-aware Faiber client.
341
+ * @param id Backend path identifier `id`.
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
+ */
75
346
  commentShowCommentGet(id: Identifier, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.CommentShowCommentGetResponse, unknown, {}>>;
76
- /** PATCH /api/v1/comments/{id}; permission: public/session-derived. */
347
+ /**
348
+ * Performs the update comment operation for the comment capability.
349
+ * Calls `PATCH /api/v1/comments/{id}` through the shared IDP-aware Faiber client.
350
+ * @param id Backend path identifier `id`.
351
+ * @param data Typed JSON request body.
352
+ * @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
353
+ * @returns The complete Axios response, including the typed service envelope, status, and headers.
354
+ * @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
355
+ */
77
356
  commentUpdateCommentPatch(id: Identifier, data: T.CommentUpdateCommentPatchInput, options?: RequestOptions<T.CommentUpdateCommentPatchInput>): Promise<import("axios").AxiosResponse<T.CommentUpdateCommentPatchResponse, T.CommentUpdateCommentPatchInput, {}>>;
78
- /** PUT /api/v1/comments/{id}; permission: public/session-derived. */
357
+ /**
358
+ * Performs the update comment operation for the comment capability.
359
+ * Calls `PUT /api/v1/comments/{id}` through the shared IDP-aware Faiber client.
360
+ * @param id Backend path identifier `id`.
361
+ * @param data Typed JSON request body.
362
+ * @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
363
+ * @returns The complete Axios response, including the typed service envelope, status, and headers.
364
+ * @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
365
+ */
79
366
  commentUpdateCommentPut(id: Identifier, data: T.CommentUpdateCommentPutInput, options?: RequestOptions<T.CommentUpdateCommentPutInput>): Promise<import("axios").AxiosResponse<T.CommentUpdateCommentPutResponse, T.CommentUpdateCommentPutInput, {}>>;
80
- /** GET /api/v1/contents; permission: public/session-derived. */
367
+ /**
368
+ * Performs the list contents operation for the content capability.
369
+ * Calls `GET /api/v1/contents` through the shared IDP-aware Faiber client.
370
+ * @param params Typed query parameters; omitted members retain backend defaults.
371
+ * @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
372
+ * @returns The complete Axios response, including the typed service envelope, status, and headers.
373
+ * @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
374
+ */
81
375
  contentListContentsGet(params?: T.ContentListContentsGetQuery, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.ContentListContentsGetResponse, unknown, {}>>;
82
- /** POST /api/v1/contents; permission: public/session-derived. */
376
+ /**
377
+ * Performs the create content operation for the content capability.
378
+ * Calls `POST /api/v1/contents` through the shared IDP-aware Faiber client.
379
+ * @param data Typed JSON request body.
380
+ * @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
381
+ * @returns The complete Axios response, including the typed service envelope, status, and headers.
382
+ * @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
383
+ */
83
384
  contentCreateContentPost(data: T.ContentCreateContentPostInput, options?: RequestOptions<T.ContentCreateContentPostInput>): Promise<import("axios").AxiosResponse<T.ContentCreateContentPostResponse, T.ContentCreateContentPostInput, {}>>;
84
- /** DELETE /api/v1/contents/{host}/{target_id}; permission: public/session-derived. */
85
- contentDetachFromTargetDelete(host: Identifier, targetId: Identifier, params?: T.ContentDetachFromTargetDeleteQuery, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.ContentDetachFromTargetDeleteResponse, unknown, {}>>;
86
- /** GET /api/v1/contents/{host}/{target_id}; permission: public/session-derived. */
385
+ /**
386
+ * Performs the detach from target operation for the content capability.
387
+ * Calls `DELETE /api/v1/contents/{host}/{target_id}` through the shared IDP-aware Faiber client.
388
+ * @param host Backend path identifier `host`.
389
+ * @param targetId Backend path identifier `target_id`.
390
+ * @param params Typed query parameters; omitted members retain backend defaults.
391
+ * @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
392
+ * @returns The complete Axios response, including the typed service envelope, status, and headers.
393
+ * @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
394
+ */
395
+ contentDetachFromTargetDelete(host: Identifier, targetId: Identifier, params?: T.ContentDetachFromTargetDeleteQuery, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.ContentDetachFromTargetDeleteResponseData, unknown, {}>>;
396
+ /**
397
+ * Performs the list on target operation for the content capability.
398
+ * Calls `GET /api/v1/contents/{host}/{target_id}` through the shared IDP-aware Faiber client.
399
+ * @param host Backend path identifier `host`.
400
+ * @param targetId Backend path identifier `target_id`.
401
+ * @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
402
+ * @returns The complete Axios response, including the typed service envelope, status, and headers.
403
+ * @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
404
+ */
87
405
  contentListOnTargetGet(host: Identifier, targetId: Identifier, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.ContentListOnTargetGetResponse, unknown, {}>>;
88
- /** POST /api/v1/contents/{host}/{target_id}; permission: public/session-derived. */
406
+ /**
407
+ * Performs the attach to target operation for the content capability.
408
+ * Calls `POST /api/v1/contents/{host}/{target_id}` through the shared IDP-aware Faiber client.
409
+ * @param host Backend path identifier `host`.
410
+ * @param targetId Backend path identifier `target_id`.
411
+ * @param data Typed JSON request body.
412
+ * @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
413
+ * @returns The complete Axios response, including the typed service envelope, status, and headers.
414
+ * @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
415
+ */
89
416
  contentAttachToTargetPost(host: Identifier, targetId: Identifier, data: T.ContentAttachToTargetPostInput, options?: RequestOptions<T.ContentAttachToTargetPostInput>): Promise<import("axios").AxiosResponse<T.ContentAttachToTargetPostResponse, T.ContentAttachToTargetPostInput, {}>>;
90
- /** DELETE /api/v1/contents/{id}; permission: public/session-derived. */
91
- contentDeleteContentDelete(id: Identifier, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.ContentDeleteContentDeleteResponse, unknown, {}>>;
92
- /** GET /api/v1/contents/{id}; permission: public/session-derived. */
417
+ /**
418
+ * Performs the delete content operation for the content capability.
419
+ * Calls `DELETE /api/v1/contents/{id}` through the shared IDP-aware Faiber client.
420
+ * @param id Backend path identifier `id`.
421
+ * @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
422
+ * @returns The complete Axios response, including the typed service envelope, status, and headers.
423
+ * @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
424
+ */
425
+ contentDeleteContentDelete(id: Identifier, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.ContentDeleteContentDeleteResponseData, unknown, {}>>;
426
+ /**
427
+ * Performs the show content operation for the content capability.
428
+ * Calls `GET /api/v1/contents/{id}` through the shared IDP-aware Faiber client.
429
+ * @param id Backend path identifier `id`.
430
+ * @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
431
+ * @returns The complete Axios response, including the typed service envelope, status, and headers.
432
+ * @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
433
+ */
93
434
  contentShowContentGet(id: Identifier, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.ContentShowContentGetResponse, unknown, {}>>;
94
- /** PATCH /api/v1/contents/{id}; permission: public/session-derived. */
435
+ /**
436
+ * Performs the update content operation for the content capability.
437
+ * Calls `PATCH /api/v1/contents/{id}` through the shared IDP-aware Faiber client.
438
+ * @param id Backend path identifier `id`.
439
+ * @param data Typed JSON request body.
440
+ * @param params Typed query parameters; omitted members retain backend defaults.
441
+ * @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
442
+ * @returns The complete Axios response, including the typed service envelope, status, and headers.
443
+ * @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
444
+ */
95
445
  contentUpdateContentPatch(id: Identifier, data: T.ContentUpdateContentPatchInput, params?: T.ContentUpdateContentPatchQuery, options?: RequestOptions<T.ContentUpdateContentPatchInput>): Promise<import("axios").AxiosResponse<T.ContentUpdateContentPatchResponse, T.ContentUpdateContentPatchInput, {}>>;
96
- /** PUT /api/v1/contents/{id}; permission: public/session-derived. */
446
+ /**
447
+ * Performs the update content operation for the content capability.
448
+ * Calls `PUT /api/v1/contents/{id}` through the shared IDP-aware Faiber client.
449
+ * @param id Backend path identifier `id`.
450
+ * @param data Typed JSON request body.
451
+ * @param params Typed query parameters; omitted members retain backend defaults.
452
+ * @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
453
+ * @returns The complete Axios response, including the typed service envelope, status, and headers.
454
+ * @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
455
+ */
97
456
  contentUpdateContentPut(id: Identifier, data: T.ContentUpdateContentPutInput, params?: T.ContentUpdateContentPutQuery, options?: RequestOptions<T.ContentUpdateContentPutInput>): Promise<import("axios").AxiosResponse<T.ContentUpdateContentPutResponse, T.ContentUpdateContentPutInput, {}>>;
98
- /** GET /api/v1/integration/flow; permission: public/session-derived. */
457
+ /**
458
+ * Performs the flow integration show operation for the integration capability.
459
+ * Calls `GET /api/v1/integration/flow` through the shared IDP-aware Faiber client.
460
+ * @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
461
+ * @returns The complete Axios response, including the typed service envelope, status, and headers.
462
+ * @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
463
+ */
99
464
  integrationFlowIntegrationShowGet(options?: RequestOptions): Promise<import("axios").AxiosResponse<T.IntegrationFlowIntegrationShowGetResponse, unknown, {}>>;
100
- /** GET /api/v1/inventory/inventories; permission: public/session-derived. */
465
+ /**
466
+ * Performs the list inventories operation for the inventory capability.
467
+ * Calls `GET /api/v1/inventory/inventories` through the shared IDP-aware Faiber client.
468
+ * @param params Typed query parameters; omitted members retain backend defaults.
469
+ * @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
470
+ * @returns The complete Axios response, including the typed service envelope, status, and headers.
471
+ * @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
472
+ */
101
473
  inventoryListInventoriesGet(params?: T.InventoryListInventoriesGetQuery, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.InventoryListInventoriesGetResponse, unknown, {}>>;
102
- /** POST /api/v1/inventory/inventories; permission: public/session-derived. */
474
+ /**
475
+ * Performs the create inventory operation for the inventory capability.
476
+ * Calls `POST /api/v1/inventory/inventories` through the shared IDP-aware Faiber client.
477
+ * @param data Typed JSON request body.
478
+ * @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
479
+ * @returns The complete Axios response, including the typed service envelope, status, and headers.
480
+ * @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
481
+ */
103
482
  inventoryCreateInventoryPost(data: T.InventoryCreateInventoryPostInput, options?: RequestOptions<T.InventoryCreateInventoryPostInput>): Promise<import("axios").AxiosResponse<T.InventoryCreateInventoryPostResponse, T.InventoryCreateInventoryPostInput, {}>>;
104
- /** DELETE /api/v1/inventory/inventories/{id}; permission: public/session-derived. */
105
- inventoryDeleteInventoryDelete(id: Identifier, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.InventoryDeleteInventoryDeleteResponse, unknown, {}>>;
106
- /** GET /api/v1/inventory/inventories/{id}; permission: public/session-derived. */
483
+ /**
484
+ * Performs the delete inventory operation for the inventory capability.
485
+ * Calls `DELETE /api/v1/inventory/inventories/{id}` through the shared IDP-aware Faiber client.
486
+ * @param id Backend path identifier `id`.
487
+ * @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
488
+ * @returns The complete Axios response, including the typed service envelope, status, and headers.
489
+ * @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
490
+ */
491
+ inventoryDeleteInventoryDelete(id: Identifier, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.InventoryDeleteInventoryDeleteResponseData, unknown, {}>>;
492
+ /**
493
+ * Performs the show inventory operation for the inventory capability.
494
+ * Calls `GET /api/v1/inventory/inventories/{id}` through the shared IDP-aware Faiber client.
495
+ * @param id Backend path identifier `id`.
496
+ * @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
497
+ * @returns The complete Axios response, including the typed service envelope, status, and headers.
498
+ * @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
499
+ */
107
500
  inventoryShowInventoryGet(id: Identifier, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.InventoryShowInventoryGetResponse, unknown, {}>>;
108
- /** PATCH /api/v1/inventory/inventories/{id}; permission: public/session-derived. */
501
+ /**
502
+ * Performs the update inventory operation for the inventory capability.
503
+ * Calls `PATCH /api/v1/inventory/inventories/{id}` through the shared IDP-aware Faiber client.
504
+ * @param id Backend path identifier `id`.
505
+ * @param data Typed JSON request body.
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
+ */
109
510
  inventoryUpdateInventoryPatch(id: Identifier, data: T.InventoryUpdateInventoryPatchInput, options?: RequestOptions<T.InventoryUpdateInventoryPatchInput>): Promise<import("axios").AxiosResponse<T.InventoryUpdateInventoryPatchResponse, T.InventoryUpdateInventoryPatchInput, {}>>;
110
- /** PUT /api/v1/inventory/inventories/{id}; permission: public/session-derived. */
511
+ /**
512
+ * Performs the update inventory operation for the inventory capability.
513
+ * Calls `PUT /api/v1/inventory/inventories/{id}` through the shared IDP-aware Faiber client.
514
+ * @param id Backend path identifier `id`.
515
+ * @param data Typed JSON request body.
516
+ * @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
517
+ * @returns The complete Axios response, including the typed service envelope, status, and headers.
518
+ * @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
519
+ */
111
520
  inventoryUpdateInventoryPut(id: Identifier, data: T.InventoryUpdateInventoryPutInput, options?: RequestOptions<T.InventoryUpdateInventoryPutInput>): Promise<import("axios").AxiosResponse<T.InventoryUpdateInventoryPutResponse, T.InventoryUpdateInventoryPutInput, {}>>;
112
- /** GET /api/v1/inventory/stock-movements; permission: public/session-derived. */
521
+ /**
522
+ * Performs the list stock movements operation for the stock movement capability.
523
+ * Calls `GET /api/v1/inventory/stock-movements` through the shared IDP-aware Faiber client.
524
+ * @param params Typed query parameters; omitted members retain backend defaults.
525
+ * @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
526
+ * @returns The complete Axios response, including the typed service envelope, status, and headers.
527
+ * @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
528
+ */
113
529
  stockMovementListStockMovementsGet(params?: T.StockMovementListStockMovementsGetQuery, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.StockMovementListStockMovementsGetResponse, unknown, {}>>;
114
- /** POST /api/v1/inventory/stock-movements; permission: public/session-derived. */
530
+ /**
531
+ * Performs the create stock movement operation for the stock movement capability.
532
+ * Calls `POST /api/v1/inventory/stock-movements` through the shared IDP-aware Faiber client.
533
+ * @param data Typed JSON request body.
534
+ * @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
535
+ * @returns The complete Axios response, including the typed service envelope, status, and headers.
536
+ * @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
537
+ */
115
538
  stockMovementCreateStockMovementPost(data: T.StockMovementCreateStockMovementPostInput, options?: RequestOptions<T.StockMovementCreateStockMovementPostInput>): Promise<import("axios").AxiosResponse<T.StockMovementCreateStockMovementPostResponse, T.StockMovementCreateStockMovementPostInput, {}>>;
116
- /** GET /api/v1/inventory/warehouses; permission: public/session-derived. */
539
+ /**
540
+ * Performs the list warehouses operation for the inventory capability.
541
+ * Calls `GET /api/v1/inventory/warehouses` through the shared IDP-aware Faiber client.
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
+ */
117
547
  inventoryListWarehousesGet(params?: T.InventoryListWarehousesGetQuery, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.InventoryListWarehousesGetResponse, unknown, {}>>;
118
- /** POST /api/v1/inventory/warehouses; permission: public/session-derived. */
548
+ /**
549
+ * Performs the create warehouse operation for the inventory capability.
550
+ * Calls `POST /api/v1/inventory/warehouses` through the shared IDP-aware Faiber client.
551
+ * @param data Typed JSON request body.
552
+ * @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
553
+ * @returns The complete Axios response, including the typed service envelope, status, and headers.
554
+ * @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
555
+ */
119
556
  inventoryCreateWarehousePost(data: T.InventoryCreateWarehousePostInput, options?: RequestOptions<T.InventoryCreateWarehousePostInput>): Promise<import("axios").AxiosResponse<T.InventoryCreateWarehousePostResponse, T.InventoryCreateWarehousePostInput, {}>>;
120
- /** DELETE /api/v1/inventory/warehouses/{id}; permission: public/session-derived. */
121
- inventoryDeleteWarehouseDelete(id: Identifier, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.InventoryDeleteWarehouseDeleteResponse, unknown, {}>>;
122
- /** GET /api/v1/inventory/warehouses/{id}; permission: public/session-derived. */
557
+ /**
558
+ * Performs the delete warehouse operation for the inventory capability.
559
+ * Calls `DELETE /api/v1/inventory/warehouses/{id}` through the shared IDP-aware Faiber client.
560
+ * @param id Backend path identifier `id`.
561
+ * @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
562
+ * @returns The complete Axios response, including the typed service envelope, status, and headers.
563
+ * @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
564
+ */
565
+ inventoryDeleteWarehouseDelete(id: Identifier, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.InventoryDeleteWarehouseDeleteResponseData, unknown, {}>>;
566
+ /**
567
+ * Performs the show warehouse operation for the inventory capability.
568
+ * Calls `GET /api/v1/inventory/warehouses/{id}` through the shared IDP-aware Faiber client.
569
+ * @param id Backend path identifier `id`.
570
+ * @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
571
+ * @returns The complete Axios response, including the typed service envelope, status, and headers.
572
+ * @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
573
+ */
123
574
  inventoryShowWarehouseGet(id: Identifier, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.InventoryShowWarehouseGetResponse, unknown, {}>>;
124
- /** PATCH /api/v1/inventory/warehouses/{id}; permission: public/session-derived. */
575
+ /**
576
+ * Performs the update warehouse operation for the inventory capability.
577
+ * Calls `PATCH /api/v1/inventory/warehouses/{id}` through the shared IDP-aware Faiber client.
578
+ * @param id Backend path identifier `id`.
579
+ * @param data Typed JSON request body.
580
+ * @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
581
+ * @returns The complete Axios response, including the typed service envelope, status, and headers.
582
+ * @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
583
+ */
125
584
  inventoryUpdateWarehousePatch(id: Identifier, data: T.InventoryUpdateWarehousePatchInput, options?: RequestOptions<T.InventoryUpdateWarehousePatchInput>): Promise<import("axios").AxiosResponse<T.InventoryUpdateWarehousePatchResponse, T.InventoryUpdateWarehousePatchInput, {}>>;
126
- /** PUT /api/v1/inventory/warehouses/{id}; permission: public/session-derived. */
585
+ /**
586
+ * Performs the update warehouse operation for the inventory capability.
587
+ * Calls `PUT /api/v1/inventory/warehouses/{id}` through the shared IDP-aware Faiber client.
588
+ * @param id Backend path identifier `id`.
589
+ * @param data Typed JSON request body.
590
+ * @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
591
+ * @returns The complete Axios response, including the typed service envelope, status, and headers.
592
+ * @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
593
+ */
127
594
  inventoryUpdateWarehousePut(id: Identifier, data: T.InventoryUpdateWarehousePutInput, options?: RequestOptions<T.InventoryUpdateWarehousePutInput>): Promise<import("axios").AxiosResponse<T.InventoryUpdateWarehousePutResponse, T.InventoryUpdateWarehousePutInput, {}>>;
128
- /** GET /api/v1/pricing; permission: public/session-derived. */
595
+ /**
596
+ * Performs the list operation for the podcast capability.
597
+ * Calls `GET /api/v1/podcasts` through the shared IDP-aware Faiber client.
598
+ * @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
599
+ * @returns The complete Axios response, including the typed service envelope, status, and headers.
600
+ * @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
601
+ */
602
+ podcastListGet(options?: RequestOptions): Promise<import("axios").AxiosResponse<T.PodcastListGetResponse, unknown, {}>>;
603
+ /**
604
+ * Performs the create operation for the podcast capability.
605
+ * Calls `POST /api/v1/podcasts` through the shared IDP-aware Faiber client.
606
+ * @param data Typed JSON request body.
607
+ * @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
608
+ * @returns The complete Axios response, including the typed service envelope, status, and headers.
609
+ * @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
610
+ */
611
+ podcastCreatePost(data: T.PodcastCreatePostInput, options?: RequestOptions<T.PodcastCreatePostInput>): Promise<import("axios").AxiosResponse<T.PodcastCreatePostResponse, T.PodcastCreatePostInput, {}>>;
612
+ /**
613
+ * Performs the remove operation for the podcast capability.
614
+ * Calls `DELETE /api/v1/podcasts/{id}` through the shared IDP-aware Faiber client.
615
+ * @param id Backend path identifier `id`.
616
+ * @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
617
+ * @returns The complete Axios response, including the typed service envelope, status, and headers.
618
+ * @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
619
+ */
620
+ podcastRemoveDelete(id: Identifier, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.PodcastRemoveDeleteResponseData, unknown, {}>>;
621
+ /**
622
+ * Performs the show operation for the podcast capability.
623
+ * Calls `GET /api/v1/podcasts/{id}` through the shared IDP-aware Faiber client.
624
+ * @param id Backend path identifier `id`.
625
+ * @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
626
+ * @returns The complete Axios response, including the typed service envelope, status, and headers.
627
+ * @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
628
+ */
629
+ podcastShowGet(id: Identifier, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.PodcastShowGetResponse, unknown, {}>>;
630
+ /**
631
+ * Performs the update operation for the podcast capability.
632
+ * Calls `PATCH /api/v1/podcasts/{id}` through the shared IDP-aware Faiber client.
633
+ * @param id Backend path identifier `id`.
634
+ * @param data Typed JSON request body.
635
+ * @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
636
+ * @returns The complete Axios response, including the typed service envelope, status, and headers.
637
+ * @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
638
+ */
639
+ podcastUpdatePatch(id: Identifier, data: T.PodcastUpdatePatchInput, options?: RequestOptions<T.PodcastUpdatePatchInput>): Promise<import("axios").AxiosResponse<T.PodcastUpdatePatchResponse, T.PodcastUpdatePatchInput, {}>>;
640
+ /**
641
+ * Performs the create episode operation for the podcast capability.
642
+ * Calls `POST /api/v1/podcasts/{id}/episodes` through the shared IDP-aware Faiber client.
643
+ * @param id Backend path identifier `id`.
644
+ * @param data Typed JSON request body.
645
+ * @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
646
+ * @returns The complete Axios response, including the typed service envelope, status, and headers.
647
+ * @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
648
+ */
649
+ podcastCreateEpisodePost(id: Identifier, data: T.PodcastCreateEpisodePostInput, options?: RequestOptions<T.PodcastCreateEpisodePostInput>): Promise<import("axios").AxiosResponse<T.PodcastCreateEpisodePostResponse, T.PodcastCreateEpisodePostInput, {}>>;
650
+ /**
651
+ * Performs the remove episode operation for the podcast capability.
652
+ * Calls `DELETE /api/v1/podcasts/{podcast_id}/episodes/{id}` through the shared IDP-aware Faiber client.
653
+ * @param podcastId Backend path identifier `podcast_id`.
654
+ * @param id Backend path identifier `id`.
655
+ * @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
656
+ * @returns The complete Axios response, including the typed service envelope, status, and headers.
657
+ * @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
658
+ */
659
+ podcastRemoveEpisodeDelete(podcastId: Identifier, id: Identifier, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.PodcastRemoveEpisodeDeleteResponseData, unknown, {}>>;
660
+ /**
661
+ * Performs the update episode operation for the podcast capability.
662
+ * Calls `PATCH /api/v1/podcasts/{podcast_id}/episodes/{id}` through the shared IDP-aware Faiber client.
663
+ * @param podcastId Backend path identifier `podcast_id`.
664
+ * @param id Backend path identifier `id`.
665
+ * @param data Typed JSON request body.
666
+ * @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
667
+ * @returns The complete Axios response, including the typed service envelope, status, and headers.
668
+ * @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
669
+ */
670
+ podcastUpdateEpisodePatch(podcastId: Identifier, id: Identifier, data: T.PodcastUpdateEpisodePatchInput, options?: RequestOptions<T.PodcastUpdateEpisodePatchInput>): Promise<import("axios").AxiosResponse<T.PodcastUpdateEpisodePatchResponse, T.PodcastUpdateEpisodePatchInput, {}>>;
671
+ /**
672
+ * Performs the list pricing operation for the service pricing capability.
673
+ * Calls `GET /api/v1/pricing` through the shared IDP-aware Faiber client.
674
+ * @param params Typed query parameters; omitted members retain backend defaults.
675
+ * @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
676
+ * @returns The complete Axios response, including the typed service envelope, status, and headers.
677
+ * @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
678
+ */
129
679
  servicePricingListPricingGet(params?: T.ServicePricingListPricingGetQuery, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.ServicePricingListPricingGetResponse, unknown, {}>>;
130
- /** POST /api/v1/pricing; permission: public/session-derived. */
680
+ /**
681
+ * Performs the create pricing operation for the service pricing capability.
682
+ * Calls `POST /api/v1/pricing` through the shared IDP-aware Faiber client.
683
+ * @param data Typed JSON request body.
684
+ * @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
685
+ * @returns The complete Axios response, including the typed service envelope, status, and headers.
686
+ * @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
687
+ */
131
688
  servicePricingCreatePricingPost(data: T.ServicePricingCreatePricingPostInput, options?: RequestOptions<T.ServicePricingCreatePricingPostInput>): Promise<import("axios").AxiosResponse<T.ServicePricingCreatePricingPostResponse, T.ServicePricingCreatePricingPostInput, {}>>;
132
- /** DELETE /api/v1/pricing/{id}; permission: public/session-derived. */
133
- servicePricingDeletePricingDelete(id: Identifier, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.ServicePricingDeletePricingDeleteResponse, unknown, {}>>;
134
- /** GET /api/v1/pricing/{id}; permission: public/session-derived. */
689
+ /**
690
+ * Performs the delete pricing operation for the service pricing capability.
691
+ * Calls `DELETE /api/v1/pricing/{id}` through the shared IDP-aware Faiber client.
692
+ * @param id Backend path identifier `id`.
693
+ * @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
694
+ * @returns The complete Axios response, including the typed service envelope, status, and headers.
695
+ * @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
696
+ */
697
+ servicePricingDeletePricingDelete(id: Identifier, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.ServicePricingDeletePricingDeleteResponseData, unknown, {}>>;
698
+ /**
699
+ * Performs the show pricing operation for the service pricing capability.
700
+ * Calls `GET /api/v1/pricing/{id}` through the shared IDP-aware Faiber client.
701
+ * @param id Backend path identifier `id`.
702
+ * @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
703
+ * @returns The complete Axios response, including the typed service envelope, status, and headers.
704
+ * @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
705
+ */
135
706
  servicePricingShowPricingGet(id: Identifier, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.ServicePricingShowPricingGetResponse, unknown, {}>>;
136
- /** PATCH /api/v1/pricing/{id}; permission: public/session-derived. */
707
+ /**
708
+ * Performs the update pricing operation for the service pricing capability.
709
+ * Calls `PATCH /api/v1/pricing/{id}` through the shared IDP-aware Faiber client.
710
+ * @param id Backend path identifier `id`.
711
+ * @param data Typed JSON request body.
712
+ * @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
713
+ * @returns The complete Axios response, including the typed service envelope, status, and headers.
714
+ * @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
715
+ */
137
716
  servicePricingUpdatePricingPatch(id: Identifier, data: T.ServicePricingUpdatePricingPatchInput, options?: RequestOptions<T.ServicePricingUpdatePricingPatchInput>): Promise<import("axios").AxiosResponse<T.ServicePricingUpdatePricingPatchResponse, T.ServicePricingUpdatePricingPatchInput, {}>>;
138
- /** PUT /api/v1/pricing/{id}; permission: public/session-derived. */
717
+ /**
718
+ * Performs the update pricing operation for the service pricing capability.
719
+ * Calls `PUT /api/v1/pricing/{id}` through the shared IDP-aware Faiber client.
720
+ * @param id Backend path identifier `id`.
721
+ * @param data Typed JSON request body.
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
+ */
139
726
  servicePricingUpdatePricingPut(id: Identifier, data: T.ServicePricingUpdatePricingPutInput, options?: RequestOptions<T.ServicePricingUpdatePricingPutInput>): Promise<import("axios").AxiosResponse<T.ServicePricingUpdatePricingPutResponse, T.ServicePricingUpdatePricingPutInput, {}>>;
140
- /** DELETE /api/v1/reactions/{host}/{target_id}; permission: public/session-derived. */
141
- reactionDeleteOnTargetDelete(host: Identifier, targetId: Identifier, params?: T.ReactionDeleteOnTargetDeleteQuery, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.ReactionDeleteOnTargetDeleteResponse, unknown, {}>>;
142
- /** GET /api/v1/reactions/{host}/{target_id}; permission: public/session-derived. */
727
+ /**
728
+ * Performs the delete on target operation for the reaction capability.
729
+ * Calls `DELETE /api/v1/reactions/{host}/{target_id}` through the shared IDP-aware Faiber client.
730
+ * @param host Backend path identifier `host`.
731
+ * @param targetId Backend path identifier `target_id`.
732
+ * @param params Typed query parameters; omitted members retain backend defaults.
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
+ */
737
+ reactionDeleteOnTargetDelete(host: Identifier, targetId: Identifier, params?: T.ReactionDeleteOnTargetDeleteQuery, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.ReactionDeleteOnTargetDeleteResponseData, unknown, {}>>;
738
+ /**
739
+ * Performs the list on target operation for the reaction capability.
740
+ * Calls `GET /api/v1/reactions/{host}/{target_id}` through the shared IDP-aware Faiber client.
741
+ * @param host Backend path identifier `host`.
742
+ * @param targetId Backend path identifier `target_id`.
743
+ * @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
744
+ * @returns The complete Axios response, including the typed service envelope, status, and headers.
745
+ * @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
746
+ */
143
747
  reactionListOnTargetGet(host: Identifier, targetId: Identifier, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.ReactionListOnTargetGetResponse, unknown, {}>>;
144
- /** POST /api/v1/reactions/{host}/{target_id}; permission: public/session-derived. */
748
+ /**
749
+ * Performs the create on target operation for the reaction capability.
750
+ * Calls `POST /api/v1/reactions/{host}/{target_id}` through the shared IDP-aware Faiber client.
751
+ * @param host Backend path identifier `host`.
752
+ * @param targetId Backend path identifier `target_id`.
753
+ * @param data Typed JSON request body.
754
+ * @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
755
+ * @returns The complete Axios response, including the typed service envelope, status, and headers.
756
+ * @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
757
+ */
145
758
  reactionCreateOnTargetPost(host: Identifier, targetId: Identifier, data: T.ReactionCreateOnTargetPostInput, options?: RequestOptions<T.ReactionCreateOnTargetPostInput>): Promise<import("axios").AxiosResponse<T.ReactionCreateOnTargetPostResponse, T.ReactionCreateOnTargetPostInput, {}>>;
146
- /** GET /api/v1/requests; permission: public/session-derived. */
759
+ /**
760
+ * Performs the list requests operation for the request capability.
761
+ * Calls `GET /api/v1/requests` through the shared IDP-aware Faiber client.
762
+ * @param params Typed query parameters; omitted members retain backend defaults.
763
+ * @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
764
+ * @returns The complete Axios response, including the typed service envelope, status, and headers.
765
+ * @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
766
+ */
147
767
  requestListRequestsGet(params?: T.RequestListRequestsGetQuery, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.RequestListRequestsGetResponse, unknown, {}>>;
148
- /** POST /api/v1/requests; permission: public/session-derived. */
768
+ /**
769
+ * Performs the create request operation for the request capability.
770
+ * Calls `POST /api/v1/requests` through the shared IDP-aware Faiber client.
771
+ * @param data Typed JSON request body.
772
+ * @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
773
+ * @returns The complete Axios response, including the typed service envelope, status, and headers.
774
+ * @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
775
+ */
149
776
  requestCreateRequestPost(data: T.RequestCreateRequestPostInput, options?: RequestOptions<T.RequestCreateRequestPostInput>): Promise<import("axios").AxiosResponse<T.RequestCreateRequestPostResponse, T.RequestCreateRequestPostInput, {}>>;
150
- /** DELETE /api/v1/requests/{host}/{target_id}; permission: public/session-derived. */
151
- requestDetachFromTargetDelete(host: Identifier, targetId: Identifier, params?: T.RequestDetachFromTargetDeleteQuery, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.RequestDetachFromTargetDeleteResponse, unknown, {}>>;
152
- /** GET /api/v1/requests/{host}/{target_id}; permission: public/session-derived. */
777
+ /**
778
+ * Performs the detach from target operation for the request capability.
779
+ * Calls `DELETE /api/v1/requests/{host}/{target_id}` through the shared IDP-aware Faiber client.
780
+ * @param host Backend path identifier `host`.
781
+ * @param targetId Backend path identifier `target_id`.
782
+ * @param params Typed query parameters; omitted members retain backend defaults.
783
+ * @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
784
+ * @returns The complete Axios response, including the typed service envelope, status, and headers.
785
+ * @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
786
+ */
787
+ requestDetachFromTargetDelete(host: Identifier, targetId: Identifier, params?: T.RequestDetachFromTargetDeleteQuery, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.RequestDetachFromTargetDeleteResponseData, unknown, {}>>;
788
+ /**
789
+ * Performs the list on target operation for the request capability.
790
+ * Calls `GET /api/v1/requests/{host}/{target_id}` through the shared IDP-aware Faiber client.
791
+ * @param host Backend path identifier `host`.
792
+ * @param targetId Backend path identifier `target_id`.
793
+ * @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
794
+ * @returns The complete Axios response, including the typed service envelope, status, and headers.
795
+ * @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
796
+ */
153
797
  requestListOnTargetGet(host: Identifier, targetId: Identifier, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.RequestListOnTargetGetResponse, unknown, {}>>;
154
- /** POST /api/v1/requests/{host}/{target_id}; permission: public/session-derived. */
798
+ /**
799
+ * Performs the attach to target operation for the request capability.
800
+ * Calls `POST /api/v1/requests/{host}/{target_id}` through the shared IDP-aware Faiber client.
801
+ * @param host Backend path identifier `host`.
802
+ * @param targetId Backend path identifier `target_id`.
803
+ * @param data Typed JSON request body.
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
+ */
155
808
  requestAttachToTargetPost(host: Identifier, targetId: Identifier, data: T.RequestAttachToTargetPostInput, options?: RequestOptions<T.RequestAttachToTargetPostInput>): Promise<import("axios").AxiosResponse<T.RequestAttachToTargetPostResponse, T.RequestAttachToTargetPostInput, {}>>;
156
- /** DELETE /api/v1/requests/{id}; permission: public/session-derived. */
157
- requestDeleteRequestDelete(id: Identifier, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.RequestDeleteRequestDeleteResponse, unknown, {}>>;
158
- /** GET /api/v1/requests/{id}; permission: public/session-derived. */
809
+ /**
810
+ * Performs the delete request operation for the request capability.
811
+ * Calls `DELETE /api/v1/requests/{id}` through the shared IDP-aware Faiber client.
812
+ * @param id Backend path identifier `id`.
813
+ * @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
814
+ * @returns The complete Axios response, including the typed service envelope, status, and headers.
815
+ * @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
816
+ */
817
+ requestDeleteRequestDelete(id: Identifier, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.RequestDeleteRequestDeleteResponseData, unknown, {}>>;
818
+ /**
819
+ * Performs the show request operation for the request capability.
820
+ * Calls `GET /api/v1/requests/{id}` through the shared IDP-aware Faiber client.
821
+ * @param id Backend path identifier `id`.
822
+ * @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
823
+ * @returns The complete Axios response, including the typed service envelope, status, and headers.
824
+ * @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
825
+ */
159
826
  requestShowRequestGet(id: Identifier, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.RequestShowRequestGetResponse, unknown, {}>>;
160
- /** PATCH /api/v1/requests/{id}; permission: public/session-derived. */
827
+ /**
828
+ * Performs the update request operation for the request capability.
829
+ * Calls `PATCH /api/v1/requests/{id}` through the shared IDP-aware Faiber client.
830
+ * @param id Backend path identifier `id`.
831
+ * @param data Typed JSON request body.
832
+ * @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
833
+ * @returns The complete Axios response, including the typed service envelope, status, and headers.
834
+ * @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
835
+ */
161
836
  requestUpdateRequestPatch(id: Identifier, data: T.RequestUpdateRequestPatchInput, options?: RequestOptions<T.RequestUpdateRequestPatchInput>): Promise<import("axios").AxiosResponse<T.RequestUpdateRequestPatchResponse, T.RequestUpdateRequestPatchInput, {}>>;
162
- /** PUT /api/v1/requests/{id}; permission: public/session-derived. */
837
+ /**
838
+ * Performs the update request operation for the request capability.
839
+ * Calls `PUT /api/v1/requests/{id}` through the shared IDP-aware Faiber client.
840
+ * @param id Backend path identifier `id`.
841
+ * @param data Typed JSON request body.
842
+ * @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
843
+ * @returns The complete Axios response, including the typed service envelope, status, and headers.
844
+ * @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
845
+ */
163
846
  requestUpdateRequestPut(id: Identifier, data: T.RequestUpdateRequestPutInput, options?: RequestOptions<T.RequestUpdateRequestPutInput>): Promise<import("axios").AxiosResponse<T.RequestUpdateRequestPutResponse, T.RequestUpdateRequestPutInput, {}>>;
164
- /** GET /api/v1/requests/{request_id}/logs; permission: public/session-derived. */
847
+ /**
848
+ * Performs the list logs for request operation for the request capability.
849
+ * Calls `GET /api/v1/requests/{request_id}/logs` through the shared IDP-aware Faiber client.
850
+ * @param requestId Backend path identifier `request_id`.
851
+ * @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
852
+ * @returns The complete Axios response, including the typed service envelope, status, and headers.
853
+ * @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
854
+ */
165
855
  requestListLogsForRequestGet(requestId: Identifier, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.RequestListLogsForRequestGetResponse, unknown, {}>>;
166
- /** POST /api/v1/requests/{request_id}/logs; permission: public/session-derived. */
856
+ /**
857
+ * Performs the submit operation for the request capability.
858
+ * Calls `POST /api/v1/requests/{request_id}/logs` through the shared IDP-aware Faiber client.
859
+ * @param requestId Backend path identifier `request_id`.
860
+ * @param data Typed JSON request body.
861
+ * @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
862
+ * @returns The complete Axios response, including the typed service envelope, status, and headers.
863
+ * @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
864
+ */
167
865
  requestSubmitPost(requestId: Identifier, data: T.RequestSubmitPostInput, options?: RequestOptions<T.RequestSubmitPostInput>): Promise<import("axios").AxiosResponse<T.RequestSubmitPostResponse, T.RequestSubmitPostInput, {}>>;
168
- /** GET /api/v1/requests/category/{category_id}/logs; permission: public/session-derived. */
866
+ /**
867
+ * Performs the list logs for category operation for the request capability.
868
+ * Calls `GET /api/v1/requests/category/{category_id}/logs` through the shared IDP-aware Faiber client.
869
+ * @param categoryId Backend path identifier `category_id`.
870
+ * @param params Typed query parameters; omitted members retain backend defaults.
871
+ * @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
872
+ * @returns The complete Axios response, including the typed service envelope, status, and headers.
873
+ * @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
874
+ */
169
875
  requestListLogsForCategoryGet(categoryId: Identifier, params?: T.RequestListLogsForCategoryGetQuery, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.RequestListLogsForCategoryGetResponse, unknown, {}>>;
170
- /** GET /api/v1/samples; permission: public/session-derived. */
876
+ /**
877
+ * Performs the list samples operation for the user sample capability.
878
+ * Calls `GET /api/v1/samples` through the shared IDP-aware Faiber client.
879
+ * @param params Typed query parameters; omitted members retain backend defaults.
880
+ * @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
881
+ * @returns The complete Axios response, including the typed service envelope, status, and headers.
882
+ * @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
883
+ */
171
884
  userSampleListSamplesGet(params?: T.UserSampleListSamplesGetQuery, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.UserSampleListSamplesGetResponse, unknown, {}>>;
172
- /** POST /api/v1/samples; permission: public/session-derived. */
885
+ /**
886
+ * Performs the create sample operation for the user sample capability.
887
+ * Calls `POST /api/v1/samples` through the shared IDP-aware Faiber client.
888
+ * @param data Typed JSON request body.
889
+ * @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
890
+ * @returns The complete Axios response, including the typed service envelope, status, and headers.
891
+ * @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
892
+ */
173
893
  userSampleCreateSamplePost(data: T.UserSampleCreateSamplePostInput, options?: RequestOptions<T.UserSampleCreateSamplePostInput>): Promise<import("axios").AxiosResponse<T.UserSampleCreateSamplePostResponse, T.UserSampleCreateSamplePostInput, {}>>;
174
- /** DELETE /api/v1/samples/{id}; permission: public/session-derived. */
175
- userSampleDeleteSampleDelete(id: Identifier, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.UserSampleDeleteSampleDeleteResponse, unknown, {}>>;
176
- /** GET /api/v1/samples/{id}; permission: public/session-derived. */
894
+ /**
895
+ * Performs the delete sample operation for the user sample capability.
896
+ * Calls `DELETE /api/v1/samples/{id}` through the shared IDP-aware Faiber client.
897
+ * @param id Backend path identifier `id`.
898
+ * @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
899
+ * @returns The complete Axios response, including the typed service envelope, status, and headers.
900
+ * @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
901
+ */
902
+ userSampleDeleteSampleDelete(id: Identifier, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.UserSampleDeleteSampleDeleteResponseData, unknown, {}>>;
903
+ /**
904
+ * Performs the show sample operation for the user sample capability.
905
+ * Calls `GET /api/v1/samples/{id}` through the shared IDP-aware Faiber client.
906
+ * @param id Backend path identifier `id`.
907
+ * @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
908
+ * @returns The complete Axios response, including the typed service envelope, status, and headers.
909
+ * @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
910
+ */
177
911
  userSampleShowSampleGet(id: Identifier, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.UserSampleShowSampleGetResponse, unknown, {}>>;
178
- /** PATCH /api/v1/samples/{id}; permission: public/session-derived. */
912
+ /**
913
+ * Performs the update sample operation for the user sample capability.
914
+ * Calls `PATCH /api/v1/samples/{id}` through the shared IDP-aware Faiber client.
915
+ * @param id Backend path identifier `id`.
916
+ * @param data Typed JSON request body.
917
+ * @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
918
+ * @returns The complete Axios response, including the typed service envelope, status, and headers.
919
+ * @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
920
+ */
179
921
  userSampleUpdateSamplePatch(id: Identifier, data: T.UserSampleUpdateSamplePatchInput, options?: RequestOptions<T.UserSampleUpdateSamplePatchInput>): Promise<import("axios").AxiosResponse<T.UserSampleUpdateSamplePatchResponse, T.UserSampleUpdateSamplePatchInput, {}>>;
180
- /** PUT /api/v1/samples/{id}; permission: public/session-derived. */
922
+ /**
923
+ * Performs the update sample operation for the user sample capability.
924
+ * Calls `PUT /api/v1/samples/{id}` through the shared IDP-aware Faiber client.
925
+ * @param id Backend path identifier `id`.
926
+ * @param data Typed JSON request body.
927
+ * @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
928
+ * @returns The complete Axios response, including the typed service envelope, status, and headers.
929
+ * @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
930
+ */
181
931
  userSampleUpdateSamplePut(id: Identifier, data: T.UserSampleUpdateSamplePutInput, options?: RequestOptions<T.UserSampleUpdateSamplePutInput>): Promise<import("axios").AxiosResponse<T.UserSampleUpdateSamplePutResponse, T.UserSampleUpdateSamplePutInput, {}>>;
182
- /** GET /api/v1/samples/{sample_id}/variables; permission: public/session-derived. */
932
+ /**
933
+ * Performs the list sample variables operation for the user sample capability.
934
+ * Calls `GET /api/v1/samples/{sample_id}/variables` through the shared IDP-aware Faiber client.
935
+ * @param sampleId Backend path identifier `sample_id`.
936
+ * @param params Typed query parameters; omitted members retain backend defaults.
937
+ * @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
938
+ * @returns The complete Axios response, including the typed service envelope, status, and headers.
939
+ * @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
940
+ */
183
941
  userSampleListSampleVariablesGet(sampleId: Identifier, params?: T.UserSampleListSampleVariablesGetQuery, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.UserSampleListSampleVariablesGetResponse, unknown, {}>>;
184
- /** POST /api/v1/samples/{sample_id}/variables; permission: public/session-derived. */
942
+ /**
943
+ * Performs the create sample variable operation for the user sample capability.
944
+ * Calls `POST /api/v1/samples/{sample_id}/variables` through the shared IDP-aware Faiber client.
945
+ * @param sampleId Backend path identifier `sample_id`.
946
+ * @param data Typed JSON request body.
947
+ * @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
948
+ * @returns The complete Axios response, including the typed service envelope, status, and headers.
949
+ * @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
950
+ */
185
951
  userSampleCreateSampleVariablePost(sampleId: Identifier, data: T.UserSampleCreateSampleVariablePostInput, options?: RequestOptions<T.UserSampleCreateSampleVariablePostInput>): Promise<import("axios").AxiosResponse<T.UserSampleCreateSampleVariablePostResponse, T.UserSampleCreateSampleVariablePostInput, {}>>;
186
- /** GET /api/v1/samples/by-slug/{slug}/variables-map; permission: public/session-derived. */
952
+ /**
953
+ * Performs the variables map by slug operation for the user sample capability.
954
+ * Calls `GET /api/v1/samples/by-slug/{slug}/variables-map` through the shared IDP-aware Faiber client.
955
+ * @param slug Backend path identifier `slug`.
956
+ * @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
957
+ * @returns The complete Axios response, including the typed service envelope, status, and headers.
958
+ * @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
959
+ */
187
960
  userSampleVariablesMapBySlugGet(slug: Identifier, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.UserSampleVariablesMapBySlugGetResponse, unknown, {}>>;
188
- /** GET /api/v1/samples/variables; permission: public/session-derived. */
961
+ /**
962
+ * Performs the list all variables operation for the user sample capability.
963
+ * Calls `GET /api/v1/samples/variables` through the shared IDP-aware Faiber client.
964
+ * @param params Typed query parameters; omitted members retain backend defaults.
965
+ * @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
966
+ * @returns The complete Axios response, including the typed service envelope, status, and headers.
967
+ * @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
968
+ */
189
969
  userSampleListAllVariablesGet(params?: T.UserSampleListAllVariablesGetQuery, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.UserSampleListAllVariablesGetResponse, unknown, {}>>;
190
- /** DELETE /api/v1/samples/variables/{id}; permission: public/session-derived. */
191
- userSampleDeleteVariableDelete(id: Identifier, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.UserSampleDeleteVariableDeleteResponse, unknown, {}>>;
192
- /** GET /api/v1/samples/variables/{id}; permission: public/session-derived. */
970
+ /**
971
+ * Performs the delete variable operation for the user sample capability.
972
+ * Calls `DELETE /api/v1/samples/variables/{id}` through the shared IDP-aware Faiber client.
973
+ * @param id Backend path identifier `id`.
974
+ * @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
975
+ * @returns The complete Axios response, including the typed service envelope, status, and headers.
976
+ * @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
977
+ */
978
+ userSampleDeleteVariableDelete(id: Identifier, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.UserSampleDeleteVariableDeleteResponseData, unknown, {}>>;
979
+ /**
980
+ * Performs the show variable operation for the user sample capability.
981
+ * Calls `GET /api/v1/samples/variables/{id}` through the shared IDP-aware Faiber client.
982
+ * @param id Backend path identifier `id`.
983
+ * @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
984
+ * @returns The complete Axios response, including the typed service envelope, status, and headers.
985
+ * @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
986
+ */
193
987
  userSampleShowVariableGet(id: Identifier, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.UserSampleShowVariableGetResponse, unknown, {}>>;
194
- /** PATCH /api/v1/samples/variables/{id}; permission: public/session-derived. */
988
+ /**
989
+ * Performs the update variable operation for the user sample capability.
990
+ * Calls `PATCH /api/v1/samples/variables/{id}` through the shared IDP-aware Faiber client.
991
+ * @param id Backend path identifier `id`.
992
+ * @param data Typed JSON request body.
993
+ * @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
994
+ * @returns The complete Axios response, including the typed service envelope, status, and headers.
995
+ * @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
996
+ */
195
997
  userSampleUpdateVariablePatch(id: Identifier, data: T.UserSampleUpdateVariablePatchInput, options?: RequestOptions<T.UserSampleUpdateVariablePatchInput>): Promise<import("axios").AxiosResponse<T.UserSampleUpdateVariablePatchResponse, T.UserSampleUpdateVariablePatchInput, {}>>;
196
- /** PUT /api/v1/samples/variables/{id}; permission: public/session-derived. */
998
+ /**
999
+ * Performs the update variable operation for the user sample capability.
1000
+ * Calls `PUT /api/v1/samples/variables/{id}` through the shared IDP-aware Faiber client.
1001
+ * @param id Backend path identifier `id`.
1002
+ * @param data Typed JSON request body.
1003
+ * @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
1004
+ * @returns The complete Axios response, including the typed service envelope, status, and headers.
1005
+ * @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
1006
+ */
197
1007
  userSampleUpdateVariablePut(id: Identifier, data: T.UserSampleUpdateVariablePutInput, options?: RequestOptions<T.UserSampleUpdateVariablePutInput>): Promise<import("axios").AxiosResponse<T.UserSampleUpdateVariablePutResponse, T.UserSampleUpdateVariablePutInput, {}>>;
198
- /** GET /api/v1/seo-contents; permission: public/session-derived. */
1008
+ /**
1009
+ * Performs the list seo contents operation for the seo content capability.
1010
+ * Calls `GET /api/v1/seo-contents` through the shared IDP-aware Faiber client.
1011
+ * @param params Typed query parameters; omitted members retain backend defaults.
1012
+ * @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
1013
+ * @returns The complete Axios response, including the typed service envelope, status, and headers.
1014
+ * @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
1015
+ */
199
1016
  seoContentListSeoContentsGet(params?: T.SeoContentListSeoContentsGetQuery, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.SeoContentListSeoContentsGetResponse, unknown, {}>>;
200
- /** POST /api/v1/seo-contents; permission: public/session-derived. */
1017
+ /**
1018
+ * Performs the create seo content operation for the seo content capability.
1019
+ * Calls `POST /api/v1/seo-contents` through the shared IDP-aware Faiber client.
1020
+ * @param data Typed JSON request body.
1021
+ * @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
1022
+ * @returns The complete Axios response, including the typed service envelope, status, and headers.
1023
+ * @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
1024
+ */
201
1025
  seoContentCreateSeoContentPost(data: T.SeoContentCreateSeoContentPostInput, options?: RequestOptions<T.SeoContentCreateSeoContentPostInput>): Promise<import("axios").AxiosResponse<T.SeoContentCreateSeoContentPostResponse, T.SeoContentCreateSeoContentPostInput, {}>>;
202
- /** DELETE /api/v1/seo-contents/{host}/{target_id}; permission: public/session-derived. */
203
- seoContentDetachFromTargetDelete(host: Identifier, targetId: Identifier, params?: T.SeoContentDetachFromTargetDeleteQuery, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.SeoContentDetachFromTargetDeleteResponse, unknown, {}>>;
204
- /** GET /api/v1/seo-contents/{host}/{target_id}; permission: public/session-derived. */
1026
+ /**
1027
+ * Performs the detach from target operation for the seo content capability.
1028
+ * Calls `DELETE /api/v1/seo-contents/{host}/{target_id}` through the shared IDP-aware Faiber client.
1029
+ * @param host Backend path identifier `host`.
1030
+ * @param targetId Backend path identifier `target_id`.
1031
+ * @param params Typed query parameters; omitted members retain backend defaults.
1032
+ * @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
1033
+ * @returns The complete Axios response, including the typed service envelope, status, and headers.
1034
+ * @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
1035
+ */
1036
+ seoContentDetachFromTargetDelete(host: Identifier, targetId: Identifier, params?: T.SeoContentDetachFromTargetDeleteQuery, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.SeoContentDetachFromTargetDeleteResponseData, unknown, {}>>;
1037
+ /**
1038
+ * Performs the list on target operation for the seo content capability.
1039
+ * Calls `GET /api/v1/seo-contents/{host}/{target_id}` through the shared IDP-aware Faiber client.
1040
+ * @param host Backend path identifier `host`.
1041
+ * @param targetId Backend path identifier `target_id`.
1042
+ * @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
1043
+ * @returns The complete Axios response, including the typed service envelope, status, and headers.
1044
+ * @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
1045
+ */
205
1046
  seoContentListOnTargetGet(host: Identifier, targetId: Identifier, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.SeoContentListOnTargetGetResponse, unknown, {}>>;
206
- /** POST /api/v1/seo-contents/{host}/{target_id}; permission: public/session-derived. */
1047
+ /**
1048
+ * Performs the attach to target operation for the seo content capability.
1049
+ * Calls `POST /api/v1/seo-contents/{host}/{target_id}` through the shared IDP-aware Faiber client.
1050
+ * @param host Backend path identifier `host`.
1051
+ * @param targetId Backend path identifier `target_id`.
1052
+ * @param data Typed JSON request body.
1053
+ * @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
1054
+ * @returns The complete Axios response, including the typed service envelope, status, and headers.
1055
+ * @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
1056
+ */
207
1057
  seoContentAttachToTargetPost(host: Identifier, targetId: Identifier, data: T.SeoContentAttachToTargetPostInput, options?: RequestOptions<T.SeoContentAttachToTargetPostInput>): Promise<import("axios").AxiosResponse<T.SeoContentAttachToTargetPostResponse, T.SeoContentAttachToTargetPostInput, {}>>;
208
- /** DELETE /api/v1/seo-contents/{id}; permission: public/session-derived. */
209
- seoContentDeleteSeoContentDelete(id: Identifier, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.SeoContentDeleteSeoContentDeleteResponse, unknown, {}>>;
210
- /** GET /api/v1/seo-contents/{id}; permission: public/session-derived. */
1058
+ /**
1059
+ * Performs the delete seo content operation for the seo content capability.
1060
+ * Calls `DELETE /api/v1/seo-contents/{id}` through the shared IDP-aware Faiber client.
1061
+ * @param id Backend path identifier `id`.
1062
+ * @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
1063
+ * @returns The complete Axios response, including the typed service envelope, status, and headers.
1064
+ * @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
1065
+ */
1066
+ seoContentDeleteSeoContentDelete(id: Identifier, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.SeoContentDeleteSeoContentDeleteResponseData, unknown, {}>>;
1067
+ /**
1068
+ * Performs the show seo content operation for the seo content capability.
1069
+ * Calls `GET /api/v1/seo-contents/{id}` through the shared IDP-aware Faiber client.
1070
+ * @param id Backend path identifier `id`.
1071
+ * @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
1072
+ * @returns The complete Axios response, including the typed service envelope, status, and headers.
1073
+ * @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
1074
+ */
211
1075
  seoContentShowSeoContentGet(id: Identifier, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.SeoContentShowSeoContentGetResponse, unknown, {}>>;
212
- /** PATCH /api/v1/seo-contents/{id}; permission: public/session-derived. */
1076
+ /**
1077
+ * Performs the update seo content operation for the seo content capability.
1078
+ * Calls `PATCH /api/v1/seo-contents/{id}` through the shared IDP-aware Faiber client.
1079
+ * @param id Backend path identifier `id`.
1080
+ * @param data Typed JSON request body.
1081
+ * @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
1082
+ * @returns The complete Axios response, including the typed service envelope, status, and headers.
1083
+ * @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
1084
+ */
213
1085
  seoContentUpdateSeoContentPatch(id: Identifier, data: T.SeoContentUpdateSeoContentPatchInput, options?: RequestOptions<T.SeoContentUpdateSeoContentPatchInput>): Promise<import("axios").AxiosResponse<T.SeoContentUpdateSeoContentPatchResponse, T.SeoContentUpdateSeoContentPatchInput, {}>>;
214
- /** PUT /api/v1/seo-contents/{id}; permission: public/session-derived. */
1086
+ /**
1087
+ * Performs the update seo content operation for the seo content capability.
1088
+ * Calls `PUT /api/v1/seo-contents/{id}` through the shared IDP-aware Faiber client.
1089
+ * @param id Backend path identifier `id`.
1090
+ * @param data Typed JSON request body.
1091
+ * @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
1092
+ * @returns The complete Axios response, including the typed service envelope, status, and headers.
1093
+ * @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
1094
+ */
215
1095
  seoContentUpdateSeoContentPut(id: Identifier, data: T.SeoContentUpdateSeoContentPutInput, options?: RequestOptions<T.SeoContentUpdateSeoContentPutInput>): Promise<import("axios").AxiosResponse<T.SeoContentUpdateSeoContentPutResponse, T.SeoContentUpdateSeoContentPutInput, {}>>;
216
- /** GET /api/v1/shop/cart; permission: public/session-derived. */
1096
+ /**
1097
+ * Performs the show operation for the cart capability.
1098
+ * Calls `GET /api/v1/shop/cart` through the shared IDP-aware Faiber client.
1099
+ * @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
1100
+ * @returns The complete Axios response, including the typed service envelope, status, and headers.
1101
+ * @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
1102
+ */
217
1103
  cartShowGet(options?: RequestOptions): Promise<import("axios").AxiosResponse<T.CartShowGetResponse, unknown, {}>>;
218
- /** PUT /api/v1/shop/cart; permission: public/session-derived. */
1104
+ /**
1105
+ * Performs the replace operation for the cart capability.
1106
+ * Calls `PUT /api/v1/shop/cart` through the shared IDP-aware Faiber client.
1107
+ * @param data Typed JSON request body.
1108
+ * @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
1109
+ * @returns The complete Axios response, including the typed service envelope, status, and headers.
1110
+ * @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
1111
+ */
219
1112
  cartReplacePut(data: T.CartReplacePutInput, options?: RequestOptions<T.CartReplacePutInput>): Promise<import("axios").AxiosResponse<T.CartReplacePutResponse, T.CartReplacePutInput, {}>>;
220
- /** GET /api/v1/shop/orders; permission: public/session-derived. */
1113
+ /**
1114
+ * Performs the list orders operation for the order capability.
1115
+ * Calls `GET /api/v1/shop/orders` through the shared IDP-aware Faiber client.
1116
+ * @param params Typed query parameters; omitted members retain backend defaults.
1117
+ * @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
1118
+ * @returns The complete Axios response, including the typed service envelope, status, and headers.
1119
+ * @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
1120
+ */
221
1121
  orderListOrdersGet(params?: T.OrderListOrdersGetQuery, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.OrderListOrdersGetResponse, unknown, {}>>;
222
- /** POST /api/v1/shop/orders; permission: public/session-derived. */
1122
+ /**
1123
+ * Performs the create order operation for the order capability.
1124
+ * Calls `POST /api/v1/shop/orders` through the shared IDP-aware Faiber client.
1125
+ * @param data Typed JSON request body.
1126
+ * @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
1127
+ * @returns The complete Axios response, including the typed service envelope, status, and headers.
1128
+ * @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
1129
+ */
223
1130
  orderCreateOrderPost(data: T.OrderCreateOrderPostInput, options?: RequestOptions<T.OrderCreateOrderPostInput>): Promise<import("axios").AxiosResponse<T.OrderCreateOrderPostResponse, T.OrderCreateOrderPostInput, {}>>;
224
- /** DELETE /api/v1/shop/orders/{id}; permission: public/session-derived. */
225
- orderDeleteOrderDelete(id: Identifier, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.OrderDeleteOrderDeleteResponse, unknown, {}>>;
226
- /** GET /api/v1/shop/orders/{id}; permission: public/session-derived. */
1131
+ /**
1132
+ * Performs the delete order operation for the order capability.
1133
+ * Calls `DELETE /api/v1/shop/orders/{id}` through the shared IDP-aware Faiber client.
1134
+ * @param id Backend path identifier `id`.
1135
+ * @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
1136
+ * @returns The complete Axios response, including the typed service envelope, status, and headers.
1137
+ * @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
1138
+ */
1139
+ orderDeleteOrderDelete(id: Identifier, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.OrderDeleteOrderDeleteResponseData, unknown, {}>>;
1140
+ /**
1141
+ * Performs the show order operation for the order capability.
1142
+ * Calls `GET /api/v1/shop/orders/{id}` through the shared IDP-aware Faiber client.
1143
+ * @param id Backend path identifier `id`.
1144
+ * @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
1145
+ * @returns The complete Axios response, including the typed service envelope, status, and headers.
1146
+ * @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
1147
+ */
227
1148
  orderShowOrderGet(id: Identifier, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.OrderShowOrderGetResponse, unknown, {}>>;
228
- /** PATCH /api/v1/shop/orders/{id}; permission: public/session-derived. */
1149
+ /**
1150
+ * Performs the update order operation for the order capability.
1151
+ * Calls `PATCH /api/v1/shop/orders/{id}` through the shared IDP-aware Faiber client.
1152
+ * @param id Backend path identifier `id`.
1153
+ * @param data Typed JSON request body.
1154
+ * @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
1155
+ * @returns The complete Axios response, including the typed service envelope, status, and headers.
1156
+ * @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
1157
+ */
229
1158
  orderUpdateOrderPatch(id: Identifier, data: T.OrderUpdateOrderPatchInput, options?: RequestOptions<T.OrderUpdateOrderPatchInput>): Promise<import("axios").AxiosResponse<T.OrderUpdateOrderPatchResponse, T.OrderUpdateOrderPatchInput, {}>>;
230
- /** PUT /api/v1/shop/orders/{id}; permission: public/session-derived. */
1159
+ /**
1160
+ * Performs the update order operation for the order capability.
1161
+ * Calls `PUT /api/v1/shop/orders/{id}` through the shared IDP-aware Faiber client.
1162
+ * @param id Backend path identifier `id`.
1163
+ * @param data Typed JSON request body.
1164
+ * @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
1165
+ * @returns The complete Axios response, including the typed service envelope, status, and headers.
1166
+ * @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
1167
+ */
231
1168
  orderUpdateOrderPut(id: Identifier, data: T.OrderUpdateOrderPutInput, options?: RequestOptions<T.OrderUpdateOrderPutInput>): Promise<import("axios").AxiosResponse<T.OrderUpdateOrderPutResponse, T.OrderUpdateOrderPutInput, {}>>;
232
- /** GET /api/v1/shop/orders/{order_id}/items; permission: public/session-derived. */
1169
+ /**
1170
+ * Performs the list order items operation for the order capability.
1171
+ * Calls `GET /api/v1/shop/orders/{order_id}/items` through the shared IDP-aware Faiber client.
1172
+ * @param orderId Backend path identifier `order_id`.
1173
+ * @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
1174
+ * @returns The complete Axios response, including the typed service envelope, status, and headers.
1175
+ * @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
1176
+ */
233
1177
  orderListOrderItemsGet(orderId: Identifier, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.OrderListOrderItemsGetResponse, unknown, {}>>;
234
- /** POST /api/v1/shop/orders/{order_id}/items; permission: public/session-derived. */
1178
+ /**
1179
+ * Performs the add order item operation for the order capability.
1180
+ * Calls `POST /api/v1/shop/orders/{order_id}/items` through the shared IDP-aware Faiber client.
1181
+ * @param orderId Backend path identifier `order_id`.
1182
+ * @param data Typed JSON request body.
1183
+ * @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
1184
+ * @returns The complete Axios response, including the typed service envelope, status, and headers.
1185
+ * @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
1186
+ */
235
1187
  orderAddOrderItemPost(orderId: Identifier, data: T.OrderAddOrderItemPostInput, options?: RequestOptions<T.OrderAddOrderItemPostInput>): Promise<import("axios").AxiosResponse<T.OrderAddOrderItemPostResponse, T.OrderAddOrderItemPostInput, {}>>;
236
- /** GET /api/v1/shop/products; permission: public/session-derived. */
1188
+ /**
1189
+ * Performs the list products operation for the product capability.
1190
+ * Calls `GET /api/v1/shop/products` through the shared IDP-aware Faiber client.
1191
+ * @param params Typed query parameters; omitted members retain backend defaults.
1192
+ * @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
1193
+ * @returns The complete Axios response, including the typed service envelope, status, and headers.
1194
+ * @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
1195
+ */
237
1196
  productListProductsGet(params?: T.ProductListProductsGetQuery, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.ProductListProductsGetResponse, unknown, {}>>;
238
- /** POST /api/v1/shop/products; permission: public/session-derived. */
1197
+ /**
1198
+ * Performs the create product operation for the product capability.
1199
+ * Calls `POST /api/v1/shop/products` through the shared IDP-aware Faiber client.
1200
+ * @param data Typed JSON request body.
1201
+ * @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
1202
+ * @returns The complete Axios response, including the typed service envelope, status, and headers.
1203
+ * @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
1204
+ */
239
1205
  productCreateProductPost(data: T.ProductCreateProductPostInput, options?: RequestOptions<T.ProductCreateProductPostInput>): Promise<import("axios").AxiosResponse<T.ProductCreateProductPostResponse, T.ProductCreateProductPostInput, {}>>;
240
- /** DELETE /api/v1/shop/products/{id}; permission: public/session-derived. */
241
- productDeleteProductDelete(id: Identifier, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.ProductDeleteProductDeleteResponse, unknown, {}>>;
242
- /** GET /api/v1/shop/products/{id}; permission: public/session-derived. */
1206
+ /**
1207
+ * Performs the delete product operation for the product capability.
1208
+ * Calls `DELETE /api/v1/shop/products/{id}` through the shared IDP-aware Faiber client.
1209
+ * @param id Backend path identifier `id`.
1210
+ * @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
1211
+ * @returns The complete Axios response, including the typed service envelope, status, and headers.
1212
+ * @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
1213
+ */
1214
+ productDeleteProductDelete(id: Identifier, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.ProductDeleteProductDeleteResponseData, unknown, {}>>;
1215
+ /**
1216
+ * Performs the show product operation for the product capability.
1217
+ * Calls `GET /api/v1/shop/products/{id}` through the shared IDP-aware Faiber client.
1218
+ * @param id Backend path identifier `id`.
1219
+ * @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
1220
+ * @returns The complete Axios response, including the typed service envelope, status, and headers.
1221
+ * @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
1222
+ */
243
1223
  productShowProductGet(id: Identifier, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.ProductShowProductGetResponse, unknown, {}>>;
244
- /** PATCH /api/v1/shop/products/{id}; permission: public/session-derived. */
1224
+ /**
1225
+ * Performs the update product operation for the product capability.
1226
+ * Calls `PATCH /api/v1/shop/products/{id}` through the shared IDP-aware Faiber client.
1227
+ * @param id Backend path identifier `id`.
1228
+ * @param data Typed JSON request body.
1229
+ * @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
1230
+ * @returns The complete Axios response, including the typed service envelope, status, and headers.
1231
+ * @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
1232
+ */
245
1233
  productUpdateProductPatch(id: Identifier, data: T.ProductUpdateProductPatchInput, options?: RequestOptions<T.ProductUpdateProductPatchInput>): Promise<import("axios").AxiosResponse<T.ProductUpdateProductPatchResponse, T.ProductUpdateProductPatchInput, {}>>;
246
- /** PUT /api/v1/shop/products/{id}; permission: public/session-derived. */
1234
+ /**
1235
+ * Performs the update product operation for the product capability.
1236
+ * Calls `PUT /api/v1/shop/products/{id}` through the shared IDP-aware Faiber client.
1237
+ * @param id Backend path identifier `id`.
1238
+ * @param data Typed JSON request body.
1239
+ * @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
1240
+ * @returns The complete Axios response, including the typed service envelope, status, and headers.
1241
+ * @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
1242
+ */
247
1243
  productUpdateProductPut(id: Identifier, data: T.ProductUpdateProductPutInput, options?: RequestOptions<T.ProductUpdateProductPutInput>): Promise<import("axios").AxiosResponse<T.ProductUpdateProductPutResponse, T.ProductUpdateProductPutInput, {}>>;
248
- /** GET /api/v1/shop/products/{product_id}/variants; permission: public/session-derived. */
1244
+ /**
1245
+ * Performs the list product variants operation for the product capability.
1246
+ * Calls `GET /api/v1/shop/products/{product_id}/variants` through the shared IDP-aware Faiber client.
1247
+ * @param productId Backend path identifier `product_id`.
1248
+ * @param params Typed query parameters; omitted members retain backend defaults.
1249
+ * @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
1250
+ * @returns The complete Axios response, including the typed service envelope, status, and headers.
1251
+ * @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
1252
+ */
249
1253
  productListProductVariantsGet(productId: Identifier, params?: T.ProductListProductVariantsGetQuery, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.ProductListProductVariantsGetResponse, unknown, {}>>;
250
- /** POST /api/v1/shop/products/{product_id}/variants; permission: public/session-derived. */
1254
+ /**
1255
+ * Performs the create variant operation for the product capability.
1256
+ * Calls `POST /api/v1/shop/products/{product_id}/variants` through the shared IDP-aware Faiber client.
1257
+ * @param productId Backend path identifier `product_id`.
1258
+ * @param data Typed JSON request body.
1259
+ * @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
1260
+ * @returns The complete Axios response, including the typed service envelope, status, and headers.
1261
+ * @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
1262
+ */
251
1263
  productCreateVariantPost(productId: Identifier, data: T.ProductCreateVariantPostInput, options?: RequestOptions<T.ProductCreateVariantPostInput>): Promise<import("axios").AxiosResponse<T.ProductCreateVariantPostResponse, T.ProductCreateVariantPostInput, {}>>;
252
- /** GET /api/v1/shop/variants; permission: public/session-derived. */
1264
+ /**
1265
+ * Performs the list variants operation for the product capability.
1266
+ * Calls `GET /api/v1/shop/variants` through the shared IDP-aware Faiber client.
1267
+ * @param params Typed query parameters; omitted members retain backend defaults.
1268
+ * @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
1269
+ * @returns The complete Axios response, including the typed service envelope, status, and headers.
1270
+ * @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
1271
+ */
253
1272
  productListVariantsGet(params?: T.ProductListVariantsGetQuery, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.ProductListVariantsGetResponse, unknown, {}>>;
254
- /** DELETE /api/v1/shop/variants/{id}; permission: public/session-derived. */
255
- productDeleteVariantDelete(id: Identifier, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.ProductDeleteVariantDeleteResponse, unknown, {}>>;
256
- /** GET /api/v1/shop/variants/{id}; permission: public/session-derived. */
1273
+ /**
1274
+ * Performs the delete variant operation for the product capability.
1275
+ * Calls `DELETE /api/v1/shop/variants/{id}` through the shared IDP-aware Faiber client.
1276
+ * @param id Backend path identifier `id`.
1277
+ * @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
1278
+ * @returns The complete Axios response, including the typed service envelope, status, and headers.
1279
+ * @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
1280
+ */
1281
+ productDeleteVariantDelete(id: Identifier, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.ProductDeleteVariantDeleteResponseData, unknown, {}>>;
1282
+ /**
1283
+ * Performs the show variant operation for the product capability.
1284
+ * Calls `GET /api/v1/shop/variants/{id}` through the shared IDP-aware Faiber client.
1285
+ * @param id Backend path identifier `id`.
1286
+ * @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
1287
+ * @returns The complete Axios response, including the typed service envelope, status, and headers.
1288
+ * @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
1289
+ */
257
1290
  productShowVariantGet(id: Identifier, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.ProductShowVariantGetResponse, unknown, {}>>;
258
- /** PATCH /api/v1/shop/variants/{id}; permission: public/session-derived. */
1291
+ /**
1292
+ * Performs the update variant operation for the product capability.
1293
+ * Calls `PATCH /api/v1/shop/variants/{id}` through the shared IDP-aware Faiber client.
1294
+ * @param id Backend path identifier `id`.
1295
+ * @param data Typed JSON request body.
1296
+ * @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
1297
+ * @returns The complete Axios response, including the typed service envelope, status, and headers.
1298
+ * @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
1299
+ */
259
1300
  productUpdateVariantPatch(id: Identifier, data: T.ProductUpdateVariantPatchInput, options?: RequestOptions<T.ProductUpdateVariantPatchInput>): Promise<import("axios").AxiosResponse<T.ProductUpdateVariantPatchResponse, T.ProductUpdateVariantPatchInput, {}>>;
260
- /** PUT /api/v1/shop/variants/{id}; permission: public/session-derived. */
1301
+ /**
1302
+ * Performs the update variant operation for the product capability.
1303
+ * Calls `PUT /api/v1/shop/variants/{id}` through the shared IDP-aware Faiber client.
1304
+ * @param id Backend path identifier `id`.
1305
+ * @param data Typed JSON request body.
1306
+ * @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
1307
+ * @returns The complete Axios response, including the typed service envelope, status, and headers.
1308
+ * @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
1309
+ */
261
1310
  productUpdateVariantPut(id: Identifier, data: T.ProductUpdateVariantPutInput, options?: RequestOptions<T.ProductUpdateVariantPutInput>): Promise<import("axios").AxiosResponse<T.ProductUpdateVariantPutResponse, T.ProductUpdateVariantPutInput, {}>>;
262
- /** GET /api/v1/tags; permission: public/session-derived. */
1311
+ /**
1312
+ * Performs the list tags operation for the tag capability.
1313
+ * Calls `GET /api/v1/tags` through the shared IDP-aware Faiber client.
1314
+ * @param params Typed query parameters; omitted members retain backend defaults.
1315
+ * @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
1316
+ * @returns The complete Axios response, including the typed service envelope, status, and headers.
1317
+ * @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
1318
+ */
263
1319
  tagListTagsGet(params?: T.TagListTagsGetQuery, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.TagListTagsGetResponse, unknown, {}>>;
264
- /** POST /api/v1/tags; permission: public/session-derived. */
1320
+ /**
1321
+ * Performs the create tag operation for the tag capability.
1322
+ * Calls `POST /api/v1/tags` through the shared IDP-aware Faiber client.
1323
+ * @param data Typed JSON request body.
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
+ */
265
1328
  tagCreateTagPost(data: T.TagCreateTagPostInput, options?: RequestOptions<T.TagCreateTagPostInput>): Promise<import("axios").AxiosResponse<T.TagCreateTagPostResponse, T.TagCreateTagPostInput, {}>>;
266
- /** DELETE /api/v1/tags/{host}/{target_id}; permission: public/session-derived. */
267
- tagDetachFromTargetDelete(host: Identifier, targetId: Identifier, params?: T.TagDetachFromTargetDeleteQuery, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.TagDetachFromTargetDeleteResponse, unknown, {}>>;
268
- /** GET /api/v1/tags/{host}/{target_id}; permission: public/session-derived. */
1329
+ /**
1330
+ * Performs the detach from target operation for the tag capability.
1331
+ * Calls `DELETE /api/v1/tags/{host}/{target_id}` through the shared IDP-aware Faiber client.
1332
+ * @param host Backend path identifier `host`.
1333
+ * @param targetId Backend path identifier `target_id`.
1334
+ * @param params Typed query parameters; omitted members retain backend defaults.
1335
+ * @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
1336
+ * @returns The complete Axios response, including the typed service envelope, status, and headers.
1337
+ * @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
1338
+ */
1339
+ tagDetachFromTargetDelete(host: Identifier, targetId: Identifier, params?: T.TagDetachFromTargetDeleteQuery, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.TagDetachFromTargetDeleteResponseData, unknown, {}>>;
1340
+ /**
1341
+ * Performs the list on target operation for the tag capability.
1342
+ * Calls `GET /api/v1/tags/{host}/{target_id}` through the shared IDP-aware Faiber client.
1343
+ * @param host Backend path identifier `host`.
1344
+ * @param targetId Backend path identifier `target_id`.
1345
+ * @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
1346
+ * @returns The complete Axios response, including the typed service envelope, status, and headers.
1347
+ * @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
1348
+ */
269
1349
  tagListOnTargetGet(host: Identifier, targetId: Identifier, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.TagListOnTargetGetResponse, unknown, {}>>;
270
- /** POST /api/v1/tags/{host}/{target_id}; permission: public/session-derived. */
1350
+ /**
1351
+ * Performs the attach to target operation for the tag capability.
1352
+ * Calls `POST /api/v1/tags/{host}/{target_id}` through the shared IDP-aware Faiber client.
1353
+ * @param host Backend path identifier `host`.
1354
+ * @param targetId Backend path identifier `target_id`.
1355
+ * @param data Typed JSON request body.
1356
+ * @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
1357
+ * @returns The complete Axios response, including the typed service envelope, status, and headers.
1358
+ * @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
1359
+ */
271
1360
  tagAttachToTargetPost(host: Identifier, targetId: Identifier, data: T.TagAttachToTargetPostInput, options?: RequestOptions<T.TagAttachToTargetPostInput>): Promise<import("axios").AxiosResponse<T.TagAttachToTargetPostResponse, T.TagAttachToTargetPostInput, {}>>;
272
- /** DELETE /api/v1/tags/{id}; permission: public/session-derived. */
273
- tagDeleteTagDelete(id: Identifier, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.TagDeleteTagDeleteResponse, unknown, {}>>;
274
- /** GET /api/v1/tags/{id}; permission: public/session-derived. */
1361
+ /**
1362
+ * Performs the delete tag operation for the tag capability.
1363
+ * Calls `DELETE /api/v1/tags/{id}` through the shared IDP-aware Faiber client.
1364
+ * @param id Backend path identifier `id`.
1365
+ * @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
1366
+ * @returns The complete Axios response, including the typed service envelope, status, and headers.
1367
+ * @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
1368
+ */
1369
+ tagDeleteTagDelete(id: Identifier, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.TagDeleteTagDeleteResponseData, unknown, {}>>;
1370
+ /**
1371
+ * Performs the show tag operation for the tag capability.
1372
+ * Calls `GET /api/v1/tags/{id}` through the shared IDP-aware Faiber client.
1373
+ * @param id Backend path identifier `id`.
1374
+ * @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
1375
+ * @returns The complete Axios response, including the typed service envelope, status, and headers.
1376
+ * @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
1377
+ */
275
1378
  tagShowTagGet(id: Identifier, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.TagShowTagGetResponse, unknown, {}>>;
276
- /** PATCH /api/v1/tags/{id}; permission: public/session-derived. */
1379
+ /**
1380
+ * Performs the update tag operation for the tag capability.
1381
+ * Calls `PATCH /api/v1/tags/{id}` through the shared IDP-aware Faiber client.
1382
+ * @param id Backend path identifier `id`.
1383
+ * @param data Typed JSON request body.
1384
+ * @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
1385
+ * @returns The complete Axios response, including the typed service envelope, status, and headers.
1386
+ * @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
1387
+ */
277
1388
  tagUpdateTagPatch(id: Identifier, data: T.TagUpdateTagPatchInput, options?: RequestOptions<T.TagUpdateTagPatchInput>): Promise<import("axios").AxiosResponse<T.TagUpdateTagPatchResponse, T.TagUpdateTagPatchInput, {}>>;
278
- /** PUT /api/v1/tags/{id}; permission: public/session-derived. */
1389
+ /**
1390
+ * Performs the update tag operation for the tag capability.
1391
+ * Calls `PUT /api/v1/tags/{id}` through the shared IDP-aware Faiber client.
1392
+ * @param id Backend path identifier `id`.
1393
+ * @param data Typed JSON request body.
1394
+ * @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
1395
+ * @returns The complete Axios response, including the typed service envelope, status, and headers.
1396
+ * @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
1397
+ */
279
1398
  tagUpdateTagPut(id: Identifier, data: T.TagUpdateTagPutInput, options?: RequestOptions<T.TagUpdateTagPutInput>): Promise<import("axios").AxiosResponse<T.TagUpdateTagPutResponse, T.TagUpdateTagPutInput, {}>>;
280
1399
  }
281
1400
  //# sourceMappingURL=operations.d.ts.map