@faiber/faiber-profile 0.2.2 → 0.5.0

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