@noverachat/sdk-web 0.0.3 → 0.2.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.ko.md +8 -8
- package/README.md +8 -8
- package/dist/index.cjs +485 -258
- package/dist/index.d.cts +212 -169
- package/dist/index.d.ts +212 -169
- package/dist/index.js +485 -258
- package/package.json +1 -1
- package/src/client.ts +50 -157
- package/src/features/room.ts +274 -344
- package/src/generated/rest.ts +529 -0
- package/src/index.ts +4 -0
- package/src/types.ts +62 -177
package/README.ko.md
CHANGED
|
@@ -46,7 +46,7 @@ await room.react(await messageId, "emoji_heart");
|
|
|
46
46
|
chat.disconnect();
|
|
47
47
|
```
|
|
48
48
|
|
|
49
|
-
단계별 안내는 [docs/getting-started/quickstart.ko.md](docs/getting-started/quickstart
|
|
49
|
+
단계별 안내는 [docs/getting-started/quickstart.ko.md](https://dev-chat-docs.novera.town/ko/web/getting-started/quickstart) 참고.
|
|
50
50
|
|
|
51
51
|
## 핵심 기능
|
|
52
52
|
|
|
@@ -59,16 +59,16 @@ chat.disconnect();
|
|
|
59
59
|
|
|
60
60
|
## 문서
|
|
61
61
|
|
|
62
|
-
전체 문서는 [NoveraChat 문서 사이트](https://dev-chat-docs.novera.town/)에 발행되며, 같은 마크다운이
|
|
62
|
+
전체 문서는 [NoveraChat 문서 사이트](https://dev-chat-docs.novera.town/)에 발행되며, 같은 마크다운이 `docs/` 아래에 있고 여기서 sync된다.
|
|
63
63
|
|
|
64
64
|
| 섹션 | 내용 |
|
|
65
65
|
| --------------------------------- | ----------------------------------------------------------------------- |
|
|
66
|
-
| [시작하기](docs/getting-started/) | 설치, 퀵스타트 |
|
|
67
|
-
| [Core](docs/core/) | 인증(`tokenProvider`), 연결 수명주기, 트랜스포트(REST vs WS), 유저 차단 |
|
|
68
|
-
| [메시징](docs/messaging/) | 전송, 수신, 편집/삭제, 리액션, 히스토리, 검색 |
|
|
69
|
-
| [룸](docs/rooms/) | 룸 파사드, 멤버, 모더레이션, 초대, 공지, 입력 중, 안읽음·읽음 |
|
|
70
|
-
| [푸시](docs/push/) | 디바이스 등록, 룸별 설정 |
|
|
71
|
-
| [레퍼런스](docs/reference/) | `NoveraChat` / `Room` API, 에러 코드 |
|
|
66
|
+
| [시작하기](https://dev-chat-docs.novera.town/ko/web/getting-started/installation) | 설치, 퀵스타트 |
|
|
67
|
+
| [Core](https://dev-chat-docs.novera.town/ko/web/core/authentication) | 인증(`tokenProvider`), 연결 수명주기, 트랜스포트(REST vs WS), 유저 차단 |
|
|
68
|
+
| [메시징](https://dev-chat-docs.novera.town/ko/web/messaging/sending-a-message) | 전송, 수신, 편집/삭제, 리액션, 히스토리, 검색 |
|
|
69
|
+
| [룸](https://dev-chat-docs.novera.town/ko/web/rooms/room-facade) | 룸 파사드, 멤버, 모더레이션, 초대, 공지, 입력 중, 안읽음·읽음 |
|
|
70
|
+
| [푸시](https://dev-chat-docs.novera.town/ko/web/push/device-registration) | 디바이스 등록, 룸별 설정 |
|
|
71
|
+
| [레퍼런스](https://dev-chat-docs.novera.town/ko/web/reference/noverachat) | `NoveraChat` / `Room` API, 에러 코드 |
|
|
72
72
|
|
|
73
73
|
### 컨트리뷰터용
|
|
74
74
|
|
package/README.md
CHANGED
|
@@ -46,7 +46,7 @@ await room.react(await messageId, "emoji_heart");
|
|
|
46
46
|
chat.disconnect();
|
|
47
47
|
```
|
|
48
48
|
|
|
49
|
-
See [docs/getting-started/quickstart.md](docs/getting-started/quickstart
|
|
49
|
+
See [docs/getting-started/quickstart.md](https://dev-chat-docs.novera.town/web/getting-started/quickstart) for a step-by-step walkthrough.
|
|
50
50
|
|
|
51
51
|
## Key features
|
|
52
52
|
|
|
@@ -59,16 +59,16 @@ See [docs/getting-started/quickstart.md](docs/getting-started/quickstart.md) for
|
|
|
59
59
|
|
|
60
60
|
## Documentation
|
|
61
61
|
|
|
62
|
-
The full docs are published on the [NoveraChat docs site](https://dev-chat-docs.novera.town/); the same Markdown lives under
|
|
62
|
+
The full docs are published on the [NoveraChat docs site](https://dev-chat-docs.novera.town/); the same Markdown lives under `docs/` and is synced from here.
|
|
63
63
|
|
|
64
64
|
| Section | Contents |
|
|
65
65
|
| ---------------------------------------- | ------------------------------------------------------------------------------------------- |
|
|
66
|
-
| [Getting started](docs/getting-started/) | Installation, quickstart |
|
|
67
|
-
| [Core](docs/core/) | Authentication (`tokenProvider`), connection lifecycle, transport (REST vs WS), user blocks |
|
|
68
|
-
| [Messaging](docs/messaging/) | Sending, receiving, editing/deleting, reactions, history, search |
|
|
69
|
-
| [Rooms](docs/rooms/) | Room facade, members, moderation, invites, announcements, typing, unread & read receipts |
|
|
70
|
-
| [Push](docs/push/) | Device registration, per-room settings |
|
|
71
|
-
| [Reference](docs/reference/) | `NoveraChat` / `Room` API, error codes |
|
|
66
|
+
| [Getting started](https://dev-chat-docs.novera.town/web/getting-started/installation) | Installation, quickstart |
|
|
67
|
+
| [Core](https://dev-chat-docs.novera.town/web/core/authentication) | Authentication (`tokenProvider`), connection lifecycle, transport (REST vs WS), user blocks |
|
|
68
|
+
| [Messaging](https://dev-chat-docs.novera.town/web/messaging/sending-a-message) | Sending, receiving, editing/deleting, reactions, history, search |
|
|
69
|
+
| [Rooms](https://dev-chat-docs.novera.town/web/rooms/room-facade) | Room facade, members, moderation, invites, announcements, typing, unread & read receipts |
|
|
70
|
+
| [Push](https://dev-chat-docs.novera.town/web/push/device-registration) | Device registration, per-room settings |
|
|
71
|
+
| [Reference](https://dev-chat-docs.novera.town/web/reference/noverachat) | `NoveraChat` / `Room` API, error codes |
|
|
72
72
|
|
|
73
73
|
### For contributors
|
|
74
74
|
|