@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.
@@ -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
- /** GET /api/openapi.json; permission: public/session-derived. */
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
- /** POST /api/v1/address/get; permission: public/session-derived. */
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
- /** GET /api/v1/auth/self; permission: public/session-derived. */
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
- /** GET /api/v1/city; permission: city:read. */
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
- /** POST /api/v1/city; permission: city:create. */
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
- /** DELETE /api/v1/city/{id}; permission: city:delete. */
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
- /** GET /api/v1/city/{id}; permission: city:read. */
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
- /** PATCH /api/v1/city/{id}; permission: city:update. */
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
- /** PUT /api/v1/city/{id}; permission: city:update. */
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
- /** DELETE /api/v1/city/force/{id}; permission: city:delete. */
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
- /** GET /api/v1/city/undo/{id}; permission: city:delete. */
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
- /** GET /api/v1/country; permission: country:read. */
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
- /** POST /api/v1/country; permission: country:create. */
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
- /** DELETE /api/v1/country/{id}; permission: country:delete. */
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
- /** GET /api/v1/country/{id}; permission: country:read. */
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
- /** PATCH /api/v1/country/{id}; permission: country:update. */
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
- /** PUT /api/v1/country/{id}; permission: country:update. */
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
- /** DELETE /api/v1/country/force/{id}; permission: country:delete. */
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
- /** GET /api/v1/country/undo/{id}; permission: country:delete. */
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
- /** GET /api/v1/dependency; permission: dependency:read. */
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
- /** GET /api/v1/identity; permission: public/session-derived. */
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
- /** GET /api/v1/integration/docs; permission: admin:integration:read. */
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
- /** GET /api/v1/integration/flow; permission: public/session-derived. */
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
- /** POST /api/v1/log-action; permission: log_action:create. */
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
- /** POST /api/v1/log-action/{slug}; permission: log_action:create. */
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
- /** POST /api/v1/log-action/direct/{slug}; permission: public/session-derived. */
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
- /** GET /api/v1/logger; permission: public/session-derived. */
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
- /** GET /api/v1/logger/{log}; permission: public/session-derived. */
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
- /** POST /api/v1/parent/get; permission: public/session-derived. */
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
- /** GET /api/v1/profile; permission: /api/v1/profile, profile:read. */
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
- /** GET /api/v1/profile-property-definition; permission: profile_property_definition:read. */
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
- /** POST /api/v1/profile-property-definition; permission: profile_property_definition:create. */
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
- /** DELETE /api/v1/profile-property-definition/{id}; permission: profile_property_definition:delete. */
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
- /** GET /api/v1/profile-property-definition/{id}; permission: profile_property_definition:read. */
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
- /** PATCH /api/v1/profile-property-definition/{id}; permission: profile_property_definition:update. */
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
- /** PUT /api/v1/profile-property-definition/{id}; permission: profile_property_definition:update. */
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
- /** DELETE /api/v1/profile-property-definition/force/{id}; permission: profile_property_definition:force_delete. */
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
- /** GET /api/v1/profile-property-definition/undo/{id}; permission: profile_property_definition:restore. */
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
- /** DELETE /api/v1/profile/{student_uuid}/delete/parent/{parent_uuid}; permission: profile:update. */
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
- /** DELETE /api/v1/profile/{uuid}; permission: profile:delete. */
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
- /** GET /api/v1/profile/{uuid}; permission: profile:read. */
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
- /** PATCH /api/v1/profile/{uuid}; permission: profile:update. */
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
- /** GET /api/v1/profile/{uuid}/admin; permission: profile:read_admin. */
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
- /** DELETE /api/v1/profile/{uuid}/avatar; permission: public/session-derived. */
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
- /** POST /api/v1/profile/{uuid}/avatar; permission: public/session-derived. */
93
- profileAvatarStorePost(uuid: Identifier, data: T.ProfileAvatarStorePostInput, options?: RequestOptions<T.ProfileAvatarStorePostInput>): Promise<import("axios").AxiosResponse<T.ProfileAvatarStorePostResponse, T.ProfileAvatarStorePostInput, {}>>;
94
- /** DELETE /api/v1/profile/{uuid}/delete/address/{title}; permission: profile:update. */
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
- /** PATCH /api/v1/profile/{uuid}/employee-type; permission: profile:update_employee_type. */
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
- /** PUT /api/v1/profile/{uuid}/employee-type; permission: profile:update_employee_type. */
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
- /** PATCH /api/v1/profile/{uuid}/freemium-session-limit; permission: profile:freemium_session_limit. */
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
- /** PUT /api/v1/profile/{uuid}/freemium-session-limit; permission: profile:freemium_session_limit. */
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
- /** GET /api/v1/profile/{uuid}/full; permission: profile:read. */
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
- /** GET /api/v1/profile/{uuid}/media; permission: public/session-derived. */
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
- /** PATCH /api/v1/profile/{uuid}/properties; permission: profile:update. */
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
- /** PUT /api/v1/profile/{uuid}/properties; permission: profile:update. */
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
- /** PATCH /api/v1/profile/{uuid}/status; permission: profile:update_status. */
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
- /** PUT /api/v1/profile/{uuid}/status; permission: profile:update_status. */
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
- /** GET /api/v1/profile/accountant; permission: public/session-derived. */
117
- profileAccountantIndexGet(options?: RequestOptions): Promise<import("axios").AxiosResponse<T.ProfileAccountantIndexGetResponse, unknown, {}>>;
118
- /** PATCH /api/v1/profile/add/address/{uuid}; permission: profile:update. */
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
- /** PUT /api/v1/profile/add/address/{uuid}; permission: profile:update. */
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
- /** PATCH /api/v1/profile/add/app/{uuid}; permission: profile:update. */
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
- /** PUT /api/v1/profile/add/app/{uuid}; permission: profile:update. */
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
- /** PATCH /api/v1/profile/add/parent/{uuid}; permission: profile:update. */
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
- /** PUT /api/v1/profile/add/parent/{uuid}; permission: profile:update. */
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
- /** POST /api/v1/profile/city/get; permission: public/session-derived. */
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
- /** GET /api/v1/profile/consultant; permission: public/session-derived. */
133
- profileConsultantIndexGet(options?: RequestOptions): Promise<import("axios").AxiosResponse<T.ProfileConsultantIndexGetResponse, unknown, {}>>;
134
- /** POST /api/v1/profile/country/get; permission: public/session-derived. */
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
- /** DELETE /api/v1/profile/force/{uuid}; permission: profile:force_delete. */
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
- /** POST /api/v1/profile/get; permission: public/session-derived. */
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
- /** GET /api/v1/profile/get-chat-list/{uuid}; permission: public/session-derived. */
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
- /** GET /api/v1/profile/get/address/{uuid}; permission: profile:read. */
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
- /** GET /api/v1/profile/get/app/{uuid}; permission: profile:read. */
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
- /** GET /api/v1/profile/get/parent/{uuid}; permission: profile:read. */
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
- /** GET /api/v1/profile/manager; permission: public/session-derived. */
149
- profileManagerIndexGet(options?: RequestOptions): Promise<import("axios").AxiosResponse<T.ProfileManagerIndexGetResponse, unknown, {}>>;
150
- /** GET /api/v1/profile/other; permission: public/session-derived. */
151
- profileOtherIndexGet(options?: RequestOptions): Promise<import("axios").AxiosResponse<T.ProfileOtherIndexGetResponse, unknown, {}>>;
152
- /** GET /api/v1/profile/parent; permission: public/session-derived. */
153
- profileParentIndexGet(options?: RequestOptions): Promise<import("axios").AxiosResponse<T.ProfileParentIndexGetResponse, unknown, {}>>;
154
- /** POST /api/v1/profile/province/get; permission: public/session-derived. */
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
- /** POST /api/v1/profile/search; permission: profile:search. */
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
- /** GET /api/v1/profile/student; permission: public/session-derived. */
159
- profileStudentIndexGet(options?: RequestOptions): Promise<import("axios").AxiosResponse<T.ProfileStudentIndexGetResponse, unknown, {}>>;
160
- /** GET /api/v1/profile/students/pes; permission: public/session-derived. */
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
- /** GET /api/v1/profile/students/pes/schema; permission: public/session-derived. */
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
- /** GET /api/v1/profile/support; permission: public/session-derived. */
165
- profileSupportIndexGet(options?: RequestOptions): Promise<import("axios").AxiosResponse<T.ProfileSupportIndexGetResponse, unknown, {}>>;
166
- /** GET /api/v1/profile/supports/pes; permission: public/session-derived. */
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
- /** GET /api/v1/profile/supports/pes/schema; permission: public/session-derived. */
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
- /** GET /api/v1/profile/teacher; permission: public/session-derived. */
171
- profileTeacherIndexGet(options?: RequestOptions): Promise<import("axios").AxiosResponse<T.ProfileTeacherIndexGetResponse, unknown, {}>>;
172
- /** GET /api/v1/profile/undo/{uuid}; permission: profile:restore. */
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
- /** PATCH /api/v1/profile/update/{uuid}/meta; permission: profile:update. */
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
- /** PUT /api/v1/profile/update/{uuid}/meta; permission: profile:update. */
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
- /** PATCH /api/v1/profile/update/personal-information/{uuid}; permission: profile:update. */
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
- /** PUT /api/v1/profile/update/personal-information/{uuid}; permission: profile:update. */
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
- /** GET /api/v1/province; permission: province:read. */
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
- /** POST /api/v1/province; permission: province:create. */
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
- /** DELETE /api/v1/province/{id}; permission: province:delete. */
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
- /** GET /api/v1/province/{id}; permission: province:read. */
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
- /** PATCH /api/v1/province/{id}; permission: province:update. */
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
- /** PUT /api/v1/province/{id}; permission: province:update. */
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
- /** DELETE /api/v1/province/force/{id}; permission: province:delete. */
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
- /** GET /api/v1/province/undo/{id}; permission: province:delete. */
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
- /** GET /api/v1/setting; permission: setting:read. */
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
- /** POST /api/v1/setting; permission: setting:create. */
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
- /** GET /api/v1/survey; permission: survey:read. */
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
- /** POST /api/v1/survey; permission: survey:create. */
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
- /** GET /api/v1/trusted-service; permission: trusted_service:read. */
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
- /** POST /api/v1/trusted-service; permission: trusted_service:create. */
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
- /** DELETE /api/v1/trusted-service/{id}; permission: trusted_service:delete. */
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
- /** GET /api/v1/trusted-service/{id}; permission: trusted_service:read. */
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
- /** PATCH /api/v1/trusted-service/{id}; permission: trusted_service:update. */
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
- /** PUT /api/v1/trusted-service/{id}; permission: trusted_service:update. */
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
- /** GET /api/v1/trusted-service/{id}/event; permission: trusted_service:read. */
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
- /** POST /api/v1/trusted-service/{id}/event; permission: trusted_service:create. */
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
- /** DELETE /api/v1/trusted-service/{id}/event/{event_id}; permission: trusted_service:delete. */
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
- /** GET /api/v1/trusted-service/{id}/event/{event_id}; permission: trusted_service:read. */
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
- /** PATCH /api/v1/trusted-service/{id}/event/{event_id}; permission: trusted_service:update. */
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
- /** PUT /api/v1/trusted-service/{id}/event/{event_id}; permission: trusted_service:update. */
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
- /** GET /health; permission: public/session-derived. */
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
- /** GET /up; permission: public/session-derived. */
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