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