@faiber/faiber-profile 0.2.0 → 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
package/README.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# @faiber/faiber-profile
|
|
2
2
|
|
|
3
|
-
|
|
3
|
+
Profiles, atomic partial updates, dynamic properties, geographic records, relationships, media, search, trusted services, and profile logs.
|
|
4
4
|
|
|
5
5
|
## Install
|
|
6
6
|
|
|
@@ -8,7 +8,7 @@ Typed, framework-neutral TypeScript client for Faiber profiles, custom propertie
|
|
|
8
8
|
npm install @faiber/faiber-profile
|
|
9
9
|
```
|
|
10
10
|
|
|
11
|
-
##
|
|
11
|
+
## Configure
|
|
12
12
|
|
|
13
13
|
```ts
|
|
14
14
|
import { FaiberClient, MemoryTokenProvider } from "@faiber/sdk-core";
|
|
@@ -22,24 +22,56 @@ const client = new FaiberClient("profile", {
|
|
|
22
22
|
});
|
|
23
23
|
const api = new ProfileApi(client);
|
|
24
24
|
|
|
25
|
-
const
|
|
26
|
-
|
|
25
|
+
const updated = await api.updateProfile(userId, {
|
|
26
|
+
first_name: { en: "Ava", fa: "آوا" },
|
|
27
|
+
phone: "+989121234567",
|
|
28
|
+
properties: { workout_plan: plan, membership },
|
|
29
|
+
});
|
|
30
|
+
console.log(updated.data.data.profile);
|
|
27
31
|
```
|
|
28
32
|
|
|
29
|
-
|
|
33
|
+
## Complete capability
|
|
30
34
|
|
|
31
|
-
|
|
35
|
+
This package exposes 115 registered operations from the profiles service. Common workflows have concise methods on `api`; every registered backend route is also available as a named function on `api.operations`. Generated operation input, query, response, path, verb, and permission contracts are exported from `operations.types`.
|
|
32
36
|
|
|
33
|
-
|
|
37
|
+
| Area | Operations | HTTP methods |
|
|
38
|
+
|---|---:|---|
|
|
39
|
+
| `city` | 8 | `DELETE`, `GET`, `PATCH`, `POST`, `PUT` |
|
|
40
|
+
| `country` | 8 | `DELETE`, `GET`, `PATCH`, `POST`, `PUT` |
|
|
41
|
+
| `integration` | 2 | `GET` |
|
|
42
|
+
| `log-action` | 3 | `POST` |
|
|
43
|
+
| `logger` | 2 | `GET` |
|
|
44
|
+
| `option` | 4 | `GET`, `POST` |
|
|
45
|
+
| `profile` | 51 | `DELETE`, `GET`, `PATCH`, `POST`, `PUT` |
|
|
46
|
+
| `profile-property` | 8 | `DELETE`, `GET`, `PATCH`, `POST`, `PUT` |
|
|
47
|
+
| `profile-search` | 1 | `POST` |
|
|
48
|
+
| `province` | 8 | `DELETE`, `GET`, `PATCH`, `POST`, `PUT` |
|
|
49
|
+
| `router` | 3 | `GET` |
|
|
50
|
+
| `session` | 1 | `GET` |
|
|
51
|
+
| `setting` | 2 | `GET`, `POST` |
|
|
52
|
+
| `survey` | 2 | `GET`, `POST` |
|
|
53
|
+
| `trusted-service` | 12 | `DELETE`, `GET`, `PATCH`, `POST`, `PUT` |
|
|
34
54
|
|
|
35
|
-
|
|
55
|
+
`updateProfile` sends one atomic `PATCH /api/v1/profile/{uuid}`. Omitted fields stay unchanged; `null` clears nullable fields. System-managed balances, gems, enrollment state, roles, IDs, and avatar objects are not mass-assignable. Use `uploadAvatar` and IDP role operations for those concerns.
|
|
56
|
+
|
|
57
|
+
## Authentication and authorization
|
|
58
|
+
|
|
59
|
+
Use a `TokenProvider` to forward the signed-in user's Bearer token, or enable `withCredentials` for secure HttpOnly cookie sessions. Permission requirements copied from service route guards are included in each operation's JSDoc. The SDK does not embed API keys, credentials, localhost URLs, sandbox hosts, or production hosts.
|
|
60
|
+
|
|
61
|
+
## Inputs, queries, responses, and transport
|
|
36
62
|
|
|
37
|
-
Axios
|
|
63
|
+
All methods return the complete Axios response, including status, headers, and request IDs. Request bodies and query objects are named exported interfaces. Nested pagination uses keys such as `page[number]` and `page[size]` where required by the service. Standard Axios request options, headers, timeouts, adapters, interceptors, and `AbortSignal` cancellation are supported as the final argument.
|
|
64
|
+
|
|
65
|
+
Generic REST resources are capability-guarded. Calling a legacy method that the service does not register throws `UnsupportedOperationError` before sending a request instead of producing a backend `405`.
|
|
66
|
+
|
|
67
|
+
## Errors and cancellation
|
|
38
68
|
|
|
39
69
|
```ts
|
|
40
|
-
|
|
70
|
+
try {
|
|
71
|
+
await api.client.get("/health", undefined, { signal: AbortSignal.timeout(5_000) });
|
|
72
|
+
} catch (error) {
|
|
73
|
+
// Axios errors retain response.status and the service error body.
|
|
74
|
+
}
|
|
41
75
|
```
|
|
42
76
|
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
Install `@faiber/faiber-ts-sdk` when an application uses multiple Faiber services. The complete package provides shared configuration, authentication, uploads, and error handling across services.
|
|
77
|
+
Use `@faiber/faiber-ts-sdk` when one application needs multiple Faiber services with one configuration.
|
package/dist/.tsbuildinfo
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"fileNames":["../../../node_modules/typescript/lib/lib.es5.d.ts","../../../node_modules/typescript/lib/lib.es2015.d.ts","../../../node_modules/typescript/lib/lib.es2016.d.ts","../../../node_modules/typescript/lib/lib.es2017.d.ts","../../../node_modules/typescript/lib/lib.es2018.d.ts","../../../node_modules/typescript/lib/lib.es2019.d.ts","../../../node_modules/typescript/lib/lib.es2020.d.ts","../../../node_modules/typescript/lib/lib.es2021.d.ts","../../../node_modules/typescript/lib/lib.es2022.d.ts","../../../node_modules/typescript/lib/lib.dom.d.ts","../../../node_modules/typescript/lib/lib.dom.iterable.d.ts","../../../node_modules/typescript/lib/lib.es2015.core.d.ts","../../../node_modules/typescript/lib/lib.es2015.collection.d.ts","../../../node_modules/typescript/lib/lib.es2015.generator.d.ts","../../../node_modules/typescript/lib/lib.es2015.iterable.d.ts","../../../node_modules/typescript/lib/lib.es2015.promise.d.ts","../../../node_modules/typescript/lib/lib.es2015.proxy.d.ts","../../../node_modules/typescript/lib/lib.es2015.reflect.d.ts","../../../node_modules/typescript/lib/lib.es2015.symbol.d.ts","../../../node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts","../../../node_modules/typescript/lib/lib.es2016.array.include.d.ts","../../../node_modules/typescript/lib/lib.es2016.intl.d.ts","../../../node_modules/typescript/lib/lib.es2017.arraybuffer.d.ts","../../../node_modules/typescript/lib/lib.es2017.date.d.ts","../../../node_modules/typescript/lib/lib.es2017.object.d.ts","../../../node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts","../../../node_modules/typescript/lib/lib.es2017.string.d.ts","../../../node_modules/typescript/lib/lib.es2017.intl.d.ts","../../../node_modules/typescript/lib/lib.es2017.typedarrays.d.ts","../../../node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts","../../../node_modules/typescript/lib/lib.es2018.asynciterable.d.ts","../../../node_modules/typescript/lib/lib.es2018.intl.d.ts","../../../node_modules/typescript/lib/lib.es2018.promise.d.ts","../../../node_modules/typescript/lib/lib.es2018.regexp.d.ts","../../../node_modules/typescript/lib/lib.es2019.array.d.ts","../../../node_modules/typescript/lib/lib.es2019.object.d.ts","../../../node_modules/typescript/lib/lib.es2019.string.d.ts","../../../node_modules/typescript/lib/lib.es2019.symbol.d.ts","../../../node_modules/typescript/lib/lib.es2019.intl.d.ts","../../../node_modules/typescript/lib/lib.es2020.bigint.d.ts","../../../node_modules/typescript/lib/lib.es2020.date.d.ts","../../../node_modules/typescript/lib/lib.es2020.promise.d.ts","../../../node_modules/typescript/lib/lib.es2020.sharedmemory.d.ts","../../../node_modules/typescript/lib/lib.es2020.string.d.ts","../../../node_modules/typescript/lib/lib.es2020.symbol.wellknown.d.ts","../../../node_modules/typescript/lib/lib.es2020.intl.d.ts","../../../node_modules/typescript/lib/lib.es2020.number.d.ts","../../../node_modules/typescript/lib/lib.es2021.promise.d.ts","../../../node_modules/typescript/lib/lib.es2021.string.d.ts","../../../node_modules/typescript/lib/lib.es2021.weakref.d.ts","../../../node_modules/typescript/lib/lib.es2021.intl.d.ts","../../../node_modules/typescript/lib/lib.es2022.array.d.ts","../../../node_modules/typescript/lib/lib.es2022.error.d.ts","../../../node_modules/typescript/lib/lib.es2022.intl.d.ts","../../../node_modules/typescript/lib/lib.es2022.object.d.ts","../../../node_modules/typescript/lib/lib.es2022.string.d.ts","../../../node_modules/typescript/lib/lib.es2022.regexp.d.ts","../../../node_modules/typescript/lib/lib.decorators.d.ts","../../../node_modules/typescript/lib/lib.decorators.legacy.d.ts","../../../node_modules/axios/index.d.ts","../../core/dist/types.d.ts","../../core/dist/env.d.ts","../../core/dist/auth.d.ts","../../core/dist/client.d.ts","../../core/dist/resource.d.ts","../../core/dist/openapi.d.ts","../../core/dist/index.d.ts","../src/types.ts","../src/index.ts"],"fileIdsList":[[61],[60,61],[60,61,62,63,64,65,66],[60,61,64],[60],[67,68],[67]],"fileInfos":[{"version":"c430d44666289dae81f30fa7b2edebf186ecc91a2d4c71266ea6ae76388792e1","affectsGlobalScope":true,"impliedFormat":1},{"version":"45b7ab580deca34ae9729e97c13cfd999df04416a79116c3bfb483804f85ded4","impliedFormat":1},{"version":"3facaf05f0c5fc569c5649dd359892c98a85557e3e0c847964caeb67076f4d75","impliedFormat":1},{"version":"e44bb8bbac7f10ecc786703fe0a6a4b952189f908707980ba8f3c8975a760962","impliedFormat":1},{"version":"5e1c4c362065a6b95ff952c0eab010f04dcd2c3494e813b493ecfd4fcb9fc0d8","impliedFormat":1},{"version":"68d73b4a11549f9c0b7d352d10e91e5dca8faa3322bfb77b661839c42b1ddec7","impliedFormat":1},{"version":"5efce4fc3c29ea84e8928f97adec086e3dc876365e0982cc8479a07954a3efd4","impliedFormat":1},{"version":"feecb1be483ed332fad555aff858affd90a48ab19ba7272ee084704eb7167569","impliedFormat":1},{"version":"ee7bad0c15b58988daa84371e0b89d313b762ab83cb5b31b8a2d1162e8eb41c2","impliedFormat":1},{"version":"080941d9f9ff9307f7e27a83bcd888b7c8270716c39af943532438932ec1d0b9","affectsGlobalScope":true,"impliedFormat":1},{"version":"2e80ee7a49e8ac312cc11b77f1475804bee36b3b2bc896bead8b6e1266befb43","affectsGlobalScope":true,"impliedFormat":1},{"version":"c57796738e7f83dbc4b8e65132f11a377649c00dd3eee333f672b8f0a6bea671","affectsGlobalScope":true,"impliedFormat":1},{"version":"dc2df20b1bcdc8c2d34af4926e2c3ab15ffe1160a63e58b7e09833f616efff44","affectsGlobalScope":true,"impliedFormat":1},{"version":"515d0b7b9bea2e31ea4ec968e9edd2c39d3eebf4a2d5cbd04e88639819ae3b71","affectsGlobalScope":true,"impliedFormat":1},{"version":"0559b1f683ac7505ae451f9a96ce4c3c92bdc71411651ca6ddb0e88baaaad6a3","affectsGlobalScope":true,"impliedFormat":1},{"version":"0dc1e7ceda9b8b9b455c3a2d67b0412feab00bd2f66656cd8850e8831b08b537","affectsGlobalScope":true,"impliedFormat":1},{"version":"ce691fb9e5c64efb9547083e4a34091bcbe5bdb41027e310ebba8f7d96a98671","affectsGlobalScope":true,"impliedFormat":1},{"version":"8d697a2a929a5fcb38b7a65594020fcef05ec1630804a33748829c5ff53640d0","affectsGlobalScope":true,"impliedFormat":1},{"version":"4ff2a353abf8a80ee399af572debb8faab2d33ad38c4b4474cff7f26e7653b8d","affectsGlobalScope":true,"impliedFormat":1},{"version":"fb0f136d372979348d59b3f5020b4cdb81b5504192b1cacff5d1fbba29378aa1","affectsGlobalScope":true,"impliedFormat":1},{"version":"d15bea3d62cbbdb9797079416b8ac375ae99162a7fba5de2c6c505446486ac0a","affectsGlobalScope":true,"impliedFormat":1},{"version":"68d18b664c9d32a7336a70235958b8997ebc1c3b8505f4f1ae2b7e7753b87618","affectsGlobalScope":true,"impliedFormat":1},{"version":"eb3d66c8327153d8fa7dd03f9c58d351107fe824c79e9b56b462935176cdf12a","affectsGlobalScope":true,"impliedFormat":1},{"version":"38f0219c9e23c915ef9790ab1d680440d95419ad264816fa15009a8851e79119","affectsGlobalScope":true,"impliedFormat":1},{"version":"69ab18c3b76cd9b1be3d188eaf8bba06112ebbe2f47f6c322b5105a6fbc45a2e","affectsGlobalScope":true,"impliedFormat":1},{"version":"a680117f487a4d2f30ea46f1b4b7f58bef1480456e18ba53ee85c2746eeca012","affectsGlobalScope":true,"impliedFormat":1},{"version":"2f11ff796926e0832f9ae148008138ad583bd181899ab7dd768a2666700b1893","affectsGlobalScope":true,"impliedFormat":1},{"version":"4de680d5bb41c17f7f68e0419412ca23c98d5749dcaaea1896172f06435891fc","affectsGlobalScope":true,"impliedFormat":1},{"version":"954296b30da6d508a104a3a0b5d96b76495c709785c1d11610908e63481ee667","affectsGlobalScope":true,"impliedFormat":1},{"version":"ac9538681b19688c8eae65811b329d3744af679e0bdfa5d842d0e32524c73e1c","affectsGlobalScope":true,"impliedFormat":1},{"version":"0a969edff4bd52585473d24995c5ef223f6652d6ef46193309b3921d65dd4376","affectsGlobalScope":true,"impliedFormat":1},{"version":"9e9fbd7030c440b33d021da145d3232984c8bb7916f277e8ffd3dc2e3eae2bdb","affectsGlobalScope":true,"impliedFormat":1},{"version":"811ec78f7fefcabbda4bfa93b3eb67d9ae166ef95f9bff989d964061cbf81a0c","affectsGlobalScope":true,"impliedFormat":1},{"version":"717937616a17072082152a2ef351cb51f98802fb4b2fdabd32399843875974ca","affectsGlobalScope":true,"impliedFormat":1},{"version":"d7e7d9b7b50e5f22c915b525acc5a49a7a6584cf8f62d0569e557c5cfc4b2ac2","affectsGlobalScope":true,"impliedFormat":1},{"version":"71c37f4c9543f31dfced6c7840e068c5a5aacb7b89111a4364b1d5276b852557","affectsGlobalScope":true,"impliedFormat":1},{"version":"576711e016cf4f1804676043e6a0a5414252560eb57de9faceee34d79798c850","affectsGlobalScope":true,"impliedFormat":1},{"version":"89c1b1281ba7b8a96efc676b11b264de7a8374c5ea1e6617f11880a13fc56dc6","affectsGlobalScope":true,"impliedFormat":1},{"version":"74f7fa2d027d5b33eb0471c8e82a6c87216223181ec31247c357a3e8e2fddc5b","affectsGlobalScope":true,"impliedFormat":1},{"version":"d6d7ae4d1f1f3772e2a3cde568ed08991a8ae34a080ff1151af28b7f798e22ca","affectsGlobalScope":true,"impliedFormat":1},{"version":"063600664504610fe3e99b717a1223f8b1900087fab0b4cad1496a114744f8df","affectsGlobalScope":true,"impliedFormat":1},{"version":"934019d7e3c81950f9a8426d093458b65d5aff2c7c1511233c0fd5b941e608ab","affectsGlobalScope":true,"impliedFormat":1},{"version":"52ada8e0b6e0482b728070b7639ee42e83a9b1c22d205992756fe020fd9f4a47","affectsGlobalScope":true,"impliedFormat":1},{"version":"3bdefe1bfd4d6dee0e26f928f93ccc128f1b64d5d501ff4a8cf3c6371200e5e6","affectsGlobalScope":true,"impliedFormat":1},{"version":"59fb2c069260b4ba00b5643b907ef5d5341b167e7d1dbf58dfd895658bda2867","affectsGlobalScope":true,"impliedFormat":1},{"version":"639e512c0dfc3fad96a84caad71b8834d66329a1f28dc95e3946c9b58176c73a","affectsGlobalScope":true,"impliedFormat":1},{"version":"368af93f74c9c932edd84c58883e736c9e3d53cec1fe24c0b0ff451f529ceab1","affectsGlobalScope":true,"impliedFormat":1},{"version":"af3dd424cf267428f30ccfc376f47a2c0114546b55c44d8c0f1d57d841e28d74","affectsGlobalScope":true,"impliedFormat":1},{"version":"995c005ab91a498455ea8dfb63aa9f83fa2ea793c3d8aa344be4a1678d06d399","affectsGlobalScope":true,"impliedFormat":1},{"version":"959d36cddf5e7d572a65045b876f2956c973a586da58e5d26cde519184fd9b8a","affectsGlobalScope":true,"impliedFormat":1},{"version":"965f36eae237dd74e6cca203a43e9ca801ce38824ead814728a2807b1910117d","affectsGlobalScope":true,"impliedFormat":1},{"version":"3925a6c820dcb1a06506c90b1577db1fdbf7705d65b62b99dce4be75c637e26b","affectsGlobalScope":true,"impliedFormat":1},{"version":"0a3d63ef2b853447ec4f749d3f368ce642264246e02911fcb1590d8c161b8005","affectsGlobalScope":true,"impliedFormat":1},{"version":"8cdf8847677ac7d20486e54dd3fcf09eda95812ac8ace44b4418da1bbbab6eb8","affectsGlobalScope":true,"impliedFormat":1},{"version":"8444af78980e3b20b49324f4a16ba35024fef3ee069a0eb67616ea6ca821c47a","affectsGlobalScope":true,"impliedFormat":1},{"version":"3287d9d085fbd618c3971944b65b4be57859f5415f495b33a6adc994edd2f004","affectsGlobalScope":true,"impliedFormat":1},{"version":"b4b67b1a91182421f5df999988c690f14d813b9850b40acd06ed44691f6727ad","affectsGlobalScope":true,"impliedFormat":1},{"version":"8e7f8264d0fb4c5339605a15daadb037bf238c10b654bb3eee14208f860a32ea","affectsGlobalScope":true,"impliedFormat":1},{"version":"782dec38049b92d4e85c1585fbea5474a219c6984a35b004963b00beb1aab538","affectsGlobalScope":true,"impliedFormat":1},{"version":"2343ec253c90c370449755739733f5f429f58cffdb51a50977bb4a042012fa8f","impliedFormat":99},{"version":"8cb9e8d47cc3a150fe2b7eabc95375a7e69a50774be9b8e4107d1d436af9b593","impliedFormat":99},{"version":"82065c5512d8d6f81b26cf13ea9ecd3e558be9560f7b5c62260858219ecd87f7","impliedFormat":99},{"version":"ed17ed1b2bcf384c88bc6cec6b427989b98db99fc7ad35a50605501a463bbc53","impliedFormat":99},{"version":"82bf4efcca8ab8764a91ac126c0af605ab6717ee94b2316461b5fa388b27e165","impliedFormat":99},{"version":"b060635c1b555ff21aa5bab5b038e15d67700d6bec6738323a443715931589f1","impliedFormat":99},{"version":"98cf7f2f15a4c87fca87c49b72e140b49ad079ff077d157ee81a9466173854ba","impliedFormat":99},{"version":"66a0cb4d019dd780c2fb5c2942778929ec55715bb5a0f3b80aac4c0b92e35d16","impliedFormat":99},{"version":"6863ad046c491465abb696bcc3316c6456ff7dd4c3e97469f2de338f858330e0","impliedFormat":99},{"version":"9c872e7f80ae16d9566f1af81eca8617e50b3956beb0bd8f92c33437dfc442eb","signature":"8605641626b4741ccd2587884f25e5a2501d5a564e1afbd1309d422f46de1c56","impliedFormat":99}],"root":[68,69],"options":{"composite":true,"declaration":true,"declarationMap":true,"exactOptionalPropertyTypes":true,"module":199,"noUncheckedIndexedAccess":true,"outDir":"./","rootDir":"../src","skipLibCheck":true,"sourceMap":true,"strict":true,"target":9,"tsBuildInfoFile":"./.tsbuildinfo","verbatimModuleSyntax":true},"referencedMap":[[63,1],[64,2],[62,1],[67,3],[66,4],[65,4],[61,5],[69,6],[68,7]],"latestChangedDtsFile":"./index.d.ts","version":"5.9.3"}
|
|
1
|
+
{"fileNames":["../../../node_modules/typescript/lib/lib.es5.d.ts","../../../node_modules/typescript/lib/lib.es2015.d.ts","../../../node_modules/typescript/lib/lib.es2016.d.ts","../../../node_modules/typescript/lib/lib.es2017.d.ts","../../../node_modules/typescript/lib/lib.es2018.d.ts","../../../node_modules/typescript/lib/lib.es2019.d.ts","../../../node_modules/typescript/lib/lib.es2020.d.ts","../../../node_modules/typescript/lib/lib.es2021.d.ts","../../../node_modules/typescript/lib/lib.es2022.d.ts","../../../node_modules/typescript/lib/lib.dom.d.ts","../../../node_modules/typescript/lib/lib.dom.iterable.d.ts","../../../node_modules/typescript/lib/lib.es2015.core.d.ts","../../../node_modules/typescript/lib/lib.es2015.collection.d.ts","../../../node_modules/typescript/lib/lib.es2015.generator.d.ts","../../../node_modules/typescript/lib/lib.es2015.iterable.d.ts","../../../node_modules/typescript/lib/lib.es2015.promise.d.ts","../../../node_modules/typescript/lib/lib.es2015.proxy.d.ts","../../../node_modules/typescript/lib/lib.es2015.reflect.d.ts","../../../node_modules/typescript/lib/lib.es2015.symbol.d.ts","../../../node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts","../../../node_modules/typescript/lib/lib.es2016.array.include.d.ts","../../../node_modules/typescript/lib/lib.es2016.intl.d.ts","../../../node_modules/typescript/lib/lib.es2017.arraybuffer.d.ts","../../../node_modules/typescript/lib/lib.es2017.date.d.ts","../../../node_modules/typescript/lib/lib.es2017.object.d.ts","../../../node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts","../../../node_modules/typescript/lib/lib.es2017.string.d.ts","../../../node_modules/typescript/lib/lib.es2017.intl.d.ts","../../../node_modules/typescript/lib/lib.es2017.typedarrays.d.ts","../../../node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts","../../../node_modules/typescript/lib/lib.es2018.asynciterable.d.ts","../../../node_modules/typescript/lib/lib.es2018.intl.d.ts","../../../node_modules/typescript/lib/lib.es2018.promise.d.ts","../../../node_modules/typescript/lib/lib.es2018.regexp.d.ts","../../../node_modules/typescript/lib/lib.es2019.array.d.ts","../../../node_modules/typescript/lib/lib.es2019.object.d.ts","../../../node_modules/typescript/lib/lib.es2019.string.d.ts","../../../node_modules/typescript/lib/lib.es2019.symbol.d.ts","../../../node_modules/typescript/lib/lib.es2019.intl.d.ts","../../../node_modules/typescript/lib/lib.es2020.bigint.d.ts","../../../node_modules/typescript/lib/lib.es2020.date.d.ts","../../../node_modules/typescript/lib/lib.es2020.promise.d.ts","../../../node_modules/typescript/lib/lib.es2020.sharedmemory.d.ts","../../../node_modules/typescript/lib/lib.es2020.string.d.ts","../../../node_modules/typescript/lib/lib.es2020.symbol.wellknown.d.ts","../../../node_modules/typescript/lib/lib.es2020.intl.d.ts","../../../node_modules/typescript/lib/lib.es2020.number.d.ts","../../../node_modules/typescript/lib/lib.es2021.promise.d.ts","../../../node_modules/typescript/lib/lib.es2021.string.d.ts","../../../node_modules/typescript/lib/lib.es2021.weakref.d.ts","../../../node_modules/typescript/lib/lib.es2021.intl.d.ts","../../../node_modules/typescript/lib/lib.es2022.array.d.ts","../../../node_modules/typescript/lib/lib.es2022.error.d.ts","../../../node_modules/typescript/lib/lib.es2022.intl.d.ts","../../../node_modules/typescript/lib/lib.es2022.object.d.ts","../../../node_modules/typescript/lib/lib.es2022.string.d.ts","../../../node_modules/typescript/lib/lib.es2022.regexp.d.ts","../../../node_modules/typescript/lib/lib.decorators.d.ts","../../../node_modules/typescript/lib/lib.decorators.legacy.d.ts","../../../node_modules/axios/index.d.ts","../../core/dist/types.d.ts","../../core/dist/env.d.ts","../../core/dist/auth.d.ts","../../core/dist/client.d.ts","../../core/dist/resource.d.ts","../../core/dist/openapi.d.ts","../../core/dist/index.d.ts","../src/types.ts","../src/operations.types.ts","../src/operations.ts","../src/index.ts"],"fileIdsList":[[61],[60,61],[60,61,62,63,64,65,66],[60,61,64],[60],[67,68,69,70],[67,69],[67]],"fileInfos":[{"version":"c430d44666289dae81f30fa7b2edebf186ecc91a2d4c71266ea6ae76388792e1","affectsGlobalScope":true,"impliedFormat":1},{"version":"45b7ab580deca34ae9729e97c13cfd999df04416a79116c3bfb483804f85ded4","impliedFormat":1},{"version":"3facaf05f0c5fc569c5649dd359892c98a85557e3e0c847964caeb67076f4d75","impliedFormat":1},{"version":"e44bb8bbac7f10ecc786703fe0a6a4b952189f908707980ba8f3c8975a760962","impliedFormat":1},{"version":"5e1c4c362065a6b95ff952c0eab010f04dcd2c3494e813b493ecfd4fcb9fc0d8","impliedFormat":1},{"version":"68d73b4a11549f9c0b7d352d10e91e5dca8faa3322bfb77b661839c42b1ddec7","impliedFormat":1},{"version":"5efce4fc3c29ea84e8928f97adec086e3dc876365e0982cc8479a07954a3efd4","impliedFormat":1},{"version":"feecb1be483ed332fad555aff858affd90a48ab19ba7272ee084704eb7167569","impliedFormat":1},{"version":"ee7bad0c15b58988daa84371e0b89d313b762ab83cb5b31b8a2d1162e8eb41c2","impliedFormat":1},{"version":"080941d9f9ff9307f7e27a83bcd888b7c8270716c39af943532438932ec1d0b9","affectsGlobalScope":true,"impliedFormat":1},{"version":"2e80ee7a49e8ac312cc11b77f1475804bee36b3b2bc896bead8b6e1266befb43","affectsGlobalScope":true,"impliedFormat":1},{"version":"c57796738e7f83dbc4b8e65132f11a377649c00dd3eee333f672b8f0a6bea671","affectsGlobalScope":true,"impliedFormat":1},{"version":"dc2df20b1bcdc8c2d34af4926e2c3ab15ffe1160a63e58b7e09833f616efff44","affectsGlobalScope":true,"impliedFormat":1},{"version":"515d0b7b9bea2e31ea4ec968e9edd2c39d3eebf4a2d5cbd04e88639819ae3b71","affectsGlobalScope":true,"impliedFormat":1},{"version":"0559b1f683ac7505ae451f9a96ce4c3c92bdc71411651ca6ddb0e88baaaad6a3","affectsGlobalScope":true,"impliedFormat":1},{"version":"0dc1e7ceda9b8b9b455c3a2d67b0412feab00bd2f66656cd8850e8831b08b537","affectsGlobalScope":true,"impliedFormat":1},{"version":"ce691fb9e5c64efb9547083e4a34091bcbe5bdb41027e310ebba8f7d96a98671","affectsGlobalScope":true,"impliedFormat":1},{"version":"8d697a2a929a5fcb38b7a65594020fcef05ec1630804a33748829c5ff53640d0","affectsGlobalScope":true,"impliedFormat":1},{"version":"4ff2a353abf8a80ee399af572debb8faab2d33ad38c4b4474cff7f26e7653b8d","affectsGlobalScope":true,"impliedFormat":1},{"version":"fb0f136d372979348d59b3f5020b4cdb81b5504192b1cacff5d1fbba29378aa1","affectsGlobalScope":true,"impliedFormat":1},{"version":"d15bea3d62cbbdb9797079416b8ac375ae99162a7fba5de2c6c505446486ac0a","affectsGlobalScope":true,"impliedFormat":1},{"version":"68d18b664c9d32a7336a70235958b8997ebc1c3b8505f4f1ae2b7e7753b87618","affectsGlobalScope":true,"impliedFormat":1},{"version":"eb3d66c8327153d8fa7dd03f9c58d351107fe824c79e9b56b462935176cdf12a","affectsGlobalScope":true,"impliedFormat":1},{"version":"38f0219c9e23c915ef9790ab1d680440d95419ad264816fa15009a8851e79119","affectsGlobalScope":true,"impliedFormat":1},{"version":"69ab18c3b76cd9b1be3d188eaf8bba06112ebbe2f47f6c322b5105a6fbc45a2e","affectsGlobalScope":true,"impliedFormat":1},{"version":"a680117f487a4d2f30ea46f1b4b7f58bef1480456e18ba53ee85c2746eeca012","affectsGlobalScope":true,"impliedFormat":1},{"version":"2f11ff796926e0832f9ae148008138ad583bd181899ab7dd768a2666700b1893","affectsGlobalScope":true,"impliedFormat":1},{"version":"4de680d5bb41c17f7f68e0419412ca23c98d5749dcaaea1896172f06435891fc","affectsGlobalScope":true,"impliedFormat":1},{"version":"954296b30da6d508a104a3a0b5d96b76495c709785c1d11610908e63481ee667","affectsGlobalScope":true,"impliedFormat":1},{"version":"ac9538681b19688c8eae65811b329d3744af679e0bdfa5d842d0e32524c73e1c","affectsGlobalScope":true,"impliedFormat":1},{"version":"0a969edff4bd52585473d24995c5ef223f6652d6ef46193309b3921d65dd4376","affectsGlobalScope":true,"impliedFormat":1},{"version":"9e9fbd7030c440b33d021da145d3232984c8bb7916f277e8ffd3dc2e3eae2bdb","affectsGlobalScope":true,"impliedFormat":1},{"version":"811ec78f7fefcabbda4bfa93b3eb67d9ae166ef95f9bff989d964061cbf81a0c","affectsGlobalScope":true,"impliedFormat":1},{"version":"717937616a17072082152a2ef351cb51f98802fb4b2fdabd32399843875974ca","affectsGlobalScope":true,"impliedFormat":1},{"version":"d7e7d9b7b50e5f22c915b525acc5a49a7a6584cf8f62d0569e557c5cfc4b2ac2","affectsGlobalScope":true,"impliedFormat":1},{"version":"71c37f4c9543f31dfced6c7840e068c5a5aacb7b89111a4364b1d5276b852557","affectsGlobalScope":true,"impliedFormat":1},{"version":"576711e016cf4f1804676043e6a0a5414252560eb57de9faceee34d79798c850","affectsGlobalScope":true,"impliedFormat":1},{"version":"89c1b1281ba7b8a96efc676b11b264de7a8374c5ea1e6617f11880a13fc56dc6","affectsGlobalScope":true,"impliedFormat":1},{"version":"74f7fa2d027d5b33eb0471c8e82a6c87216223181ec31247c357a3e8e2fddc5b","affectsGlobalScope":true,"impliedFormat":1},{"version":"d6d7ae4d1f1f3772e2a3cde568ed08991a8ae34a080ff1151af28b7f798e22ca","affectsGlobalScope":true,"impliedFormat":1},{"version":"063600664504610fe3e99b717a1223f8b1900087fab0b4cad1496a114744f8df","affectsGlobalScope":true,"impliedFormat":1},{"version":"934019d7e3c81950f9a8426d093458b65d5aff2c7c1511233c0fd5b941e608ab","affectsGlobalScope":true,"impliedFormat":1},{"version":"52ada8e0b6e0482b728070b7639ee42e83a9b1c22d205992756fe020fd9f4a47","affectsGlobalScope":true,"impliedFormat":1},{"version":"3bdefe1bfd4d6dee0e26f928f93ccc128f1b64d5d501ff4a8cf3c6371200e5e6","affectsGlobalScope":true,"impliedFormat":1},{"version":"59fb2c069260b4ba00b5643b907ef5d5341b167e7d1dbf58dfd895658bda2867","affectsGlobalScope":true,"impliedFormat":1},{"version":"639e512c0dfc3fad96a84caad71b8834d66329a1f28dc95e3946c9b58176c73a","affectsGlobalScope":true,"impliedFormat":1},{"version":"368af93f74c9c932edd84c58883e736c9e3d53cec1fe24c0b0ff451f529ceab1","affectsGlobalScope":true,"impliedFormat":1},{"version":"af3dd424cf267428f30ccfc376f47a2c0114546b55c44d8c0f1d57d841e28d74","affectsGlobalScope":true,"impliedFormat":1},{"version":"995c005ab91a498455ea8dfb63aa9f83fa2ea793c3d8aa344be4a1678d06d399","affectsGlobalScope":true,"impliedFormat":1},{"version":"959d36cddf5e7d572a65045b876f2956c973a586da58e5d26cde519184fd9b8a","affectsGlobalScope":true,"impliedFormat":1},{"version":"965f36eae237dd74e6cca203a43e9ca801ce38824ead814728a2807b1910117d","affectsGlobalScope":true,"impliedFormat":1},{"version":"3925a6c820dcb1a06506c90b1577db1fdbf7705d65b62b99dce4be75c637e26b","affectsGlobalScope":true,"impliedFormat":1},{"version":"0a3d63ef2b853447ec4f749d3f368ce642264246e02911fcb1590d8c161b8005","affectsGlobalScope":true,"impliedFormat":1},{"version":"8cdf8847677ac7d20486e54dd3fcf09eda95812ac8ace44b4418da1bbbab6eb8","affectsGlobalScope":true,"impliedFormat":1},{"version":"8444af78980e3b20b49324f4a16ba35024fef3ee069a0eb67616ea6ca821c47a","affectsGlobalScope":true,"impliedFormat":1},{"version":"3287d9d085fbd618c3971944b65b4be57859f5415f495b33a6adc994edd2f004","affectsGlobalScope":true,"impliedFormat":1},{"version":"b4b67b1a91182421f5df999988c690f14d813b9850b40acd06ed44691f6727ad","affectsGlobalScope":true,"impliedFormat":1},{"version":"8e7f8264d0fb4c5339605a15daadb037bf238c10b654bb3eee14208f860a32ea","affectsGlobalScope":true,"impliedFormat":1},{"version":"782dec38049b92d4e85c1585fbea5474a219c6984a35b004963b00beb1aab538","affectsGlobalScope":true,"impliedFormat":1},{"version":"2343ec253c90c370449755739733f5f429f58cffdb51a50977bb4a042012fa8f","impliedFormat":99},{"version":"138724776c2b7fdf331300e22dfdfb8890d0400164f4996c02062e4e5d117927","impliedFormat":99},{"version":"82065c5512d8d6f81b26cf13ea9ecd3e558be9560f7b5c62260858219ecd87f7","impliedFormat":99},{"version":"ed17ed1b2bcf384c88bc6cec6b427989b98db99fc7ad35a50605501a463bbc53","impliedFormat":99},{"version":"82bf4efcca8ab8764a91ac126c0af605ab6717ee94b2316461b5fa388b27e165","impliedFormat":99},{"version":"82ffc9a1d95766c8f6f6bb4316b1d83e9d6a1d4ec41057d1a897cca70176bfc1","impliedFormat":99},{"version":"3f5eeb0a84713ccf640b9a6af4629e006f59d7629abc3fc95af2efb062fd0b83","impliedFormat":99},{"version":"66a0cb4d019dd780c2fb5c2942778929ec55715bb5a0f3b80aac4c0b92e35d16","impliedFormat":99},{"version":"79f60cb56c2b1ec7942b38f375e32042b48ce8dc68e4615ba48a1b38acfda55a","impliedFormat":99},{"version":"f34a88138f0071148ce88731c81b3c1038048c5266df153980c5c8a16b73ae6b","signature":"c10c0a648492e679e9980062f3fe9254f483491629fc7f26443ef95d47055605","impliedFormat":99},{"version":"66376ca34f83d1c20a2436b79baa04aaf30f65aa0bd6bcab23d082144bff30fa","signature":"051a4253a49187313ea21e2cda9508cf2fe78d76fa12a6118c87d9f6b7d29cdf","impliedFormat":99},{"version":"01ca08d4ccac3c39102cd77bff63269fd788d89dd3fb6f7157a3975a0e5f492d","signature":"07f907e46fe697a486e71e4eef903fa23817033eccdae25d3acc26306c8ebd7e","impliedFormat":99}],"root":[[68,71]],"options":{"composite":true,"declaration":true,"declarationMap":true,"exactOptionalPropertyTypes":true,"module":199,"noUncheckedIndexedAccess":true,"outDir":"./","rootDir":"../src","skipLibCheck":true,"sourceMap":true,"strict":true,"target":9,"tsBuildInfoFile":"./.tsbuildinfo","verbatimModuleSyntax":true},"referencedMap":[[63,1],[64,2],[62,1],[67,3],[66,4],[65,4],[61,5],[71,6],[70,7],[69,8],[68,8]],"latestChangedDtsFile":"./index.d.ts","version":"5.9.3"}
|
package/dist/index.d.ts
CHANGED
|
@@ -1,7 +1,9 @@
|
|
|
1
1
|
import { RestResource, ServiceApi, type Identifier, type QueryParams, type RequestOptions } from "@faiber/sdk-core";
|
|
2
2
|
import type * as T from "./types.js";
|
|
3
3
|
type R<E extends T.ProfileRecord, C, U, L, S> = RestResource<E, C, U, L, S>;
|
|
4
|
+
import { ProfileOperations } from "./operations.js";
|
|
4
5
|
export declare class ProfileApi extends ServiceApi {
|
|
6
|
+
readonly operations: ProfileOperations;
|
|
5
7
|
readonly profiles: RestResource<T.Profile, T.CreateProfileInput, T.UpdateProfileInput, T.ProfileListResponse, T.ProfileResponse>;
|
|
6
8
|
readonly countries: R<T.Country, T.CreateCountryInput, T.UpdateCountryInput, T.CountryListResponse, T.CountryResponse>;
|
|
7
9
|
readonly provinces: R<T.Province, T.CreateProvinceInput, T.UpdateProvinceInput, T.ProvinceListResponse, T.ProvinceResponse>;
|
|
@@ -14,14 +16,18 @@ export declare class ProfileApi extends ServiceApi {
|
|
|
14
16
|
byRole(role: T.ProfileRole, params?: QueryParams, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.ProfileListResponse, any, {}>>;
|
|
15
17
|
full(id: Identifier, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.FullProfileResponse, any, {}>>;
|
|
16
18
|
admin(id: Identifier, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.AdminProfileResponse, any, {}>>;
|
|
17
|
-
media(id: Identifier, key
|
|
19
|
+
media(id: Identifier, key: string, options?: RequestOptions): Promise<import("axios").AxiosResponse<Blob, any, {}>>;
|
|
20
|
+
updateProfile(id: Identifier, data: T.ProfilePatchInput, options?: RequestOptions<T.ProfilePatchInput>): Promise<import("axios").AxiosResponse<T.ProfileResponse, T.ProfilePatchInput, {}>>;
|
|
18
21
|
setStatus(id: Identifier, data: T.ProfileStatusInput, options?: RequestOptions<T.ProfileStatusInput>): Promise<import("axios").AxiosResponse<T.ProfileResponse, T.ProfileStatusInput, {}>>;
|
|
19
22
|
personalInformation(id: Identifier, data: T.PersonalInformationInput, options?: RequestOptions<T.PersonalInformationInput>): Promise<import("axios").AxiosResponse<T.ProfileResponse, T.PersonalInformationInput, {}>>;
|
|
20
|
-
|
|
21
|
-
|
|
23
|
+
/** @deprecated The profile service has never registered an education-information route. Store custom education data through updateProfile properties instead. */
|
|
24
|
+
educationInformation(_id: Identifier, _data: T.EducationInformationInput, _options?: RequestOptions<T.EducationInformationInput>): never;
|
|
25
|
+
setProperties(id: Identifier, properties: T.ProfileProperties, options?: RequestOptions<T.ProfilePropertiesInput>): Promise<import("axios").AxiosResponse<T.ProfilePropertiesResponse, T.ProfilePropertiesInput, {}>>;
|
|
22
26
|
uploadAvatar(id: Identifier, file: Blob, options?: RequestOptions<FormData>): Promise<import("axios").AxiosResponse<T.ProfileMediaResponse, FormData, {}>>;
|
|
23
|
-
deleteAvatar(id: Identifier, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.
|
|
27
|
+
deleteAvatar(id: Identifier, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.ProfileMediaDeleteResponse, any, {}>>;
|
|
24
28
|
}
|
|
25
29
|
export * from "./types.js";
|
|
26
30
|
export * from "@faiber/sdk-core";
|
|
31
|
+
export * from "./operations.js";
|
|
32
|
+
export * from "./operations.types.js";
|
|
27
33
|
//# sourceMappingURL=index.d.ts.map
|
package/dist/index.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,YAAY,EAAE,UAAU,
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"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"}
|
package/dist/index.js
CHANGED
|
@@ -1,25 +1,31 @@
|
|
|
1
|
-
import { RestResource, ServiceApi, multipart } from "@faiber/sdk-core";
|
|
1
|
+
import { RestResource, ServiceApi, UnsupportedOperationError, multipart } from "@faiber/sdk-core";
|
|
2
|
+
import { ProfileOperations } from "./operations.js";
|
|
2
3
|
export class ProfileApi extends ServiceApi {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
4
|
+
operations = new ProfileOperations(this.client);
|
|
5
|
+
profiles = new RestResource(this.client, "/api/v1/profile", { supported: ["list", "show", "update", "delete"] });
|
|
6
|
+
countries = new RestResource(this.client, "/api/v1/country", { supported: ["list", "show", "create", "update", "replace", "delete"] });
|
|
7
|
+
provinces = new RestResource(this.client, "/api/v1/province", { supported: ["list", "show", "create", "update", "replace", "delete"] });
|
|
8
|
+
cities = new RestResource(this.client, "/api/v1/city", { supported: ["list", "show", "create", "update", "replace", "delete"] });
|
|
9
|
+
settings = new RestResource(this.client, "/api/v1/setting", { supported: ["list", "create"] });
|
|
10
|
+
surveys = new RestResource(this.client, "/api/v1/survey", { supported: ["list", "create"] });
|
|
11
|
+
work = new RestResource(this.client, "/api/v1/work", { supported: [] });
|
|
12
|
+
education = new RestResource(this.client, "/api/v1/education", { supported: [] });
|
|
13
|
+
greetings = new RestResource(this.client, "/api/v1/greetings", { supported: [] });
|
|
12
14
|
byRole(role, params, options) { return this.client.get(`/api/v1/profile/${role}`, params, options); }
|
|
13
15
|
full(id, options) { return this.client.get(`/api/v1/profile/${encodeURIComponent(id)}/full`, undefined, options); }
|
|
14
16
|
admin(id, options) { return this.client.get(`/api/v1/profile/${encodeURIComponent(id)}/admin`, undefined, options); }
|
|
15
|
-
media(id, key, options) { return this.client.get(`/api/v1/profile/${encodeURIComponent(id)}/media`,
|
|
17
|
+
media(id, key, options) { return this.client.get(`/api/v1/profile/${encodeURIComponent(id)}/media`, { key }, { responseType: "blob", ...options }); }
|
|
18
|
+
updateProfile(id, data, options) { return this.client.patch(`/api/v1/profile/${encodeURIComponent(id)}`, data, options); }
|
|
16
19
|
setStatus(id, data, options) { return this.client.put(`/api/v1/profile/${encodeURIComponent(id)}/status`, data, options); }
|
|
17
20
|
personalInformation(id, data, options) { return this.client.put(`/api/v1/profile/update/personal-information/${encodeURIComponent(id)}`, data, options); }
|
|
18
|
-
|
|
19
|
-
|
|
21
|
+
/** @deprecated The profile service has never registered an education-information route. Store custom education data through updateProfile properties instead. */
|
|
22
|
+
educationInformation(_id, _data, _options) { throw new UnsupportedOperationError("update", "/api/v1/profile/update/education-information/{uuid}"); }
|
|
23
|
+
setProperties(id, properties, options) { return this.client.put(`/api/v1/profile/${encodeURIComponent(id)}/properties`, { properties }, options); }
|
|
20
24
|
uploadAvatar(id, file, options) { return this.client.post(`/api/v1/profile/${encodeURIComponent(id)}/avatar`, multipart({ file }), options); }
|
|
21
25
|
deleteAvatar(id, options) { return this.client.delete(`/api/v1/profile/${encodeURIComponent(id)}/avatar`, options); }
|
|
22
26
|
}
|
|
23
27
|
export * from "./types.js";
|
|
24
28
|
export * from "@faiber/sdk-core";
|
|
29
|
+
export * from "./operations.js";
|
|
30
|
+
export * from "./operations.types.js";
|
|
25
31
|
//# sourceMappingURL=index.js.map
|
package/dist/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,YAAY,EAAE,UAAU,EAAE,SAAS,EAA0D,MAAM,kBAAkB,CAAC;
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"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"}
|
|
@@ -0,0 +1,235 @@
|
|
|
1
|
+
import { ServiceApi, type Identifier, type RequestOptions } from "@faiber/sdk-core";
|
|
2
|
+
import type * as T from "./operations.types.js";
|
|
3
|
+
export declare class ProfileOperations extends ServiceApi {
|
|
4
|
+
/** GET /api/openapi.json; permission: public/session-derived. */
|
|
5
|
+
routerOpenapiJsonGet(options?: RequestOptions): Promise<import("axios").AxiosResponse<T.RouterOpenapiJsonGetResponse, unknown, {}>>;
|
|
6
|
+
/** POST /api/v1/address/get; permission: public/session-derived. */
|
|
7
|
+
optionAddressGetPost(data: T.OptionAddressGetPostInput, options?: RequestOptions<T.OptionAddressGetPostInput>): Promise<import("axios").AxiosResponse<T.OptionAddressGetPostResponse, T.OptionAddressGetPostInput, {}>>;
|
|
8
|
+
/** GET /api/v1/auth/self; permission: public/session-derived. */
|
|
9
|
+
sessionGetSelfGet(options?: RequestOptions): Promise<import("axios").AxiosResponse<T.SessionGetSelfGetResponse, unknown, {}>>;
|
|
10
|
+
/** GET /api/v1/city; permission: city:read. */
|
|
11
|
+
cityIndexGet(params?: T.CityIndexGetQuery, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.CityIndexGetResponse, unknown, {}>>;
|
|
12
|
+
/** POST /api/v1/city; permission: city:create. */
|
|
13
|
+
cityStorePost(data: T.CityStorePostInput, options?: RequestOptions<T.CityStorePostInput>): Promise<import("axios").AxiosResponse<T.CityStorePostResponse, T.CityStorePostInput, {}>>;
|
|
14
|
+
/** DELETE /api/v1/city/{id}; permission: city:delete. */
|
|
15
|
+
cityDestroyDelete(id: Identifier, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.CityDestroyDeleteResponse, unknown, {}>>;
|
|
16
|
+
/** GET /api/v1/city/{id}; permission: city:read. */
|
|
17
|
+
cityShowGet(id: Identifier, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.CityShowGetResponse, unknown, {}>>;
|
|
18
|
+
/** PATCH /api/v1/city/{id}; permission: city:update. */
|
|
19
|
+
cityUpdatePatch(id: Identifier, data: T.CityUpdatePatchInput, options?: RequestOptions<T.CityUpdatePatchInput>): Promise<import("axios").AxiosResponse<T.CityUpdatePatchResponse, T.CityUpdatePatchInput, {}>>;
|
|
20
|
+
/** PUT /api/v1/city/{id}; permission: city:update. */
|
|
21
|
+
cityUpdatePut(id: Identifier, data: T.CityUpdatePutInput, options?: RequestOptions<T.CityUpdatePutInput>): Promise<import("axios").AxiosResponse<T.CityUpdatePutResponse, T.CityUpdatePutInput, {}>>;
|
|
22
|
+
/** DELETE /api/v1/city/force/{id}; permission: city:delete. */
|
|
23
|
+
cityForceDestroyDelete(id: Identifier, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.CityForceDestroyDeleteResponse, unknown, {}>>;
|
|
24
|
+
/** GET /api/v1/city/undo/{id}; permission: city:delete. */
|
|
25
|
+
cityRestoreGet(id: Identifier, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.CityRestoreGetResponse, unknown, {}>>;
|
|
26
|
+
/** GET /api/v1/country; permission: country:read. */
|
|
27
|
+
countryIndexGet(params?: T.CountryIndexGetQuery, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.CountryIndexGetResponse, unknown, {}>>;
|
|
28
|
+
/** POST /api/v1/country; permission: country:create. */
|
|
29
|
+
countryStorePost(data: T.CountryStorePostInput, options?: RequestOptions<T.CountryStorePostInput>): Promise<import("axios").AxiosResponse<T.CountryStorePostResponse, T.CountryStorePostInput, {}>>;
|
|
30
|
+
/** DELETE /api/v1/country/{id}; permission: country:delete. */
|
|
31
|
+
countryDestroyDelete(id: Identifier, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.CountryDestroyDeleteResponse, unknown, {}>>;
|
|
32
|
+
/** GET /api/v1/country/{id}; permission: country:read. */
|
|
33
|
+
countryShowGet(id: Identifier, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.CountryShowGetResponse, unknown, {}>>;
|
|
34
|
+
/** PATCH /api/v1/country/{id}; permission: country:update. */
|
|
35
|
+
countryUpdatePatch(id: Identifier, data: T.CountryUpdatePatchInput, options?: RequestOptions<T.CountryUpdatePatchInput>): Promise<import("axios").AxiosResponse<T.CountryUpdatePatchResponse, T.CountryUpdatePatchInput, {}>>;
|
|
36
|
+
/** PUT /api/v1/country/{id}; permission: country:update. */
|
|
37
|
+
countryUpdatePut(id: Identifier, data: T.CountryUpdatePutInput, options?: RequestOptions<T.CountryUpdatePutInput>): Promise<import("axios").AxiosResponse<T.CountryUpdatePutResponse, T.CountryUpdatePutInput, {}>>;
|
|
38
|
+
/** DELETE /api/v1/country/force/{id}; permission: country:delete. */
|
|
39
|
+
countryForceDestroyDelete(id: Identifier, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.CountryForceDestroyDeleteResponse, unknown, {}>>;
|
|
40
|
+
/** GET /api/v1/country/undo/{id}; permission: country:delete. */
|
|
41
|
+
countryRestoreGet(id: Identifier, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.CountryRestoreGetResponse, unknown, {}>>;
|
|
42
|
+
/** GET /api/v1/dependency; permission: dependency:read. */
|
|
43
|
+
optionDependencyGet(options?: RequestOptions): Promise<import("axios").AxiosResponse<T.OptionDependencyGetResponse, unknown, {}>>;
|
|
44
|
+
/** GET /api/v1/identity; permission: public/session-derived. */
|
|
45
|
+
optionIdentityGet(options?: RequestOptions): Promise<import("axios").AxiosResponse<T.OptionIdentityGetResponse, unknown, {}>>;
|
|
46
|
+
/** GET /api/v1/integration/docs; permission: admin:integration:read. */
|
|
47
|
+
integrationIntegrationDocsShowGet(options?: RequestOptions): Promise<import("axios").AxiosResponse<T.IntegrationIntegrationDocsShowGetResponse, unknown, {}>>;
|
|
48
|
+
/** GET /api/v1/integration/flow; permission: public/session-derived. */
|
|
49
|
+
integrationFlowIntegrationShowGet(options?: RequestOptions): Promise<import("axios").AxiosResponse<T.IntegrationFlowIntegrationShowGetResponse, unknown, {}>>;
|
|
50
|
+
/** POST /api/v1/log-action; permission: log_action:create. */
|
|
51
|
+
logActionStorePost(data: T.LogActionStorePostInput, options?: RequestOptions<T.LogActionStorePostInput>): Promise<import("axios").AxiosResponse<T.LogActionStorePostResponse, T.LogActionStorePostInput, {}>>;
|
|
52
|
+
/** POST /api/v1/log-action/{slug}; permission: log_action:create. */
|
|
53
|
+
logActionStoreSlugPost(slug: Identifier, data: T.LogActionStoreSlugPostInput, options?: RequestOptions<T.LogActionStoreSlugPostInput>): Promise<import("axios").AxiosResponse<T.LogActionStoreSlugPostResponse, T.LogActionStoreSlugPostInput, {}>>;
|
|
54
|
+
/** POST /api/v1/log-action/direct/{slug}; permission: public/session-derived. */
|
|
55
|
+
logActionStoreDirectPost(slug: Identifier, data: T.LogActionStoreDirectPostInput, options?: RequestOptions<T.LogActionStoreDirectPostInput>): Promise<import("axios").AxiosResponse<T.LogActionStoreDirectPostResponse, T.LogActionStoreDirectPostInput, {}>>;
|
|
56
|
+
/** GET /api/v1/logger; permission: public/session-derived. */
|
|
57
|
+
loggerIndexGet(options?: RequestOptions): Promise<import("axios").AxiosResponse<T.LoggerIndexGetResponse, unknown, {}>>;
|
|
58
|
+
/** GET /api/v1/logger/{log}; permission: public/session-derived. */
|
|
59
|
+
loggerShowGet(log: Identifier, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.LoggerShowGetResponse, unknown, {}>>;
|
|
60
|
+
/** POST /api/v1/parent/get; permission: public/session-derived. */
|
|
61
|
+
optionParentGetPost(data: T.OptionParentGetPostInput, options?: RequestOptions<T.OptionParentGetPostInput>): Promise<import("axios").AxiosResponse<T.OptionParentGetPostResponse, T.OptionParentGetPostInput, {}>>;
|
|
62
|
+
/** GET /api/v1/profile; permission: /api/v1/profile, profile:read. */
|
|
63
|
+
profileIndexGet(params?: T.ProfileIndexGetQuery, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.ProfileIndexGetResponse, unknown, {}>>;
|
|
64
|
+
/** GET /api/v1/profile-property-definition; permission: profile_property_definition:read. */
|
|
65
|
+
profilePropertyIndexGet(params?: T.ProfilePropertyIndexGetQuery, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.ProfilePropertyIndexGetResponse, unknown, {}>>;
|
|
66
|
+
/** POST /api/v1/profile-property-definition; permission: profile_property_definition:create. */
|
|
67
|
+
profilePropertyStorePost(data: T.ProfilePropertyStorePostInput, options?: RequestOptions<T.ProfilePropertyStorePostInput>): Promise<import("axios").AxiosResponse<T.ProfilePropertyStorePostResponse, T.ProfilePropertyStorePostInput, {}>>;
|
|
68
|
+
/** DELETE /api/v1/profile-property-definition/{id}; permission: profile_property_definition:delete. */
|
|
69
|
+
profilePropertyDestroyDelete(id: Identifier, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.ProfilePropertyDestroyDeleteResponse, unknown, {}>>;
|
|
70
|
+
/** GET /api/v1/profile-property-definition/{id}; permission: profile_property_definition:read. */
|
|
71
|
+
profilePropertyShowGet(id: Identifier, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.ProfilePropertyShowGetResponse, unknown, {}>>;
|
|
72
|
+
/** PATCH /api/v1/profile-property-definition/{id}; permission: profile_property_definition:update. */
|
|
73
|
+
profilePropertyUpdatePatch(id: Identifier, data: T.ProfilePropertyUpdatePatchInput, options?: RequestOptions<T.ProfilePropertyUpdatePatchInput>): Promise<import("axios").AxiosResponse<T.ProfilePropertyUpdatePatchResponse, T.ProfilePropertyUpdatePatchInput, {}>>;
|
|
74
|
+
/** PUT /api/v1/profile-property-definition/{id}; permission: profile_property_definition:update. */
|
|
75
|
+
profilePropertyUpdatePut(id: Identifier, data: T.ProfilePropertyUpdatePutInput, options?: RequestOptions<T.ProfilePropertyUpdatePutInput>): Promise<import("axios").AxiosResponse<T.ProfilePropertyUpdatePutResponse, T.ProfilePropertyUpdatePutInput, {}>>;
|
|
76
|
+
/** DELETE /api/v1/profile-property-definition/force/{id}; permission: profile_property_definition:force_delete. */
|
|
77
|
+
profilePropertyForceDestroyDelete(id: Identifier, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.ProfilePropertyForceDestroyDeleteResponse, unknown, {}>>;
|
|
78
|
+
/** GET /api/v1/profile-property-definition/undo/{id}; permission: profile_property_definition:restore. */
|
|
79
|
+
profilePropertyRestoreGet(id: Identifier, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.ProfilePropertyRestoreGetResponse, unknown, {}>>;
|
|
80
|
+
/** DELETE /api/v1/profile/{student_uuid}/delete/parent/{parent_uuid}; permission: profile:update. */
|
|
81
|
+
profileDeleteParentDelete(studentUuid: Identifier, parentUuid: Identifier, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.ProfileDeleteParentDeleteResponse, unknown, {}>>;
|
|
82
|
+
/** DELETE /api/v1/profile/{uuid}; permission: profile:delete. */
|
|
83
|
+
profileDestroyDelete(uuid: Identifier, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.ProfileDestroyDeleteResponse, unknown, {}>>;
|
|
84
|
+
/** GET /api/v1/profile/{uuid}; permission: profile:read. */
|
|
85
|
+
profileShowGet(uuid: Identifier, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.ProfileShowGetResponse, unknown, {}>>;
|
|
86
|
+
/** PATCH /api/v1/profile/{uuid}; permission: profile:update. */
|
|
87
|
+
profileUpdatePatch(uuid: Identifier, data: T.ProfileUpdatePatchInput, options?: RequestOptions<T.ProfileUpdatePatchInput>): Promise<import("axios").AxiosResponse<T.ProfileUpdatePatchResponse, T.ProfileUpdatePatchInput, {}>>;
|
|
88
|
+
/** GET /api/v1/profile/{uuid}/admin; permission: profile:read_admin. */
|
|
89
|
+
profileShowAdminGet(uuid: Identifier, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.ProfileShowAdminGetResponse, unknown, {}>>;
|
|
90
|
+
/** DELETE /api/v1/profile/{uuid}/avatar; permission: public/session-derived. */
|
|
91
|
+
profileAvatarDeleteDelete(uuid: Identifier, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.ProfileAvatarDeleteDeleteResponse, unknown, {}>>;
|
|
92
|
+
/** POST /api/v1/profile/{uuid}/avatar; permission: public/session-derived. */
|
|
93
|
+
profileAvatarStorePost(uuid: Identifier, data: T.ProfileAvatarStorePostInput, options?: RequestOptions<T.ProfileAvatarStorePostInput>): Promise<import("axios").AxiosResponse<T.ProfileAvatarStorePostResponse, T.ProfileAvatarStorePostInput, {}>>;
|
|
94
|
+
/** DELETE /api/v1/profile/{uuid}/delete/address/{title}; permission: profile:update. */
|
|
95
|
+
profileDeleteAddressDelete(uuid: Identifier, title: Identifier, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.ProfileDeleteAddressDeleteResponse, unknown, {}>>;
|
|
96
|
+
/** PATCH /api/v1/profile/{uuid}/employee-type; permission: profile:update_employee_type. */
|
|
97
|
+
profileUpdateEmployeeTypePatch(uuid: Identifier, data: T.ProfileUpdateEmployeeTypePatchInput, options?: RequestOptions<T.ProfileUpdateEmployeeTypePatchInput>): Promise<import("axios").AxiosResponse<T.ProfileUpdateEmployeeTypePatchResponse, T.ProfileUpdateEmployeeTypePatchInput, {}>>;
|
|
98
|
+
/** PUT /api/v1/profile/{uuid}/employee-type; permission: profile:update_employee_type. */
|
|
99
|
+
profileUpdateEmployeeTypePut(uuid: Identifier, data: T.ProfileUpdateEmployeeTypePutInput, options?: RequestOptions<T.ProfileUpdateEmployeeTypePutInput>): Promise<import("axios").AxiosResponse<T.ProfileUpdateEmployeeTypePutResponse, T.ProfileUpdateEmployeeTypePutInput, {}>>;
|
|
100
|
+
/** PATCH /api/v1/profile/{uuid}/freemium-session-limit; permission: profile:freemium_session_limit. */
|
|
101
|
+
profileUpdateFreemiumPatch(uuid: Identifier, data: T.ProfileUpdateFreemiumPatchInput, options?: RequestOptions<T.ProfileUpdateFreemiumPatchInput>): Promise<import("axios").AxiosResponse<T.ProfileUpdateFreemiumPatchResponse, T.ProfileUpdateFreemiumPatchInput, {}>>;
|
|
102
|
+
/** PUT /api/v1/profile/{uuid}/freemium-session-limit; permission: profile:freemium_session_limit. */
|
|
103
|
+
profileUpdateFreemiumPut(uuid: Identifier, data: T.ProfileUpdateFreemiumPutInput, options?: RequestOptions<T.ProfileUpdateFreemiumPutInput>): Promise<import("axios").AxiosResponse<T.ProfileUpdateFreemiumPutResponse, T.ProfileUpdateFreemiumPutInput, {}>>;
|
|
104
|
+
/** GET /api/v1/profile/{uuid}/full; permission: profile:read. */
|
|
105
|
+
profileShowFullGet(uuid: Identifier, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.ProfileShowFullGetResponse, unknown, {}>>;
|
|
106
|
+
/** GET /api/v1/profile/{uuid}/media; permission: public/session-derived. */
|
|
107
|
+
profileMediaShowGet(uuid: Identifier, params?: T.ProfileMediaShowGetQuery, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.ProfileMediaShowGetResponse, unknown, {}>>;
|
|
108
|
+
/** PATCH /api/v1/profile/{uuid}/properties; permission: profile:update. */
|
|
109
|
+
profileUpdatePropertiesPatch(uuid: Identifier, data: T.ProfileUpdatePropertiesPatchInput, options?: RequestOptions<T.ProfileUpdatePropertiesPatchInput>): Promise<import("axios").AxiosResponse<T.ProfileUpdatePropertiesPatchResponse, T.ProfileUpdatePropertiesPatchInput, {}>>;
|
|
110
|
+
/** PUT /api/v1/profile/{uuid}/properties; permission: profile:update. */
|
|
111
|
+
profileUpdatePropertiesPut(uuid: Identifier, data: T.ProfileUpdatePropertiesPutInput, options?: RequestOptions<T.ProfileUpdatePropertiesPutInput>): Promise<import("axios").AxiosResponse<T.ProfileUpdatePropertiesPutResponse, T.ProfileUpdatePropertiesPutInput, {}>>;
|
|
112
|
+
/** PATCH /api/v1/profile/{uuid}/status; permission: profile:update_status. */
|
|
113
|
+
profileUpdateStatusPatch(uuid: Identifier, data: T.ProfileUpdateStatusPatchInput, options?: RequestOptions<T.ProfileUpdateStatusPatchInput>): Promise<import("axios").AxiosResponse<T.ProfileUpdateStatusPatchResponse, T.ProfileUpdateStatusPatchInput, {}>>;
|
|
114
|
+
/** PUT /api/v1/profile/{uuid}/status; permission: profile:update_status. */
|
|
115
|
+
profileUpdateStatusPut(uuid: Identifier, data: T.ProfileUpdateStatusPutInput, options?: RequestOptions<T.ProfileUpdateStatusPutInput>): Promise<import("axios").AxiosResponse<T.ProfileUpdateStatusPutResponse, T.ProfileUpdateStatusPutInput, {}>>;
|
|
116
|
+
/** GET /api/v1/profile/accountant; permission: public/session-derived. */
|
|
117
|
+
profileAccountantIndexGet(options?: RequestOptions): Promise<import("axios").AxiosResponse<T.ProfileAccountantIndexGetResponse, unknown, {}>>;
|
|
118
|
+
/** PATCH /api/v1/profile/add/address/{uuid}; permission: profile:update. */
|
|
119
|
+
profileAddAddressPatch(uuid: Identifier, data: T.ProfileAddAddressPatchInput, options?: RequestOptions<T.ProfileAddAddressPatchInput>): Promise<import("axios").AxiosResponse<T.ProfileAddAddressPatchResponse, T.ProfileAddAddressPatchInput, {}>>;
|
|
120
|
+
/** PUT /api/v1/profile/add/address/{uuid}; permission: profile:update. */
|
|
121
|
+
profileAddAddressPut(uuid: Identifier, data: T.ProfileAddAddressPutInput, options?: RequestOptions<T.ProfileAddAddressPutInput>): Promise<import("axios").AxiosResponse<T.ProfileAddAddressPutResponse, T.ProfileAddAddressPutInput, {}>>;
|
|
122
|
+
/** PATCH /api/v1/profile/add/app/{uuid}; permission: profile:update. */
|
|
123
|
+
profileAddAppPatch(uuid: Identifier, data: T.ProfileAddAppPatchInput, options?: RequestOptions<T.ProfileAddAppPatchInput>): Promise<import("axios").AxiosResponse<T.ProfileAddAppPatchResponse, T.ProfileAddAppPatchInput, {}>>;
|
|
124
|
+
/** PUT /api/v1/profile/add/app/{uuid}; permission: profile:update. */
|
|
125
|
+
profileAddAppPut(uuid: Identifier, data: T.ProfileAddAppPutInput, options?: RequestOptions<T.ProfileAddAppPutInput>): Promise<import("axios").AxiosResponse<T.ProfileAddAppPutResponse, T.ProfileAddAppPutInput, {}>>;
|
|
126
|
+
/** PATCH /api/v1/profile/add/parent/{uuid}; permission: profile:update. */
|
|
127
|
+
profileAddParentPatch(uuid: Identifier, data: T.ProfileAddParentPatchInput, options?: RequestOptions<T.ProfileAddParentPatchInput>): Promise<import("axios").AxiosResponse<T.ProfileAddParentPatchResponse, T.ProfileAddParentPatchInput, {}>>;
|
|
128
|
+
/** PUT /api/v1/profile/add/parent/{uuid}; permission: profile:update. */
|
|
129
|
+
profileAddParentPut(uuid: Identifier, data: T.ProfileAddParentPutInput, options?: RequestOptions<T.ProfileAddParentPutInput>): Promise<import("axios").AxiosResponse<T.ProfileAddParentPutResponse, T.ProfileAddParentPutInput, {}>>;
|
|
130
|
+
/** POST /api/v1/profile/city/get; permission: public/session-derived. */
|
|
131
|
+
profileCityGetPost(data: T.ProfileCityGetPostInput, options?: RequestOptions<T.ProfileCityGetPostInput>): Promise<import("axios").AxiosResponse<T.ProfileCityGetPostResponse, T.ProfileCityGetPostInput, {}>>;
|
|
132
|
+
/** GET /api/v1/profile/consultant; permission: public/session-derived. */
|
|
133
|
+
profileConsultantIndexGet(options?: RequestOptions): Promise<import("axios").AxiosResponse<T.ProfileConsultantIndexGetResponse, unknown, {}>>;
|
|
134
|
+
/** POST /api/v1/profile/country/get; permission: public/session-derived. */
|
|
135
|
+
profileCountryGetPost(data: T.ProfileCountryGetPostInput, options?: RequestOptions<T.ProfileCountryGetPostInput>): Promise<import("axios").AxiosResponse<T.ProfileCountryGetPostResponse, T.ProfileCountryGetPostInput, {}>>;
|
|
136
|
+
/** DELETE /api/v1/profile/force/{uuid}; permission: profile:force_delete. */
|
|
137
|
+
profileForceDestroyDelete(uuid: Identifier, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.ProfileForceDestroyDeleteResponse, unknown, {}>>;
|
|
138
|
+
/** POST /api/v1/profile/get; permission: public/session-derived. */
|
|
139
|
+
profileBulkGetPost(data: T.ProfileBulkGetPostInput, options?: RequestOptions<T.ProfileBulkGetPostInput>): Promise<import("axios").AxiosResponse<T.ProfileBulkGetPostResponse, T.ProfileBulkGetPostInput, {}>>;
|
|
140
|
+
/** GET /api/v1/profile/get-chat-list/{uuid}; permission: public/session-derived. */
|
|
141
|
+
profileChatListGet(uuid: Identifier, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.ProfileChatListGetResponse, unknown, {}>>;
|
|
142
|
+
/** GET /api/v1/profile/get/address/{uuid}; permission: profile:read. */
|
|
143
|
+
profileGetAddressGet(uuid: Identifier, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.ProfileGetAddressGetResponse, unknown, {}>>;
|
|
144
|
+
/** GET /api/v1/profile/get/app/{uuid}; permission: profile:read. */
|
|
145
|
+
profileGetAppGet(uuid: Identifier, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.ProfileGetAppGetResponse, unknown, {}>>;
|
|
146
|
+
/** GET /api/v1/profile/get/parent/{uuid}; permission: profile:read. */
|
|
147
|
+
profileGetParentGet(uuid: Identifier, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.ProfileGetParentGetResponse, unknown, {}>>;
|
|
148
|
+
/** GET /api/v1/profile/manager; permission: public/session-derived. */
|
|
149
|
+
profileManagerIndexGet(options?: RequestOptions): Promise<import("axios").AxiosResponse<T.ProfileManagerIndexGetResponse, unknown, {}>>;
|
|
150
|
+
/** GET /api/v1/profile/other; permission: public/session-derived. */
|
|
151
|
+
profileOtherIndexGet(options?: RequestOptions): Promise<import("axios").AxiosResponse<T.ProfileOtherIndexGetResponse, unknown, {}>>;
|
|
152
|
+
/** GET /api/v1/profile/parent; permission: public/session-derived. */
|
|
153
|
+
profileParentIndexGet(options?: RequestOptions): Promise<import("axios").AxiosResponse<T.ProfileParentIndexGetResponse, unknown, {}>>;
|
|
154
|
+
/** POST /api/v1/profile/province/get; permission: public/session-derived. */
|
|
155
|
+
profileProvinceGetPost(data: T.ProfileProvinceGetPostInput, options?: RequestOptions<T.ProfileProvinceGetPostInput>): Promise<import("axios").AxiosResponse<T.ProfileProvinceGetPostResponse, T.ProfileProvinceGetPostInput, {}>>;
|
|
156
|
+
/** POST /api/v1/profile/search; permission: profile:search. */
|
|
157
|
+
profileSearchSearchPost(data: T.ProfileSearchSearchPostInput, options?: RequestOptions<T.ProfileSearchSearchPostInput>): Promise<import("axios").AxiosResponse<T.ProfileSearchSearchPostResponse, T.ProfileSearchSearchPostInput, {}>>;
|
|
158
|
+
/** GET /api/v1/profile/student; permission: public/session-derived. */
|
|
159
|
+
profileStudentIndexGet(options?: RequestOptions): Promise<import("axios").AxiosResponse<T.ProfileStudentIndexGetResponse, unknown, {}>>;
|
|
160
|
+
/** GET /api/v1/profile/students/pes; permission: public/session-derived. */
|
|
161
|
+
profileStudentPesGet(options?: RequestOptions): Promise<import("axios").AxiosResponse<T.ProfileStudentPesGetResponse, unknown, {}>>;
|
|
162
|
+
/** GET /api/v1/profile/students/pes/schema; permission: public/session-derived. */
|
|
163
|
+
profileStudentPesSchemaGet(options?: RequestOptions): Promise<import("axios").AxiosResponse<T.ProfileStudentPesSchemaGetResponse, unknown, {}>>;
|
|
164
|
+
/** GET /api/v1/profile/support; permission: public/session-derived. */
|
|
165
|
+
profileSupportIndexGet(options?: RequestOptions): Promise<import("axios").AxiosResponse<T.ProfileSupportIndexGetResponse, unknown, {}>>;
|
|
166
|
+
/** GET /api/v1/profile/supports/pes; permission: public/session-derived. */
|
|
167
|
+
profileSupportPesGet(options?: RequestOptions): Promise<import("axios").AxiosResponse<T.ProfileSupportPesGetResponse, unknown, {}>>;
|
|
168
|
+
/** GET /api/v1/profile/supports/pes/schema; permission: public/session-derived. */
|
|
169
|
+
profileSupportPesSchemaGet(options?: RequestOptions): Promise<import("axios").AxiosResponse<T.ProfileSupportPesSchemaGetResponse, unknown, {}>>;
|
|
170
|
+
/** GET /api/v1/profile/teacher; permission: public/session-derived. */
|
|
171
|
+
profileTeacherIndexGet(options?: RequestOptions): Promise<import("axios").AxiosResponse<T.ProfileTeacherIndexGetResponse, unknown, {}>>;
|
|
172
|
+
/** GET /api/v1/profile/undo/{uuid}; permission: profile:restore. */
|
|
173
|
+
profileRestoreGet(uuid: Identifier, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.ProfileRestoreGetResponse, unknown, {}>>;
|
|
174
|
+
/** PATCH /api/v1/profile/update/{uuid}/meta; permission: profile:update. */
|
|
175
|
+
profileAddMetaPatch(uuid: Identifier, data: T.ProfileAddMetaPatchInput, options?: RequestOptions<T.ProfileAddMetaPatchInput>): Promise<import("axios").AxiosResponse<T.ProfileAddMetaPatchResponse, T.ProfileAddMetaPatchInput, {}>>;
|
|
176
|
+
/** PUT /api/v1/profile/update/{uuid}/meta; permission: profile:update. */
|
|
177
|
+
profileAddMetaPut(uuid: Identifier, data: T.ProfileAddMetaPutInput, options?: RequestOptions<T.ProfileAddMetaPutInput>): Promise<import("axios").AxiosResponse<T.ProfileAddMetaPutResponse, T.ProfileAddMetaPutInput, {}>>;
|
|
178
|
+
/** PATCH /api/v1/profile/update/personal-information/{uuid}; permission: profile:update. */
|
|
179
|
+
profileUpdatePersonalPatch(uuid: Identifier, data: T.ProfileUpdatePersonalPatchInput, options?: RequestOptions<T.ProfileUpdatePersonalPatchInput>): Promise<import("axios").AxiosResponse<T.ProfileUpdatePersonalPatchResponse, T.ProfileUpdatePersonalPatchInput, {}>>;
|
|
180
|
+
/** PUT /api/v1/profile/update/personal-information/{uuid}; permission: profile:update. */
|
|
181
|
+
profileUpdatePersonalPut(uuid: Identifier, data: T.ProfileUpdatePersonalPutInput, options?: RequestOptions<T.ProfileUpdatePersonalPutInput>): Promise<import("axios").AxiosResponse<T.ProfileUpdatePersonalPutResponse, T.ProfileUpdatePersonalPutInput, {}>>;
|
|
182
|
+
/** GET /api/v1/province; permission: province:read. */
|
|
183
|
+
provinceIndexGet(params?: T.ProvinceIndexGetQuery, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.ProvinceIndexGetResponse, unknown, {}>>;
|
|
184
|
+
/** POST /api/v1/province; permission: province:create. */
|
|
185
|
+
provinceStorePost(data: T.ProvinceStorePostInput, options?: RequestOptions<T.ProvinceStorePostInput>): Promise<import("axios").AxiosResponse<T.ProvinceStorePostResponse, T.ProvinceStorePostInput, {}>>;
|
|
186
|
+
/** DELETE /api/v1/province/{id}; permission: province:delete. */
|
|
187
|
+
provinceDestroyDelete(id: Identifier, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.ProvinceDestroyDeleteResponse, unknown, {}>>;
|
|
188
|
+
/** GET /api/v1/province/{id}; permission: province:read. */
|
|
189
|
+
provinceShowGet(id: Identifier, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.ProvinceShowGetResponse, unknown, {}>>;
|
|
190
|
+
/** PATCH /api/v1/province/{id}; permission: province:update. */
|
|
191
|
+
provinceUpdatePatch(id: Identifier, data: T.ProvinceUpdatePatchInput, options?: RequestOptions<T.ProvinceUpdatePatchInput>): Promise<import("axios").AxiosResponse<T.ProvinceUpdatePatchResponse, T.ProvinceUpdatePatchInput, {}>>;
|
|
192
|
+
/** PUT /api/v1/province/{id}; permission: province:update. */
|
|
193
|
+
provinceUpdatePut(id: Identifier, data: T.ProvinceUpdatePutInput, options?: RequestOptions<T.ProvinceUpdatePutInput>): Promise<import("axios").AxiosResponse<T.ProvinceUpdatePutResponse, T.ProvinceUpdatePutInput, {}>>;
|
|
194
|
+
/** DELETE /api/v1/province/force/{id}; permission: province:delete. */
|
|
195
|
+
provinceForceDestroyDelete(id: Identifier, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.ProvinceForceDestroyDeleteResponse, unknown, {}>>;
|
|
196
|
+
/** GET /api/v1/province/undo/{id}; permission: province:delete. */
|
|
197
|
+
provinceRestoreGet(id: Identifier, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.ProvinceRestoreGetResponse, unknown, {}>>;
|
|
198
|
+
/** GET /api/v1/setting; permission: setting:read. */
|
|
199
|
+
settingIndexGet(options?: RequestOptions): Promise<import("axios").AxiosResponse<T.SettingIndexGetResponse, unknown, {}>>;
|
|
200
|
+
/** POST /api/v1/setting; permission: setting:create. */
|
|
201
|
+
settingStorePost(data: T.SettingStorePostInput, options?: RequestOptions<T.SettingStorePostInput>): Promise<import("axios").AxiosResponse<T.SettingStorePostResponse, T.SettingStorePostInput, {}>>;
|
|
202
|
+
/** GET /api/v1/survey; permission: survey:read. */
|
|
203
|
+
surveyIndexGet(options?: RequestOptions): Promise<import("axios").AxiosResponse<T.SurveyIndexGetResponse, unknown, {}>>;
|
|
204
|
+
/** POST /api/v1/survey; permission: survey:create. */
|
|
205
|
+
surveyStorePost(data: T.SurveyStorePostInput, options?: RequestOptions<T.SurveyStorePostInput>): Promise<import("axios").AxiosResponse<T.SurveyStorePostResponse, T.SurveyStorePostInput, {}>>;
|
|
206
|
+
/** GET /api/v1/trusted-service; permission: trusted_service:read. */
|
|
207
|
+
trustedServiceIndexGet(params?: T.TrustedServiceIndexGetQuery, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.TrustedServiceIndexGetResponse, unknown, {}>>;
|
|
208
|
+
/** POST /api/v1/trusted-service; permission: trusted_service:create. */
|
|
209
|
+
trustedServiceStorePost(data: T.TrustedServiceStorePostInput, options?: RequestOptions<T.TrustedServiceStorePostInput>): Promise<import("axios").AxiosResponse<T.TrustedServiceStorePostResponse, T.TrustedServiceStorePostInput, {}>>;
|
|
210
|
+
/** DELETE /api/v1/trusted-service/{id}; permission: trusted_service:delete. */
|
|
211
|
+
trustedServiceDestroyDelete(id: Identifier, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.TrustedServiceDestroyDeleteResponse, unknown, {}>>;
|
|
212
|
+
/** GET /api/v1/trusted-service/{id}; permission: trusted_service:read. */
|
|
213
|
+
trustedServiceShowGet(id: Identifier, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.TrustedServiceShowGetResponse, unknown, {}>>;
|
|
214
|
+
/** PATCH /api/v1/trusted-service/{id}; permission: trusted_service:update. */
|
|
215
|
+
trustedServiceUpdatePatch(id: Identifier, data: T.TrustedServiceUpdatePatchInput, options?: RequestOptions<T.TrustedServiceUpdatePatchInput>): Promise<import("axios").AxiosResponse<T.TrustedServiceUpdatePatchResponse, T.TrustedServiceUpdatePatchInput, {}>>;
|
|
216
|
+
/** PUT /api/v1/trusted-service/{id}; permission: trusted_service:update. */
|
|
217
|
+
trustedServiceUpdatePut(id: Identifier, data: T.TrustedServiceUpdatePutInput, options?: RequestOptions<T.TrustedServiceUpdatePutInput>): Promise<import("axios").AxiosResponse<T.TrustedServiceUpdatePutResponse, T.TrustedServiceUpdatePutInput, {}>>;
|
|
218
|
+
/** GET /api/v1/trusted-service/{id}/event; permission: trusted_service:read. */
|
|
219
|
+
trustedServiceEventIndexGet(id: Identifier, params?: T.TrustedServiceEventIndexGetQuery, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.TrustedServiceEventIndexGetResponse, unknown, {}>>;
|
|
220
|
+
/** POST /api/v1/trusted-service/{id}/event; permission: trusted_service:create. */
|
|
221
|
+
trustedServiceEventStorePost(id: Identifier, data: T.TrustedServiceEventStorePostInput, options?: RequestOptions<T.TrustedServiceEventStorePostInput>): Promise<import("axios").AxiosResponse<T.TrustedServiceEventStorePostResponse, T.TrustedServiceEventStorePostInput, {}>>;
|
|
222
|
+
/** DELETE /api/v1/trusted-service/{id}/event/{event_id}; permission: trusted_service:delete. */
|
|
223
|
+
trustedServiceEventDestroyDelete(id: Identifier, eventId: Identifier, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.TrustedServiceEventDestroyDeleteResponse, unknown, {}>>;
|
|
224
|
+
/** GET /api/v1/trusted-service/{id}/event/{event_id}; permission: trusted_service:read. */
|
|
225
|
+
trustedServiceEventShowGet(id: Identifier, eventId: Identifier, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.TrustedServiceEventShowGetResponse, unknown, {}>>;
|
|
226
|
+
/** PATCH /api/v1/trusted-service/{id}/event/{event_id}; permission: trusted_service:update. */
|
|
227
|
+
trustedServiceEventUpdatePatch(id: Identifier, eventId: Identifier, data: T.TrustedServiceEventUpdatePatchInput, options?: RequestOptions<T.TrustedServiceEventUpdatePatchInput>): Promise<import("axios").AxiosResponse<T.TrustedServiceEventUpdatePatchResponse, T.TrustedServiceEventUpdatePatchInput, {}>>;
|
|
228
|
+
/** PUT /api/v1/trusted-service/{id}/event/{event_id}; permission: trusted_service:update. */
|
|
229
|
+
trustedServiceEventUpdatePut(id: Identifier, eventId: Identifier, data: T.TrustedServiceEventUpdatePutInput, options?: RequestOptions<T.TrustedServiceEventUpdatePutInput>): Promise<import("axios").AxiosResponse<T.TrustedServiceEventUpdatePutResponse, T.TrustedServiceEventUpdatePutInput, {}>>;
|
|
230
|
+
/** GET /health; permission: public/session-derived. */
|
|
231
|
+
routerHealthGetHealth(options?: RequestOptions): Promise<import("axios").AxiosResponse<T.RouterHealthGetHealthResponse, unknown, {}>>;
|
|
232
|
+
/** GET /up; permission: public/session-derived. */
|
|
233
|
+
routerHealthGetUp(options?: RequestOptions): Promise<import("axios").AxiosResponse<T.RouterHealthGetUpResponse, unknown, {}>>;
|
|
234
|
+
}
|
|
235
|
+
//# sourceMappingURL=operations.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"operations.d.ts","sourceRoot":"","sources":["../src/operations.ts"],"names":[],"mappings":"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"}
|