@faiber/faiber-profile 0.3.0 → 0.5.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +3 -2
- package/dist/.tsbuildinfo +1 -1
- package/dist/operations.d.ts +1010 -124
- package/dist/operations.d.ts.map +1 -1
- package/dist/operations.js +1037 -139
- package/dist/operations.js.map +1 -1
- package/dist/operations.types.d.ts +481 -272
- package/dist/operations.types.d.ts.map +1 -1
- package/package.json +4 -3
package/dist/operations.d.ts
CHANGED
|
@@ -1,235 +1,1121 @@
|
|
|
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 ProfileOperations extends ServiceApi {
|
|
4
|
-
/**
|
|
4
|
+
/**
|
|
5
|
+
* Performs the openapi json operation for the router capability.
|
|
6
|
+
* Calls `GET /api/openapi.json` 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
|
routerOpenapiJsonGet(options?: RequestOptions): Promise<import("axios").AxiosResponse<T.RouterOpenapiJsonGetResponse, unknown, {}>>;
|
|
6
|
-
/**
|
|
12
|
+
/**
|
|
13
|
+
* Performs the address get operation for the option capability.
|
|
14
|
+
* Calls `POST /api/v1/address/get` through the shared IDP-aware Faiber client.
|
|
15
|
+
* @param data Typed JSON request body.
|
|
16
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
17
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
18
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
|
|
19
|
+
*/
|
|
7
20
|
optionAddressGetPost(data: T.OptionAddressGetPostInput, options?: RequestOptions<T.OptionAddressGetPostInput>): Promise<import("axios").AxiosResponse<T.OptionAddressGetPostResponse, T.OptionAddressGetPostInput, {}>>;
|
|
8
|
-
/**
|
|
21
|
+
/**
|
|
22
|
+
* Performs the get chat context operation for the session capability.
|
|
23
|
+
* Calls `GET /api/v1/auth/chat-context` through the shared IDP-aware Faiber client.
|
|
24
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
25
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
26
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
|
|
27
|
+
*/
|
|
28
|
+
sessionGetChatContextGet(options?: RequestOptions): Promise<import("axios").AxiosResponse<T.SessionGetChatContextGetResponse, unknown, {}>>;
|
|
29
|
+
/**
|
|
30
|
+
* Performs the get self operation for the session capability.
|
|
31
|
+
* Calls `GET /api/v1/auth/self` through the shared IDP-aware Faiber client.
|
|
32
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
33
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
34
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
|
|
35
|
+
*/
|
|
9
36
|
sessionGetSelfGet(options?: RequestOptions): Promise<import("axios").AxiosResponse<T.SessionGetSelfGetResponse, unknown, {}>>;
|
|
10
|
-
/**
|
|
37
|
+
/**
|
|
38
|
+
* Performs the index operation for the campaign capability.
|
|
39
|
+
* Calls `GET /api/v1/campaign` through the shared IDP-aware Faiber client.
|
|
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
|
+
*/
|
|
44
|
+
campaignIndexGet(options?: RequestOptions): Promise<import("axios").AxiosResponse<T.CampaignIndexGetResponse, unknown, {}>>;
|
|
45
|
+
/**
|
|
46
|
+
* Performs the my contributions operation for the campaign capability.
|
|
47
|
+
* Calls `GET /api/v1/campaign-profile/me/contributions` through the shared IDP-aware Faiber client.
|
|
48
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
49
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
50
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
|
|
51
|
+
*/
|
|
52
|
+
campaignMyContributionsGet(options?: RequestOptions): Promise<import("axios").AxiosResponse<T.CampaignMyContributionsGetResponse, unknown, {}>>;
|
|
53
|
+
/**
|
|
54
|
+
* Performs the show operation for the campaign capability.
|
|
55
|
+
* Calls `GET /api/v1/campaign/{id}` through the shared IDP-aware Faiber client.
|
|
56
|
+
* @param id Backend path identifier `id`.
|
|
57
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
58
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
59
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
|
|
60
|
+
*/
|
|
61
|
+
campaignShowGet(id: Identifier, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.CampaignShowGetResponse, unknown, {}>>;
|
|
62
|
+
/**
|
|
63
|
+
* Performs the contribute operation for the campaign capability.
|
|
64
|
+
* Calls `POST /api/v1/campaign/{id}/contributions` through the shared IDP-aware Faiber client.
|
|
65
|
+
* @param id Backend path identifier `id`.
|
|
66
|
+
* @param data Typed JSON request body.
|
|
67
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
68
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
69
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
|
|
70
|
+
*/
|
|
71
|
+
campaignContributePost(id: Identifier, data: T.CampaignContributePostInput, options?: RequestOptions<T.CampaignContributePostInput>): Promise<import("axios").AxiosResponse<T.CampaignContributePostResponse, T.CampaignContributePostInput, {}>>;
|
|
72
|
+
/**
|
|
73
|
+
* Performs the index operation for the city capability.
|
|
74
|
+
* Calls `GET /api/v1/city` through the shared IDP-aware Faiber client.
|
|
75
|
+
* @param params Typed query parameters; omitted members retain backend defaults.
|
|
76
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
77
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
78
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: city:read.
|
|
79
|
+
*/
|
|
11
80
|
cityIndexGet(params?: T.CityIndexGetQuery, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.CityIndexGetResponse, unknown, {}>>;
|
|
12
|
-
/**
|
|
81
|
+
/**
|
|
82
|
+
* Performs the store operation for the city capability.
|
|
83
|
+
* Calls `POST /api/v1/city` through the shared IDP-aware Faiber client.
|
|
84
|
+
* @param data Typed JSON request body.
|
|
85
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
86
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
87
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: city:create.
|
|
88
|
+
*/
|
|
13
89
|
cityStorePost(data: T.CityStorePostInput, options?: RequestOptions<T.CityStorePostInput>): Promise<import("axios").AxiosResponse<T.CityStorePostResponse, T.CityStorePostInput, {}>>;
|
|
14
|
-
/**
|
|
90
|
+
/**
|
|
91
|
+
* Performs the destroy operation for the city capability.
|
|
92
|
+
* Calls `DELETE /api/v1/city/{id}` through the shared IDP-aware Faiber client.
|
|
93
|
+
* @param id Backend path identifier `id`.
|
|
94
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
95
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
96
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: city:delete.
|
|
97
|
+
*/
|
|
15
98
|
cityDestroyDelete(id: Identifier, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.CityDestroyDeleteResponse, unknown, {}>>;
|
|
16
|
-
/**
|
|
99
|
+
/**
|
|
100
|
+
* Performs the show operation for the city capability.
|
|
101
|
+
* Calls `GET /api/v1/city/{id}` through the shared IDP-aware Faiber client.
|
|
102
|
+
* @param id Backend path identifier `id`.
|
|
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: city:read.
|
|
106
|
+
*/
|
|
17
107
|
cityShowGet(id: Identifier, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.CityShowGetResponse, unknown, {}>>;
|
|
18
|
-
/**
|
|
108
|
+
/**
|
|
109
|
+
* Performs the update operation for the city capability.
|
|
110
|
+
* Calls `PATCH /api/v1/city/{id}` through the shared IDP-aware Faiber client.
|
|
111
|
+
* @param id Backend path identifier `id`.
|
|
112
|
+
* @param data Typed JSON request body.
|
|
113
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
114
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
115
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: city:update.
|
|
116
|
+
*/
|
|
19
117
|
cityUpdatePatch(id: Identifier, data: T.CityUpdatePatchInput, options?: RequestOptions<T.CityUpdatePatchInput>): Promise<import("axios").AxiosResponse<T.CityUpdatePatchResponse, T.CityUpdatePatchInput, {}>>;
|
|
20
|
-
/**
|
|
118
|
+
/**
|
|
119
|
+
* Performs the update operation for the city capability.
|
|
120
|
+
* Calls `PUT /api/v1/city/{id}` through the shared IDP-aware Faiber client.
|
|
121
|
+
* @param id Backend path identifier `id`.
|
|
122
|
+
* @param data Typed JSON request body.
|
|
123
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
124
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
125
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: city:update.
|
|
126
|
+
*/
|
|
21
127
|
cityUpdatePut(id: Identifier, data: T.CityUpdatePutInput, options?: RequestOptions<T.CityUpdatePutInput>): Promise<import("axios").AxiosResponse<T.CityUpdatePutResponse, T.CityUpdatePutInput, {}>>;
|
|
22
|
-
/**
|
|
128
|
+
/**
|
|
129
|
+
* Performs the force destroy operation for the city capability.
|
|
130
|
+
* Calls `DELETE /api/v1/city/force/{id}` through the shared IDP-aware Faiber client.
|
|
131
|
+
* @param id Backend path identifier `id`.
|
|
132
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
133
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
134
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: city:delete.
|
|
135
|
+
*/
|
|
23
136
|
cityForceDestroyDelete(id: Identifier, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.CityForceDestroyDeleteResponse, unknown, {}>>;
|
|
24
|
-
/**
|
|
137
|
+
/**
|
|
138
|
+
* Performs the restore operation for the city capability.
|
|
139
|
+
* Calls `GET /api/v1/city/undo/{id}` through the shared IDP-aware Faiber client.
|
|
140
|
+
* @param id Backend path identifier `id`.
|
|
141
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
142
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
143
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: city:delete.
|
|
144
|
+
*/
|
|
25
145
|
cityRestoreGet(id: Identifier, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.CityRestoreGetResponse, unknown, {}>>;
|
|
26
|
-
/**
|
|
146
|
+
/**
|
|
147
|
+
* Performs the index operation for the country capability.
|
|
148
|
+
* Calls `GET /api/v1/country` through the shared IDP-aware Faiber client.
|
|
149
|
+
* @param params Typed query parameters; omitted members retain backend defaults.
|
|
150
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
151
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
152
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: country:read.
|
|
153
|
+
*/
|
|
27
154
|
countryIndexGet(params?: T.CountryIndexGetQuery, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.CountryIndexGetResponse, unknown, {}>>;
|
|
28
|
-
/**
|
|
155
|
+
/**
|
|
156
|
+
* Performs the store operation for the country capability.
|
|
157
|
+
* Calls `POST /api/v1/country` through the shared IDP-aware Faiber client.
|
|
158
|
+
* @param data Typed JSON request body.
|
|
159
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
160
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
161
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: country:create.
|
|
162
|
+
*/
|
|
29
163
|
countryStorePost(data: T.CountryStorePostInput, options?: RequestOptions<T.CountryStorePostInput>): Promise<import("axios").AxiosResponse<T.CountryStorePostResponse, T.CountryStorePostInput, {}>>;
|
|
30
|
-
/**
|
|
164
|
+
/**
|
|
165
|
+
* Performs the destroy operation for the country capability.
|
|
166
|
+
* Calls `DELETE /api/v1/country/{id}` through the shared IDP-aware Faiber client.
|
|
167
|
+
* @param id Backend path identifier `id`.
|
|
168
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
169
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
170
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: country:delete.
|
|
171
|
+
*/
|
|
31
172
|
countryDestroyDelete(id: Identifier, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.CountryDestroyDeleteResponse, unknown, {}>>;
|
|
32
|
-
/**
|
|
173
|
+
/**
|
|
174
|
+
* Performs the show operation for the country capability.
|
|
175
|
+
* Calls `GET /api/v1/country/{id}` through the shared IDP-aware Faiber client.
|
|
176
|
+
* @param id Backend path identifier `id`.
|
|
177
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
178
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
179
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: country:read.
|
|
180
|
+
*/
|
|
33
181
|
countryShowGet(id: Identifier, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.CountryShowGetResponse, unknown, {}>>;
|
|
34
|
-
/**
|
|
182
|
+
/**
|
|
183
|
+
* Performs the update operation for the country capability.
|
|
184
|
+
* Calls `PATCH /api/v1/country/{id}` through the shared IDP-aware Faiber client.
|
|
185
|
+
* @param id Backend path identifier `id`.
|
|
186
|
+
* @param data Typed JSON request body.
|
|
187
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
188
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
189
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: country:update.
|
|
190
|
+
*/
|
|
35
191
|
countryUpdatePatch(id: Identifier, data: T.CountryUpdatePatchInput, options?: RequestOptions<T.CountryUpdatePatchInput>): Promise<import("axios").AxiosResponse<T.CountryUpdatePatchResponse, T.CountryUpdatePatchInput, {}>>;
|
|
36
|
-
/**
|
|
192
|
+
/**
|
|
193
|
+
* Performs the update operation for the country capability.
|
|
194
|
+
* Calls `PUT /api/v1/country/{id}` through the shared IDP-aware Faiber client.
|
|
195
|
+
* @param id Backend path identifier `id`.
|
|
196
|
+
* @param data Typed JSON request body.
|
|
197
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
198
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
199
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: country:update.
|
|
200
|
+
*/
|
|
37
201
|
countryUpdatePut(id: Identifier, data: T.CountryUpdatePutInput, options?: RequestOptions<T.CountryUpdatePutInput>): Promise<import("axios").AxiosResponse<T.CountryUpdatePutResponse, T.CountryUpdatePutInput, {}>>;
|
|
38
|
-
/**
|
|
202
|
+
/**
|
|
203
|
+
* Performs the force destroy operation for the country capability.
|
|
204
|
+
* Calls `DELETE /api/v1/country/force/{id}` through the shared IDP-aware Faiber client.
|
|
205
|
+
* @param id Backend path identifier `id`.
|
|
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: country:delete.
|
|
209
|
+
*/
|
|
39
210
|
countryForceDestroyDelete(id: Identifier, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.CountryForceDestroyDeleteResponse, unknown, {}>>;
|
|
40
|
-
/**
|
|
211
|
+
/**
|
|
212
|
+
* Performs the restore operation for the country capability.
|
|
213
|
+
* Calls `GET /api/v1/country/undo/{id}` through the shared IDP-aware Faiber client.
|
|
214
|
+
* @param id Backend path identifier `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: country:delete.
|
|
218
|
+
*/
|
|
41
219
|
countryRestoreGet(id: Identifier, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.CountryRestoreGetResponse, unknown, {}>>;
|
|
42
|
-
/**
|
|
220
|
+
/**
|
|
221
|
+
* Performs the dependency operation for the option capability.
|
|
222
|
+
* Calls `GET /api/v1/dependency` through the shared IDP-aware Faiber client.
|
|
223
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
224
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
225
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: dependency:read.
|
|
226
|
+
*/
|
|
43
227
|
optionDependencyGet(options?: RequestOptions): Promise<import("axios").AxiosResponse<T.OptionDependencyGetResponse, unknown, {}>>;
|
|
44
|
-
/**
|
|
228
|
+
/**
|
|
229
|
+
* Performs the identity operation for the option capability.
|
|
230
|
+
* Calls `GET /api/v1/identity` through the shared IDP-aware Faiber client.
|
|
231
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
232
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
233
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
|
|
234
|
+
*/
|
|
45
235
|
optionIdentityGet(options?: RequestOptions): Promise<import("axios").AxiosResponse<T.OptionIdentityGetResponse, unknown, {}>>;
|
|
46
|
-
/**
|
|
236
|
+
/**
|
|
237
|
+
* Performs the integration docs show operation for the integration capability.
|
|
238
|
+
* Calls `GET /api/v1/integration/docs` through the shared IDP-aware Faiber client.
|
|
239
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
240
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
241
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: admin:integration:read.
|
|
242
|
+
*/
|
|
47
243
|
integrationIntegrationDocsShowGet(options?: RequestOptions): Promise<import("axios").AxiosResponse<T.IntegrationIntegrationDocsShowGetResponse, unknown, {}>>;
|
|
48
|
-
/**
|
|
244
|
+
/**
|
|
245
|
+
* Performs the flow integration show operation for the integration capability.
|
|
246
|
+
* Calls `GET /api/v1/integration/flow` through the shared IDP-aware Faiber client.
|
|
247
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
248
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
249
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
|
|
250
|
+
*/
|
|
49
251
|
integrationFlowIntegrationShowGet(options?: RequestOptions): Promise<import("axios").AxiosResponse<T.IntegrationFlowIntegrationShowGetResponse, unknown, {}>>;
|
|
50
|
-
/**
|
|
252
|
+
/**
|
|
253
|
+
* Performs the store operation for the log action capability.
|
|
254
|
+
* Calls `POST /api/v1/log-action` through the shared IDP-aware Faiber client.
|
|
255
|
+
* @param data Typed JSON request body.
|
|
256
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
257
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
258
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: log_action:create.
|
|
259
|
+
*/
|
|
51
260
|
logActionStorePost(data: T.LogActionStorePostInput, options?: RequestOptions<T.LogActionStorePostInput>): Promise<import("axios").AxiosResponse<T.LogActionStorePostResponse, T.LogActionStorePostInput, {}>>;
|
|
52
|
-
/**
|
|
261
|
+
/**
|
|
262
|
+
* Performs the store slug operation for the log action capability.
|
|
263
|
+
* Calls `POST /api/v1/log-action/{slug}` through the shared IDP-aware Faiber client.
|
|
264
|
+
* @param slug Backend path identifier `slug`.
|
|
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: log_action:create.
|
|
269
|
+
*/
|
|
53
270
|
logActionStoreSlugPost(slug: Identifier, data: T.LogActionStoreSlugPostInput, options?: RequestOptions<T.LogActionStoreSlugPostInput>): Promise<import("axios").AxiosResponse<T.LogActionStoreSlugPostResponse, T.LogActionStoreSlugPostInput, {}>>;
|
|
54
|
-
/**
|
|
271
|
+
/**
|
|
272
|
+
* Performs the store direct operation for the log action capability.
|
|
273
|
+
* Calls `POST /api/v1/log-action/direct/{slug}` through the shared IDP-aware Faiber client.
|
|
274
|
+
* @param slug Backend path identifier `slug`.
|
|
275
|
+
* @param data Typed JSON request body.
|
|
276
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
277
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
278
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
|
|
279
|
+
*/
|
|
55
280
|
logActionStoreDirectPost(slug: Identifier, data: T.LogActionStoreDirectPostInput, options?: RequestOptions<T.LogActionStoreDirectPostInput>): Promise<import("axios").AxiosResponse<T.LogActionStoreDirectPostResponse, T.LogActionStoreDirectPostInput, {}>>;
|
|
56
|
-
/**
|
|
281
|
+
/**
|
|
282
|
+
* Performs the index operation for the logger capability.
|
|
283
|
+
* Calls `GET /api/v1/logger` through the shared IDP-aware Faiber client.
|
|
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
|
+
*/
|
|
57
288
|
loggerIndexGet(options?: RequestOptions): Promise<import("axios").AxiosResponse<T.LoggerIndexGetResponse, unknown, {}>>;
|
|
58
|
-
/**
|
|
289
|
+
/**
|
|
290
|
+
* Performs the show operation for the logger capability.
|
|
291
|
+
* Calls `GET /api/v1/logger/{log}` through the shared IDP-aware Faiber client.
|
|
292
|
+
* @param log Backend path identifier `log`.
|
|
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
|
+
*/
|
|
59
297
|
loggerShowGet(log: Identifier, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.LoggerShowGetResponse, unknown, {}>>;
|
|
60
|
-
/**
|
|
298
|
+
/**
|
|
299
|
+
* Performs the parent get operation for the option capability.
|
|
300
|
+
* Calls `POST /api/v1/parent/get` through the shared IDP-aware Faiber client.
|
|
301
|
+
* @param data Typed JSON request body.
|
|
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
|
+
*/
|
|
61
306
|
optionParentGetPost(data: T.OptionParentGetPostInput, options?: RequestOptions<T.OptionParentGetPostInput>): Promise<import("axios").AxiosResponse<T.OptionParentGetPostResponse, T.OptionParentGetPostInput, {}>>;
|
|
62
|
-
/**
|
|
307
|
+
/**
|
|
308
|
+
* Performs the index operation for the profile capability.
|
|
309
|
+
* Calls `GET /api/v1/profile` through the shared IDP-aware Faiber client.
|
|
310
|
+
* @param params Typed query parameters; omitted members retain backend defaults.
|
|
311
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
312
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
313
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: /api/v1/profile, profile:read.
|
|
314
|
+
*/
|
|
63
315
|
profileIndexGet(params?: T.ProfileIndexGetQuery, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.ProfileIndexGetResponse, unknown, {}>>;
|
|
64
|
-
/**
|
|
316
|
+
/**
|
|
317
|
+
* Performs the index operation for the profile property capability.
|
|
318
|
+
* Calls `GET /api/v1/profile-property-definition` through the shared IDP-aware Faiber client.
|
|
319
|
+
* @param params Typed query parameters; omitted members retain backend defaults.
|
|
320
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
321
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
322
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: profile_property_definition:read.
|
|
323
|
+
*/
|
|
65
324
|
profilePropertyIndexGet(params?: T.ProfilePropertyIndexGetQuery, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.ProfilePropertyIndexGetResponse, unknown, {}>>;
|
|
66
|
-
/**
|
|
325
|
+
/**
|
|
326
|
+
* Performs the store operation for the profile property capability.
|
|
327
|
+
* Calls `POST /api/v1/profile-property-definition` through the shared IDP-aware Faiber client.
|
|
328
|
+
* @param data Typed JSON request body.
|
|
329
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
330
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
331
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: profile_property_definition:create.
|
|
332
|
+
*/
|
|
67
333
|
profilePropertyStorePost(data: T.ProfilePropertyStorePostInput, options?: RequestOptions<T.ProfilePropertyStorePostInput>): Promise<import("axios").AxiosResponse<T.ProfilePropertyStorePostResponse, T.ProfilePropertyStorePostInput, {}>>;
|
|
68
|
-
/**
|
|
334
|
+
/**
|
|
335
|
+
* Performs the destroy operation for the profile property capability.
|
|
336
|
+
* Calls `DELETE /api/v1/profile-property-definition/{id}` through the shared IDP-aware Faiber client.
|
|
337
|
+
* @param id Backend path identifier `id`.
|
|
338
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
339
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
340
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: profile_property_definition:delete.
|
|
341
|
+
*/
|
|
69
342
|
profilePropertyDestroyDelete(id: Identifier, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.ProfilePropertyDestroyDeleteResponse, unknown, {}>>;
|
|
70
|
-
/**
|
|
343
|
+
/**
|
|
344
|
+
* Performs the show operation for the profile property capability.
|
|
345
|
+
* Calls `GET /api/v1/profile-property-definition/{id}` through the shared IDP-aware Faiber client.
|
|
346
|
+
* @param id Backend path identifier `id`.
|
|
347
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
348
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
349
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: profile_property_definition:read.
|
|
350
|
+
*/
|
|
71
351
|
profilePropertyShowGet(id: Identifier, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.ProfilePropertyShowGetResponse, unknown, {}>>;
|
|
72
|
-
/**
|
|
352
|
+
/**
|
|
353
|
+
* Performs the update operation for the profile property capability.
|
|
354
|
+
* Calls `PATCH /api/v1/profile-property-definition/{id}` through the shared IDP-aware Faiber client.
|
|
355
|
+
* @param id Backend path identifier `id`.
|
|
356
|
+
* @param data Typed JSON request body.
|
|
357
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
358
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
359
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: profile_property_definition:update.
|
|
360
|
+
*/
|
|
73
361
|
profilePropertyUpdatePatch(id: Identifier, data: T.ProfilePropertyUpdatePatchInput, options?: RequestOptions<T.ProfilePropertyUpdatePatchInput>): Promise<import("axios").AxiosResponse<T.ProfilePropertyUpdatePatchResponse, T.ProfilePropertyUpdatePatchInput, {}>>;
|
|
74
|
-
/**
|
|
362
|
+
/**
|
|
363
|
+
* Performs the update operation for the profile property capability.
|
|
364
|
+
* Calls `PUT /api/v1/profile-property-definition/{id}` through the shared IDP-aware Faiber client.
|
|
365
|
+
* @param id Backend path identifier `id`.
|
|
366
|
+
* @param data Typed JSON request body.
|
|
367
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
368
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
369
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: profile_property_definition:update.
|
|
370
|
+
*/
|
|
75
371
|
profilePropertyUpdatePut(id: Identifier, data: T.ProfilePropertyUpdatePutInput, options?: RequestOptions<T.ProfilePropertyUpdatePutInput>): Promise<import("axios").AxiosResponse<T.ProfilePropertyUpdatePutResponse, T.ProfilePropertyUpdatePutInput, {}>>;
|
|
76
|
-
/**
|
|
372
|
+
/**
|
|
373
|
+
* Performs the force destroy operation for the profile property capability.
|
|
374
|
+
* Calls `DELETE /api/v1/profile-property-definition/force/{id}` through the shared IDP-aware Faiber client.
|
|
375
|
+
* @param id Backend path identifier `id`.
|
|
376
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
377
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
378
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: profile_property_definition:force_delete.
|
|
379
|
+
*/
|
|
77
380
|
profilePropertyForceDestroyDelete(id: Identifier, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.ProfilePropertyForceDestroyDeleteResponse, unknown, {}>>;
|
|
78
|
-
/**
|
|
381
|
+
/**
|
|
382
|
+
* Performs the restore operation for the profile property capability.
|
|
383
|
+
* Calls `GET /api/v1/profile-property-definition/undo/{id}` through the shared IDP-aware Faiber client.
|
|
384
|
+
* @param id Backend path identifier `id`.
|
|
385
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
386
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
387
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: profile_property_definition:restore.
|
|
388
|
+
*/
|
|
79
389
|
profilePropertyRestoreGet(id: Identifier, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.ProfilePropertyRestoreGetResponse, unknown, {}>>;
|
|
80
|
-
/**
|
|
390
|
+
/**
|
|
391
|
+
* Performs the delete parent operation for the profile capability.
|
|
392
|
+
* Calls `DELETE /api/v1/profile/{student_uuid}/delete/parent/{parent_uuid}` through the shared IDP-aware Faiber client.
|
|
393
|
+
* @param studentUuid Backend path identifier `student_uuid`.
|
|
394
|
+
* @param parentUuid Backend path identifier `parent_uuid`.
|
|
395
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
396
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
397
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: profile:update.
|
|
398
|
+
*/
|
|
81
399
|
profileDeleteParentDelete(studentUuid: Identifier, parentUuid: Identifier, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.ProfileDeleteParentDeleteResponse, unknown, {}>>;
|
|
82
|
-
/**
|
|
400
|
+
/**
|
|
401
|
+
* Performs the destroy operation for the profile capability.
|
|
402
|
+
* Calls `DELETE /api/v1/profile/{uuid}` through the shared IDP-aware Faiber client.
|
|
403
|
+
* @param uuid Backend path identifier `uuid`.
|
|
404
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
405
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
406
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: profile:delete.
|
|
407
|
+
*/
|
|
83
408
|
profileDestroyDelete(uuid: Identifier, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.ProfileDestroyDeleteResponse, unknown, {}>>;
|
|
84
|
-
/**
|
|
409
|
+
/**
|
|
410
|
+
* Performs the show operation for the profile capability.
|
|
411
|
+
* Calls `GET /api/v1/profile/{uuid}` through the shared IDP-aware Faiber client.
|
|
412
|
+
* @param uuid Backend path identifier `uuid`.
|
|
413
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
414
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
415
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: profile:read.
|
|
416
|
+
*/
|
|
85
417
|
profileShowGet(uuid: Identifier, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.ProfileShowGetResponse, unknown, {}>>;
|
|
86
|
-
/**
|
|
418
|
+
/**
|
|
419
|
+
* Performs the update operation for the profile capability.
|
|
420
|
+
* Calls `PATCH /api/v1/profile/{uuid}` through the shared IDP-aware Faiber client.
|
|
421
|
+
* @param uuid Backend path identifier `uuid`.
|
|
422
|
+
* @param data Typed JSON request body.
|
|
423
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
424
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
425
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: profile:update.
|
|
426
|
+
*/
|
|
87
427
|
profileUpdatePatch(uuid: Identifier, data: T.ProfileUpdatePatchInput, options?: RequestOptions<T.ProfileUpdatePatchInput>): Promise<import("axios").AxiosResponse<T.ProfileUpdatePatchResponse, T.ProfileUpdatePatchInput, {}>>;
|
|
88
|
-
/**
|
|
428
|
+
/**
|
|
429
|
+
* Performs the show admin operation for the profile capability.
|
|
430
|
+
* Calls `GET /api/v1/profile/{uuid}/admin` through the shared IDP-aware Faiber client.
|
|
431
|
+
* @param uuid Backend path identifier `uuid`.
|
|
432
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
433
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
434
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: profile:read_admin.
|
|
435
|
+
*/
|
|
89
436
|
profileShowAdminGet(uuid: Identifier, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.ProfileShowAdminGetResponse, unknown, {}>>;
|
|
90
|
-
/**
|
|
437
|
+
/**
|
|
438
|
+
* Performs the avatar delete operation for the profile capability.
|
|
439
|
+
* Calls `DELETE /api/v1/profile/{uuid}/avatar` through the shared IDP-aware Faiber client.
|
|
440
|
+
* @param uuid Backend path identifier `uuid`.
|
|
441
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
442
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
443
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
|
|
444
|
+
*/
|
|
91
445
|
profileAvatarDeleteDelete(uuid: Identifier, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.ProfileAvatarDeleteDeleteResponse, unknown, {}>>;
|
|
92
|
-
/**
|
|
93
|
-
|
|
94
|
-
|
|
446
|
+
/**
|
|
447
|
+
* Performs the avatar show operation for the profile capability.
|
|
448
|
+
* Calls `GET /api/v1/profile/{uuid}/avatar` through the shared IDP-aware Faiber client.
|
|
449
|
+
* @param uuid Backend path identifier `uuid`.
|
|
450
|
+
* @param params Typed query parameters; omitted members retain backend defaults.
|
|
451
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
452
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
453
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
|
|
454
|
+
*/
|
|
455
|
+
profileAvatarShowGet(uuid: Identifier, params?: T.ProfileAvatarShowGetQuery, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.ProfileAvatarShowGetResponse, unknown, {}>>;
|
|
456
|
+
/**
|
|
457
|
+
* Performs the avatar store operation for the profile capability.
|
|
458
|
+
* Calls `POST /api/v1/profile/{uuid}/avatar` through the shared IDP-aware Faiber client.
|
|
459
|
+
* @param uuid Backend path identifier `uuid`.
|
|
460
|
+
* @param data Typed multipart form.
|
|
461
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
462
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
463
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
|
|
464
|
+
*/
|
|
465
|
+
profileAvatarStorePost(uuid: Identifier, data: T.ProfileAvatarStorePostInput, options?: RequestOptions<T.ProfileAvatarStorePostInput>): Promise<import("axios").AxiosResponse<T.ProfileAvatarStorePostResponse, FormData, {}>>;
|
|
466
|
+
/**
|
|
467
|
+
* Performs the delete address operation for the profile capability.
|
|
468
|
+
* Calls `DELETE /api/v1/profile/{uuid}/delete/address/{title}` through the shared IDP-aware Faiber client.
|
|
469
|
+
* @param uuid Backend path identifier `uuid`.
|
|
470
|
+
* @param title Backend path identifier `title`.
|
|
471
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
472
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
473
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: profile:update.
|
|
474
|
+
*/
|
|
95
475
|
profileDeleteAddressDelete(uuid: Identifier, title: Identifier, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.ProfileDeleteAddressDeleteResponse, unknown, {}>>;
|
|
96
|
-
/**
|
|
476
|
+
/**
|
|
477
|
+
* Performs the update employee type operation for the profile capability.
|
|
478
|
+
* Calls `PATCH /api/v1/profile/{uuid}/employee-type` through the shared IDP-aware Faiber client.
|
|
479
|
+
* @param uuid Backend path identifier `uuid`.
|
|
480
|
+
* @param data Typed JSON request body.
|
|
481
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
482
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
483
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: profile:update_employee_type.
|
|
484
|
+
*/
|
|
97
485
|
profileUpdateEmployeeTypePatch(uuid: Identifier, data: T.ProfileUpdateEmployeeTypePatchInput, options?: RequestOptions<T.ProfileUpdateEmployeeTypePatchInput>): Promise<import("axios").AxiosResponse<T.ProfileUpdateEmployeeTypePatchResponse, T.ProfileUpdateEmployeeTypePatchInput, {}>>;
|
|
98
|
-
/**
|
|
486
|
+
/**
|
|
487
|
+
* Performs the update employee type operation for the profile capability.
|
|
488
|
+
* Calls `PUT /api/v1/profile/{uuid}/employee-type` through the shared IDP-aware Faiber client.
|
|
489
|
+
* @param uuid Backend path identifier `uuid`.
|
|
490
|
+
* @param data Typed JSON request body.
|
|
491
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
492
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
493
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: profile:update_employee_type.
|
|
494
|
+
*/
|
|
99
495
|
profileUpdateEmployeeTypePut(uuid: Identifier, data: T.ProfileUpdateEmployeeTypePutInput, options?: RequestOptions<T.ProfileUpdateEmployeeTypePutInput>): Promise<import("axios").AxiosResponse<T.ProfileUpdateEmployeeTypePutResponse, T.ProfileUpdateEmployeeTypePutInput, {}>>;
|
|
100
|
-
/**
|
|
496
|
+
/**
|
|
497
|
+
* Performs the update freemium operation for the profile capability.
|
|
498
|
+
* Calls `PATCH /api/v1/profile/{uuid}/freemium-session-limit` through the shared IDP-aware Faiber client.
|
|
499
|
+
* @param uuid Backend path identifier `uuid`.
|
|
500
|
+
* @param data Typed JSON request body.
|
|
501
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
502
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
503
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: profile:freemium_session_limit.
|
|
504
|
+
*/
|
|
101
505
|
profileUpdateFreemiumPatch(uuid: Identifier, data: T.ProfileUpdateFreemiumPatchInput, options?: RequestOptions<T.ProfileUpdateFreemiumPatchInput>): Promise<import("axios").AxiosResponse<T.ProfileUpdateFreemiumPatchResponse, T.ProfileUpdateFreemiumPatchInput, {}>>;
|
|
102
|
-
/**
|
|
506
|
+
/**
|
|
507
|
+
* Performs the update freemium operation for the profile capability.
|
|
508
|
+
* Calls `PUT /api/v1/profile/{uuid}/freemium-session-limit` through the shared IDP-aware Faiber client.
|
|
509
|
+
* @param uuid Backend path identifier `uuid`.
|
|
510
|
+
* @param data Typed JSON request body.
|
|
511
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
512
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
513
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: profile:freemium_session_limit.
|
|
514
|
+
*/
|
|
103
515
|
profileUpdateFreemiumPut(uuid: Identifier, data: T.ProfileUpdateFreemiumPutInput, options?: RequestOptions<T.ProfileUpdateFreemiumPutInput>): Promise<import("axios").AxiosResponse<T.ProfileUpdateFreemiumPutResponse, T.ProfileUpdateFreemiumPutInput, {}>>;
|
|
104
|
-
/**
|
|
516
|
+
/**
|
|
517
|
+
* Performs the show full operation for the profile capability.
|
|
518
|
+
* Calls `GET /api/v1/profile/{uuid}/full` through the shared IDP-aware Faiber client.
|
|
519
|
+
* @param uuid Backend path identifier `uuid`.
|
|
520
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
521
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
522
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: profile:read.
|
|
523
|
+
*/
|
|
105
524
|
profileShowFullGet(uuid: Identifier, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.ProfileShowFullGetResponse, unknown, {}>>;
|
|
106
|
-
/**
|
|
525
|
+
/**
|
|
526
|
+
* Performs the media show operation for the profile capability.
|
|
527
|
+
* Calls `GET /api/v1/profile/{uuid}/media` through the shared IDP-aware Faiber client.
|
|
528
|
+
* @param uuid Backend path identifier `uuid`.
|
|
529
|
+
* @param params Typed query parameters; omitted members retain backend defaults.
|
|
530
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
531
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
532
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
|
|
533
|
+
*/
|
|
107
534
|
profileMediaShowGet(uuid: Identifier, params?: T.ProfileMediaShowGetQuery, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.ProfileMediaShowGetResponse, unknown, {}>>;
|
|
108
|
-
/**
|
|
535
|
+
/**
|
|
536
|
+
* Performs the update properties operation for the profile capability.
|
|
537
|
+
* Calls `PATCH /api/v1/profile/{uuid}/properties` through the shared IDP-aware Faiber client.
|
|
538
|
+
* @param uuid Backend path identifier `uuid`.
|
|
539
|
+
* @param data Typed JSON request body.
|
|
540
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
541
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
542
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: profile:update.
|
|
543
|
+
*/
|
|
109
544
|
profileUpdatePropertiesPatch(uuid: Identifier, data: T.ProfileUpdatePropertiesPatchInput, options?: RequestOptions<T.ProfileUpdatePropertiesPatchInput>): Promise<import("axios").AxiosResponse<T.ProfileUpdatePropertiesPatchResponse, T.ProfileUpdatePropertiesPatchInput, {}>>;
|
|
110
|
-
/**
|
|
545
|
+
/**
|
|
546
|
+
* Performs the update properties operation for the profile capability.
|
|
547
|
+
* Calls `PUT /api/v1/profile/{uuid}/properties` through the shared IDP-aware Faiber client.
|
|
548
|
+
* @param uuid Backend path identifier `uuid`.
|
|
549
|
+
* @param data Typed JSON request body.
|
|
550
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
551
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
552
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: profile:update.
|
|
553
|
+
*/
|
|
111
554
|
profileUpdatePropertiesPut(uuid: Identifier, data: T.ProfileUpdatePropertiesPutInput, options?: RequestOptions<T.ProfileUpdatePropertiesPutInput>): Promise<import("axios").AxiosResponse<T.ProfileUpdatePropertiesPutResponse, T.ProfileUpdatePropertiesPutInput, {}>>;
|
|
112
|
-
/**
|
|
555
|
+
/**
|
|
556
|
+
* Performs the update status operation for the profile capability.
|
|
557
|
+
* Calls `PATCH /api/v1/profile/{uuid}/status` through the shared IDP-aware Faiber client.
|
|
558
|
+
* @param uuid Backend path identifier `uuid`.
|
|
559
|
+
* @param data Typed JSON request body.
|
|
560
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
561
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
562
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: profile:update_status.
|
|
563
|
+
*/
|
|
113
564
|
profileUpdateStatusPatch(uuid: Identifier, data: T.ProfileUpdateStatusPatchInput, options?: RequestOptions<T.ProfileUpdateStatusPatchInput>): Promise<import("axios").AxiosResponse<T.ProfileUpdateStatusPatchResponse, T.ProfileUpdateStatusPatchInput, {}>>;
|
|
114
|
-
/**
|
|
565
|
+
/**
|
|
566
|
+
* Performs the update status operation for the profile capability.
|
|
567
|
+
* Calls `PUT /api/v1/profile/{uuid}/status` through the shared IDP-aware Faiber client.
|
|
568
|
+
* @param uuid Backend path identifier `uuid`.
|
|
569
|
+
* @param data Typed JSON request body.
|
|
570
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
571
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
572
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: profile:update_status.
|
|
573
|
+
*/
|
|
115
574
|
profileUpdateStatusPut(uuid: Identifier, data: T.ProfileUpdateStatusPutInput, options?: RequestOptions<T.ProfileUpdateStatusPutInput>): Promise<import("axios").AxiosResponse<T.ProfileUpdateStatusPutResponse, T.ProfileUpdateStatusPutInput, {}>>;
|
|
116
|
-
/**
|
|
117
|
-
|
|
118
|
-
|
|
575
|
+
/**
|
|
576
|
+
* Performs the accountant index operation for the profile capability.
|
|
577
|
+
* Calls `GET /api/v1/profile/accountant` through the shared IDP-aware Faiber client.
|
|
578
|
+
* @param params Typed query parameters; omitted members retain backend defaults.
|
|
579
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
580
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
581
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
|
|
582
|
+
*/
|
|
583
|
+
profileAccountantIndexGet(params?: T.ProfileAccountantIndexGetQuery, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.ProfileAccountantIndexGetResponse, unknown, {}>>;
|
|
584
|
+
/**
|
|
585
|
+
* Performs the add address operation for the profile capability.
|
|
586
|
+
* Calls `PATCH /api/v1/profile/add/address/{uuid}` through the shared IDP-aware Faiber client.
|
|
587
|
+
* @param uuid Backend path identifier `uuid`.
|
|
588
|
+
* @param data Typed JSON request body.
|
|
589
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
590
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
591
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: profile:update.
|
|
592
|
+
*/
|
|
119
593
|
profileAddAddressPatch(uuid: Identifier, data: T.ProfileAddAddressPatchInput, options?: RequestOptions<T.ProfileAddAddressPatchInput>): Promise<import("axios").AxiosResponse<T.ProfileAddAddressPatchResponse, T.ProfileAddAddressPatchInput, {}>>;
|
|
120
|
-
/**
|
|
594
|
+
/**
|
|
595
|
+
* Performs the add address operation for the profile capability.
|
|
596
|
+
* Calls `PUT /api/v1/profile/add/address/{uuid}` through the shared IDP-aware Faiber client.
|
|
597
|
+
* @param uuid Backend path identifier `uuid`.
|
|
598
|
+
* @param data Typed JSON request body.
|
|
599
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
600
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
601
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: profile:update.
|
|
602
|
+
*/
|
|
121
603
|
profileAddAddressPut(uuid: Identifier, data: T.ProfileAddAddressPutInput, options?: RequestOptions<T.ProfileAddAddressPutInput>): Promise<import("axios").AxiosResponse<T.ProfileAddAddressPutResponse, T.ProfileAddAddressPutInput, {}>>;
|
|
122
|
-
/**
|
|
604
|
+
/**
|
|
605
|
+
* Performs the add app operation for the profile capability.
|
|
606
|
+
* Calls `PATCH /api/v1/profile/add/app/{uuid}` through the shared IDP-aware Faiber client.
|
|
607
|
+
* @param uuid Backend path identifier `uuid`.
|
|
608
|
+
* @param data Typed JSON request body.
|
|
609
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
610
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
611
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: profile:update.
|
|
612
|
+
*/
|
|
123
613
|
profileAddAppPatch(uuid: Identifier, data: T.ProfileAddAppPatchInput, options?: RequestOptions<T.ProfileAddAppPatchInput>): Promise<import("axios").AxiosResponse<T.ProfileAddAppPatchResponse, T.ProfileAddAppPatchInput, {}>>;
|
|
124
|
-
/**
|
|
614
|
+
/**
|
|
615
|
+
* Performs the add app operation for the profile capability.
|
|
616
|
+
* Calls `PUT /api/v1/profile/add/app/{uuid}` through the shared IDP-aware Faiber client.
|
|
617
|
+
* @param uuid Backend path identifier `uuid`.
|
|
618
|
+
* @param data Typed JSON request body.
|
|
619
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
620
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
621
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: profile:update.
|
|
622
|
+
*/
|
|
125
623
|
profileAddAppPut(uuid: Identifier, data: T.ProfileAddAppPutInput, options?: RequestOptions<T.ProfileAddAppPutInput>): Promise<import("axios").AxiosResponse<T.ProfileAddAppPutResponse, T.ProfileAddAppPutInput, {}>>;
|
|
126
|
-
/**
|
|
624
|
+
/**
|
|
625
|
+
* Performs the add parent operation for the profile capability.
|
|
626
|
+
* Calls `PATCH /api/v1/profile/add/parent/{uuid}` through the shared IDP-aware Faiber client.
|
|
627
|
+
* @param uuid Backend path identifier `uuid`.
|
|
628
|
+
* @param data Typed JSON request body.
|
|
629
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
630
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
631
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: profile:update.
|
|
632
|
+
*/
|
|
127
633
|
profileAddParentPatch(uuid: Identifier, data: T.ProfileAddParentPatchInput, options?: RequestOptions<T.ProfileAddParentPatchInput>): Promise<import("axios").AxiosResponse<T.ProfileAddParentPatchResponse, T.ProfileAddParentPatchInput, {}>>;
|
|
128
|
-
/**
|
|
634
|
+
/**
|
|
635
|
+
* Performs the add parent operation for the profile capability.
|
|
636
|
+
* Calls `PUT /api/v1/profile/add/parent/{uuid}` through the shared IDP-aware Faiber client.
|
|
637
|
+
* @param uuid Backend path identifier `uuid`.
|
|
638
|
+
* @param data Typed JSON request body.
|
|
639
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
640
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
641
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: profile:update.
|
|
642
|
+
*/
|
|
129
643
|
profileAddParentPut(uuid: Identifier, data: T.ProfileAddParentPutInput, options?: RequestOptions<T.ProfileAddParentPutInput>): Promise<import("axios").AxiosResponse<T.ProfileAddParentPutResponse, T.ProfileAddParentPutInput, {}>>;
|
|
130
|
-
/**
|
|
644
|
+
/**
|
|
645
|
+
* Performs the city get operation for the profile capability.
|
|
646
|
+
* Calls `POST /api/v1/profile/city/get` through the shared IDP-aware Faiber client.
|
|
647
|
+
* @param data Typed JSON request body.
|
|
648
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
649
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
650
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
|
|
651
|
+
*/
|
|
131
652
|
profileCityGetPost(data: T.ProfileCityGetPostInput, options?: RequestOptions<T.ProfileCityGetPostInput>): Promise<import("axios").AxiosResponse<T.ProfileCityGetPostResponse, T.ProfileCityGetPostInput, {}>>;
|
|
132
|
-
/**
|
|
133
|
-
|
|
134
|
-
|
|
653
|
+
/**
|
|
654
|
+
* Performs the consultant index operation for the profile capability.
|
|
655
|
+
* Calls `GET /api/v1/profile/consultant` through the shared IDP-aware Faiber client.
|
|
656
|
+
* @param params Typed query parameters; omitted members retain backend defaults.
|
|
657
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
658
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
659
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
|
|
660
|
+
*/
|
|
661
|
+
profileConsultantIndexGet(params?: T.ProfileConsultantIndexGetQuery, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.ProfileConsultantIndexGetResponse, unknown, {}>>;
|
|
662
|
+
/**
|
|
663
|
+
* Performs the country get operation for the profile capability.
|
|
664
|
+
* Calls `POST /api/v1/profile/country/get` through the shared IDP-aware Faiber client.
|
|
665
|
+
* @param data Typed JSON request body.
|
|
666
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
667
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
668
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
|
|
669
|
+
*/
|
|
135
670
|
profileCountryGetPost(data: T.ProfileCountryGetPostInput, options?: RequestOptions<T.ProfileCountryGetPostInput>): Promise<import("axios").AxiosResponse<T.ProfileCountryGetPostResponse, T.ProfileCountryGetPostInput, {}>>;
|
|
136
|
-
/**
|
|
671
|
+
/**
|
|
672
|
+
* Performs the force destroy operation for the profile capability.
|
|
673
|
+
* Calls `DELETE /api/v1/profile/force/{uuid}` through the shared IDP-aware Faiber client.
|
|
674
|
+
* @param uuid Backend path identifier `uuid`.
|
|
675
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
676
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
677
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: profile:force_delete.
|
|
678
|
+
*/
|
|
137
679
|
profileForceDestroyDelete(uuid: Identifier, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.ProfileForceDestroyDeleteResponse, unknown, {}>>;
|
|
138
|
-
/**
|
|
680
|
+
/**
|
|
681
|
+
* Performs the bulk get operation for the profile capability.
|
|
682
|
+
* Calls `POST /api/v1/profile/get` through the shared IDP-aware Faiber client.
|
|
683
|
+
* @param data Typed JSON request body.
|
|
684
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
685
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
686
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
|
|
687
|
+
*/
|
|
139
688
|
profileBulkGetPost(data: T.ProfileBulkGetPostInput, options?: RequestOptions<T.ProfileBulkGetPostInput>): Promise<import("axios").AxiosResponse<T.ProfileBulkGetPostResponse, T.ProfileBulkGetPostInput, {}>>;
|
|
140
|
-
/**
|
|
689
|
+
/**
|
|
690
|
+
* Performs the chat list operation for the profile capability.
|
|
691
|
+
* Calls `GET /api/v1/profile/get-chat-list/{uuid}` through the shared IDP-aware Faiber client.
|
|
692
|
+
* @param uuid Backend path identifier `uuid`.
|
|
693
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
694
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
695
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
|
|
696
|
+
*/
|
|
141
697
|
profileChatListGet(uuid: Identifier, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.ProfileChatListGetResponse, unknown, {}>>;
|
|
142
|
-
/**
|
|
698
|
+
/**
|
|
699
|
+
* Performs the get address operation for the profile capability.
|
|
700
|
+
* Calls `GET /api/v1/profile/get/address/{uuid}` through the shared IDP-aware Faiber client.
|
|
701
|
+
* @param uuid Backend path identifier `uuid`.
|
|
702
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
703
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
704
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: profile:read.
|
|
705
|
+
*/
|
|
143
706
|
profileGetAddressGet(uuid: Identifier, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.ProfileGetAddressGetResponse, unknown, {}>>;
|
|
144
|
-
/**
|
|
707
|
+
/**
|
|
708
|
+
* Performs the get app operation for the profile capability.
|
|
709
|
+
* Calls `GET /api/v1/profile/get/app/{uuid}` through the shared IDP-aware Faiber client.
|
|
710
|
+
* @param uuid Backend path identifier `uuid`.
|
|
711
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
712
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
713
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: profile:read.
|
|
714
|
+
*/
|
|
145
715
|
profileGetAppGet(uuid: Identifier, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.ProfileGetAppGetResponse, unknown, {}>>;
|
|
146
|
-
/**
|
|
716
|
+
/**
|
|
717
|
+
* Performs the get parent operation for the profile capability.
|
|
718
|
+
* Calls `GET /api/v1/profile/get/parent/{uuid}` through the shared IDP-aware Faiber client.
|
|
719
|
+
* @param uuid Backend path identifier `uuid`.
|
|
720
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
721
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
722
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: profile:read.
|
|
723
|
+
*/
|
|
147
724
|
profileGetParentGet(uuid: Identifier, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.ProfileGetParentGetResponse, unknown, {}>>;
|
|
148
|
-
/**
|
|
149
|
-
|
|
150
|
-
|
|
151
|
-
|
|
152
|
-
|
|
153
|
-
|
|
154
|
-
|
|
725
|
+
/**
|
|
726
|
+
* Performs the manager index operation for the profile capability.
|
|
727
|
+
* Calls `GET /api/v1/profile/manager` through the shared IDP-aware Faiber client.
|
|
728
|
+
* @param params Typed query parameters; omitted members retain backend defaults.
|
|
729
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
730
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
731
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
|
|
732
|
+
*/
|
|
733
|
+
profileManagerIndexGet(params?: T.ProfileManagerIndexGetQuery, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.ProfileManagerIndexGetResponse, unknown, {}>>;
|
|
734
|
+
/**
|
|
735
|
+
* Performs the other index operation for the profile capability.
|
|
736
|
+
* Calls `GET /api/v1/profile/other` through the shared IDP-aware Faiber client.
|
|
737
|
+
* @param params Typed query parameters; omitted members retain backend defaults.
|
|
738
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
739
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
740
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
|
|
741
|
+
*/
|
|
742
|
+
profileOtherIndexGet(params?: T.ProfileOtherIndexGetQuery, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.ProfileOtherIndexGetResponse, unknown, {}>>;
|
|
743
|
+
/**
|
|
744
|
+
* Performs the parent index operation for the profile capability.
|
|
745
|
+
* Calls `GET /api/v1/profile/parent` through the shared IDP-aware Faiber client.
|
|
746
|
+
* @param params Typed query parameters; omitted members retain backend defaults.
|
|
747
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
748
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
749
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
|
|
750
|
+
*/
|
|
751
|
+
profileParentIndexGet(params?: T.ProfileParentIndexGetQuery, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.ProfileParentIndexGetResponse, unknown, {}>>;
|
|
752
|
+
/**
|
|
753
|
+
* Performs the province get operation for the profile capability.
|
|
754
|
+
* Calls `POST /api/v1/profile/province/get` through the shared IDP-aware Faiber client.
|
|
755
|
+
* @param data Typed JSON request body.
|
|
756
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
757
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
758
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
|
|
759
|
+
*/
|
|
155
760
|
profileProvinceGetPost(data: T.ProfileProvinceGetPostInput, options?: RequestOptions<T.ProfileProvinceGetPostInput>): Promise<import("axios").AxiosResponse<T.ProfileProvinceGetPostResponse, T.ProfileProvinceGetPostInput, {}>>;
|
|
156
|
-
/**
|
|
761
|
+
/**
|
|
762
|
+
* Performs the search operation for the profile search capability.
|
|
763
|
+
* Calls `POST /api/v1/profile/search` through the shared IDP-aware Faiber client.
|
|
764
|
+
* @param data Typed JSON request body.
|
|
765
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
766
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
767
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: profile:search.
|
|
768
|
+
*/
|
|
157
769
|
profileSearchSearchPost(data: T.ProfileSearchSearchPostInput, options?: RequestOptions<T.ProfileSearchSearchPostInput>): Promise<import("axios").AxiosResponse<T.ProfileSearchSearchPostResponse, T.ProfileSearchSearchPostInput, {}>>;
|
|
158
|
-
/**
|
|
159
|
-
|
|
160
|
-
|
|
770
|
+
/**
|
|
771
|
+
* Performs the student index operation for the profile capability.
|
|
772
|
+
* Calls `GET /api/v1/profile/student` through the shared IDP-aware Faiber client.
|
|
773
|
+
* @param params Typed query parameters; omitted members retain backend defaults.
|
|
774
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
775
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
776
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
|
|
777
|
+
*/
|
|
778
|
+
profileStudentIndexGet(params?: T.ProfileStudentIndexGetQuery, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.ProfileStudentIndexGetResponse, unknown, {}>>;
|
|
779
|
+
/**
|
|
780
|
+
* Performs the student pes operation for the profile capability.
|
|
781
|
+
* Calls `GET /api/v1/profile/students/pes` through the shared IDP-aware Faiber client.
|
|
782
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
783
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
784
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
|
|
785
|
+
*/
|
|
161
786
|
profileStudentPesGet(options?: RequestOptions): Promise<import("axios").AxiosResponse<T.ProfileStudentPesGetResponse, unknown, {}>>;
|
|
162
|
-
/**
|
|
787
|
+
/**
|
|
788
|
+
* Performs the student pes schema operation for the profile capability.
|
|
789
|
+
* Calls `GET /api/v1/profile/students/pes/schema` through the shared IDP-aware Faiber client.
|
|
790
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
791
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
792
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
|
|
793
|
+
*/
|
|
163
794
|
profileStudentPesSchemaGet(options?: RequestOptions): Promise<import("axios").AxiosResponse<T.ProfileStudentPesSchemaGetResponse, unknown, {}>>;
|
|
164
|
-
/**
|
|
165
|
-
|
|
166
|
-
|
|
795
|
+
/**
|
|
796
|
+
* Performs the support index operation for the profile capability.
|
|
797
|
+
* Calls `GET /api/v1/profile/support` through the shared IDP-aware Faiber client.
|
|
798
|
+
* @param params Typed query parameters; omitted members retain backend defaults.
|
|
799
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
800
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
801
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
|
|
802
|
+
*/
|
|
803
|
+
profileSupportIndexGet(params?: T.ProfileSupportIndexGetQuery, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.ProfileSupportIndexGetResponse, unknown, {}>>;
|
|
804
|
+
/**
|
|
805
|
+
* Performs the support pes operation for the profile capability.
|
|
806
|
+
* Calls `GET /api/v1/profile/supports/pes` through the shared IDP-aware Faiber client.
|
|
807
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
808
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
809
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
|
|
810
|
+
*/
|
|
167
811
|
profileSupportPesGet(options?: RequestOptions): Promise<import("axios").AxiosResponse<T.ProfileSupportPesGetResponse, unknown, {}>>;
|
|
168
|
-
/**
|
|
812
|
+
/**
|
|
813
|
+
* Performs the support pes schema operation for the profile capability.
|
|
814
|
+
* Calls `GET /api/v1/profile/supports/pes/schema` through the shared IDP-aware Faiber client.
|
|
815
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
816
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
817
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
|
|
818
|
+
*/
|
|
169
819
|
profileSupportPesSchemaGet(options?: RequestOptions): Promise<import("axios").AxiosResponse<T.ProfileSupportPesSchemaGetResponse, unknown, {}>>;
|
|
170
|
-
/**
|
|
171
|
-
|
|
172
|
-
|
|
820
|
+
/**
|
|
821
|
+
* Performs the teacher index operation for the profile capability.
|
|
822
|
+
* Calls `GET /api/v1/profile/teacher` through the shared IDP-aware Faiber client.
|
|
823
|
+
* @param params Typed query parameters; omitted members retain backend defaults.
|
|
824
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
825
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
826
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
|
|
827
|
+
*/
|
|
828
|
+
profileTeacherIndexGet(params?: T.ProfileTeacherIndexGetQuery, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.ProfileTeacherIndexGetResponse, unknown, {}>>;
|
|
829
|
+
/**
|
|
830
|
+
* Performs the restore operation for the profile capability.
|
|
831
|
+
* Calls `GET /api/v1/profile/undo/{uuid}` through the shared IDP-aware Faiber client.
|
|
832
|
+
* @param uuid Backend path identifier `uuid`.
|
|
833
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
834
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
835
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: profile:restore.
|
|
836
|
+
*/
|
|
173
837
|
profileRestoreGet(uuid: Identifier, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.ProfileRestoreGetResponse, unknown, {}>>;
|
|
174
|
-
/**
|
|
838
|
+
/**
|
|
839
|
+
* Performs the add meta operation for the profile capability.
|
|
840
|
+
* Calls `PATCH /api/v1/profile/update/{uuid}/meta` through the shared IDP-aware Faiber client.
|
|
841
|
+
* @param uuid Backend path identifier `uuid`.
|
|
842
|
+
* @param data Typed JSON request body.
|
|
843
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
844
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
845
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: profile:update.
|
|
846
|
+
*/
|
|
175
847
|
profileAddMetaPatch(uuid: Identifier, data: T.ProfileAddMetaPatchInput, options?: RequestOptions<T.ProfileAddMetaPatchInput>): Promise<import("axios").AxiosResponse<T.ProfileAddMetaPatchResponse, T.ProfileAddMetaPatchInput, {}>>;
|
|
176
|
-
/**
|
|
848
|
+
/**
|
|
849
|
+
* Performs the add meta operation for the profile capability.
|
|
850
|
+
* Calls `PUT /api/v1/profile/update/{uuid}/meta` through the shared IDP-aware Faiber client.
|
|
851
|
+
* @param uuid Backend path identifier `uuid`.
|
|
852
|
+
* @param data Typed JSON request body.
|
|
853
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
854
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
855
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: profile:update.
|
|
856
|
+
*/
|
|
177
857
|
profileAddMetaPut(uuid: Identifier, data: T.ProfileAddMetaPutInput, options?: RequestOptions<T.ProfileAddMetaPutInput>): Promise<import("axios").AxiosResponse<T.ProfileAddMetaPutResponse, T.ProfileAddMetaPutInput, {}>>;
|
|
178
|
-
/**
|
|
858
|
+
/**
|
|
859
|
+
* Performs the update personal operation for the profile capability.
|
|
860
|
+
* Calls `PATCH /api/v1/profile/update/personal-information/{uuid}` through the shared IDP-aware Faiber client.
|
|
861
|
+
* @param uuid Backend path identifier `uuid`.
|
|
862
|
+
* @param data Typed JSON request body.
|
|
863
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
864
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
865
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: profile:update.
|
|
866
|
+
*/
|
|
179
867
|
profileUpdatePersonalPatch(uuid: Identifier, data: T.ProfileUpdatePersonalPatchInput, options?: RequestOptions<T.ProfileUpdatePersonalPatchInput>): Promise<import("axios").AxiosResponse<T.ProfileUpdatePersonalPatchResponse, T.ProfileUpdatePersonalPatchInput, {}>>;
|
|
180
|
-
/**
|
|
868
|
+
/**
|
|
869
|
+
* Performs the update personal operation for the profile capability.
|
|
870
|
+
* Calls `PUT /api/v1/profile/update/personal-information/{uuid}` through the shared IDP-aware Faiber client.
|
|
871
|
+
* @param uuid Backend path identifier `uuid`.
|
|
872
|
+
* @param data Typed JSON request body.
|
|
873
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
874
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
875
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: profile:update.
|
|
876
|
+
*/
|
|
181
877
|
profileUpdatePersonalPut(uuid: Identifier, data: T.ProfileUpdatePersonalPutInput, options?: RequestOptions<T.ProfileUpdatePersonalPutInput>): Promise<import("axios").AxiosResponse<T.ProfileUpdatePersonalPutResponse, T.ProfileUpdatePersonalPutInput, {}>>;
|
|
182
|
-
/**
|
|
878
|
+
/**
|
|
879
|
+
* Performs the index operation for the province capability.
|
|
880
|
+
* Calls `GET /api/v1/province` through the shared IDP-aware Faiber client.
|
|
881
|
+
* @param params Typed query parameters; omitted members retain backend defaults.
|
|
882
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
883
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
884
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: province:read.
|
|
885
|
+
*/
|
|
183
886
|
provinceIndexGet(params?: T.ProvinceIndexGetQuery, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.ProvinceIndexGetResponse, unknown, {}>>;
|
|
184
|
-
/**
|
|
887
|
+
/**
|
|
888
|
+
* Performs the store operation for the province capability.
|
|
889
|
+
* Calls `POST /api/v1/province` through the shared IDP-aware Faiber client.
|
|
890
|
+
* @param data Typed JSON request body.
|
|
891
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
892
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
893
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: province:create.
|
|
894
|
+
*/
|
|
185
895
|
provinceStorePost(data: T.ProvinceStorePostInput, options?: RequestOptions<T.ProvinceStorePostInput>): Promise<import("axios").AxiosResponse<T.ProvinceStorePostResponse, T.ProvinceStorePostInput, {}>>;
|
|
186
|
-
/**
|
|
896
|
+
/**
|
|
897
|
+
* Performs the destroy operation for the province capability.
|
|
898
|
+
* Calls `DELETE /api/v1/province/{id}` through the shared IDP-aware Faiber client.
|
|
899
|
+
* @param id Backend path identifier `id`.
|
|
900
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
901
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
902
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: province:delete.
|
|
903
|
+
*/
|
|
187
904
|
provinceDestroyDelete(id: Identifier, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.ProvinceDestroyDeleteResponse, unknown, {}>>;
|
|
188
|
-
/**
|
|
905
|
+
/**
|
|
906
|
+
* Performs the show operation for the province capability.
|
|
907
|
+
* Calls `GET /api/v1/province/{id}` through the shared IDP-aware Faiber client.
|
|
908
|
+
* @param id Backend path identifier `id`.
|
|
909
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
910
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
911
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: province:read.
|
|
912
|
+
*/
|
|
189
913
|
provinceShowGet(id: Identifier, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.ProvinceShowGetResponse, unknown, {}>>;
|
|
190
|
-
/**
|
|
914
|
+
/**
|
|
915
|
+
* Performs the update operation for the province capability.
|
|
916
|
+
* Calls `PATCH /api/v1/province/{id}` through the shared IDP-aware Faiber client.
|
|
917
|
+
* @param id Backend path identifier `id`.
|
|
918
|
+
* @param data Typed JSON request body.
|
|
919
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
920
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
921
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: province:update.
|
|
922
|
+
*/
|
|
191
923
|
provinceUpdatePatch(id: Identifier, data: T.ProvinceUpdatePatchInput, options?: RequestOptions<T.ProvinceUpdatePatchInput>): Promise<import("axios").AxiosResponse<T.ProvinceUpdatePatchResponse, T.ProvinceUpdatePatchInput, {}>>;
|
|
192
|
-
/**
|
|
924
|
+
/**
|
|
925
|
+
* Performs the update operation for the province capability.
|
|
926
|
+
* Calls `PUT /api/v1/province/{id}` through the shared IDP-aware Faiber client.
|
|
927
|
+
* @param id Backend path identifier `id`.
|
|
928
|
+
* @param data Typed JSON request body.
|
|
929
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
930
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
931
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: province:update.
|
|
932
|
+
*/
|
|
193
933
|
provinceUpdatePut(id: Identifier, data: T.ProvinceUpdatePutInput, options?: RequestOptions<T.ProvinceUpdatePutInput>): Promise<import("axios").AxiosResponse<T.ProvinceUpdatePutResponse, T.ProvinceUpdatePutInput, {}>>;
|
|
194
|
-
/**
|
|
934
|
+
/**
|
|
935
|
+
* Performs the force destroy operation for the province capability.
|
|
936
|
+
* Calls `DELETE /api/v1/province/force/{id}` through the shared IDP-aware Faiber client.
|
|
937
|
+
* @param id Backend path identifier `id`.
|
|
938
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
939
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
940
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: province:delete.
|
|
941
|
+
*/
|
|
195
942
|
provinceForceDestroyDelete(id: Identifier, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.ProvinceForceDestroyDeleteResponse, unknown, {}>>;
|
|
196
|
-
/**
|
|
943
|
+
/**
|
|
944
|
+
* Performs the restore operation for the province capability.
|
|
945
|
+
* Calls `GET /api/v1/province/undo/{id}` through the shared IDP-aware Faiber client.
|
|
946
|
+
* @param id Backend path identifier `id`.
|
|
947
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
948
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
949
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: province:delete.
|
|
950
|
+
*/
|
|
197
951
|
provinceRestoreGet(id: Identifier, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.ProvinceRestoreGetResponse, unknown, {}>>;
|
|
198
|
-
/**
|
|
952
|
+
/**
|
|
953
|
+
* Performs the index operation for the setting capability.
|
|
954
|
+
* Calls `GET /api/v1/setting` through the shared IDP-aware Faiber client.
|
|
955
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
956
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
957
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: setting:read.
|
|
958
|
+
*/
|
|
199
959
|
settingIndexGet(options?: RequestOptions): Promise<import("axios").AxiosResponse<T.SettingIndexGetResponse, unknown, {}>>;
|
|
200
|
-
/**
|
|
960
|
+
/**
|
|
961
|
+
* Performs the store operation for the setting capability.
|
|
962
|
+
* Calls `POST /api/v1/setting` through the shared IDP-aware Faiber client.
|
|
963
|
+
* @param data Typed JSON request body.
|
|
964
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
965
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
966
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: setting:create.
|
|
967
|
+
*/
|
|
201
968
|
settingStorePost(data: T.SettingStorePostInput, options?: RequestOptions<T.SettingStorePostInput>): Promise<import("axios").AxiosResponse<T.SettingStorePostResponse, T.SettingStorePostInput, {}>>;
|
|
202
|
-
/**
|
|
969
|
+
/**
|
|
970
|
+
* Performs the index operation for the survey capability.
|
|
971
|
+
* Calls `GET /api/v1/survey` through the shared IDP-aware Faiber client.
|
|
972
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
973
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
974
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: survey:read.
|
|
975
|
+
*/
|
|
203
976
|
surveyIndexGet(options?: RequestOptions): Promise<import("axios").AxiosResponse<T.SurveyIndexGetResponse, unknown, {}>>;
|
|
204
|
-
/**
|
|
977
|
+
/**
|
|
978
|
+
* Performs the store operation for the survey capability.
|
|
979
|
+
* Calls `POST /api/v1/survey` through the shared IDP-aware Faiber client.
|
|
980
|
+
* @param data Typed JSON request body.
|
|
981
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
982
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
983
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: survey:create.
|
|
984
|
+
*/
|
|
205
985
|
surveyStorePost(data: T.SurveyStorePostInput, options?: RequestOptions<T.SurveyStorePostInput>): Promise<import("axios").AxiosResponse<T.SurveyStorePostResponse, T.SurveyStorePostInput, {}>>;
|
|
206
|
-
/**
|
|
986
|
+
/**
|
|
987
|
+
* Performs the index operation for the trusted service capability.
|
|
988
|
+
* Calls `GET /api/v1/trusted-service` through the shared IDP-aware Faiber client.
|
|
989
|
+
* @param params Typed query parameters; omitted members retain backend defaults.
|
|
990
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
991
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
992
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: trusted_service:read.
|
|
993
|
+
*/
|
|
207
994
|
trustedServiceIndexGet(params?: T.TrustedServiceIndexGetQuery, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.TrustedServiceIndexGetResponse, unknown, {}>>;
|
|
208
|
-
/**
|
|
995
|
+
/**
|
|
996
|
+
* Performs the store operation for the trusted service capability.
|
|
997
|
+
* Calls `POST /api/v1/trusted-service` through the shared IDP-aware Faiber client.
|
|
998
|
+
* @param data Typed JSON request body.
|
|
999
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
1000
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
1001
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: trusted_service:create.
|
|
1002
|
+
*/
|
|
209
1003
|
trustedServiceStorePost(data: T.TrustedServiceStorePostInput, options?: RequestOptions<T.TrustedServiceStorePostInput>): Promise<import("axios").AxiosResponse<T.TrustedServiceStorePostResponse, T.TrustedServiceStorePostInput, {}>>;
|
|
210
|
-
/**
|
|
1004
|
+
/**
|
|
1005
|
+
* Performs the destroy operation for the trusted service capability.
|
|
1006
|
+
* Calls `DELETE /api/v1/trusted-service/{id}` through the shared IDP-aware Faiber client.
|
|
1007
|
+
* @param id Backend path identifier `id`.
|
|
1008
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
1009
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
1010
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: trusted_service:delete.
|
|
1011
|
+
*/
|
|
211
1012
|
trustedServiceDestroyDelete(id: Identifier, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.TrustedServiceDestroyDeleteResponse, unknown, {}>>;
|
|
212
|
-
/**
|
|
1013
|
+
/**
|
|
1014
|
+
* Performs the show operation for the trusted service capability.
|
|
1015
|
+
* Calls `GET /api/v1/trusted-service/{id}` through the shared IDP-aware Faiber client.
|
|
1016
|
+
* @param id Backend path identifier `id`.
|
|
1017
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
1018
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
1019
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: trusted_service:read.
|
|
1020
|
+
*/
|
|
213
1021
|
trustedServiceShowGet(id: Identifier, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.TrustedServiceShowGetResponse, unknown, {}>>;
|
|
214
|
-
/**
|
|
1022
|
+
/**
|
|
1023
|
+
* Performs the update operation for the trusted service capability.
|
|
1024
|
+
* Calls `PATCH /api/v1/trusted-service/{id}` through the shared IDP-aware Faiber client.
|
|
1025
|
+
* @param id Backend path identifier `id`.
|
|
1026
|
+
* @param data Typed JSON request body.
|
|
1027
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
1028
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
1029
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: trusted_service:update.
|
|
1030
|
+
*/
|
|
215
1031
|
trustedServiceUpdatePatch(id: Identifier, data: T.TrustedServiceUpdatePatchInput, options?: RequestOptions<T.TrustedServiceUpdatePatchInput>): Promise<import("axios").AxiosResponse<T.TrustedServiceUpdatePatchResponse, T.TrustedServiceUpdatePatchInput, {}>>;
|
|
216
|
-
/**
|
|
1032
|
+
/**
|
|
1033
|
+
* Performs the update operation for the trusted service capability.
|
|
1034
|
+
* Calls `PUT /api/v1/trusted-service/{id}` through the shared IDP-aware Faiber client.
|
|
1035
|
+
* @param id Backend path identifier `id`.
|
|
1036
|
+
* @param data Typed JSON request body.
|
|
1037
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
1038
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
1039
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: trusted_service:update.
|
|
1040
|
+
*/
|
|
217
1041
|
trustedServiceUpdatePut(id: Identifier, data: T.TrustedServiceUpdatePutInput, options?: RequestOptions<T.TrustedServiceUpdatePutInput>): Promise<import("axios").AxiosResponse<T.TrustedServiceUpdatePutResponse, T.TrustedServiceUpdatePutInput, {}>>;
|
|
218
|
-
/**
|
|
1042
|
+
/**
|
|
1043
|
+
* Performs the event index operation for the trusted service capability.
|
|
1044
|
+
* Calls `GET /api/v1/trusted-service/{id}/event` through the shared IDP-aware Faiber client.
|
|
1045
|
+
* @param id Backend path identifier `id`.
|
|
1046
|
+
* @param params Typed query parameters; omitted members retain backend defaults.
|
|
1047
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
1048
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
1049
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: trusted_service:read.
|
|
1050
|
+
*/
|
|
219
1051
|
trustedServiceEventIndexGet(id: Identifier, params?: T.TrustedServiceEventIndexGetQuery, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.TrustedServiceEventIndexGetResponse, unknown, {}>>;
|
|
220
|
-
/**
|
|
1052
|
+
/**
|
|
1053
|
+
* Performs the event store operation for the trusted service capability.
|
|
1054
|
+
* Calls `POST /api/v1/trusted-service/{id}/event` through the shared IDP-aware Faiber client.
|
|
1055
|
+
* @param id Backend path identifier `id`.
|
|
1056
|
+
* @param data Typed JSON request body.
|
|
1057
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
1058
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
1059
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: trusted_service:create.
|
|
1060
|
+
*/
|
|
221
1061
|
trustedServiceEventStorePost(id: Identifier, data: T.TrustedServiceEventStorePostInput, options?: RequestOptions<T.TrustedServiceEventStorePostInput>): Promise<import("axios").AxiosResponse<T.TrustedServiceEventStorePostResponse, T.TrustedServiceEventStorePostInput, {}>>;
|
|
222
|
-
/**
|
|
1062
|
+
/**
|
|
1063
|
+
* Performs the event destroy operation for the trusted service capability.
|
|
1064
|
+
* Calls `DELETE /api/v1/trusted-service/{id}/event/{event_id}` through the shared IDP-aware Faiber client.
|
|
1065
|
+
* @param id Backend path identifier `id`.
|
|
1066
|
+
* @param eventId Backend path identifier `event_id`.
|
|
1067
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
1068
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
1069
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: trusted_service:delete.
|
|
1070
|
+
*/
|
|
223
1071
|
trustedServiceEventDestroyDelete(id: Identifier, eventId: Identifier, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.TrustedServiceEventDestroyDeleteResponse, unknown, {}>>;
|
|
224
|
-
/**
|
|
1072
|
+
/**
|
|
1073
|
+
* Performs the event show operation for the trusted service capability.
|
|
1074
|
+
* Calls `GET /api/v1/trusted-service/{id}/event/{event_id}` through the shared IDP-aware Faiber client.
|
|
1075
|
+
* @param id Backend path identifier `id`.
|
|
1076
|
+
* @param eventId Backend path identifier `event_id`.
|
|
1077
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
1078
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
1079
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: trusted_service:read.
|
|
1080
|
+
*/
|
|
225
1081
|
trustedServiceEventShowGet(id: Identifier, eventId: Identifier, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.TrustedServiceEventShowGetResponse, unknown, {}>>;
|
|
226
|
-
/**
|
|
1082
|
+
/**
|
|
1083
|
+
* Performs the event update operation for the trusted service capability.
|
|
1084
|
+
* Calls `PATCH /api/v1/trusted-service/{id}/event/{event_id}` through the shared IDP-aware Faiber client.
|
|
1085
|
+
* @param id Backend path identifier `id`.
|
|
1086
|
+
* @param eventId Backend path identifier `event_id`.
|
|
1087
|
+
* @param data Typed JSON request body.
|
|
1088
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
1089
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
1090
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: trusted_service:update.
|
|
1091
|
+
*/
|
|
227
1092
|
trustedServiceEventUpdatePatch(id: Identifier, eventId: Identifier, data: T.TrustedServiceEventUpdatePatchInput, options?: RequestOptions<T.TrustedServiceEventUpdatePatchInput>): Promise<import("axios").AxiosResponse<T.TrustedServiceEventUpdatePatchResponse, T.TrustedServiceEventUpdatePatchInput, {}>>;
|
|
228
|
-
/**
|
|
1093
|
+
/**
|
|
1094
|
+
* Performs the event update operation for the trusted service capability.
|
|
1095
|
+
* Calls `PUT /api/v1/trusted-service/{id}/event/{event_id}` through the shared IDP-aware Faiber client.
|
|
1096
|
+
* @param id Backend path identifier `id`.
|
|
1097
|
+
* @param eventId Backend path identifier `event_id`.
|
|
1098
|
+
* @param data Typed JSON request body.
|
|
1099
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
1100
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
1101
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: trusted_service:update.
|
|
1102
|
+
*/
|
|
229
1103
|
trustedServiceEventUpdatePut(id: Identifier, eventId: Identifier, data: T.TrustedServiceEventUpdatePutInput, options?: RequestOptions<T.TrustedServiceEventUpdatePutInput>): Promise<import("axios").AxiosResponse<T.TrustedServiceEventUpdatePutResponse, T.TrustedServiceEventUpdatePutInput, {}>>;
|
|
230
|
-
/**
|
|
1104
|
+
/**
|
|
1105
|
+
* Performs the health operation for the router capability.
|
|
1106
|
+
* Calls `GET /health` through the shared IDP-aware Faiber client.
|
|
1107
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
1108
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
1109
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
|
|
1110
|
+
*/
|
|
231
1111
|
routerHealthGetHealth(options?: RequestOptions): Promise<import("axios").AxiosResponse<T.RouterHealthGetHealthResponse, unknown, {}>>;
|
|
232
|
-
/**
|
|
1112
|
+
/**
|
|
1113
|
+
* Performs the health operation for the router capability.
|
|
1114
|
+
* Calls `GET /up` through the shared IDP-aware Faiber client.
|
|
1115
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
1116
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
1117
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
|
|
1118
|
+
*/
|
|
233
1119
|
routerHealthGetUp(options?: RequestOptions): Promise<import("axios").AxiosResponse<T.RouterHealthGetUpResponse, unknown, {}>>;
|
|
234
1120
|
}
|
|
235
1121
|
//# sourceMappingURL=operations.d.ts.map
|