@mx-space/api-client 1.13.2 → 1.14.1
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/controllers/activity.ts +8 -2
- package/dist/adaptors/axios.global.js +151 -119
- package/dist/index.cjs +3 -1
- package/dist/index.d.cts +347 -325
- package/dist/index.d.ts +347 -325
- package/dist/index.global.js +3 -1
- package/dist/index.js +3 -1
- package/models/auth.ts +8 -0
- package/models/index.ts +1 -0
- package/package.json +1 -1
package/dist/index.cjs
CHANGED
|
@@ -231,7 +231,8 @@ var ActivityController = class {
|
|
|
231
231
|
roomName,
|
|
232
232
|
sid,
|
|
233
233
|
ts,
|
|
234
|
-
displayName
|
|
234
|
+
displayName,
|
|
235
|
+
readerId
|
|
235
236
|
}) {
|
|
236
237
|
return this.proxy.presence.update.post({
|
|
237
238
|
data: {
|
|
@@ -240,6 +241,7 @@ var ActivityController = class {
|
|
|
240
241
|
ts: ts || Date.now(),
|
|
241
242
|
roomName,
|
|
242
243
|
sid,
|
|
244
|
+
readerId,
|
|
243
245
|
displayName
|
|
244
246
|
}
|
|
245
247
|
});
|