@fabriktor/client 0.0.46 → 0.0.48

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.
@@ -107,7 +107,7 @@ export class ChatClient {
107
107
  const token = await requiredToken(this.get_token);
108
108
  return openWS({
109
109
  base_url: this.base_url,
110
- path: withQuery(chatRoomPath(PathChatWS), {
110
+ path: withQuery(chatRoomPath(PathChatWSMine), {
111
111
  query: queryParam("id", opts.id),
112
112
  }),
113
113
  token,
@@ -120,7 +120,7 @@ export class ChatClient {
120
120
  const token = await requiredToken(this.get_token);
121
121
  return openWS({
122
122
  base_url: this.base_url,
123
- path: withQuery(chatRoomPath(PathChatWSMine), {
123
+ path: withQuery(chatRoomPath(PathChatWS), {
124
124
  query: queryParam("owner_id", opts.owner_id),
125
125
  }),
126
126
  token,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@fabriktor/client",
3
- "version": "0.0.46",
3
+ "version": "0.0.48",
4
4
  "description": "![Fabriktor Logo](./img/fabriktor-character.gif)",
5
5
  "type": "module",
6
6
  "exports": {