@faiber/faiber-chat 0.3.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +62 -0
- package/dist/.tsbuildinfo +1 -0
- package/dist/index.d.ts +27 -0
- package/dist/index.d.ts.map +1 -0
- package/dist/index.js +27 -0
- package/dist/index.js.map +1 -0
- package/dist/operations.d.ts +37 -0
- package/dist/operations.d.ts.map +1 -0
- package/dist/operations.js +68 -0
- package/dist/operations.js.map +1 -0
- package/dist/operations.types.d.ts +115 -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 +105 -0
- package/dist/types.d.ts.map +1 -0
- package/dist/types.js +2 -0
- package/dist/types.js.map +1 -0
- package/package.json +21 -0
package/README.md
ADDED
|
@@ -0,0 +1,62 @@
|
|
|
1
|
+
# @faiber/faiber-chat
|
|
2
|
+
|
|
3
|
+
Direct, group, channel, and AI conversations with members, messages, threads, reactions, read cursors, realtime events, and Agentic-backed AI turns.
|
|
4
|
+
|
|
5
|
+
## Install
|
|
6
|
+
|
|
7
|
+
```bash
|
|
8
|
+
npm install @faiber/faiber-chat
|
|
9
|
+
```
|
|
10
|
+
|
|
11
|
+
## Configure
|
|
12
|
+
|
|
13
|
+
```ts
|
|
14
|
+
import { FaiberClient, MemoryTokenProvider } from "@faiber/sdk-core";
|
|
15
|
+
import { ChatApi } from "@faiber/faiber-chat";
|
|
16
|
+
|
|
17
|
+
const tokens = new MemoryTokenProvider();
|
|
18
|
+
const client = new FaiberClient("chat", {
|
|
19
|
+
domains: { chat: process.env.FAIBER_CHAT_URL! },
|
|
20
|
+
tokenProvider: tokens,
|
|
21
|
+
axios: { timeout: 15_000, withCredentials: true },
|
|
22
|
+
});
|
|
23
|
+
const api = new ChatApi(client);
|
|
24
|
+
|
|
25
|
+
const conversation = await api.createConversation({
|
|
26
|
+
kind: "direct",
|
|
27
|
+
member_ids: [recipientUserId],
|
|
28
|
+
});
|
|
29
|
+
await api.sendMessage(conversation.data.data.id, { content: { text: "Hello" } });
|
|
30
|
+
```
|
|
31
|
+
|
|
32
|
+
## Complete capability
|
|
33
|
+
|
|
34
|
+
This package exposes 16 registered operations from the chat 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`.
|
|
35
|
+
|
|
36
|
+
| Area | Operations | HTTP methods |
|
|
37
|
+
|---|---:|---|
|
|
38
|
+
| `routes` | 16 | `DELETE`, `GET`, `POST`, `PUT` |
|
|
39
|
+
|
|
40
|
+
AI turns are executed and billed by Infera Agentic; Chat only coordinates conversation context and reconciliation. The events endpoint is an SSE stream and can be requested with normal SDK authorization headers.
|
|
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
|
|
47
|
+
|
|
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
|
|
53
|
+
|
|
54
|
+
```ts
|
|
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
|
+
}
|
|
60
|
+
```
|
|
61
|
+
|
|
62
|
+
Use `@faiber/faiber-ts-sdk` when one application needs multiple Faiber services with one configuration.
|
|
@@ -0,0 +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/operations.types.ts","../src/operations.ts","../src/index.ts"],"fileIdsList":[[67,68,69,70],[67,69],[67],[61],[60,61],[60,61,62,63,64,65,66],[60,61,64],[60]],"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":"5b81964e79efc458d4927699a2c08c0953c55bff6441f34ea10a61046fef7dcc","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":"fbf9309273e5d17e80f410080fc6ac16c6401edc4fb44702af9381912b14ed31","signature":"c7d15b435d1f5382ea7aea033988c67e6826937c9c9bfc1aa1b870af3c445470","impliedFormat":99},{"version":"0273efbb3ae4493ef805e195265bb66d6ba7e8b7de7a549e781a377039cd908b","signature":"20738caafc369d2d976cba8b52e88766860d8ab408432adb8dd78bdd2b4772bc","impliedFormat":99},{"version":"f5ca55512963c6b3e966a71d4be5557d5db464d8e5700b22ae3e586fb122aa87","signature":"674bf24030394629cedbfd10f6f7ca8a29ad38dd9656275e0162620cc2cbadd1","impliedFormat":99},{"version":"ce142150086cca4d2a2ace0e3f145f31b9a3ca88bf7c6a0bda5c5bd2db1663f5","signature":"f1f3e0fde1ab63a195a27b8244f002f15af2c4ed4851003e6d8e16a1c58bf37b","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":[[71,1],[70,2],[69,3],[68,3],[63,4],[64,5],[62,4],[67,6],[66,7],[65,7],[61,8]],"latestChangedDtsFile":"./index.d.ts","version":"5.9.3"}
|
package/dist/index.d.ts
ADDED
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
import { ServiceApi, type Identifier, type RequestOptions } from "@faiber/sdk-core";
|
|
2
|
+
import type * as T from "./types.js";
|
|
3
|
+
import { ChatOperations } from "./operations.js";
|
|
4
|
+
export declare class ChatApi extends ServiceApi {
|
|
5
|
+
readonly operations: ChatOperations;
|
|
6
|
+
conversations(options?: RequestOptions): Promise<import("axios").AxiosResponse<T.ConversationListResponse, any, {}>>;
|
|
7
|
+
createConversation(data: T.CreateConversationInput, options?: RequestOptions<T.CreateConversationInput>): Promise<import("axios").AxiosResponse<T.ConversationResponse, T.CreateConversationInput, {}>>;
|
|
8
|
+
conversation(conversationId: Identifier, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.ConversationResponse, any, {}>>;
|
|
9
|
+
updateConversation(conversationId: Identifier, data: T.UpdateConversationInput, options?: RequestOptions<T.UpdateConversationInput>): Promise<import("axios").AxiosResponse<T.ConversationResponse, T.UpdateConversationInput, {}>>;
|
|
10
|
+
archiveConversation(conversationId: Identifier, options?: RequestOptions): Promise<import("axios").AxiosResponse<void, any, {}>>;
|
|
11
|
+
members(conversationId: Identifier, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.MemberListResponse, any, {}>>;
|
|
12
|
+
addMember(conversationId: Identifier, data: T.MemberInput, options?: RequestOptions<T.MemberInput>): Promise<import("axios").AxiosResponse<T.MemberResponse, T.MemberInput, {}>>;
|
|
13
|
+
removeMember(conversationId: Identifier, userId: Identifier, options?: RequestOptions): Promise<import("axios").AxiosResponse<void, any, {}>>;
|
|
14
|
+
messages(conversationId: Identifier, params?: T.ChatListQuery, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.MessageListResponse, any, {}>>;
|
|
15
|
+
sendMessage(conversationId: Identifier, data: T.SendMessageInput, options?: RequestOptions<T.SendMessageInput>): Promise<import("axios").AxiosResponse<T.MessageResponse, T.SendMessageInput, {}>>;
|
|
16
|
+
sendAiMessage(conversationId: Identifier, data: T.AiMessageInput, options?: RequestOptions<T.AiMessageInput>): Promise<import("axios").AxiosResponse<T.AiMessageResponse, T.AiMessageInput, {}>>;
|
|
17
|
+
markRead(conversationId: Identifier, data: T.ReadInput, options?: RequestOptions<T.ReadInput>): Promise<import("axios").AxiosResponse<void, T.ReadInput, {}>>;
|
|
18
|
+
events(conversationId: Identifier, options?: RequestOptions): Promise<import("axios").AxiosResponse<unknown, any, {}>>;
|
|
19
|
+
editMessage(messageId: Identifier, data: T.EditMessageInput, options?: RequestOptions<T.EditMessageInput>): Promise<import("axios").AxiosResponse<T.MessageResponse, T.EditMessageInput, {}>>;
|
|
20
|
+
deleteMessage(messageId: Identifier, options?: RequestOptions): Promise<import("axios").AxiosResponse<void, any, {}>>;
|
|
21
|
+
react(messageId: Identifier, data: T.ReactionInput, options?: RequestOptions<T.ReactionInput>): Promise<import("axios").AxiosResponse<T.MessageResponse, T.ReactionInput, {}>>;
|
|
22
|
+
}
|
|
23
|
+
export * from "./types.js";
|
|
24
|
+
export * from "@faiber/sdk-core";
|
|
25
|
+
export * from "./operations.js";
|
|
26
|
+
export * from "./operations.types.js";
|
|
27
|
+
//# sourceMappingURL=index.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,UAAU,EAAE,KAAK,UAAU,EAAE,KAAK,cAAc,EAAE,MAAM,kBAAkB,CAAC;AACpF,OAAO,KAAK,KAAK,CAAC,MAAM,YAAY,CAAC;AACrC,OAAO,EAAE,cAAc,EAAE,MAAM,iBAAiB,CAAC;AAEjD,qBAAa,OAAQ,SAAQ,UAAU;IACrC,QAAQ,CAAC,UAAU,iBAAmC;IACtD,aAAa,CAAC,OAAO,CAAC,EAAE,cAAc;IACtC,kBAAkB,CAAC,IAAI,EAAE,CAAC,CAAC,uBAAuB,EAAE,OAAO,CAAC,EAAE,cAAc,CAAC,CAAC,CAAC,uBAAuB,CAAC;IACvG,YAAY,CAAC,cAAc,EAAE,UAAU,EAAE,OAAO,CAAC,EAAE,cAAc;IACjE,kBAAkB,CAAC,cAAc,EAAE,UAAU,EAAE,IAAI,EAAE,CAAC,CAAC,uBAAuB,EAAE,OAAO,CAAC,EAAE,cAAc,CAAC,CAAC,CAAC,uBAAuB,CAAC;IACnI,mBAAmB,CAAC,cAAc,EAAE,UAAU,EAAE,OAAO,CAAC,EAAE,cAAc;IACxE,OAAO,CAAC,cAAc,EAAE,UAAU,EAAE,OAAO,CAAC,EAAE,cAAc;IAC5D,SAAS,CAAC,cAAc,EAAE,UAAU,EAAE,IAAI,EAAE,CAAC,CAAC,WAAW,EAAE,OAAO,CAAC,EAAE,cAAc,CAAC,CAAC,CAAC,WAAW,CAAC;IAClG,YAAY,CAAC,cAAc,EAAE,UAAU,EAAE,MAAM,EAAE,UAAU,EAAE,OAAO,CAAC,EAAE,cAAc;IACrF,QAAQ,CAAC,cAAc,EAAE,UAAU,EAAE,MAAM,CAAC,EAAE,CAAC,CAAC,aAAa,EAAE,OAAO,CAAC,EAAE,cAAc;IACvF,WAAW,CAAC,cAAc,EAAE,UAAU,EAAE,IAAI,EAAE,CAAC,CAAC,gBAAgB,EAAE,OAAO,CAAC,EAAE,cAAc,CAAC,CAAC,CAAC,gBAAgB,CAAC;IAC9G,aAAa,CAAC,cAAc,EAAE,UAAU,EAAE,IAAI,EAAE,CAAC,CAAC,cAAc,EAAE,OAAO,CAAC,EAAE,cAAc,CAAC,CAAC,CAAC,cAAc,CAAC;IAC5G,QAAQ,CAAC,cAAc,EAAE,UAAU,EAAE,IAAI,EAAE,CAAC,CAAC,SAAS,EAAE,OAAO,CAAC,EAAE,cAAc,CAAC,CAAC,CAAC,SAAS,CAAC;IAC7F,MAAM,CAAC,cAAc,EAAE,UAAU,EAAE,OAAO,CAAC,EAAE,cAAc;IAC3D,WAAW,CAAC,SAAS,EAAE,UAAU,EAAE,IAAI,EAAE,CAAC,CAAC,gBAAgB,EAAE,OAAO,CAAC,EAAE,cAAc,CAAC,CAAC,CAAC,gBAAgB,CAAC;IACzG,aAAa,CAAC,SAAS,EAAE,UAAU,EAAE,OAAO,CAAC,EAAE,cAAc;IAC7D,KAAK,CAAC,SAAS,EAAE,UAAU,EAAE,IAAI,EAAE,CAAC,CAAC,aAAa,EAAE,OAAO,CAAC,EAAE,cAAc,CAAC,CAAC,CAAC,aAAa,CAAC;CAC9F;AACD,cAAc,YAAY,CAAC;AAC3B,cAAc,kBAAkB,CAAC;AACjC,cAAc,iBAAiB,CAAC;AAChC,cAAc,uBAAuB,CAAC"}
|
package/dist/index.js
ADDED
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
import { ServiceApi } from "@faiber/sdk-core";
|
|
2
|
+
import { ChatOperations } from "./operations.js";
|
|
3
|
+
const id = (value) => encodeURIComponent(value);
|
|
4
|
+
export class ChatApi extends ServiceApi {
|
|
5
|
+
operations = new ChatOperations(this.client);
|
|
6
|
+
conversations(options) { return this.client.get("/api/v1/conversations", undefined, options); }
|
|
7
|
+
createConversation(data, options) { return this.client.post("/api/v1/conversations", data, options); }
|
|
8
|
+
conversation(conversationId, options) { return this.client.get(`/api/v1/conversations/${id(conversationId)}`, undefined, options); }
|
|
9
|
+
updateConversation(conversationId, data, options) { return this.client.put(`/api/v1/conversations/${id(conversationId)}`, data, options); }
|
|
10
|
+
archiveConversation(conversationId, options) { return this.client.delete(`/api/v1/conversations/${id(conversationId)}`, options); }
|
|
11
|
+
members(conversationId, options) { return this.client.get(`/api/v1/conversations/${id(conversationId)}/members`, undefined, options); }
|
|
12
|
+
addMember(conversationId, data, options) { return this.client.post(`/api/v1/conversations/${id(conversationId)}/members`, data, options); }
|
|
13
|
+
removeMember(conversationId, userId, options) { return this.client.delete(`/api/v1/conversations/${id(conversationId)}/members/${id(userId)}`, options); }
|
|
14
|
+
messages(conversationId, params, options) { return this.client.get(`/api/v1/conversations/${id(conversationId)}/messages`, params, options); }
|
|
15
|
+
sendMessage(conversationId, data, options) { return this.client.post(`/api/v1/conversations/${id(conversationId)}/messages`, data, options); }
|
|
16
|
+
sendAiMessage(conversationId, data, options) { return this.client.post(`/api/v1/conversations/${id(conversationId)}/ai/messages`, data, options); }
|
|
17
|
+
markRead(conversationId, data, options) { return this.client.post(`/api/v1/conversations/${id(conversationId)}/read`, data, options); }
|
|
18
|
+
events(conversationId, options) { return this.client.get(`/api/v1/conversations/${id(conversationId)}/events`, undefined, { ...options, responseType: "stream" }); }
|
|
19
|
+
editMessage(messageId, data, options) { return this.client.put(`/api/v1/messages/${id(messageId)}`, data, options); }
|
|
20
|
+
deleteMessage(messageId, options) { return this.client.delete(`/api/v1/messages/${id(messageId)}`, options); }
|
|
21
|
+
react(messageId, data, options) { return this.client.post(`/api/v1/messages/${id(messageId)}/reactions`, data, options); }
|
|
22
|
+
}
|
|
23
|
+
export * from "./types.js";
|
|
24
|
+
export * from "@faiber/sdk-core";
|
|
25
|
+
export * from "./operations.js";
|
|
26
|
+
export * from "./operations.types.js";
|
|
27
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"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"}
|
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
import { ServiceApi, type Identifier, type RequestOptions } from "@faiber/sdk-core";
|
|
2
|
+
import type * as T from "./operations.types.js";
|
|
3
|
+
export declare class ChatOperations extends ServiceApi {
|
|
4
|
+
/** GET /api/v1/conversations; permission: chat:read. */
|
|
5
|
+
routesListGet(options?: RequestOptions): Promise<import("axios").AxiosResponse<T.RoutesListGetResponse, unknown, {}>>;
|
|
6
|
+
/** POST /api/v1/conversations; permission: chat:write. */
|
|
7
|
+
routesCreatePost(data: T.RoutesCreatePostInput, options?: RequestOptions<T.RoutesCreatePostInput>): Promise<import("axios").AxiosResponse<T.RoutesCreatePostResponse, T.RoutesCreatePostInput, {}>>;
|
|
8
|
+
/** DELETE /api/v1/conversations/{id}; permission: chat:delete. */
|
|
9
|
+
routesArchiveDelete(id: Identifier, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.RoutesArchiveDeleteResponse, unknown, {}>>;
|
|
10
|
+
/** GET /api/v1/conversations/{id}; permission: chat:read. */
|
|
11
|
+
routesGetOneGet(id: Identifier, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.RoutesGetOneGetResponse, unknown, {}>>;
|
|
12
|
+
/** PUT /api/v1/conversations/{id}; permission: chat:write. */
|
|
13
|
+
routesUpdatePut(id: Identifier, data: T.RoutesUpdatePutInput, options?: RequestOptions<T.RoutesUpdatePutInput>): Promise<import("axios").AxiosResponse<T.RoutesUpdatePutResponse, T.RoutesUpdatePutInput, {}>>;
|
|
14
|
+
/** POST /api/v1/conversations/{id}/ai/messages; permission: chat:ai. */
|
|
15
|
+
routesAiSendPost(id: Identifier, data: T.RoutesAiSendPostInput, options?: RequestOptions<T.RoutesAiSendPostInput>): Promise<import("axios").AxiosResponse<T.RoutesAiSendPostResponse, T.RoutesAiSendPostInput, {}>>;
|
|
16
|
+
/** GET /api/v1/conversations/{id}/events; permission: chat:read. */
|
|
17
|
+
routesEventsGet(id: Identifier, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.RoutesEventsGetResponse, unknown, {}>>;
|
|
18
|
+
/** GET /api/v1/conversations/{id}/members; permission: chat:read. */
|
|
19
|
+
routesMembersGet(id: Identifier, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.RoutesMembersGetResponse, unknown, {}>>;
|
|
20
|
+
/** POST /api/v1/conversations/{id}/members; permission: chat:manage. */
|
|
21
|
+
routesAddMemberPost(id: Identifier, data: T.RoutesAddMemberPostInput, options?: RequestOptions<T.RoutesAddMemberPostInput>): Promise<import("axios").AxiosResponse<T.RoutesAddMemberPostResponse, T.RoutesAddMemberPostInput, {}>>;
|
|
22
|
+
/** DELETE /api/v1/conversations/{id}/members/{user_id}; permission: chat:manage. */
|
|
23
|
+
routesRemoveMemberDelete(id: Identifier, userId: Identifier, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.RoutesRemoveMemberDeleteResponse, unknown, {}>>;
|
|
24
|
+
/** GET /api/v1/conversations/{id}/messages; permission: chat:read. */
|
|
25
|
+
routesMessagesGet(id: Identifier, params?: T.RoutesMessagesGetQuery, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.RoutesMessagesGetResponse, unknown, {}>>;
|
|
26
|
+
/** POST /api/v1/conversations/{id}/messages; permission: chat:write. */
|
|
27
|
+
routesSendPost(id: Identifier, data: T.RoutesSendPostInput, options?: RequestOptions<T.RoutesSendPostInput>): Promise<import("axios").AxiosResponse<T.RoutesSendPostResponse, T.RoutesSendPostInput, {}>>;
|
|
28
|
+
/** POST /api/v1/conversations/{id}/read; permission: chat:write. */
|
|
29
|
+
routesReadPost(id: Identifier, data: T.RoutesReadPostInput, options?: RequestOptions<T.RoutesReadPostInput>): Promise<import("axios").AxiosResponse<T.RoutesReadPostResponse, T.RoutesReadPostInput, {}>>;
|
|
30
|
+
/** DELETE /api/v1/messages/{id}; permission: chat:delete. */
|
|
31
|
+
routesDeleteMessageDelete(id: Identifier, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.RoutesDeleteMessageDeleteResponse, unknown, {}>>;
|
|
32
|
+
/** PUT /api/v1/messages/{id}; permission: chat:write. */
|
|
33
|
+
routesEditPut(id: Identifier, data: T.RoutesEditPutInput, options?: RequestOptions<T.RoutesEditPutInput>): Promise<import("axios").AxiosResponse<T.RoutesEditPutResponse, T.RoutesEditPutInput, {}>>;
|
|
34
|
+
/** POST /api/v1/messages/{id}/reactions; permission: chat:write. */
|
|
35
|
+
routesReactPost(id: Identifier, data: T.RoutesReactPostInput, options?: RequestOptions<T.RoutesReactPostInput>): Promise<import("axios").AxiosResponse<T.RoutesReactPostResponse, T.RoutesReactPostInput, {}>>;
|
|
36
|
+
}
|
|
37
|
+
//# 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,cAAe,SAAQ,UAAU;IAC5C,wDAAwD;IACxD,aAAa,CAAC,OAAO,CAAC,EAAE,cAAc;IAGtC,0DAA0D;IAC1D,gBAAgB,CAAC,IAAI,EAAE,CAAC,CAAC,qBAAqB,EAAE,OAAO,CAAC,EAAE,cAAc,CAAC,CAAC,CAAC,qBAAqB,CAAC;IAGjG,kEAAkE;IAClE,mBAAmB,CAAC,EAAE,EAAE,UAAU,EAAE,OAAO,CAAC,EAAE,cAAc;IAG5D,6DAA6D;IAC7D,eAAe,CAAC,EAAE,EAAE,UAAU,EAAE,OAAO,CAAC,EAAE,cAAc;IAGxD,8DAA8D;IAC9D,eAAe,CAAC,EAAE,EAAE,UAAU,EAAE,IAAI,EAAE,CAAC,CAAC,oBAAoB,EAAE,OAAO,CAAC,EAAE,cAAc,CAAC,CAAC,CAAC,oBAAoB,CAAC;IAG9G,wEAAwE;IACxE,gBAAgB,CAAC,EAAE,EAAE,UAAU,EAAE,IAAI,EAAE,CAAC,CAAC,qBAAqB,EAAE,OAAO,CAAC,EAAE,cAAc,CAAC,CAAC,CAAC,qBAAqB,CAAC;IAGjH,oEAAoE;IACpE,eAAe,CAAC,EAAE,EAAE,UAAU,EAAE,OAAO,CAAC,EAAE,cAAc;IAGxD,qEAAqE;IACrE,gBAAgB,CAAC,EAAE,EAAE,UAAU,EAAE,OAAO,CAAC,EAAE,cAAc;IAGzD,wEAAwE;IACxE,mBAAmB,CAAC,EAAE,EAAE,UAAU,EAAE,IAAI,EAAE,CAAC,CAAC,wBAAwB,EAAE,OAAO,CAAC,EAAE,cAAc,CAAC,CAAC,CAAC,wBAAwB,CAAC;IAG1H,oFAAoF;IACpF,wBAAwB,CAAC,EAAE,EAAE,UAAU,EAAE,MAAM,EAAE,UAAU,EAAE,OAAO,CAAC,EAAE,cAAc;IAGrF,sEAAsE;IACtE,iBAAiB,CAAC,EAAE,EAAE,UAAU,EAAE,MAAM,CAAC,EAAE,CAAC,CAAC,sBAAsB,EAAE,OAAO,CAAC,EAAE,cAAc;IAG7F,wEAAwE;IACxE,cAAc,CAAC,EAAE,EAAE,UAAU,EAAE,IAAI,EAAE,CAAC,CAAC,mBAAmB,EAAE,OAAO,CAAC,EAAE,cAAc,CAAC,CAAC,CAAC,mBAAmB,CAAC;IAG3G,oEAAoE;IACpE,cAAc,CAAC,EAAE,EAAE,UAAU,EAAE,IAAI,EAAE,CAAC,CAAC,mBAAmB,EAAE,OAAO,CAAC,EAAE,cAAc,CAAC,CAAC,CAAC,mBAAmB,CAAC;IAG3G,6DAA6D;IAC7D,yBAAyB,CAAC,EAAE,EAAE,UAAU,EAAE,OAAO,CAAC,EAAE,cAAc;IAGlE,yDAAyD;IACzD,aAAa,CAAC,EAAE,EAAE,UAAU,EAAE,IAAI,EAAE,CAAC,CAAC,kBAAkB,EAAE,OAAO,CAAC,EAAE,cAAc,CAAC,CAAC,CAAC,kBAAkB,CAAC;IAGxG,oEAAoE;IACpE,eAAe,CAAC,EAAE,EAAE,UAAU,EAAE,IAAI,EAAE,CAAC,CAAC,oBAAoB,EAAE,OAAO,CAAC,EAAE,cAAc,CAAC,CAAC,CAAC,oBAAoB,CAAC;CAG/G"}
|
|
@@ -0,0 +1,68 @@
|
|
|
1
|
+
import { ServiceApi, urlEncoded } from "@faiber/sdk-core";
|
|
2
|
+
export class ChatOperations extends ServiceApi {
|
|
3
|
+
/** GET /api/v1/conversations; permission: chat:read. */
|
|
4
|
+
routesListGet(options) {
|
|
5
|
+
return this.client.request({ ...options, method: "GET", url: `/api/v1/conversations` });
|
|
6
|
+
}
|
|
7
|
+
/** POST /api/v1/conversations; permission: chat:write. */
|
|
8
|
+
routesCreatePost(data, options) {
|
|
9
|
+
return this.client.request({ ...options, method: "POST", url: `/api/v1/conversations`, data: data });
|
|
10
|
+
}
|
|
11
|
+
/** DELETE /api/v1/conversations/{id}; permission: chat:delete. */
|
|
12
|
+
routesArchiveDelete(id, options) {
|
|
13
|
+
return this.client.request({ ...options, method: "DELETE", url: `/api/v1/conversations/${encodeURIComponent(id)}` });
|
|
14
|
+
}
|
|
15
|
+
/** GET /api/v1/conversations/{id}; permission: chat:read. */
|
|
16
|
+
routesGetOneGet(id, options) {
|
|
17
|
+
return this.client.request({ ...options, method: "GET", url: `/api/v1/conversations/${encodeURIComponent(id)}` });
|
|
18
|
+
}
|
|
19
|
+
/** PUT /api/v1/conversations/{id}; permission: chat:write. */
|
|
20
|
+
routesUpdatePut(id, data, options) {
|
|
21
|
+
return this.client.request({ ...options, method: "PUT", url: `/api/v1/conversations/${encodeURIComponent(id)}`, data: data });
|
|
22
|
+
}
|
|
23
|
+
/** POST /api/v1/conversations/{id}/ai/messages; permission: chat:ai. */
|
|
24
|
+
routesAiSendPost(id, data, options) {
|
|
25
|
+
return this.client.request({ ...options, method: "POST", url: `/api/v1/conversations/${encodeURIComponent(id)}/ai/messages`, data: data });
|
|
26
|
+
}
|
|
27
|
+
/** GET /api/v1/conversations/{id}/events; permission: chat:read. */
|
|
28
|
+
routesEventsGet(id, options) {
|
|
29
|
+
return this.client.request({ ...options, method: "GET", url: `/api/v1/conversations/${encodeURIComponent(id)}/events` });
|
|
30
|
+
}
|
|
31
|
+
/** GET /api/v1/conversations/{id}/members; permission: chat:read. */
|
|
32
|
+
routesMembersGet(id, options) {
|
|
33
|
+
return this.client.request({ ...options, method: "GET", url: `/api/v1/conversations/${encodeURIComponent(id)}/members` });
|
|
34
|
+
}
|
|
35
|
+
/** POST /api/v1/conversations/{id}/members; permission: chat:manage. */
|
|
36
|
+
routesAddMemberPost(id, data, options) {
|
|
37
|
+
return this.client.request({ ...options, method: "POST", url: `/api/v1/conversations/${encodeURIComponent(id)}/members`, data: data });
|
|
38
|
+
}
|
|
39
|
+
/** DELETE /api/v1/conversations/{id}/members/{user_id}; permission: chat:manage. */
|
|
40
|
+
routesRemoveMemberDelete(id, userId, options) {
|
|
41
|
+
return this.client.request({ ...options, method: "DELETE", url: `/api/v1/conversations/${encodeURIComponent(id)}/members/${encodeURIComponent(userId)}` });
|
|
42
|
+
}
|
|
43
|
+
/** GET /api/v1/conversations/{id}/messages; permission: chat:read. */
|
|
44
|
+
routesMessagesGet(id, params, options) {
|
|
45
|
+
return this.client.request({ ...options, method: "GET", url: `/api/v1/conversations/${encodeURIComponent(id)}/messages`, params });
|
|
46
|
+
}
|
|
47
|
+
/** POST /api/v1/conversations/{id}/messages; permission: chat:write. */
|
|
48
|
+
routesSendPost(id, data, options) {
|
|
49
|
+
return this.client.request({ ...options, method: "POST", url: `/api/v1/conversations/${encodeURIComponent(id)}/messages`, data: data });
|
|
50
|
+
}
|
|
51
|
+
/** POST /api/v1/conversations/{id}/read; permission: chat:write. */
|
|
52
|
+
routesReadPost(id, data, options) {
|
|
53
|
+
return this.client.request({ ...options, method: "POST", url: `/api/v1/conversations/${encodeURIComponent(id)}/read`, data: data });
|
|
54
|
+
}
|
|
55
|
+
/** DELETE /api/v1/messages/{id}; permission: chat:delete. */
|
|
56
|
+
routesDeleteMessageDelete(id, options) {
|
|
57
|
+
return this.client.request({ ...options, method: "DELETE", url: `/api/v1/messages/${encodeURIComponent(id)}` });
|
|
58
|
+
}
|
|
59
|
+
/** PUT /api/v1/messages/{id}; permission: chat:write. */
|
|
60
|
+
routesEditPut(id, data, options) {
|
|
61
|
+
return this.client.request({ ...options, method: "PUT", url: `/api/v1/messages/${encodeURIComponent(id)}`, data: data });
|
|
62
|
+
}
|
|
63
|
+
/** POST /api/v1/messages/{id}/reactions; permission: chat:write. */
|
|
64
|
+
routesReactPost(id, data, options) {
|
|
65
|
+
return this.client.request({ ...options, method: "POST", url: `/api/v1/messages/${encodeURIComponent(id)}/reactions`, data: data });
|
|
66
|
+
}
|
|
67
|
+
}
|
|
68
|
+
//# 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,115 @@
|
|
|
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 RoutesListGetResponse extends ApiEnvelope<JsonValue> {
|
|
5
|
+
}
|
|
6
|
+
/** Backend request type: CreateConversation. */
|
|
7
|
+
export interface RoutesCreatePostInput extends JsonObject {
|
|
8
|
+
"kind": string;
|
|
9
|
+
"slug"?: string;
|
|
10
|
+
"title": JsonValue;
|
|
11
|
+
"description": JsonValue;
|
|
12
|
+
"member_ids": string[];
|
|
13
|
+
"agent_slug": string;
|
|
14
|
+
"settings": JsonValue;
|
|
15
|
+
}
|
|
16
|
+
/** Backend response type: response without a declared JSON model. */
|
|
17
|
+
export interface RoutesCreatePostResponse extends ApiEnvelope<JsonValue> {
|
|
18
|
+
}
|
|
19
|
+
/** Backend response type: response without a declared JSON model. */
|
|
20
|
+
export interface RoutesArchiveDeleteResponse extends ApiEnvelope<JsonValue> {
|
|
21
|
+
}
|
|
22
|
+
/** Backend response type: response without a declared JSON model. */
|
|
23
|
+
export interface RoutesGetOneGetResponse extends ApiEnvelope<JsonValue> {
|
|
24
|
+
}
|
|
25
|
+
/** Backend request type: UpdateConversation. */
|
|
26
|
+
export interface RoutesUpdatePutInput extends JsonObject {
|
|
27
|
+
"title"?: JsonValue;
|
|
28
|
+
"description"?: JsonValue;
|
|
29
|
+
"settings"?: JsonValue;
|
|
30
|
+
"status"?: string;
|
|
31
|
+
"expected_version"?: number;
|
|
32
|
+
}
|
|
33
|
+
/** Backend response type: response without a declared JSON model. */
|
|
34
|
+
export interface RoutesUpdatePutResponse extends ApiEnvelope<JsonValue> {
|
|
35
|
+
}
|
|
36
|
+
/** Backend request type: AiMessage. */
|
|
37
|
+
export interface RoutesAiSendPostInput extends JsonObject {
|
|
38
|
+
"message": string;
|
|
39
|
+
"client_id"?: string;
|
|
40
|
+
"model_ref"?: string;
|
|
41
|
+
"profile": JsonValue;
|
|
42
|
+
"props": JsonValue;
|
|
43
|
+
"meta": JsonValue;
|
|
44
|
+
"inputs": JsonValue;
|
|
45
|
+
"knowledge_group_slugs": string[];
|
|
46
|
+
"knowledge_level"?: number;
|
|
47
|
+
}
|
|
48
|
+
/** Backend response type: response without a declared JSON model. */
|
|
49
|
+
export interface RoutesAiSendPostResponse extends ApiEnvelope<JsonValue> {
|
|
50
|
+
}
|
|
51
|
+
/** Backend response type: response without a declared JSON model. */
|
|
52
|
+
export interface RoutesEventsGetResponse extends ApiEnvelope<JsonValue> {
|
|
53
|
+
}
|
|
54
|
+
/** Backend response type: response without a declared JSON model. */
|
|
55
|
+
export interface RoutesMembersGetResponse extends ApiEnvelope<JsonValue> {
|
|
56
|
+
}
|
|
57
|
+
/** Backend request type: MemberInput. */
|
|
58
|
+
export interface RoutesAddMemberPostInput extends JsonObject {
|
|
59
|
+
"user_id": string;
|
|
60
|
+
"role": string;
|
|
61
|
+
}
|
|
62
|
+
/** Backend response type: response without a declared JSON model. */
|
|
63
|
+
export interface RoutesAddMemberPostResponse extends ApiEnvelope<JsonValue> {
|
|
64
|
+
}
|
|
65
|
+
/** Backend response type: response without a declared JSON model. */
|
|
66
|
+
export interface RoutesRemoveMemberDeleteResponse extends ApiEnvelope<JsonValue> {
|
|
67
|
+
}
|
|
68
|
+
/** Backend query type: ListQuery. */
|
|
69
|
+
export interface RoutesMessagesGetQuery extends QueryParams {
|
|
70
|
+
"before"?: number;
|
|
71
|
+
"after"?: number;
|
|
72
|
+
"limit"?: number;
|
|
73
|
+
"q"?: string;
|
|
74
|
+
}
|
|
75
|
+
/** Backend response type: response without a declared JSON model. */
|
|
76
|
+
export interface RoutesMessagesGetResponse extends ApiEnvelope<JsonValue> {
|
|
77
|
+
}
|
|
78
|
+
/** Backend request type: SendMessage. */
|
|
79
|
+
export interface RoutesSendPostInput extends JsonObject {
|
|
80
|
+
"message_type": string;
|
|
81
|
+
"content": JsonValue;
|
|
82
|
+
"metadata": JsonValue;
|
|
83
|
+
"reply_to_id"?: string;
|
|
84
|
+
"thread_root_id"?: string;
|
|
85
|
+
"client_id"?: string;
|
|
86
|
+
}
|
|
87
|
+
/** Backend response type: response without a declared JSON model. */
|
|
88
|
+
export interface RoutesSendPostResponse extends ApiEnvelope<JsonValue> {
|
|
89
|
+
}
|
|
90
|
+
/** Backend request type: ReadInput. */
|
|
91
|
+
export interface RoutesReadPostInput extends JsonObject {
|
|
92
|
+
"sequence": number;
|
|
93
|
+
"message_id"?: string;
|
|
94
|
+
}
|
|
95
|
+
/** Backend response type: response without a declared JSON model. */
|
|
96
|
+
export interface RoutesReadPostResponse extends ApiEnvelope<JsonValue> {
|
|
97
|
+
}
|
|
98
|
+
/** Backend response type: response without a declared JSON model. */
|
|
99
|
+
export interface RoutesDeleteMessageDeleteResponse extends ApiEnvelope<JsonValue> {
|
|
100
|
+
}
|
|
101
|
+
/** Backend request type: EditMessage. */
|
|
102
|
+
export interface RoutesEditPutInput extends JsonObject {
|
|
103
|
+
"content": JsonValue;
|
|
104
|
+
}
|
|
105
|
+
/** Backend response type: response without a declared JSON model. */
|
|
106
|
+
export interface RoutesEditPutResponse extends ApiEnvelope<JsonValue> {
|
|
107
|
+
}
|
|
108
|
+
/** Backend request type: ReactionInput. */
|
|
109
|
+
export interface RoutesReactPostInput extends JsonObject {
|
|
110
|
+
"emoji": string;
|
|
111
|
+
}
|
|
112
|
+
/** Backend response type: response without a declared JSON model. */
|
|
113
|
+
export interface RoutesReactPostResponse extends ApiEnvelope<JsonValue> {
|
|
114
|
+
}
|
|
115
|
+
//# 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":"AAAA,OAAO,KAAK,EAAE,WAAW,EAAE,UAAU,EAAE,SAAS,EAAE,WAAW,EAAc,MAAM,kBAAkB,CAAC;AAEpG,0HAA0H;AAC1H,qEAAqE;AACrE,MAAM,WAAW,qBAAsB,SAAQ,WAAW,CAAC,SAAS,CAAC;CACpE;AAED,gDAAgD;AAChD,MAAM,WAAW,qBAAsB,SAAQ,UAAU;IACvD,MAAM,EAAE,MAAM,CAAC;IACf,MAAM,CAAC,EAAE,MAAM,CAAC;IAChB,OAAO,EAAE,SAAS,CAAC;IACnB,aAAa,EAAE,SAAS,CAAC;IACzB,YAAY,EAAE,MAAM,EAAE,CAAC;IACvB,YAAY,EAAE,MAAM,CAAC;IACrB,UAAU,EAAE,SAAS,CAAC;CACvB;AACD,qEAAqE;AACrE,MAAM,WAAW,wBAAyB,SAAQ,WAAW,CAAC,SAAS,CAAC;CACvE;AAED,qEAAqE;AACrE,MAAM,WAAW,2BAA4B,SAAQ,WAAW,CAAC,SAAS,CAAC;CAC1E;AAED,qEAAqE;AACrE,MAAM,WAAW,uBAAwB,SAAQ,WAAW,CAAC,SAAS,CAAC;CACtE;AAED,gDAAgD;AAChD,MAAM,WAAW,oBAAqB,SAAQ,UAAU;IACtD,OAAO,CAAC,EAAE,SAAS,CAAC;IACpB,aAAa,CAAC,EAAE,SAAS,CAAC;IAC1B,UAAU,CAAC,EAAE,SAAS,CAAC;IACvB,QAAQ,CAAC,EAAE,MAAM,CAAC;IAClB,kBAAkB,CAAC,EAAE,MAAM,CAAC;CAC7B;AACD,qEAAqE;AACrE,MAAM,WAAW,uBAAwB,SAAQ,WAAW,CAAC,SAAS,CAAC;CACtE;AAED,uCAAuC;AACvC,MAAM,WAAW,qBAAsB,SAAQ,UAAU;IACvD,SAAS,EAAE,MAAM,CAAC;IAClB,WAAW,CAAC,EAAE,MAAM,CAAC;IACrB,WAAW,CAAC,EAAE,MAAM,CAAC;IACrB,SAAS,EAAE,SAAS,CAAC;IACrB,OAAO,EAAE,SAAS,CAAC;IACnB,MAAM,EAAE,SAAS,CAAC;IAClB,QAAQ,EAAE,SAAS,CAAC;IACpB,uBAAuB,EAAE,MAAM,EAAE,CAAC;IAClC,iBAAiB,CAAC,EAAE,MAAM,CAAC;CAC5B;AACD,qEAAqE;AACrE,MAAM,WAAW,wBAAyB,SAAQ,WAAW,CAAC,SAAS,CAAC;CACvE;AAED,qEAAqE;AACrE,MAAM,WAAW,uBAAwB,SAAQ,WAAW,CAAC,SAAS,CAAC;CACtE;AAED,qEAAqE;AACrE,MAAM,WAAW,wBAAyB,SAAQ,WAAW,CAAC,SAAS,CAAC;CACvE;AAED,yCAAyC;AACzC,MAAM,WAAW,wBAAyB,SAAQ,UAAU;IAC1D,SAAS,EAAE,MAAM,CAAC;IAClB,MAAM,EAAE,MAAM,CAAC;CAChB;AACD,qEAAqE;AACrE,MAAM,WAAW,2BAA4B,SAAQ,WAAW,CAAC,SAAS,CAAC;CAC1E;AAED,qEAAqE;AACrE,MAAM,WAAW,gCAAiC,SAAQ,WAAW,CAAC,SAAS,CAAC;CAC/E;AAED,qCAAqC;AACrC,MAAM,WAAW,sBAAuB,SAAQ,WAAW;IACzD,QAAQ,CAAC,EAAE,MAAM,CAAC;IAClB,OAAO,CAAC,EAAE,MAAM,CAAC;IACjB,OAAO,CAAC,EAAE,MAAM,CAAC;IACjB,GAAG,CAAC,EAAE,MAAM,CAAC;CACd;AACD,qEAAqE;AACrE,MAAM,WAAW,yBAA0B,SAAQ,WAAW,CAAC,SAAS,CAAC;CACxE;AAED,yCAAyC;AACzC,MAAM,WAAW,mBAAoB,SAAQ,UAAU;IACrD,cAAc,EAAE,MAAM,CAAC;IACvB,SAAS,EAAE,SAAS,CAAC;IACrB,UAAU,EAAE,SAAS,CAAC;IACtB,aAAa,CAAC,EAAE,MAAM,CAAC;IACvB,gBAAgB,CAAC,EAAE,MAAM,CAAC;IAC1B,WAAW,CAAC,EAAE,MAAM,CAAC;CACtB;AACD,qEAAqE;AACrE,MAAM,WAAW,sBAAuB,SAAQ,WAAW,CAAC,SAAS,CAAC;CACrE;AAED,uCAAuC;AACvC,MAAM,WAAW,mBAAoB,SAAQ,UAAU;IACrD,UAAU,EAAE,MAAM,CAAC;IACnB,YAAY,CAAC,EAAE,MAAM,CAAC;CACvB;AACD,qEAAqE;AACrE,MAAM,WAAW,sBAAuB,SAAQ,WAAW,CAAC,SAAS,CAAC;CACrE;AAED,qEAAqE;AACrE,MAAM,WAAW,iCAAkC,SAAQ,WAAW,CAAC,SAAS,CAAC;CAChF;AAED,yCAAyC;AACzC,MAAM,WAAW,kBAAmB,SAAQ,UAAU;IACpD,SAAS,EAAE,SAAS,CAAC;CACtB;AACD,qEAAqE;AACrE,MAAM,WAAW,qBAAsB,SAAQ,WAAW,CAAC,SAAS,CAAC;CACpE;AAED,2CAA2C;AAC3C,MAAM,WAAW,oBAAqB,SAAQ,UAAU;IACtD,OAAO,EAAE,MAAM,CAAC;CACjB;AACD,qEAAqE;AACrE,MAAM,WAAW,uBAAwB,SAAQ,WAAW,CAAC,SAAS,CAAC;CACtE"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"operations.types.js","sourceRoot":"","sources":["../src/operations.types.ts"],"names":[],"mappings":""}
|
package/dist/types.d.ts
ADDED
|
@@ -0,0 +1,105 @@
|
|
|
1
|
+
import type { ApiEnvelope, JsonObject, JsonValue, QueryParams } from "@faiber/sdk-core";
|
|
2
|
+
export interface ChatListQuery extends QueryParams {
|
|
3
|
+
before?: number;
|
|
4
|
+
after?: number;
|
|
5
|
+
limit?: number;
|
|
6
|
+
q?: string;
|
|
7
|
+
}
|
|
8
|
+
export interface Conversation extends JsonObject {
|
|
9
|
+
id: string;
|
|
10
|
+
organization_id: string;
|
|
11
|
+
kind: string;
|
|
12
|
+
slug?: string | null;
|
|
13
|
+
title: JsonValue;
|
|
14
|
+
description: JsonValue;
|
|
15
|
+
agent_slug: string;
|
|
16
|
+
settings: JsonValue;
|
|
17
|
+
status: string;
|
|
18
|
+
version: number;
|
|
19
|
+
created_at: string;
|
|
20
|
+
updated_at: string;
|
|
21
|
+
}
|
|
22
|
+
export interface ConversationMember extends JsonObject {
|
|
23
|
+
id: string;
|
|
24
|
+
conversation_id: string;
|
|
25
|
+
user_id: string;
|
|
26
|
+
role: string;
|
|
27
|
+
status: string;
|
|
28
|
+
joined_at: string;
|
|
29
|
+
}
|
|
30
|
+
export interface ChatMessage extends JsonObject {
|
|
31
|
+
id: string;
|
|
32
|
+
conversation_id: string;
|
|
33
|
+
sender_user_id: string;
|
|
34
|
+
sequence: number;
|
|
35
|
+
message_type: string;
|
|
36
|
+
content: JsonValue;
|
|
37
|
+
metadata: JsonValue;
|
|
38
|
+
reply_to_id?: string | null;
|
|
39
|
+
thread_root_id?: string | null;
|
|
40
|
+
client_id?: string | null;
|
|
41
|
+
created_at: string;
|
|
42
|
+
edited_at?: string | null;
|
|
43
|
+
}
|
|
44
|
+
export interface CreateConversationInput extends JsonObject {
|
|
45
|
+
kind?: string;
|
|
46
|
+
slug?: string;
|
|
47
|
+
title?: JsonValue;
|
|
48
|
+
description?: JsonValue;
|
|
49
|
+
member_ids?: string[];
|
|
50
|
+
agent_slug?: string;
|
|
51
|
+
settings?: JsonValue;
|
|
52
|
+
}
|
|
53
|
+
export interface UpdateConversationInput extends JsonObject {
|
|
54
|
+
title?: JsonValue;
|
|
55
|
+
description?: JsonValue;
|
|
56
|
+
settings?: JsonValue;
|
|
57
|
+
status?: string;
|
|
58
|
+
expected_version?: number;
|
|
59
|
+
}
|
|
60
|
+
export interface MemberInput extends JsonObject {
|
|
61
|
+
user_id: string;
|
|
62
|
+
role?: string;
|
|
63
|
+
}
|
|
64
|
+
export interface SendMessageInput extends JsonObject {
|
|
65
|
+
message_type?: string;
|
|
66
|
+
content: JsonValue;
|
|
67
|
+
metadata?: JsonValue;
|
|
68
|
+
reply_to_id?: string;
|
|
69
|
+
thread_root_id?: string;
|
|
70
|
+
client_id?: string;
|
|
71
|
+
}
|
|
72
|
+
export interface EditMessageInput extends JsonObject {
|
|
73
|
+
content: JsonValue;
|
|
74
|
+
}
|
|
75
|
+
export interface ReactionInput extends JsonObject {
|
|
76
|
+
emoji: string;
|
|
77
|
+
}
|
|
78
|
+
export interface ReadInput extends JsonObject {
|
|
79
|
+
sequence: number;
|
|
80
|
+
message_id?: string;
|
|
81
|
+
}
|
|
82
|
+
export interface AiMessageInput extends JsonObject {
|
|
83
|
+
message: string;
|
|
84
|
+
client_id?: string;
|
|
85
|
+
model_ref?: string;
|
|
86
|
+
profile?: JsonValue;
|
|
87
|
+
props?: JsonValue;
|
|
88
|
+
meta?: JsonValue;
|
|
89
|
+
inputs?: JsonValue;
|
|
90
|
+
knowledge_group_slugs?: string[];
|
|
91
|
+
knowledge_level?: number;
|
|
92
|
+
}
|
|
93
|
+
export type ConversationResponse = ApiEnvelope<Conversation>;
|
|
94
|
+
export type ConversationListResponse = ApiEnvelope<Conversation[]>;
|
|
95
|
+
export type MemberResponse = ApiEnvelope<ConversationMember>;
|
|
96
|
+
export type MemberListResponse = ApiEnvelope<ConversationMember[]>;
|
|
97
|
+
export type MessageResponse = ApiEnvelope<ChatMessage>;
|
|
98
|
+
export type MessageListResponse = ApiEnvelope<ChatMessage[]>;
|
|
99
|
+
export type AiMessageResponse = ApiEnvelope<{
|
|
100
|
+
user_message: ChatMessage;
|
|
101
|
+
assistant_message: ChatMessage;
|
|
102
|
+
ai_turn: JsonValue;
|
|
103
|
+
billing_authority: string;
|
|
104
|
+
}>;
|
|
105
|
+
//# sourceMappingURL=types.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"types.d.ts","sourceRoot":"","sources":["../src/types.ts"],"names":[],"mappings":"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"}
|
package/dist/types.js
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"types.js","sourceRoot":"","sources":["../src/types.ts"],"names":[],"mappings":""}
|
package/package.json
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@faiber/faiber-chat",
|
|
3
|
+
"version": "0.3.0",
|
|
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
|
+
"README.md"
|
|
17
|
+
],
|
|
18
|
+
"dependencies": {
|
|
19
|
+
"@faiber/sdk-core": "0.3.0"
|
|
20
|
+
}
|
|
21
|
+
}
|