@faiber/faiber-profile 0.3.0 → 0.5.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +3 -2
- package/dist/.tsbuildinfo +1 -1
- package/dist/operations.d.ts +1010 -124
- package/dist/operations.d.ts.map +1 -1
- package/dist/operations.js +1037 -139
- package/dist/operations.js.map +1 -1
- package/dist/operations.types.d.ts +481 -272
- package/dist/operations.types.d.ts.map +1 -1
- package/package.json +4 -3
package/dist/operations.js
CHANGED
|
@@ -1,462 +1,1360 @@
|
|
|
1
1
|
import { ServiceApi, urlEncoded } from "@faiber/sdk-core";
|
|
2
2
|
export class ProfileOperations extends ServiceApi {
|
|
3
|
-
/**
|
|
3
|
+
/**
|
|
4
|
+
* Performs the openapi json operation for the router capability.
|
|
5
|
+
* Calls `GET /api/openapi.json` through the shared IDP-aware Faiber client.
|
|
6
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
7
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
8
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
|
|
9
|
+
*/
|
|
4
10
|
routerOpenapiJsonGet(options) {
|
|
5
11
|
return this.client.request({ ...options, method: "GET", url: `/api/openapi.json` });
|
|
6
12
|
}
|
|
7
|
-
/**
|
|
13
|
+
/**
|
|
14
|
+
* Performs the address get operation for the option capability.
|
|
15
|
+
* Calls `POST /api/v1/address/get` through the shared IDP-aware Faiber client.
|
|
16
|
+
* @param data Typed JSON request body.
|
|
17
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
18
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
19
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
|
|
20
|
+
*/
|
|
8
21
|
optionAddressGetPost(data, options) {
|
|
9
22
|
return this.client.request({ ...options, method: "POST", url: `/api/v1/address/get`, data: data });
|
|
10
23
|
}
|
|
11
|
-
/**
|
|
24
|
+
/**
|
|
25
|
+
* Performs the get chat context operation for the session capability.
|
|
26
|
+
* Calls `GET /api/v1/auth/chat-context` through the shared IDP-aware Faiber client.
|
|
27
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
28
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
29
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
|
|
30
|
+
*/
|
|
31
|
+
sessionGetChatContextGet(options) {
|
|
32
|
+
return this.client.request({ ...options, method: "GET", url: `/api/v1/auth/chat-context` });
|
|
33
|
+
}
|
|
34
|
+
/**
|
|
35
|
+
* Performs the get self operation for the session capability.
|
|
36
|
+
* Calls `GET /api/v1/auth/self` through the shared IDP-aware Faiber client.
|
|
37
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
38
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
39
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
|
|
40
|
+
*/
|
|
12
41
|
sessionGetSelfGet(options) {
|
|
13
42
|
return this.client.request({ ...options, method: "GET", url: `/api/v1/auth/self` });
|
|
14
43
|
}
|
|
15
|
-
/**
|
|
44
|
+
/**
|
|
45
|
+
* Performs the index operation for the campaign capability.
|
|
46
|
+
* Calls `GET /api/v1/campaign` through the shared IDP-aware Faiber client.
|
|
47
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
48
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
49
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
|
|
50
|
+
*/
|
|
51
|
+
campaignIndexGet(options) {
|
|
52
|
+
return this.client.request({ ...options, method: "GET", url: `/api/v1/campaign` });
|
|
53
|
+
}
|
|
54
|
+
/**
|
|
55
|
+
* Performs the my contributions operation for the campaign capability.
|
|
56
|
+
* Calls `GET /api/v1/campaign-profile/me/contributions` through the shared IDP-aware Faiber client.
|
|
57
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
58
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
59
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
|
|
60
|
+
*/
|
|
61
|
+
campaignMyContributionsGet(options) {
|
|
62
|
+
return this.client.request({ ...options, method: "GET", url: `/api/v1/campaign-profile/me/contributions` });
|
|
63
|
+
}
|
|
64
|
+
/**
|
|
65
|
+
* Performs the show operation for the campaign capability.
|
|
66
|
+
* Calls `GET /api/v1/campaign/{id}` through the shared IDP-aware Faiber client.
|
|
67
|
+
* @param id Backend path identifier `id`.
|
|
68
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
69
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
70
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
|
|
71
|
+
*/
|
|
72
|
+
campaignShowGet(id, options) {
|
|
73
|
+
return this.client.request({ ...options, method: "GET", url: `/api/v1/campaign/${encodeURIComponent(id)}` });
|
|
74
|
+
}
|
|
75
|
+
/**
|
|
76
|
+
* Performs the contribute operation for the campaign capability.
|
|
77
|
+
* Calls `POST /api/v1/campaign/{id}/contributions` through the shared IDP-aware Faiber client.
|
|
78
|
+
* @param id Backend path identifier `id`.
|
|
79
|
+
* @param data Typed JSON request body.
|
|
80
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
81
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
82
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
|
|
83
|
+
*/
|
|
84
|
+
campaignContributePost(id, data, options) {
|
|
85
|
+
return this.client.request({ ...options, method: "POST", url: `/api/v1/campaign/${encodeURIComponent(id)}/contributions`, data: data });
|
|
86
|
+
}
|
|
87
|
+
/**
|
|
88
|
+
* Performs the index operation for the city capability.
|
|
89
|
+
* Calls `GET /api/v1/city` through the shared IDP-aware Faiber client.
|
|
90
|
+
* @param params Typed query parameters; omitted members retain backend defaults.
|
|
91
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
92
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
93
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: city:read.
|
|
94
|
+
*/
|
|
16
95
|
cityIndexGet(params, options) {
|
|
17
96
|
return this.client.request({ ...options, method: "GET", url: `/api/v1/city`, params });
|
|
18
97
|
}
|
|
19
|
-
/**
|
|
98
|
+
/**
|
|
99
|
+
* Performs the store operation for the city capability.
|
|
100
|
+
* Calls `POST /api/v1/city` through the shared IDP-aware Faiber client.
|
|
101
|
+
* @param data Typed JSON request body.
|
|
102
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
103
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
104
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: city:create.
|
|
105
|
+
*/
|
|
20
106
|
cityStorePost(data, options) {
|
|
21
107
|
return this.client.request({ ...options, method: "POST", url: `/api/v1/city`, data: data });
|
|
22
108
|
}
|
|
23
|
-
/**
|
|
109
|
+
/**
|
|
110
|
+
* Performs the destroy operation for the city capability.
|
|
111
|
+
* Calls `DELETE /api/v1/city/{id}` through the shared IDP-aware Faiber client.
|
|
112
|
+
* @param id Backend path identifier `id`.
|
|
113
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
114
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
115
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: city:delete.
|
|
116
|
+
*/
|
|
24
117
|
cityDestroyDelete(id, options) {
|
|
25
118
|
return this.client.request({ ...options, method: "DELETE", url: `/api/v1/city/${encodeURIComponent(id)}` });
|
|
26
119
|
}
|
|
27
|
-
/**
|
|
120
|
+
/**
|
|
121
|
+
* Performs the show operation for the city capability.
|
|
122
|
+
* Calls `GET /api/v1/city/{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:read.
|
|
127
|
+
*/
|
|
28
128
|
cityShowGet(id, options) {
|
|
29
129
|
return this.client.request({ ...options, method: "GET", url: `/api/v1/city/${encodeURIComponent(id)}` });
|
|
30
130
|
}
|
|
31
|
-
/**
|
|
131
|
+
/**
|
|
132
|
+
* Performs the update operation for the city capability.
|
|
133
|
+
* Calls `PATCH /api/v1/city/{id}` through the shared IDP-aware Faiber client.
|
|
134
|
+
* @param id Backend path identifier `id`.
|
|
135
|
+
* @param data Typed JSON request body.
|
|
136
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
137
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
138
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: city:update.
|
|
139
|
+
*/
|
|
32
140
|
cityUpdatePatch(id, data, options) {
|
|
33
141
|
return this.client.request({ ...options, method: "PATCH", url: `/api/v1/city/${encodeURIComponent(id)}`, data: data });
|
|
34
142
|
}
|
|
35
|
-
/**
|
|
143
|
+
/**
|
|
144
|
+
* Performs the update operation for the city capability.
|
|
145
|
+
* Calls `PUT /api/v1/city/{id}` through the shared IDP-aware Faiber client.
|
|
146
|
+
* @param id Backend path identifier `id`.
|
|
147
|
+
* @param data Typed JSON request body.
|
|
148
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
149
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
150
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: city:update.
|
|
151
|
+
*/
|
|
36
152
|
cityUpdatePut(id, data, options) {
|
|
37
153
|
return this.client.request({ ...options, method: "PUT", url: `/api/v1/city/${encodeURIComponent(id)}`, data: data });
|
|
38
154
|
}
|
|
39
|
-
/**
|
|
155
|
+
/**
|
|
156
|
+
* Performs the force destroy operation for the city capability.
|
|
157
|
+
* Calls `DELETE /api/v1/city/force/{id}` through the shared IDP-aware Faiber client.
|
|
158
|
+
* @param id Backend path identifier `id`.
|
|
159
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
160
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
161
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: city:delete.
|
|
162
|
+
*/
|
|
40
163
|
cityForceDestroyDelete(id, options) {
|
|
41
164
|
return this.client.request({ ...options, method: "DELETE", url: `/api/v1/city/force/${encodeURIComponent(id)}` });
|
|
42
165
|
}
|
|
43
|
-
/**
|
|
166
|
+
/**
|
|
167
|
+
* Performs the restore operation for the city capability.
|
|
168
|
+
* Calls `GET /api/v1/city/undo/{id}` through the shared IDP-aware Faiber client.
|
|
169
|
+
* @param id Backend path identifier `id`.
|
|
170
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
171
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
172
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: city:delete.
|
|
173
|
+
*/
|
|
44
174
|
cityRestoreGet(id, options) {
|
|
45
175
|
return this.client.request({ ...options, method: "GET", url: `/api/v1/city/undo/${encodeURIComponent(id)}` });
|
|
46
176
|
}
|
|
47
|
-
/**
|
|
177
|
+
/**
|
|
178
|
+
* Performs the index operation for the country capability.
|
|
179
|
+
* Calls `GET /api/v1/country` through the shared IDP-aware Faiber client.
|
|
180
|
+
* @param params Typed query parameters; omitted members retain backend defaults.
|
|
181
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
182
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
183
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: country:read.
|
|
184
|
+
*/
|
|
48
185
|
countryIndexGet(params, options) {
|
|
49
186
|
return this.client.request({ ...options, method: "GET", url: `/api/v1/country`, params });
|
|
50
187
|
}
|
|
51
|
-
/**
|
|
188
|
+
/**
|
|
189
|
+
* Performs the store operation for the country capability.
|
|
190
|
+
* Calls `POST /api/v1/country` through the shared IDP-aware Faiber client.
|
|
191
|
+
* @param data Typed JSON request body.
|
|
192
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
193
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
194
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: country:create.
|
|
195
|
+
*/
|
|
52
196
|
countryStorePost(data, options) {
|
|
53
197
|
return this.client.request({ ...options, method: "POST", url: `/api/v1/country`, data: data });
|
|
54
198
|
}
|
|
55
|
-
/**
|
|
199
|
+
/**
|
|
200
|
+
* Performs the destroy operation for the country capability.
|
|
201
|
+
* Calls `DELETE /api/v1/country/{id}` through the shared IDP-aware Faiber client.
|
|
202
|
+
* @param id Backend path identifier `id`.
|
|
203
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
204
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
205
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: country:delete.
|
|
206
|
+
*/
|
|
56
207
|
countryDestroyDelete(id, options) {
|
|
57
208
|
return this.client.request({ ...options, method: "DELETE", url: `/api/v1/country/${encodeURIComponent(id)}` });
|
|
58
209
|
}
|
|
59
|
-
/**
|
|
210
|
+
/**
|
|
211
|
+
* Performs the show operation for the country capability.
|
|
212
|
+
* Calls `GET /api/v1/country/{id}` through the shared IDP-aware Faiber client.
|
|
213
|
+
* @param id Backend path identifier `id`.
|
|
214
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
215
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
216
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: country:read.
|
|
217
|
+
*/
|
|
60
218
|
countryShowGet(id, options) {
|
|
61
219
|
return this.client.request({ ...options, method: "GET", url: `/api/v1/country/${encodeURIComponent(id)}` });
|
|
62
220
|
}
|
|
63
|
-
/**
|
|
221
|
+
/**
|
|
222
|
+
* Performs the update operation for the country capability.
|
|
223
|
+
* Calls `PATCH /api/v1/country/{id}` through the shared IDP-aware Faiber client.
|
|
224
|
+
* @param id Backend path identifier `id`.
|
|
225
|
+
* @param data Typed JSON request body.
|
|
226
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
227
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
228
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: country:update.
|
|
229
|
+
*/
|
|
64
230
|
countryUpdatePatch(id, data, options) {
|
|
65
231
|
return this.client.request({ ...options, method: "PATCH", url: `/api/v1/country/${encodeURIComponent(id)}`, data: data });
|
|
66
232
|
}
|
|
67
|
-
/**
|
|
233
|
+
/**
|
|
234
|
+
* Performs the update operation for the country capability.
|
|
235
|
+
* Calls `PUT /api/v1/country/{id}` through the shared IDP-aware Faiber client.
|
|
236
|
+
* @param id Backend path identifier `id`.
|
|
237
|
+
* @param data Typed JSON request body.
|
|
238
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
239
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
240
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: country:update.
|
|
241
|
+
*/
|
|
68
242
|
countryUpdatePut(id, data, options) {
|
|
69
243
|
return this.client.request({ ...options, method: "PUT", url: `/api/v1/country/${encodeURIComponent(id)}`, data: data });
|
|
70
244
|
}
|
|
71
|
-
/**
|
|
245
|
+
/**
|
|
246
|
+
* Performs the force destroy operation for the country capability.
|
|
247
|
+
* Calls `DELETE /api/v1/country/force/{id}` through the shared IDP-aware Faiber client.
|
|
248
|
+
* @param id Backend path identifier `id`.
|
|
249
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
250
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
251
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: country:delete.
|
|
252
|
+
*/
|
|
72
253
|
countryForceDestroyDelete(id, options) {
|
|
73
254
|
return this.client.request({ ...options, method: "DELETE", url: `/api/v1/country/force/${encodeURIComponent(id)}` });
|
|
74
255
|
}
|
|
75
|
-
/**
|
|
256
|
+
/**
|
|
257
|
+
* Performs the restore operation for the country capability.
|
|
258
|
+
* Calls `GET /api/v1/country/undo/{id}` through the shared IDP-aware Faiber client.
|
|
259
|
+
* @param id Backend path identifier `id`.
|
|
260
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
261
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
262
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: country:delete.
|
|
263
|
+
*/
|
|
76
264
|
countryRestoreGet(id, options) {
|
|
77
265
|
return this.client.request({ ...options, method: "GET", url: `/api/v1/country/undo/${encodeURIComponent(id)}` });
|
|
78
266
|
}
|
|
79
|
-
/**
|
|
267
|
+
/**
|
|
268
|
+
* Performs the dependency operation for the option capability.
|
|
269
|
+
* Calls `GET /api/v1/dependency` through the shared IDP-aware Faiber client.
|
|
270
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
271
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
272
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: dependency:read.
|
|
273
|
+
*/
|
|
80
274
|
optionDependencyGet(options) {
|
|
81
275
|
return this.client.request({ ...options, method: "GET", url: `/api/v1/dependency` });
|
|
82
276
|
}
|
|
83
|
-
/**
|
|
277
|
+
/**
|
|
278
|
+
* Performs the identity operation for the option capability.
|
|
279
|
+
* Calls `GET /api/v1/identity` through the shared IDP-aware Faiber client.
|
|
280
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
281
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
282
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
|
|
283
|
+
*/
|
|
84
284
|
optionIdentityGet(options) {
|
|
85
285
|
return this.client.request({ ...options, method: "GET", url: `/api/v1/identity` });
|
|
86
286
|
}
|
|
87
|
-
/**
|
|
287
|
+
/**
|
|
288
|
+
* Performs the integration docs show operation for the integration capability.
|
|
289
|
+
* Calls `GET /api/v1/integration/docs` through the shared IDP-aware Faiber client.
|
|
290
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
291
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
292
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: admin:integration:read.
|
|
293
|
+
*/
|
|
88
294
|
integrationIntegrationDocsShowGet(options) {
|
|
89
295
|
return this.client.request({ ...options, method: "GET", url: `/api/v1/integration/docs` });
|
|
90
296
|
}
|
|
91
|
-
/**
|
|
297
|
+
/**
|
|
298
|
+
* Performs the flow integration show operation for the integration capability.
|
|
299
|
+
* Calls `GET /api/v1/integration/flow` through the shared IDP-aware Faiber client.
|
|
300
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
301
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
302
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
|
|
303
|
+
*/
|
|
92
304
|
integrationFlowIntegrationShowGet(options) {
|
|
93
305
|
return this.client.request({ ...options, method: "GET", url: `/api/v1/integration/flow` });
|
|
94
306
|
}
|
|
95
|
-
/**
|
|
307
|
+
/**
|
|
308
|
+
* Performs the store operation for the log action capability.
|
|
309
|
+
* Calls `POST /api/v1/log-action` through the shared IDP-aware Faiber client.
|
|
310
|
+
* @param data Typed JSON request body.
|
|
311
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
312
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
313
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: log_action:create.
|
|
314
|
+
*/
|
|
96
315
|
logActionStorePost(data, options) {
|
|
97
316
|
return this.client.request({ ...options, method: "POST", url: `/api/v1/log-action`, data: data });
|
|
98
317
|
}
|
|
99
|
-
/**
|
|
318
|
+
/**
|
|
319
|
+
* Performs the store slug operation for the log action capability.
|
|
320
|
+
* Calls `POST /api/v1/log-action/{slug}` through the shared IDP-aware Faiber client.
|
|
321
|
+
* @param slug Backend path identifier `slug`.
|
|
322
|
+
* @param data Typed JSON request body.
|
|
323
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
324
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
325
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: log_action:create.
|
|
326
|
+
*/
|
|
100
327
|
logActionStoreSlugPost(slug, data, options) {
|
|
101
328
|
return this.client.request({ ...options, method: "POST", url: `/api/v1/log-action/${encodeURIComponent(slug)}`, data: data });
|
|
102
329
|
}
|
|
103
|
-
/**
|
|
330
|
+
/**
|
|
331
|
+
* Performs the store direct operation for the log action capability.
|
|
332
|
+
* Calls `POST /api/v1/log-action/direct/{slug}` through the shared IDP-aware Faiber client.
|
|
333
|
+
* @param slug Backend path identifier `slug`.
|
|
334
|
+
* @param data Typed JSON request body.
|
|
335
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
336
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
337
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
|
|
338
|
+
*/
|
|
104
339
|
logActionStoreDirectPost(slug, data, options) {
|
|
105
340
|
return this.client.request({ ...options, method: "POST", url: `/api/v1/log-action/direct/${encodeURIComponent(slug)}`, data: data });
|
|
106
341
|
}
|
|
107
|
-
/**
|
|
342
|
+
/**
|
|
343
|
+
* Performs the index operation for the logger capability.
|
|
344
|
+
* Calls `GET /api/v1/logger` through the shared IDP-aware Faiber client.
|
|
345
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
346
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
347
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
|
|
348
|
+
*/
|
|
108
349
|
loggerIndexGet(options) {
|
|
109
350
|
return this.client.request({ ...options, method: "GET", url: `/api/v1/logger` });
|
|
110
351
|
}
|
|
111
|
-
/**
|
|
352
|
+
/**
|
|
353
|
+
* Performs the show operation for the logger capability.
|
|
354
|
+
* Calls `GET /api/v1/logger/{log}` through the shared IDP-aware Faiber client.
|
|
355
|
+
* @param log Backend path identifier `log`.
|
|
356
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
357
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
358
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
|
|
359
|
+
*/
|
|
112
360
|
loggerShowGet(log, options) {
|
|
113
361
|
return this.client.request({ ...options, method: "GET", url: `/api/v1/logger/${encodeURIComponent(log)}` });
|
|
114
362
|
}
|
|
115
|
-
/**
|
|
363
|
+
/**
|
|
364
|
+
* Performs the parent get operation for the option capability.
|
|
365
|
+
* Calls `POST /api/v1/parent/get` through the shared IDP-aware Faiber client.
|
|
366
|
+
* @param data Typed JSON request body.
|
|
367
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
368
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
369
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
|
|
370
|
+
*/
|
|
116
371
|
optionParentGetPost(data, options) {
|
|
117
372
|
return this.client.request({ ...options, method: "POST", url: `/api/v1/parent/get`, data: data });
|
|
118
373
|
}
|
|
119
|
-
/**
|
|
374
|
+
/**
|
|
375
|
+
* Performs the index operation for the profile capability.
|
|
376
|
+
* Calls `GET /api/v1/profile` through the shared IDP-aware Faiber client.
|
|
377
|
+
* @param params Typed query parameters; omitted members retain backend defaults.
|
|
378
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
379
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
380
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: /api/v1/profile, profile:read.
|
|
381
|
+
*/
|
|
120
382
|
profileIndexGet(params, options) {
|
|
121
383
|
return this.client.request({ ...options, method: "GET", url: `/api/v1/profile`, params });
|
|
122
384
|
}
|
|
123
|
-
/**
|
|
385
|
+
/**
|
|
386
|
+
* Performs the index operation for the profile property capability.
|
|
387
|
+
* Calls `GET /api/v1/profile-property-definition` through the shared IDP-aware Faiber client.
|
|
388
|
+
* @param params Typed query parameters; omitted members retain backend defaults.
|
|
389
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
390
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
391
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: profile_property_definition:read.
|
|
392
|
+
*/
|
|
124
393
|
profilePropertyIndexGet(params, options) {
|
|
125
394
|
return this.client.request({ ...options, method: "GET", url: `/api/v1/profile-property-definition`, params });
|
|
126
395
|
}
|
|
127
|
-
/**
|
|
396
|
+
/**
|
|
397
|
+
* Performs the store operation for the profile property capability.
|
|
398
|
+
* Calls `POST /api/v1/profile-property-definition` through the shared IDP-aware Faiber client.
|
|
399
|
+
* @param data Typed JSON request body.
|
|
400
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
401
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
402
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: profile_property_definition:create.
|
|
403
|
+
*/
|
|
128
404
|
profilePropertyStorePost(data, options) {
|
|
129
405
|
return this.client.request({ ...options, method: "POST", url: `/api/v1/profile-property-definition`, data: data });
|
|
130
406
|
}
|
|
131
|
-
/**
|
|
407
|
+
/**
|
|
408
|
+
* Performs the destroy operation for the profile property capability.
|
|
409
|
+
* Calls `DELETE /api/v1/profile-property-definition/{id}` through the shared IDP-aware Faiber client.
|
|
410
|
+
* @param id Backend path identifier `id`.
|
|
411
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
412
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
413
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: profile_property_definition:delete.
|
|
414
|
+
*/
|
|
132
415
|
profilePropertyDestroyDelete(id, options) {
|
|
133
416
|
return this.client.request({ ...options, method: "DELETE", url: `/api/v1/profile-property-definition/${encodeURIComponent(id)}` });
|
|
134
417
|
}
|
|
135
|
-
/**
|
|
418
|
+
/**
|
|
419
|
+
* Performs the show operation for the profile property capability.
|
|
420
|
+
* Calls `GET /api/v1/profile-property-definition/{id}` through the shared IDP-aware Faiber client.
|
|
421
|
+
* @param id Backend path identifier `id`.
|
|
422
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
423
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
424
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: profile_property_definition:read.
|
|
425
|
+
*/
|
|
136
426
|
profilePropertyShowGet(id, options) {
|
|
137
427
|
return this.client.request({ ...options, method: "GET", url: `/api/v1/profile-property-definition/${encodeURIComponent(id)}` });
|
|
138
428
|
}
|
|
139
|
-
/**
|
|
429
|
+
/**
|
|
430
|
+
* Performs the update operation for the profile property capability.
|
|
431
|
+
* Calls `PATCH /api/v1/profile-property-definition/{id}` through the shared IDP-aware Faiber client.
|
|
432
|
+
* @param id Backend path identifier `id`.
|
|
433
|
+
* @param data Typed JSON request body.
|
|
434
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
435
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
436
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: profile_property_definition:update.
|
|
437
|
+
*/
|
|
140
438
|
profilePropertyUpdatePatch(id, data, options) {
|
|
141
439
|
return this.client.request({ ...options, method: "PATCH", url: `/api/v1/profile-property-definition/${encodeURIComponent(id)}`, data: data });
|
|
142
440
|
}
|
|
143
|
-
/**
|
|
441
|
+
/**
|
|
442
|
+
* Performs the update operation for the profile property capability.
|
|
443
|
+
* Calls `PUT /api/v1/profile-property-definition/{id}` through the shared IDP-aware Faiber client.
|
|
444
|
+
* @param id Backend path identifier `id`.
|
|
445
|
+
* @param data Typed JSON request body.
|
|
446
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
447
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
448
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: profile_property_definition:update.
|
|
449
|
+
*/
|
|
144
450
|
profilePropertyUpdatePut(id, data, options) {
|
|
145
451
|
return this.client.request({ ...options, method: "PUT", url: `/api/v1/profile-property-definition/${encodeURIComponent(id)}`, data: data });
|
|
146
452
|
}
|
|
147
|
-
/**
|
|
453
|
+
/**
|
|
454
|
+
* Performs the force destroy operation for the profile property capability.
|
|
455
|
+
* Calls `DELETE /api/v1/profile-property-definition/force/{id}` through the shared IDP-aware Faiber client.
|
|
456
|
+
* @param id Backend path identifier `id`.
|
|
457
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
458
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
459
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: profile_property_definition:force_delete.
|
|
460
|
+
*/
|
|
148
461
|
profilePropertyForceDestroyDelete(id, options) {
|
|
149
462
|
return this.client.request({ ...options, method: "DELETE", url: `/api/v1/profile-property-definition/force/${encodeURIComponent(id)}` });
|
|
150
463
|
}
|
|
151
|
-
/**
|
|
464
|
+
/**
|
|
465
|
+
* Performs the restore operation for the profile property capability.
|
|
466
|
+
* Calls `GET /api/v1/profile-property-definition/undo/{id}` through the shared IDP-aware Faiber client.
|
|
467
|
+
* @param id Backend path identifier `id`.
|
|
468
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
469
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
470
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: profile_property_definition:restore.
|
|
471
|
+
*/
|
|
152
472
|
profilePropertyRestoreGet(id, options) {
|
|
153
473
|
return this.client.request({ ...options, method: "GET", url: `/api/v1/profile-property-definition/undo/${encodeURIComponent(id)}` });
|
|
154
474
|
}
|
|
155
|
-
/**
|
|
475
|
+
/**
|
|
476
|
+
* Performs the delete parent operation for the profile capability.
|
|
477
|
+
* Calls `DELETE /api/v1/profile/{student_uuid}/delete/parent/{parent_uuid}` through the shared IDP-aware Faiber client.
|
|
478
|
+
* @param studentUuid Backend path identifier `student_uuid`.
|
|
479
|
+
* @param parentUuid Backend path identifier `parent_uuid`.
|
|
480
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
481
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
482
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: profile:update.
|
|
483
|
+
*/
|
|
156
484
|
profileDeleteParentDelete(studentUuid, parentUuid, options) {
|
|
157
485
|
return this.client.request({ ...options, method: "DELETE", url: `/api/v1/profile/${encodeURIComponent(studentUuid)}/delete/parent/${encodeURIComponent(parentUuid)}` });
|
|
158
486
|
}
|
|
159
|
-
/**
|
|
487
|
+
/**
|
|
488
|
+
* Performs the destroy operation for the profile capability.
|
|
489
|
+
* Calls `DELETE /api/v1/profile/{uuid}` through the shared IDP-aware Faiber client.
|
|
490
|
+
* @param uuid Backend path identifier `uuid`.
|
|
491
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
492
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
493
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: profile:delete.
|
|
494
|
+
*/
|
|
160
495
|
profileDestroyDelete(uuid, options) {
|
|
161
496
|
return this.client.request({ ...options, method: "DELETE", url: `/api/v1/profile/${encodeURIComponent(uuid)}` });
|
|
162
497
|
}
|
|
163
|
-
/**
|
|
498
|
+
/**
|
|
499
|
+
* Performs the show operation for the profile capability.
|
|
500
|
+
* Calls `GET /api/v1/profile/{uuid}` through the shared IDP-aware Faiber client.
|
|
501
|
+
* @param uuid Backend path identifier `uuid`.
|
|
502
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
503
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
504
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: profile:read.
|
|
505
|
+
*/
|
|
164
506
|
profileShowGet(uuid, options) {
|
|
165
507
|
return this.client.request({ ...options, method: "GET", url: `/api/v1/profile/${encodeURIComponent(uuid)}` });
|
|
166
508
|
}
|
|
167
|
-
/**
|
|
509
|
+
/**
|
|
510
|
+
* Performs the update operation for the profile capability.
|
|
511
|
+
* Calls `PATCH /api/v1/profile/{uuid}` through the shared IDP-aware Faiber client.
|
|
512
|
+
* @param uuid Backend path identifier `uuid`.
|
|
513
|
+
* @param data Typed JSON request body.
|
|
514
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
515
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
516
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: profile:update.
|
|
517
|
+
*/
|
|
168
518
|
profileUpdatePatch(uuid, data, options) {
|
|
169
519
|
return this.client.request({ ...options, method: "PATCH", url: `/api/v1/profile/${encodeURIComponent(uuid)}`, data: data });
|
|
170
520
|
}
|
|
171
|
-
/**
|
|
521
|
+
/**
|
|
522
|
+
* Performs the show admin operation for the profile capability.
|
|
523
|
+
* Calls `GET /api/v1/profile/{uuid}/admin` through the shared IDP-aware Faiber client.
|
|
524
|
+
* @param uuid Backend path identifier `uuid`.
|
|
525
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
526
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
527
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: profile:read_admin.
|
|
528
|
+
*/
|
|
172
529
|
profileShowAdminGet(uuid, options) {
|
|
173
530
|
return this.client.request({ ...options, method: "GET", url: `/api/v1/profile/${encodeURIComponent(uuid)}/admin` });
|
|
174
531
|
}
|
|
175
|
-
/**
|
|
532
|
+
/**
|
|
533
|
+
* Performs the avatar delete operation for the profile capability.
|
|
534
|
+
* Calls `DELETE /api/v1/profile/{uuid}/avatar` through the shared IDP-aware Faiber client.
|
|
535
|
+
* @param uuid Backend path identifier `uuid`.
|
|
536
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
537
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
538
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
|
|
539
|
+
*/
|
|
176
540
|
profileAvatarDeleteDelete(uuid, options) {
|
|
177
541
|
return this.client.request({ ...options, method: "DELETE", url: `/api/v1/profile/${encodeURIComponent(uuid)}/avatar` });
|
|
178
542
|
}
|
|
179
|
-
/**
|
|
543
|
+
/**
|
|
544
|
+
* Performs the avatar show operation for the profile capability.
|
|
545
|
+
* Calls `GET /api/v1/profile/{uuid}/avatar` through the shared IDP-aware Faiber client.
|
|
546
|
+
* @param uuid Backend path identifier `uuid`.
|
|
547
|
+
* @param params Typed query parameters; omitted members retain backend defaults.
|
|
548
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
549
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
550
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
|
|
551
|
+
*/
|
|
552
|
+
profileAvatarShowGet(uuid, params, options) {
|
|
553
|
+
return this.client.request({ ...options, method: "GET", url: `/api/v1/profile/${encodeURIComponent(uuid)}/avatar`, params });
|
|
554
|
+
}
|
|
555
|
+
/**
|
|
556
|
+
* Performs the avatar store operation for the profile capability.
|
|
557
|
+
* Calls `POST /api/v1/profile/{uuid}/avatar` through the shared IDP-aware Faiber client.
|
|
558
|
+
* @param uuid Backend path identifier `uuid`.
|
|
559
|
+
* @param data Typed multipart form.
|
|
560
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
561
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
562
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
|
|
563
|
+
*/
|
|
180
564
|
profileAvatarStorePost(uuid, data, options) {
|
|
181
565
|
return this.client.request({ ...options, method: "POST", url: `/api/v1/profile/${encodeURIComponent(uuid)}/avatar`, data: data });
|
|
182
566
|
}
|
|
183
|
-
/**
|
|
567
|
+
/**
|
|
568
|
+
* Performs the delete address operation for the profile capability.
|
|
569
|
+
* Calls `DELETE /api/v1/profile/{uuid}/delete/address/{title}` through the shared IDP-aware Faiber client.
|
|
570
|
+
* @param uuid Backend path identifier `uuid`.
|
|
571
|
+
* @param title Backend path identifier `title`.
|
|
572
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
573
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
574
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: profile:update.
|
|
575
|
+
*/
|
|
184
576
|
profileDeleteAddressDelete(uuid, title, options) {
|
|
185
577
|
return this.client.request({ ...options, method: "DELETE", url: `/api/v1/profile/${encodeURIComponent(uuid)}/delete/address/${encodeURIComponent(title)}` });
|
|
186
578
|
}
|
|
187
|
-
/**
|
|
579
|
+
/**
|
|
580
|
+
* Performs the update employee type operation for the profile capability.
|
|
581
|
+
* Calls `PATCH /api/v1/profile/{uuid}/employee-type` through the shared IDP-aware Faiber client.
|
|
582
|
+
* @param uuid Backend path identifier `uuid`.
|
|
583
|
+
* @param data Typed JSON request body.
|
|
584
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
585
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
586
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: profile:update_employee_type.
|
|
587
|
+
*/
|
|
188
588
|
profileUpdateEmployeeTypePatch(uuid, data, options) {
|
|
189
589
|
return this.client.request({ ...options, method: "PATCH", url: `/api/v1/profile/${encodeURIComponent(uuid)}/employee-type`, data: data });
|
|
190
590
|
}
|
|
191
|
-
/**
|
|
591
|
+
/**
|
|
592
|
+
* Performs the update employee type operation for the profile capability.
|
|
593
|
+
* Calls `PUT /api/v1/profile/{uuid}/employee-type` through the shared IDP-aware Faiber client.
|
|
594
|
+
* @param uuid Backend path identifier `uuid`.
|
|
595
|
+
* @param data Typed JSON request body.
|
|
596
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
597
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
598
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: profile:update_employee_type.
|
|
599
|
+
*/
|
|
192
600
|
profileUpdateEmployeeTypePut(uuid, data, options) {
|
|
193
601
|
return this.client.request({ ...options, method: "PUT", url: `/api/v1/profile/${encodeURIComponent(uuid)}/employee-type`, data: data });
|
|
194
602
|
}
|
|
195
|
-
/**
|
|
603
|
+
/**
|
|
604
|
+
* Performs the update freemium operation for the profile capability.
|
|
605
|
+
* Calls `PATCH /api/v1/profile/{uuid}/freemium-session-limit` through the shared IDP-aware Faiber client.
|
|
606
|
+
* @param uuid Backend path identifier `uuid`.
|
|
607
|
+
* @param data Typed JSON request body.
|
|
608
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
609
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
610
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: profile:freemium_session_limit.
|
|
611
|
+
*/
|
|
196
612
|
profileUpdateFreemiumPatch(uuid, data, options) {
|
|
197
613
|
return this.client.request({ ...options, method: "PATCH", url: `/api/v1/profile/${encodeURIComponent(uuid)}/freemium-session-limit`, data: data });
|
|
198
614
|
}
|
|
199
|
-
/**
|
|
615
|
+
/**
|
|
616
|
+
* Performs the update freemium operation for the profile capability.
|
|
617
|
+
* Calls `PUT /api/v1/profile/{uuid}/freemium-session-limit` 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:freemium_session_limit.
|
|
623
|
+
*/
|
|
200
624
|
profileUpdateFreemiumPut(uuid, data, options) {
|
|
201
625
|
return this.client.request({ ...options, method: "PUT", url: `/api/v1/profile/${encodeURIComponent(uuid)}/freemium-session-limit`, data: data });
|
|
202
626
|
}
|
|
203
|
-
/**
|
|
627
|
+
/**
|
|
628
|
+
* Performs the show full operation for the profile capability.
|
|
629
|
+
* Calls `GET /api/v1/profile/{uuid}/full` through the shared IDP-aware Faiber client.
|
|
630
|
+
* @param uuid Backend path identifier `uuid`.
|
|
631
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
632
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
633
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: profile:read.
|
|
634
|
+
*/
|
|
204
635
|
profileShowFullGet(uuid, options) {
|
|
205
636
|
return this.client.request({ ...options, method: "GET", url: `/api/v1/profile/${encodeURIComponent(uuid)}/full` });
|
|
206
637
|
}
|
|
207
|
-
/**
|
|
638
|
+
/**
|
|
639
|
+
* Performs the media show operation for the profile capability.
|
|
640
|
+
* Calls `GET /api/v1/profile/{uuid}/media` through the shared IDP-aware Faiber client.
|
|
641
|
+
* @param uuid Backend path identifier `uuid`.
|
|
642
|
+
* @param params Typed query parameters; omitted members retain backend defaults.
|
|
643
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
644
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
645
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
|
|
646
|
+
*/
|
|
208
647
|
profileMediaShowGet(uuid, params, options) {
|
|
209
648
|
return this.client.request({ ...options, method: "GET", url: `/api/v1/profile/${encodeURIComponent(uuid)}/media`, params });
|
|
210
649
|
}
|
|
211
|
-
/**
|
|
650
|
+
/**
|
|
651
|
+
* Performs the update properties operation for the profile capability.
|
|
652
|
+
* Calls `PATCH /api/v1/profile/{uuid}/properties` through the shared IDP-aware Faiber client.
|
|
653
|
+
* @param uuid Backend path identifier `uuid`.
|
|
654
|
+
* @param data Typed JSON request body.
|
|
655
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
656
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
657
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: profile:update.
|
|
658
|
+
*/
|
|
212
659
|
profileUpdatePropertiesPatch(uuid, data, options) {
|
|
213
660
|
return this.client.request({ ...options, method: "PATCH", url: `/api/v1/profile/${encodeURIComponent(uuid)}/properties`, data: data });
|
|
214
661
|
}
|
|
215
|
-
/**
|
|
662
|
+
/**
|
|
663
|
+
* Performs the update properties operation for the profile capability.
|
|
664
|
+
* Calls `PUT /api/v1/profile/{uuid}/properties` through the shared IDP-aware Faiber client.
|
|
665
|
+
* @param uuid Backend path identifier `uuid`.
|
|
666
|
+
* @param data Typed JSON request body.
|
|
667
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
668
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
669
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: profile:update.
|
|
670
|
+
*/
|
|
216
671
|
profileUpdatePropertiesPut(uuid, data, options) {
|
|
217
672
|
return this.client.request({ ...options, method: "PUT", url: `/api/v1/profile/${encodeURIComponent(uuid)}/properties`, data: data });
|
|
218
673
|
}
|
|
219
|
-
/**
|
|
674
|
+
/**
|
|
675
|
+
* Performs the update status operation for the profile capability.
|
|
676
|
+
* Calls `PATCH /api/v1/profile/{uuid}/status` through the shared IDP-aware Faiber client.
|
|
677
|
+
* @param uuid Backend path identifier `uuid`.
|
|
678
|
+
* @param data Typed JSON request body.
|
|
679
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
680
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
681
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: profile:update_status.
|
|
682
|
+
*/
|
|
220
683
|
profileUpdateStatusPatch(uuid, data, options) {
|
|
221
684
|
return this.client.request({ ...options, method: "PATCH", url: `/api/v1/profile/${encodeURIComponent(uuid)}/status`, data: data });
|
|
222
685
|
}
|
|
223
|
-
/**
|
|
686
|
+
/**
|
|
687
|
+
* Performs the update status operation for the profile capability.
|
|
688
|
+
* Calls `PUT /api/v1/profile/{uuid}/status` through the shared IDP-aware Faiber client.
|
|
689
|
+
* @param uuid Backend path identifier `uuid`.
|
|
690
|
+
* @param data Typed JSON request body.
|
|
691
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
692
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
693
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: profile:update_status.
|
|
694
|
+
*/
|
|
224
695
|
profileUpdateStatusPut(uuid, data, options) {
|
|
225
696
|
return this.client.request({ ...options, method: "PUT", url: `/api/v1/profile/${encodeURIComponent(uuid)}/status`, data: data });
|
|
226
697
|
}
|
|
227
|
-
/**
|
|
228
|
-
|
|
229
|
-
|
|
230
|
-
|
|
231
|
-
|
|
698
|
+
/**
|
|
699
|
+
* Performs the accountant index operation for the profile capability.
|
|
700
|
+
* Calls `GET /api/v1/profile/accountant` through the shared IDP-aware Faiber client.
|
|
701
|
+
* @param params Typed query parameters; omitted members retain backend defaults.
|
|
702
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
703
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
704
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
|
|
705
|
+
*/
|
|
706
|
+
profileAccountantIndexGet(params, options) {
|
|
707
|
+
return this.client.request({ ...options, method: "GET", url: `/api/v1/profile/accountant`, params });
|
|
708
|
+
}
|
|
709
|
+
/**
|
|
710
|
+
* Performs the add address operation for the profile capability.
|
|
711
|
+
* Calls `PATCH /api/v1/profile/add/address/{uuid}` through the shared IDP-aware Faiber client.
|
|
712
|
+
* @param uuid Backend path identifier `uuid`.
|
|
713
|
+
* @param data Typed JSON request body.
|
|
714
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
715
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
716
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: profile:update.
|
|
717
|
+
*/
|
|
232
718
|
profileAddAddressPatch(uuid, data, options) {
|
|
233
719
|
return this.client.request({ ...options, method: "PATCH", url: `/api/v1/profile/add/address/${encodeURIComponent(uuid)}`, data: data });
|
|
234
720
|
}
|
|
235
|
-
/**
|
|
721
|
+
/**
|
|
722
|
+
* Performs the add address operation for the profile capability.
|
|
723
|
+
* Calls `PUT /api/v1/profile/add/address/{uuid}` through the shared IDP-aware Faiber client.
|
|
724
|
+
* @param uuid Backend path identifier `uuid`.
|
|
725
|
+
* @param data Typed JSON request body.
|
|
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: profile:update.
|
|
729
|
+
*/
|
|
236
730
|
profileAddAddressPut(uuid, data, options) {
|
|
237
731
|
return this.client.request({ ...options, method: "PUT", url: `/api/v1/profile/add/address/${encodeURIComponent(uuid)}`, data: data });
|
|
238
732
|
}
|
|
239
|
-
/**
|
|
733
|
+
/**
|
|
734
|
+
* Performs the add app operation for the profile capability.
|
|
735
|
+
* Calls `PATCH /api/v1/profile/add/app/{uuid}` through the shared IDP-aware Faiber client.
|
|
736
|
+
* @param uuid Backend path identifier `uuid`.
|
|
737
|
+
* @param data Typed JSON request body.
|
|
738
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
739
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
740
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: profile:update.
|
|
741
|
+
*/
|
|
240
742
|
profileAddAppPatch(uuid, data, options) {
|
|
241
743
|
return this.client.request({ ...options, method: "PATCH", url: `/api/v1/profile/add/app/${encodeURIComponent(uuid)}`, data: data });
|
|
242
744
|
}
|
|
243
|
-
/**
|
|
745
|
+
/**
|
|
746
|
+
* Performs the add app operation for the profile capability.
|
|
747
|
+
* Calls `PUT /api/v1/profile/add/app/{uuid}` through the shared IDP-aware Faiber client.
|
|
748
|
+
* @param uuid Backend path identifier `uuid`.
|
|
749
|
+
* @param data Typed JSON request body.
|
|
750
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
751
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
752
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: profile:update.
|
|
753
|
+
*/
|
|
244
754
|
profileAddAppPut(uuid, data, options) {
|
|
245
755
|
return this.client.request({ ...options, method: "PUT", url: `/api/v1/profile/add/app/${encodeURIComponent(uuid)}`, data: data });
|
|
246
756
|
}
|
|
247
|
-
/**
|
|
757
|
+
/**
|
|
758
|
+
* Performs the add parent operation for the profile capability.
|
|
759
|
+
* Calls `PATCH /api/v1/profile/add/parent/{uuid}` through the shared IDP-aware Faiber client.
|
|
760
|
+
* @param uuid Backend path identifier `uuid`.
|
|
761
|
+
* @param data Typed JSON request body.
|
|
762
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
763
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
764
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: profile:update.
|
|
765
|
+
*/
|
|
248
766
|
profileAddParentPatch(uuid, data, options) {
|
|
249
767
|
return this.client.request({ ...options, method: "PATCH", url: `/api/v1/profile/add/parent/${encodeURIComponent(uuid)}`, data: data });
|
|
250
768
|
}
|
|
251
|
-
/**
|
|
769
|
+
/**
|
|
770
|
+
* Performs the add parent operation for the profile capability.
|
|
771
|
+
* Calls `PUT /api/v1/profile/add/parent/{uuid}` through the shared IDP-aware Faiber client.
|
|
772
|
+
* @param uuid Backend path identifier `uuid`.
|
|
773
|
+
* @param data Typed JSON request body.
|
|
774
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
775
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
776
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: profile:update.
|
|
777
|
+
*/
|
|
252
778
|
profileAddParentPut(uuid, data, options) {
|
|
253
779
|
return this.client.request({ ...options, method: "PUT", url: `/api/v1/profile/add/parent/${encodeURIComponent(uuid)}`, data: data });
|
|
254
780
|
}
|
|
255
|
-
/**
|
|
781
|
+
/**
|
|
782
|
+
* Performs the city get operation for the profile capability.
|
|
783
|
+
* Calls `POST /api/v1/profile/city/get` through the shared IDP-aware Faiber client.
|
|
784
|
+
* @param data Typed JSON request body.
|
|
785
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
786
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
787
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
|
|
788
|
+
*/
|
|
256
789
|
profileCityGetPost(data, options) {
|
|
257
790
|
return this.client.request({ ...options, method: "POST", url: `/api/v1/profile/city/get`, data: data });
|
|
258
791
|
}
|
|
259
|
-
/**
|
|
260
|
-
|
|
261
|
-
|
|
262
|
-
|
|
263
|
-
|
|
792
|
+
/**
|
|
793
|
+
* Performs the consultant index operation for the profile capability.
|
|
794
|
+
* Calls `GET /api/v1/profile/consultant` through the shared IDP-aware Faiber client.
|
|
795
|
+
* @param params Typed query parameters; omitted members retain backend defaults.
|
|
796
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
797
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
798
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
|
|
799
|
+
*/
|
|
800
|
+
profileConsultantIndexGet(params, options) {
|
|
801
|
+
return this.client.request({ ...options, method: "GET", url: `/api/v1/profile/consultant`, params });
|
|
802
|
+
}
|
|
803
|
+
/**
|
|
804
|
+
* Performs the country get operation for the profile capability.
|
|
805
|
+
* Calls `POST /api/v1/profile/country/get` through the shared IDP-aware Faiber client.
|
|
806
|
+
* @param data Typed JSON request body.
|
|
807
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
808
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
809
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
|
|
810
|
+
*/
|
|
264
811
|
profileCountryGetPost(data, options) {
|
|
265
812
|
return this.client.request({ ...options, method: "POST", url: `/api/v1/profile/country/get`, data: data });
|
|
266
813
|
}
|
|
267
|
-
/**
|
|
814
|
+
/**
|
|
815
|
+
* Performs the force destroy operation for the profile capability.
|
|
816
|
+
* Calls `DELETE /api/v1/profile/force/{uuid}` through the shared IDP-aware Faiber client.
|
|
817
|
+
* @param uuid Backend path identifier `uuid`.
|
|
818
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
819
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
820
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: profile:force_delete.
|
|
821
|
+
*/
|
|
268
822
|
profileForceDestroyDelete(uuid, options) {
|
|
269
823
|
return this.client.request({ ...options, method: "DELETE", url: `/api/v1/profile/force/${encodeURIComponent(uuid)}` });
|
|
270
824
|
}
|
|
271
|
-
/**
|
|
825
|
+
/**
|
|
826
|
+
* Performs the bulk get operation for the profile capability.
|
|
827
|
+
* Calls `POST /api/v1/profile/get` through the shared IDP-aware Faiber client.
|
|
828
|
+
* @param data Typed JSON request body.
|
|
829
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
830
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
831
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
|
|
832
|
+
*/
|
|
272
833
|
profileBulkGetPost(data, options) {
|
|
273
834
|
return this.client.request({ ...options, method: "POST", url: `/api/v1/profile/get`, data: data });
|
|
274
835
|
}
|
|
275
|
-
/**
|
|
836
|
+
/**
|
|
837
|
+
* Performs the chat list operation for the profile capability.
|
|
838
|
+
* Calls `GET /api/v1/profile/get-chat-list/{uuid}` through the shared IDP-aware Faiber client.
|
|
839
|
+
* @param uuid Backend path identifier `uuid`.
|
|
840
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
841
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
842
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
|
|
843
|
+
*/
|
|
276
844
|
profileChatListGet(uuid, options) {
|
|
277
845
|
return this.client.request({ ...options, method: "GET", url: `/api/v1/profile/get-chat-list/${encodeURIComponent(uuid)}` });
|
|
278
846
|
}
|
|
279
|
-
/**
|
|
847
|
+
/**
|
|
848
|
+
* Performs the get address operation for the profile capability.
|
|
849
|
+
* Calls `GET /api/v1/profile/get/address/{uuid}` through the shared IDP-aware Faiber client.
|
|
850
|
+
* @param uuid Backend path identifier `uuid`.
|
|
851
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
852
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
853
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: profile:read.
|
|
854
|
+
*/
|
|
280
855
|
profileGetAddressGet(uuid, options) {
|
|
281
856
|
return this.client.request({ ...options, method: "GET", url: `/api/v1/profile/get/address/${encodeURIComponent(uuid)}` });
|
|
282
857
|
}
|
|
283
|
-
/**
|
|
858
|
+
/**
|
|
859
|
+
* Performs the get app operation for the profile capability.
|
|
860
|
+
* Calls `GET /api/v1/profile/get/app/{uuid}` through the shared IDP-aware Faiber client.
|
|
861
|
+
* @param uuid Backend path identifier `uuid`.
|
|
862
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
863
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
864
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: profile:read.
|
|
865
|
+
*/
|
|
284
866
|
profileGetAppGet(uuid, options) {
|
|
285
867
|
return this.client.request({ ...options, method: "GET", url: `/api/v1/profile/get/app/${encodeURIComponent(uuid)}` });
|
|
286
868
|
}
|
|
287
|
-
/**
|
|
869
|
+
/**
|
|
870
|
+
* Performs the get parent operation for the profile capability.
|
|
871
|
+
* Calls `GET /api/v1/profile/get/parent/{uuid}` through the shared IDP-aware Faiber client.
|
|
872
|
+
* @param uuid Backend path identifier `uuid`.
|
|
873
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
874
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
875
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: profile:read.
|
|
876
|
+
*/
|
|
288
877
|
profileGetParentGet(uuid, options) {
|
|
289
878
|
return this.client.request({ ...options, method: "GET", url: `/api/v1/profile/get/parent/${encodeURIComponent(uuid)}` });
|
|
290
879
|
}
|
|
291
|
-
/**
|
|
292
|
-
|
|
293
|
-
|
|
294
|
-
|
|
295
|
-
|
|
296
|
-
|
|
297
|
-
|
|
298
|
-
|
|
299
|
-
|
|
300
|
-
|
|
301
|
-
|
|
302
|
-
|
|
303
|
-
|
|
880
|
+
/**
|
|
881
|
+
* Performs the manager index operation for the profile capability.
|
|
882
|
+
* Calls `GET /api/v1/profile/manager` through the shared IDP-aware Faiber client.
|
|
883
|
+
* @param params Typed query parameters; omitted members retain backend defaults.
|
|
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: session-derived or public bootstrap route.
|
|
887
|
+
*/
|
|
888
|
+
profileManagerIndexGet(params, options) {
|
|
889
|
+
return this.client.request({ ...options, method: "GET", url: `/api/v1/profile/manager`, params });
|
|
890
|
+
}
|
|
891
|
+
/**
|
|
892
|
+
* Performs the other index operation for the profile capability.
|
|
893
|
+
* Calls `GET /api/v1/profile/other` through the shared IDP-aware Faiber client.
|
|
894
|
+
* @param params Typed query parameters; omitted members retain backend defaults.
|
|
895
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
896
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
897
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
|
|
898
|
+
*/
|
|
899
|
+
profileOtherIndexGet(params, options) {
|
|
900
|
+
return this.client.request({ ...options, method: "GET", url: `/api/v1/profile/other`, params });
|
|
901
|
+
}
|
|
902
|
+
/**
|
|
903
|
+
* Performs the parent index operation for the profile capability.
|
|
904
|
+
* Calls `GET /api/v1/profile/parent` through the shared IDP-aware Faiber client.
|
|
905
|
+
* @param params Typed query parameters; omitted members retain backend defaults.
|
|
906
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
907
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
908
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
|
|
909
|
+
*/
|
|
910
|
+
profileParentIndexGet(params, options) {
|
|
911
|
+
return this.client.request({ ...options, method: "GET", url: `/api/v1/profile/parent`, params });
|
|
912
|
+
}
|
|
913
|
+
/**
|
|
914
|
+
* Performs the province get operation for the profile capability.
|
|
915
|
+
* Calls `POST /api/v1/profile/province/get` through the shared IDP-aware Faiber client.
|
|
916
|
+
* @param data Typed JSON request body.
|
|
917
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
918
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
919
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
|
|
920
|
+
*/
|
|
304
921
|
profileProvinceGetPost(data, options) {
|
|
305
922
|
return this.client.request({ ...options, method: "POST", url: `/api/v1/profile/province/get`, data: data });
|
|
306
923
|
}
|
|
307
|
-
/**
|
|
924
|
+
/**
|
|
925
|
+
* Performs the search operation for the profile search capability.
|
|
926
|
+
* Calls `POST /api/v1/profile/search` through the shared IDP-aware Faiber client.
|
|
927
|
+
* @param data Typed JSON request body.
|
|
928
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
929
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
930
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: profile:search.
|
|
931
|
+
*/
|
|
308
932
|
profileSearchSearchPost(data, options) {
|
|
309
933
|
return this.client.request({ ...options, method: "POST", url: `/api/v1/profile/search`, data: data });
|
|
310
934
|
}
|
|
311
|
-
/**
|
|
312
|
-
|
|
313
|
-
|
|
314
|
-
|
|
315
|
-
|
|
935
|
+
/**
|
|
936
|
+
* Performs the student index operation for the profile capability.
|
|
937
|
+
* Calls `GET /api/v1/profile/student` through the shared IDP-aware Faiber client.
|
|
938
|
+
* @param params Typed query parameters; omitted members retain backend defaults.
|
|
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: session-derived or public bootstrap route.
|
|
942
|
+
*/
|
|
943
|
+
profileStudentIndexGet(params, options) {
|
|
944
|
+
return this.client.request({ ...options, method: "GET", url: `/api/v1/profile/student`, params });
|
|
945
|
+
}
|
|
946
|
+
/**
|
|
947
|
+
* Performs the student pes operation for the profile capability.
|
|
948
|
+
* Calls `GET /api/v1/profile/students/pes` through the shared IDP-aware Faiber client.
|
|
949
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
950
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
951
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
|
|
952
|
+
*/
|
|
316
953
|
profileStudentPesGet(options) {
|
|
317
954
|
return this.client.request({ ...options, method: "GET", url: `/api/v1/profile/students/pes` });
|
|
318
955
|
}
|
|
319
|
-
/**
|
|
956
|
+
/**
|
|
957
|
+
* Performs the student pes schema operation for the profile capability.
|
|
958
|
+
* Calls `GET /api/v1/profile/students/pes/schema` through the shared IDP-aware Faiber client.
|
|
959
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
960
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
961
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
|
|
962
|
+
*/
|
|
320
963
|
profileStudentPesSchemaGet(options) {
|
|
321
964
|
return this.client.request({ ...options, method: "GET", url: `/api/v1/profile/students/pes/schema` });
|
|
322
965
|
}
|
|
323
|
-
/**
|
|
324
|
-
|
|
325
|
-
|
|
326
|
-
|
|
327
|
-
|
|
966
|
+
/**
|
|
967
|
+
* Performs the support index operation for the profile capability.
|
|
968
|
+
* Calls `GET /api/v1/profile/support` through the shared IDP-aware Faiber client.
|
|
969
|
+
* @param params Typed query parameters; omitted members retain backend defaults.
|
|
970
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
971
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
972
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
|
|
973
|
+
*/
|
|
974
|
+
profileSupportIndexGet(params, options) {
|
|
975
|
+
return this.client.request({ ...options, method: "GET", url: `/api/v1/profile/support`, params });
|
|
976
|
+
}
|
|
977
|
+
/**
|
|
978
|
+
* Performs the support pes operation for the profile capability.
|
|
979
|
+
* Calls `GET /api/v1/profile/supports/pes` through the shared IDP-aware Faiber client.
|
|
980
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
981
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
982
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
|
|
983
|
+
*/
|
|
328
984
|
profileSupportPesGet(options) {
|
|
329
985
|
return this.client.request({ ...options, method: "GET", url: `/api/v1/profile/supports/pes` });
|
|
330
986
|
}
|
|
331
|
-
/**
|
|
987
|
+
/**
|
|
988
|
+
* Performs the support pes schema operation for the profile capability.
|
|
989
|
+
* Calls `GET /api/v1/profile/supports/pes/schema` through the shared IDP-aware Faiber client.
|
|
990
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
991
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
992
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
|
|
993
|
+
*/
|
|
332
994
|
profileSupportPesSchemaGet(options) {
|
|
333
995
|
return this.client.request({ ...options, method: "GET", url: `/api/v1/profile/supports/pes/schema` });
|
|
334
996
|
}
|
|
335
|
-
/**
|
|
336
|
-
|
|
337
|
-
|
|
338
|
-
|
|
339
|
-
|
|
997
|
+
/**
|
|
998
|
+
* Performs the teacher index operation for the profile capability.
|
|
999
|
+
* Calls `GET /api/v1/profile/teacher` through the shared IDP-aware Faiber client.
|
|
1000
|
+
* @param params Typed query parameters; omitted members retain backend defaults.
|
|
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: session-derived or public bootstrap route.
|
|
1004
|
+
*/
|
|
1005
|
+
profileTeacherIndexGet(params, options) {
|
|
1006
|
+
return this.client.request({ ...options, method: "GET", url: `/api/v1/profile/teacher`, params });
|
|
1007
|
+
}
|
|
1008
|
+
/**
|
|
1009
|
+
* Performs the restore operation for the profile capability.
|
|
1010
|
+
* Calls `GET /api/v1/profile/undo/{uuid}` through the shared IDP-aware Faiber client.
|
|
1011
|
+
* @param uuid Backend path identifier `uuid`.
|
|
1012
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
1013
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
1014
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: profile:restore.
|
|
1015
|
+
*/
|
|
340
1016
|
profileRestoreGet(uuid, options) {
|
|
341
1017
|
return this.client.request({ ...options, method: "GET", url: `/api/v1/profile/undo/${encodeURIComponent(uuid)}` });
|
|
342
1018
|
}
|
|
343
|
-
/**
|
|
1019
|
+
/**
|
|
1020
|
+
* Performs the add meta operation for the profile capability.
|
|
1021
|
+
* Calls `PATCH /api/v1/profile/update/{uuid}/meta` through the shared IDP-aware Faiber client.
|
|
1022
|
+
* @param uuid Backend path identifier `uuid`.
|
|
1023
|
+
* @param data Typed JSON request body.
|
|
1024
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
1025
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
1026
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: profile:update.
|
|
1027
|
+
*/
|
|
344
1028
|
profileAddMetaPatch(uuid, data, options) {
|
|
345
1029
|
return this.client.request({ ...options, method: "PATCH", url: `/api/v1/profile/update/${encodeURIComponent(uuid)}/meta`, data: data });
|
|
346
1030
|
}
|
|
347
|
-
/**
|
|
1031
|
+
/**
|
|
1032
|
+
* Performs the add meta operation for the profile capability.
|
|
1033
|
+
* Calls `PUT /api/v1/profile/update/{uuid}/meta` through the shared IDP-aware Faiber client.
|
|
1034
|
+
* @param uuid Backend path identifier `uuid`.
|
|
1035
|
+
* @param data Typed JSON request body.
|
|
1036
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
1037
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
1038
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: profile:update.
|
|
1039
|
+
*/
|
|
348
1040
|
profileAddMetaPut(uuid, data, options) {
|
|
349
1041
|
return this.client.request({ ...options, method: "PUT", url: `/api/v1/profile/update/${encodeURIComponent(uuid)}/meta`, data: data });
|
|
350
1042
|
}
|
|
351
|
-
/**
|
|
1043
|
+
/**
|
|
1044
|
+
* Performs the update personal operation for the profile capability.
|
|
1045
|
+
* Calls `PATCH /api/v1/profile/update/personal-information/{uuid}` through the shared IDP-aware Faiber client.
|
|
1046
|
+
* @param uuid Backend path identifier `uuid`.
|
|
1047
|
+
* @param data Typed JSON request body.
|
|
1048
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
1049
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
1050
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: profile:update.
|
|
1051
|
+
*/
|
|
352
1052
|
profileUpdatePersonalPatch(uuid, data, options) {
|
|
353
1053
|
return this.client.request({ ...options, method: "PATCH", url: `/api/v1/profile/update/personal-information/${encodeURIComponent(uuid)}`, data: data });
|
|
354
1054
|
}
|
|
355
|
-
/**
|
|
1055
|
+
/**
|
|
1056
|
+
* Performs the update personal operation for the profile capability.
|
|
1057
|
+
* Calls `PUT /api/v1/profile/update/personal-information/{uuid}` through the shared IDP-aware Faiber client.
|
|
1058
|
+
* @param uuid Backend path identifier `uuid`.
|
|
1059
|
+
* @param data Typed JSON request body.
|
|
1060
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
1061
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
1062
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: profile:update.
|
|
1063
|
+
*/
|
|
356
1064
|
profileUpdatePersonalPut(uuid, data, options) {
|
|
357
1065
|
return this.client.request({ ...options, method: "PUT", url: `/api/v1/profile/update/personal-information/${encodeURIComponent(uuid)}`, data: data });
|
|
358
1066
|
}
|
|
359
|
-
/**
|
|
1067
|
+
/**
|
|
1068
|
+
* Performs the index operation for the province capability.
|
|
1069
|
+
* Calls `GET /api/v1/province` through the shared IDP-aware Faiber client.
|
|
1070
|
+
* @param params Typed query parameters; omitted members retain backend defaults.
|
|
1071
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
1072
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
1073
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: province:read.
|
|
1074
|
+
*/
|
|
360
1075
|
provinceIndexGet(params, options) {
|
|
361
1076
|
return this.client.request({ ...options, method: "GET", url: `/api/v1/province`, params });
|
|
362
1077
|
}
|
|
363
|
-
/**
|
|
1078
|
+
/**
|
|
1079
|
+
* Performs the store operation for the province capability.
|
|
1080
|
+
* Calls `POST /api/v1/province` through the shared IDP-aware Faiber client.
|
|
1081
|
+
* @param data Typed JSON request body.
|
|
1082
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
1083
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
1084
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: province:create.
|
|
1085
|
+
*/
|
|
364
1086
|
provinceStorePost(data, options) {
|
|
365
1087
|
return this.client.request({ ...options, method: "POST", url: `/api/v1/province`, data: data });
|
|
366
1088
|
}
|
|
367
|
-
/**
|
|
1089
|
+
/**
|
|
1090
|
+
* Performs the destroy operation for the province capability.
|
|
1091
|
+
* Calls `DELETE /api/v1/province/{id}` through the shared IDP-aware Faiber client.
|
|
1092
|
+
* @param id Backend path identifier `id`.
|
|
1093
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
1094
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
1095
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: province:delete.
|
|
1096
|
+
*/
|
|
368
1097
|
provinceDestroyDelete(id, options) {
|
|
369
1098
|
return this.client.request({ ...options, method: "DELETE", url: `/api/v1/province/${encodeURIComponent(id)}` });
|
|
370
1099
|
}
|
|
371
|
-
/**
|
|
1100
|
+
/**
|
|
1101
|
+
* Performs the show operation for the province capability.
|
|
1102
|
+
* Calls `GET /api/v1/province/{id}` through the shared IDP-aware Faiber client.
|
|
1103
|
+
* @param id Backend path identifier `id`.
|
|
1104
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
1105
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
1106
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: province:read.
|
|
1107
|
+
*/
|
|
372
1108
|
provinceShowGet(id, options) {
|
|
373
1109
|
return this.client.request({ ...options, method: "GET", url: `/api/v1/province/${encodeURIComponent(id)}` });
|
|
374
1110
|
}
|
|
375
|
-
/**
|
|
1111
|
+
/**
|
|
1112
|
+
* Performs the update operation for the province capability.
|
|
1113
|
+
* Calls `PATCH /api/v1/province/{id}` through the shared IDP-aware Faiber client.
|
|
1114
|
+
* @param id Backend path identifier `id`.
|
|
1115
|
+
* @param data Typed JSON request body.
|
|
1116
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
1117
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
1118
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: province:update.
|
|
1119
|
+
*/
|
|
376
1120
|
provinceUpdatePatch(id, data, options) {
|
|
377
1121
|
return this.client.request({ ...options, method: "PATCH", url: `/api/v1/province/${encodeURIComponent(id)}`, data: data });
|
|
378
1122
|
}
|
|
379
|
-
/**
|
|
1123
|
+
/**
|
|
1124
|
+
* Performs the update operation for the province capability.
|
|
1125
|
+
* Calls `PUT /api/v1/province/{id}` through the shared IDP-aware Faiber client.
|
|
1126
|
+
* @param id Backend path identifier `id`.
|
|
1127
|
+
* @param data Typed JSON request body.
|
|
1128
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
1129
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
1130
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: province:update.
|
|
1131
|
+
*/
|
|
380
1132
|
provinceUpdatePut(id, data, options) {
|
|
381
1133
|
return this.client.request({ ...options, method: "PUT", url: `/api/v1/province/${encodeURIComponent(id)}`, data: data });
|
|
382
1134
|
}
|
|
383
|
-
/**
|
|
1135
|
+
/**
|
|
1136
|
+
* Performs the force destroy operation for the province capability.
|
|
1137
|
+
* Calls `DELETE /api/v1/province/force/{id}` through the shared IDP-aware Faiber client.
|
|
1138
|
+
* @param id Backend path identifier `id`.
|
|
1139
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
1140
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
1141
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: province:delete.
|
|
1142
|
+
*/
|
|
384
1143
|
provinceForceDestroyDelete(id, options) {
|
|
385
1144
|
return this.client.request({ ...options, method: "DELETE", url: `/api/v1/province/force/${encodeURIComponent(id)}` });
|
|
386
1145
|
}
|
|
387
|
-
/**
|
|
1146
|
+
/**
|
|
1147
|
+
* Performs the restore operation for the province capability.
|
|
1148
|
+
* Calls `GET /api/v1/province/undo/{id}` through the shared IDP-aware Faiber client.
|
|
1149
|
+
* @param id Backend path identifier `id`.
|
|
1150
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
1151
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
1152
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: province:delete.
|
|
1153
|
+
*/
|
|
388
1154
|
provinceRestoreGet(id, options) {
|
|
389
1155
|
return this.client.request({ ...options, method: "GET", url: `/api/v1/province/undo/${encodeURIComponent(id)}` });
|
|
390
1156
|
}
|
|
391
|
-
/**
|
|
1157
|
+
/**
|
|
1158
|
+
* Performs the index operation for the setting capability.
|
|
1159
|
+
* Calls `GET /api/v1/setting` through the shared IDP-aware Faiber client.
|
|
1160
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
1161
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
1162
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: setting:read.
|
|
1163
|
+
*/
|
|
392
1164
|
settingIndexGet(options) {
|
|
393
1165
|
return this.client.request({ ...options, method: "GET", url: `/api/v1/setting` });
|
|
394
1166
|
}
|
|
395
|
-
/**
|
|
1167
|
+
/**
|
|
1168
|
+
* Performs the store operation for the setting capability.
|
|
1169
|
+
* Calls `POST /api/v1/setting` through the shared IDP-aware Faiber client.
|
|
1170
|
+
* @param data Typed JSON request body.
|
|
1171
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
1172
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
1173
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: setting:create.
|
|
1174
|
+
*/
|
|
396
1175
|
settingStorePost(data, options) {
|
|
397
1176
|
return this.client.request({ ...options, method: "POST", url: `/api/v1/setting`, data: data });
|
|
398
1177
|
}
|
|
399
|
-
/**
|
|
1178
|
+
/**
|
|
1179
|
+
* Performs the index operation for the survey capability.
|
|
1180
|
+
* Calls `GET /api/v1/survey` through the shared IDP-aware Faiber client.
|
|
1181
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
1182
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
1183
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: survey:read.
|
|
1184
|
+
*/
|
|
400
1185
|
surveyIndexGet(options) {
|
|
401
1186
|
return this.client.request({ ...options, method: "GET", url: `/api/v1/survey` });
|
|
402
1187
|
}
|
|
403
|
-
/**
|
|
1188
|
+
/**
|
|
1189
|
+
* Performs the store operation for the survey capability.
|
|
1190
|
+
* Calls `POST /api/v1/survey` through the shared IDP-aware Faiber client.
|
|
1191
|
+
* @param data Typed JSON request body.
|
|
1192
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
1193
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
1194
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: survey:create.
|
|
1195
|
+
*/
|
|
404
1196
|
surveyStorePost(data, options) {
|
|
405
1197
|
return this.client.request({ ...options, method: "POST", url: `/api/v1/survey`, data: data });
|
|
406
1198
|
}
|
|
407
|
-
/**
|
|
1199
|
+
/**
|
|
1200
|
+
* Performs the index operation for the trusted service capability.
|
|
1201
|
+
* Calls `GET /api/v1/trusted-service` through the shared IDP-aware Faiber client.
|
|
1202
|
+
* @param params Typed query parameters; omitted members retain backend defaults.
|
|
1203
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
1204
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
1205
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: trusted_service:read.
|
|
1206
|
+
*/
|
|
408
1207
|
trustedServiceIndexGet(params, options) {
|
|
409
1208
|
return this.client.request({ ...options, method: "GET", url: `/api/v1/trusted-service`, params });
|
|
410
1209
|
}
|
|
411
|
-
/**
|
|
1210
|
+
/**
|
|
1211
|
+
* Performs the store operation for the trusted service capability.
|
|
1212
|
+
* Calls `POST /api/v1/trusted-service` through the shared IDP-aware Faiber client.
|
|
1213
|
+
* @param data Typed JSON request body.
|
|
1214
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
1215
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
1216
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: trusted_service:create.
|
|
1217
|
+
*/
|
|
412
1218
|
trustedServiceStorePost(data, options) {
|
|
413
1219
|
return this.client.request({ ...options, method: "POST", url: `/api/v1/trusted-service`, data: data });
|
|
414
1220
|
}
|
|
415
|
-
/**
|
|
1221
|
+
/**
|
|
1222
|
+
* Performs the destroy operation for the trusted service capability.
|
|
1223
|
+
* Calls `DELETE /api/v1/trusted-service/{id}` through the shared IDP-aware Faiber client.
|
|
1224
|
+
* @param id Backend path identifier `id`.
|
|
1225
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
1226
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
1227
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: trusted_service:delete.
|
|
1228
|
+
*/
|
|
416
1229
|
trustedServiceDestroyDelete(id, options) {
|
|
417
1230
|
return this.client.request({ ...options, method: "DELETE", url: `/api/v1/trusted-service/${encodeURIComponent(id)}` });
|
|
418
1231
|
}
|
|
419
|
-
/**
|
|
1232
|
+
/**
|
|
1233
|
+
* Performs the show operation for the trusted service capability.
|
|
1234
|
+
* Calls `GET /api/v1/trusted-service/{id}` through the shared IDP-aware Faiber client.
|
|
1235
|
+
* @param id Backend path identifier `id`.
|
|
1236
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
1237
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
1238
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: trusted_service:read.
|
|
1239
|
+
*/
|
|
420
1240
|
trustedServiceShowGet(id, options) {
|
|
421
1241
|
return this.client.request({ ...options, method: "GET", url: `/api/v1/trusted-service/${encodeURIComponent(id)}` });
|
|
422
1242
|
}
|
|
423
|
-
/**
|
|
1243
|
+
/**
|
|
1244
|
+
* Performs the update operation for the trusted service capability.
|
|
1245
|
+
* Calls `PATCH /api/v1/trusted-service/{id}` through the shared IDP-aware Faiber client.
|
|
1246
|
+
* @param id Backend path identifier `id`.
|
|
1247
|
+
* @param data Typed JSON request body.
|
|
1248
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
1249
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
1250
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: trusted_service:update.
|
|
1251
|
+
*/
|
|
424
1252
|
trustedServiceUpdatePatch(id, data, options) {
|
|
425
1253
|
return this.client.request({ ...options, method: "PATCH", url: `/api/v1/trusted-service/${encodeURIComponent(id)}`, data: data });
|
|
426
1254
|
}
|
|
427
|
-
/**
|
|
1255
|
+
/**
|
|
1256
|
+
* Performs the update operation for the trusted service capability.
|
|
1257
|
+
* Calls `PUT /api/v1/trusted-service/{id}` through the shared IDP-aware Faiber client.
|
|
1258
|
+
* @param id Backend path identifier `id`.
|
|
1259
|
+
* @param data Typed JSON request body.
|
|
1260
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
1261
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
1262
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: trusted_service:update.
|
|
1263
|
+
*/
|
|
428
1264
|
trustedServiceUpdatePut(id, data, options) {
|
|
429
1265
|
return this.client.request({ ...options, method: "PUT", url: `/api/v1/trusted-service/${encodeURIComponent(id)}`, data: data });
|
|
430
1266
|
}
|
|
431
|
-
/**
|
|
1267
|
+
/**
|
|
1268
|
+
* Performs the event index operation for the trusted service capability.
|
|
1269
|
+
* Calls `GET /api/v1/trusted-service/{id}/event` through the shared IDP-aware Faiber client.
|
|
1270
|
+
* @param id Backend path identifier `id`.
|
|
1271
|
+
* @param params Typed query parameters; omitted members retain backend defaults.
|
|
1272
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
1273
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
1274
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: trusted_service:read.
|
|
1275
|
+
*/
|
|
432
1276
|
trustedServiceEventIndexGet(id, params, options) {
|
|
433
1277
|
return this.client.request({ ...options, method: "GET", url: `/api/v1/trusted-service/${encodeURIComponent(id)}/event`, params });
|
|
434
1278
|
}
|
|
435
|
-
/**
|
|
1279
|
+
/**
|
|
1280
|
+
* Performs the event store operation for the trusted service capability.
|
|
1281
|
+
* Calls `POST /api/v1/trusted-service/{id}/event` through the shared IDP-aware Faiber client.
|
|
1282
|
+
* @param id Backend path identifier `id`.
|
|
1283
|
+
* @param data Typed JSON request body.
|
|
1284
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
1285
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
1286
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: trusted_service:create.
|
|
1287
|
+
*/
|
|
436
1288
|
trustedServiceEventStorePost(id, data, options) {
|
|
437
1289
|
return this.client.request({ ...options, method: "POST", url: `/api/v1/trusted-service/${encodeURIComponent(id)}/event`, data: data });
|
|
438
1290
|
}
|
|
439
|
-
/**
|
|
1291
|
+
/**
|
|
1292
|
+
* Performs the event destroy operation for the trusted service capability.
|
|
1293
|
+
* Calls `DELETE /api/v1/trusted-service/{id}/event/{event_id}` through the shared IDP-aware Faiber client.
|
|
1294
|
+
* @param id Backend path identifier `id`.
|
|
1295
|
+
* @param eventId Backend path identifier `event_id`.
|
|
1296
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
1297
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
1298
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: trusted_service:delete.
|
|
1299
|
+
*/
|
|
440
1300
|
trustedServiceEventDestroyDelete(id, eventId, options) {
|
|
441
1301
|
return this.client.request({ ...options, method: "DELETE", url: `/api/v1/trusted-service/${encodeURIComponent(id)}/event/${encodeURIComponent(eventId)}` });
|
|
442
1302
|
}
|
|
443
|
-
/**
|
|
1303
|
+
/**
|
|
1304
|
+
* Performs the event show operation for the trusted service capability.
|
|
1305
|
+
* Calls `GET /api/v1/trusted-service/{id}/event/{event_id}` through the shared IDP-aware Faiber client.
|
|
1306
|
+
* @param id Backend path identifier `id`.
|
|
1307
|
+
* @param eventId Backend path identifier `event_id`.
|
|
1308
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
1309
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
1310
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: trusted_service:read.
|
|
1311
|
+
*/
|
|
444
1312
|
trustedServiceEventShowGet(id, eventId, options) {
|
|
445
1313
|
return this.client.request({ ...options, method: "GET", url: `/api/v1/trusted-service/${encodeURIComponent(id)}/event/${encodeURIComponent(eventId)}` });
|
|
446
1314
|
}
|
|
447
|
-
/**
|
|
1315
|
+
/**
|
|
1316
|
+
* Performs the event update operation for the trusted service capability.
|
|
1317
|
+
* Calls `PATCH /api/v1/trusted-service/{id}/event/{event_id}` through the shared IDP-aware Faiber client.
|
|
1318
|
+
* @param id Backend path identifier `id`.
|
|
1319
|
+
* @param eventId Backend path identifier `event_id`.
|
|
1320
|
+
* @param data Typed JSON request body.
|
|
1321
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
1322
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
1323
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: trusted_service:update.
|
|
1324
|
+
*/
|
|
448
1325
|
trustedServiceEventUpdatePatch(id, eventId, data, options) {
|
|
449
1326
|
return this.client.request({ ...options, method: "PATCH", url: `/api/v1/trusted-service/${encodeURIComponent(id)}/event/${encodeURIComponent(eventId)}`, data: data });
|
|
450
1327
|
}
|
|
451
|
-
/**
|
|
1328
|
+
/**
|
|
1329
|
+
* Performs the event update operation for the trusted service capability.
|
|
1330
|
+
* Calls `PUT /api/v1/trusted-service/{id}/event/{event_id}` through the shared IDP-aware Faiber client.
|
|
1331
|
+
* @param id Backend path identifier `id`.
|
|
1332
|
+
* @param eventId Backend path identifier `event_id`.
|
|
1333
|
+
* @param data Typed JSON request body.
|
|
1334
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
1335
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
1336
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: trusted_service:update.
|
|
1337
|
+
*/
|
|
452
1338
|
trustedServiceEventUpdatePut(id, eventId, data, options) {
|
|
453
1339
|
return this.client.request({ ...options, method: "PUT", url: `/api/v1/trusted-service/${encodeURIComponent(id)}/event/${encodeURIComponent(eventId)}`, data: data });
|
|
454
1340
|
}
|
|
455
|
-
/**
|
|
1341
|
+
/**
|
|
1342
|
+
* Performs the health operation for the router capability.
|
|
1343
|
+
* Calls `GET /health` through the shared IDP-aware Faiber client.
|
|
1344
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
1345
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
1346
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
|
|
1347
|
+
*/
|
|
456
1348
|
routerHealthGetHealth(options) {
|
|
457
1349
|
return this.client.request({ ...options, method: "GET", url: `/health` });
|
|
458
1350
|
}
|
|
459
|
-
/**
|
|
1351
|
+
/**
|
|
1352
|
+
* Performs the health operation for the router capability.
|
|
1353
|
+
* Calls `GET /up` through the shared IDP-aware Faiber client.
|
|
1354
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
1355
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
1356
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
|
|
1357
|
+
*/
|
|
460
1358
|
routerHealthGetUp(options) {
|
|
461
1359
|
return this.client.request({ ...options, method: "GET", url: `/up` });
|
|
462
1360
|
}
|