@faiber/faiber-idp 0.3.0 → 0.5.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,97 +1,457 @@
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 permissions index operation for the acl capability.
22
+ * Calls `GET /api/v1/acl/permissions` through the shared IDP-aware Faiber client.
23
+ * @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
24
+ * @returns The complete Axios response, including the typed service envelope, status, and headers.
25
+ * @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
26
+ */
9
27
  aclPermissionsIndexGet(options?: RequestOptions): Promise<import("axios").AxiosResponse<T.AclPermissionsIndexGetResponse, unknown, {}>>;
10
- /** GET /api/v1/acl/roles; permission: public/session-derived. */
28
+ /**
29
+ * Performs the roles index operation for the acl capability.
30
+ * Calls `GET /api/v1/acl/roles` 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
+ */
11
35
  aclRolesIndexGet(options?: RequestOptions): Promise<import("axios").AxiosResponse<T.AclRolesIndexGetResponse, unknown, {}>>;
12
- /** POST /api/v1/acl/roles; permission: public/session-derived. */
36
+ /**
37
+ * Performs the roles create operation for the acl capability.
38
+ * Calls `POST /api/v1/acl/roles` through the shared IDP-aware Faiber client.
39
+ * @param data Typed JSON request body.
40
+ * @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
41
+ * @returns The complete Axios response, including the typed service envelope, status, and headers.
42
+ * @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
43
+ */
13
44
  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. */
45
+ /**
46
+ * Performs the roles delete operation for the acl capability.
47
+ * Calls `DELETE /api/v1/acl/roles/{role_id}` through the shared IDP-aware Faiber client.
48
+ * @param roleId Backend path identifier `role_id`.
49
+ * @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
50
+ * @returns The complete Axios response, including the typed service envelope, status, and headers.
51
+ * @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
52
+ */
15
53
  aclRolesDeleteDelete(roleId: Identifier, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.AclRolesDeleteDeleteResponse, unknown, {}>>;
16
- /** GET /api/v1/acl/roles/{role_id}; permission: public/session-derived. */
54
+ /**
55
+ * Performs the roles show operation for the acl capability.
56
+ * Calls `GET /api/v1/acl/roles/{role_id}` through the shared IDP-aware Faiber client.
57
+ * @param roleId Backend path identifier `role_id`.
58
+ * @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
59
+ * @returns The complete Axios response, including the typed service envelope, status, and headers.
60
+ * @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
61
+ */
17
62
  aclRolesShowGet(roleId: Identifier, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.AclRolesShowGetResponse, unknown, {}>>;
18
- /** PATCH /api/v1/acl/roles/{role_id}; permission: public/session-derived. */
63
+ /**
64
+ * Performs the roles update operation for the acl capability.
65
+ * Calls `PATCH /api/v1/acl/roles/{role_id}` through the shared IDP-aware Faiber client.
66
+ * @param roleId Backend path identifier `role_id`.
67
+ * @param data Typed JSON request body.
68
+ * @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
69
+ * @returns The complete Axios response, including the typed service envelope, status, and headers.
70
+ * @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
71
+ */
19
72
  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. */
73
+ /**
74
+ * Performs the roles update operation for the acl capability.
75
+ * Calls `PUT /api/v1/acl/roles/{role_id}` through the shared IDP-aware Faiber client.
76
+ * @param roleId Backend path identifier `role_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
+ */
21
82
  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. */
83
+ /**
84
+ * Performs the login account operation for the auth capability.
85
+ * Calls `POST /api/v1/auth/account-login` through the shared IDP-aware Faiber client.
86
+ * @param data Typed URL-encoded form.
87
+ * @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
88
+ * @returns The complete Axios response, including the typed service envelope, status, and headers.
89
+ * @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
90
+ */
23
91
  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. */
92
+ /**
93
+ * Performs the generate one time token route operation for the auth capability.
94
+ * Calls `POST /api/v1/auth/generate/one-time` through the shared IDP-aware Faiber client.
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
+ */
25
99
  authGenerateOneTimeTokenRoutePost(options?: RequestOptions): Promise<import("axios").AxiosResponse<T.AuthGenerateOneTimeTokenRoutePostResponse, unknown, {}>>;
26
- /** GET /api/v1/auth/identities; permission: public/session-derived. */
100
+ /**
101
+ * Performs the list linked identities operation for the auth capability.
102
+ * Calls `GET /api/v1/auth/identities` 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
+ */
27
107
  authListLinkedIdentitiesGet(options?: RequestOptions): Promise<import("axios").AxiosResponse<T.AuthListLinkedIdentitiesGetResponse, unknown, {}>>;
28
- /** POST /api/v1/auth/login; permission: public/session-derived. */
108
+ /**
109
+ * Performs the login operation for the auth capability.
110
+ * Calls `POST /api/v1/auth/login` through the shared IDP-aware Faiber client.
111
+ * @param data Typed URL-encoded form.
112
+ * @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
113
+ * @returns The complete Axios response, including the typed service envelope, status, and headers.
114
+ * @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
115
+ */
29
116
  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. */
117
+ /**
118
+ * Performs the logout operation for the auth capability.
119
+ * Calls `GET /api/v1/auth/logout` through the shared IDP-aware Faiber client.
120
+ * @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
121
+ * @returns The complete Axios response, including the typed service envelope, status, and headers.
122
+ * @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
123
+ */
124
+ authLogoutGet(options?: RequestOptions): Promise<import("axios").AxiosResponse<T.AuthLogoutGetResponse, unknown, {}>>;
125
+ /**
126
+ * Performs the authorize operation for the auth capability.
127
+ * Calls `GET /api/v1/auth/native/authorize` through the shared IDP-aware Faiber client.
128
+ * @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
129
+ * @returns The complete Axios response, including the typed service envelope, status, and headers.
130
+ * @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
131
+ */
132
+ authAuthorizeGet(options?: RequestOptions): Promise<import("axios").AxiosResponse<T.AuthAuthorizeGetResponse, unknown, {}>>;
133
+ /**
134
+ * Performs the token operation for the auth capability.
135
+ * Calls `POST /api/v1/auth/native/token` through the shared IDP-aware Faiber client.
136
+ * @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
137
+ * @returns The complete Axios response, including the typed service envelope, status, and headers.
138
+ * @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
139
+ */
140
+ authTokenPost(options?: RequestOptions): Promise<import("axios").AxiosResponse<T.AuthTokenPostResponse, unknown, {}>>;
141
+ /**
142
+ * Performs the oauth unlink operation for the auth capability.
143
+ * Calls `DELETE /api/v1/auth/oauth/{provider}` through the shared IDP-aware Faiber client.
144
+ * @param provider Backend path identifier `provider`.
145
+ * @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
146
+ * @returns The complete Axios response, including the typed service envelope, status, and headers.
147
+ * @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
148
+ */
31
149
  authOauthUnlinkDelete(provider: Identifier, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.AuthOauthUnlinkDeleteResponse, unknown, {}>>;
32
- /** GET /api/v1/auth/oauth/{provider}; permission: public/session-derived. */
150
+ /**
151
+ * Performs the oauth start operation for the auth capability.
152
+ * Calls `GET /api/v1/auth/oauth/{provider}` through the shared IDP-aware Faiber client.
153
+ * @param provider Backend path identifier `provider`.
154
+ * @param params Typed query parameters; omitted members retain backend defaults.
155
+ * @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
156
+ * @returns The complete Axios response, including the typed service envelope, status, and headers.
157
+ * @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
158
+ */
33
159
  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. */
160
+ /**
161
+ * Performs the oauth callback operation for the auth capability.
162
+ * Calls `GET /api/v1/auth/oauth/{provider}/callback` through the shared IDP-aware Faiber client.
163
+ * @param provider Backend path identifier `provider`.
164
+ * @param params Typed query parameters; omitted members retain backend defaults.
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
+ */
35
169
  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. */
170
+ /**
171
+ * Performs the oauth providers operation for the auth capability.
172
+ * Calls `GET /api/v1/auth/oauth/providers` through the shared IDP-aware Faiber client.
173
+ * @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
174
+ * @returns The complete Axios response, including the typed service envelope, status, and headers.
175
+ * @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
176
+ */
37
177
  authOauthProvidersGet(options?: RequestOptions): Promise<import("axios").AxiosResponse<T.AuthOauthProvidersGetResponse, unknown, {}>>;
38
- /** POST /api/v1/auth/otp-login; permission: public/session-derived. */
178
+ /**
179
+ * Performs the otp login operation for the auth capability.
180
+ * Calls `POST /api/v1/auth/otp-login` through the shared IDP-aware Faiber client.
181
+ * @param data Typed URL-encoded form.
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
+ */
39
186
  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. */
187
+ /**
188
+ * Performs the refresh token operation for the auth capability.
189
+ * Calls `GET /api/v1/auth/refresh` through the shared IDP-aware Faiber client.
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
+ */
41
194
  authRefreshTokenGet(options?: RequestOptions): Promise<import("axios").AxiosResponse<T.AuthRefreshTokenGetResponse, unknown, {}>>;
42
- /** POST /api/v1/auth/secure/generate/one-time; permission: public/session-derived. */
195
+ /**
196
+ * Performs the generate secure one time token route operation for the auth capability.
197
+ * Calls `POST /api/v1/auth/secure/generate/one-time` through the shared IDP-aware Faiber client.
198
+ * @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
199
+ * @returns The complete Axios response, including the typed service envelope, status, and headers.
200
+ * @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
201
+ */
43
202
  authGenerateSecureOneTimeTokenRoutePost(options?: RequestOptions): Promise<import("axios").AxiosResponse<T.AuthGenerateSecureOneTimeTokenRoutePostResponse, unknown, {}>>;
44
- /** GET /api/v1/auth/token-login; permission: public/session-derived. */
203
+ /**
204
+ * Performs the list sessions operation for the auth capability.
205
+ * Calls `GET /api/v1/auth/sessions` through the shared IDP-aware Faiber client.
206
+ * @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
207
+ * @returns The complete Axios response, including the typed service envelope, status, and headers.
208
+ * @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
209
+ */
210
+ authListSessionsGet(options?: RequestOptions): Promise<import("axios").AxiosResponse<T.AuthListSessionsGetResponse, unknown, {}>>;
211
+ /**
212
+ * Performs the delete session operation for the auth capability.
213
+ * Calls `DELETE /api/v1/auth/sessions/{session_id}` through the shared IDP-aware Faiber client.
214
+ * @param sessionId Backend path identifier `session_id`.
215
+ * @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
216
+ * @returns The complete Axios response, including the typed service envelope, status, and headers.
217
+ * @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
218
+ */
219
+ authDeleteSessionDelete(sessionId: Identifier, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.AuthDeleteSessionDeleteResponse, unknown, {}>>;
220
+ /**
221
+ * Performs the login token operation for the auth capability.
222
+ * Calls `GET /api/v1/auth/token-login` through the shared IDP-aware Faiber client.
223
+ * @param params Typed query parameters; omitted members retain backend defaults.
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
+ */
45
228
  authLoginTokenGet(params?: T.AuthLoginTokenGetQuery, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.AuthLoginTokenGetResponse, unknown, {}>>;
46
- /** GET /api/v1/auth/validate; permission: public/session-derived. */
229
+ /**
230
+ * Performs the validate operation for the auth capability.
231
+ * Calls `GET /api/v1/auth/validate` through the shared IDP-aware Faiber client.
232
+ * @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
233
+ * @returns The complete Axios response, including the typed service envelope, status, and headers.
234
+ * @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
235
+ */
47
236
  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. */
237
+ /**
238
+ * Performs the login web operation for the auth capability.
239
+ * Calls `POST /api/v1/auth/web-login` through the shared IDP-aware Faiber client.
240
+ * @param data Typed URL-encoded form.
241
+ * @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
242
+ * @returns The complete Axios response, including the typed service envelope, status, and headers.
243
+ * @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
244
+ */
51
245
  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. */
246
+ /**
247
+ * Performs the flow integration show operation for the integration capability.
248
+ * Calls `GET /api/v1/integration/flow` through the shared IDP-aware Faiber client.
249
+ * @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
250
+ * @returns The complete Axios response, including the typed service envelope, status, and headers.
251
+ * @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
252
+ */
53
253
  integrationFlowIntegrationShowGet(options?: RequestOptions): Promise<import("axios").AxiosResponse<T.IntegrationFlowIntegrationShowGetResponse, unknown, {}>>;
54
- /** GET /api/v1/settings/oauth; permission: public/session-derived. */
254
+ /**
255
+ * Performs the oauth settings show operation for the settings capability.
256
+ * Calls `GET /api/v1/settings/oauth` through the shared IDP-aware Faiber client.
257
+ * @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
258
+ * @returns The complete Axios response, including the typed service envelope, status, and headers.
259
+ * @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
260
+ */
55
261
  settingsOauthSettingsShowGet(options?: RequestOptions): Promise<import("axios").AxiosResponse<T.SettingsOauthSettingsShowGetResponse, unknown, {}>>;
56
- /** PUT /api/v1/settings/oauth; permission: public/session-derived. */
262
+ /**
263
+ * Performs the oauth settings update operation for the settings capability.
264
+ * Calls `PUT /api/v1/settings/oauth` through the shared IDP-aware Faiber client.
265
+ * @param data Typed JSON request body.
266
+ * @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
267
+ * @returns The complete Axios response, including the typed service envelope, status, and headers.
268
+ * @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
269
+ */
57
270
  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. */
271
+ /**
272
+ * Performs the users index operation for the user capability.
273
+ * Calls `GET /api/v1/users` through the shared IDP-aware Faiber client.
274
+ * @param params Typed query parameters; omitted members retain backend defaults.
275
+ * @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
276
+ * @returns The complete Axios response, including the typed service envelope, status, and headers.
277
+ * @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
278
+ */
59
279
  userUsersIndexGet(params?: T.UserUsersIndexGetQuery, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.UserUsersIndexGetResponse, unknown, {}>>;
60
- /** POST /api/v1/users; permission: public/session-derived. */
280
+ /**
281
+ * Performs the user create operation for the user capability.
282
+ * Calls `POST /api/v1/users` through the shared IDP-aware Faiber client.
283
+ * @param data Typed JSON request body.
284
+ * @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
285
+ * @returns The complete Axios response, including the typed service envelope, status, and headers.
286
+ * @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
287
+ */
61
288
  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. */
289
+ /**
290
+ * Performs the user delete operation for the user capability.
291
+ * Calls `DELETE /api/v1/users/{user_id}` through the shared IDP-aware Faiber client.
292
+ * @param userId Backend path identifier `user_id`.
293
+ * @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
294
+ * @returns The complete Axios response, including the typed service envelope, status, and headers.
295
+ * @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
296
+ */
63
297
  userUserDeleteDelete(userId: Identifier, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.UserUserDeleteDeleteResponse, unknown, {}>>;
64
- /** GET /api/v1/users/{user_id}; permission: public/session-derived. */
298
+ /**
299
+ * Performs the user find operation for the user capability.
300
+ * Calls `GET /api/v1/users/{user_id}` through the shared IDP-aware Faiber client.
301
+ * @param userId Backend path identifier `user_id`.
302
+ * @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
303
+ * @returns The complete Axios response, including the typed service envelope, status, and headers.
304
+ * @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
305
+ */
65
306
  userUserFindGet(userId: Identifier, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.UserUserFindGetResponse, unknown, {}>>;
66
- /** PATCH /api/v1/users/{user_id}; permission: public/session-derived. */
307
+ /**
308
+ * Performs the user update operation for the user capability.
309
+ * Calls `PATCH /api/v1/users/{user_id}` through the shared IDP-aware Faiber client.
310
+ * @param userId Backend path identifier `user_id`.
311
+ * @param data Typed JSON request body.
312
+ * @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
313
+ * @returns The complete Axios response, including the typed service envelope, status, and headers.
314
+ * @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
315
+ */
67
316
  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. */
317
+ /**
318
+ * Performs the user update operation for the user capability.
319
+ * Calls `PUT /api/v1/users/{user_id}` through the shared IDP-aware Faiber client.
320
+ * @param userId Backend path identifier `user_id`.
321
+ * @param data Typed JSON request body.
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
+ */
69
326
  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. */
327
+ /**
328
+ * Performs the change password operation for the user capability.
329
+ * Calls `PATCH /api/v1/users/{user_id}/change-password` through the shared IDP-aware Faiber client.
330
+ * @param userId Backend path identifier `user_id`.
331
+ * @param data Typed JSON request body.
332
+ * @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
333
+ * @returns The complete Axios response, including the typed service envelope, status, and headers.
334
+ * @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
335
+ */
71
336
  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. */
337
+ /**
338
+ * Performs the change password operation for the user capability.
339
+ * Calls `PUT /api/v1/users/{user_id}/change-password` through the shared IDP-aware Faiber client.
340
+ * @param userId Backend path identifier `user_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
+ */
73
346
  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. */
347
+ /**
348
+ * Performs the change roles operation for the user capability.
349
+ * Calls `PATCH /api/v1/users/{user_id}/change-roles` through the shared IDP-aware Faiber client.
350
+ * @param userId Backend path identifier `user_id`.
351
+ * @param data Typed JSON request body.
352
+ * @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
353
+ * @returns The complete Axios response, including the typed service envelope, status, and headers.
354
+ * @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
355
+ */
75
356
  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. */
357
+ /**
358
+ * Performs the change roles operation for the user capability.
359
+ * Calls `PUT /api/v1/users/{user_id}/change-roles` through the shared IDP-aware Faiber client.
360
+ * @param userId Backend path identifier `user_id`.
361
+ * @param data Typed JSON request body.
362
+ * @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
363
+ * @returns The complete Axios response, including the typed service envelope, status, and headers.
364
+ * @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
365
+ */
77
366
  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. */
367
+ /**
368
+ * Performs the user logout operation for the user capability.
369
+ * Calls `GET /api/v1/users/{user_id}/logout` through the shared IDP-aware Faiber client.
370
+ * @param userId Backend path identifier `user_id`.
371
+ * @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
372
+ * @returns The complete Axios response, including the typed service envelope, status, and headers.
373
+ * @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
374
+ */
79
375
  userUserLogoutGet(userId: Identifier, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.UserUserLogoutGetResponse, unknown, {}>>;
80
- /** PATCH /api/v1/users/{user_id}/status; permission: public/session-derived. */
376
+ /**
377
+ * Performs the user set status operation for the user capability.
378
+ * Calls `PATCH /api/v1/users/{user_id}/status` through the shared IDP-aware Faiber client.
379
+ * @param userId Backend path identifier `user_id`.
380
+ * @param data Typed JSON request body.
381
+ * @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
382
+ * @returns The complete Axios response, including the typed service envelope, status, and headers.
383
+ * @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
384
+ */
81
385
  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. */
386
+ /**
387
+ * Performs the user set status operation for the user capability.
388
+ * Calls `PUT /api/v1/users/{user_id}/status` through the shared IDP-aware Faiber client.
389
+ * @param userId Backend path identifier `user_id`.
390
+ * @param data Typed JSON request body.
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
+ */
83
395
  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. */
396
+ /**
397
+ * Performs the register operation for the user capability.
398
+ * Calls `POST /api/v1/users/register` through the shared IDP-aware Faiber client.
399
+ * @param data Typed JSON request body.
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
+ */
85
404
  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. */
405
+ /**
406
+ * Performs the register with email operation for the user capability.
407
+ * Calls `POST /api/v1/users/register-email` through the shared IDP-aware Faiber client.
408
+ * @param data Typed JSON request body.
409
+ * @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
410
+ * @returns The complete Axios response, including the typed service envelope, status, and headers.
411
+ * @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
412
+ */
87
413
  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. */
414
+ /**
415
+ * Performs the register with phone operation for the user capability.
416
+ * Calls `POST /api/v1/users/register-phone` through the shared IDP-aware Faiber client.
417
+ * @param data Typed JSON request body.
418
+ * @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
419
+ * @returns The complete Axios response, including the typed service envelope, status, and headers.
420
+ * @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
421
+ */
89
422
  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. */
423
+ /**
424
+ * Performs the users registration stats operation for the user capability.
425
+ * Calls `GET /api/v1/users/registration-stats` through the shared IDP-aware Faiber client.
426
+ * @param params Typed query parameters; omitted members retain backend defaults.
427
+ * @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
428
+ * @returns The complete Axios response, including the typed service envelope, status, and headers.
429
+ * @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
430
+ */
431
+ userUsersRegistrationStatsGet(params?: T.UserUsersRegistrationStatsGetQuery, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.UserUsersRegistrationStatsGetResponse, unknown, {}>>;
432
+ /**
433
+ * Performs the user find self operation for the user capability.
434
+ * Calls `GET /api/v1/users/self` through the shared IDP-aware Faiber client.
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
+ */
91
439
  userUserFindSelfGet(options?: RequestOptions): Promise<import("axios").AxiosResponse<T.UserUserFindSelfGetResponse, unknown, {}>>;
92
- /** GET /api/v1/users/stats; permission: public/session-derived. */
440
+ /**
441
+ * Performs the users stats operation for the user capability.
442
+ * Calls `GET /api/v1/users/stats` through the shared IDP-aware Faiber client.
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
+ */
93
447
  userUsersStatsGet(options?: RequestOptions): Promise<import("axios").AxiosResponse<T.UserUsersStatsGetResponse, unknown, {}>>;
94
- /** GET /api/v1/users/sync; permission: public/session-derived. */
448
+ /**
449
+ * Performs the sync users operation for the user capability.
450
+ * Calls `GET /api/v1/users/sync` 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
+ */
95
455
  userSyncUsersGet(options?: RequestOptions): Promise<import("axios").AxiosResponse<T.UserSyncUsersGetResponse, unknown, {}>>;
96
456
  }
97
457
  //# sourceMappingURL=operations.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"operations.d.ts","sourceRoot":"","sources":["../src/operations.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"operations.d.ts","sourceRoot":"","sources":["../src/operations.ts"],"names":[],"mappings":"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"}