mezon-js-protobuf 1.6.76 → 1.6.78
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
CHANGED
|
@@ -191,6 +191,8 @@ export interface Account {
|
|
|
191
191
|
logo: string;
|
|
192
192
|
/** Splash screen url */
|
|
193
193
|
splash_screen: string;
|
|
194
|
+
/** E2ee public key */
|
|
195
|
+
public_key: string;
|
|
194
196
|
}
|
|
195
197
|
|
|
196
198
|
/** Obtain a new authentication token using a refresh token. */
|
|
@@ -1407,6 +1409,8 @@ export interface UpdateAccountRequest {
|
|
|
1407
1409
|
logo: string;
|
|
1408
1410
|
/** splash screen */
|
|
1409
1411
|
splash_screen: string;
|
|
1412
|
+
/** e2ee public key */
|
|
1413
|
+
public_key: string;
|
|
1410
1414
|
}
|
|
1411
1415
|
|
|
1412
1416
|
/** Update fields in a given group. */
|
|
@@ -2971,7 +2975,7 @@ export interface SystemMessage {
|
|
|
2971
2975
|
/** Setup tips */
|
|
2972
2976
|
setup_tips: string;
|
|
2973
2977
|
/** Hide audit log */
|
|
2974
|
-
|
|
2978
|
+
hide_audit_log: string;
|
|
2975
2979
|
}
|
|
2976
2980
|
|
|
2977
2981
|
/** List of system message. */
|
|
@@ -2994,7 +2998,7 @@ export interface SystemMessageRequest {
|
|
|
2994
2998
|
/** Setup tips */
|
|
2995
2999
|
setup_tips: string;
|
|
2996
3000
|
/** Hide audit log */
|
|
2997
|
-
|
|
3001
|
+
hide_audit_log: string;
|
|
2998
3002
|
}
|
|
2999
3003
|
|
|
3000
3004
|
/** Request to delete a system message by clan ID. */
|
|
@@ -3848,6 +3852,7 @@ function createBaseAccount(): Account {
|
|
|
3848
3852
|
disable_time: undefined,
|
|
3849
3853
|
logo: "",
|
|
3850
3854
|
splash_screen: "",
|
|
3855
|
+
public_key: "",
|
|
3851
3856
|
};
|
|
3852
3857
|
}
|
|
3853
3858
|
|
|
@@ -3880,6 +3885,9 @@ export const Account = {
|
|
|
3880
3885
|
if (message.splash_screen !== "") {
|
|
3881
3886
|
writer.uint32(74).string(message.splash_screen);
|
|
3882
3887
|
}
|
|
3888
|
+
if (message.public_key !== "") {
|
|
3889
|
+
writer.uint32(82).string(message.public_key);
|
|
3890
|
+
}
|
|
3883
3891
|
return writer;
|
|
3884
3892
|
},
|
|
3885
3893
|
|
|
@@ -3953,6 +3961,13 @@ export const Account = {
|
|
|
3953
3961
|
|
|
3954
3962
|
message.splash_screen = reader.string();
|
|
3955
3963
|
continue;
|
|
3964
|
+
case 10:
|
|
3965
|
+
if (tag !== 82) {
|
|
3966
|
+
break;
|
|
3967
|
+
}
|
|
3968
|
+
|
|
3969
|
+
message.public_key = reader.string();
|
|
3970
|
+
continue;
|
|
3956
3971
|
}
|
|
3957
3972
|
if ((tag & 7) === 4 || tag === 0) {
|
|
3958
3973
|
break;
|
|
@@ -3975,6 +3990,7 @@ export const Account = {
|
|
|
3975
3990
|
disable_time: isSet(object.disable_time) ? fromJsonTimestamp(object.disable_time) : undefined,
|
|
3976
3991
|
logo: isSet(object.logo) ? globalThis.String(object.logo) : "",
|
|
3977
3992
|
splash_screen: isSet(object.splash_screen) ? globalThis.String(object.splash_screen) : "",
|
|
3993
|
+
public_key: isSet(object.public_key) ? globalThis.String(object.public_key) : "",
|
|
3978
3994
|
};
|
|
3979
3995
|
},
|
|
3980
3996
|
|
|
@@ -4007,6 +4023,9 @@ export const Account = {
|
|
|
4007
4023
|
if (message.splash_screen !== "") {
|
|
4008
4024
|
obj.splash_screen = message.splash_screen;
|
|
4009
4025
|
}
|
|
4026
|
+
if (message.public_key !== "") {
|
|
4027
|
+
obj.public_key = message.public_key;
|
|
4028
|
+
}
|
|
4010
4029
|
return obj;
|
|
4011
4030
|
},
|
|
4012
4031
|
|
|
@@ -4024,6 +4043,7 @@ export const Account = {
|
|
|
4024
4043
|
message.disable_time = object.disable_time ?? undefined;
|
|
4025
4044
|
message.logo = object.logo ?? "";
|
|
4026
4045
|
message.splash_screen = object.splash_screen ?? "";
|
|
4046
|
+
message.public_key = object.public_key ?? "";
|
|
4027
4047
|
return message;
|
|
4028
4048
|
},
|
|
4029
4049
|
};
|
|
@@ -13274,6 +13294,7 @@ function createBaseUpdateAccountRequest(): UpdateAccountRequest {
|
|
|
13274
13294
|
dob: undefined,
|
|
13275
13295
|
logo: "",
|
|
13276
13296
|
splash_screen: "",
|
|
13297
|
+
public_key: "",
|
|
13277
13298
|
};
|
|
13278
13299
|
}
|
|
13279
13300
|
|
|
@@ -13309,6 +13330,9 @@ export const UpdateAccountRequest = {
|
|
|
13309
13330
|
if (message.splash_screen !== "") {
|
|
13310
13331
|
writer.uint32(82).string(message.splash_screen);
|
|
13311
13332
|
}
|
|
13333
|
+
if (message.public_key !== "") {
|
|
13334
|
+
writer.uint32(90).string(message.public_key);
|
|
13335
|
+
}
|
|
13312
13336
|
return writer;
|
|
13313
13337
|
},
|
|
13314
13338
|
|
|
@@ -13389,6 +13413,13 @@ export const UpdateAccountRequest = {
|
|
|
13389
13413
|
|
|
13390
13414
|
message.splash_screen = reader.string();
|
|
13391
13415
|
continue;
|
|
13416
|
+
case 11:
|
|
13417
|
+
if (tag !== 90) {
|
|
13418
|
+
break;
|
|
13419
|
+
}
|
|
13420
|
+
|
|
13421
|
+
message.public_key = reader.string();
|
|
13422
|
+
continue;
|
|
13392
13423
|
}
|
|
13393
13424
|
if ((tag & 7) === 4 || tag === 0) {
|
|
13394
13425
|
break;
|
|
@@ -13410,6 +13441,7 @@ export const UpdateAccountRequest = {
|
|
|
13410
13441
|
dob: isSet(object.dob) ? fromJsonTimestamp(object.dob) : undefined,
|
|
13411
13442
|
logo: isSet(object.logo) ? globalThis.String(object.logo) : "",
|
|
13412
13443
|
splash_screen: isSet(object.splash_screen) ? globalThis.String(object.splash_screen) : "",
|
|
13444
|
+
public_key: isSet(object.public_key) ? globalThis.String(object.public_key) : "",
|
|
13413
13445
|
};
|
|
13414
13446
|
},
|
|
13415
13447
|
|
|
@@ -13445,6 +13477,9 @@ export const UpdateAccountRequest = {
|
|
|
13445
13477
|
if (message.splash_screen !== "") {
|
|
13446
13478
|
obj.splash_screen = message.splash_screen;
|
|
13447
13479
|
}
|
|
13480
|
+
if (message.public_key !== "") {
|
|
13481
|
+
obj.public_key = message.public_key;
|
|
13482
|
+
}
|
|
13448
13483
|
return obj;
|
|
13449
13484
|
},
|
|
13450
13485
|
|
|
@@ -13463,6 +13498,7 @@ export const UpdateAccountRequest = {
|
|
|
13463
13498
|
message.dob = object.dob ?? undefined;
|
|
13464
13499
|
message.logo = object.logo ?? "";
|
|
13465
13500
|
message.splash_screen = object.splash_screen ?? "";
|
|
13501
|
+
message.public_key = object.public_key ?? "";
|
|
13466
13502
|
return message;
|
|
13467
13503
|
},
|
|
13468
13504
|
};
|
|
@@ -28157,7 +28193,7 @@ function createBaseSystemMessage(): SystemMessage {
|
|
|
28157
28193
|
welcome_sticker: "",
|
|
28158
28194
|
boost_message: "",
|
|
28159
28195
|
setup_tips: "",
|
|
28160
|
-
|
|
28196
|
+
hide_audit_log: "",
|
|
28161
28197
|
};
|
|
28162
28198
|
}
|
|
28163
28199
|
|
|
@@ -28184,8 +28220,8 @@ export const SystemMessage = {
|
|
|
28184
28220
|
if (message.setup_tips !== "") {
|
|
28185
28221
|
writer.uint32(58).string(message.setup_tips);
|
|
28186
28222
|
}
|
|
28187
|
-
if (message.
|
|
28188
|
-
writer.uint32(66).string(message.
|
|
28223
|
+
if (message.hide_audit_log !== "") {
|
|
28224
|
+
writer.uint32(66).string(message.hide_audit_log);
|
|
28189
28225
|
}
|
|
28190
28226
|
return writer;
|
|
28191
28227
|
},
|
|
@@ -28251,7 +28287,7 @@ case 8:
|
|
|
28251
28287
|
break;
|
|
28252
28288
|
}
|
|
28253
28289
|
|
|
28254
|
-
message.
|
|
28290
|
+
message.hide_audit_log = reader.string();
|
|
28255
28291
|
continue;
|
|
28256
28292
|
}
|
|
28257
28293
|
if ((tag & 7) === 4 || tag === 0) {
|
|
@@ -28271,7 +28307,7 @@ case 8:
|
|
|
28271
28307
|
welcome_sticker: isSet(object.welcome_sticker) ? globalThis.String(object.welcome_sticker) : "",
|
|
28272
28308
|
boost_message: isSet(object.boost_message) ? globalThis.String(object.boost_message) : "",
|
|
28273
28309
|
setup_tips: isSet(object.setup_tips) ? globalThis.String(object.setup_tips) : "",
|
|
28274
|
-
|
|
28310
|
+
hide_audit_log: isSet(object.hide_audit_log) ? globalThis.String(object.hide_audit_log) : "",
|
|
28275
28311
|
};
|
|
28276
28312
|
},
|
|
28277
28313
|
|
|
@@ -28298,8 +28334,8 @@ hideAuditLog: isSet(object.hideAuditLog) ? globalThis.String(object.hideAuditLog
|
|
|
28298
28334
|
if (message.setup_tips !== "") {
|
|
28299
28335
|
obj.setup_tips = message.setup_tips;
|
|
28300
28336
|
}
|
|
28301
|
-
if (message.
|
|
28302
|
-
obj.
|
|
28337
|
+
if (message.hide_audit_log !== "") {
|
|
28338
|
+
obj.hide_audit_log = message.hide_audit_log;
|
|
28303
28339
|
}
|
|
28304
28340
|
return obj;
|
|
28305
28341
|
},
|
|
@@ -28316,7 +28352,7 @@ if (message.hideAuditLog !== "") {
|
|
|
28316
28352
|
message.welcome_sticker = object.welcome_sticker ?? "";
|
|
28317
28353
|
message.boost_message = object.boost_message ?? "";
|
|
28318
28354
|
message.setup_tips = object.setup_tips ?? "";
|
|
28319
|
-
message.
|
|
28355
|
+
message.hide_audit_log = object.hide_audit_log ?? "";
|
|
28320
28356
|
return message;
|
|
28321
28357
|
},
|
|
28322
28358
|
};
|
|
@@ -28390,7 +28426,7 @@ function createBaseSystemMessageRequest(): SystemMessageRequest {
|
|
|
28390
28426
|
welcome_sticker: "",
|
|
28391
28427
|
boost_message: "",
|
|
28392
28428
|
setup_tips: "",
|
|
28393
|
-
|
|
28429
|
+
hide_audit_log: "",
|
|
28394
28430
|
};
|
|
28395
28431
|
}
|
|
28396
28432
|
|
|
@@ -28414,8 +28450,8 @@ export const SystemMessageRequest = {
|
|
|
28414
28450
|
if (message.setup_tips !== "") {
|
|
28415
28451
|
writer.uint32(50).string(message.setup_tips);
|
|
28416
28452
|
}
|
|
28417
|
-
if (message.
|
|
28418
|
-
writer.uint32(58).string(message.
|
|
28453
|
+
if (message.hide_audit_log !== "") {
|
|
28454
|
+
writer.uint32(58).string(message.hide_audit_log);
|
|
28419
28455
|
}
|
|
28420
28456
|
return writer;
|
|
28421
28457
|
},
|
|
@@ -28474,7 +28510,7 @@ case 7:
|
|
|
28474
28510
|
break;
|
|
28475
28511
|
}
|
|
28476
28512
|
|
|
28477
|
-
message.
|
|
28513
|
+
message.hide_audit_log = reader.string();
|
|
28478
28514
|
continue;
|
|
28479
28515
|
}
|
|
28480
28516
|
if ((tag & 7) === 4 || tag === 0) {
|
|
@@ -28493,7 +28529,7 @@ case 7:
|
|
|
28493
28529
|
welcome_sticker: isSet(object.welcome_sticker) ? globalThis.String(object.welcome_sticker) : "",
|
|
28494
28530
|
boost_message: isSet(object.boost_message) ? globalThis.String(object.boost_message) : "",
|
|
28495
28531
|
setup_tips: isSet(object.setup_tips) ? globalThis.String(object.setup_tips) : "",
|
|
28496
|
-
|
|
28532
|
+
hide_audit_log: isSet(object.hide_audit_log) ? globalThis.String(object.hide_audit_log) : "",
|
|
28497
28533
|
};
|
|
28498
28534
|
},
|
|
28499
28535
|
|
|
@@ -28517,8 +28553,8 @@ hideAuditLog: isSet(object.hideAuditLog) ? globalThis.String(object.hideAuditLog
|
|
|
28517
28553
|
if (message.setup_tips !== "") {
|
|
28518
28554
|
obj.setup_tips = message.setup_tips;
|
|
28519
28555
|
}
|
|
28520
|
-
if (message.
|
|
28521
|
-
obj.
|
|
28556
|
+
if (message.hide_audit_log !== "") {
|
|
28557
|
+
obj.hide_audit_log = message.hide_audit_log;
|
|
28522
28558
|
}
|
|
28523
28559
|
return obj;
|
|
28524
28560
|
},
|
|
@@ -28534,7 +28570,7 @@ if (message.hideAuditLog !== "") {
|
|
|
28534
28570
|
message.welcome_sticker = object.welcome_sticker ?? "";
|
|
28535
28571
|
message.boost_message = object.boost_message ?? "";
|
|
28536
28572
|
message.setup_tips = object.setup_tips ?? "";
|
|
28537
|
-
message.
|
|
28573
|
+
message.hide_audit_log = object.hide_audit_log ?? "";
|
|
28538
28574
|
return message;
|
|
28539
28575
|
},
|
|
28540
28576
|
};
|
|
@@ -68,7 +68,6 @@ export interface SocketOpenHandler {
|
|
|
68
68
|
*/
|
|
69
69
|
export declare class WebSocketAdapterText implements WebSocketAdapter {
|
|
70
70
|
private _socket?;
|
|
71
|
-
private _pcRef?;
|
|
72
71
|
get onClose(): SocketCloseHandler | null;
|
|
73
72
|
set onClose(value: SocketCloseHandler | null);
|
|
74
73
|
get onError(): SocketErrorHandler | null;
|
|
@@ -63,6 +63,8 @@ export interface Account {
|
|
|
63
63
|
logo: string;
|
|
64
64
|
/** Splash screen url */
|
|
65
65
|
splash_screen: string;
|
|
66
|
+
/** E2ee public key */
|
|
67
|
+
public_key: string;
|
|
66
68
|
}
|
|
67
69
|
/** Obtain a new authentication token using a refresh token. */
|
|
68
70
|
export interface AccountRefresh {
|
|
@@ -1024,6 +1026,8 @@ export interface UpdateAccountRequest {
|
|
|
1024
1026
|
logo: string;
|
|
1025
1027
|
/** splash screen */
|
|
1026
1028
|
splash_screen: string;
|
|
1029
|
+
/** e2ee public key */
|
|
1030
|
+
public_key: string;
|
|
1027
1031
|
}
|
|
1028
1032
|
/** Update fields in a given group. */
|
|
1029
1033
|
export interface UpdateGroupRequest {
|
|
@@ -2344,7 +2348,7 @@ export interface SystemMessage {
|
|
|
2344
2348
|
/** Setup tips */
|
|
2345
2349
|
setup_tips: string;
|
|
2346
2350
|
/** Hide audit log */
|
|
2347
|
-
|
|
2351
|
+
hide_audit_log: string;
|
|
2348
2352
|
}
|
|
2349
2353
|
/** List of system message. */
|
|
2350
2354
|
export interface SystemMessagesList {
|
|
@@ -2365,7 +2369,7 @@ export interface SystemMessageRequest {
|
|
|
2365
2369
|
/** Setup tips */
|
|
2366
2370
|
setup_tips: string;
|
|
2367
2371
|
/** Hide audit log */
|
|
2368
|
-
|
|
2372
|
+
hide_audit_log: string;
|
|
2369
2373
|
}
|
|
2370
2374
|
/** Request to delete a system message by clan ID. */
|
|
2371
2375
|
export interface DeleteSystemMessage {
|
|
@@ -3128,6 +3132,7 @@ export declare const Account: {
|
|
|
3128
3132
|
disable_time?: Date | undefined;
|
|
3129
3133
|
logo?: string | undefined;
|
|
3130
3134
|
splash_screen?: string | undefined;
|
|
3135
|
+
public_key?: string | undefined;
|
|
3131
3136
|
} & {
|
|
3132
3137
|
user?: ({
|
|
3133
3138
|
id?: string | undefined;
|
|
@@ -3204,6 +3209,7 @@ export declare const Account: {
|
|
|
3204
3209
|
disable_time?: Date | undefined;
|
|
3205
3210
|
logo?: string | undefined;
|
|
3206
3211
|
splash_screen?: string | undefined;
|
|
3212
|
+
public_key?: string | undefined;
|
|
3207
3213
|
} & { [K_4 in Exclude<keyof I, keyof Account>]: never; }>(base?: I | undefined): Account;
|
|
3208
3214
|
fromPartial<I_1 extends {
|
|
3209
3215
|
user?: {
|
|
@@ -3242,6 +3248,7 @@ export declare const Account: {
|
|
|
3242
3248
|
disable_time?: Date | undefined;
|
|
3243
3249
|
logo?: string | undefined;
|
|
3244
3250
|
splash_screen?: string | undefined;
|
|
3251
|
+
public_key?: string | undefined;
|
|
3245
3252
|
} & {
|
|
3246
3253
|
user?: ({
|
|
3247
3254
|
id?: string | undefined;
|
|
@@ -3318,6 +3325,7 @@ export declare const Account: {
|
|
|
3318
3325
|
disable_time?: Date | undefined;
|
|
3319
3326
|
logo?: string | undefined;
|
|
3320
3327
|
splash_screen?: string | undefined;
|
|
3328
|
+
public_key?: string | undefined;
|
|
3321
3329
|
} & { [K_9 in Exclude<keyof I_1, keyof Account>]: never; }>(object: I_1): Account;
|
|
3322
3330
|
};
|
|
3323
3331
|
export declare const AccountRefresh: {
|
|
@@ -8522,6 +8530,7 @@ export declare const UpdateAccountRequest: {
|
|
|
8522
8530
|
dob?: Date | undefined;
|
|
8523
8531
|
logo?: string | undefined;
|
|
8524
8532
|
splash_screen?: string | undefined;
|
|
8533
|
+
public_key?: string | undefined;
|
|
8525
8534
|
} & {
|
|
8526
8535
|
username?: string | undefined;
|
|
8527
8536
|
display_name?: string | undefined;
|
|
@@ -8533,6 +8542,7 @@ export declare const UpdateAccountRequest: {
|
|
|
8533
8542
|
dob?: Date | undefined;
|
|
8534
8543
|
logo?: string | undefined;
|
|
8535
8544
|
splash_screen?: string | undefined;
|
|
8545
|
+
public_key?: string | undefined;
|
|
8536
8546
|
} & { [K in Exclude<keyof I, keyof UpdateAccountRequest>]: never; }>(base?: I | undefined): UpdateAccountRequest;
|
|
8537
8547
|
fromPartial<I_1 extends {
|
|
8538
8548
|
username?: string | undefined;
|
|
@@ -8545,6 +8555,7 @@ export declare const UpdateAccountRequest: {
|
|
|
8545
8555
|
dob?: Date | undefined;
|
|
8546
8556
|
logo?: string | undefined;
|
|
8547
8557
|
splash_screen?: string | undefined;
|
|
8558
|
+
public_key?: string | undefined;
|
|
8548
8559
|
} & {
|
|
8549
8560
|
username?: string | undefined;
|
|
8550
8561
|
display_name?: string | undefined;
|
|
@@ -8556,6 +8567,7 @@ export declare const UpdateAccountRequest: {
|
|
|
8556
8567
|
dob?: Date | undefined;
|
|
8557
8568
|
logo?: string | undefined;
|
|
8558
8569
|
splash_screen?: string | undefined;
|
|
8570
|
+
public_key?: string | undefined;
|
|
8559
8571
|
} & { [K_1 in Exclude<keyof I_1, keyof UpdateAccountRequest>]: never; }>(object: I_1): UpdateAccountRequest;
|
|
8560
8572
|
};
|
|
8561
8573
|
export declare const UpdateGroupRequest: {
|
|
@@ -16119,7 +16131,7 @@ export declare const SystemMessage: {
|
|
|
16119
16131
|
welcome_sticker?: string | undefined;
|
|
16120
16132
|
boost_message?: string | undefined;
|
|
16121
16133
|
setup_tips?: string | undefined;
|
|
16122
|
-
|
|
16134
|
+
hide_audit_log?: string | undefined;
|
|
16123
16135
|
} & {
|
|
16124
16136
|
id?: string | undefined;
|
|
16125
16137
|
clan_id?: string | undefined;
|
|
@@ -16128,7 +16140,7 @@ export declare const SystemMessage: {
|
|
|
16128
16140
|
welcome_sticker?: string | undefined;
|
|
16129
16141
|
boost_message?: string | undefined;
|
|
16130
16142
|
setup_tips?: string | undefined;
|
|
16131
|
-
|
|
16143
|
+
hide_audit_log?: string | undefined;
|
|
16132
16144
|
} & { [K in Exclude<keyof I, keyof SystemMessage>]: never; }>(base?: I | undefined): SystemMessage;
|
|
16133
16145
|
fromPartial<I_1 extends {
|
|
16134
16146
|
id?: string | undefined;
|
|
@@ -16138,7 +16150,7 @@ export declare const SystemMessage: {
|
|
|
16138
16150
|
welcome_sticker?: string | undefined;
|
|
16139
16151
|
boost_message?: string | undefined;
|
|
16140
16152
|
setup_tips?: string | undefined;
|
|
16141
|
-
|
|
16153
|
+
hide_audit_log?: string | undefined;
|
|
16142
16154
|
} & {
|
|
16143
16155
|
id?: string | undefined;
|
|
16144
16156
|
clan_id?: string | undefined;
|
|
@@ -16147,7 +16159,7 @@ export declare const SystemMessage: {
|
|
|
16147
16159
|
welcome_sticker?: string | undefined;
|
|
16148
16160
|
boost_message?: string | undefined;
|
|
16149
16161
|
setup_tips?: string | undefined;
|
|
16150
|
-
|
|
16162
|
+
hide_audit_log?: string | undefined;
|
|
16151
16163
|
} & { [K_1 in Exclude<keyof I_1, keyof SystemMessage>]: never; }>(object: I_1): SystemMessage;
|
|
16152
16164
|
};
|
|
16153
16165
|
export declare const SystemMessagesList: {
|
|
@@ -16164,7 +16176,7 @@ export declare const SystemMessagesList: {
|
|
|
16164
16176
|
welcome_sticker?: string | undefined;
|
|
16165
16177
|
boost_message?: string | undefined;
|
|
16166
16178
|
setup_tips?: string | undefined;
|
|
16167
|
-
|
|
16179
|
+
hide_audit_log?: string | undefined;
|
|
16168
16180
|
}[] | undefined;
|
|
16169
16181
|
} & {
|
|
16170
16182
|
system_messages_list?: ({
|
|
@@ -16175,7 +16187,7 @@ export declare const SystemMessagesList: {
|
|
|
16175
16187
|
welcome_sticker?: string | undefined;
|
|
16176
16188
|
boost_message?: string | undefined;
|
|
16177
16189
|
setup_tips?: string | undefined;
|
|
16178
|
-
|
|
16190
|
+
hide_audit_log?: string | undefined;
|
|
16179
16191
|
}[] & ({
|
|
16180
16192
|
id?: string | undefined;
|
|
16181
16193
|
clan_id?: string | undefined;
|
|
@@ -16184,7 +16196,7 @@ export declare const SystemMessagesList: {
|
|
|
16184
16196
|
welcome_sticker?: string | undefined;
|
|
16185
16197
|
boost_message?: string | undefined;
|
|
16186
16198
|
setup_tips?: string | undefined;
|
|
16187
|
-
|
|
16199
|
+
hide_audit_log?: string | undefined;
|
|
16188
16200
|
} & {
|
|
16189
16201
|
id?: string | undefined;
|
|
16190
16202
|
clan_id?: string | undefined;
|
|
@@ -16193,7 +16205,7 @@ export declare const SystemMessagesList: {
|
|
|
16193
16205
|
welcome_sticker?: string | undefined;
|
|
16194
16206
|
boost_message?: string | undefined;
|
|
16195
16207
|
setup_tips?: string | undefined;
|
|
16196
|
-
|
|
16208
|
+
hide_audit_log?: string | undefined;
|
|
16197
16209
|
} & { [K in Exclude<keyof I["system_messages_list"][number], keyof SystemMessage>]: never; })[] & { [K_1 in Exclude<keyof I["system_messages_list"], keyof {
|
|
16198
16210
|
id?: string | undefined;
|
|
16199
16211
|
clan_id?: string | undefined;
|
|
@@ -16202,7 +16214,7 @@ export declare const SystemMessagesList: {
|
|
|
16202
16214
|
welcome_sticker?: string | undefined;
|
|
16203
16215
|
boost_message?: string | undefined;
|
|
16204
16216
|
setup_tips?: string | undefined;
|
|
16205
|
-
|
|
16217
|
+
hide_audit_log?: string | undefined;
|
|
16206
16218
|
}[]>]: never; }) | undefined;
|
|
16207
16219
|
} & { [K_2 in Exclude<keyof I, "system_messages_list">]: never; }>(base?: I | undefined): SystemMessagesList;
|
|
16208
16220
|
fromPartial<I_1 extends {
|
|
@@ -16214,7 +16226,7 @@ export declare const SystemMessagesList: {
|
|
|
16214
16226
|
welcome_sticker?: string | undefined;
|
|
16215
16227
|
boost_message?: string | undefined;
|
|
16216
16228
|
setup_tips?: string | undefined;
|
|
16217
|
-
|
|
16229
|
+
hide_audit_log?: string | undefined;
|
|
16218
16230
|
}[] | undefined;
|
|
16219
16231
|
} & {
|
|
16220
16232
|
system_messages_list?: ({
|
|
@@ -16225,7 +16237,7 @@ export declare const SystemMessagesList: {
|
|
|
16225
16237
|
welcome_sticker?: string | undefined;
|
|
16226
16238
|
boost_message?: string | undefined;
|
|
16227
16239
|
setup_tips?: string | undefined;
|
|
16228
|
-
|
|
16240
|
+
hide_audit_log?: string | undefined;
|
|
16229
16241
|
}[] & ({
|
|
16230
16242
|
id?: string | undefined;
|
|
16231
16243
|
clan_id?: string | undefined;
|
|
@@ -16234,7 +16246,7 @@ export declare const SystemMessagesList: {
|
|
|
16234
16246
|
welcome_sticker?: string | undefined;
|
|
16235
16247
|
boost_message?: string | undefined;
|
|
16236
16248
|
setup_tips?: string | undefined;
|
|
16237
|
-
|
|
16249
|
+
hide_audit_log?: string | undefined;
|
|
16238
16250
|
} & {
|
|
16239
16251
|
id?: string | undefined;
|
|
16240
16252
|
clan_id?: string | undefined;
|
|
@@ -16243,7 +16255,7 @@ export declare const SystemMessagesList: {
|
|
|
16243
16255
|
welcome_sticker?: string | undefined;
|
|
16244
16256
|
boost_message?: string | undefined;
|
|
16245
16257
|
setup_tips?: string | undefined;
|
|
16246
|
-
|
|
16258
|
+
hide_audit_log?: string | undefined;
|
|
16247
16259
|
} & { [K_3 in Exclude<keyof I_1["system_messages_list"][number], keyof SystemMessage>]: never; })[] & { [K_4 in Exclude<keyof I_1["system_messages_list"], keyof {
|
|
16248
16260
|
id?: string | undefined;
|
|
16249
16261
|
clan_id?: string | undefined;
|
|
@@ -16252,7 +16264,7 @@ export declare const SystemMessagesList: {
|
|
|
16252
16264
|
welcome_sticker?: string | undefined;
|
|
16253
16265
|
boost_message?: string | undefined;
|
|
16254
16266
|
setup_tips?: string | undefined;
|
|
16255
|
-
|
|
16267
|
+
hide_audit_log?: string | undefined;
|
|
16256
16268
|
}[]>]: never; }) | undefined;
|
|
16257
16269
|
} & { [K_5 in Exclude<keyof I_1, "system_messages_list">]: never; }>(object: I_1): SystemMessagesList;
|
|
16258
16270
|
};
|
|
@@ -16268,7 +16280,7 @@ export declare const SystemMessageRequest: {
|
|
|
16268
16280
|
welcome_sticker?: string | undefined;
|
|
16269
16281
|
boost_message?: string | undefined;
|
|
16270
16282
|
setup_tips?: string | undefined;
|
|
16271
|
-
|
|
16283
|
+
hide_audit_log?: string | undefined;
|
|
16272
16284
|
} & {
|
|
16273
16285
|
clan_id?: string | undefined;
|
|
16274
16286
|
channel_id?: string | undefined;
|
|
@@ -16276,7 +16288,7 @@ export declare const SystemMessageRequest: {
|
|
|
16276
16288
|
welcome_sticker?: string | undefined;
|
|
16277
16289
|
boost_message?: string | undefined;
|
|
16278
16290
|
setup_tips?: string | undefined;
|
|
16279
|
-
|
|
16291
|
+
hide_audit_log?: string | undefined;
|
|
16280
16292
|
} & { [K in Exclude<keyof I, keyof SystemMessageRequest>]: never; }>(base?: I | undefined): SystemMessageRequest;
|
|
16281
16293
|
fromPartial<I_1 extends {
|
|
16282
16294
|
clan_id?: string | undefined;
|
|
@@ -16285,7 +16297,7 @@ export declare const SystemMessageRequest: {
|
|
|
16285
16297
|
welcome_sticker?: string | undefined;
|
|
16286
16298
|
boost_message?: string | undefined;
|
|
16287
16299
|
setup_tips?: string | undefined;
|
|
16288
|
-
|
|
16300
|
+
hide_audit_log?: string | undefined;
|
|
16289
16301
|
} & {
|
|
16290
16302
|
clan_id?: string | undefined;
|
|
16291
16303
|
channel_id?: string | undefined;
|
|
@@ -16293,7 +16305,7 @@ export declare const SystemMessageRequest: {
|
|
|
16293
16305
|
welcome_sticker?: string | undefined;
|
|
16294
16306
|
boost_message?: string | undefined;
|
|
16295
16307
|
setup_tips?: string | undefined;
|
|
16296
|
-
|
|
16308
|
+
hide_audit_log?: string | undefined;
|
|
16297
16309
|
} & { [K_1 in Exclude<keyof I_1, keyof SystemMessageRequest>]: never; }>(object: I_1): SystemMessageRequest;
|
|
16298
16310
|
};
|
|
16299
16311
|
export declare const DeleteSystemMessage: {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "mezon-js-protobuf",
|
|
3
|
-
"version": "1.6.
|
|
3
|
+
"version": "1.6.78",
|
|
4
4
|
"description": "Websocket adapter adding protocol buffer support to the Mezon Javascript client.",
|
|
5
5
|
"main": "dist/mezon-js-protobuf.cjs.js",
|
|
6
6
|
"module": "dist/mezon-js-protobuf.esm.mjs",
|