@noverachat/sdk-react 0.5.3 → 0.6.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/dist/index.d.cts CHANGED
@@ -399,6 +399,9 @@ declare class RoomStore {
399
399
  send(text: string, opts?: {
400
400
  replyToId?: string;
401
401
  customType?: string;
402
+ /** 앱 정의 페이로드 원문 (`customType` 규약용) — 수신 측은
403
+ * `ChatMessage.data` 로 읽는다. */
404
+ data?: Record<string, unknown>;
402
405
  customMeta?: Record<string, unknown>;
403
406
  }): void;
404
407
  /** Send a file optimistically. A FILE bubble with `uploadProgress`
package/dist/index.d.ts CHANGED
@@ -399,6 +399,9 @@ declare class RoomStore {
399
399
  send(text: string, opts?: {
400
400
  replyToId?: string;
401
401
  customType?: string;
402
+ /** 앱 정의 페이로드 원문 (`customType` 규약용) — 수신 측은
403
+ * `ChatMessage.data` 로 읽는다. */
404
+ data?: Record<string, unknown>;
402
405
  customMeta?: Record<string, unknown>;
403
406
  }): void;
404
407
  /** Send a file optimistically. A FILE bubble with `uploadProgress`
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@noverachat/sdk-react",
3
- "version": "0.5.3",
3
+ "version": "0.6.0",
4
4
  "description": "React hooks/bindings for NoveraChat — @noverachat/sdk-web 위에 얹는 얇은 래퍼",
5
5
  "license": "MIT",
6
6
  "type": "module",
@@ -24,7 +24,7 @@
24
24
  "react": ">=18"
25
25
  },
26
26
  "dependencies": {
27
- "@noverachat/sdk-web": "0.5.3"
27
+ "@noverachat/sdk-web": "0.6.0"
28
28
  },
29
29
  "devDependencies": {
30
30
  "@types/react": "^19.0.0",
package/src/room-store.ts CHANGED
@@ -183,6 +183,9 @@ export class RoomStore {
183
183
  opts?: {
184
184
  replyToId?: string;
185
185
  customType?: string;
186
+ /** 앱 정의 페이로드 원문 (`customType` 규약용) — 수신 측은
187
+ * `ChatMessage.data` 로 읽는다. */
188
+ data?: Record<string, unknown>;
186
189
  customMeta?: Record<string, unknown>;
187
190
  },
188
191
  ): void {