mezon-js 2.7.29 → 2.7.30
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/api.gen.ts +2 -0
- package/client.ts +2 -1
- package/dist/api.gen.d.ts +1 -0
- package/dist/mezon-js.cjs.js +2 -1
- package/dist/mezon-js.esm.mjs +2 -1
- package/package.json +1 -1
package/api.gen.ts
CHANGED
package/client.ts
CHANGED
@@ -1061,7 +1061,8 @@ export class Client {
|
|
1061
1061
|
result.voice_channel_users!.push({
|
1062
1062
|
jid: gu.jid,
|
1063
1063
|
channel_id: gu.channel_id,
|
1064
|
-
user_id: gu.user_id
|
1064
|
+
user_id: gu.user_id,
|
1065
|
+
participant: gu.participant
|
1065
1066
|
})
|
1066
1067
|
});
|
1067
1068
|
return Promise.resolve(result);
|
package/dist/api.gen.d.ts
CHANGED
package/dist/mezon-js.cjs.js
CHANGED
@@ -5028,7 +5028,8 @@ var Client = class {
|
|
5028
5028
|
result.voice_channel_users.push({
|
5029
5029
|
jid: gu.jid,
|
5030
5030
|
channel_id: gu.channel_id,
|
5031
|
-
user_id: gu.user_id
|
5031
|
+
user_id: gu.user_id,
|
5032
|
+
participant: gu.participant
|
5032
5033
|
});
|
5033
5034
|
});
|
5034
5035
|
return Promise.resolve(result);
|
package/dist/mezon-js.esm.mjs
CHANGED
@@ -4999,7 +4999,8 @@ var Client = class {
|
|
4999
4999
|
result.voice_channel_users.push({
|
5000
5000
|
jid: gu.jid,
|
5001
5001
|
channel_id: gu.channel_id,
|
5002
|
-
user_id: gu.user_id
|
5002
|
+
user_id: gu.user_id,
|
5003
|
+
participant: gu.participant
|
5003
5004
|
});
|
5004
5005
|
});
|
5005
5006
|
return Promise.resolve(result);
|