@faiber/faiber-idp 0.2.2 → 0.5.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +5 -4
- package/dist/.tsbuildinfo +1 -1
- package/dist/index.d.ts +4 -1
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +9 -0
- package/dist/index.js.map +1 -1
- package/dist/operations.d.ts +407 -47
- package/dist/operations.d.ts.map +1 -1
- package/dist/operations.js +419 -49
- package/dist/operations.js.map +1 -1
- package/dist/operations.types.d.ts +402 -88
- package/dist/operations.types.d.ts.map +1 -1
- package/dist/types.d.ts +19 -0
- package/dist/types.d.ts.map +1 -1
- package/package.json +2 -2
package/dist/operations.d.ts
CHANGED
|
@@ -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
|
-
/**
|
|
4
|
+
/**
|
|
5
|
+
* Performs the status route operation for the router capability.
|
|
6
|
+
* Calls `GET /` through the shared IDP-aware Faiber client.
|
|
7
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
8
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
9
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
|
|
10
|
+
*/
|
|
5
11
|
routerStatusRouteGet(options?: RequestOptions): Promise<import("axios").AxiosResponse<T.RouterStatusRouteGetResponse, unknown, {}>>;
|
|
6
|
-
/**
|
|
12
|
+
/**
|
|
13
|
+
* Performs the 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
|
-
/**
|
|
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
|
-
/**
|
|
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
|
-
/**
|
|
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
|
-
/**
|
|
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
|
-
/**
|
|
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
|
-
/**
|
|
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
|
-
/**
|
|
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
|
-
/**
|
|
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
|
-
/**
|
|
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
|
-
/**
|
|
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
|
-
/**
|
|
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
|
-
/**
|
|
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
|
-
/**
|
|
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
|
-
/**
|
|
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
|
-
/**
|
|
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
|
-
/**
|
|
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
|
-
/**
|
|
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
|
-
/**
|
|
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
|
-
/**
|
|
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
|
-
/**
|
|
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
|
-
/**
|
|
49
|
-
|
|
50
|
-
|
|
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
|
-
/**
|
|
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
|
-
/**
|
|
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
|
-
/**
|
|
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
|
-
/**
|
|
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
|
-
/**
|
|
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
|
-
/**
|
|
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
|
-
/**
|
|
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
|
-
/**
|
|
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
|
-
/**
|
|
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
|
-
/**
|
|
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
|
-
/**
|
|
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
|
-
/**
|
|
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
|
-
/**
|
|
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
|
-
/**
|
|
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
|
-
/**
|
|
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
|
-
/**
|
|
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
|
-
/**
|
|
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
|
-
/**
|
|
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
|
-
/**
|
|
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
|
-
/**
|
|
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
|
-
/**
|
|
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
|
-
/**
|
|
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
|
package/dist/operations.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"operations.d.ts","sourceRoot":"","sources":["../src/operations.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,UAAU,EAAc,KAAK,UAAU,EAAE,KAAK,cAAc,EAAE,MAAM,kBAAkB,CAAC;AAChG,OAAO,KAAK,KAAK,CAAC,MAAM,uBAAuB,CAAC;AAEhD,qBAAa,aAAc,SAAQ,UAAU;IAC3C
|
|
1
|
+
{"version":3,"file":"operations.d.ts","sourceRoot":"","sources":["../src/operations.ts"],"names":[],"mappings":"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"}
|