mezon-js-protobuf 1.8.52 → 1.8.54
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 +379 -103
- package/dist/mezon-js-protobuf/api/api.d.ts +202 -57
- package/dist/mezon-js-protobuf/rtapi/realtime.d.ts +44 -96
- package/dist/mezon-js-protobuf.cjs.js +28 -41
- package/dist/mezon-js-protobuf.esm.mjs +28 -41
- package/package.json +1 -1
- package/rtapi/realtime.ts +18 -0
|
@@ -1050,9 +1050,9 @@ export interface UpdateClanProfileRequest {
|
|
|
1050
1050
|
/** id clanc */
|
|
1051
1051
|
clan_id: string;
|
|
1052
1052
|
/** nick_name new */
|
|
1053
|
-
nick_name: string;
|
|
1053
|
+
nick_name: string | undefined;
|
|
1054
1054
|
/** avatar */
|
|
1055
|
-
avatar: string;
|
|
1055
|
+
avatar: string | undefined;
|
|
1056
1056
|
}
|
|
1057
1057
|
/** Update Clan Order Request */
|
|
1058
1058
|
export interface UpdateClanOrderRequest {
|
|
@@ -1344,6 +1344,30 @@ export interface BanClanUsersRequest {
|
|
|
1344
1344
|
user_ids: string[];
|
|
1345
1345
|
/** ban time */
|
|
1346
1346
|
ban_time: number;
|
|
1347
|
+
/** The reason */
|
|
1348
|
+
reason: string;
|
|
1349
|
+
}
|
|
1350
|
+
/** list banned user */
|
|
1351
|
+
export interface BannedUser {
|
|
1352
|
+
/** The channel ID to ban */
|
|
1353
|
+
channel_id: string;
|
|
1354
|
+
/** The banned user. */
|
|
1355
|
+
banned_id: string;
|
|
1356
|
+
/** The avatar */
|
|
1357
|
+
banned_avatar: string;
|
|
1358
|
+
/** The name */
|
|
1359
|
+
banned_name: string;
|
|
1360
|
+
/** ban time */
|
|
1361
|
+
ban_time: number;
|
|
1362
|
+
/** The reason */
|
|
1363
|
+
reason: string;
|
|
1364
|
+
}
|
|
1365
|
+
export interface BannedUserListRequest {
|
|
1366
|
+
clan_id: string;
|
|
1367
|
+
channel_id: string;
|
|
1368
|
+
}
|
|
1369
|
+
export interface BannedUserList {
|
|
1370
|
+
banned_users: BannedUser[];
|
|
1347
1371
|
}
|
|
1348
1372
|
/** Leave a channel. */
|
|
1349
1373
|
export interface LeaveThreadRequest {
|
|
@@ -1503,8 +1527,6 @@ export interface SetNotificationRequest {
|
|
|
1503
1527
|
channel_category_id: string;
|
|
1504
1528
|
/** notification_type */
|
|
1505
1529
|
notification_type: number;
|
|
1506
|
-
/** time mute channel category */
|
|
1507
|
-
time_mute: Date | undefined;
|
|
1508
1530
|
/** */
|
|
1509
1531
|
clan_id: string;
|
|
1510
1532
|
}
|
|
@@ -1515,11 +1537,12 @@ export interface PinMessageRequest {
|
|
|
1515
1537
|
clan_id: string;
|
|
1516
1538
|
}
|
|
1517
1539
|
/** set notification */
|
|
1518
|
-
export interface
|
|
1540
|
+
export interface SetMuteRequest {
|
|
1519
1541
|
/** channel_id and category_id */
|
|
1520
1542
|
id: string;
|
|
1521
|
-
|
|
1543
|
+
mute_time: number;
|
|
1522
1544
|
active: number;
|
|
1545
|
+
clan_id: string;
|
|
1523
1546
|
}
|
|
1524
1547
|
export interface HashtagDmListRequest {
|
|
1525
1548
|
/** user Id */
|
|
@@ -1574,12 +1597,8 @@ export interface SetDefaultNotificationRequest {
|
|
|
1574
1597
|
export interface RoleList {
|
|
1575
1598
|
/** A list of role. */
|
|
1576
1599
|
roles: Role[];
|
|
1577
|
-
/**
|
|
1578
|
-
|
|
1579
|
-
/** The cursor to send when retrieving the previous page, if any. */
|
|
1580
|
-
prev_cursor: string;
|
|
1581
|
-
/** Cacheable cursor to list newer role description. Durable and designed to be stored, unlike next/prev cursors. */
|
|
1582
|
-
cacheable_cursor: string;
|
|
1600
|
+
/** level permission max */
|
|
1601
|
+
max_level_permission: number;
|
|
1583
1602
|
}
|
|
1584
1603
|
export interface EventList {
|
|
1585
1604
|
/** A list of event. */
|
|
@@ -11185,24 +11204,170 @@ export declare const BanClanUsersRequest: {
|
|
|
11185
11204
|
channel_id?: string | undefined;
|
|
11186
11205
|
user_ids?: string[] | undefined;
|
|
11187
11206
|
ban_time?: number | undefined;
|
|
11207
|
+
reason?: string | undefined;
|
|
11188
11208
|
} & {
|
|
11189
11209
|
clan_id?: string | undefined;
|
|
11190
11210
|
channel_id?: string | undefined;
|
|
11191
11211
|
user_ids?: (string[] & string[] & { [K in Exclude<keyof I["user_ids"], keyof string[]>]: never; }) | undefined;
|
|
11192
11212
|
ban_time?: number | undefined;
|
|
11213
|
+
reason?: string | undefined;
|
|
11193
11214
|
} & { [K_1 in Exclude<keyof I, keyof BanClanUsersRequest>]: never; }>(base?: I | undefined): BanClanUsersRequest;
|
|
11194
11215
|
fromPartial<I_1 extends {
|
|
11195
11216
|
clan_id?: string | undefined;
|
|
11196
11217
|
channel_id?: string | undefined;
|
|
11197
11218
|
user_ids?: string[] | undefined;
|
|
11198
11219
|
ban_time?: number | undefined;
|
|
11220
|
+
reason?: string | undefined;
|
|
11199
11221
|
} & {
|
|
11200
11222
|
clan_id?: string | undefined;
|
|
11201
11223
|
channel_id?: string | undefined;
|
|
11202
11224
|
user_ids?: (string[] & string[] & { [K_2 in Exclude<keyof I_1["user_ids"], keyof string[]>]: never; }) | undefined;
|
|
11203
11225
|
ban_time?: number | undefined;
|
|
11226
|
+
reason?: string | undefined;
|
|
11204
11227
|
} & { [K_3 in Exclude<keyof I_1, keyof BanClanUsersRequest>]: never; }>(object: I_1): BanClanUsersRequest;
|
|
11205
11228
|
};
|
|
11229
|
+
export declare const BannedUser: {
|
|
11230
|
+
encode(message: BannedUser, writer?: _m0.Writer): _m0.Writer;
|
|
11231
|
+
decode(input: _m0.Reader | Uint8Array, length?: number): BannedUser;
|
|
11232
|
+
fromJSON(object: any): BannedUser;
|
|
11233
|
+
toJSON(message: BannedUser): unknown;
|
|
11234
|
+
create<I extends {
|
|
11235
|
+
channel_id?: string | undefined;
|
|
11236
|
+
banned_id?: string | undefined;
|
|
11237
|
+
banned_avatar?: string | undefined;
|
|
11238
|
+
banned_name?: string | undefined;
|
|
11239
|
+
ban_time?: number | undefined;
|
|
11240
|
+
reason?: string | undefined;
|
|
11241
|
+
} & {
|
|
11242
|
+
channel_id?: string | undefined;
|
|
11243
|
+
banned_id?: string | undefined;
|
|
11244
|
+
banned_avatar?: string | undefined;
|
|
11245
|
+
banned_name?: string | undefined;
|
|
11246
|
+
ban_time?: number | undefined;
|
|
11247
|
+
reason?: string | undefined;
|
|
11248
|
+
} & { [K in Exclude<keyof I, keyof BannedUser>]: never; }>(base?: I | undefined): BannedUser;
|
|
11249
|
+
fromPartial<I_1 extends {
|
|
11250
|
+
channel_id?: string | undefined;
|
|
11251
|
+
banned_id?: string | undefined;
|
|
11252
|
+
banned_avatar?: string | undefined;
|
|
11253
|
+
banned_name?: string | undefined;
|
|
11254
|
+
ban_time?: number | undefined;
|
|
11255
|
+
reason?: string | undefined;
|
|
11256
|
+
} & {
|
|
11257
|
+
channel_id?: string | undefined;
|
|
11258
|
+
banned_id?: string | undefined;
|
|
11259
|
+
banned_avatar?: string | undefined;
|
|
11260
|
+
banned_name?: string | undefined;
|
|
11261
|
+
ban_time?: number | undefined;
|
|
11262
|
+
reason?: string | undefined;
|
|
11263
|
+
} & { [K_1 in Exclude<keyof I_1, keyof BannedUser>]: never; }>(object: I_1): BannedUser;
|
|
11264
|
+
};
|
|
11265
|
+
export declare const BannedUserListRequest: {
|
|
11266
|
+
encode(message: BannedUserListRequest, writer?: _m0.Writer): _m0.Writer;
|
|
11267
|
+
decode(input: _m0.Reader | Uint8Array, length?: number): BannedUserListRequest;
|
|
11268
|
+
fromJSON(object: any): BannedUserListRequest;
|
|
11269
|
+
toJSON(message: BannedUserListRequest): unknown;
|
|
11270
|
+
create<I extends {
|
|
11271
|
+
clan_id?: string | undefined;
|
|
11272
|
+
channel_id?: string | undefined;
|
|
11273
|
+
} & {
|
|
11274
|
+
clan_id?: string | undefined;
|
|
11275
|
+
channel_id?: string | undefined;
|
|
11276
|
+
} & { [K in Exclude<keyof I, keyof BannedUserListRequest>]: never; }>(base?: I | undefined): BannedUserListRequest;
|
|
11277
|
+
fromPartial<I_1 extends {
|
|
11278
|
+
clan_id?: string | undefined;
|
|
11279
|
+
channel_id?: string | undefined;
|
|
11280
|
+
} & {
|
|
11281
|
+
clan_id?: string | undefined;
|
|
11282
|
+
channel_id?: string | undefined;
|
|
11283
|
+
} & { [K_1 in Exclude<keyof I_1, keyof BannedUserListRequest>]: never; }>(object: I_1): BannedUserListRequest;
|
|
11284
|
+
};
|
|
11285
|
+
export declare const BannedUserList: {
|
|
11286
|
+
encode(message: BannedUserList, writer?: _m0.Writer): _m0.Writer;
|
|
11287
|
+
decode(input: _m0.Reader | Uint8Array, length?: number): BannedUserList;
|
|
11288
|
+
fromJSON(object: any): BannedUserList;
|
|
11289
|
+
toJSON(message: BannedUserList): unknown;
|
|
11290
|
+
create<I extends {
|
|
11291
|
+
banned_users?: {
|
|
11292
|
+
channel_id?: string | undefined;
|
|
11293
|
+
banned_id?: string | undefined;
|
|
11294
|
+
banned_avatar?: string | undefined;
|
|
11295
|
+
banned_name?: string | undefined;
|
|
11296
|
+
ban_time?: number | undefined;
|
|
11297
|
+
reason?: string | undefined;
|
|
11298
|
+
}[] | undefined;
|
|
11299
|
+
} & {
|
|
11300
|
+
banned_users?: ({
|
|
11301
|
+
channel_id?: string | undefined;
|
|
11302
|
+
banned_id?: string | undefined;
|
|
11303
|
+
banned_avatar?: string | undefined;
|
|
11304
|
+
banned_name?: string | undefined;
|
|
11305
|
+
ban_time?: number | undefined;
|
|
11306
|
+
reason?: string | undefined;
|
|
11307
|
+
}[] & ({
|
|
11308
|
+
channel_id?: string | undefined;
|
|
11309
|
+
banned_id?: string | undefined;
|
|
11310
|
+
banned_avatar?: string | undefined;
|
|
11311
|
+
banned_name?: string | undefined;
|
|
11312
|
+
ban_time?: number | undefined;
|
|
11313
|
+
reason?: string | undefined;
|
|
11314
|
+
} & {
|
|
11315
|
+
channel_id?: string | undefined;
|
|
11316
|
+
banned_id?: string | undefined;
|
|
11317
|
+
banned_avatar?: string | undefined;
|
|
11318
|
+
banned_name?: string | undefined;
|
|
11319
|
+
ban_time?: number | undefined;
|
|
11320
|
+
reason?: string | undefined;
|
|
11321
|
+
} & { [K in Exclude<keyof I["banned_users"][number], keyof BannedUser>]: never; })[] & { [K_1 in Exclude<keyof I["banned_users"], keyof {
|
|
11322
|
+
channel_id?: string | undefined;
|
|
11323
|
+
banned_id?: string | undefined;
|
|
11324
|
+
banned_avatar?: string | undefined;
|
|
11325
|
+
banned_name?: string | undefined;
|
|
11326
|
+
ban_time?: number | undefined;
|
|
11327
|
+
reason?: string | undefined;
|
|
11328
|
+
}[]>]: never; }) | undefined;
|
|
11329
|
+
} & { [K_2 in Exclude<keyof I, "banned_users">]: never; }>(base?: I | undefined): BannedUserList;
|
|
11330
|
+
fromPartial<I_1 extends {
|
|
11331
|
+
banned_users?: {
|
|
11332
|
+
channel_id?: string | undefined;
|
|
11333
|
+
banned_id?: string | undefined;
|
|
11334
|
+
banned_avatar?: string | undefined;
|
|
11335
|
+
banned_name?: string | undefined;
|
|
11336
|
+
ban_time?: number | undefined;
|
|
11337
|
+
reason?: string | undefined;
|
|
11338
|
+
}[] | undefined;
|
|
11339
|
+
} & {
|
|
11340
|
+
banned_users?: ({
|
|
11341
|
+
channel_id?: string | undefined;
|
|
11342
|
+
banned_id?: string | undefined;
|
|
11343
|
+
banned_avatar?: string | undefined;
|
|
11344
|
+
banned_name?: string | undefined;
|
|
11345
|
+
ban_time?: number | undefined;
|
|
11346
|
+
reason?: string | undefined;
|
|
11347
|
+
}[] & ({
|
|
11348
|
+
channel_id?: string | undefined;
|
|
11349
|
+
banned_id?: string | undefined;
|
|
11350
|
+
banned_avatar?: string | undefined;
|
|
11351
|
+
banned_name?: string | undefined;
|
|
11352
|
+
ban_time?: number | undefined;
|
|
11353
|
+
reason?: string | undefined;
|
|
11354
|
+
} & {
|
|
11355
|
+
channel_id?: string | undefined;
|
|
11356
|
+
banned_id?: string | undefined;
|
|
11357
|
+
banned_avatar?: string | undefined;
|
|
11358
|
+
banned_name?: string | undefined;
|
|
11359
|
+
ban_time?: number | undefined;
|
|
11360
|
+
reason?: string | undefined;
|
|
11361
|
+
} & { [K_3 in Exclude<keyof I_1["banned_users"][number], keyof BannedUser>]: never; })[] & { [K_4 in Exclude<keyof I_1["banned_users"], keyof {
|
|
11362
|
+
channel_id?: string | undefined;
|
|
11363
|
+
banned_id?: string | undefined;
|
|
11364
|
+
banned_avatar?: string | undefined;
|
|
11365
|
+
banned_name?: string | undefined;
|
|
11366
|
+
ban_time?: number | undefined;
|
|
11367
|
+
reason?: string | undefined;
|
|
11368
|
+
}[]>]: never; }) | undefined;
|
|
11369
|
+
} & { [K_5 in Exclude<keyof I_1, "banned_users">]: never; }>(object: I_1): BannedUserList;
|
|
11370
|
+
};
|
|
11206
11371
|
export declare const LeaveThreadRequest: {
|
|
11207
11372
|
encode(message: LeaveThreadRequest, writer?: _m0.Writer): _m0.Writer;
|
|
11208
11373
|
decode(input: _m0.Reader | Uint8Array, length?: number): LeaveThreadRequest;
|
|
@@ -12099,23 +12264,19 @@ export declare const SetNotificationRequest: {
|
|
|
12099
12264
|
create<I extends {
|
|
12100
12265
|
channel_category_id?: string | undefined;
|
|
12101
12266
|
notification_type?: number | undefined;
|
|
12102
|
-
time_mute?: Date | undefined;
|
|
12103
12267
|
clan_id?: string | undefined;
|
|
12104
12268
|
} & {
|
|
12105
12269
|
channel_category_id?: string | undefined;
|
|
12106
12270
|
notification_type?: number | undefined;
|
|
12107
|
-
time_mute?: Date | undefined;
|
|
12108
12271
|
clan_id?: string | undefined;
|
|
12109
12272
|
} & { [K in Exclude<keyof I, keyof SetNotificationRequest>]: never; }>(base?: I | undefined): SetNotificationRequest;
|
|
12110
12273
|
fromPartial<I_1 extends {
|
|
12111
12274
|
channel_category_id?: string | undefined;
|
|
12112
12275
|
notification_type?: number | undefined;
|
|
12113
|
-
time_mute?: Date | undefined;
|
|
12114
12276
|
clan_id?: string | undefined;
|
|
12115
12277
|
} & {
|
|
12116
12278
|
channel_category_id?: string | undefined;
|
|
12117
12279
|
notification_type?: number | undefined;
|
|
12118
|
-
time_mute?: Date | undefined;
|
|
12119
12280
|
clan_id?: string | undefined;
|
|
12120
12281
|
} & { [K_1 in Exclude<keyof I_1, keyof SetNotificationRequest>]: never; }>(object: I_1): SetNotificationRequest;
|
|
12121
12282
|
};
|
|
@@ -12143,29 +12304,33 @@ export declare const PinMessageRequest: {
|
|
|
12143
12304
|
clan_id?: string | undefined;
|
|
12144
12305
|
} & { [K_1 in Exclude<keyof I_1, keyof PinMessageRequest>]: never; }>(object: I_1): PinMessageRequest;
|
|
12145
12306
|
};
|
|
12146
|
-
export declare const
|
|
12147
|
-
encode(message:
|
|
12148
|
-
decode(input: _m0.Reader | Uint8Array, length?: number):
|
|
12149
|
-
fromJSON(object: any):
|
|
12150
|
-
toJSON(message:
|
|
12307
|
+
export declare const SetMuteRequest: {
|
|
12308
|
+
encode(message: SetMuteRequest, writer?: _m0.Writer): _m0.Writer;
|
|
12309
|
+
decode(input: _m0.Reader | Uint8Array, length?: number): SetMuteRequest;
|
|
12310
|
+
fromJSON(object: any): SetMuteRequest;
|
|
12311
|
+
toJSON(message: SetMuteRequest): unknown;
|
|
12151
12312
|
create<I extends {
|
|
12152
12313
|
id?: string | undefined;
|
|
12153
|
-
|
|
12314
|
+
mute_time?: number | undefined;
|
|
12154
12315
|
active?: number | undefined;
|
|
12316
|
+
clan_id?: string | undefined;
|
|
12155
12317
|
} & {
|
|
12156
12318
|
id?: string | undefined;
|
|
12157
|
-
|
|
12319
|
+
mute_time?: number | undefined;
|
|
12158
12320
|
active?: number | undefined;
|
|
12159
|
-
|
|
12321
|
+
clan_id?: string | undefined;
|
|
12322
|
+
} & { [K in Exclude<keyof I, keyof SetMuteRequest>]: never; }>(base?: I | undefined): SetMuteRequest;
|
|
12160
12323
|
fromPartial<I_1 extends {
|
|
12161
12324
|
id?: string | undefined;
|
|
12162
|
-
|
|
12325
|
+
mute_time?: number | undefined;
|
|
12163
12326
|
active?: number | undefined;
|
|
12327
|
+
clan_id?: string | undefined;
|
|
12164
12328
|
} & {
|
|
12165
12329
|
id?: string | undefined;
|
|
12166
|
-
|
|
12330
|
+
mute_time?: number | undefined;
|
|
12167
12331
|
active?: number | undefined;
|
|
12168
|
-
|
|
12332
|
+
clan_id?: string | undefined;
|
|
12333
|
+
} & { [K_1 in Exclude<keyof I_1, keyof SetMuteRequest>]: never; }>(object: I_1): SetMuteRequest;
|
|
12169
12334
|
};
|
|
12170
12335
|
export declare const HashtagDmListRequest: {
|
|
12171
12336
|
encode(message: HashtagDmListRequest, writer?: _m0.Writer): _m0.Writer;
|
|
@@ -12516,9 +12681,7 @@ export declare const RoleList: {
|
|
|
12516
12681
|
max_level_permission?: number | undefined;
|
|
12517
12682
|
order_role?: number | undefined;
|
|
12518
12683
|
}[] | undefined;
|
|
12519
|
-
|
|
12520
|
-
prev_cursor?: string | undefined;
|
|
12521
|
-
cacheable_cursor?: string | undefined;
|
|
12684
|
+
max_level_permission?: number | undefined;
|
|
12522
12685
|
} & {
|
|
12523
12686
|
roles?: ({
|
|
12524
12687
|
id?: string | undefined;
|
|
@@ -12751,9 +12914,7 @@ export declare const RoleList: {
|
|
|
12751
12914
|
max_level_permission?: number | undefined;
|
|
12752
12915
|
order_role?: number | undefined;
|
|
12753
12916
|
}[]>]: never; }) | undefined;
|
|
12754
|
-
|
|
12755
|
-
prev_cursor?: string | undefined;
|
|
12756
|
-
cacheable_cursor?: string | undefined;
|
|
12917
|
+
max_level_permission?: number | undefined;
|
|
12757
12918
|
} & { [K_9 in Exclude<keyof I, keyof RoleList>]: never; }>(base?: I | undefined): RoleList;
|
|
12758
12919
|
fromPartial<I_1 extends {
|
|
12759
12920
|
roles?: {
|
|
@@ -12797,9 +12958,7 @@ export declare const RoleList: {
|
|
|
12797
12958
|
max_level_permission?: number | undefined;
|
|
12798
12959
|
order_role?: number | undefined;
|
|
12799
12960
|
}[] | undefined;
|
|
12800
|
-
|
|
12801
|
-
prev_cursor?: string | undefined;
|
|
12802
|
-
cacheable_cursor?: string | undefined;
|
|
12961
|
+
max_level_permission?: number | undefined;
|
|
12803
12962
|
} & {
|
|
12804
12963
|
roles?: ({
|
|
12805
12964
|
id?: string | undefined;
|
|
@@ -13032,9 +13191,7 @@ export declare const RoleList: {
|
|
|
13032
13191
|
max_level_permission?: number | undefined;
|
|
13033
13192
|
order_role?: number | undefined;
|
|
13034
13193
|
}[]>]: never; }) | undefined;
|
|
13035
|
-
|
|
13036
|
-
prev_cursor?: string | undefined;
|
|
13037
|
-
cacheable_cursor?: string | undefined;
|
|
13194
|
+
max_level_permission?: number | undefined;
|
|
13038
13195
|
} & { [K_19 in Exclude<keyof I_1, keyof RoleList>]: never; }>(object: I_1): RoleList;
|
|
13039
13196
|
};
|
|
13040
13197
|
export declare const EventList: {
|
|
@@ -17259,9 +17416,7 @@ export declare const RoleListEventResponse: {
|
|
|
17259
17416
|
max_level_permission?: number | undefined;
|
|
17260
17417
|
order_role?: number | undefined;
|
|
17261
17418
|
}[] | undefined;
|
|
17262
|
-
|
|
17263
|
-
prev_cursor?: string | undefined;
|
|
17264
|
-
cacheable_cursor?: string | undefined;
|
|
17419
|
+
max_level_permission?: number | undefined;
|
|
17265
17420
|
} | undefined;
|
|
17266
17421
|
} & {
|
|
17267
17422
|
limit?: number | undefined;
|
|
@@ -17310,9 +17465,7 @@ export declare const RoleListEventResponse: {
|
|
|
17310
17465
|
max_level_permission?: number | undefined;
|
|
17311
17466
|
order_role?: number | undefined;
|
|
17312
17467
|
}[] | undefined;
|
|
17313
|
-
|
|
17314
|
-
prev_cursor?: string | undefined;
|
|
17315
|
-
cacheable_cursor?: string | undefined;
|
|
17468
|
+
max_level_permission?: number | undefined;
|
|
17316
17469
|
} & {
|
|
17317
17470
|
roles?: ({
|
|
17318
17471
|
id?: string | undefined;
|
|
@@ -17545,9 +17698,7 @@ export declare const RoleListEventResponse: {
|
|
|
17545
17698
|
max_level_permission?: number | undefined;
|
|
17546
17699
|
order_role?: number | undefined;
|
|
17547
17700
|
}[]>]: never; }) | undefined;
|
|
17548
|
-
|
|
17549
|
-
prev_cursor?: string | undefined;
|
|
17550
|
-
cacheable_cursor?: string | undefined;
|
|
17701
|
+
max_level_permission?: number | undefined;
|
|
17551
17702
|
} & { [K_9 in Exclude<keyof I["roles"], keyof RoleList>]: never; }) | undefined;
|
|
17552
17703
|
} & { [K_10 in Exclude<keyof I, keyof RoleListEventResponse>]: never; }>(base?: I | undefined): RoleListEventResponse;
|
|
17553
17704
|
fromPartial<I_1 extends {
|
|
@@ -17597,9 +17748,7 @@ export declare const RoleListEventResponse: {
|
|
|
17597
17748
|
max_level_permission?: number | undefined;
|
|
17598
17749
|
order_role?: number | undefined;
|
|
17599
17750
|
}[] | undefined;
|
|
17600
|
-
|
|
17601
|
-
prev_cursor?: string | undefined;
|
|
17602
|
-
cacheable_cursor?: string | undefined;
|
|
17751
|
+
max_level_permission?: number | undefined;
|
|
17603
17752
|
} | undefined;
|
|
17604
17753
|
} & {
|
|
17605
17754
|
limit?: number | undefined;
|
|
@@ -17648,9 +17797,7 @@ export declare const RoleListEventResponse: {
|
|
|
17648
17797
|
max_level_permission?: number | undefined;
|
|
17649
17798
|
order_role?: number | undefined;
|
|
17650
17799
|
}[] | undefined;
|
|
17651
|
-
|
|
17652
|
-
prev_cursor?: string | undefined;
|
|
17653
|
-
cacheable_cursor?: string | undefined;
|
|
17800
|
+
max_level_permission?: number | undefined;
|
|
17654
17801
|
} & {
|
|
17655
17802
|
roles?: ({
|
|
17656
17803
|
id?: string | undefined;
|
|
@@ -17883,9 +18030,7 @@ export declare const RoleListEventResponse: {
|
|
|
17883
18030
|
max_level_permission?: number | undefined;
|
|
17884
18031
|
order_role?: number | undefined;
|
|
17885
18032
|
}[]>]: never; }) | undefined;
|
|
17886
|
-
|
|
17887
|
-
prev_cursor?: string | undefined;
|
|
17888
|
-
cacheable_cursor?: string | undefined;
|
|
18033
|
+
max_level_permission?: number | undefined;
|
|
17889
18034
|
} & { [K_20 in Exclude<keyof I_1["roles"], keyof RoleList>]: never; }) | undefined;
|
|
17890
18035
|
} & { [K_21 in Exclude<keyof I_1, keyof RoleListEventResponse>]: never; }>(object: I_1): RoleListEventResponse;
|
|
17891
18036
|
};
|