@faiber/faiber-profile 0.3.0 → 0.5.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +3 -2
- package/dist/.tsbuildinfo +1 -1
- package/dist/operations.d.ts +986 -116
- package/dist/operations.d.ts.map +1 -1
- package/dist/operations.js +995 -115
- package/dist/operations.js.map +1 -1
- package/dist/operations.types.d.ts +1416 -262
- package/dist/operations.types.d.ts.map +1 -1
- package/package.json +2 -2
package/dist/operations.d.ts
CHANGED
|
@@ -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
|
-
/**
|
|
4
|
+
/**
|
|
5
|
+
* Performs the openapi json operation for the router capability.
|
|
6
|
+
* Calls `GET /api/openapi.json` through the shared IDP-aware Faiber client.
|
|
7
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
8
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
9
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
|
|
10
|
+
*/
|
|
5
11
|
routerOpenapiJsonGet(options?: RequestOptions): Promise<import("axios").AxiosResponse<T.RouterOpenapiJsonGetResponse, unknown, {}>>;
|
|
6
|
-
/**
|
|
12
|
+
/**
|
|
13
|
+
* Performs the address get operation for the option capability.
|
|
14
|
+
* Calls `POST /api/v1/address/get` through the shared IDP-aware Faiber client.
|
|
15
|
+
* @param data Typed JSON request body.
|
|
16
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
17
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
18
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
|
|
19
|
+
*/
|
|
7
20
|
optionAddressGetPost(data: T.OptionAddressGetPostInput, options?: RequestOptions<T.OptionAddressGetPostInput>): Promise<import("axios").AxiosResponse<T.OptionAddressGetPostResponse, T.OptionAddressGetPostInput, {}>>;
|
|
8
|
-
/**
|
|
21
|
+
/**
|
|
22
|
+
* Performs the get 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
|
-
/**
|
|
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
|
-
/**
|
|
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
|
-
/**
|
|
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
|
-
/**
|
|
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
|
-
/**
|
|
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
|
-
/**
|
|
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
|
-
/**
|
|
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
|
-
/**
|
|
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
|
-
/**
|
|
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
|
-
/**
|
|
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
|
-
/**
|
|
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
|
-
/**
|
|
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
|
-
/**
|
|
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
|
-
/**
|
|
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
|
-
/**
|
|
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
|
-
/**
|
|
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
|
-
/**
|
|
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
|
-
/**
|
|
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
|
-
/**
|
|
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
|
-
/**
|
|
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
|
-
/**
|
|
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
|
-
/**
|
|
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
|
-
/**
|
|
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
|
-
/**
|
|
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
|
-
/**
|
|
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
|
-
/**
|
|
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
|
-
/**
|
|
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
|
-
/**
|
|
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
|
-
/**
|
|
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
|
-
/**
|
|
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
|
-
/**
|
|
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
|
-
/**
|
|
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
|
-
/**
|
|
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
|
-
/**
|
|
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
|
-
/**
|
|
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
|
-
/**
|
|
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
|
-
/**
|
|
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
|
-
/**
|
|
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
|
-
/**
|
|
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
|
-
/**
|
|
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
|
-
/**
|
|
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
|
-
/**
|
|
93
|
-
|
|
94
|
-
|
|
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
|
-
/**
|
|
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
|
-
/**
|
|
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
|
-
/**
|
|
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
|
-
/**
|
|
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
|
-
/**
|
|
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
|
-
/**
|
|
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
|
-
/**
|
|
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
|
-
/**
|
|
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
|
-
/**
|
|
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
|
-
/**
|
|
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
|
-
/**
|
|
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
|
-
/**
|
|
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
|
-
/**
|
|
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
|
-
/**
|
|
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
|
-
/**
|
|
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
|
-
/**
|
|
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
|
-
/**
|
|
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
|
-
/**
|
|
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
|
-
/**
|
|
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
|
-
/**
|
|
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
|
-
/**
|
|
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
|
-
/**
|
|
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
|
-
/**
|
|
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
|
-
/**
|
|
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
|
-
/**
|
|
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
|
-
/**
|
|
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
|
-
/**
|
|
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
|
-
/**
|
|
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
|
-
/**
|
|
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
|
-
/**
|
|
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
|
-
/**
|
|
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
|
-
/**
|
|
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
|
-
/**
|
|
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
|
-
/**
|
|
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
|
-
/**
|
|
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
|
-
/**
|
|
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
|
-
/**
|
|
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
|
-
/**
|
|
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
|
-
/**
|
|
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
|
-
/**
|
|
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
|
-
/**
|
|
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
|
-
/**
|
|
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
|
-
/**
|
|
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
|
-
/**
|
|
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
|
-
/**
|
|
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
|
-
/**
|
|
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
|
-
/**
|
|
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
|
-
/**
|
|
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
|
-
/**
|
|
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
|
-
/**
|
|
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
|
-
/**
|
|
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
|
-
/**
|
|
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
|
-
/**
|
|
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
|
-
/**
|
|
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
|
-
/**
|
|
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
|
-
/**
|
|
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
|
-
/**
|
|
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
|
-
/**
|
|
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
|
-
/**
|
|
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
|
-
/**
|
|
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
|
-
/**
|
|
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
|
-
/**
|
|
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
|
-
/**
|
|
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
|
-
/**
|
|
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
|
-
/**
|
|
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
|
-
/**
|
|
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
|
-
/**
|
|
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
|
-
/**
|
|
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
|
-
/**
|
|
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
|