mezon-js 2.13.66 → 2.13.68
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/api.ts +40395 -0
- package/api.gen.ts +253 -180
- package/client.ts +12 -4
- package/dist/api/api.d.ts +23765 -0
- package/dist/google/protobuf/struct.d.ts +201 -0
- package/dist/google/protobuf/timestamp.d.ts +139 -0
- package/dist/google/protobuf/wrappers.d.ts +238 -0
- package/dist/mezon-js.cjs.js +3172 -209
- package/dist/mezon-js.esm.mjs +3181 -208
- package/google/protobuf/struct.ts +554 -0
- package/google/protobuf/timestamp.ts +223 -0
- package/google/protobuf/wrappers.ts +670 -0
- package/package.json +2 -1
- package/rollup.config.js +5 -1
package/client.ts
CHANGED
|
@@ -1516,12 +1516,16 @@ export class Client {
|
|
|
1516
1516
|
lang_tag: gu.user!.lang_tag,
|
|
1517
1517
|
location: gu.user!.location,
|
|
1518
1518
|
online: gu.user!.online,
|
|
1519
|
-
is_mobile: gu.user?.is_mobile,
|
|
1519
|
+
is_mobile: gu.user?.is_mobile || false,
|
|
1520
1520
|
timezone: gu.user!.timezone,
|
|
1521
1521
|
update_time: gu.user!.update_time,
|
|
1522
1522
|
username: gu.user!.username,
|
|
1523
1523
|
user_status: gu.user!.user_status,
|
|
1524
|
-
status: gu.user!.status
|
|
1524
|
+
status: gu.user!.status,
|
|
1525
|
+
about_me: gu.user!.about_me,
|
|
1526
|
+
mezon_id: gu.user!.mezon_id,
|
|
1527
|
+
list_nick_names: gu.user!.list_nick_names,
|
|
1528
|
+
phone_number: gu.user!.phone_number
|
|
1525
1529
|
},
|
|
1526
1530
|
role_id: gu!.role_id,
|
|
1527
1531
|
clan_nick: gu!.clan_nick,
|
|
@@ -1934,9 +1938,13 @@ export class Client {
|
|
|
1934
1938
|
timezone: f.user!.timezone,
|
|
1935
1939
|
update_time: f.user!.update_time,
|
|
1936
1940
|
username: f.user!.username,
|
|
1937
|
-
is_mobile: f.user?.is_mobile,
|
|
1941
|
+
is_mobile: f.user?.is_mobile || false,
|
|
1938
1942
|
user_status: f.user!.user_status,
|
|
1939
|
-
status: f.user!.status
|
|
1943
|
+
status: f.user!.status,
|
|
1944
|
+
mezon_id: f.user!.mezon_id,
|
|
1945
|
+
list_nick_names: f.user!.list_nick_names,
|
|
1946
|
+
phone_number: f.user!.phone_number,
|
|
1947
|
+
about_me: f.user!.about_me
|
|
1940
1948
|
},
|
|
1941
1949
|
state: f.state,
|
|
1942
1950
|
source_id: f.source_id,
|