@faiber/faiber-idp 0.3.0 → 0.5.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,97 +1,749 @@
1
1
  import { ServiceApi, type Identifier, type RequestOptions } from "@faiber/sdk-core";
2
2
  import type * as T from "./operations.types.js";
3
3
  export declare class IdpOperations extends ServiceApi {
4
- /** GET /; permission: public/session-derived. */
4
+ /**
5
+ * Performs the status route operation for the router capability.
6
+ * Calls `GET /` through the shared IDP-aware Faiber client.
7
+ * @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
8
+ * @returns The complete Axios response, including the typed service envelope, status, and headers.
9
+ * @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
10
+ */
5
11
  routerStatusRouteGet(options?: RequestOptions): Promise<import("axios").AxiosResponse<T.RouterStatusRouteGetResponse, unknown, {}>>;
6
- /** GET /api/openapi.json; permission: public/session-derived. */
12
+ /**
13
+ * Performs the openapi json operation for the router capability.
14
+ * Calls `GET /api/openapi.json` through the shared IDP-aware Faiber client.
15
+ * @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
16
+ * @returns The complete Axios response, including the typed service envelope, status, and headers.
17
+ * @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
18
+ */
7
19
  routerOpenapiJsonGet(options?: RequestOptions): Promise<import("axios").AxiosResponse<T.RouterOpenapiJsonGetResponse, unknown, {}>>;
8
- /** GET /api/v1/acl/permissions; permission: public/session-derived. */
20
+ /**
21
+ * Performs the discovery operation for the oidc capability.
22
+ * Calls `GET /api/v1/.well-known/openid-configuration` through the shared IDP-aware Faiber client.
23
+ * @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
24
+ * @returns The complete Axios response, including the typed service envelope, status, and headers.
25
+ * @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
26
+ */
27
+ oidcDiscoveryGet(options?: RequestOptions): Promise<import("axios").AxiosResponse<import("@faiber/sdk-core").JsonValue, unknown, {}>>;
28
+ /**
29
+ * Performs the permissions index operation for the acl capability.
30
+ * Calls `GET /api/v1/acl/permissions` through the shared IDP-aware Faiber client.
31
+ * @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
32
+ * @returns The complete Axios response, including the typed service envelope, status, and headers.
33
+ * @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
34
+ */
9
35
  aclPermissionsIndexGet(options?: RequestOptions): Promise<import("axios").AxiosResponse<T.AclPermissionsIndexGetResponse, unknown, {}>>;
10
- /** GET /api/v1/acl/roles; permission: public/session-derived. */
36
+ /**
37
+ * Performs the roles index operation for the acl capability.
38
+ * Calls `GET /api/v1/acl/roles` through the shared IDP-aware Faiber client.
39
+ * @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
40
+ * @returns The complete Axios response, including the typed service envelope, status, and headers.
41
+ * @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
42
+ */
11
43
  aclRolesIndexGet(options?: RequestOptions): Promise<import("axios").AxiosResponse<T.AclRolesIndexGetResponse, unknown, {}>>;
12
- /** POST /api/v1/acl/roles; permission: public/session-derived. */
44
+ /**
45
+ * Performs the roles create operation for the acl capability.
46
+ * Calls `POST /api/v1/acl/roles` through the shared IDP-aware Faiber client.
47
+ * @param data Typed JSON request body.
48
+ * @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
49
+ * @returns The complete Axios response, including the typed service envelope, status, and headers.
50
+ * @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
51
+ */
13
52
  aclRolesCreatePost(data: T.AclRolesCreatePostInput, options?: RequestOptions<T.AclRolesCreatePostInput>): Promise<import("axios").AxiosResponse<T.AclRolesCreatePostResponse, T.AclRolesCreatePostInput, {}>>;
14
- /** DELETE /api/v1/acl/roles/{role_id}; permission: public/session-derived. */
53
+ /**
54
+ * Performs the roles delete operation for the acl capability.
55
+ * Calls `DELETE /api/v1/acl/roles/{role_id}` through the shared IDP-aware Faiber client.
56
+ * @param roleId Backend path identifier `role_id`.
57
+ * @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
58
+ * @returns The complete Axios response, including the typed service envelope, status, and headers.
59
+ * @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
60
+ */
15
61
  aclRolesDeleteDelete(roleId: Identifier, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.AclRolesDeleteDeleteResponse, unknown, {}>>;
16
- /** GET /api/v1/acl/roles/{role_id}; permission: public/session-derived. */
62
+ /**
63
+ * Performs the roles show operation for the acl capability.
64
+ * Calls `GET /api/v1/acl/roles/{role_id}` through the shared IDP-aware Faiber client.
65
+ * @param roleId Backend path identifier `role_id`.
66
+ * @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
67
+ * @returns The complete Axios response, including the typed service envelope, status, and headers.
68
+ * @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
69
+ */
17
70
  aclRolesShowGet(roleId: Identifier, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.AclRolesShowGetResponse, unknown, {}>>;
18
- /** PATCH /api/v1/acl/roles/{role_id}; permission: public/session-derived. */
71
+ /**
72
+ * Performs the roles update operation for the acl capability.
73
+ * Calls `PATCH /api/v1/acl/roles/{role_id}` through the shared IDP-aware Faiber client.
74
+ * @param roleId Backend path identifier `role_id`.
75
+ * @param data Typed JSON request body.
76
+ * @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
77
+ * @returns The complete Axios response, including the typed service envelope, status, and headers.
78
+ * @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
79
+ */
19
80
  aclRolesUpdatePatch(roleId: Identifier, data: T.AclRolesUpdatePatchInput, options?: RequestOptions<T.AclRolesUpdatePatchInput>): Promise<import("axios").AxiosResponse<T.AclRolesUpdatePatchResponse, T.AclRolesUpdatePatchInput, {}>>;
20
- /** PUT /api/v1/acl/roles/{role_id}; permission: public/session-derived. */
81
+ /**
82
+ * Performs the roles update operation for the acl capability.
83
+ * Calls `PUT /api/v1/acl/roles/{role_id}` through the shared IDP-aware Faiber client.
84
+ * @param roleId Backend path identifier `role_id`.
85
+ * @param data Typed JSON request body.
86
+ * @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
87
+ * @returns The complete Axios response, including the typed service envelope, status, and headers.
88
+ * @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
89
+ */
21
90
  aclRolesUpdatePut(roleId: Identifier, data: T.AclRolesUpdatePutInput, options?: RequestOptions<T.AclRolesUpdatePutInput>): Promise<import("axios").AxiosResponse<T.AclRolesUpdatePutResponse, T.AclRolesUpdatePutInput, {}>>;
22
- /** POST /api/v1/auth/account-login; permission: public/session-derived. */
91
+ /**
92
+ * Performs the login account operation for the auth capability.
93
+ * Calls `POST /api/v1/auth/account-login` through the shared IDP-aware Faiber client.
94
+ * @param data Typed URL-encoded form.
95
+ * @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
96
+ * @returns The complete Axios response, including the typed service envelope, status, and headers.
97
+ * @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
98
+ */
23
99
  authLoginAccountPost(data: T.AuthLoginAccountPostInput, options?: RequestOptions<T.AuthLoginAccountPostInput>): Promise<import("axios").AxiosResponse<T.AuthLoginAccountPostResponse, URLSearchParams, {}>>;
24
- /** POST /api/v1/auth/generate/one-time; permission: public/session-derived. */
100
+ /**
101
+ * Performs the public show operation for the identity authority capability.
102
+ * Calls `GET /api/v1/auth/authority` through the shared IDP-aware Faiber client.
103
+ * @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
104
+ * @returns The complete Axios response, including the typed service envelope, status, and headers.
105
+ * @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
106
+ */
107
+ identityAuthorityPublicShowGet(options?: RequestOptions): Promise<import("axios").AxiosResponse<T.IdentityAuthorityPublicShowGetResponse, unknown, {}>>;
108
+ /**
109
+ * Performs the start operation for the custom oauth capability.
110
+ * Calls `GET /api/v1/auth/custom-oauth/{provider}` through the shared IDP-aware Faiber client.
111
+ * @param provider Backend path identifier `provider`.
112
+ * @param params Typed query parameters; omitted members retain backend defaults.
113
+ * @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
114
+ * @returns The complete Axios response, including the typed service envelope, status, and headers.
115
+ * @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
116
+ */
117
+ customOauthStartGet(provider: Identifier, params?: T.CustomOauthStartGetQuery, options?: RequestOptions): Promise<import("axios").AxiosResponse<void, unknown, {}>>;
118
+ /**
119
+ * Performs the callback operation for the custom oauth capability.
120
+ * Calls `GET /api/v1/auth/custom-oauth/{provider}/callback` through the shared IDP-aware Faiber client.
121
+ * @param provider Backend path identifier `provider`.
122
+ * @param params Typed query parameters; omitted members retain backend defaults.
123
+ * @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
124
+ * @returns The complete Axios response, including the typed service envelope, status, and headers.
125
+ * @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
126
+ */
127
+ customOauthCallbackGet(provider: Identifier, params?: T.CustomOauthCallbackGetQuery, options?: RequestOptions): Promise<import("axios").AxiosResponse<void, unknown, {}>>;
128
+ /**
129
+ * Performs the unlink operation for the custom oauth capability.
130
+ * Calls `DELETE /api/v1/auth/custom-oauth/{provider}/link` through the shared IDP-aware Faiber client.
131
+ * @param provider Backend path identifier `provider`.
132
+ * @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
133
+ * @returns The complete Axios response, including the typed service envelope, status, and headers.
134
+ * @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
135
+ */
136
+ customOauthUnlinkDelete(provider: Identifier, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.CustomOauthUnlinkDeleteResponseData, unknown, {}>>;
137
+ /**
138
+ * Performs the public providers operation for the custom oauth capability.
139
+ * Calls `GET /api/v1/auth/custom-oauth/providers` through the shared IDP-aware Faiber client.
140
+ * @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
141
+ * @returns The complete Axios response, including the typed service envelope, status, and headers.
142
+ * @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
143
+ */
144
+ customOauthPublicProvidersGet(options?: RequestOptions): Promise<import("axios").AxiosResponse<T.CustomOauthPublicProvidersGetResponse, unknown, {}>>;
145
+ /**
146
+ * Performs the generate one time token route operation for the auth capability.
147
+ * Calls `POST /api/v1/auth/generate/one-time` through the shared IDP-aware Faiber client.
148
+ * @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
149
+ * @returns The complete Axios response, including the typed service envelope, status, and headers.
150
+ * @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
151
+ */
25
152
  authGenerateOneTimeTokenRoutePost(options?: RequestOptions): Promise<import("axios").AxiosResponse<T.AuthGenerateOneTimeTokenRoutePostResponse, unknown, {}>>;
26
- /** GET /api/v1/auth/identities; permission: public/session-derived. */
153
+ /**
154
+ * Performs the browser handoff operation for the auth capability.
155
+ * Calls `GET /api/v1/auth/handoff` through the shared IDP-aware Faiber client.
156
+ * @param params Typed query parameters; omitted members retain backend defaults.
157
+ * @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
158
+ * @returns The complete Axios response, including the typed service envelope, status, and headers.
159
+ * @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
160
+ */
161
+ authBrowserHandoffGet(params?: T.AuthBrowserHandoffGetQuery, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.AuthBrowserHandoffGetResponse, unknown, {}>>;
162
+ /**
163
+ * Performs the list linked identities operation for the auth capability.
164
+ * Calls `GET /api/v1/auth/identities` through the shared IDP-aware Faiber client.
165
+ * @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
166
+ * @returns The complete Axios response, including the typed service envelope, status, and headers.
167
+ * @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
168
+ */
27
169
  authListLinkedIdentitiesGet(options?: RequestOptions): Promise<import("axios").AxiosResponse<T.AuthListLinkedIdentitiesGetResponse, unknown, {}>>;
28
- /** POST /api/v1/auth/login; permission: public/session-derived. */
170
+ /**
171
+ * Performs the login operation for the auth capability.
172
+ * Calls `POST /api/v1/auth/login` through the shared IDP-aware Faiber client.
173
+ * @param data Typed URL-encoded form.
174
+ * @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
175
+ * @returns The complete Axios response, including the typed service envelope, status, and headers.
176
+ * @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
177
+ */
29
178
  authLoginPost(data: T.AuthLoginPostInput, options?: RequestOptions<T.AuthLoginPostInput>): Promise<import("axios").AxiosResponse<T.AuthLoginPostResponse, URLSearchParams, {}>>;
30
- /** DELETE /api/v1/auth/oauth/{provider}; permission: public/session-derived. */
31
- authOauthUnlinkDelete(provider: Identifier, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.AuthOauthUnlinkDeleteResponse, unknown, {}>>;
32
- /** GET /api/v1/auth/oauth/{provider}; permission: public/session-derived. */
33
- authOauthStartGet(provider: Identifier, params?: T.AuthOauthStartGetQuery, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.AuthOauthStartGetResponse, unknown, {}>>;
34
- /** GET /api/v1/auth/oauth/{provider}/callback; permission: public/session-derived. */
35
- authOauthCallbackGet(provider: Identifier, params?: T.AuthOauthCallbackGetQuery, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.AuthOauthCallbackGetResponse, unknown, {}>>;
36
- /** GET /api/v1/auth/oauth/providers; permission: public/session-derived. */
179
+ /**
180
+ * Performs the logout operation for the auth capability.
181
+ * Calls `GET /api/v1/auth/logout` through the shared IDP-aware Faiber client.
182
+ * @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
183
+ * @returns The complete Axios response, including the typed service envelope, status, and headers.
184
+ * @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
185
+ */
186
+ authLogoutGet(options?: RequestOptions): Promise<import("axios").AxiosResponse<T.AuthLogoutGetResponse, unknown, {}>>;
187
+ /**
188
+ * Performs the authorize operation for the auth capability.
189
+ * Calls `GET /api/v1/auth/native/authorize` through the shared IDP-aware Faiber client.
190
+ * @param params Typed query parameters; omitted members retain backend defaults.
191
+ * @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
192
+ * @returns The complete Axios response, including the typed service envelope, status, and headers.
193
+ * @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
194
+ */
195
+ authAuthorizeGet(params?: T.AuthAuthorizeGetQuery, options?: RequestOptions): Promise<import("axios").AxiosResponse<void, unknown, {}>>;
196
+ /**
197
+ * Performs the token operation for the auth capability.
198
+ * Calls `POST /api/v1/auth/native/token` through the shared IDP-aware Faiber client.
199
+ * @param data Typed URL-encoded form.
200
+ * @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
201
+ * @returns The complete Axios response, including the typed service envelope, status, and headers.
202
+ * @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
203
+ */
204
+ authTokenPost(data: T.AuthTokenPostInput, options?: RequestOptions<T.AuthTokenPostInput>): Promise<import("axios").AxiosResponse<T.AuthTokenPostResponseData, URLSearchParams, {}>>;
205
+ /**
206
+ * Performs the oauth unlink operation for the auth capability.
207
+ * Calls `DELETE /api/v1/auth/oauth/{provider}` through the shared IDP-aware Faiber client.
208
+ * @param provider Backend path identifier `provider`.
209
+ * @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
210
+ * @returns The complete Axios response, including the typed service envelope, status, and headers.
211
+ * @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
212
+ */
213
+ authOauthUnlinkDelete(provider: Identifier, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.AuthOauthUnlinkDeleteResponseData, unknown, {}>>;
214
+ /**
215
+ * Performs the oauth start operation for the auth capability.
216
+ * Calls `GET /api/v1/auth/oauth/{provider}` through the shared IDP-aware Faiber client.
217
+ * @param provider Backend path identifier `provider`.
218
+ * @param params Typed query parameters; omitted members retain backend defaults.
219
+ * @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
220
+ * @returns The complete Axios response, including the typed service envelope, status, and headers.
221
+ * @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
222
+ */
223
+ authOauthStartGet(provider: Identifier, params?: T.AuthOauthStartGetQuery, options?: RequestOptions): Promise<import("axios").AxiosResponse<void, unknown, {}>>;
224
+ /**
225
+ * Performs the oauth callback operation for the auth capability.
226
+ * Calls `GET /api/v1/auth/oauth/{provider}/callback` through the shared IDP-aware Faiber client.
227
+ * @param provider Backend path identifier `provider`.
228
+ * @param params Typed query parameters; omitted members retain backend defaults.
229
+ * @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
230
+ * @returns The complete Axios response, including the typed service envelope, status, and headers.
231
+ * @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
232
+ */
233
+ authOauthCallbackGet(provider: Identifier, params?: T.AuthOauthCallbackGetQuery, options?: RequestOptions): Promise<import("axios").AxiosResponse<void, unknown, {}>>;
234
+ /**
235
+ * Performs the oauth providers operation for the auth capability.
236
+ * Calls `GET /api/v1/auth/oauth/providers` through the shared IDP-aware Faiber client.
237
+ * @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
238
+ * @returns The complete Axios response, including the typed service envelope, status, and headers.
239
+ * @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
240
+ */
37
241
  authOauthProvidersGet(options?: RequestOptions): Promise<import("axios").AxiosResponse<T.AuthOauthProvidersGetResponse, unknown, {}>>;
38
- /** POST /api/v1/auth/otp-login; permission: public/session-derived. */
242
+ /**
243
+ * Performs the otp login operation for the auth capability.
244
+ * Calls `POST /api/v1/auth/otp-login` through the shared IDP-aware Faiber client.
245
+ * @param data Typed URL-encoded form.
246
+ * @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
247
+ * @returns The complete Axios response, including the typed service envelope, status, and headers.
248
+ * @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
249
+ */
39
250
  authOtpLoginPost(data: T.AuthOtpLoginPostInput, options?: RequestOptions<T.AuthOtpLoginPostInput>): Promise<import("axios").AxiosResponse<T.AuthOtpLoginPostResponse, URLSearchParams, {}>>;
40
- /** GET /api/v1/auth/refresh; permission: public/session-derived. */
251
+ /**
252
+ * Performs the refresh token operation for the auth capability.
253
+ * Calls `GET /api/v1/auth/refresh` through the shared IDP-aware Faiber client.
254
+ * @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
255
+ * @returns The complete Axios response, including the typed service envelope, status, and headers.
256
+ * @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
257
+ */
41
258
  authRefreshTokenGet(options?: RequestOptions): Promise<import("axios").AxiosResponse<T.AuthRefreshTokenGetResponse, unknown, {}>>;
42
- /** POST /api/v1/auth/secure/generate/one-time; permission: public/session-derived. */
259
+ /**
260
+ * Performs the generate secure one time token route operation for the auth capability.
261
+ * Calls `POST /api/v1/auth/secure/generate/one-time` through the shared IDP-aware Faiber client.
262
+ * @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
263
+ * @returns The complete Axios response, including the typed service envelope, status, and headers.
264
+ * @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
265
+ */
43
266
  authGenerateSecureOneTimeTokenRoutePost(options?: RequestOptions): Promise<import("axios").AxiosResponse<T.AuthGenerateSecureOneTimeTokenRoutePostResponse, unknown, {}>>;
44
- /** GET /api/v1/auth/token-login; permission: public/session-derived. */
267
+ /**
268
+ * Performs the list sessions operation for the auth capability.
269
+ * Calls `GET /api/v1/auth/sessions` through the shared IDP-aware Faiber client.
270
+ * @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
271
+ * @returns The complete Axios response, including the typed service envelope, status, and headers.
272
+ * @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
273
+ */
274
+ authListSessionsGet(options?: RequestOptions): Promise<import("axios").AxiosResponse<T.AuthListSessionsGetResponse, unknown, {}>>;
275
+ /**
276
+ * Performs the delete session operation for the auth capability.
277
+ * Calls `DELETE /api/v1/auth/sessions/{session_id}` through the shared IDP-aware Faiber client.
278
+ * @param sessionId Backend path identifier `session_id`.
279
+ * @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
280
+ * @returns The complete Axios response, including the typed service envelope, status, and headers.
281
+ * @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
282
+ */
283
+ authDeleteSessionDelete(sessionId: Identifier, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.AuthDeleteSessionDeleteResponseData, unknown, {}>>;
284
+ /**
285
+ * Performs the login token operation for the auth capability.
286
+ * Calls `GET /api/v1/auth/token-login` through the shared IDP-aware Faiber client.
287
+ * @param params Typed query parameters; omitted members retain backend defaults.
288
+ * @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
289
+ * @returns The complete Axios response, including the typed service envelope, status, and headers.
290
+ * @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
291
+ */
45
292
  authLoginTokenGet(params?: T.AuthLoginTokenGetQuery, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.AuthLoginTokenGetResponse, unknown, {}>>;
46
- /** GET /api/v1/auth/validate; permission: public/session-derived. */
293
+ /**
294
+ * Performs the validate operation for the auth capability.
295
+ * Calls `GET /api/v1/auth/validate` through the shared IDP-aware Faiber client.
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
+ */
47
300
  authValidateGet(options?: RequestOptions): Promise<import("axios").AxiosResponse<T.AuthValidateGetResponse, unknown, {}>>;
48
- /** GET /api/v1/auth/web-login; permission: public/session-derived. */
49
- authLogoutGet(options?: RequestOptions): Promise<import("axios").AxiosResponse<T.AuthLogoutGetResponse, unknown, {}>>;
50
- /** POST /api/v1/auth/web-login; permission: public/session-derived. */
301
+ /**
302
+ * Performs the login web operation for the auth capability.
303
+ * Calls `POST /api/v1/auth/web-login` through the shared IDP-aware Faiber client.
304
+ * @param data Typed URL-encoded form.
305
+ * @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
306
+ * @returns The complete Axios response, including the typed service envelope, status, and headers.
307
+ * @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
308
+ */
51
309
  authLoginWebPost(data: T.AuthLoginWebPostInput, options?: RequestOptions<T.AuthLoginWebPostInput>): Promise<import("axios").AxiosResponse<T.AuthLoginWebPostResponse, URLSearchParams, {}>>;
52
- /** GET /api/v1/integration/flow; permission: public/session-derived. */
310
+ /**
311
+ * Performs the enroll operation for the identity authority capability.
312
+ * Calls `POST /api/v1/federation/enroll` through the shared IDP-aware Faiber client.
313
+ * @param data Typed JSON request body.
314
+ * @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
315
+ * @returns The complete Axios response, including the typed service envelope, status, and headers.
316
+ * @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
317
+ */
318
+ identityAuthorityEnrollPost(data: T.IdentityAuthorityEnrollPostInput, options?: RequestOptions<T.IdentityAuthorityEnrollPostInput>): Promise<import("axios").AxiosResponse<T.IdentityAuthorityEnrollPostResponse, T.IdentityAuthorityEnrollPostInput, {}>>;
319
+ /**
320
+ * Performs the flow integration show operation for the integration capability.
321
+ * Calls `GET /api/v1/integration/flow` through the shared IDP-aware Faiber client.
322
+ * @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
323
+ * @returns The complete Axios response, including the typed service envelope, status, and headers.
324
+ * @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
325
+ */
53
326
  integrationFlowIntegrationShowGet(options?: RequestOptions): Promise<import("axios").AxiosResponse<T.IntegrationFlowIntegrationShowGetResponse, unknown, {}>>;
54
- /** GET /api/v1/settings/oauth; permission: public/session-derived. */
327
+ /**
328
+ * Performs the authorize operation for the oidc capability.
329
+ * Calls `GET /api/v1/oauth2/authorize` through the shared IDP-aware Faiber client.
330
+ * @param params Typed query parameters; omitted members retain backend defaults.
331
+ * @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
332
+ * @returns The complete Axios response, including the typed service envelope, status, and headers.
333
+ * @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
334
+ */
335
+ oidcAuthorizeGet(params?: T.OidcAuthorizeGetQuery, options?: RequestOptions): Promise<import("axios").AxiosResponse<void, unknown, {}>>;
336
+ /**
337
+ * Performs the backchannel logout operation for the oidc capability.
338
+ * Calls `POST /api/v1/oauth2/backchannel-logout` through the shared IDP-aware Faiber client.
339
+ * @param data Typed URL-encoded form.
340
+ * @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
341
+ * @returns The complete Axios response, including the typed service envelope, status, and headers.
342
+ * @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
343
+ */
344
+ oidcBackchannelLogoutPost(data: T.OidcBackchannelLogoutPostInput, options?: RequestOptions<T.OidcBackchannelLogoutPostInput>): Promise<import("axios").AxiosResponse<void, URLSearchParams, {}>>;
345
+ /**
346
+ * Performs the introspect operation for the oidc capability.
347
+ * Calls `POST /api/v1/oauth2/introspect` through the shared IDP-aware Faiber client.
348
+ * @param data Typed URL-encoded form.
349
+ * @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
350
+ * @returns The complete Axios response, including the typed service envelope, status, and headers.
351
+ * @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
352
+ */
353
+ oidcIntrospectPost(data: T.OidcIntrospectPostInput, options?: RequestOptions<T.OidcIntrospectPostInput>): Promise<import("axios").AxiosResponse<import("@faiber/sdk-core").JsonValue, URLSearchParams, {}>>;
354
+ /**
355
+ * Performs the jwks operation for the oidc capability.
356
+ * Calls `GET /api/v1/oauth2/jwks` through the shared IDP-aware Faiber client.
357
+ * @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
358
+ * @returns The complete Axios response, including the typed service envelope, status, and headers.
359
+ * @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
360
+ */
361
+ oidcJwksGet(options?: RequestOptions): Promise<import("axios").AxiosResponse<import("@faiber/sdk-core").JsonValue, unknown, {}>>;
362
+ /**
363
+ * Performs the logout operation for the oidc capability.
364
+ * Calls `GET /api/v1/oauth2/logout` through the shared IDP-aware Faiber client.
365
+ * @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
366
+ * @returns The complete Axios response, including the typed service envelope, status, and headers.
367
+ * @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
368
+ */
369
+ oidcLogoutGet(options?: RequestOptions): Promise<import("axios").AxiosResponse<T.OidcLogoutGetResponse, unknown, {}>>;
370
+ /**
371
+ * Performs the logout operation for the oidc capability.
372
+ * Calls `POST /api/v1/oauth2/logout` through the shared IDP-aware Faiber client.
373
+ * @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
374
+ * @returns The complete Axios response, including the typed service envelope, status, and headers.
375
+ * @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
376
+ */
377
+ oidcLogoutPost(options?: RequestOptions): Promise<import("axios").AxiosResponse<T.OidcLogoutPostResponse, unknown, {}>>;
378
+ /**
379
+ * Performs the revoke operation for the oidc capability.
380
+ * Calls `POST /api/v1/oauth2/revoke` through the shared IDP-aware Faiber client.
381
+ * @param data Typed URL-encoded form.
382
+ * @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
383
+ * @returns The complete Axios response, including the typed service envelope, status, and headers.
384
+ * @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
385
+ */
386
+ oidcRevokePost(data: T.OidcRevokePostInput, options?: RequestOptions<T.OidcRevokePostInput>): Promise<import("axios").AxiosResponse<void, URLSearchParams, {}>>;
387
+ /**
388
+ * Performs the token operation for the oidc capability.
389
+ * Calls `POST /api/v1/oauth2/token` through the shared IDP-aware Faiber client.
390
+ * @param data Typed URL-encoded form.
391
+ * @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
392
+ * @returns The complete Axios response, including the typed service envelope, status, and headers.
393
+ * @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
394
+ */
395
+ oidcTokenPost(data: T.OidcTokenPostInput, options?: RequestOptions<T.OidcTokenPostInput>): Promise<import("axios").AxiosResponse<T.OidcTokenPostResponseData, URLSearchParams, {}>>;
396
+ /**
397
+ * Performs the userinfo operation for the oidc capability.
398
+ * Calls `GET /api/v1/oauth2/userinfo` through the shared IDP-aware Faiber client.
399
+ * @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
400
+ * @returns The complete Axios response, including the typed service envelope, status, and headers.
401
+ * @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
402
+ */
403
+ oidcUserinfoGet(options?: RequestOptions): Promise<import("axios").AxiosResponse<import("@faiber/sdk-core").JsonValue, unknown, {}>>;
404
+ /**
405
+ * Performs the userinfo operation for the oidc capability.
406
+ * Calls `POST /api/v1/oauth2/userinfo` through the shared IDP-aware Faiber client.
407
+ * @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
408
+ * @returns The complete Axios response, including the typed service envelope, status, and headers.
409
+ * @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
410
+ */
411
+ oidcUserinfoPost(options?: RequestOptions): Promise<import("axios").AxiosResponse<import("@faiber/sdk-core").JsonValue, unknown, {}>>;
412
+ /**
413
+ * Performs the list operation for the custom oauth capability.
414
+ * Calls `GET /api/v1/settings/custom-oauth` through the shared IDP-aware Faiber client.
415
+ * @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
416
+ * @returns The complete Axios response, including the typed service envelope, status, and headers.
417
+ * @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
418
+ */
419
+ customOauthListGet(options?: RequestOptions): Promise<import("axios").AxiosResponse<T.CustomOauthListGetResponse, unknown, {}>>;
420
+ /**
421
+ * Performs the create operation for the custom oauth capability.
422
+ * Calls `POST /api/v1/settings/custom-oauth` through the shared IDP-aware Faiber client.
423
+ * @param data Typed JSON request body.
424
+ * @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
425
+ * @returns The complete Axios response, including the typed service envelope, status, and headers.
426
+ * @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
427
+ */
428
+ customOauthCreatePost(data: T.CustomOauthCreatePostInput, options?: RequestOptions<T.CustomOauthCreatePostInput>): Promise<import("axios").AxiosResponse<T.CustomOauthCreatePostResponse, T.CustomOauthCreatePostInput, {}>>;
429
+ /**
430
+ * Performs the remove operation for the custom oauth capability.
431
+ * Calls `DELETE /api/v1/settings/custom-oauth/{id}` through the shared IDP-aware Faiber client.
432
+ * @param id Backend path identifier `id`.
433
+ * @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
434
+ * @returns The complete Axios response, including the typed service envelope, status, and headers.
435
+ * @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
436
+ */
437
+ customOauthRemoveDelete(id: Identifier, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.CustomOauthRemoveDeleteResponseData, unknown, {}>>;
438
+ /**
439
+ * Performs the update operation for the custom oauth capability.
440
+ * Calls `PUT /api/v1/settings/custom-oauth/{id}` through the shared IDP-aware Faiber client.
441
+ * @param id Backend path identifier `id`.
442
+ * @param data Typed JSON request body.
443
+ * @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
444
+ * @returns The complete Axios response, including the typed service envelope, status, and headers.
445
+ * @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
446
+ */
447
+ customOauthUpdatePut(id: Identifier, data: T.CustomOauthUpdatePutInput, options?: RequestOptions<T.CustomOauthUpdatePutInput>): Promise<import("axios").AxiosResponse<T.CustomOauthUpdatePutResponse, T.CustomOauthUpdatePutInput, {}>>;
448
+ /**
449
+ * Performs the admin show operation for the identity authority capability.
450
+ * Calls `GET /api/v1/settings/identity-authority` through the shared IDP-aware Faiber client.
451
+ * @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
452
+ * @returns The complete Axios response, including the typed service envelope, status, and headers.
453
+ * @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
454
+ */
455
+ identityAuthorityAdminShowGet(options?: RequestOptions): Promise<import("axios").AxiosResponse<T.IdentityAuthorityAdminShowGetResponse, unknown, {}>>;
456
+ /**
457
+ * Performs the update operation for the identity authority capability.
458
+ * Calls `PUT /api/v1/settings/identity-authority` through the shared IDP-aware Faiber client.
459
+ * @param data Typed JSON request body.
460
+ * @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
461
+ * @returns The complete Axios response, including the typed service envelope, status, and headers.
462
+ * @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
463
+ */
464
+ identityAuthorityUpdatePut(data: T.IdentityAuthorityUpdatePutInput, options?: RequestOptions<T.IdentityAuthorityUpdatePutInput>): Promise<import("axios").AxiosResponse<T.IdentityAuthorityUpdatePutResponse, T.IdentityAuthorityUpdatePutInput, {}>>;
465
+ /**
466
+ * Performs the discover operation for the identity authority capability.
467
+ * Calls `POST /api/v1/settings/identity-authority/discover` through the shared IDP-aware Faiber client.
468
+ * @param data Typed JSON request body.
469
+ * @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
470
+ * @returns The complete Axios response, including the typed service envelope, status, and headers.
471
+ * @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
472
+ */
473
+ identityAuthorityDiscoverPost(data: T.IdentityAuthorityDiscoverPostInput, options?: RequestOptions<T.IdentityAuthorityDiscoverPostInput>): Promise<import("axios").AxiosResponse<T.IdentityAuthorityDiscoverPostResponse, T.IdentityAuthorityDiscoverPostInput, {}>>;
474
+ /**
475
+ * Performs the pair canonical operation for the identity authority capability.
476
+ * Calls `POST /api/v1/settings/identity-authority/pair` through the shared IDP-aware Faiber client.
477
+ * @param data Typed JSON request body.
478
+ * @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
479
+ * @returns The complete Axios response, including the typed service envelope, status, and headers.
480
+ * @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
481
+ */
482
+ identityAuthorityPairCanonicalPost(data: T.IdentityAuthorityPairCanonicalPostInput, options?: RequestOptions<T.IdentityAuthorityPairCanonicalPostInput>): Promise<import("axios").AxiosResponse<T.IdentityAuthorityPairCanonicalPostResponse, T.IdentityAuthorityPairCanonicalPostInput, {}>>;
483
+ /**
484
+ * Performs the create pairing invitation operation for the identity authority capability.
485
+ * Calls `POST /api/v1/settings/identity-authority/pairing-invitations` through the shared IDP-aware Faiber client.
486
+ * @param data Typed JSON request body.
487
+ * @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
488
+ * @returns The complete Axios response, including the typed service envelope, status, and headers.
489
+ * @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
490
+ */
491
+ identityAuthorityCreatePairingInvitationPost(data: T.IdentityAuthorityCreatePairingInvitationPostInput, options?: RequestOptions<T.IdentityAuthorityCreatePairingInvitationPostInput>): Promise<import("axios").AxiosResponse<T.IdentityAuthorityCreatePairingInvitationPostResponse, T.IdentityAuthorityCreatePairingInvitationPostInput, {}>>;
492
+ /**
493
+ * Performs the oauth settings show operation for the settings capability.
494
+ * Calls `GET /api/v1/settings/oauth` through the shared IDP-aware Faiber client.
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
+ */
55
499
  settingsOauthSettingsShowGet(options?: RequestOptions): Promise<import("axios").AxiosResponse<T.SettingsOauthSettingsShowGetResponse, unknown, {}>>;
56
- /** PUT /api/v1/settings/oauth; permission: public/session-derived. */
500
+ /**
501
+ * Performs the oauth settings update operation for the settings capability.
502
+ * Calls `PUT /api/v1/settings/oauth` through the shared IDP-aware Faiber client.
503
+ * @param data Typed JSON request body.
504
+ * @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
505
+ * @returns The complete Axios response, including the typed service envelope, status, and headers.
506
+ * @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
507
+ */
57
508
  settingsOauthSettingsUpdatePut(data: T.SettingsOauthSettingsUpdatePutInput, options?: RequestOptions<T.SettingsOauthSettingsUpdatePutInput>): Promise<import("axios").AxiosResponse<T.SettingsOauthSettingsUpdatePutResponse, T.SettingsOauthSettingsUpdatePutInput, {}>>;
58
- /** GET /api/v1/users; permission: public/session-derived. */
509
+ /**
510
+ * Performs the list operation for the oauth clients capability.
511
+ * Calls `GET /api/v1/settings/oauth-clients` through the shared IDP-aware Faiber client.
512
+ * @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
513
+ * @returns The complete Axios response, including the typed service envelope, status, and headers.
514
+ * @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
515
+ */
516
+ oauthClientsListGet(options?: RequestOptions): Promise<import("axios").AxiosResponse<T.OauthClientsListGetResponse, unknown, {}>>;
517
+ /**
518
+ * Performs the create operation for the oauth clients capability.
519
+ * Calls `POST /api/v1/settings/oauth-clients` through the shared IDP-aware Faiber client.
520
+ * @param data Typed JSON request body.
521
+ * @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
522
+ * @returns The complete Axios response, including the typed service envelope, status, and headers.
523
+ * @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
524
+ */
525
+ oauthClientsCreatePost(data: T.OauthClientsCreatePostInput, options?: RequestOptions<T.OauthClientsCreatePostInput>): Promise<import("axios").AxiosResponse<T.OauthClientsCreatePostResponse, T.OauthClientsCreatePostInput, {}>>;
526
+ /**
527
+ * Performs the remove operation for the oauth clients capability.
528
+ * Calls `DELETE /api/v1/settings/oauth-clients/{id}` through the shared IDP-aware Faiber client.
529
+ * @param id Backend path identifier `id`.
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
+ */
534
+ oauthClientsRemoveDelete(id: Identifier, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.OauthClientsRemoveDeleteResponseData, unknown, {}>>;
535
+ /**
536
+ * Performs the update operation for the oauth clients capability.
537
+ * Calls `PUT /api/v1/settings/oauth-clients/{id}` through the shared IDP-aware Faiber client.
538
+ * @param id Backend path identifier `id`.
539
+ * @param data Typed JSON request body.
540
+ * @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
541
+ * @returns The complete Axios response, including the typed service envelope, status, and headers.
542
+ * @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
543
+ */
544
+ oauthClientsUpdatePut(id: Identifier, data: T.OauthClientsUpdatePutInput, options?: RequestOptions<T.OauthClientsUpdatePutInput>): Promise<import("axios").AxiosResponse<T.OauthClientsUpdatePutResponse, T.OauthClientsUpdatePutInput, {}>>;
545
+ /**
546
+ * Performs the rotate operation for the oauth clients capability.
547
+ * Calls `POST /api/v1/settings/oauth-clients/{id}/rotate-secret` through the shared IDP-aware Faiber client.
548
+ * @param id Backend path identifier `id`.
549
+ * @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
550
+ * @returns The complete Axios response, including the typed service envelope, status, and headers.
551
+ * @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
552
+ */
553
+ oauthClientsRotatePost(id: Identifier, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.OauthClientsRotatePostResponse, unknown, {}>>;
554
+ /**
555
+ * Performs the users index operation for the user capability.
556
+ * Calls `GET /api/v1/users` through the shared IDP-aware Faiber client.
557
+ * @param params Typed query parameters; omitted members retain backend defaults.
558
+ * @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
559
+ * @returns The complete Axios response, including the typed service envelope, status, and headers.
560
+ * @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
561
+ */
59
562
  userUsersIndexGet(params?: T.UserUsersIndexGetQuery, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.UserUsersIndexGetResponse, unknown, {}>>;
60
- /** POST /api/v1/users; permission: public/session-derived. */
563
+ /**
564
+ * Performs the user create operation for the user capability.
565
+ * Calls `POST /api/v1/users` through the shared IDP-aware Faiber client.
566
+ * @param data Typed JSON request body.
567
+ * @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
568
+ * @returns The complete Axios response, including the typed service envelope, status, and headers.
569
+ * @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
570
+ */
61
571
  userUserCreatePost(data: T.UserUserCreatePostInput, options?: RequestOptions<T.UserUserCreatePostInput>): Promise<import("axios").AxiosResponse<T.UserUserCreatePostResponse, T.UserUserCreatePostInput, {}>>;
62
- /** DELETE /api/v1/users/{user_id}; permission: public/session-derived. */
572
+ /**
573
+ * Performs the user delete operation for the user capability.
574
+ * Calls `DELETE /api/v1/users/{user_id}` through the shared IDP-aware Faiber client.
575
+ * @param userId Backend path identifier `user_id`.
576
+ * @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
577
+ * @returns The complete Axios response, including the typed service envelope, status, and headers.
578
+ * @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
579
+ */
63
580
  userUserDeleteDelete(userId: Identifier, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.UserUserDeleteDeleteResponse, unknown, {}>>;
64
- /** GET /api/v1/users/{user_id}; permission: public/session-derived. */
581
+ /**
582
+ * Performs the user find operation for the user capability.
583
+ * Calls `GET /api/v1/users/{user_id}` through the shared IDP-aware Faiber client.
584
+ * @param userId Backend path identifier `user_id`.
585
+ * @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
586
+ * @returns The complete Axios response, including the typed service envelope, status, and headers.
587
+ * @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
588
+ */
65
589
  userUserFindGet(userId: Identifier, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.UserUserFindGetResponse, unknown, {}>>;
66
- /** PATCH /api/v1/users/{user_id}; permission: public/session-derived. */
590
+ /**
591
+ * Performs the user update operation for the user capability.
592
+ * Calls `PATCH /api/v1/users/{user_id}` through the shared IDP-aware Faiber client.
593
+ * @param userId Backend path identifier `user_id`.
594
+ * @param data Typed JSON request body.
595
+ * @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
596
+ * @returns The complete Axios response, including the typed service envelope, status, and headers.
597
+ * @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
598
+ */
67
599
  userUserUpdatePatch(userId: Identifier, data: T.UserUserUpdatePatchInput, options?: RequestOptions<T.UserUserUpdatePatchInput>): Promise<import("axios").AxiosResponse<T.UserUserUpdatePatchResponse, T.UserUserUpdatePatchInput, {}>>;
68
- /** PUT /api/v1/users/{user_id}; permission: public/session-derived. */
600
+ /**
601
+ * Performs the user update operation for the user capability.
602
+ * Calls `PUT /api/v1/users/{user_id}` through the shared IDP-aware Faiber client.
603
+ * @param userId Backend path identifier `user_id`.
604
+ * @param data Typed JSON request body.
605
+ * @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
606
+ * @returns The complete Axios response, including the typed service envelope, status, and headers.
607
+ * @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
608
+ */
69
609
  userUserUpdatePut(userId: Identifier, data: T.UserUserUpdatePutInput, options?: RequestOptions<T.UserUserUpdatePutInput>): Promise<import("axios").AxiosResponse<T.UserUserUpdatePutResponse, T.UserUserUpdatePutInput, {}>>;
70
- /** PATCH /api/v1/users/{user_id}/change-password; permission: public/session-derived. */
610
+ /**
611
+ * Performs the change password operation for the user capability.
612
+ * Calls `PATCH /api/v1/users/{user_id}/change-password` through the shared IDP-aware Faiber client.
613
+ * @param userId Backend path identifier `user_id`.
614
+ * @param data Typed JSON request body.
615
+ * @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
616
+ * @returns The complete Axios response, including the typed service envelope, status, and headers.
617
+ * @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
618
+ */
71
619
  userChangePasswordPatch(userId: Identifier, data: T.UserChangePasswordPatchInput, options?: RequestOptions<T.UserChangePasswordPatchInput>): Promise<import("axios").AxiosResponse<T.UserChangePasswordPatchResponse, T.UserChangePasswordPatchInput, {}>>;
72
- /** PUT /api/v1/users/{user_id}/change-password; permission: public/session-derived. */
620
+ /**
621
+ * Performs the change password operation for the user capability.
622
+ * Calls `PUT /api/v1/users/{user_id}/change-password` through the shared IDP-aware Faiber client.
623
+ * @param userId Backend path identifier `user_id`.
624
+ * @param data Typed JSON request body.
625
+ * @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
626
+ * @returns The complete Axios response, including the typed service envelope, status, and headers.
627
+ * @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
628
+ */
73
629
  userChangePasswordPut(userId: Identifier, data: T.UserChangePasswordPutInput, options?: RequestOptions<T.UserChangePasswordPutInput>): Promise<import("axios").AxiosResponse<T.UserChangePasswordPutResponse, T.UserChangePasswordPutInput, {}>>;
74
- /** PATCH /api/v1/users/{user_id}/change-roles; permission: public/session-derived. */
630
+ /**
631
+ * Performs the change roles operation for the user capability.
632
+ * Calls `PATCH /api/v1/users/{user_id}/change-roles` through the shared IDP-aware Faiber client.
633
+ * @param userId Backend path identifier `user_id`.
634
+ * @param data Typed JSON request body.
635
+ * @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
636
+ * @returns The complete Axios response, including the typed service envelope, status, and headers.
637
+ * @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
638
+ */
75
639
  userChangeRolesPatch(userId: Identifier, data: T.UserChangeRolesPatchInput, options?: RequestOptions<T.UserChangeRolesPatchInput>): Promise<import("axios").AxiosResponse<T.UserChangeRolesPatchResponse, T.UserChangeRolesPatchInput, {}>>;
76
- /** PUT /api/v1/users/{user_id}/change-roles; permission: public/session-derived. */
640
+ /**
641
+ * Performs the change roles operation for the user capability.
642
+ * Calls `PUT /api/v1/users/{user_id}/change-roles` through the shared IDP-aware Faiber client.
643
+ * @param userId Backend path identifier `user_id`.
644
+ * @param data Typed JSON request body.
645
+ * @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
646
+ * @returns The complete Axios response, including the typed service envelope, status, and headers.
647
+ * @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
648
+ */
77
649
  userChangeRolesPut(userId: Identifier, data: T.UserChangeRolesPutInput, options?: RequestOptions<T.UserChangeRolesPutInput>): Promise<import("axios").AxiosResponse<T.UserChangeRolesPutResponse, T.UserChangeRolesPutInput, {}>>;
78
- /** GET /api/v1/users/{user_id}/logout; permission: public/session-derived. */
650
+ /**
651
+ * Performs the user logout operation for the user capability.
652
+ * Calls `GET /api/v1/users/{user_id}/logout` through the shared IDP-aware Faiber client.
653
+ * @param userId Backend path identifier `user_id`.
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
+ */
79
658
  userUserLogoutGet(userId: Identifier, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.UserUserLogoutGetResponse, unknown, {}>>;
80
- /** PATCH /api/v1/users/{user_id}/status; permission: public/session-derived. */
659
+ /**
660
+ * Performs the user set status operation for the user capability.
661
+ * Calls `PATCH /api/v1/users/{user_id}/status` through the shared IDP-aware Faiber client.
662
+ * @param userId Backend path identifier `user_id`.
663
+ * @param data Typed JSON request body.
664
+ * @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
665
+ * @returns The complete Axios response, including the typed service envelope, status, and headers.
666
+ * @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
667
+ */
81
668
  userUserSetStatusPatch(userId: Identifier, data: T.UserUserSetStatusPatchInput, options?: RequestOptions<T.UserUserSetStatusPatchInput>): Promise<import("axios").AxiosResponse<T.UserUserSetStatusPatchResponse, T.UserUserSetStatusPatchInput, {}>>;
82
- /** PUT /api/v1/users/{user_id}/status; permission: public/session-derived. */
669
+ /**
670
+ * Performs the user set status operation for the user capability.
671
+ * Calls `PUT /api/v1/users/{user_id}/status` through the shared IDP-aware Faiber client.
672
+ * @param userId Backend path identifier `user_id`.
673
+ * @param data Typed JSON request body.
674
+ * @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
675
+ * @returns The complete Axios response, including the typed service envelope, status, and headers.
676
+ * @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
677
+ */
83
678
  userUserSetStatusPut(userId: Identifier, data: T.UserUserSetStatusPutInput, options?: RequestOptions<T.UserUserSetStatusPutInput>): Promise<import("axios").AxiosResponse<T.UserUserSetStatusPutResponse, T.UserUserSetStatusPutInput, {}>>;
84
- /** POST /api/v1/users/register; permission: public/session-derived. */
679
+ /**
680
+ * Performs the users directory operation for the user capability.
681
+ * Calls `GET /api/v1/users/directory` through the shared IDP-aware Faiber client.
682
+ * @param params Typed query parameters; omitted members retain backend defaults.
683
+ * @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
684
+ * @returns The complete Axios response, including the typed service envelope, status, and headers.
685
+ * @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
686
+ */
687
+ userUsersDirectoryGet(params?: T.UserUsersDirectoryGetQuery, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.UserUsersDirectoryGetResponse, unknown, {}>>;
688
+ /**
689
+ * Performs the register operation for the user capability.
690
+ * Calls `POST /api/v1/users/register` through the shared IDP-aware Faiber client.
691
+ * @param data Typed JSON request body.
692
+ * @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
693
+ * @returns The complete Axios response, including the typed service envelope, status, and headers.
694
+ * @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
695
+ */
85
696
  userRegisterPost(data: T.UserRegisterPostInput, options?: RequestOptions<T.UserRegisterPostInput>): Promise<import("axios").AxiosResponse<T.UserRegisterPostResponse, T.UserRegisterPostInput, {}>>;
86
- /** POST /api/v1/users/register-email; permission: public/session-derived. */
697
+ /**
698
+ * Performs the register with email operation for the user capability.
699
+ * Calls `POST /api/v1/users/register-email` through the shared IDP-aware Faiber client.
700
+ * @param data Typed JSON request body.
701
+ * @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
702
+ * @returns The complete Axios response, including the typed service envelope, status, and headers.
703
+ * @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
704
+ */
87
705
  userRegisterWithEmailPost(data: T.UserRegisterWithEmailPostInput, options?: RequestOptions<T.UserRegisterWithEmailPostInput>): Promise<import("axios").AxiosResponse<T.UserRegisterWithEmailPostResponse, T.UserRegisterWithEmailPostInput, {}>>;
88
- /** POST /api/v1/users/register-phone; permission: public/session-derived. */
706
+ /**
707
+ * Performs the register with phone operation for the user capability.
708
+ * Calls `POST /api/v1/users/register-phone` through the shared IDP-aware Faiber client.
709
+ * @param data Typed JSON request body.
710
+ * @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
711
+ * @returns The complete Axios response, including the typed service envelope, status, and headers.
712
+ * @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
713
+ */
89
714
  userRegisterWithPhonePost(data: T.UserRegisterWithPhonePostInput, options?: RequestOptions<T.UserRegisterWithPhonePostInput>): Promise<import("axios").AxiosResponse<T.UserRegisterWithPhonePostResponse, T.UserRegisterWithPhonePostInput, {}>>;
90
- /** GET /api/v1/users/self; permission: public/session-derived. */
715
+ /**
716
+ * Performs the users registration stats operation for the user capability.
717
+ * Calls `GET /api/v1/users/registration-stats` through the shared IDP-aware Faiber client.
718
+ * @param params Typed query parameters; omitted members retain backend defaults.
719
+ * @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
720
+ * @returns The complete Axios response, including the typed service envelope, status, and headers.
721
+ * @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
722
+ */
723
+ userUsersRegistrationStatsGet(params?: T.UserUsersRegistrationStatsGetQuery, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.UserUsersRegistrationStatsGetResponse, unknown, {}>>;
724
+ /**
725
+ * Performs the user find self operation for the user capability.
726
+ * Calls `GET /api/v1/users/self` through the shared IDP-aware Faiber client.
727
+ * @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
728
+ * @returns The complete Axios response, including the typed service envelope, status, and headers.
729
+ * @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
730
+ */
91
731
  userUserFindSelfGet(options?: RequestOptions): Promise<import("axios").AxiosResponse<T.UserUserFindSelfGetResponse, unknown, {}>>;
92
- /** GET /api/v1/users/stats; permission: public/session-derived. */
732
+ /**
733
+ * Performs the users stats operation for the user capability.
734
+ * Calls `GET /api/v1/users/stats` through the shared IDP-aware Faiber client.
735
+ * @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
736
+ * @returns The complete Axios response, including the typed service envelope, status, and headers.
737
+ * @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
738
+ */
93
739
  userUsersStatsGet(options?: RequestOptions): Promise<import("axios").AxiosResponse<T.UserUsersStatsGetResponse, unknown, {}>>;
94
- /** GET /api/v1/users/sync; permission: public/session-derived. */
740
+ /**
741
+ * Performs the sync users operation for the user capability.
742
+ * Calls `GET /api/v1/users/sync` through the shared IDP-aware Faiber client.
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
+ */
95
747
  userSyncUsersGet(options?: RequestOptions): Promise<import("axios").AxiosResponse<T.UserSyncUsersGetResponse, unknown, {}>>;
96
748
  }
97
749
  //# sourceMappingURL=operations.d.ts.map