@faiber/faiber-profile 0.2.1 → 0.2.2
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 +45 -13
- package/dist/.tsbuildinfo +1 -1
- package/dist/index.d.ts +10 -4
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +19 -13
- package/dist/index.js.map +1 -1
- package/dist/operations.d.ts +235 -0
- package/dist/operations.d.ts.map +1 -0
- package/dist/operations.js +464 -0
- package/dist/operations.js.map +1 -0
- package/dist/operations.types.d.ts +998 -0
- package/dist/operations.types.d.ts.map +1 -0
- package/dist/operations.types.js +2 -0
- package/dist/operations.types.js.map +1 -0
- package/dist/types.d.ts +107 -18
- package/dist/types.d.ts.map +1 -1
- package/package.json +20 -1
|
@@ -0,0 +1,464 @@
|
|
|
1
|
+
import { ServiceApi, urlEncoded } from "@faiber/sdk-core";
|
|
2
|
+
export class ProfileOperations extends ServiceApi {
|
|
3
|
+
/** GET /api/openapi.json; permission: public/session-derived. */
|
|
4
|
+
routerOpenapiJsonGet(options) {
|
|
5
|
+
return this.client.request({ ...options, method: "GET", url: `/api/openapi.json` });
|
|
6
|
+
}
|
|
7
|
+
/** POST /api/v1/address/get; permission: public/session-derived. */
|
|
8
|
+
optionAddressGetPost(data, options) {
|
|
9
|
+
return this.client.request({ ...options, method: "POST", url: `/api/v1/address/get`, data: data });
|
|
10
|
+
}
|
|
11
|
+
/** GET /api/v1/auth/self; permission: public/session-derived. */
|
|
12
|
+
sessionGetSelfGet(options) {
|
|
13
|
+
return this.client.request({ ...options, method: "GET", url: `/api/v1/auth/self` });
|
|
14
|
+
}
|
|
15
|
+
/** GET /api/v1/city; permission: city:read. */
|
|
16
|
+
cityIndexGet(params, options) {
|
|
17
|
+
return this.client.request({ ...options, method: "GET", url: `/api/v1/city`, params });
|
|
18
|
+
}
|
|
19
|
+
/** POST /api/v1/city; permission: city:create. */
|
|
20
|
+
cityStorePost(data, options) {
|
|
21
|
+
return this.client.request({ ...options, method: "POST", url: `/api/v1/city`, data: data });
|
|
22
|
+
}
|
|
23
|
+
/** DELETE /api/v1/city/{id}; permission: city:delete. */
|
|
24
|
+
cityDestroyDelete(id, options) {
|
|
25
|
+
return this.client.request({ ...options, method: "DELETE", url: `/api/v1/city/${encodeURIComponent(id)}` });
|
|
26
|
+
}
|
|
27
|
+
/** GET /api/v1/city/{id}; permission: city:read. */
|
|
28
|
+
cityShowGet(id, options) {
|
|
29
|
+
return this.client.request({ ...options, method: "GET", url: `/api/v1/city/${encodeURIComponent(id)}` });
|
|
30
|
+
}
|
|
31
|
+
/** PATCH /api/v1/city/{id}; permission: city:update. */
|
|
32
|
+
cityUpdatePatch(id, data, options) {
|
|
33
|
+
return this.client.request({ ...options, method: "PATCH", url: `/api/v1/city/${encodeURIComponent(id)}`, data: data });
|
|
34
|
+
}
|
|
35
|
+
/** PUT /api/v1/city/{id}; permission: city:update. */
|
|
36
|
+
cityUpdatePut(id, data, options) {
|
|
37
|
+
return this.client.request({ ...options, method: "PUT", url: `/api/v1/city/${encodeURIComponent(id)}`, data: data });
|
|
38
|
+
}
|
|
39
|
+
/** DELETE /api/v1/city/force/{id}; permission: city:delete. */
|
|
40
|
+
cityForceDestroyDelete(id, options) {
|
|
41
|
+
return this.client.request({ ...options, method: "DELETE", url: `/api/v1/city/force/${encodeURIComponent(id)}` });
|
|
42
|
+
}
|
|
43
|
+
/** GET /api/v1/city/undo/{id}; permission: city:delete. */
|
|
44
|
+
cityRestoreGet(id, options) {
|
|
45
|
+
return this.client.request({ ...options, method: "GET", url: `/api/v1/city/undo/${encodeURIComponent(id)}` });
|
|
46
|
+
}
|
|
47
|
+
/** GET /api/v1/country; permission: country:read. */
|
|
48
|
+
countryIndexGet(params, options) {
|
|
49
|
+
return this.client.request({ ...options, method: "GET", url: `/api/v1/country`, params });
|
|
50
|
+
}
|
|
51
|
+
/** POST /api/v1/country; permission: country:create. */
|
|
52
|
+
countryStorePost(data, options) {
|
|
53
|
+
return this.client.request({ ...options, method: "POST", url: `/api/v1/country`, data: data });
|
|
54
|
+
}
|
|
55
|
+
/** DELETE /api/v1/country/{id}; permission: country:delete. */
|
|
56
|
+
countryDestroyDelete(id, options) {
|
|
57
|
+
return this.client.request({ ...options, method: "DELETE", url: `/api/v1/country/${encodeURIComponent(id)}` });
|
|
58
|
+
}
|
|
59
|
+
/** GET /api/v1/country/{id}; permission: country:read. */
|
|
60
|
+
countryShowGet(id, options) {
|
|
61
|
+
return this.client.request({ ...options, method: "GET", url: `/api/v1/country/${encodeURIComponent(id)}` });
|
|
62
|
+
}
|
|
63
|
+
/** PATCH /api/v1/country/{id}; permission: country:update. */
|
|
64
|
+
countryUpdatePatch(id, data, options) {
|
|
65
|
+
return this.client.request({ ...options, method: "PATCH", url: `/api/v1/country/${encodeURIComponent(id)}`, data: data });
|
|
66
|
+
}
|
|
67
|
+
/** PUT /api/v1/country/{id}; permission: country:update. */
|
|
68
|
+
countryUpdatePut(id, data, options) {
|
|
69
|
+
return this.client.request({ ...options, method: "PUT", url: `/api/v1/country/${encodeURIComponent(id)}`, data: data });
|
|
70
|
+
}
|
|
71
|
+
/** DELETE /api/v1/country/force/{id}; permission: country:delete. */
|
|
72
|
+
countryForceDestroyDelete(id, options) {
|
|
73
|
+
return this.client.request({ ...options, method: "DELETE", url: `/api/v1/country/force/${encodeURIComponent(id)}` });
|
|
74
|
+
}
|
|
75
|
+
/** GET /api/v1/country/undo/{id}; permission: country:delete. */
|
|
76
|
+
countryRestoreGet(id, options) {
|
|
77
|
+
return this.client.request({ ...options, method: "GET", url: `/api/v1/country/undo/${encodeURIComponent(id)}` });
|
|
78
|
+
}
|
|
79
|
+
/** GET /api/v1/dependency; permission: dependency:read. */
|
|
80
|
+
optionDependencyGet(options) {
|
|
81
|
+
return this.client.request({ ...options, method: "GET", url: `/api/v1/dependency` });
|
|
82
|
+
}
|
|
83
|
+
/** GET /api/v1/identity; permission: public/session-derived. */
|
|
84
|
+
optionIdentityGet(options) {
|
|
85
|
+
return this.client.request({ ...options, method: "GET", url: `/api/v1/identity` });
|
|
86
|
+
}
|
|
87
|
+
/** GET /api/v1/integration/docs; permission: admin:integration:read. */
|
|
88
|
+
integrationIntegrationDocsShowGet(options) {
|
|
89
|
+
return this.client.request({ ...options, method: "GET", url: `/api/v1/integration/docs` });
|
|
90
|
+
}
|
|
91
|
+
/** GET /api/v1/integration/flow; permission: public/session-derived. */
|
|
92
|
+
integrationFlowIntegrationShowGet(options) {
|
|
93
|
+
return this.client.request({ ...options, method: "GET", url: `/api/v1/integration/flow` });
|
|
94
|
+
}
|
|
95
|
+
/** POST /api/v1/log-action; permission: log_action:create. */
|
|
96
|
+
logActionStorePost(data, options) {
|
|
97
|
+
return this.client.request({ ...options, method: "POST", url: `/api/v1/log-action`, data: data });
|
|
98
|
+
}
|
|
99
|
+
/** POST /api/v1/log-action/{slug}; permission: log_action:create. */
|
|
100
|
+
logActionStoreSlugPost(slug, data, options) {
|
|
101
|
+
return this.client.request({ ...options, method: "POST", url: `/api/v1/log-action/${encodeURIComponent(slug)}`, data: data });
|
|
102
|
+
}
|
|
103
|
+
/** POST /api/v1/log-action/direct/{slug}; permission: public/session-derived. */
|
|
104
|
+
logActionStoreDirectPost(slug, data, options) {
|
|
105
|
+
return this.client.request({ ...options, method: "POST", url: `/api/v1/log-action/direct/${encodeURIComponent(slug)}`, data: data });
|
|
106
|
+
}
|
|
107
|
+
/** GET /api/v1/logger; permission: public/session-derived. */
|
|
108
|
+
loggerIndexGet(options) {
|
|
109
|
+
return this.client.request({ ...options, method: "GET", url: `/api/v1/logger` });
|
|
110
|
+
}
|
|
111
|
+
/** GET /api/v1/logger/{log}; permission: public/session-derived. */
|
|
112
|
+
loggerShowGet(log, options) {
|
|
113
|
+
return this.client.request({ ...options, method: "GET", url: `/api/v1/logger/${encodeURIComponent(log)}` });
|
|
114
|
+
}
|
|
115
|
+
/** POST /api/v1/parent/get; permission: public/session-derived. */
|
|
116
|
+
optionParentGetPost(data, options) {
|
|
117
|
+
return this.client.request({ ...options, method: "POST", url: `/api/v1/parent/get`, data: data });
|
|
118
|
+
}
|
|
119
|
+
/** GET /api/v1/profile; permission: /api/v1/profile, profile:read. */
|
|
120
|
+
profileIndexGet(params, options) {
|
|
121
|
+
return this.client.request({ ...options, method: "GET", url: `/api/v1/profile`, params });
|
|
122
|
+
}
|
|
123
|
+
/** GET /api/v1/profile-property-definition; permission: profile_property_definition:read. */
|
|
124
|
+
profilePropertyIndexGet(params, options) {
|
|
125
|
+
return this.client.request({ ...options, method: "GET", url: `/api/v1/profile-property-definition`, params });
|
|
126
|
+
}
|
|
127
|
+
/** POST /api/v1/profile-property-definition; permission: profile_property_definition:create. */
|
|
128
|
+
profilePropertyStorePost(data, options) {
|
|
129
|
+
return this.client.request({ ...options, method: "POST", url: `/api/v1/profile-property-definition`, data: data });
|
|
130
|
+
}
|
|
131
|
+
/** DELETE /api/v1/profile-property-definition/{id}; permission: profile_property_definition:delete. */
|
|
132
|
+
profilePropertyDestroyDelete(id, options) {
|
|
133
|
+
return this.client.request({ ...options, method: "DELETE", url: `/api/v1/profile-property-definition/${encodeURIComponent(id)}` });
|
|
134
|
+
}
|
|
135
|
+
/** GET /api/v1/profile-property-definition/{id}; permission: profile_property_definition:read. */
|
|
136
|
+
profilePropertyShowGet(id, options) {
|
|
137
|
+
return this.client.request({ ...options, method: "GET", url: `/api/v1/profile-property-definition/${encodeURIComponent(id)}` });
|
|
138
|
+
}
|
|
139
|
+
/** PATCH /api/v1/profile-property-definition/{id}; permission: profile_property_definition:update. */
|
|
140
|
+
profilePropertyUpdatePatch(id, data, options) {
|
|
141
|
+
return this.client.request({ ...options, method: "PATCH", url: `/api/v1/profile-property-definition/${encodeURIComponent(id)}`, data: data });
|
|
142
|
+
}
|
|
143
|
+
/** PUT /api/v1/profile-property-definition/{id}; permission: profile_property_definition:update. */
|
|
144
|
+
profilePropertyUpdatePut(id, data, options) {
|
|
145
|
+
return this.client.request({ ...options, method: "PUT", url: `/api/v1/profile-property-definition/${encodeURIComponent(id)}`, data: data });
|
|
146
|
+
}
|
|
147
|
+
/** DELETE /api/v1/profile-property-definition/force/{id}; permission: profile_property_definition:force_delete. */
|
|
148
|
+
profilePropertyForceDestroyDelete(id, options) {
|
|
149
|
+
return this.client.request({ ...options, method: "DELETE", url: `/api/v1/profile-property-definition/force/${encodeURIComponent(id)}` });
|
|
150
|
+
}
|
|
151
|
+
/** GET /api/v1/profile-property-definition/undo/{id}; permission: profile_property_definition:restore. */
|
|
152
|
+
profilePropertyRestoreGet(id, options) {
|
|
153
|
+
return this.client.request({ ...options, method: "GET", url: `/api/v1/profile-property-definition/undo/${encodeURIComponent(id)}` });
|
|
154
|
+
}
|
|
155
|
+
/** DELETE /api/v1/profile/{student_uuid}/delete/parent/{parent_uuid}; permission: profile:update. */
|
|
156
|
+
profileDeleteParentDelete(studentUuid, parentUuid, options) {
|
|
157
|
+
return this.client.request({ ...options, method: "DELETE", url: `/api/v1/profile/${encodeURIComponent(studentUuid)}/delete/parent/${encodeURIComponent(parentUuid)}` });
|
|
158
|
+
}
|
|
159
|
+
/** DELETE /api/v1/profile/{uuid}; permission: profile:delete. */
|
|
160
|
+
profileDestroyDelete(uuid, options) {
|
|
161
|
+
return this.client.request({ ...options, method: "DELETE", url: `/api/v1/profile/${encodeURIComponent(uuid)}` });
|
|
162
|
+
}
|
|
163
|
+
/** GET /api/v1/profile/{uuid}; permission: profile:read. */
|
|
164
|
+
profileShowGet(uuid, options) {
|
|
165
|
+
return this.client.request({ ...options, method: "GET", url: `/api/v1/profile/${encodeURIComponent(uuid)}` });
|
|
166
|
+
}
|
|
167
|
+
/** PATCH /api/v1/profile/{uuid}; permission: profile:update. */
|
|
168
|
+
profileUpdatePatch(uuid, data, options) {
|
|
169
|
+
return this.client.request({ ...options, method: "PATCH", url: `/api/v1/profile/${encodeURIComponent(uuid)}`, data: data });
|
|
170
|
+
}
|
|
171
|
+
/** GET /api/v1/profile/{uuid}/admin; permission: profile:read_admin. */
|
|
172
|
+
profileShowAdminGet(uuid, options) {
|
|
173
|
+
return this.client.request({ ...options, method: "GET", url: `/api/v1/profile/${encodeURIComponent(uuid)}/admin` });
|
|
174
|
+
}
|
|
175
|
+
/** DELETE /api/v1/profile/{uuid}/avatar; permission: public/session-derived. */
|
|
176
|
+
profileAvatarDeleteDelete(uuid, options) {
|
|
177
|
+
return this.client.request({ ...options, method: "DELETE", url: `/api/v1/profile/${encodeURIComponent(uuid)}/avatar` });
|
|
178
|
+
}
|
|
179
|
+
/** POST /api/v1/profile/{uuid}/avatar; permission: public/session-derived. */
|
|
180
|
+
profileAvatarStorePost(uuid, data, options) {
|
|
181
|
+
return this.client.request({ ...options, method: "POST", url: `/api/v1/profile/${encodeURIComponent(uuid)}/avatar`, data: data });
|
|
182
|
+
}
|
|
183
|
+
/** DELETE /api/v1/profile/{uuid}/delete/address/{title}; permission: profile:update. */
|
|
184
|
+
profileDeleteAddressDelete(uuid, title, options) {
|
|
185
|
+
return this.client.request({ ...options, method: "DELETE", url: `/api/v1/profile/${encodeURIComponent(uuid)}/delete/address/${encodeURIComponent(title)}` });
|
|
186
|
+
}
|
|
187
|
+
/** PATCH /api/v1/profile/{uuid}/employee-type; permission: profile:update_employee_type. */
|
|
188
|
+
profileUpdateEmployeeTypePatch(uuid, data, options) {
|
|
189
|
+
return this.client.request({ ...options, method: "PATCH", url: `/api/v1/profile/${encodeURIComponent(uuid)}/employee-type`, data: data });
|
|
190
|
+
}
|
|
191
|
+
/** PUT /api/v1/profile/{uuid}/employee-type; permission: profile:update_employee_type. */
|
|
192
|
+
profileUpdateEmployeeTypePut(uuid, data, options) {
|
|
193
|
+
return this.client.request({ ...options, method: "PUT", url: `/api/v1/profile/${encodeURIComponent(uuid)}/employee-type`, data: data });
|
|
194
|
+
}
|
|
195
|
+
/** PATCH /api/v1/profile/{uuid}/freemium-session-limit; permission: profile:freemium_session_limit. */
|
|
196
|
+
profileUpdateFreemiumPatch(uuid, data, options) {
|
|
197
|
+
return this.client.request({ ...options, method: "PATCH", url: `/api/v1/profile/${encodeURIComponent(uuid)}/freemium-session-limit`, data: data });
|
|
198
|
+
}
|
|
199
|
+
/** PUT /api/v1/profile/{uuid}/freemium-session-limit; permission: profile:freemium_session_limit. */
|
|
200
|
+
profileUpdateFreemiumPut(uuid, data, options) {
|
|
201
|
+
return this.client.request({ ...options, method: "PUT", url: `/api/v1/profile/${encodeURIComponent(uuid)}/freemium-session-limit`, data: data });
|
|
202
|
+
}
|
|
203
|
+
/** GET /api/v1/profile/{uuid}/full; permission: profile:read. */
|
|
204
|
+
profileShowFullGet(uuid, options) {
|
|
205
|
+
return this.client.request({ ...options, method: "GET", url: `/api/v1/profile/${encodeURIComponent(uuid)}/full` });
|
|
206
|
+
}
|
|
207
|
+
/** GET /api/v1/profile/{uuid}/media; permission: public/session-derived. */
|
|
208
|
+
profileMediaShowGet(uuid, params, options) {
|
|
209
|
+
return this.client.request({ ...options, method: "GET", url: `/api/v1/profile/${encodeURIComponent(uuid)}/media`, params });
|
|
210
|
+
}
|
|
211
|
+
/** PATCH /api/v1/profile/{uuid}/properties; permission: profile:update. */
|
|
212
|
+
profileUpdatePropertiesPatch(uuid, data, options) {
|
|
213
|
+
return this.client.request({ ...options, method: "PATCH", url: `/api/v1/profile/${encodeURIComponent(uuid)}/properties`, data: data });
|
|
214
|
+
}
|
|
215
|
+
/** PUT /api/v1/profile/{uuid}/properties; permission: profile:update. */
|
|
216
|
+
profileUpdatePropertiesPut(uuid, data, options) {
|
|
217
|
+
return this.client.request({ ...options, method: "PUT", url: `/api/v1/profile/${encodeURIComponent(uuid)}/properties`, data: data });
|
|
218
|
+
}
|
|
219
|
+
/** PATCH /api/v1/profile/{uuid}/status; permission: profile:update_status. */
|
|
220
|
+
profileUpdateStatusPatch(uuid, data, options) {
|
|
221
|
+
return this.client.request({ ...options, method: "PATCH", url: `/api/v1/profile/${encodeURIComponent(uuid)}/status`, data: data });
|
|
222
|
+
}
|
|
223
|
+
/** PUT /api/v1/profile/{uuid}/status; permission: profile:update_status. */
|
|
224
|
+
profileUpdateStatusPut(uuid, data, options) {
|
|
225
|
+
return this.client.request({ ...options, method: "PUT", url: `/api/v1/profile/${encodeURIComponent(uuid)}/status`, data: data });
|
|
226
|
+
}
|
|
227
|
+
/** GET /api/v1/profile/accountant; permission: public/session-derived. */
|
|
228
|
+
profileAccountantIndexGet(options) {
|
|
229
|
+
return this.client.request({ ...options, method: "GET", url: `/api/v1/profile/accountant` });
|
|
230
|
+
}
|
|
231
|
+
/** PATCH /api/v1/profile/add/address/{uuid}; permission: profile:update. */
|
|
232
|
+
profileAddAddressPatch(uuid, data, options) {
|
|
233
|
+
return this.client.request({ ...options, method: "PATCH", url: `/api/v1/profile/add/address/${encodeURIComponent(uuid)}`, data: data });
|
|
234
|
+
}
|
|
235
|
+
/** PUT /api/v1/profile/add/address/{uuid}; permission: profile:update. */
|
|
236
|
+
profileAddAddressPut(uuid, data, options) {
|
|
237
|
+
return this.client.request({ ...options, method: "PUT", url: `/api/v1/profile/add/address/${encodeURIComponent(uuid)}`, data: data });
|
|
238
|
+
}
|
|
239
|
+
/** PATCH /api/v1/profile/add/app/{uuid}; permission: profile:update. */
|
|
240
|
+
profileAddAppPatch(uuid, data, options) {
|
|
241
|
+
return this.client.request({ ...options, method: "PATCH", url: `/api/v1/profile/add/app/${encodeURIComponent(uuid)}`, data: data });
|
|
242
|
+
}
|
|
243
|
+
/** PUT /api/v1/profile/add/app/{uuid}; permission: profile:update. */
|
|
244
|
+
profileAddAppPut(uuid, data, options) {
|
|
245
|
+
return this.client.request({ ...options, method: "PUT", url: `/api/v1/profile/add/app/${encodeURIComponent(uuid)}`, data: data });
|
|
246
|
+
}
|
|
247
|
+
/** PATCH /api/v1/profile/add/parent/{uuid}; permission: profile:update. */
|
|
248
|
+
profileAddParentPatch(uuid, data, options) {
|
|
249
|
+
return this.client.request({ ...options, method: "PATCH", url: `/api/v1/profile/add/parent/${encodeURIComponent(uuid)}`, data: data });
|
|
250
|
+
}
|
|
251
|
+
/** PUT /api/v1/profile/add/parent/{uuid}; permission: profile:update. */
|
|
252
|
+
profileAddParentPut(uuid, data, options) {
|
|
253
|
+
return this.client.request({ ...options, method: "PUT", url: `/api/v1/profile/add/parent/${encodeURIComponent(uuid)}`, data: data });
|
|
254
|
+
}
|
|
255
|
+
/** POST /api/v1/profile/city/get; permission: public/session-derived. */
|
|
256
|
+
profileCityGetPost(data, options) {
|
|
257
|
+
return this.client.request({ ...options, method: "POST", url: `/api/v1/profile/city/get`, data: data });
|
|
258
|
+
}
|
|
259
|
+
/** GET /api/v1/profile/consultant; permission: public/session-derived. */
|
|
260
|
+
profileConsultantIndexGet(options) {
|
|
261
|
+
return this.client.request({ ...options, method: "GET", url: `/api/v1/profile/consultant` });
|
|
262
|
+
}
|
|
263
|
+
/** POST /api/v1/profile/country/get; permission: public/session-derived. */
|
|
264
|
+
profileCountryGetPost(data, options) {
|
|
265
|
+
return this.client.request({ ...options, method: "POST", url: `/api/v1/profile/country/get`, data: data });
|
|
266
|
+
}
|
|
267
|
+
/** DELETE /api/v1/profile/force/{uuid}; permission: profile:force_delete. */
|
|
268
|
+
profileForceDestroyDelete(uuid, options) {
|
|
269
|
+
return this.client.request({ ...options, method: "DELETE", url: `/api/v1/profile/force/${encodeURIComponent(uuid)}` });
|
|
270
|
+
}
|
|
271
|
+
/** POST /api/v1/profile/get; permission: public/session-derived. */
|
|
272
|
+
profileBulkGetPost(data, options) {
|
|
273
|
+
return this.client.request({ ...options, method: "POST", url: `/api/v1/profile/get`, data: data });
|
|
274
|
+
}
|
|
275
|
+
/** GET /api/v1/profile/get-chat-list/{uuid}; permission: public/session-derived. */
|
|
276
|
+
profileChatListGet(uuid, options) {
|
|
277
|
+
return this.client.request({ ...options, method: "GET", url: `/api/v1/profile/get-chat-list/${encodeURIComponent(uuid)}` });
|
|
278
|
+
}
|
|
279
|
+
/** GET /api/v1/profile/get/address/{uuid}; permission: profile:read. */
|
|
280
|
+
profileGetAddressGet(uuid, options) {
|
|
281
|
+
return this.client.request({ ...options, method: "GET", url: `/api/v1/profile/get/address/${encodeURIComponent(uuid)}` });
|
|
282
|
+
}
|
|
283
|
+
/** GET /api/v1/profile/get/app/{uuid}; permission: profile:read. */
|
|
284
|
+
profileGetAppGet(uuid, options) {
|
|
285
|
+
return this.client.request({ ...options, method: "GET", url: `/api/v1/profile/get/app/${encodeURIComponent(uuid)}` });
|
|
286
|
+
}
|
|
287
|
+
/** GET /api/v1/profile/get/parent/{uuid}; permission: profile:read. */
|
|
288
|
+
profileGetParentGet(uuid, options) {
|
|
289
|
+
return this.client.request({ ...options, method: "GET", url: `/api/v1/profile/get/parent/${encodeURIComponent(uuid)}` });
|
|
290
|
+
}
|
|
291
|
+
/** GET /api/v1/profile/manager; permission: public/session-derived. */
|
|
292
|
+
profileManagerIndexGet(options) {
|
|
293
|
+
return this.client.request({ ...options, method: "GET", url: `/api/v1/profile/manager` });
|
|
294
|
+
}
|
|
295
|
+
/** GET /api/v1/profile/other; permission: public/session-derived. */
|
|
296
|
+
profileOtherIndexGet(options) {
|
|
297
|
+
return this.client.request({ ...options, method: "GET", url: `/api/v1/profile/other` });
|
|
298
|
+
}
|
|
299
|
+
/** GET /api/v1/profile/parent; permission: public/session-derived. */
|
|
300
|
+
profileParentIndexGet(options) {
|
|
301
|
+
return this.client.request({ ...options, method: "GET", url: `/api/v1/profile/parent` });
|
|
302
|
+
}
|
|
303
|
+
/** POST /api/v1/profile/province/get; permission: public/session-derived. */
|
|
304
|
+
profileProvinceGetPost(data, options) {
|
|
305
|
+
return this.client.request({ ...options, method: "POST", url: `/api/v1/profile/province/get`, data: data });
|
|
306
|
+
}
|
|
307
|
+
/** POST /api/v1/profile/search; permission: profile:search. */
|
|
308
|
+
profileSearchSearchPost(data, options) {
|
|
309
|
+
return this.client.request({ ...options, method: "POST", url: `/api/v1/profile/search`, data: data });
|
|
310
|
+
}
|
|
311
|
+
/** GET /api/v1/profile/student; permission: public/session-derived. */
|
|
312
|
+
profileStudentIndexGet(options) {
|
|
313
|
+
return this.client.request({ ...options, method: "GET", url: `/api/v1/profile/student` });
|
|
314
|
+
}
|
|
315
|
+
/** GET /api/v1/profile/students/pes; permission: public/session-derived. */
|
|
316
|
+
profileStudentPesGet(options) {
|
|
317
|
+
return this.client.request({ ...options, method: "GET", url: `/api/v1/profile/students/pes` });
|
|
318
|
+
}
|
|
319
|
+
/** GET /api/v1/profile/students/pes/schema; permission: public/session-derived. */
|
|
320
|
+
profileStudentPesSchemaGet(options) {
|
|
321
|
+
return this.client.request({ ...options, method: "GET", url: `/api/v1/profile/students/pes/schema` });
|
|
322
|
+
}
|
|
323
|
+
/** GET /api/v1/profile/support; permission: public/session-derived. */
|
|
324
|
+
profileSupportIndexGet(options) {
|
|
325
|
+
return this.client.request({ ...options, method: "GET", url: `/api/v1/profile/support` });
|
|
326
|
+
}
|
|
327
|
+
/** GET /api/v1/profile/supports/pes; permission: public/session-derived. */
|
|
328
|
+
profileSupportPesGet(options) {
|
|
329
|
+
return this.client.request({ ...options, method: "GET", url: `/api/v1/profile/supports/pes` });
|
|
330
|
+
}
|
|
331
|
+
/** GET /api/v1/profile/supports/pes/schema; permission: public/session-derived. */
|
|
332
|
+
profileSupportPesSchemaGet(options) {
|
|
333
|
+
return this.client.request({ ...options, method: "GET", url: `/api/v1/profile/supports/pes/schema` });
|
|
334
|
+
}
|
|
335
|
+
/** GET /api/v1/profile/teacher; permission: public/session-derived. */
|
|
336
|
+
profileTeacherIndexGet(options) {
|
|
337
|
+
return this.client.request({ ...options, method: "GET", url: `/api/v1/profile/teacher` });
|
|
338
|
+
}
|
|
339
|
+
/** GET /api/v1/profile/undo/{uuid}; permission: profile:restore. */
|
|
340
|
+
profileRestoreGet(uuid, options) {
|
|
341
|
+
return this.client.request({ ...options, method: "GET", url: `/api/v1/profile/undo/${encodeURIComponent(uuid)}` });
|
|
342
|
+
}
|
|
343
|
+
/** PATCH /api/v1/profile/update/{uuid}/meta; permission: profile:update. */
|
|
344
|
+
profileAddMetaPatch(uuid, data, options) {
|
|
345
|
+
return this.client.request({ ...options, method: "PATCH", url: `/api/v1/profile/update/${encodeURIComponent(uuid)}/meta`, data: data });
|
|
346
|
+
}
|
|
347
|
+
/** PUT /api/v1/profile/update/{uuid}/meta; permission: profile:update. */
|
|
348
|
+
profileAddMetaPut(uuid, data, options) {
|
|
349
|
+
return this.client.request({ ...options, method: "PUT", url: `/api/v1/profile/update/${encodeURIComponent(uuid)}/meta`, data: data });
|
|
350
|
+
}
|
|
351
|
+
/** PATCH /api/v1/profile/update/personal-information/{uuid}; permission: profile:update. */
|
|
352
|
+
profileUpdatePersonalPatch(uuid, data, options) {
|
|
353
|
+
return this.client.request({ ...options, method: "PATCH", url: `/api/v1/profile/update/personal-information/${encodeURIComponent(uuid)}`, data: data });
|
|
354
|
+
}
|
|
355
|
+
/** PUT /api/v1/profile/update/personal-information/{uuid}; permission: profile:update. */
|
|
356
|
+
profileUpdatePersonalPut(uuid, data, options) {
|
|
357
|
+
return this.client.request({ ...options, method: "PUT", url: `/api/v1/profile/update/personal-information/${encodeURIComponent(uuid)}`, data: data });
|
|
358
|
+
}
|
|
359
|
+
/** GET /api/v1/province; permission: province:read. */
|
|
360
|
+
provinceIndexGet(params, options) {
|
|
361
|
+
return this.client.request({ ...options, method: "GET", url: `/api/v1/province`, params });
|
|
362
|
+
}
|
|
363
|
+
/** POST /api/v1/province; permission: province:create. */
|
|
364
|
+
provinceStorePost(data, options) {
|
|
365
|
+
return this.client.request({ ...options, method: "POST", url: `/api/v1/province`, data: data });
|
|
366
|
+
}
|
|
367
|
+
/** DELETE /api/v1/province/{id}; permission: province:delete. */
|
|
368
|
+
provinceDestroyDelete(id, options) {
|
|
369
|
+
return this.client.request({ ...options, method: "DELETE", url: `/api/v1/province/${encodeURIComponent(id)}` });
|
|
370
|
+
}
|
|
371
|
+
/** GET /api/v1/province/{id}; permission: province:read. */
|
|
372
|
+
provinceShowGet(id, options) {
|
|
373
|
+
return this.client.request({ ...options, method: "GET", url: `/api/v1/province/${encodeURIComponent(id)}` });
|
|
374
|
+
}
|
|
375
|
+
/** PATCH /api/v1/province/{id}; permission: province:update. */
|
|
376
|
+
provinceUpdatePatch(id, data, options) {
|
|
377
|
+
return this.client.request({ ...options, method: "PATCH", url: `/api/v1/province/${encodeURIComponent(id)}`, data: data });
|
|
378
|
+
}
|
|
379
|
+
/** PUT /api/v1/province/{id}; permission: province:update. */
|
|
380
|
+
provinceUpdatePut(id, data, options) {
|
|
381
|
+
return this.client.request({ ...options, method: "PUT", url: `/api/v1/province/${encodeURIComponent(id)}`, data: data });
|
|
382
|
+
}
|
|
383
|
+
/** DELETE /api/v1/province/force/{id}; permission: province:delete. */
|
|
384
|
+
provinceForceDestroyDelete(id, options) {
|
|
385
|
+
return this.client.request({ ...options, method: "DELETE", url: `/api/v1/province/force/${encodeURIComponent(id)}` });
|
|
386
|
+
}
|
|
387
|
+
/** GET /api/v1/province/undo/{id}; permission: province:delete. */
|
|
388
|
+
provinceRestoreGet(id, options) {
|
|
389
|
+
return this.client.request({ ...options, method: "GET", url: `/api/v1/province/undo/${encodeURIComponent(id)}` });
|
|
390
|
+
}
|
|
391
|
+
/** GET /api/v1/setting; permission: setting:read. */
|
|
392
|
+
settingIndexGet(options) {
|
|
393
|
+
return this.client.request({ ...options, method: "GET", url: `/api/v1/setting` });
|
|
394
|
+
}
|
|
395
|
+
/** POST /api/v1/setting; permission: setting:create. */
|
|
396
|
+
settingStorePost(data, options) {
|
|
397
|
+
return this.client.request({ ...options, method: "POST", url: `/api/v1/setting`, data: data });
|
|
398
|
+
}
|
|
399
|
+
/** GET /api/v1/survey; permission: survey:read. */
|
|
400
|
+
surveyIndexGet(options) {
|
|
401
|
+
return this.client.request({ ...options, method: "GET", url: `/api/v1/survey` });
|
|
402
|
+
}
|
|
403
|
+
/** POST /api/v1/survey; permission: survey:create. */
|
|
404
|
+
surveyStorePost(data, options) {
|
|
405
|
+
return this.client.request({ ...options, method: "POST", url: `/api/v1/survey`, data: data });
|
|
406
|
+
}
|
|
407
|
+
/** GET /api/v1/trusted-service; permission: trusted_service:read. */
|
|
408
|
+
trustedServiceIndexGet(params, options) {
|
|
409
|
+
return this.client.request({ ...options, method: "GET", url: `/api/v1/trusted-service`, params });
|
|
410
|
+
}
|
|
411
|
+
/** POST /api/v1/trusted-service; permission: trusted_service:create. */
|
|
412
|
+
trustedServiceStorePost(data, options) {
|
|
413
|
+
return this.client.request({ ...options, method: "POST", url: `/api/v1/trusted-service`, data: data });
|
|
414
|
+
}
|
|
415
|
+
/** DELETE /api/v1/trusted-service/{id}; permission: trusted_service:delete. */
|
|
416
|
+
trustedServiceDestroyDelete(id, options) {
|
|
417
|
+
return this.client.request({ ...options, method: "DELETE", url: `/api/v1/trusted-service/${encodeURIComponent(id)}` });
|
|
418
|
+
}
|
|
419
|
+
/** GET /api/v1/trusted-service/{id}; permission: trusted_service:read. */
|
|
420
|
+
trustedServiceShowGet(id, options) {
|
|
421
|
+
return this.client.request({ ...options, method: "GET", url: `/api/v1/trusted-service/${encodeURIComponent(id)}` });
|
|
422
|
+
}
|
|
423
|
+
/** PATCH /api/v1/trusted-service/{id}; permission: trusted_service:update. */
|
|
424
|
+
trustedServiceUpdatePatch(id, data, options) {
|
|
425
|
+
return this.client.request({ ...options, method: "PATCH", url: `/api/v1/trusted-service/${encodeURIComponent(id)}`, data: data });
|
|
426
|
+
}
|
|
427
|
+
/** PUT /api/v1/trusted-service/{id}; permission: trusted_service:update. */
|
|
428
|
+
trustedServiceUpdatePut(id, data, options) {
|
|
429
|
+
return this.client.request({ ...options, method: "PUT", url: `/api/v1/trusted-service/${encodeURIComponent(id)}`, data: data });
|
|
430
|
+
}
|
|
431
|
+
/** GET /api/v1/trusted-service/{id}/event; permission: trusted_service:read. */
|
|
432
|
+
trustedServiceEventIndexGet(id, params, options) {
|
|
433
|
+
return this.client.request({ ...options, method: "GET", url: `/api/v1/trusted-service/${encodeURIComponent(id)}/event`, params });
|
|
434
|
+
}
|
|
435
|
+
/** POST /api/v1/trusted-service/{id}/event; permission: trusted_service:create. */
|
|
436
|
+
trustedServiceEventStorePost(id, data, options) {
|
|
437
|
+
return this.client.request({ ...options, method: "POST", url: `/api/v1/trusted-service/${encodeURIComponent(id)}/event`, data: data });
|
|
438
|
+
}
|
|
439
|
+
/** DELETE /api/v1/trusted-service/{id}/event/{event_id}; permission: trusted_service:delete. */
|
|
440
|
+
trustedServiceEventDestroyDelete(id, eventId, options) {
|
|
441
|
+
return this.client.request({ ...options, method: "DELETE", url: `/api/v1/trusted-service/${encodeURIComponent(id)}/event/${encodeURIComponent(eventId)}` });
|
|
442
|
+
}
|
|
443
|
+
/** GET /api/v1/trusted-service/{id}/event/{event_id}; permission: trusted_service:read. */
|
|
444
|
+
trustedServiceEventShowGet(id, eventId, options) {
|
|
445
|
+
return this.client.request({ ...options, method: "GET", url: `/api/v1/trusted-service/${encodeURIComponent(id)}/event/${encodeURIComponent(eventId)}` });
|
|
446
|
+
}
|
|
447
|
+
/** PATCH /api/v1/trusted-service/{id}/event/{event_id}; permission: trusted_service:update. */
|
|
448
|
+
trustedServiceEventUpdatePatch(id, eventId, data, options) {
|
|
449
|
+
return this.client.request({ ...options, method: "PATCH", url: `/api/v1/trusted-service/${encodeURIComponent(id)}/event/${encodeURIComponent(eventId)}`, data: data });
|
|
450
|
+
}
|
|
451
|
+
/** PUT /api/v1/trusted-service/{id}/event/{event_id}; permission: trusted_service:update. */
|
|
452
|
+
trustedServiceEventUpdatePut(id, eventId, data, options) {
|
|
453
|
+
return this.client.request({ ...options, method: "PUT", url: `/api/v1/trusted-service/${encodeURIComponent(id)}/event/${encodeURIComponent(eventId)}`, data: data });
|
|
454
|
+
}
|
|
455
|
+
/** GET /health; permission: public/session-derived. */
|
|
456
|
+
routerHealthGetHealth(options) {
|
|
457
|
+
return this.client.request({ ...options, method: "GET", url: `/health` });
|
|
458
|
+
}
|
|
459
|
+
/** GET /up; permission: public/session-derived. */
|
|
460
|
+
routerHealthGetUp(options) {
|
|
461
|
+
return this.client.request({ ...options, method: "GET", url: `/up` });
|
|
462
|
+
}
|
|
463
|
+
}
|
|
464
|
+
//# sourceMappingURL=operations.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"operations.js","sourceRoot":"","sources":["../src/operations.ts"],"names":[],"mappings":"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"}
|