@faiber/faiber-modules 0.3.0 → 0.5.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/.tsbuildinfo +1 -1
- package/dist/operations.d.ts +1181 -138
- package/dist/operations.d.ts.map +1 -1
- package/dist/operations.js +1181 -138
- package/dist/operations.js.map +1 -1
- package/dist/operations.types.d.ts +726 -420
- package/dist/operations.types.d.ts.map +1 -1
- package/package.json +2 -2
package/dist/operations.d.ts
CHANGED
|
@@ -1,281 +1,1324 @@
|
|
|
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
|
-
/**
|
|
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
|
-
/**
|
|
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
|
-
/**
|
|
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
|
-
/**
|
|
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
|
-
/**
|
|
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
|
-
/**
|
|
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
|
+
*/
|
|
15
59
|
accessRevokeOnTargetDelete(host: Identifier, targetId: Identifier, accessId: Identifier, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.AccessRevokeOnTargetDeleteResponse, unknown, {}>>;
|
|
16
|
-
/**
|
|
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
|
-
/**
|
|
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
|
-
/**
|
|
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
|
-
/**
|
|
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
|
-
/**
|
|
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
|
-
/**
|
|
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
|
+
*/
|
|
27
116
|
authorDeleteAuthorDelete(id: Identifier, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.AuthorDeleteAuthorDeleteResponse, unknown, {}>>;
|
|
28
|
-
/**
|
|
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
|
-
/**
|
|
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
|
-
/**
|
|
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
|
-
/**
|
|
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
|
-
/**
|
|
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
|
-
/**
|
|
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
|
+
*/
|
|
39
172
|
blogDeletePostDelete(id: Identifier, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.BlogDeletePostDeleteResponse, unknown, {}>>;
|
|
40
|
-
/**
|
|
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
|
-
/**
|
|
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
|
-
/**
|
|
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
|
-
/**
|
|
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
|
-
/**
|
|
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
|
-
/**
|
|
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
|
+
*/
|
|
51
230
|
categoryDetachFromTargetDelete(host: Identifier, targetId: Identifier, params?: T.CategoryDetachFromTargetDeleteQuery, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.CategoryDetachFromTargetDeleteResponse, unknown, {}>>;
|
|
52
|
-
/**
|
|
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
|
-
/**
|
|
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
|
-
/**
|
|
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
|
+
*/
|
|
57
260
|
categoryDeleteCategoryDelete(id: Identifier, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.CategoryDeleteCategoryDeleteResponse, unknown, {}>>;
|
|
58
|
-
/**
|
|
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
|
-
/**
|
|
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
|
-
/**
|
|
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
|
-
/**
|
|
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
|
-
/**
|
|
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
|
-
/**
|
|
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
|
-
/**
|
|
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
|
-
/**
|
|
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
|
+
*/
|
|
73
337
|
commentDeleteCommentDelete(id: Identifier, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.CommentDeleteCommentDeleteResponse, unknown, {}>>;
|
|
74
|
-
/**
|
|
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
|
-
/**
|
|
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
|
-
/**
|
|
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
|
-
/**
|
|
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
|
-
/**
|
|
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
|
-
/**
|
|
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
|
+
*/
|
|
85
395
|
contentDetachFromTargetDelete(host: Identifier, targetId: Identifier, params?: T.ContentDetachFromTargetDeleteQuery, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.ContentDetachFromTargetDeleteResponse, unknown, {}>>;
|
|
86
|
-
/**
|
|
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
|
-
/**
|
|
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
|
-
/**
|
|
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
|
+
*/
|
|
91
425
|
contentDeleteContentDelete(id: Identifier, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.ContentDeleteContentDeleteResponse, unknown, {}>>;
|
|
92
|
-
/**
|
|
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
|
-
/**
|
|
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
|
-
/**
|
|
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
|
-
/**
|
|
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
|
-
/**
|
|
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
|
-
/**
|
|
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
|
-
/**
|
|
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
|
+
*/
|
|
105
491
|
inventoryDeleteInventoryDelete(id: Identifier, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.InventoryDeleteInventoryDeleteResponse, unknown, {}>>;
|
|
106
|
-
/**
|
|
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
|
-
/**
|
|
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
|
-
/**
|
|
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
|
-
/**
|
|
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
|
-
/**
|
|
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
|
-
/**
|
|
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
|
-
/**
|
|
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
|
-
/**
|
|
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
|
+
*/
|
|
121
565
|
inventoryDeleteWarehouseDelete(id: Identifier, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.InventoryDeleteWarehouseDeleteResponse, unknown, {}>>;
|
|
122
|
-
/**
|
|
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
|
-
/**
|
|
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
|
-
/**
|
|
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
|
-
/**
|
|
595
|
+
/**
|
|
596
|
+
* Performs the list pricing operation for the service pricing capability.
|
|
597
|
+
* Calls `GET /api/v1/pricing` through the shared IDP-aware Faiber client.
|
|
598
|
+
* @param params Typed query parameters; omitted members retain backend defaults.
|
|
599
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
600
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
601
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
|
|
602
|
+
*/
|
|
129
603
|
servicePricingListPricingGet(params?: T.ServicePricingListPricingGetQuery, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.ServicePricingListPricingGetResponse, unknown, {}>>;
|
|
130
|
-
/**
|
|
604
|
+
/**
|
|
605
|
+
* Performs the create pricing operation for the service pricing capability.
|
|
606
|
+
* Calls `POST /api/v1/pricing` through the shared IDP-aware Faiber client.
|
|
607
|
+
* @param data Typed JSON request body.
|
|
608
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
609
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
610
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
|
|
611
|
+
*/
|
|
131
612
|
servicePricingCreatePricingPost(data: T.ServicePricingCreatePricingPostInput, options?: RequestOptions<T.ServicePricingCreatePricingPostInput>): Promise<import("axios").AxiosResponse<T.ServicePricingCreatePricingPostResponse, T.ServicePricingCreatePricingPostInput, {}>>;
|
|
132
|
-
/**
|
|
613
|
+
/**
|
|
614
|
+
* Performs the delete pricing operation for the service pricing capability.
|
|
615
|
+
* Calls `DELETE /api/v1/pricing/{id}` through the shared IDP-aware Faiber client.
|
|
616
|
+
* @param id Backend path identifier `id`.
|
|
617
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
618
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
619
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
|
|
620
|
+
*/
|
|
133
621
|
servicePricingDeletePricingDelete(id: Identifier, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.ServicePricingDeletePricingDeleteResponse, unknown, {}>>;
|
|
134
|
-
/**
|
|
622
|
+
/**
|
|
623
|
+
* Performs the show pricing operation for the service pricing capability.
|
|
624
|
+
* Calls `GET /api/v1/pricing/{id}` through the shared IDP-aware Faiber client.
|
|
625
|
+
* @param id Backend path identifier `id`.
|
|
626
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
627
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
628
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
|
|
629
|
+
*/
|
|
135
630
|
servicePricingShowPricingGet(id: Identifier, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.ServicePricingShowPricingGetResponse, unknown, {}>>;
|
|
136
|
-
/**
|
|
631
|
+
/**
|
|
632
|
+
* Performs the update pricing operation for the service pricing capability.
|
|
633
|
+
* Calls `PATCH /api/v1/pricing/{id}` through the shared IDP-aware Faiber client.
|
|
634
|
+
* @param id Backend path identifier `id`.
|
|
635
|
+
* @param data Typed JSON request body.
|
|
636
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
637
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
638
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
|
|
639
|
+
*/
|
|
137
640
|
servicePricingUpdatePricingPatch(id: Identifier, data: T.ServicePricingUpdatePricingPatchInput, options?: RequestOptions<T.ServicePricingUpdatePricingPatchInput>): Promise<import("axios").AxiosResponse<T.ServicePricingUpdatePricingPatchResponse, T.ServicePricingUpdatePricingPatchInput, {}>>;
|
|
138
|
-
/**
|
|
641
|
+
/**
|
|
642
|
+
* Performs the update pricing operation for the service pricing capability.
|
|
643
|
+
* Calls `PUT /api/v1/pricing/{id}` through the shared IDP-aware Faiber client.
|
|
644
|
+
* @param id Backend path identifier `id`.
|
|
645
|
+
* @param data Typed JSON request body.
|
|
646
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
647
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
648
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
|
|
649
|
+
*/
|
|
139
650
|
servicePricingUpdatePricingPut(id: Identifier, data: T.ServicePricingUpdatePricingPutInput, options?: RequestOptions<T.ServicePricingUpdatePricingPutInput>): Promise<import("axios").AxiosResponse<T.ServicePricingUpdatePricingPutResponse, T.ServicePricingUpdatePricingPutInput, {}>>;
|
|
140
|
-
/**
|
|
651
|
+
/**
|
|
652
|
+
* Performs the delete on target operation for the reaction capability.
|
|
653
|
+
* Calls `DELETE /api/v1/reactions/{host}/{target_id}` through the shared IDP-aware Faiber client.
|
|
654
|
+
* @param host Backend path identifier `host`.
|
|
655
|
+
* @param targetId Backend path identifier `target_id`.
|
|
656
|
+
* @param params Typed query parameters; omitted members retain backend defaults.
|
|
657
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
658
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
659
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
|
|
660
|
+
*/
|
|
141
661
|
reactionDeleteOnTargetDelete(host: Identifier, targetId: Identifier, params?: T.ReactionDeleteOnTargetDeleteQuery, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.ReactionDeleteOnTargetDeleteResponse, unknown, {}>>;
|
|
142
|
-
/**
|
|
662
|
+
/**
|
|
663
|
+
* Performs the list on target operation for the reaction capability.
|
|
664
|
+
* Calls `GET /api/v1/reactions/{host}/{target_id}` through the shared IDP-aware Faiber client.
|
|
665
|
+
* @param host Backend path identifier `host`.
|
|
666
|
+
* @param targetId Backend path identifier `target_id`.
|
|
667
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
668
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
669
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
|
|
670
|
+
*/
|
|
143
671
|
reactionListOnTargetGet(host: Identifier, targetId: Identifier, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.ReactionListOnTargetGetResponse, unknown, {}>>;
|
|
144
|
-
/**
|
|
672
|
+
/**
|
|
673
|
+
* Performs the create on target operation for the reaction capability.
|
|
674
|
+
* Calls `POST /api/v1/reactions/{host}/{target_id}` through the shared IDP-aware Faiber client.
|
|
675
|
+
* @param host Backend path identifier `host`.
|
|
676
|
+
* @param targetId Backend path identifier `target_id`.
|
|
677
|
+
* @param data Typed JSON request body.
|
|
678
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
679
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
680
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
|
|
681
|
+
*/
|
|
145
682
|
reactionCreateOnTargetPost(host: Identifier, targetId: Identifier, data: T.ReactionCreateOnTargetPostInput, options?: RequestOptions<T.ReactionCreateOnTargetPostInput>): Promise<import("axios").AxiosResponse<T.ReactionCreateOnTargetPostResponse, T.ReactionCreateOnTargetPostInput, {}>>;
|
|
146
|
-
/**
|
|
683
|
+
/**
|
|
684
|
+
* Performs the list requests operation for the request capability.
|
|
685
|
+
* Calls `GET /api/v1/requests` through the shared IDP-aware Faiber client.
|
|
686
|
+
* @param params Typed query parameters; omitted members retain backend defaults.
|
|
687
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
688
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
689
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
|
|
690
|
+
*/
|
|
147
691
|
requestListRequestsGet(params?: T.RequestListRequestsGetQuery, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.RequestListRequestsGetResponse, unknown, {}>>;
|
|
148
|
-
/**
|
|
692
|
+
/**
|
|
693
|
+
* Performs the create request operation for the request capability.
|
|
694
|
+
* Calls `POST /api/v1/requests` through the shared IDP-aware Faiber client.
|
|
695
|
+
* @param data Typed JSON request body.
|
|
696
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
697
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
698
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
|
|
699
|
+
*/
|
|
149
700
|
requestCreateRequestPost(data: T.RequestCreateRequestPostInput, options?: RequestOptions<T.RequestCreateRequestPostInput>): Promise<import("axios").AxiosResponse<T.RequestCreateRequestPostResponse, T.RequestCreateRequestPostInput, {}>>;
|
|
150
|
-
/**
|
|
701
|
+
/**
|
|
702
|
+
* Performs the detach from target operation for the request capability.
|
|
703
|
+
* Calls `DELETE /api/v1/requests/{host}/{target_id}` through the shared IDP-aware Faiber client.
|
|
704
|
+
* @param host Backend path identifier `host`.
|
|
705
|
+
* @param targetId Backend path identifier `target_id`.
|
|
706
|
+
* @param params Typed query parameters; omitted members retain backend defaults.
|
|
707
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
708
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
709
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
|
|
710
|
+
*/
|
|
151
711
|
requestDetachFromTargetDelete(host: Identifier, targetId: Identifier, params?: T.RequestDetachFromTargetDeleteQuery, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.RequestDetachFromTargetDeleteResponse, unknown, {}>>;
|
|
152
|
-
/**
|
|
712
|
+
/**
|
|
713
|
+
* Performs the list on target operation for the request capability.
|
|
714
|
+
* Calls `GET /api/v1/requests/{host}/{target_id}` through the shared IDP-aware Faiber client.
|
|
715
|
+
* @param host Backend path identifier `host`.
|
|
716
|
+
* @param targetId Backend path identifier `target_id`.
|
|
717
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
718
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
719
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
|
|
720
|
+
*/
|
|
153
721
|
requestListOnTargetGet(host: Identifier, targetId: Identifier, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.RequestListOnTargetGetResponse, unknown, {}>>;
|
|
154
|
-
/**
|
|
722
|
+
/**
|
|
723
|
+
* Performs the attach to target operation for the request capability.
|
|
724
|
+
* Calls `POST /api/v1/requests/{host}/{target_id}` through the shared IDP-aware Faiber client.
|
|
725
|
+
* @param host Backend path identifier `host`.
|
|
726
|
+
* @param targetId Backend path identifier `target_id`.
|
|
727
|
+
* @param data Typed JSON request body.
|
|
728
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
729
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
730
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
|
|
731
|
+
*/
|
|
155
732
|
requestAttachToTargetPost(host: Identifier, targetId: Identifier, data: T.RequestAttachToTargetPostInput, options?: RequestOptions<T.RequestAttachToTargetPostInput>): Promise<import("axios").AxiosResponse<T.RequestAttachToTargetPostResponse, T.RequestAttachToTargetPostInput, {}>>;
|
|
156
|
-
/**
|
|
733
|
+
/**
|
|
734
|
+
* Performs the delete request operation for the request capability.
|
|
735
|
+
* Calls `DELETE /api/v1/requests/{id}` through the shared IDP-aware Faiber client.
|
|
736
|
+
* @param id Backend path identifier `id`.
|
|
737
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
738
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
739
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
|
|
740
|
+
*/
|
|
157
741
|
requestDeleteRequestDelete(id: Identifier, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.RequestDeleteRequestDeleteResponse, unknown, {}>>;
|
|
158
|
-
/**
|
|
742
|
+
/**
|
|
743
|
+
* Performs the show request operation for the request capability.
|
|
744
|
+
* Calls `GET /api/v1/requests/{id}` through the shared IDP-aware Faiber client.
|
|
745
|
+
* @param id Backend path identifier `id`.
|
|
746
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
747
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
748
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
|
|
749
|
+
*/
|
|
159
750
|
requestShowRequestGet(id: Identifier, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.RequestShowRequestGetResponse, unknown, {}>>;
|
|
160
|
-
/**
|
|
751
|
+
/**
|
|
752
|
+
* Performs the update request operation for the request capability.
|
|
753
|
+
* Calls `PATCH /api/v1/requests/{id}` through the shared IDP-aware Faiber client.
|
|
754
|
+
* @param id Backend path identifier `id`.
|
|
755
|
+
* @param data Typed JSON request body.
|
|
756
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
757
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
758
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
|
|
759
|
+
*/
|
|
161
760
|
requestUpdateRequestPatch(id: Identifier, data: T.RequestUpdateRequestPatchInput, options?: RequestOptions<T.RequestUpdateRequestPatchInput>): Promise<import("axios").AxiosResponse<T.RequestUpdateRequestPatchResponse, T.RequestUpdateRequestPatchInput, {}>>;
|
|
162
|
-
/**
|
|
761
|
+
/**
|
|
762
|
+
* Performs the update request operation for the request capability.
|
|
763
|
+
* Calls `PUT /api/v1/requests/{id}` through the shared IDP-aware Faiber client.
|
|
764
|
+
* @param id Backend path identifier `id`.
|
|
765
|
+
* @param data Typed JSON request body.
|
|
766
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
767
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
768
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
|
|
769
|
+
*/
|
|
163
770
|
requestUpdateRequestPut(id: Identifier, data: T.RequestUpdateRequestPutInput, options?: RequestOptions<T.RequestUpdateRequestPutInput>): Promise<import("axios").AxiosResponse<T.RequestUpdateRequestPutResponse, T.RequestUpdateRequestPutInput, {}>>;
|
|
164
|
-
/**
|
|
771
|
+
/**
|
|
772
|
+
* Performs the list logs for request operation for the request capability.
|
|
773
|
+
* Calls `GET /api/v1/requests/{request_id}/logs` through the shared IDP-aware Faiber client.
|
|
774
|
+
* @param requestId Backend path identifier `request_id`.
|
|
775
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
776
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
777
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
|
|
778
|
+
*/
|
|
165
779
|
requestListLogsForRequestGet(requestId: Identifier, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.RequestListLogsForRequestGetResponse, unknown, {}>>;
|
|
166
|
-
/**
|
|
780
|
+
/**
|
|
781
|
+
* Performs the submit operation for the request capability.
|
|
782
|
+
* Calls `POST /api/v1/requests/{request_id}/logs` through the shared IDP-aware Faiber client.
|
|
783
|
+
* @param requestId Backend path identifier `request_id`.
|
|
784
|
+
* @param data Typed JSON request body.
|
|
785
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
786
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
787
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
|
|
788
|
+
*/
|
|
167
789
|
requestSubmitPost(requestId: Identifier, data: T.RequestSubmitPostInput, options?: RequestOptions<T.RequestSubmitPostInput>): Promise<import("axios").AxiosResponse<T.RequestSubmitPostResponse, T.RequestSubmitPostInput, {}>>;
|
|
168
|
-
/**
|
|
790
|
+
/**
|
|
791
|
+
* Performs the list logs for category operation for the request capability.
|
|
792
|
+
* Calls `GET /api/v1/requests/category/{category_id}/logs` through the shared IDP-aware Faiber client.
|
|
793
|
+
* @param categoryId Backend path identifier `category_id`.
|
|
794
|
+
* @param params Typed query parameters; omitted members retain backend defaults.
|
|
795
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
796
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
797
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
|
|
798
|
+
*/
|
|
169
799
|
requestListLogsForCategoryGet(categoryId: Identifier, params?: T.RequestListLogsForCategoryGetQuery, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.RequestListLogsForCategoryGetResponse, unknown, {}>>;
|
|
170
|
-
/**
|
|
800
|
+
/**
|
|
801
|
+
* Performs the list samples operation for the user sample capability.
|
|
802
|
+
* Calls `GET /api/v1/samples` through the shared IDP-aware Faiber client.
|
|
803
|
+
* @param params Typed query parameters; omitted members retain backend defaults.
|
|
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
|
+
*/
|
|
171
808
|
userSampleListSamplesGet(params?: T.UserSampleListSamplesGetQuery, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.UserSampleListSamplesGetResponse, unknown, {}>>;
|
|
172
|
-
/**
|
|
809
|
+
/**
|
|
810
|
+
* Performs the create sample operation for the user sample capability.
|
|
811
|
+
* Calls `POST /api/v1/samples` through the shared IDP-aware Faiber client.
|
|
812
|
+
* @param data Typed JSON request body.
|
|
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
|
+
*/
|
|
173
817
|
userSampleCreateSamplePost(data: T.UserSampleCreateSamplePostInput, options?: RequestOptions<T.UserSampleCreateSamplePostInput>): Promise<import("axios").AxiosResponse<T.UserSampleCreateSamplePostResponse, T.UserSampleCreateSamplePostInput, {}>>;
|
|
174
|
-
/**
|
|
818
|
+
/**
|
|
819
|
+
* Performs the delete sample operation for the user sample capability.
|
|
820
|
+
* Calls `DELETE /api/v1/samples/{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
|
+
*/
|
|
175
826
|
userSampleDeleteSampleDelete(id: Identifier, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.UserSampleDeleteSampleDeleteResponse, unknown, {}>>;
|
|
176
|
-
/**
|
|
827
|
+
/**
|
|
828
|
+
* Performs the show sample operation for the user sample capability.
|
|
829
|
+
* Calls `GET /api/v1/samples/{id}` through the shared IDP-aware Faiber client.
|
|
830
|
+
* @param id Backend path identifier `id`.
|
|
831
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
832
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
833
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
|
|
834
|
+
*/
|
|
177
835
|
userSampleShowSampleGet(id: Identifier, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.UserSampleShowSampleGetResponse, unknown, {}>>;
|
|
178
|
-
/**
|
|
836
|
+
/**
|
|
837
|
+
* Performs the update sample operation for the user sample capability.
|
|
838
|
+
* Calls `PATCH /api/v1/samples/{id}` through the shared IDP-aware Faiber client.
|
|
839
|
+
* @param id Backend path identifier `id`.
|
|
840
|
+
* @param data Typed JSON request body.
|
|
841
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
842
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
843
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
|
|
844
|
+
*/
|
|
179
845
|
userSampleUpdateSamplePatch(id: Identifier, data: T.UserSampleUpdateSamplePatchInput, options?: RequestOptions<T.UserSampleUpdateSamplePatchInput>): Promise<import("axios").AxiosResponse<T.UserSampleUpdateSamplePatchResponse, T.UserSampleUpdateSamplePatchInput, {}>>;
|
|
180
|
-
/**
|
|
846
|
+
/**
|
|
847
|
+
* Performs the update sample operation for the user sample capability.
|
|
848
|
+
* Calls `PUT /api/v1/samples/{id}` through the shared IDP-aware Faiber client.
|
|
849
|
+
* @param id Backend path identifier `id`.
|
|
850
|
+
* @param data Typed JSON request body.
|
|
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
|
+
*/
|
|
181
855
|
userSampleUpdateSamplePut(id: Identifier, data: T.UserSampleUpdateSamplePutInput, options?: RequestOptions<T.UserSampleUpdateSamplePutInput>): Promise<import("axios").AxiosResponse<T.UserSampleUpdateSamplePutResponse, T.UserSampleUpdateSamplePutInput, {}>>;
|
|
182
|
-
/**
|
|
856
|
+
/**
|
|
857
|
+
* Performs the list sample variables operation for the user sample capability.
|
|
858
|
+
* Calls `GET /api/v1/samples/{sample_id}/variables` through the shared IDP-aware Faiber client.
|
|
859
|
+
* @param sampleId Backend path identifier `sample_id`.
|
|
860
|
+
* @param params Typed query parameters; omitted members retain backend defaults.
|
|
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
|
+
*/
|
|
183
865
|
userSampleListSampleVariablesGet(sampleId: Identifier, params?: T.UserSampleListSampleVariablesGetQuery, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.UserSampleListSampleVariablesGetResponse, unknown, {}>>;
|
|
184
|
-
/**
|
|
866
|
+
/**
|
|
867
|
+
* Performs the create sample variable operation for the user sample capability.
|
|
868
|
+
* Calls `POST /api/v1/samples/{sample_id}/variables` through the shared IDP-aware Faiber client.
|
|
869
|
+
* @param sampleId Backend path identifier `sample_id`.
|
|
870
|
+
* @param data Typed JSON request body.
|
|
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
|
+
*/
|
|
185
875
|
userSampleCreateSampleVariablePost(sampleId: Identifier, data: T.UserSampleCreateSampleVariablePostInput, options?: RequestOptions<T.UserSampleCreateSampleVariablePostInput>): Promise<import("axios").AxiosResponse<T.UserSampleCreateSampleVariablePostResponse, T.UserSampleCreateSampleVariablePostInput, {}>>;
|
|
186
|
-
/**
|
|
876
|
+
/**
|
|
877
|
+
* Performs the variables map by slug operation for the user sample capability.
|
|
878
|
+
* Calls `GET /api/v1/samples/by-slug/{slug}/variables-map` through the shared IDP-aware Faiber client.
|
|
879
|
+
* @param slug Backend path identifier `slug`.
|
|
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
|
+
*/
|
|
187
884
|
userSampleVariablesMapBySlugGet(slug: Identifier, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.UserSampleVariablesMapBySlugGetResponse, unknown, {}>>;
|
|
188
|
-
/**
|
|
885
|
+
/**
|
|
886
|
+
* Performs the list all variables operation for the user sample capability.
|
|
887
|
+
* Calls `GET /api/v1/samples/variables` through the shared IDP-aware Faiber client.
|
|
888
|
+
* @param params Typed query parameters; omitted members retain backend defaults.
|
|
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
|
+
*/
|
|
189
893
|
userSampleListAllVariablesGet(params?: T.UserSampleListAllVariablesGetQuery, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.UserSampleListAllVariablesGetResponse, unknown, {}>>;
|
|
190
|
-
/**
|
|
894
|
+
/**
|
|
895
|
+
* Performs the delete variable operation for the user sample capability.
|
|
896
|
+
* Calls `DELETE /api/v1/samples/variables/{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
|
+
*/
|
|
191
902
|
userSampleDeleteVariableDelete(id: Identifier, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.UserSampleDeleteVariableDeleteResponse, unknown, {}>>;
|
|
192
|
-
/**
|
|
903
|
+
/**
|
|
904
|
+
* Performs the show variable operation for the user sample capability.
|
|
905
|
+
* Calls `GET /api/v1/samples/variables/{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
|
+
*/
|
|
193
911
|
userSampleShowVariableGet(id: Identifier, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.UserSampleShowVariableGetResponse, unknown, {}>>;
|
|
194
|
-
/**
|
|
912
|
+
/**
|
|
913
|
+
* Performs the update variable operation for the user sample capability.
|
|
914
|
+
* Calls `PATCH /api/v1/samples/variables/{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
|
+
*/
|
|
195
921
|
userSampleUpdateVariablePatch(id: Identifier, data: T.UserSampleUpdateVariablePatchInput, options?: RequestOptions<T.UserSampleUpdateVariablePatchInput>): Promise<import("axios").AxiosResponse<T.UserSampleUpdateVariablePatchResponse, T.UserSampleUpdateVariablePatchInput, {}>>;
|
|
196
|
-
/**
|
|
922
|
+
/**
|
|
923
|
+
* Performs the update variable operation for the user sample capability.
|
|
924
|
+
* Calls `PUT /api/v1/samples/variables/{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
|
+
*/
|
|
197
931
|
userSampleUpdateVariablePut(id: Identifier, data: T.UserSampleUpdateVariablePutInput, options?: RequestOptions<T.UserSampleUpdateVariablePutInput>): Promise<import("axios").AxiosResponse<T.UserSampleUpdateVariablePutResponse, T.UserSampleUpdateVariablePutInput, {}>>;
|
|
198
|
-
/**
|
|
932
|
+
/**
|
|
933
|
+
* Performs the list seo contents operation for the seo content capability.
|
|
934
|
+
* Calls `GET /api/v1/seo-contents` through the shared IDP-aware Faiber client.
|
|
935
|
+
* @param params Typed query parameters; omitted members retain backend defaults.
|
|
936
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
937
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
938
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
|
|
939
|
+
*/
|
|
199
940
|
seoContentListSeoContentsGet(params?: T.SeoContentListSeoContentsGetQuery, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.SeoContentListSeoContentsGetResponse, unknown, {}>>;
|
|
200
|
-
/**
|
|
941
|
+
/**
|
|
942
|
+
* Performs the create seo content operation for the seo content capability.
|
|
943
|
+
* Calls `POST /api/v1/seo-contents` through the shared IDP-aware Faiber client.
|
|
944
|
+
* @param data Typed JSON request body.
|
|
945
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
946
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
947
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
|
|
948
|
+
*/
|
|
201
949
|
seoContentCreateSeoContentPost(data: T.SeoContentCreateSeoContentPostInput, options?: RequestOptions<T.SeoContentCreateSeoContentPostInput>): Promise<import("axios").AxiosResponse<T.SeoContentCreateSeoContentPostResponse, T.SeoContentCreateSeoContentPostInput, {}>>;
|
|
202
|
-
/**
|
|
950
|
+
/**
|
|
951
|
+
* Performs the detach from target operation for the seo content capability.
|
|
952
|
+
* Calls `DELETE /api/v1/seo-contents/{host}/{target_id}` through the shared IDP-aware Faiber client.
|
|
953
|
+
* @param host Backend path identifier `host`.
|
|
954
|
+
* @param targetId Backend path identifier `target_id`.
|
|
955
|
+
* @param params Typed query parameters; omitted members retain backend defaults.
|
|
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
|
+
*/
|
|
203
960
|
seoContentDetachFromTargetDelete(host: Identifier, targetId: Identifier, params?: T.SeoContentDetachFromTargetDeleteQuery, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.SeoContentDetachFromTargetDeleteResponse, unknown, {}>>;
|
|
204
|
-
/**
|
|
961
|
+
/**
|
|
962
|
+
* Performs the list on target operation for the seo content capability.
|
|
963
|
+
* Calls `GET /api/v1/seo-contents/{host}/{target_id}` through the shared IDP-aware Faiber client.
|
|
964
|
+
* @param host Backend path identifier `host`.
|
|
965
|
+
* @param targetId Backend path identifier `target_id`.
|
|
966
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
967
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
968
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
|
|
969
|
+
*/
|
|
205
970
|
seoContentListOnTargetGet(host: Identifier, targetId: Identifier, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.SeoContentListOnTargetGetResponse, unknown, {}>>;
|
|
206
|
-
/**
|
|
971
|
+
/**
|
|
972
|
+
* Performs the attach to target operation for the seo content capability.
|
|
973
|
+
* Calls `POST /api/v1/seo-contents/{host}/{target_id}` through the shared IDP-aware Faiber client.
|
|
974
|
+
* @param host Backend path identifier `host`.
|
|
975
|
+
* @param targetId Backend path identifier `target_id`.
|
|
976
|
+
* @param data Typed JSON request body.
|
|
977
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
978
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
979
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
|
|
980
|
+
*/
|
|
207
981
|
seoContentAttachToTargetPost(host: Identifier, targetId: Identifier, data: T.SeoContentAttachToTargetPostInput, options?: RequestOptions<T.SeoContentAttachToTargetPostInput>): Promise<import("axios").AxiosResponse<T.SeoContentAttachToTargetPostResponse, T.SeoContentAttachToTargetPostInput, {}>>;
|
|
208
|
-
/**
|
|
982
|
+
/**
|
|
983
|
+
* Performs the delete seo content operation for the seo content capability.
|
|
984
|
+
* Calls `DELETE /api/v1/seo-contents/{id}` through the shared IDP-aware Faiber client.
|
|
985
|
+
* @param id Backend path identifier `id`.
|
|
986
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
987
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
988
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
|
|
989
|
+
*/
|
|
209
990
|
seoContentDeleteSeoContentDelete(id: Identifier, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.SeoContentDeleteSeoContentDeleteResponse, unknown, {}>>;
|
|
210
|
-
/**
|
|
991
|
+
/**
|
|
992
|
+
* Performs the show seo content operation for the seo content capability.
|
|
993
|
+
* Calls `GET /api/v1/seo-contents/{id}` through the shared IDP-aware Faiber client.
|
|
994
|
+
* @param id Backend path identifier `id`.
|
|
995
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
996
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
997
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
|
|
998
|
+
*/
|
|
211
999
|
seoContentShowSeoContentGet(id: Identifier, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.SeoContentShowSeoContentGetResponse, unknown, {}>>;
|
|
212
|
-
/**
|
|
1000
|
+
/**
|
|
1001
|
+
* Performs the update seo content operation for the seo content capability.
|
|
1002
|
+
* Calls `PATCH /api/v1/seo-contents/{id}` through the shared IDP-aware Faiber client.
|
|
1003
|
+
* @param id Backend path identifier `id`.
|
|
1004
|
+
* @param data Typed JSON request body.
|
|
1005
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
1006
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
1007
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
|
|
1008
|
+
*/
|
|
213
1009
|
seoContentUpdateSeoContentPatch(id: Identifier, data: T.SeoContentUpdateSeoContentPatchInput, options?: RequestOptions<T.SeoContentUpdateSeoContentPatchInput>): Promise<import("axios").AxiosResponse<T.SeoContentUpdateSeoContentPatchResponse, T.SeoContentUpdateSeoContentPatchInput, {}>>;
|
|
214
|
-
/**
|
|
1010
|
+
/**
|
|
1011
|
+
* Performs the update seo content operation for the seo content capability.
|
|
1012
|
+
* Calls `PUT /api/v1/seo-contents/{id}` through the shared IDP-aware Faiber client.
|
|
1013
|
+
* @param id Backend path identifier `id`.
|
|
1014
|
+
* @param data Typed JSON request body.
|
|
1015
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
1016
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
1017
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
|
|
1018
|
+
*/
|
|
215
1019
|
seoContentUpdateSeoContentPut(id: Identifier, data: T.SeoContentUpdateSeoContentPutInput, options?: RequestOptions<T.SeoContentUpdateSeoContentPutInput>): Promise<import("axios").AxiosResponse<T.SeoContentUpdateSeoContentPutResponse, T.SeoContentUpdateSeoContentPutInput, {}>>;
|
|
216
|
-
/**
|
|
1020
|
+
/**
|
|
1021
|
+
* Performs the show operation for the cart capability.
|
|
1022
|
+
* Calls `GET /api/v1/shop/cart` through the shared IDP-aware Faiber client.
|
|
1023
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
1024
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
1025
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
|
|
1026
|
+
*/
|
|
217
1027
|
cartShowGet(options?: RequestOptions): Promise<import("axios").AxiosResponse<T.CartShowGetResponse, unknown, {}>>;
|
|
218
|
-
/**
|
|
1028
|
+
/**
|
|
1029
|
+
* Performs the replace operation for the cart capability.
|
|
1030
|
+
* Calls `PUT /api/v1/shop/cart` through the shared IDP-aware Faiber client.
|
|
1031
|
+
* @param data Typed JSON request body.
|
|
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
|
+
*/
|
|
219
1036
|
cartReplacePut(data: T.CartReplacePutInput, options?: RequestOptions<T.CartReplacePutInput>): Promise<import("axios").AxiosResponse<T.CartReplacePutResponse, T.CartReplacePutInput, {}>>;
|
|
220
|
-
/**
|
|
1037
|
+
/**
|
|
1038
|
+
* Performs the list orders operation for the order capability.
|
|
1039
|
+
* Calls `GET /api/v1/shop/orders` through the shared IDP-aware Faiber client.
|
|
1040
|
+
* @param params Typed query parameters; omitted members retain backend defaults.
|
|
1041
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
1042
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
1043
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
|
|
1044
|
+
*/
|
|
221
1045
|
orderListOrdersGet(params?: T.OrderListOrdersGetQuery, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.OrderListOrdersGetResponse, unknown, {}>>;
|
|
222
|
-
/**
|
|
1046
|
+
/**
|
|
1047
|
+
* Performs the create order operation for the order capability.
|
|
1048
|
+
* Calls `POST /api/v1/shop/orders` through the shared IDP-aware Faiber client.
|
|
1049
|
+
* @param data Typed JSON request body.
|
|
1050
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
1051
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
1052
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
|
|
1053
|
+
*/
|
|
223
1054
|
orderCreateOrderPost(data: T.OrderCreateOrderPostInput, options?: RequestOptions<T.OrderCreateOrderPostInput>): Promise<import("axios").AxiosResponse<T.OrderCreateOrderPostResponse, T.OrderCreateOrderPostInput, {}>>;
|
|
224
|
-
/**
|
|
1055
|
+
/**
|
|
1056
|
+
* Performs the delete order operation for the order capability.
|
|
1057
|
+
* Calls `DELETE /api/v1/shop/orders/{id}` through the shared IDP-aware Faiber client.
|
|
1058
|
+
* @param id Backend path identifier `id`.
|
|
1059
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
1060
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
1061
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
|
|
1062
|
+
*/
|
|
225
1063
|
orderDeleteOrderDelete(id: Identifier, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.OrderDeleteOrderDeleteResponse, unknown, {}>>;
|
|
226
|
-
/**
|
|
1064
|
+
/**
|
|
1065
|
+
* Performs the show order operation for the order capability.
|
|
1066
|
+
* Calls `GET /api/v1/shop/orders/{id}` through the shared IDP-aware Faiber client.
|
|
1067
|
+
* @param id Backend path identifier `id`.
|
|
1068
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
1069
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
1070
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
|
|
1071
|
+
*/
|
|
227
1072
|
orderShowOrderGet(id: Identifier, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.OrderShowOrderGetResponse, unknown, {}>>;
|
|
228
|
-
/**
|
|
1073
|
+
/**
|
|
1074
|
+
* Performs the update order operation for the order capability.
|
|
1075
|
+
* Calls `PATCH /api/v1/shop/orders/{id}` through the shared IDP-aware Faiber client.
|
|
1076
|
+
* @param id Backend path identifier `id`.
|
|
1077
|
+
* @param data Typed JSON request body.
|
|
1078
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
1079
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
1080
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
|
|
1081
|
+
*/
|
|
229
1082
|
orderUpdateOrderPatch(id: Identifier, data: T.OrderUpdateOrderPatchInput, options?: RequestOptions<T.OrderUpdateOrderPatchInput>): Promise<import("axios").AxiosResponse<T.OrderUpdateOrderPatchResponse, T.OrderUpdateOrderPatchInput, {}>>;
|
|
230
|
-
/**
|
|
1083
|
+
/**
|
|
1084
|
+
* Performs the update order operation for the order capability.
|
|
1085
|
+
* Calls `PUT /api/v1/shop/orders/{id}` through the shared IDP-aware Faiber client.
|
|
1086
|
+
* @param id Backend path identifier `id`.
|
|
1087
|
+
* @param data Typed JSON request body.
|
|
1088
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
1089
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
1090
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
|
|
1091
|
+
*/
|
|
231
1092
|
orderUpdateOrderPut(id: Identifier, data: T.OrderUpdateOrderPutInput, options?: RequestOptions<T.OrderUpdateOrderPutInput>): Promise<import("axios").AxiosResponse<T.OrderUpdateOrderPutResponse, T.OrderUpdateOrderPutInput, {}>>;
|
|
232
|
-
/**
|
|
1093
|
+
/**
|
|
1094
|
+
* Performs the list order items operation for the order capability.
|
|
1095
|
+
* Calls `GET /api/v1/shop/orders/{order_id}/items` through the shared IDP-aware Faiber client.
|
|
1096
|
+
* @param orderId Backend path identifier `order_id`.
|
|
1097
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
1098
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
1099
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
|
|
1100
|
+
*/
|
|
233
1101
|
orderListOrderItemsGet(orderId: Identifier, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.OrderListOrderItemsGetResponse, unknown, {}>>;
|
|
234
|
-
/**
|
|
1102
|
+
/**
|
|
1103
|
+
* Performs the add order item operation for the order capability.
|
|
1104
|
+
* Calls `POST /api/v1/shop/orders/{order_id}/items` through the shared IDP-aware Faiber client.
|
|
1105
|
+
* @param orderId Backend path identifier `order_id`.
|
|
1106
|
+
* @param data Typed JSON request body.
|
|
1107
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
1108
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
1109
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
|
|
1110
|
+
*/
|
|
235
1111
|
orderAddOrderItemPost(orderId: Identifier, data: T.OrderAddOrderItemPostInput, options?: RequestOptions<T.OrderAddOrderItemPostInput>): Promise<import("axios").AxiosResponse<T.OrderAddOrderItemPostResponse, T.OrderAddOrderItemPostInput, {}>>;
|
|
236
|
-
/**
|
|
1112
|
+
/**
|
|
1113
|
+
* Performs the list products operation for the product capability.
|
|
1114
|
+
* Calls `GET /api/v1/shop/products` through the shared IDP-aware Faiber client.
|
|
1115
|
+
* @param params Typed query parameters; omitted members retain backend defaults.
|
|
1116
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
1117
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
1118
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
|
|
1119
|
+
*/
|
|
237
1120
|
productListProductsGet(params?: T.ProductListProductsGetQuery, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.ProductListProductsGetResponse, unknown, {}>>;
|
|
238
|
-
/**
|
|
1121
|
+
/**
|
|
1122
|
+
* Performs the create product operation for the product capability.
|
|
1123
|
+
* Calls `POST /api/v1/shop/products` through the shared IDP-aware Faiber client.
|
|
1124
|
+
* @param data Typed JSON request body.
|
|
1125
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
1126
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
1127
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
|
|
1128
|
+
*/
|
|
239
1129
|
productCreateProductPost(data: T.ProductCreateProductPostInput, options?: RequestOptions<T.ProductCreateProductPostInput>): Promise<import("axios").AxiosResponse<T.ProductCreateProductPostResponse, T.ProductCreateProductPostInput, {}>>;
|
|
240
|
-
/**
|
|
1130
|
+
/**
|
|
1131
|
+
* Performs the delete product operation for the product capability.
|
|
1132
|
+
* Calls `DELETE /api/v1/shop/products/{id}` through the shared IDP-aware Faiber client.
|
|
1133
|
+
* @param id Backend path identifier `id`.
|
|
1134
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
1135
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
1136
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
|
|
1137
|
+
*/
|
|
241
1138
|
productDeleteProductDelete(id: Identifier, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.ProductDeleteProductDeleteResponse, unknown, {}>>;
|
|
242
|
-
/**
|
|
1139
|
+
/**
|
|
1140
|
+
* Performs the show product operation for the product capability.
|
|
1141
|
+
* Calls `GET /api/v1/shop/products/{id}` through the shared IDP-aware Faiber client.
|
|
1142
|
+
* @param id Backend path identifier `id`.
|
|
1143
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
1144
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
1145
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
|
|
1146
|
+
*/
|
|
243
1147
|
productShowProductGet(id: Identifier, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.ProductShowProductGetResponse, unknown, {}>>;
|
|
244
|
-
/**
|
|
1148
|
+
/**
|
|
1149
|
+
* Performs the update product operation for the product capability.
|
|
1150
|
+
* Calls `PATCH /api/v1/shop/products/{id}` through the shared IDP-aware Faiber client.
|
|
1151
|
+
* @param id Backend path identifier `id`.
|
|
1152
|
+
* @param data Typed JSON request body.
|
|
1153
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
1154
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
1155
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
|
|
1156
|
+
*/
|
|
245
1157
|
productUpdateProductPatch(id: Identifier, data: T.ProductUpdateProductPatchInput, options?: RequestOptions<T.ProductUpdateProductPatchInput>): Promise<import("axios").AxiosResponse<T.ProductUpdateProductPatchResponse, T.ProductUpdateProductPatchInput, {}>>;
|
|
246
|
-
/**
|
|
1158
|
+
/**
|
|
1159
|
+
* Performs the update product operation for the product capability.
|
|
1160
|
+
* Calls `PUT /api/v1/shop/products/{id}` through the shared IDP-aware Faiber client.
|
|
1161
|
+
* @param id Backend path identifier `id`.
|
|
1162
|
+
* @param data Typed JSON request body.
|
|
1163
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
1164
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
1165
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
|
|
1166
|
+
*/
|
|
247
1167
|
productUpdateProductPut(id: Identifier, data: T.ProductUpdateProductPutInput, options?: RequestOptions<T.ProductUpdateProductPutInput>): Promise<import("axios").AxiosResponse<T.ProductUpdateProductPutResponse, T.ProductUpdateProductPutInput, {}>>;
|
|
248
|
-
/**
|
|
1168
|
+
/**
|
|
1169
|
+
* Performs the list product variants operation for the product capability.
|
|
1170
|
+
* Calls `GET /api/v1/shop/products/{product_id}/variants` through the shared IDP-aware Faiber client.
|
|
1171
|
+
* @param productId Backend path identifier `product_id`.
|
|
1172
|
+
* @param params Typed query parameters; omitted members retain backend defaults.
|
|
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
|
+
*/
|
|
249
1177
|
productListProductVariantsGet(productId: Identifier, params?: T.ProductListProductVariantsGetQuery, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.ProductListProductVariantsGetResponse, unknown, {}>>;
|
|
250
|
-
/**
|
|
1178
|
+
/**
|
|
1179
|
+
* Performs the create variant operation for the product capability.
|
|
1180
|
+
* Calls `POST /api/v1/shop/products/{product_id}/variants` through the shared IDP-aware Faiber client.
|
|
1181
|
+
* @param productId Backend path identifier `product_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
|
+
*/
|
|
251
1187
|
productCreateVariantPost(productId: Identifier, data: T.ProductCreateVariantPostInput, options?: RequestOptions<T.ProductCreateVariantPostInput>): Promise<import("axios").AxiosResponse<T.ProductCreateVariantPostResponse, T.ProductCreateVariantPostInput, {}>>;
|
|
252
|
-
/**
|
|
1188
|
+
/**
|
|
1189
|
+
* Performs the list variants operation for the product capability.
|
|
1190
|
+
* Calls `GET /api/v1/shop/variants` 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
|
+
*/
|
|
253
1196
|
productListVariantsGet(params?: T.ProductListVariantsGetQuery, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.ProductListVariantsGetResponse, unknown, {}>>;
|
|
254
|
-
/**
|
|
1197
|
+
/**
|
|
1198
|
+
* Performs the delete variant operation for the product capability.
|
|
1199
|
+
* Calls `DELETE /api/v1/shop/variants/{id}` through the shared IDP-aware Faiber client.
|
|
1200
|
+
* @param id Backend path identifier `id`.
|
|
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
|
+
*/
|
|
255
1205
|
productDeleteVariantDelete(id: Identifier, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.ProductDeleteVariantDeleteResponse, unknown, {}>>;
|
|
256
|
-
/**
|
|
1206
|
+
/**
|
|
1207
|
+
* Performs the show variant operation for the product capability.
|
|
1208
|
+
* Calls `GET /api/v1/shop/variants/{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
|
+
*/
|
|
257
1214
|
productShowVariantGet(id: Identifier, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.ProductShowVariantGetResponse, unknown, {}>>;
|
|
258
|
-
/**
|
|
1215
|
+
/**
|
|
1216
|
+
* Performs the update variant operation for the product capability.
|
|
1217
|
+
* Calls `PATCH /api/v1/shop/variants/{id}` through the shared IDP-aware Faiber client.
|
|
1218
|
+
* @param id Backend path identifier `id`.
|
|
1219
|
+
* @param data Typed JSON request body.
|
|
1220
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
1221
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
1222
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
|
|
1223
|
+
*/
|
|
259
1224
|
productUpdateVariantPatch(id: Identifier, data: T.ProductUpdateVariantPatchInput, options?: RequestOptions<T.ProductUpdateVariantPatchInput>): Promise<import("axios").AxiosResponse<T.ProductUpdateVariantPatchResponse, T.ProductUpdateVariantPatchInput, {}>>;
|
|
260
|
-
/**
|
|
1225
|
+
/**
|
|
1226
|
+
* Performs the update variant operation for the product capability.
|
|
1227
|
+
* Calls `PUT /api/v1/shop/variants/{id}` through the shared IDP-aware Faiber client.
|
|
1228
|
+
* @param id Backend path identifier `id`.
|
|
1229
|
+
* @param data Typed JSON request body.
|
|
1230
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
1231
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
1232
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
|
|
1233
|
+
*/
|
|
261
1234
|
productUpdateVariantPut(id: Identifier, data: T.ProductUpdateVariantPutInput, options?: RequestOptions<T.ProductUpdateVariantPutInput>): Promise<import("axios").AxiosResponse<T.ProductUpdateVariantPutResponse, T.ProductUpdateVariantPutInput, {}>>;
|
|
262
|
-
/**
|
|
1235
|
+
/**
|
|
1236
|
+
* Performs the list tags operation for the tag capability.
|
|
1237
|
+
* Calls `GET /api/v1/tags` through the shared IDP-aware Faiber client.
|
|
1238
|
+
* @param params Typed query parameters; omitted members retain backend defaults.
|
|
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
|
+
*/
|
|
263
1243
|
tagListTagsGet(params?: T.TagListTagsGetQuery, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.TagListTagsGetResponse, unknown, {}>>;
|
|
264
|
-
/**
|
|
1244
|
+
/**
|
|
1245
|
+
* Performs the create tag operation for the tag capability.
|
|
1246
|
+
* Calls `POST /api/v1/tags` through the shared IDP-aware Faiber client.
|
|
1247
|
+
* @param data Typed JSON request body.
|
|
1248
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
1249
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
1250
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
|
|
1251
|
+
*/
|
|
265
1252
|
tagCreateTagPost(data: T.TagCreateTagPostInput, options?: RequestOptions<T.TagCreateTagPostInput>): Promise<import("axios").AxiosResponse<T.TagCreateTagPostResponse, T.TagCreateTagPostInput, {}>>;
|
|
266
|
-
/**
|
|
1253
|
+
/**
|
|
1254
|
+
* Performs the detach from target operation for the tag capability.
|
|
1255
|
+
* Calls `DELETE /api/v1/tags/{host}/{target_id}` through the shared IDP-aware Faiber client.
|
|
1256
|
+
* @param host Backend path identifier `host`.
|
|
1257
|
+
* @param targetId Backend path identifier `target_id`.
|
|
1258
|
+
* @param params Typed query parameters; omitted members retain backend defaults.
|
|
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
|
+
*/
|
|
267
1263
|
tagDetachFromTargetDelete(host: Identifier, targetId: Identifier, params?: T.TagDetachFromTargetDeleteQuery, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.TagDetachFromTargetDeleteResponse, unknown, {}>>;
|
|
268
|
-
/**
|
|
1264
|
+
/**
|
|
1265
|
+
* Performs the list on target operation for the tag capability.
|
|
1266
|
+
* Calls `GET /api/v1/tags/{host}/{target_id}` through the shared IDP-aware Faiber client.
|
|
1267
|
+
* @param host Backend path identifier `host`.
|
|
1268
|
+
* @param targetId Backend path identifier `target_id`.
|
|
1269
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
1270
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
1271
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
|
|
1272
|
+
*/
|
|
269
1273
|
tagListOnTargetGet(host: Identifier, targetId: Identifier, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.TagListOnTargetGetResponse, unknown, {}>>;
|
|
270
|
-
/**
|
|
1274
|
+
/**
|
|
1275
|
+
* Performs the attach to target operation for the tag capability.
|
|
1276
|
+
* Calls `POST /api/v1/tags/{host}/{target_id}` through the shared IDP-aware Faiber client.
|
|
1277
|
+
* @param host Backend path identifier `host`.
|
|
1278
|
+
* @param targetId Backend path identifier `target_id`.
|
|
1279
|
+
* @param data Typed JSON request body.
|
|
1280
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
1281
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
1282
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
|
|
1283
|
+
*/
|
|
271
1284
|
tagAttachToTargetPost(host: Identifier, targetId: Identifier, data: T.TagAttachToTargetPostInput, options?: RequestOptions<T.TagAttachToTargetPostInput>): Promise<import("axios").AxiosResponse<T.TagAttachToTargetPostResponse, T.TagAttachToTargetPostInput, {}>>;
|
|
272
|
-
/**
|
|
1285
|
+
/**
|
|
1286
|
+
* Performs the delete tag operation for the tag capability.
|
|
1287
|
+
* Calls `DELETE /api/v1/tags/{id}` through the shared IDP-aware Faiber client.
|
|
1288
|
+
* @param id Backend path identifier `id`.
|
|
1289
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
1290
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
1291
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
|
|
1292
|
+
*/
|
|
273
1293
|
tagDeleteTagDelete(id: Identifier, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.TagDeleteTagDeleteResponse, unknown, {}>>;
|
|
274
|
-
/**
|
|
1294
|
+
/**
|
|
1295
|
+
* Performs the show tag operation for the tag capability.
|
|
1296
|
+
* Calls `GET /api/v1/tags/{id}` through the shared IDP-aware Faiber client.
|
|
1297
|
+
* @param id Backend path identifier `id`.
|
|
1298
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
1299
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
1300
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
|
|
1301
|
+
*/
|
|
275
1302
|
tagShowTagGet(id: Identifier, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.TagShowTagGetResponse, unknown, {}>>;
|
|
276
|
-
/**
|
|
1303
|
+
/**
|
|
1304
|
+
* Performs the update tag operation for the tag capability.
|
|
1305
|
+
* Calls `PATCH /api/v1/tags/{id}` through the shared IDP-aware Faiber client.
|
|
1306
|
+
* @param id Backend path identifier `id`.
|
|
1307
|
+
* @param data Typed JSON request body.
|
|
1308
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
1309
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
1310
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
|
|
1311
|
+
*/
|
|
277
1312
|
tagUpdateTagPatch(id: Identifier, data: T.TagUpdateTagPatchInput, options?: RequestOptions<T.TagUpdateTagPatchInput>): Promise<import("axios").AxiosResponse<T.TagUpdateTagPatchResponse, T.TagUpdateTagPatchInput, {}>>;
|
|
278
|
-
/**
|
|
1313
|
+
/**
|
|
1314
|
+
* Performs the update tag operation for the tag capability.
|
|
1315
|
+
* Calls `PUT /api/v1/tags/{id}` through the shared IDP-aware Faiber client.
|
|
1316
|
+
* @param id Backend path identifier `id`.
|
|
1317
|
+
* @param data Typed JSON request body.
|
|
1318
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
1319
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
1320
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
|
|
1321
|
+
*/
|
|
279
1322
|
tagUpdateTagPut(id: Identifier, data: T.TagUpdateTagPutInput, options?: RequestOptions<T.TagUpdateTagPutInput>): Promise<import("axios").AxiosResponse<T.TagUpdateTagPutResponse, T.TagUpdateTagPutInput, {}>>;
|
|
280
1323
|
}
|
|
281
1324
|
//# sourceMappingURL=operations.d.ts.map
|