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