@faiber/faiber-session 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 CHANGED
@@ -1,6 +1,6 @@
1
1
  # @faiber/faiber-session
2
2
 
3
- Typed, framework-neutral TypeScript client for Faiber live rooms, room state, playback, recordings, tokens, and analytics.
3
+ Rooms, room lifecycle, LiveKit tokens and webhooks, recordings, playback, analytics, interactive starts, and room-state responses.
4
4
 
5
5
  ## Install
6
6
 
@@ -8,7 +8,7 @@ Typed, framework-neutral TypeScript client for Faiber live rooms, room state, pl
8
8
  npm install @faiber/faiber-session
9
9
  ```
10
10
 
11
- ## Create a client
11
+ ## Configure
12
12
 
13
13
  ```ts
14
14
  import { FaiberClient, MemoryTokenProvider } from "@faiber/sdk-core";
@@ -22,23 +22,41 @@ const client = new FaiberClient("session", {
22
22
  });
23
23
  const api = new SessionApi(client);
24
24
 
25
- const rooms = await api.rooms.list({ page_number: 1 });
25
+ const rooms = await api.rooms.list({ "page[number]": 1 });
26
+ const token = await api.livekitToken(roomId);
26
27
  ```
27
28
 
28
- All methods return a full Axios `AxiosResponse`. Entities, named request inputs, response envelopes, pagination models, and shared core types are exported from the package. Use `client.request<TResponse, TBody>()` for project-specific endpoints.
29
+ ## Complete capability
29
30
 
30
- ## Authentication
31
+ This package exposes 18 registered operations from the live sessions 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`.
31
32
 
32
- Pass a `TokenProvider` for bearer authentication, or set `withCredentials: true` for secure cookie sessions. The SDK never reads browser storage or environment variables implicitly.
33
+ | Area | Operations | HTTP methods |
34
+ |---|---:|---|
35
+ | `integration` | 1 | `GET` |
36
+ | `room` | 15 | `DELETE`, `GET`, `PATCH`, `POST`, `PUT` |
37
+ | `room-state` | 1 | `POST` |
38
+ | `router` | 1 | `GET` |
33
39
 
34
- ## Errors and cancellation
40
+ Room start, stop, end, playback, recording, webhook, and state-response routes are separate operations so their unusual GET/POST verbs are preserved exactly.
41
+
42
+ ## Authentication and authorization
43
+
44
+ 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.
45
+
46
+ ## Inputs, queries, responses, and transport
35
47
 
36
- Axios errors are preserved so callers can inspect `response.status`, structured API error bodies, headers, and request IDs. Pass normal Axios options as the final argument:
48
+ 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.
49
+
50
+ 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`.
51
+
52
+ ## Errors and cancellation
37
53
 
38
54
  ```ts
39
- await api.client.get("/health", undefined , { signal: AbortSignal.timeout(5_000) });
55
+ try {
56
+ await api.client.get("/health", undefined, { signal: AbortSignal.timeout(5_000) });
57
+ } catch (error) {
58
+ // Axios errors retain response.status and the service error body.
59
+ }
40
60
  ```
41
61
 
42
- ## Complete SDK
43
-
44
- 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.
62
+ 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":"de68416b5ee33a0a5056e5aa7e4b4238c336362679823b79101991d3a1327e8a","impliedFormat":99},{"version":"ffeabffaf1b86e5ee7f15e5b147cffca8a318a1069cb22e267fd7c4d244fcff3","signature":"d0cd7aebeafd1b37d414c6ebf0fe152efab8fc844ffa9ddcfbceee1febd255bf","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":"de68416b5ee33a0a5056e5aa7e4b4238c336362679823b79101991d3a1327e8a","impliedFormat":99},{"version":"c415aec7fd2e465c8c851bc091177ac214b599c19e112e700fa5f60227768468","signature":"ae9f2ac8f13e4f5cc9796356b793ae9fef8ce7099cb8c3ef39c25813ce6c583b","impliedFormat":99},{"version":"a4a9145ad9d6207ac2605ffd6d299266d81b634a3637cda5563da66d4c119dc5","signature":"773ac20d663dc7a2dbc0e30b7f3b4f96208b49e3c146866b1a4bb9f2f3c4b067","impliedFormat":99},{"version":"6c65835ef4fcc5352a9f367de401369079bad8b4832b192e4e23bdcd081eec2a","signature":"4e2a6eb2fec740ae42b4c62a0544a8b5d5060cd04b95e3488e92fda66078a0ba","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,6 +1,8 @@
1
1
  import { RestResource, ServiceApi, type Identifier, type RequestOptions } from "@faiber/sdk-core";
2
2
  import type * as T from "./types.js";
3
+ import { SessionOperations } from "./operations.js";
3
4
  export declare class SessionApi extends ServiceApi {
5
+ readonly operations: SessionOperations;
4
6
  readonly rooms: RestResource<T.Room, T.CreateRoomInput, T.UpdateRoomInput, T.RoomListResponse, T.RoomResponse>;
5
7
  analytics(options?: RequestOptions): Promise<import("axios").AxiosResponse<T.RoomAnalyticsResponse, any, {}>>;
6
8
  recordings(id: Identifier, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.RecordingsResponse, any, {}>>;
@@ -11,4 +13,6 @@ export declare class SessionApi extends ServiceApi {
11
13
  }
12
14
  export * from "./types.js";
13
15
  export * from "@faiber/sdk-core";
16
+ export * from "./operations.js";
17
+ export * from "./operations.types.js";
14
18
  //# sourceMappingURL=index.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,YAAY,EAAE,UAAU,EAAE,KAAK,UAAU,EAAE,KAAK,cAAc,EAAE,MAAM,kBAAkB,CAAC;AAClG,OAAO,KAAK,KAAK,CAAC,MAAM,YAAY,CAAC;AACrC,qBAAa,UAAW,SAAQ,UAAU;IACtC,QAAQ,CAAC,KAAK,iGAAoI;IAClJ,SAAS,CAAC,OAAO,CAAC,EAAE,cAAc;IAClC,UAAU,CAAC,EAAE,EAAE,UAAU,EAAE,OAAO,CAAC,EAAE,cAAc;IACnD,YAAY,CAAC,EAAE,EAAE,UAAU,EAAE,OAAO,CAAC,EAAE,cAAc;IACrD,gBAAgB,CAAC,EAAE,EAAE,UAAU,EAAE,IAAI,GAAE,CAAC,CAAC,qBAA0B,EAAE,OAAO,CAAC,EAAE,cAAc,CAAC,CAAC,CAAC,qBAAqB,CAAC;IACtH,GAAG,CAAC,EAAE,EAAE,UAAU,EAAE,OAAO,CAAC,EAAE,cAAc;IAC5C,QAAQ,CAAC,EAAE,EAAE,UAAU,EAAE,OAAO,CAAC,EAAE,cAAc;CACpD;AACD,cAAc,YAAY,CAAC;AAC3B,cAAc,kBAAkB,CAAC"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,YAAY,EAAE,UAAU,EAAE,KAAK,UAAU,EAAE,KAAK,cAAc,EAAE,MAAM,kBAAkB,CAAC;AAClG,OAAO,KAAK,KAAK,CAAC,MAAM,YAAY,CAAC;AACrC,OAAO,EAAE,iBAAiB,EAAE,MAAM,iBAAiB,CAAC;AACpD,qBAAa,UAAW,SAAQ,UAAU;IACtC,QAAQ,CAAC,UAAU,oBAAsC;IACzD,QAAQ,CAAC,KAAK,iGAA8M;IAC5N,SAAS,CAAC,OAAO,CAAC,EAAE,cAAc;IAClC,UAAU,CAAC,EAAE,EAAE,UAAU,EAAE,OAAO,CAAC,EAAE,cAAc;IACnD,YAAY,CAAC,EAAE,EAAE,UAAU,EAAE,OAAO,CAAC,EAAE,cAAc;IACrD,gBAAgB,CAAC,EAAE,EAAE,UAAU,EAAE,IAAI,GAAE,CAAC,CAAC,qBAA0B,EAAE,OAAO,CAAC,EAAE,cAAc,CAAC,CAAC,CAAC,qBAAqB,CAAC;IACtH,GAAG,CAAC,EAAE,EAAE,UAAU,EAAE,OAAO,CAAC,EAAE,cAAc;IAC5C,QAAQ,CAAC,EAAE,EAAE,UAAU,EAAE,OAAO,CAAC,EAAE,cAAc;CACpD;AACD,cAAc,YAAY,CAAC;AAC3B,cAAc,kBAAkB,CAAC;AACjC,cAAc,iBAAiB,CAAC;AAChC,cAAc,uBAAuB,CAAC"}
package/dist/index.js CHANGED
@@ -1,6 +1,8 @@
1
1
  import { RestResource, ServiceApi } from "@faiber/sdk-core";
2
+ import { SessionOperations } from "./operations.js";
2
3
  export class SessionApi extends ServiceApi {
3
- rooms = new RestResource(this.client, "/api/v1/rooms");
4
+ operations = new SessionOperations(this.client);
5
+ rooms = new RestResource(this.client, "/api/v1/rooms", { supported: ["list", "show", "create", "update", "replace", "delete"] });
4
6
  analytics(options) { return this.client.get("/api/v1/rooms/analytics", undefined, options); }
5
7
  recordings(id, options) { return this.client.get(`/api/v1/rooms/${encodeURIComponent(id)}/recordings`, undefined, options); }
6
8
  livekitToken(id, options) { return this.client.get(`/api/v1/rooms/${encodeURIComponent(id)}/livekit-token`, undefined, options); }
@@ -10,4 +12,6 @@ export class SessionApi extends ServiceApi {
10
12
  }
11
13
  export * from "./types.js";
12
14
  export * from "@faiber/sdk-core";
15
+ export * from "./operations.js";
16
+ export * from "./operations.types.js";
13
17
  //# 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,EAAwC,MAAM,kBAAkB,CAAC;AAElG,MAAM,OAAO,UAAW,SAAQ,UAAU;IAC7B,KAAK,GAAG,IAAI,YAAY,CAAmF,IAAI,CAAC,MAAM,EAAE,eAAe,CAAC,CAAC;IAClJ,SAAS,CAAC,OAAwB,IAAI,OAAO,IAAI,CAAC,MAAM,CAAC,GAAG,CAA0B,yBAAyB,EAAE,SAAS,EAAE,OAAO,CAAC,CAAC,CAAC,CAAC;IACvI,UAAU,CAAC,EAAc,EAAE,OAAwB,IAAI,OAAO,IAAI,CAAC,MAAM,CAAC,GAAG,CAAuB,iBAAiB,kBAAkB,CAAC,EAAE,CAAC,aAAa,EAAE,SAAS,EAAE,OAAO,CAAC,CAAC,CAAC,CAAC;IAChL,YAAY,CAAC,EAAc,EAAE,OAAwB,IAAI,OAAO,IAAI,CAAC,MAAM,CAAC,GAAG,CAAyB,iBAAiB,kBAAkB,CAAC,EAAE,CAAC,gBAAgB,EAAE,SAAS,EAAE,OAAO,CAAC,CAAC,CAAC,CAAC;IACvL,gBAAgB,CAAC,EAAc,EAAE,OAAgC,EAAE,EAAE,OAAiD,IAAI,OAAO,IAAI,CAAC,MAAM,CAAC,IAAI,CAAsD,iBAAiB,kBAAkB,CAAC,EAAE,CAAC,oBAAoB,EAAE,IAAI,EAAE,OAAO,CAAC,CAAC,CAAC,CAAC;IACrR,GAAG,CAAC,EAAc,EAAE,OAAwB,IAAI,OAAO,IAAI,CAAC,MAAM,CAAC,GAAG,CAAoB,iBAAiB,kBAAkB,CAAC,EAAE,CAAC,MAAM,EAAE,SAAS,EAAE,OAAO,CAAC,CAAC,CAAC,CAAC;IAC/J,QAAQ,CAAC,EAAc,EAAE,OAAwB,IAAI,OAAO,IAAI,CAAC,MAAM,CAAC,GAAG,CAAqB,iBAAiB,kBAAkB,CAAC,EAAE,CAAC,WAAW,EAAE,SAAS,EAAE,OAAO,CAAC,CAAC,CAAC,CAAC;CAC7K;AACD,cAAc,YAAY,CAAC;AAC3B,cAAc,kBAAkB,CAAC"}
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,YAAY,EAAE,UAAU,EAAwC,MAAM,kBAAkB,CAAC;AAElG,OAAO,EAAE,iBAAiB,EAAE,MAAM,iBAAiB,CAAC;AACpD,MAAM,OAAO,UAAW,SAAQ,UAAU;IAC7B,UAAU,GAAG,IAAI,iBAAiB,CAAC,IAAI,CAAC,MAAM,CAAC,CAAC;IAChD,KAAK,GAAG,IAAI,YAAY,CAAmF,IAAI,CAAC,MAAM,EAAE,eAAe,EAAE,EAAE,SAAS,EAAE,CAAC,MAAM,EAAE,MAAM,EAAE,QAAQ,EAAE,QAAQ,EAAE,SAAS,EAAE,QAAQ,CAAC,EAAE,CAAC,CAAC;IAC5N,SAAS,CAAC,OAAwB,IAAI,OAAO,IAAI,CAAC,MAAM,CAAC,GAAG,CAA0B,yBAAyB,EAAE,SAAS,EAAE,OAAO,CAAC,CAAC,CAAC,CAAC;IACvI,UAAU,CAAC,EAAc,EAAE,OAAwB,IAAI,OAAO,IAAI,CAAC,MAAM,CAAC,GAAG,CAAuB,iBAAiB,kBAAkB,CAAC,EAAE,CAAC,aAAa,EAAE,SAAS,EAAE,OAAO,CAAC,CAAC,CAAC,CAAC;IAChL,YAAY,CAAC,EAAc,EAAE,OAAwB,IAAI,OAAO,IAAI,CAAC,MAAM,CAAC,GAAG,CAAyB,iBAAiB,kBAAkB,CAAC,EAAE,CAAC,gBAAgB,EAAE,SAAS,EAAE,OAAO,CAAC,CAAC,CAAC,CAAC;IACvL,gBAAgB,CAAC,EAAc,EAAE,OAAgC,EAAE,EAAE,OAAiD,IAAI,OAAO,IAAI,CAAC,MAAM,CAAC,IAAI,CAAsD,iBAAiB,kBAAkB,CAAC,EAAE,CAAC,oBAAoB,EAAE,IAAI,EAAE,OAAO,CAAC,CAAC,CAAC,CAAC;IACrR,GAAG,CAAC,EAAc,EAAE,OAAwB,IAAI,OAAO,IAAI,CAAC,MAAM,CAAC,GAAG,CAAoB,iBAAiB,kBAAkB,CAAC,EAAE,CAAC,MAAM,EAAE,SAAS,EAAE,OAAO,CAAC,CAAC,CAAC,CAAC;IAC/J,QAAQ,CAAC,EAAc,EAAE,OAAwB,IAAI,OAAO,IAAI,CAAC,MAAM,CAAC,GAAG,CAAqB,iBAAiB,kBAAkB,CAAC,EAAE,CAAC,WAAW,EAAE,SAAS,EAAE,OAAO,CAAC,CAAC,CAAC,CAAC;CAC7K;AACD,cAAc,YAAY,CAAC;AAC3B,cAAc,kBAAkB,CAAC;AACjC,cAAc,iBAAiB,CAAC;AAChC,cAAc,uBAAuB,CAAC"}
@@ -0,0 +1,41 @@
1
+ import { ServiceApi, type Identifier, type RequestOptions } from "@faiber/sdk-core";
2
+ import type * as T from "./operations.types.js";
3
+ export declare class SessionOperations extends ServiceApi {
4
+ /** GET /; permission: public/session-derived. */
5
+ routerStatusRouteGet(options?: RequestOptions): Promise<import("axios").AxiosResponse<T.RouterStatusRouteGetResponse, unknown, {}>>;
6
+ /** GET /api/v1/integration/flow; permission: public/session-derived. */
7
+ integrationFlowIntegrationShowGet(options?: RequestOptions): Promise<import("axios").AxiosResponse<T.IntegrationFlowIntegrationShowGetResponse, unknown, {}>>;
8
+ /** POST /api/v1/room_states/{room_state_id}/respond; permission: room_state:respond. */
9
+ roomStateRoomStateRespondPost(roomStateId: Identifier, data: T.RoomStateRoomStateRespondPostInput, options?: RequestOptions<T.RoomStateRoomStateRespondPostInput>): Promise<import("axios").AxiosResponse<T.RoomStateRoomStateRespondPostResponse, T.RoomStateRoomStateRespondPostInput, {}>>;
10
+ /** GET /api/v1/rooms; permission: room:read. */
11
+ roomRoomsIndexGet(params?: T.RoomRoomsIndexGetQuery, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.RoomRoomsIndexGetResponse, unknown, {}>>;
12
+ /** POST /api/v1/rooms; permission: room:create. */
13
+ roomRoomsCreatePost(data: T.RoomRoomsCreatePostInput, options?: RequestOptions<T.RoomRoomsCreatePostInput>): Promise<import("axios").AxiosResponse<T.RoomRoomsCreatePostResponse, T.RoomRoomsCreatePostInput, {}>>;
14
+ /** DELETE /api/v1/rooms/{room_id}; permission: room:delete. */
15
+ roomRoomsDeleteDelete(roomId: Identifier, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.RoomRoomsDeleteDeleteResponse, unknown, {}>>;
16
+ /** GET /api/v1/rooms/{room_id}; permission: room:read. */
17
+ roomRoomsShowGet(roomId: Identifier, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.RoomRoomsShowGetResponse, unknown, {}>>;
18
+ /** PATCH /api/v1/rooms/{room_id}; permission: room:update. */
19
+ roomRoomsUpdatePatch(roomId: Identifier, data: T.RoomRoomsUpdatePatchInput, options?: RequestOptions<T.RoomRoomsUpdatePatchInput>): Promise<import("axios").AxiosResponse<T.RoomRoomsUpdatePatchResponse, T.RoomRoomsUpdatePatchInput, {}>>;
20
+ /** PUT /api/v1/rooms/{room_id}; permission: room:update. */
21
+ roomRoomsUpdatePut(roomId: Identifier, data: T.RoomRoomsUpdatePutInput, options?: RequestOptions<T.RoomRoomsUpdatePutInput>): Promise<import("axios").AxiosResponse<T.RoomRoomsUpdatePutResponse, T.RoomRoomsUpdatePutInput, {}>>;
22
+ /** GET /api/v1/rooms/{room_id}/end; permission: room:end. */
23
+ roomRoomsEndGet(roomId: Identifier, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.RoomRoomsEndGetResponse, unknown, {}>>;
24
+ /** POST /api/v1/rooms/{room_id}/interactive/start; permission: room:start_interactive. */
25
+ roomRoomsInteractiveStartPost(roomId: Identifier, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.RoomRoomsInteractiveStartPostResponse, unknown, {}>>;
26
+ /** GET /api/v1/rooms/{room_id}/livekit-token; permission: room:read_livekit_token. */
27
+ roomRoomsLivekitTokenGet(roomId: Identifier, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.RoomRoomsLivekitTokenGetResponse, unknown, {}>>;
28
+ /** GET /api/v1/rooms/{room_id}/playback; permission: room:read_playback. */
29
+ roomRoomsPlaybackShowGet(roomId: Identifier, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.RoomRoomsPlaybackShowGetResponse, unknown, {}>>;
30
+ /** GET /api/v1/rooms/{room_id}/recordings; permission: room:read_recordings. */
31
+ roomRoomsRecordingsGet(roomId: Identifier, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.RoomRoomsRecordingsGetResponse, unknown, {}>>;
32
+ /** GET /api/v1/rooms/{room_id}/start; permission: room:start. */
33
+ roomRoomsStartGet(roomId: Identifier, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.RoomRoomsStartGetResponse, unknown, {}>>;
34
+ /** GET /api/v1/rooms/{room_id}/stop; permission: room:stop. */
35
+ roomRoomsStopGet(roomId: Identifier, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.RoomRoomsStopGetResponse, unknown, {}>>;
36
+ /** GET /api/v1/rooms/analytics; permission: room:read_analytics. */
37
+ roomRoomsAnalyticsGet(options?: RequestOptions): Promise<import("axios").AxiosResponse<T.RoomRoomsAnalyticsGetResponse, unknown, {}>>;
38
+ /** POST /api/v1/rooms/livekit/webhook; permission: public/session-derived. */
39
+ roomLivekitWebhookPost(options?: RequestOptions): Promise<import("axios").AxiosResponse<T.RoomLivekitWebhookPostResponse, unknown, {}>>;
40
+ }
41
+ //# sourceMappingURL=operations.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"operations.d.ts","sourceRoot":"","sources":["../src/operations.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,UAAU,EAAc,KAAK,UAAU,EAAE,KAAK,cAAc,EAAE,MAAM,kBAAkB,CAAC;AAChG,OAAO,KAAK,KAAK,CAAC,MAAM,uBAAuB,CAAC;AAEhD,qBAAa,iBAAkB,SAAQ,UAAU;IAC/C,iDAAiD;IACjD,oBAAoB,CAAC,OAAO,CAAC,EAAE,cAAc;IAG7C,wEAAwE;IACxE,iCAAiC,CAAC,OAAO,CAAC,EAAE,cAAc;IAG1D,wFAAwF;IACxF,6BAA6B,CAAC,WAAW,EAAE,UAAU,EAAE,IAAI,EAAE,CAAC,CAAC,kCAAkC,EAAE,OAAO,CAAC,EAAE,cAAc,CAAC,CAAC,CAAC,kCAAkC,CAAC;IAGjK,gDAAgD;IAChD,iBAAiB,CAAC,MAAM,CAAC,EAAE,CAAC,CAAC,sBAAsB,EAAE,OAAO,CAAC,EAAE,cAAc;IAG7E,mDAAmD;IACnD,mBAAmB,CAAC,IAAI,EAAE,CAAC,CAAC,wBAAwB,EAAE,OAAO,CAAC,EAAE,cAAc,CAAC,CAAC,CAAC,wBAAwB,CAAC;IAG1G,+DAA+D;IAC/D,qBAAqB,CAAC,MAAM,EAAE,UAAU,EAAE,OAAO,CAAC,EAAE,cAAc;IAGlE,0DAA0D;IAC1D,gBAAgB,CAAC,MAAM,EAAE,UAAU,EAAE,OAAO,CAAC,EAAE,cAAc;IAG7D,8DAA8D;IAC9D,oBAAoB,CAAC,MAAM,EAAE,UAAU,EAAE,IAAI,EAAE,CAAC,CAAC,yBAAyB,EAAE,OAAO,CAAC,EAAE,cAAc,CAAC,CAAC,CAAC,yBAAyB,CAAC;IAGjI,4DAA4D;IAC5D,kBAAkB,CAAC,MAAM,EAAE,UAAU,EAAE,IAAI,EAAE,CAAC,CAAC,uBAAuB,EAAE,OAAO,CAAC,EAAE,cAAc,CAAC,CAAC,CAAC,uBAAuB,CAAC;IAG3H,6DAA6D;IAC7D,eAAe,CAAC,MAAM,EAAE,UAAU,EAAE,OAAO,CAAC,EAAE,cAAc;IAG5D,0FAA0F;IAC1F,6BAA6B,CAAC,MAAM,EAAE,UAAU,EAAE,OAAO,CAAC,EAAE,cAAc;IAG1E,sFAAsF;IACtF,wBAAwB,CAAC,MAAM,EAAE,UAAU,EAAE,OAAO,CAAC,EAAE,cAAc;IAGrE,4EAA4E;IAC5E,wBAAwB,CAAC,MAAM,EAAE,UAAU,EAAE,OAAO,CAAC,EAAE,cAAc;IAGrE,gFAAgF;IAChF,sBAAsB,CAAC,MAAM,EAAE,UAAU,EAAE,OAAO,CAAC,EAAE,cAAc;IAGnE,iEAAiE;IACjE,iBAAiB,CAAC,MAAM,EAAE,UAAU,EAAE,OAAO,CAAC,EAAE,cAAc;IAG9D,+DAA+D;IAC/D,gBAAgB,CAAC,MAAM,EAAE,UAAU,EAAE,OAAO,CAAC,EAAE,cAAc;IAG7D,oEAAoE;IACpE,qBAAqB,CAAC,OAAO,CAAC,EAAE,cAAc;IAG9C,8EAA8E;IAC9E,sBAAsB,CAAC,OAAO,CAAC,EAAE,cAAc;CAGhD"}
@@ -0,0 +1,76 @@
1
+ import { ServiceApi, urlEncoded } from "@faiber/sdk-core";
2
+ export class SessionOperations extends ServiceApi {
3
+ /** GET /; permission: public/session-derived. */
4
+ routerStatusRouteGet(options) {
5
+ return this.client.request({ ...options, method: "GET", url: `/` });
6
+ }
7
+ /** GET /api/v1/integration/flow; permission: public/session-derived. */
8
+ integrationFlowIntegrationShowGet(options) {
9
+ return this.client.request({ ...options, method: "GET", url: `/api/v1/integration/flow` });
10
+ }
11
+ /** POST /api/v1/room_states/{room_state_id}/respond; permission: room_state:respond. */
12
+ roomStateRoomStateRespondPost(roomStateId, data, options) {
13
+ return this.client.request({ ...options, method: "POST", url: `/api/v1/room_states/${encodeURIComponent(roomStateId)}/respond`, data: data });
14
+ }
15
+ /** GET /api/v1/rooms; permission: room:read. */
16
+ roomRoomsIndexGet(params, options) {
17
+ return this.client.request({ ...options, method: "GET", url: `/api/v1/rooms`, params });
18
+ }
19
+ /** POST /api/v1/rooms; permission: room:create. */
20
+ roomRoomsCreatePost(data, options) {
21
+ return this.client.request({ ...options, method: "POST", url: `/api/v1/rooms`, data: data });
22
+ }
23
+ /** DELETE /api/v1/rooms/{room_id}; permission: room:delete. */
24
+ roomRoomsDeleteDelete(roomId, options) {
25
+ return this.client.request({ ...options, method: "DELETE", url: `/api/v1/rooms/${encodeURIComponent(roomId)}` });
26
+ }
27
+ /** GET /api/v1/rooms/{room_id}; permission: room:read. */
28
+ roomRoomsShowGet(roomId, options) {
29
+ return this.client.request({ ...options, method: "GET", url: `/api/v1/rooms/${encodeURIComponent(roomId)}` });
30
+ }
31
+ /** PATCH /api/v1/rooms/{room_id}; permission: room:update. */
32
+ roomRoomsUpdatePatch(roomId, data, options) {
33
+ return this.client.request({ ...options, method: "PATCH", url: `/api/v1/rooms/${encodeURIComponent(roomId)}`, data: data });
34
+ }
35
+ /** PUT /api/v1/rooms/{room_id}; permission: room:update. */
36
+ roomRoomsUpdatePut(roomId, data, options) {
37
+ return this.client.request({ ...options, method: "PUT", url: `/api/v1/rooms/${encodeURIComponent(roomId)}`, data: data });
38
+ }
39
+ /** GET /api/v1/rooms/{room_id}/end; permission: room:end. */
40
+ roomRoomsEndGet(roomId, options) {
41
+ return this.client.request({ ...options, method: "GET", url: `/api/v1/rooms/${encodeURIComponent(roomId)}/end` });
42
+ }
43
+ /** POST /api/v1/rooms/{room_id}/interactive/start; permission: room:start_interactive. */
44
+ roomRoomsInteractiveStartPost(roomId, options) {
45
+ return this.client.request({ ...options, method: "POST", url: `/api/v1/rooms/${encodeURIComponent(roomId)}/interactive/start` });
46
+ }
47
+ /** GET /api/v1/rooms/{room_id}/livekit-token; permission: room:read_livekit_token. */
48
+ roomRoomsLivekitTokenGet(roomId, options) {
49
+ return this.client.request({ ...options, method: "GET", url: `/api/v1/rooms/${encodeURIComponent(roomId)}/livekit-token` });
50
+ }
51
+ /** GET /api/v1/rooms/{room_id}/playback; permission: room:read_playback. */
52
+ roomRoomsPlaybackShowGet(roomId, options) {
53
+ return this.client.request({ ...options, method: "GET", url: `/api/v1/rooms/${encodeURIComponent(roomId)}/playback` });
54
+ }
55
+ /** GET /api/v1/rooms/{room_id}/recordings; permission: room:read_recordings. */
56
+ roomRoomsRecordingsGet(roomId, options) {
57
+ return this.client.request({ ...options, method: "GET", url: `/api/v1/rooms/${encodeURIComponent(roomId)}/recordings` });
58
+ }
59
+ /** GET /api/v1/rooms/{room_id}/start; permission: room:start. */
60
+ roomRoomsStartGet(roomId, options) {
61
+ return this.client.request({ ...options, method: "GET", url: `/api/v1/rooms/${encodeURIComponent(roomId)}/start` });
62
+ }
63
+ /** GET /api/v1/rooms/{room_id}/stop; permission: room:stop. */
64
+ roomRoomsStopGet(roomId, options) {
65
+ return this.client.request({ ...options, method: "GET", url: `/api/v1/rooms/${encodeURIComponent(roomId)}/stop` });
66
+ }
67
+ /** GET /api/v1/rooms/analytics; permission: room:read_analytics. */
68
+ roomRoomsAnalyticsGet(options) {
69
+ return this.client.request({ ...options, method: "GET", url: `/api/v1/rooms/analytics` });
70
+ }
71
+ /** POST /api/v1/rooms/livekit/webhook; permission: public/session-derived. */
72
+ roomLivekitWebhookPost(options) {
73
+ return this.client.request({ ...options, method: "POST", url: `/api/v1/rooms/livekit/webhook` });
74
+ }
75
+ }
76
+ //# sourceMappingURL=operations.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"operations.js","sourceRoot":"","sources":["../src/operations.ts"],"names":[],"mappings":"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"}
@@ -0,0 +1,141 @@
1
+ import type { ApiEnvelope, JsonObject, JsonValue, QueryParams } from "@faiber/sdk-core";
2
+ /** Generated route contracts. Dynamic payload members remain JSON-safe and are documented with their Rust source type. */
3
+ /** Backend response type: response without a declared JSON model. */
4
+ export interface RouterStatusRouteGetResponse extends ApiEnvelope<JsonValue> {
5
+ }
6
+ /** Backend response type: infera_flow_sdk::FlowIntegrationResponse. */
7
+ export interface IntegrationFlowIntegrationShowGetResponse extends ApiEnvelope<JsonValue> {
8
+ }
9
+ /** Backend request type: RoomStateRespond. */
10
+ export interface RoomStateRoomStateRespondPostInput extends JsonObject {
11
+ "values": string[];
12
+ }
13
+ /** Backend response type: RoomStateRespondResponse. */
14
+ export interface RoomStateRoomStateRespondPostResponseData extends JsonObject {
15
+ "validated": boolean;
16
+ }
17
+ export interface RoomStateRoomStateRespondPostResponse extends ApiEnvelope<RoomStateRoomStateRespondPostResponseData> {
18
+ }
19
+ /** Backend query type: RoomListQuery. */
20
+ export interface RoomRoomsIndexGetQuery extends QueryParams {
21
+ "page_number"?: number;
22
+ "page_size"?: number;
23
+ "custom_only"?: boolean;
24
+ "search"?: string;
25
+ }
26
+ /** Backend response type: RoomListResponse. */
27
+ export interface RoomRoomsIndexGetResponseData extends JsonObject {
28
+ "rooms": JsonValue[];
29
+ }
30
+ export interface RoomRoomsIndexGetResponse extends ApiEnvelope<RoomRoomsIndexGetResponseData> {
31
+ }
32
+ /** Backend request type: RoomCreate. */
33
+ export interface RoomRoomsCreatePostInput extends JsonObject {
34
+ "name": string;
35
+ "capacity": number;
36
+ "session_id"?: string;
37
+ "users"?: string[];
38
+ "states"?: JsonValue[];
39
+ "status"?: number;
40
+ "starts_at": string;
41
+ }
42
+ /** Backend response type: RoomSingleResponse. */
43
+ export interface RoomRoomsCreatePostResponseData extends JsonObject {
44
+ "room": JsonValue;
45
+ }
46
+ export interface RoomRoomsCreatePostResponse extends ApiEnvelope<RoomRoomsCreatePostResponseData> {
47
+ }
48
+ /** Backend response type: RoomSingleResponse. */
49
+ export interface RoomRoomsDeleteDeleteResponseData extends JsonObject {
50
+ "room": JsonValue;
51
+ }
52
+ export interface RoomRoomsDeleteDeleteResponse extends ApiEnvelope<RoomRoomsDeleteDeleteResponseData> {
53
+ }
54
+ /** Backend response type: RoomSingleResponse. */
55
+ export interface RoomRoomsShowGetResponseData extends JsonObject {
56
+ "room": JsonValue;
57
+ }
58
+ export interface RoomRoomsShowGetResponse extends ApiEnvelope<RoomRoomsShowGetResponseData> {
59
+ }
60
+ /** Backend request type: RoomUpdate. */
61
+ export interface RoomRoomsUpdatePatchInput extends JsonObject {
62
+ "name"?: string;
63
+ "capacity"?: number;
64
+ "session_id"?: string;
65
+ "users"?: string[];
66
+ "states"?: JsonValue[];
67
+ "status"?: number;
68
+ "starts_at"?: string;
69
+ }
70
+ /** Backend response type: RoomSingleResponse. */
71
+ export interface RoomRoomsUpdatePatchResponseData extends JsonObject {
72
+ "room": JsonValue;
73
+ }
74
+ export interface RoomRoomsUpdatePatchResponse extends ApiEnvelope<RoomRoomsUpdatePatchResponseData> {
75
+ }
76
+ /** Backend request type: RoomUpdate. */
77
+ export interface RoomRoomsUpdatePutInput extends JsonObject {
78
+ "name"?: string;
79
+ "capacity"?: number;
80
+ "session_id"?: string;
81
+ "users"?: string[];
82
+ "states"?: JsonValue[];
83
+ "status"?: number;
84
+ "starts_at"?: string;
85
+ }
86
+ /** Backend response type: RoomSingleResponse. */
87
+ export interface RoomRoomsUpdatePutResponseData extends JsonObject {
88
+ "room": JsonValue;
89
+ }
90
+ export interface RoomRoomsUpdatePutResponse extends ApiEnvelope<RoomRoomsUpdatePutResponseData> {
91
+ }
92
+ /** Backend response type: response without a declared JSON model. */
93
+ export interface RoomRoomsEndGetResponse extends ApiEnvelope<JsonValue> {
94
+ }
95
+ /** Backend response type: response without a declared JSON model. */
96
+ export interface RoomRoomsInteractiveStartPostResponse extends ApiEnvelope<JsonValue> {
97
+ }
98
+ /** Backend response type: LiveKitTokenResponse. */
99
+ export interface RoomRoomsLivekitTokenGetResponseData extends JsonObject {
100
+ "token": string;
101
+ "url": string;
102
+ }
103
+ export interface RoomRoomsLivekitTokenGetResponse extends ApiEnvelope<RoomRoomsLivekitTokenGetResponseData> {
104
+ }
105
+ /** Backend response type: RoomSingleFullResponse. */
106
+ export interface RoomRoomsPlaybackShowGetResponseData extends JsonObject {
107
+ "room": JsonValue;
108
+ }
109
+ export interface RoomRoomsPlaybackShowGetResponse extends ApiEnvelope<RoomRoomsPlaybackShowGetResponseData> {
110
+ }
111
+ /** Backend response type: RoomRecordingResponse. */
112
+ export interface RoomRoomsRecordingsGetResponseData extends JsonObject {
113
+ "recordings": JsonValue[];
114
+ }
115
+ export interface RoomRoomsRecordingsGetResponse extends ApiEnvelope<RoomRoomsRecordingsGetResponseData> {
116
+ }
117
+ /** Backend response type: RoomSingleResponse. */
118
+ export interface RoomRoomsStartGetResponseData extends JsonObject {
119
+ "room": JsonValue;
120
+ }
121
+ export interface RoomRoomsStartGetResponse extends ApiEnvelope<RoomRoomsStartGetResponseData> {
122
+ }
123
+ /** Backend response type: RoomSingleResponse. */
124
+ export interface RoomRoomsStopGetResponseData extends JsonObject {
125
+ "room": JsonValue;
126
+ }
127
+ export interface RoomRoomsStopGetResponse extends ApiEnvelope<RoomRoomsStopGetResponseData> {
128
+ }
129
+ /** Backend response type: RoomAnalyticsResponse. */
130
+ export interface RoomRoomsAnalyticsGetResponseData extends JsonObject {
131
+ "ongoing_sessions": number;
132
+ "sessions_today": number;
133
+ "ongoing_users": number;
134
+ "connected_users_today": number;
135
+ }
136
+ export interface RoomRoomsAnalyticsGetResponse extends ApiEnvelope<RoomRoomsAnalyticsGetResponseData> {
137
+ }
138
+ /** Backend response type: response without a declared JSON model. */
139
+ export interface RoomLivekitWebhookPostResponse extends ApiEnvelope<JsonValue> {
140
+ }
141
+ //# sourceMappingURL=operations.types.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"operations.types.d.ts","sourceRoot":"","sources":["../src/operations.types.ts"],"names":[],"mappings":"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"}
@@ -0,0 +1,2 @@
1
+ export {};
2
+ //# sourceMappingURL=operations.types.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"operations.types.js","sourceRoot":"","sources":["../src/operations.types.ts"],"names":[],"mappings":""}
package/package.json CHANGED
@@ -1 +1,20 @@
1
- { "name": "@faiber/faiber-session", "version": "0.2.0", "type": "module", "sideEffects": false, "main": "./dist/index.js", "types": "./dist/index.d.ts", "exports": { ".": { "types": "./dist/index.d.ts", "import": "./dist/index.js" } }, "files": ["dist"], "dependencies": { "@faiber/sdk-core": "0.2.0" } }
1
+ {
2
+ "name": "@faiber/faiber-session",
3
+ "version": "0.2.2",
4
+ "type": "module",
5
+ "sideEffects": false,
6
+ "main": "./dist/index.js",
7
+ "types": "./dist/index.d.ts",
8
+ "exports": {
9
+ ".": {
10
+ "types": "./dist/index.d.ts",
11
+ "import": "./dist/index.js"
12
+ }
13
+ },
14
+ "files": [
15
+ "dist"
16
+ ],
17
+ "dependencies": {
18
+ "@faiber/sdk-core": "0.2.2"
19
+ }
20
+ }