mezon-sdk 2.7.78 → 2.7.80
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/dist/cjs/api/api.d.ts +3090 -433
- package/dist/cjs/api/api.js +2038 -617
- package/dist/cjs/api/api.js.map +1 -1
- package/dist/cjs/client.js +10 -0
- package/dist/cjs/client.js.map +1 -1
- package/dist/cjs/index.d.ts +1 -1
- package/dist/cjs/index.js +1 -1
- package/dist/cjs/index.js.map +1 -1
- package/dist/cjs/mezon-client/channel_manager.d.ts +13 -0
- package/dist/cjs/mezon-client/channel_manager.js +69 -0
- package/dist/cjs/mezon-client/channel_manager.js.map +1 -0
- package/dist/cjs/mezon-client/event_manager.d.ts +7 -0
- package/dist/cjs/mezon-client/event_manager.js +37 -0
- package/dist/cjs/mezon-client/event_manager.js.map +1 -0
- package/dist/cjs/mezon-client/message_manager.d.ts +14 -0
- package/dist/cjs/mezon-client/message_manager.js +58 -0
- package/dist/cjs/mezon-client/message_manager.js.map +1 -0
- package/dist/cjs/mezon-client/mezon_client.d.ts +38 -0
- package/dist/cjs/mezon-client/mezon_client.js +120 -0
- package/dist/cjs/mezon-client/mezon_client.js.map +1 -0
- package/dist/cjs/mezon-client/session_manager.d.ts +10 -0
- package/dist/cjs/mezon-client/session_manager.js +35 -0
- package/dist/cjs/mezon-client/session_manager.js.map +1 -0
- package/dist/cjs/mezon-client/socket_manager.d.ts +20 -0
- package/dist/cjs/mezon-client/socket_manager.js +54 -0
- package/dist/cjs/mezon-client/socket_manager.js.map +1 -0
- package/dist/cjs/rtapi/realtime.d.ts +2114 -693
- package/dist/cjs/rtapi/realtime.js +389 -507
- package/dist/cjs/rtapi/realtime.js.map +1 -1
- package/dist/esm/api/api.d.ts +3090 -433
- package/dist/esm/api/api.js +2028 -611
- package/dist/esm/api/api.js.map +1 -1
- package/dist/esm/client.js +10 -0
- package/dist/esm/client.js.map +1 -1
- package/dist/esm/index.d.ts +1 -1
- package/dist/esm/index.js +1 -1
- package/dist/esm/index.js.map +1 -1
- package/dist/esm/mezon-client/channel_manager.d.ts +13 -0
- package/dist/esm/mezon-client/channel_manager.js +68 -0
- package/dist/esm/mezon-client/channel_manager.js.map +1 -0
- package/dist/esm/mezon-client/event_manager.d.ts +7 -0
- package/dist/esm/mezon-client/event_manager.js +31 -0
- package/dist/esm/mezon-client/event_manager.js.map +1 -0
- package/dist/esm/mezon-client/message_manager.d.ts +14 -0
- package/dist/esm/mezon-client/message_manager.js +55 -0
- package/dist/esm/mezon-client/message_manager.js.map +1 -0
- package/dist/esm/mezon-client/mezon_client.d.ts +38 -0
- package/dist/esm/mezon-client/mezon_client.js +128 -0
- package/dist/esm/mezon-client/mezon_client.js.map +1 -0
- package/dist/esm/mezon-client/session_manager.d.ts +10 -0
- package/dist/esm/mezon-client/session_manager.js +33 -0
- package/dist/esm/mezon-client/session_manager.js.map +1 -0
- package/dist/esm/mezon-client/socket_manager.d.ts +20 -0
- package/dist/esm/mezon-client/socket_manager.js +56 -0
- package/dist/esm/mezon-client/socket_manager.js.map +1 -0
- package/dist/esm/rtapi/realtime.d.ts +2114 -693
- package/dist/esm/rtapi/realtime.js +379 -496
- package/dist/esm/rtapi/realtime.js.map +1 -1
- package/dist/tsconfig.esm.tsbuildinfo +1 -1
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/package.json +1 -1
package/dist/cjs/api/api.d.ts
CHANGED
|
@@ -53,8 +53,8 @@ export interface Account {
|
|
|
53
53
|
email: string;
|
|
54
54
|
/** The devices which belong to the user's account. */
|
|
55
55
|
devices: AccountDevice[];
|
|
56
|
-
/** The
|
|
57
|
-
|
|
56
|
+
/** The mezon id in the user's account. */
|
|
57
|
+
mezon_id: string;
|
|
58
58
|
/** The UNIX time (for gRPC clients) or ISO string (for REST clients) when the user's email was verified. */
|
|
59
59
|
verify_time: Date | undefined;
|
|
60
60
|
/** The UNIX time (for gRPC clients) or ISO string (for REST clients) when the user's account was disabled/banned. */
|
|
@@ -92,19 +92,6 @@ export interface AccountApple_VarsEntry {
|
|
|
92
92
|
key: string;
|
|
93
93
|
value: string;
|
|
94
94
|
}
|
|
95
|
-
/** Send a custom ID to the server. Used with authenticate/link/unlink. */
|
|
96
|
-
export interface AccountCustom {
|
|
97
|
-
/** A custom identifier. */
|
|
98
|
-
id: string;
|
|
99
|
-
/** Extra information that will be bundled in the session token. */
|
|
100
|
-
vars: {
|
|
101
|
-
[key: string]: string;
|
|
102
|
-
};
|
|
103
|
-
}
|
|
104
|
-
export interface AccountCustom_VarsEntry {
|
|
105
|
-
key: string;
|
|
106
|
-
value: string;
|
|
107
|
-
}
|
|
108
95
|
/** Send a device to the server. Used with authenticate/link/unlink and user. */
|
|
109
96
|
export interface AccountDevice {
|
|
110
97
|
/** A device identifier. Should be obtained by a platform-specific device API. */
|
|
@@ -195,6 +182,19 @@ export interface AccountGoogle_VarsEntry {
|
|
|
195
182
|
key: string;
|
|
196
183
|
value: string;
|
|
197
184
|
}
|
|
185
|
+
/** Send a Mezon token to the server. Used with authenticate/link/unlink. */
|
|
186
|
+
export interface AccountMezon {
|
|
187
|
+
/** The OAuth token received from Google to access their profile API. */
|
|
188
|
+
token: string;
|
|
189
|
+
/** Extra information that will be bundled in the session token. */
|
|
190
|
+
vars: {
|
|
191
|
+
[key: string]: string;
|
|
192
|
+
};
|
|
193
|
+
}
|
|
194
|
+
export interface AccountMezon_VarsEntry {
|
|
195
|
+
key: string;
|
|
196
|
+
value: string;
|
|
197
|
+
}
|
|
198
198
|
/** Send a Steam token to the server. Used with authenticate/link/unlink. */
|
|
199
199
|
export interface AccountSteam {
|
|
200
200
|
/** The account token received from Steam to access their profile API. */
|
|
@@ -255,15 +255,6 @@ export interface AuthenticateAppleRequest {
|
|
|
255
255
|
/** Set the username on the account at register. Must be unique. */
|
|
256
256
|
username: string;
|
|
257
257
|
}
|
|
258
|
-
/** Authenticate against the server with a custom ID. */
|
|
259
|
-
export interface AuthenticateCustomRequest {
|
|
260
|
-
/** The custom account details. */
|
|
261
|
-
account: AccountCustom | undefined;
|
|
262
|
-
/** Register the account if the user does not already exist. */
|
|
263
|
-
create: boolean | undefined;
|
|
264
|
-
/** Set the username on the account at register. Must be unique. */
|
|
265
|
-
username: string;
|
|
266
|
-
}
|
|
267
258
|
/** Authenticate against the server with a device ID. */
|
|
268
259
|
export interface AuthenticateDeviceRequest {
|
|
269
260
|
/** The device account details. */
|
|
@@ -325,6 +316,15 @@ export interface AuthenticateGoogleRequest {
|
|
|
325
316
|
/** Set the username on the account at register. Must be unique. */
|
|
326
317
|
username: string;
|
|
327
318
|
}
|
|
319
|
+
/** Authenticate against the server with Mezon. */
|
|
320
|
+
export interface AuthenticateMezonRequest {
|
|
321
|
+
/** The Mezon account details. */
|
|
322
|
+
account: AccountMezon | undefined;
|
|
323
|
+
/** Register the account if the user does not already exist. */
|
|
324
|
+
create: boolean | undefined;
|
|
325
|
+
/** Set the username on the account at register. Must be unique. */
|
|
326
|
+
username: string;
|
|
327
|
+
}
|
|
328
328
|
/** Authenticate against the server with Steam. */
|
|
329
329
|
export interface AuthenticateSteamRequest {
|
|
330
330
|
/** The Steam account details. */
|
|
@@ -448,6 +448,8 @@ export interface NotificationInfo {
|
|
|
448
448
|
clan_name: string;
|
|
449
449
|
/** clan logo */
|
|
450
450
|
clan_logo: string;
|
|
451
|
+
/** */
|
|
452
|
+
channel: ChannelDescription | undefined;
|
|
451
453
|
}
|
|
452
454
|
/** Emoji reaction by user */
|
|
453
455
|
export interface MessageReaction {
|
|
@@ -966,6 +968,8 @@ export interface Notification {
|
|
|
966
968
|
channel_type: number;
|
|
967
969
|
/** */
|
|
968
970
|
avatar_url: string;
|
|
971
|
+
/** */
|
|
972
|
+
channel: ChannelDescription | undefined;
|
|
969
973
|
}
|
|
970
974
|
/** A collection of zero or more notifications. */
|
|
971
975
|
export interface NotificationList {
|
|
@@ -1254,6 +1258,8 @@ export interface InviteUserRes {
|
|
|
1254
1258
|
user_joined: boolean;
|
|
1255
1259
|
/** expiry_time */
|
|
1256
1260
|
expiry_time: Date | undefined;
|
|
1261
|
+
/** */
|
|
1262
|
+
channel_desc: ChannelDescription | undefined;
|
|
1257
1263
|
}
|
|
1258
1264
|
/** Add link invite users to. */
|
|
1259
1265
|
export interface JoinClanChannelRequest {
|
|
@@ -1404,7 +1410,7 @@ export interface ChannelDescription {
|
|
|
1404
1410
|
/** last pin message */
|
|
1405
1411
|
last_pin_message: string;
|
|
1406
1412
|
/** the usernames */
|
|
1407
|
-
usernames: string;
|
|
1413
|
+
usernames: string[];
|
|
1408
1414
|
/** creator name */
|
|
1409
1415
|
creator_name: string;
|
|
1410
1416
|
/** create time ms */
|
|
@@ -1427,6 +1433,8 @@ export interface ChannelDescription {
|
|
|
1427
1433
|
topic: string;
|
|
1428
1434
|
/** e2ee */
|
|
1429
1435
|
e2ee: number;
|
|
1436
|
+
/** display name */
|
|
1437
|
+
display_names: string[];
|
|
1430
1438
|
}
|
|
1431
1439
|
/** A list of channel description, usually a result of a list operation. */
|
|
1432
1440
|
export interface ChannelDescList {
|
|
@@ -1438,6 +1446,8 @@ export interface ChannelDescList {
|
|
|
1438
1446
|
prev_cursor: string;
|
|
1439
1447
|
/** Cacheable cursor to list newer channel description. Durable and designed to be stored, unlike next/prev cursors. */
|
|
1440
1448
|
cacheable_cursor: string;
|
|
1449
|
+
/** Page thread */
|
|
1450
|
+
page: number;
|
|
1441
1451
|
}
|
|
1442
1452
|
export interface ListThreadRequest {
|
|
1443
1453
|
/** Max number of records to return. Between 1 and 100. */
|
|
@@ -1450,6 +1460,8 @@ export interface ListThreadRequest {
|
|
|
1450
1460
|
channel_id: string;
|
|
1451
1461
|
/** thread id */
|
|
1452
1462
|
thread_id: string;
|
|
1463
|
+
/** Number of page */
|
|
1464
|
+
page: number | undefined;
|
|
1453
1465
|
}
|
|
1454
1466
|
/** List (and optionally filter) channels. */
|
|
1455
1467
|
export interface ListChannelDescsRequest {
|
|
@@ -1649,6 +1661,8 @@ export interface NotificationUserChannel {
|
|
|
1649
1661
|
time_mute: Date | undefined;
|
|
1650
1662
|
/** */
|
|
1651
1663
|
active: number;
|
|
1664
|
+
/** */
|
|
1665
|
+
channel_id: string;
|
|
1652
1666
|
}
|
|
1653
1667
|
/** Notification channel */
|
|
1654
1668
|
export interface NotifiReactMessage {
|
|
@@ -2014,13 +2028,13 @@ export interface SearchMessageDocument {
|
|
|
2014
2028
|
/** Message content */
|
|
2015
2029
|
content: string;
|
|
2016
2030
|
/** Mention users */
|
|
2017
|
-
|
|
2031
|
+
mentions: string;
|
|
2018
2032
|
/** Reactions */
|
|
2019
|
-
|
|
2033
|
+
reactions: string;
|
|
2020
2034
|
/** Attachment */
|
|
2021
2035
|
attachments: MessageAttachment[];
|
|
2022
2036
|
/** Reference users */
|
|
2023
|
-
|
|
2037
|
+
references: string;
|
|
2024
2038
|
/** Message create time */
|
|
2025
2039
|
create_time: string;
|
|
2026
2040
|
/** Message update time */
|
|
@@ -2140,6 +2154,7 @@ export interface Webhook {
|
|
|
2140
2154
|
create_time: string;
|
|
2141
2155
|
update_time: string;
|
|
2142
2156
|
avatar: string;
|
|
2157
|
+
status: number;
|
|
2143
2158
|
}
|
|
2144
2159
|
export interface WebhookCreateRequest {
|
|
2145
2160
|
webhook_name: string;
|
|
@@ -2219,6 +2234,7 @@ export interface ClanStickerDeleteRequest {
|
|
|
2219
2234
|
sticker_label: string;
|
|
2220
2235
|
}
|
|
2221
2236
|
export interface ChangeChannelCategoryRequest {
|
|
2237
|
+
clan_id: string;
|
|
2222
2238
|
channel_id: string;
|
|
2223
2239
|
new_category_id: string;
|
|
2224
2240
|
}
|
|
@@ -2645,6 +2661,8 @@ export interface ChannelCanvasListRequest {
|
|
|
2645
2661
|
limit: number | undefined;
|
|
2646
2662
|
/** page */
|
|
2647
2663
|
page: number | undefined;
|
|
2664
|
+
/** */
|
|
2665
|
+
cursor: string;
|
|
2648
2666
|
}
|
|
2649
2667
|
export interface ChannelCanvasItem {
|
|
2650
2668
|
/** id */
|
|
@@ -2657,6 +2675,8 @@ export interface ChannelCanvasItem {
|
|
|
2657
2675
|
content: string;
|
|
2658
2676
|
/** creator */
|
|
2659
2677
|
creator_id: string;
|
|
2678
|
+
/** */
|
|
2679
|
+
update_time: Date | undefined;
|
|
2660
2680
|
}
|
|
2661
2681
|
export interface ChannelCanvasListResponse {
|
|
2662
2682
|
/** clan id */
|
|
@@ -2665,6 +2685,8 @@ export interface ChannelCanvasListResponse {
|
|
|
2665
2685
|
channel_id: string;
|
|
2666
2686
|
/** channel doc item */
|
|
2667
2687
|
channel_canvases: ChannelCanvasItem[];
|
|
2688
|
+
/** */
|
|
2689
|
+
count: number;
|
|
2668
2690
|
}
|
|
2669
2691
|
export interface ChannelCanvasDetailRequest {
|
|
2670
2692
|
/** id */
|
|
@@ -2736,8 +2758,8 @@ export interface LoginIDResponse {
|
|
|
2736
2758
|
platform: string;
|
|
2737
2759
|
/** user_id */
|
|
2738
2760
|
user_id: number;
|
|
2739
|
-
/**
|
|
2740
|
-
|
|
2761
|
+
/** username */
|
|
2762
|
+
username: string;
|
|
2741
2763
|
/** address */
|
|
2742
2764
|
address: string;
|
|
2743
2765
|
}
|
|
@@ -3032,22 +3054,6 @@ export interface UpdateOnboardingStepRequest {
|
|
|
3032
3054
|
/** onboarding step. */
|
|
3033
3055
|
onboarding_step: number | undefined;
|
|
3034
3056
|
}
|
|
3035
|
-
/** A list of users belonging to a channel, along with their role. */
|
|
3036
|
-
export interface PTTChannelUser {
|
|
3037
|
-
/** user join id */
|
|
3038
|
-
id: string;
|
|
3039
|
-
/** user for a channel. */
|
|
3040
|
-
user_id: string;
|
|
3041
|
-
/** channel id */
|
|
3042
|
-
channel_id: string;
|
|
3043
|
-
/** participant */
|
|
3044
|
-
participant: string;
|
|
3045
|
-
}
|
|
3046
|
-
/** A list of users belonging to a channel, along with their role. */
|
|
3047
|
-
export interface PTTChannelUserList {
|
|
3048
|
-
/** list of ptt channel user */
|
|
3049
|
-
ptt_channel_users: PTTChannelUser[];
|
|
3050
|
-
}
|
|
3051
3057
|
export interface WalletLedger {
|
|
3052
3058
|
/** change set id */
|
|
3053
3059
|
id: string;
|
|
@@ -3062,13 +3068,27 @@ export interface WalletLedger {
|
|
|
3062
3068
|
}
|
|
3063
3069
|
export interface WalletLedgerList {
|
|
3064
3070
|
wallet_ledger: WalletLedger[];
|
|
3065
|
-
|
|
3066
|
-
next_cursor: string;
|
|
3071
|
+
count: number;
|
|
3067
3072
|
}
|
|
3068
3073
|
export interface WalletLedgerListReq {
|
|
3069
3074
|
limit: number | undefined;
|
|
3070
3075
|
cursor: string;
|
|
3071
3076
|
transaction_id: string;
|
|
3077
|
+
page: number | undefined;
|
|
3078
|
+
}
|
|
3079
|
+
export interface TransactionDetailReq {
|
|
3080
|
+
trans_id: string;
|
|
3081
|
+
}
|
|
3082
|
+
export interface TransactionDetail {
|
|
3083
|
+
sender_id: string;
|
|
3084
|
+
sender_username: string;
|
|
3085
|
+
receiver_id: string;
|
|
3086
|
+
receiver_username: string;
|
|
3087
|
+
amount: number;
|
|
3088
|
+
trans_id: string;
|
|
3089
|
+
metadata: string;
|
|
3090
|
+
create_time: Date | undefined;
|
|
3091
|
+
update_time: Date | undefined;
|
|
3072
3092
|
}
|
|
3073
3093
|
export interface SdTopic {
|
|
3074
3094
|
id: string;
|
|
@@ -3103,6 +3123,81 @@ export interface DeleteSdTopicRequest {
|
|
|
3103
3123
|
id: string;
|
|
3104
3124
|
clan_id: string;
|
|
3105
3125
|
}
|
|
3126
|
+
export interface GenerateMeetTokenRequest {
|
|
3127
|
+
channel_id: string;
|
|
3128
|
+
room_name: string;
|
|
3129
|
+
}
|
|
3130
|
+
export interface GenerateMeetTokenResponse {
|
|
3131
|
+
token: string;
|
|
3132
|
+
}
|
|
3133
|
+
export interface CreateRoomChannelApps {
|
|
3134
|
+
channel_id: string;
|
|
3135
|
+
room_name: string;
|
|
3136
|
+
}
|
|
3137
|
+
export interface HandleParticipantMeetStateRequest {
|
|
3138
|
+
/** clan id */
|
|
3139
|
+
clan_id: string;
|
|
3140
|
+
/** channel id */
|
|
3141
|
+
channel_id: string;
|
|
3142
|
+
/** user id */
|
|
3143
|
+
user_id: string;
|
|
3144
|
+
/** display name */
|
|
3145
|
+
display_name: string;
|
|
3146
|
+
/** state (0: join, 1: leave) */
|
|
3147
|
+
state: number;
|
|
3148
|
+
}
|
|
3149
|
+
export interface MezonOauthClient {
|
|
3150
|
+
access_token_strategy: string;
|
|
3151
|
+
allowed_cors_origins: string[];
|
|
3152
|
+
audience: string[];
|
|
3153
|
+
authorization_code_grant_access_token_lifespan: string;
|
|
3154
|
+
authorization_code_grant_id_token_lifespan: string;
|
|
3155
|
+
authorization_code_grant_refresh_token_lifespan: string;
|
|
3156
|
+
backchannel_logout_session_required: boolean;
|
|
3157
|
+
backchannel_logout_uri: string;
|
|
3158
|
+
client_credentials_grant_access_token_lifespan: string;
|
|
3159
|
+
client_id: string;
|
|
3160
|
+
client_name: string;
|
|
3161
|
+
client_secret: string;
|
|
3162
|
+
client_secret_expires_at: number;
|
|
3163
|
+
client_uri: string;
|
|
3164
|
+
contacts: string[];
|
|
3165
|
+
created_at: Date | undefined;
|
|
3166
|
+
frontchannel_logout_session_required: boolean;
|
|
3167
|
+
frontchannel_logout_uri: string;
|
|
3168
|
+
grant_types: string[];
|
|
3169
|
+
implicit_grant_access_token_lifespan: string;
|
|
3170
|
+
implicit_grant_id_token_lifespan: string;
|
|
3171
|
+
jwks: string[];
|
|
3172
|
+
jwks_uri: string;
|
|
3173
|
+
jwt_bearer_grant_access_token_lifespan: string;
|
|
3174
|
+
logo_uri: string;
|
|
3175
|
+
owner: string;
|
|
3176
|
+
policy_uri: string;
|
|
3177
|
+
post_logout_redirect_uris: string[];
|
|
3178
|
+
redirect_uris: string[];
|
|
3179
|
+
refresh_token_grant_access_token_lifespan: string;
|
|
3180
|
+
refresh_token_grant_id_token_lifespan: string;
|
|
3181
|
+
refresh_token_grant_refresh_token_lifespan: string;
|
|
3182
|
+
registration_access_token: string;
|
|
3183
|
+
registration_client_uri: string;
|
|
3184
|
+
request_object_signing_alg: string;
|
|
3185
|
+
request_uris: string[];
|
|
3186
|
+
response_types: string[];
|
|
3187
|
+
scope: string;
|
|
3188
|
+
sector_identifier_uri: string;
|
|
3189
|
+
skip_consent: boolean;
|
|
3190
|
+
skip_logout_consent: boolean;
|
|
3191
|
+
subject_type: string;
|
|
3192
|
+
token_endpoint_auth_method: string;
|
|
3193
|
+
token_endpoint_auth_signing_alg: string;
|
|
3194
|
+
tos_uri: string;
|
|
3195
|
+
updated_at: Date | undefined;
|
|
3196
|
+
userinfo_signed_response_alg: string;
|
|
3197
|
+
}
|
|
3198
|
+
export interface MezonOauthClientList {
|
|
3199
|
+
listMezonOauthClient: MezonOauthClient[];
|
|
3200
|
+
}
|
|
3106
3201
|
export declare const Account: {
|
|
3107
3202
|
encode(message: Account, writer?: _m0.Writer): _m0.Writer;
|
|
3108
3203
|
decode(input: _m0.Reader | Uint8Array, length?: number): Account;
|
|
@@ -3140,7 +3235,7 @@ export declare const Account: {
|
|
|
3140
3235
|
[x: string]: string | undefined;
|
|
3141
3236
|
} | undefined;
|
|
3142
3237
|
}[] | undefined;
|
|
3143
|
-
|
|
3238
|
+
mezon_id?: string | undefined;
|
|
3144
3239
|
verify_time?: Date | undefined;
|
|
3145
3240
|
disable_time?: Date | undefined;
|
|
3146
3241
|
logo?: string | undefined;
|
|
@@ -3217,7 +3312,7 @@ export declare const Account: {
|
|
|
3217
3312
|
[x: string]: string | undefined;
|
|
3218
3313
|
} | undefined;
|
|
3219
3314
|
}[]>]: never; }) | undefined;
|
|
3220
|
-
|
|
3315
|
+
mezon_id?: string | undefined;
|
|
3221
3316
|
verify_time?: Date | undefined;
|
|
3222
3317
|
disable_time?: Date | undefined;
|
|
3223
3318
|
logo?: string | undefined;
|
|
@@ -3256,7 +3351,7 @@ export declare const Account: {
|
|
|
3256
3351
|
[x: string]: string | undefined;
|
|
3257
3352
|
} | undefined;
|
|
3258
3353
|
}[] | undefined;
|
|
3259
|
-
|
|
3354
|
+
mezon_id?: string | undefined;
|
|
3260
3355
|
verify_time?: Date | undefined;
|
|
3261
3356
|
disable_time?: Date | undefined;
|
|
3262
3357
|
logo?: string | undefined;
|
|
@@ -3333,7 +3428,7 @@ export declare const Account: {
|
|
|
3333
3428
|
[x: string]: string | undefined;
|
|
3334
3429
|
} | undefined;
|
|
3335
3430
|
}[]>]: never; }) | undefined;
|
|
3336
|
-
|
|
3431
|
+
mezon_id?: string | undefined;
|
|
3337
3432
|
verify_time?: Date | undefined;
|
|
3338
3433
|
disable_time?: Date | undefined;
|
|
3339
3434
|
logo?: string | undefined;
|
|
@@ -3445,58 +3540,6 @@ export declare const AccountApple_VarsEntry: {
|
|
|
3445
3540
|
value?: string | undefined;
|
|
3446
3541
|
} & { [K_1 in Exclude<keyof I_1, keyof AccountApple_VarsEntry>]: never; }>(object: I_1): AccountApple_VarsEntry;
|
|
3447
3542
|
};
|
|
3448
|
-
export declare const AccountCustom: {
|
|
3449
|
-
encode(message: AccountCustom, writer?: _m0.Writer): _m0.Writer;
|
|
3450
|
-
decode(input: _m0.Reader | Uint8Array, length?: number): AccountCustom;
|
|
3451
|
-
fromJSON(object: any): AccountCustom;
|
|
3452
|
-
toJSON(message: AccountCustom): unknown;
|
|
3453
|
-
create<I extends {
|
|
3454
|
-
id?: string | undefined;
|
|
3455
|
-
vars?: {
|
|
3456
|
-
[x: string]: string | undefined;
|
|
3457
|
-
} | undefined;
|
|
3458
|
-
} & {
|
|
3459
|
-
id?: string | undefined;
|
|
3460
|
-
vars?: ({
|
|
3461
|
-
[x: string]: string | undefined;
|
|
3462
|
-
} & {
|
|
3463
|
-
[x: string]: string | undefined;
|
|
3464
|
-
} & { [K in Exclude<keyof I["vars"], string | number>]: never; }) | undefined;
|
|
3465
|
-
} & { [K_1 in Exclude<keyof I, keyof AccountCustom>]: never; }>(base?: I | undefined): AccountCustom;
|
|
3466
|
-
fromPartial<I_1 extends {
|
|
3467
|
-
id?: string | undefined;
|
|
3468
|
-
vars?: {
|
|
3469
|
-
[x: string]: string | undefined;
|
|
3470
|
-
} | undefined;
|
|
3471
|
-
} & {
|
|
3472
|
-
id?: string | undefined;
|
|
3473
|
-
vars?: ({
|
|
3474
|
-
[x: string]: string | undefined;
|
|
3475
|
-
} & {
|
|
3476
|
-
[x: string]: string | undefined;
|
|
3477
|
-
} & { [K_2 in Exclude<keyof I_1["vars"], string | number>]: never; }) | undefined;
|
|
3478
|
-
} & { [K_3 in Exclude<keyof I_1, keyof AccountCustom>]: never; }>(object: I_1): AccountCustom;
|
|
3479
|
-
};
|
|
3480
|
-
export declare const AccountCustom_VarsEntry: {
|
|
3481
|
-
encode(message: AccountCustom_VarsEntry, writer?: _m0.Writer): _m0.Writer;
|
|
3482
|
-
decode(input: _m0.Reader | Uint8Array, length?: number): AccountCustom_VarsEntry;
|
|
3483
|
-
fromJSON(object: any): AccountCustom_VarsEntry;
|
|
3484
|
-
toJSON(message: AccountCustom_VarsEntry): unknown;
|
|
3485
|
-
create<I extends {
|
|
3486
|
-
key?: string | undefined;
|
|
3487
|
-
value?: string | undefined;
|
|
3488
|
-
} & {
|
|
3489
|
-
key?: string | undefined;
|
|
3490
|
-
value?: string | undefined;
|
|
3491
|
-
} & { [K in Exclude<keyof I, keyof AccountCustom_VarsEntry>]: never; }>(base?: I | undefined): AccountCustom_VarsEntry;
|
|
3492
|
-
fromPartial<I_1 extends {
|
|
3493
|
-
key?: string | undefined;
|
|
3494
|
-
value?: string | undefined;
|
|
3495
|
-
} & {
|
|
3496
|
-
key?: string | undefined;
|
|
3497
|
-
value?: string | undefined;
|
|
3498
|
-
} & { [K_1 in Exclude<keyof I_1, keyof AccountCustom_VarsEntry>]: never; }>(object: I_1): AccountCustom_VarsEntry;
|
|
3499
|
-
};
|
|
3500
3543
|
export declare const AccountDevice: {
|
|
3501
3544
|
encode(message: AccountDevice, writer?: _m0.Writer): _m0.Writer;
|
|
3502
3545
|
decode(input: _m0.Reader | Uint8Array, length?: number): AccountDevice;
|
|
@@ -3833,6 +3876,58 @@ export declare const AccountGoogle_VarsEntry: {
|
|
|
3833
3876
|
value?: string | undefined;
|
|
3834
3877
|
} & { [K_1 in Exclude<keyof I_1, keyof AccountGoogle_VarsEntry>]: never; }>(object: I_1): AccountGoogle_VarsEntry;
|
|
3835
3878
|
};
|
|
3879
|
+
export declare const AccountMezon: {
|
|
3880
|
+
encode(message: AccountMezon, writer?: _m0.Writer): _m0.Writer;
|
|
3881
|
+
decode(input: _m0.Reader | Uint8Array, length?: number): AccountMezon;
|
|
3882
|
+
fromJSON(object: any): AccountMezon;
|
|
3883
|
+
toJSON(message: AccountMezon): unknown;
|
|
3884
|
+
create<I extends {
|
|
3885
|
+
token?: string | undefined;
|
|
3886
|
+
vars?: {
|
|
3887
|
+
[x: string]: string | undefined;
|
|
3888
|
+
} | undefined;
|
|
3889
|
+
} & {
|
|
3890
|
+
token?: string | undefined;
|
|
3891
|
+
vars?: ({
|
|
3892
|
+
[x: string]: string | undefined;
|
|
3893
|
+
} & {
|
|
3894
|
+
[x: string]: string | undefined;
|
|
3895
|
+
} & { [K in Exclude<keyof I["vars"], string | number>]: never; }) | undefined;
|
|
3896
|
+
} & { [K_1 in Exclude<keyof I, keyof AccountMezon>]: never; }>(base?: I | undefined): AccountMezon;
|
|
3897
|
+
fromPartial<I_1 extends {
|
|
3898
|
+
token?: string | undefined;
|
|
3899
|
+
vars?: {
|
|
3900
|
+
[x: string]: string | undefined;
|
|
3901
|
+
} | undefined;
|
|
3902
|
+
} & {
|
|
3903
|
+
token?: string | undefined;
|
|
3904
|
+
vars?: ({
|
|
3905
|
+
[x: string]: string | undefined;
|
|
3906
|
+
} & {
|
|
3907
|
+
[x: string]: string | undefined;
|
|
3908
|
+
} & { [K_2 in Exclude<keyof I_1["vars"], string | number>]: never; }) | undefined;
|
|
3909
|
+
} & { [K_3 in Exclude<keyof I_1, keyof AccountMezon>]: never; }>(object: I_1): AccountMezon;
|
|
3910
|
+
};
|
|
3911
|
+
export declare const AccountMezon_VarsEntry: {
|
|
3912
|
+
encode(message: AccountMezon_VarsEntry, writer?: _m0.Writer): _m0.Writer;
|
|
3913
|
+
decode(input: _m0.Reader | Uint8Array, length?: number): AccountMezon_VarsEntry;
|
|
3914
|
+
fromJSON(object: any): AccountMezon_VarsEntry;
|
|
3915
|
+
toJSON(message: AccountMezon_VarsEntry): unknown;
|
|
3916
|
+
create<I extends {
|
|
3917
|
+
key?: string | undefined;
|
|
3918
|
+
value?: string | undefined;
|
|
3919
|
+
} & {
|
|
3920
|
+
key?: string | undefined;
|
|
3921
|
+
value?: string | undefined;
|
|
3922
|
+
} & { [K in Exclude<keyof I, keyof AccountMezon_VarsEntry>]: never; }>(base?: I | undefined): AccountMezon_VarsEntry;
|
|
3923
|
+
fromPartial<I_1 extends {
|
|
3924
|
+
key?: string | undefined;
|
|
3925
|
+
value?: string | undefined;
|
|
3926
|
+
} & {
|
|
3927
|
+
key?: string | undefined;
|
|
3928
|
+
value?: string | undefined;
|
|
3929
|
+
} & { [K_1 in Exclude<keyof I_1, keyof AccountMezon_VarsEntry>]: never; }>(object: I_1): AccountMezon_VarsEntry;
|
|
3930
|
+
};
|
|
3836
3931
|
export declare const AccountSteam: {
|
|
3837
3932
|
encode(message: AccountSteam, writer?: _m0.Writer): _m0.Writer;
|
|
3838
3933
|
decode(input: _m0.Reader | Uint8Array, length?: number): AccountSteam;
|
|
@@ -4063,64 +4158,6 @@ export declare const AuthenticateAppleRequest: {
|
|
|
4063
4158
|
username?: string | undefined;
|
|
4064
4159
|
} & { [K_5 in Exclude<keyof I_1, keyof AuthenticateAppleRequest>]: never; }>(object: I_1): AuthenticateAppleRequest;
|
|
4065
4160
|
};
|
|
4066
|
-
export declare const AuthenticateCustomRequest: {
|
|
4067
|
-
encode(message: AuthenticateCustomRequest, writer?: _m0.Writer): _m0.Writer;
|
|
4068
|
-
decode(input: _m0.Reader | Uint8Array, length?: number): AuthenticateCustomRequest;
|
|
4069
|
-
fromJSON(object: any): AuthenticateCustomRequest;
|
|
4070
|
-
toJSON(message: AuthenticateCustomRequest): unknown;
|
|
4071
|
-
create<I extends {
|
|
4072
|
-
account?: {
|
|
4073
|
-
id?: string | undefined;
|
|
4074
|
-
vars?: {
|
|
4075
|
-
[x: string]: string | undefined;
|
|
4076
|
-
} | undefined;
|
|
4077
|
-
} | undefined;
|
|
4078
|
-
create?: boolean | undefined;
|
|
4079
|
-
username?: string | undefined;
|
|
4080
|
-
} & {
|
|
4081
|
-
account?: ({
|
|
4082
|
-
id?: string | undefined;
|
|
4083
|
-
vars?: {
|
|
4084
|
-
[x: string]: string | undefined;
|
|
4085
|
-
} | undefined;
|
|
4086
|
-
} & {
|
|
4087
|
-
id?: string | undefined;
|
|
4088
|
-
vars?: ({
|
|
4089
|
-
[x: string]: string | undefined;
|
|
4090
|
-
} & {
|
|
4091
|
-
[x: string]: string | undefined;
|
|
4092
|
-
} & { [K in Exclude<keyof I["account"]["vars"], string | number>]: never; }) | undefined;
|
|
4093
|
-
} & { [K_1 in Exclude<keyof I["account"], keyof AccountCustom>]: never; }) | undefined;
|
|
4094
|
-
create?: boolean | undefined;
|
|
4095
|
-
username?: string | undefined;
|
|
4096
|
-
} & { [K_2 in Exclude<keyof I, keyof AuthenticateCustomRequest>]: never; }>(base?: I | undefined): AuthenticateCustomRequest;
|
|
4097
|
-
fromPartial<I_1 extends {
|
|
4098
|
-
account?: {
|
|
4099
|
-
id?: string | undefined;
|
|
4100
|
-
vars?: {
|
|
4101
|
-
[x: string]: string | undefined;
|
|
4102
|
-
} | undefined;
|
|
4103
|
-
} | undefined;
|
|
4104
|
-
create?: boolean | undefined;
|
|
4105
|
-
username?: string | undefined;
|
|
4106
|
-
} & {
|
|
4107
|
-
account?: ({
|
|
4108
|
-
id?: string | undefined;
|
|
4109
|
-
vars?: {
|
|
4110
|
-
[x: string]: string | undefined;
|
|
4111
|
-
} | undefined;
|
|
4112
|
-
} & {
|
|
4113
|
-
id?: string | undefined;
|
|
4114
|
-
vars?: ({
|
|
4115
|
-
[x: string]: string | undefined;
|
|
4116
|
-
} & {
|
|
4117
|
-
[x: string]: string | undefined;
|
|
4118
|
-
} & { [K_3 in Exclude<keyof I_1["account"]["vars"], string | number>]: never; }) | undefined;
|
|
4119
|
-
} & { [K_4 in Exclude<keyof I_1["account"], keyof AccountCustom>]: never; }) | undefined;
|
|
4120
|
-
create?: boolean | undefined;
|
|
4121
|
-
username?: string | undefined;
|
|
4122
|
-
} & { [K_5 in Exclude<keyof I_1, keyof AuthenticateCustomRequest>]: never; }>(object: I_1): AuthenticateCustomRequest;
|
|
4123
|
-
};
|
|
4124
4161
|
export declare const AuthenticateDeviceRequest: {
|
|
4125
4162
|
encode(message: AuthenticateDeviceRequest, writer?: _m0.Writer): _m0.Writer;
|
|
4126
4163
|
decode(input: _m0.Reader | Uint8Array, length?: number): AuthenticateDeviceRequest;
|
|
@@ -4525,11 +4562,11 @@ export declare const AuthenticateGoogleRequest: {
|
|
|
4525
4562
|
username?: string | undefined;
|
|
4526
4563
|
} & { [K_5 in Exclude<keyof I_1, keyof AuthenticateGoogleRequest>]: never; }>(object: I_1): AuthenticateGoogleRequest;
|
|
4527
4564
|
};
|
|
4528
|
-
export declare const
|
|
4529
|
-
encode(message:
|
|
4530
|
-
decode(input: _m0.Reader | Uint8Array, length?: number):
|
|
4531
|
-
fromJSON(object: any):
|
|
4532
|
-
toJSON(message:
|
|
4565
|
+
export declare const AuthenticateMezonRequest: {
|
|
4566
|
+
encode(message: AuthenticateMezonRequest, writer?: _m0.Writer): _m0.Writer;
|
|
4567
|
+
decode(input: _m0.Reader | Uint8Array, length?: number): AuthenticateMezonRequest;
|
|
4568
|
+
fromJSON(object: any): AuthenticateMezonRequest;
|
|
4569
|
+
toJSON(message: AuthenticateMezonRequest): unknown;
|
|
4533
4570
|
create<I extends {
|
|
4534
4571
|
account?: {
|
|
4535
4572
|
token?: string | undefined;
|
|
@@ -4539,7 +4576,6 @@ export declare const AuthenticateSteamRequest: {
|
|
|
4539
4576
|
} | undefined;
|
|
4540
4577
|
create?: boolean | undefined;
|
|
4541
4578
|
username?: string | undefined;
|
|
4542
|
-
sync?: boolean | undefined;
|
|
4543
4579
|
} & {
|
|
4544
4580
|
account?: ({
|
|
4545
4581
|
token?: string | undefined;
|
|
@@ -4553,11 +4589,10 @@ export declare const AuthenticateSteamRequest: {
|
|
|
4553
4589
|
} & {
|
|
4554
4590
|
[x: string]: string | undefined;
|
|
4555
4591
|
} & { [K in Exclude<keyof I["account"]["vars"], string | number>]: never; }) | undefined;
|
|
4556
|
-
} & { [K_1 in Exclude<keyof I["account"], keyof
|
|
4592
|
+
} & { [K_1 in Exclude<keyof I["account"], keyof AccountMezon>]: never; }) | undefined;
|
|
4557
4593
|
create?: boolean | undefined;
|
|
4558
4594
|
username?: string | undefined;
|
|
4559
|
-
|
|
4560
|
-
} & { [K_2 in Exclude<keyof I, keyof AuthenticateSteamRequest>]: never; }>(base?: I | undefined): AuthenticateSteamRequest;
|
|
4595
|
+
} & { [K_2 in Exclude<keyof I, keyof AuthenticateMezonRequest>]: never; }>(base?: I | undefined): AuthenticateMezonRequest;
|
|
4561
4596
|
fromPartial<I_1 extends {
|
|
4562
4597
|
account?: {
|
|
4563
4598
|
token?: string | undefined;
|
|
@@ -4567,7 +4602,6 @@ export declare const AuthenticateSteamRequest: {
|
|
|
4567
4602
|
} | undefined;
|
|
4568
4603
|
create?: boolean | undefined;
|
|
4569
4604
|
username?: string | undefined;
|
|
4570
|
-
sync?: boolean | undefined;
|
|
4571
4605
|
} & {
|
|
4572
4606
|
account?: ({
|
|
4573
4607
|
token?: string | undefined;
|
|
@@ -4581,26 +4615,87 @@ export declare const AuthenticateSteamRequest: {
|
|
|
4581
4615
|
} & {
|
|
4582
4616
|
[x: string]: string | undefined;
|
|
4583
4617
|
} & { [K_3 in Exclude<keyof I_1["account"]["vars"], string | number>]: never; }) | undefined;
|
|
4584
|
-
} & { [K_4 in Exclude<keyof I_1["account"], keyof
|
|
4618
|
+
} & { [K_4 in Exclude<keyof I_1["account"], keyof AccountMezon>]: never; }) | undefined;
|
|
4585
4619
|
create?: boolean | undefined;
|
|
4586
4620
|
username?: string | undefined;
|
|
4587
|
-
|
|
4588
|
-
} & { [K_5 in Exclude<keyof I_1, keyof AuthenticateSteamRequest>]: never; }>(object: I_1): AuthenticateSteamRequest;
|
|
4621
|
+
} & { [K_5 in Exclude<keyof I_1, keyof AuthenticateMezonRequest>]: never; }>(object: I_1): AuthenticateMezonRequest;
|
|
4589
4622
|
};
|
|
4590
|
-
export declare const
|
|
4591
|
-
encode(message:
|
|
4592
|
-
decode(input: _m0.Reader | Uint8Array, length?: number):
|
|
4593
|
-
fromJSON(object: any):
|
|
4594
|
-
toJSON(message:
|
|
4623
|
+
export declare const AuthenticateSteamRequest: {
|
|
4624
|
+
encode(message: AuthenticateSteamRequest, writer?: _m0.Writer): _m0.Writer;
|
|
4625
|
+
decode(input: _m0.Reader | Uint8Array, length?: number): AuthenticateSteamRequest;
|
|
4626
|
+
fromJSON(object: any): AuthenticateSteamRequest;
|
|
4627
|
+
toJSON(message: AuthenticateSteamRequest): unknown;
|
|
4595
4628
|
create<I extends {
|
|
4596
|
-
|
|
4597
|
-
|
|
4629
|
+
account?: {
|
|
4630
|
+
token?: string | undefined;
|
|
4631
|
+
vars?: {
|
|
4632
|
+
[x: string]: string | undefined;
|
|
4633
|
+
} | undefined;
|
|
4634
|
+
} | undefined;
|
|
4635
|
+
create?: boolean | undefined;
|
|
4636
|
+
username?: string | undefined;
|
|
4637
|
+
sync?: boolean | undefined;
|
|
4598
4638
|
} & {
|
|
4599
|
-
|
|
4600
|
-
|
|
4601
|
-
|
|
4602
|
-
|
|
4603
|
-
|
|
4639
|
+
account?: ({
|
|
4640
|
+
token?: string | undefined;
|
|
4641
|
+
vars?: {
|
|
4642
|
+
[x: string]: string | undefined;
|
|
4643
|
+
} | undefined;
|
|
4644
|
+
} & {
|
|
4645
|
+
token?: string | undefined;
|
|
4646
|
+
vars?: ({
|
|
4647
|
+
[x: string]: string | undefined;
|
|
4648
|
+
} & {
|
|
4649
|
+
[x: string]: string | undefined;
|
|
4650
|
+
} & { [K in Exclude<keyof I["account"]["vars"], string | number>]: never; }) | undefined;
|
|
4651
|
+
} & { [K_1 in Exclude<keyof I["account"], keyof AccountSteam>]: never; }) | undefined;
|
|
4652
|
+
create?: boolean | undefined;
|
|
4653
|
+
username?: string | undefined;
|
|
4654
|
+
sync?: boolean | undefined;
|
|
4655
|
+
} & { [K_2 in Exclude<keyof I, keyof AuthenticateSteamRequest>]: never; }>(base?: I | undefined): AuthenticateSteamRequest;
|
|
4656
|
+
fromPartial<I_1 extends {
|
|
4657
|
+
account?: {
|
|
4658
|
+
token?: string | undefined;
|
|
4659
|
+
vars?: {
|
|
4660
|
+
[x: string]: string | undefined;
|
|
4661
|
+
} | undefined;
|
|
4662
|
+
} | undefined;
|
|
4663
|
+
create?: boolean | undefined;
|
|
4664
|
+
username?: string | undefined;
|
|
4665
|
+
sync?: boolean | undefined;
|
|
4666
|
+
} & {
|
|
4667
|
+
account?: ({
|
|
4668
|
+
token?: string | undefined;
|
|
4669
|
+
vars?: {
|
|
4670
|
+
[x: string]: string | undefined;
|
|
4671
|
+
} | undefined;
|
|
4672
|
+
} & {
|
|
4673
|
+
token?: string | undefined;
|
|
4674
|
+
vars?: ({
|
|
4675
|
+
[x: string]: string | undefined;
|
|
4676
|
+
} & {
|
|
4677
|
+
[x: string]: string | undefined;
|
|
4678
|
+
} & { [K_3 in Exclude<keyof I_1["account"]["vars"], string | number>]: never; }) | undefined;
|
|
4679
|
+
} & { [K_4 in Exclude<keyof I_1["account"], keyof AccountSteam>]: never; }) | undefined;
|
|
4680
|
+
create?: boolean | undefined;
|
|
4681
|
+
username?: string | undefined;
|
|
4682
|
+
sync?: boolean | undefined;
|
|
4683
|
+
} & { [K_5 in Exclude<keyof I_1, keyof AuthenticateSteamRequest>]: never; }>(object: I_1): AuthenticateSteamRequest;
|
|
4684
|
+
};
|
|
4685
|
+
export declare const BanGroupUsersRequest: {
|
|
4686
|
+
encode(message: BanGroupUsersRequest, writer?: _m0.Writer): _m0.Writer;
|
|
4687
|
+
decode(input: _m0.Reader | Uint8Array, length?: number): BanGroupUsersRequest;
|
|
4688
|
+
fromJSON(object: any): BanGroupUsersRequest;
|
|
4689
|
+
toJSON(message: BanGroupUsersRequest): unknown;
|
|
4690
|
+
create<I extends {
|
|
4691
|
+
group_id?: string | undefined;
|
|
4692
|
+
user_ids?: string[] | undefined;
|
|
4693
|
+
} & {
|
|
4694
|
+
group_id?: string | undefined;
|
|
4695
|
+
user_ids?: (string[] & string[] & { [K in Exclude<keyof I["user_ids"], keyof string[]>]: never; }) | undefined;
|
|
4696
|
+
} & { [K_1 in Exclude<keyof I, keyof BanGroupUsersRequest>]: never; }>(base?: I | undefined): BanGroupUsersRequest;
|
|
4697
|
+
fromPartial<I_1 extends {
|
|
4698
|
+
group_id?: string | undefined;
|
|
4604
4699
|
user_ids?: string[] | undefined;
|
|
4605
4700
|
} & {
|
|
4606
4701
|
group_id?: string | undefined;
|
|
@@ -4807,6 +4902,59 @@ export declare const NotificationInfo: {
|
|
|
4807
4902
|
category_name?: string | undefined;
|
|
4808
4903
|
clan_name?: string | undefined;
|
|
4809
4904
|
clan_logo?: string | undefined;
|
|
4905
|
+
channel?: {
|
|
4906
|
+
clan_id?: string | undefined;
|
|
4907
|
+
parrent_id?: string | undefined;
|
|
4908
|
+
channel_id?: string | undefined;
|
|
4909
|
+
category_id?: string | undefined;
|
|
4910
|
+
category_name?: string | undefined;
|
|
4911
|
+
type?: number | undefined;
|
|
4912
|
+
creator_id?: string | undefined;
|
|
4913
|
+
channel_label?: string | undefined;
|
|
4914
|
+
channel_private?: number | undefined;
|
|
4915
|
+
channel_avatar?: string[] | undefined;
|
|
4916
|
+
user_id?: string[] | undefined;
|
|
4917
|
+
last_sent_message?: {
|
|
4918
|
+
id?: string | undefined;
|
|
4919
|
+
timestamp_seconds?: number | undefined;
|
|
4920
|
+
sender_id?: string | undefined;
|
|
4921
|
+
content?: string | undefined;
|
|
4922
|
+
attachment?: string | undefined;
|
|
4923
|
+
referece?: string | undefined;
|
|
4924
|
+
mention?: string | undefined;
|
|
4925
|
+
reaction?: string | undefined;
|
|
4926
|
+
repliers?: string[] | undefined;
|
|
4927
|
+
} | undefined;
|
|
4928
|
+
last_seen_message?: {
|
|
4929
|
+
id?: string | undefined;
|
|
4930
|
+
timestamp_seconds?: number | undefined;
|
|
4931
|
+
sender_id?: string | undefined;
|
|
4932
|
+
content?: string | undefined;
|
|
4933
|
+
attachment?: string | undefined;
|
|
4934
|
+
referece?: string | undefined;
|
|
4935
|
+
mention?: string | undefined;
|
|
4936
|
+
reaction?: string | undefined;
|
|
4937
|
+
repliers?: string[] | undefined;
|
|
4938
|
+
} | undefined;
|
|
4939
|
+
is_online?: boolean[] | undefined;
|
|
4940
|
+
meeting_code?: string | undefined;
|
|
4941
|
+
count_mess_unread?: number | undefined;
|
|
4942
|
+
active?: number | undefined;
|
|
4943
|
+
last_pin_message?: string | undefined;
|
|
4944
|
+
usernames?: string[] | undefined;
|
|
4945
|
+
creator_name?: string | undefined;
|
|
4946
|
+
create_time_seconds?: number | undefined;
|
|
4947
|
+
update_time_seconds?: number | undefined;
|
|
4948
|
+
metadata?: string[] | undefined;
|
|
4949
|
+
about_me?: string[] | undefined;
|
|
4950
|
+
clan_name?: string | undefined;
|
|
4951
|
+
app_url?: string | undefined;
|
|
4952
|
+
is_mute?: boolean | undefined;
|
|
4953
|
+
age_restricted?: number | undefined;
|
|
4954
|
+
topic?: string | undefined;
|
|
4955
|
+
e2ee?: number | undefined;
|
|
4956
|
+
display_names?: string[] | undefined;
|
|
4957
|
+
} | undefined;
|
|
4810
4958
|
} & {
|
|
4811
4959
|
username?: string | undefined;
|
|
4812
4960
|
avatar?: string | undefined;
|
|
@@ -4818,7 +4966,132 @@ export declare const NotificationInfo: {
|
|
|
4818
4966
|
category_name?: string | undefined;
|
|
4819
4967
|
clan_name?: string | undefined;
|
|
4820
4968
|
clan_logo?: string | undefined;
|
|
4821
|
-
|
|
4969
|
+
channel?: ({
|
|
4970
|
+
clan_id?: string | undefined;
|
|
4971
|
+
parrent_id?: string | undefined;
|
|
4972
|
+
channel_id?: string | undefined;
|
|
4973
|
+
category_id?: string | undefined;
|
|
4974
|
+
category_name?: string | undefined;
|
|
4975
|
+
type?: number | undefined;
|
|
4976
|
+
creator_id?: string | undefined;
|
|
4977
|
+
channel_label?: string | undefined;
|
|
4978
|
+
channel_private?: number | undefined;
|
|
4979
|
+
channel_avatar?: string[] | undefined;
|
|
4980
|
+
user_id?: string[] | undefined;
|
|
4981
|
+
last_sent_message?: {
|
|
4982
|
+
id?: string | undefined;
|
|
4983
|
+
timestamp_seconds?: number | undefined;
|
|
4984
|
+
sender_id?: string | undefined;
|
|
4985
|
+
content?: string | undefined;
|
|
4986
|
+
attachment?: string | undefined;
|
|
4987
|
+
referece?: string | undefined;
|
|
4988
|
+
mention?: string | undefined;
|
|
4989
|
+
reaction?: string | undefined;
|
|
4990
|
+
repliers?: string[] | undefined;
|
|
4991
|
+
} | undefined;
|
|
4992
|
+
last_seen_message?: {
|
|
4993
|
+
id?: string | undefined;
|
|
4994
|
+
timestamp_seconds?: number | undefined;
|
|
4995
|
+
sender_id?: string | undefined;
|
|
4996
|
+
content?: string | undefined;
|
|
4997
|
+
attachment?: string | undefined;
|
|
4998
|
+
referece?: string | undefined;
|
|
4999
|
+
mention?: string | undefined;
|
|
5000
|
+
reaction?: string | undefined;
|
|
5001
|
+
repliers?: string[] | undefined;
|
|
5002
|
+
} | undefined;
|
|
5003
|
+
is_online?: boolean[] | undefined;
|
|
5004
|
+
meeting_code?: string | undefined;
|
|
5005
|
+
count_mess_unread?: number | undefined;
|
|
5006
|
+
active?: number | undefined;
|
|
5007
|
+
last_pin_message?: string | undefined;
|
|
5008
|
+
usernames?: string[] | undefined;
|
|
5009
|
+
creator_name?: string | undefined;
|
|
5010
|
+
create_time_seconds?: number | undefined;
|
|
5011
|
+
update_time_seconds?: number | undefined;
|
|
5012
|
+
metadata?: string[] | undefined;
|
|
5013
|
+
about_me?: string[] | undefined;
|
|
5014
|
+
clan_name?: string | undefined;
|
|
5015
|
+
app_url?: string | undefined;
|
|
5016
|
+
is_mute?: boolean | undefined;
|
|
5017
|
+
age_restricted?: number | undefined;
|
|
5018
|
+
topic?: string | undefined;
|
|
5019
|
+
e2ee?: number | undefined;
|
|
5020
|
+
display_names?: string[] | undefined;
|
|
5021
|
+
} & {
|
|
5022
|
+
clan_id?: string | undefined;
|
|
5023
|
+
parrent_id?: string | undefined;
|
|
5024
|
+
channel_id?: string | undefined;
|
|
5025
|
+
category_id?: string | undefined;
|
|
5026
|
+
category_name?: string | undefined;
|
|
5027
|
+
type?: number | undefined;
|
|
5028
|
+
creator_id?: string | undefined;
|
|
5029
|
+
channel_label?: string | undefined;
|
|
5030
|
+
channel_private?: number | undefined;
|
|
5031
|
+
channel_avatar?: (string[] & string[] & { [K in Exclude<keyof I["channel"]["channel_avatar"], keyof string[]>]: never; }) | undefined;
|
|
5032
|
+
user_id?: (string[] & string[] & { [K_1 in Exclude<keyof I["channel"]["user_id"], keyof string[]>]: never; }) | undefined;
|
|
5033
|
+
last_sent_message?: ({
|
|
5034
|
+
id?: string | undefined;
|
|
5035
|
+
timestamp_seconds?: number | undefined;
|
|
5036
|
+
sender_id?: string | undefined;
|
|
5037
|
+
content?: string | undefined;
|
|
5038
|
+
attachment?: string | undefined;
|
|
5039
|
+
referece?: string | undefined;
|
|
5040
|
+
mention?: string | undefined;
|
|
5041
|
+
reaction?: string | undefined;
|
|
5042
|
+
repliers?: string[] | undefined;
|
|
5043
|
+
} & {
|
|
5044
|
+
id?: string | undefined;
|
|
5045
|
+
timestamp_seconds?: number | undefined;
|
|
5046
|
+
sender_id?: string | undefined;
|
|
5047
|
+
content?: string | undefined;
|
|
5048
|
+
attachment?: string | undefined;
|
|
5049
|
+
referece?: string | undefined;
|
|
5050
|
+
mention?: string | undefined;
|
|
5051
|
+
reaction?: string | undefined;
|
|
5052
|
+
repliers?: (string[] & string[] & { [K_2 in Exclude<keyof I["channel"]["last_sent_message"]["repliers"], keyof string[]>]: never; }) | undefined;
|
|
5053
|
+
} & { [K_3 in Exclude<keyof I["channel"]["last_sent_message"], keyof ChannelMessageHeader>]: never; }) | undefined;
|
|
5054
|
+
last_seen_message?: ({
|
|
5055
|
+
id?: string | undefined;
|
|
5056
|
+
timestamp_seconds?: number | undefined;
|
|
5057
|
+
sender_id?: string | undefined;
|
|
5058
|
+
content?: string | undefined;
|
|
5059
|
+
attachment?: string | undefined;
|
|
5060
|
+
referece?: string | undefined;
|
|
5061
|
+
mention?: string | undefined;
|
|
5062
|
+
reaction?: string | undefined;
|
|
5063
|
+
repliers?: string[] | undefined;
|
|
5064
|
+
} & {
|
|
5065
|
+
id?: string | undefined;
|
|
5066
|
+
timestamp_seconds?: number | undefined;
|
|
5067
|
+
sender_id?: string | undefined;
|
|
5068
|
+
content?: string | undefined;
|
|
5069
|
+
attachment?: string | undefined;
|
|
5070
|
+
referece?: string | undefined;
|
|
5071
|
+
mention?: string | undefined;
|
|
5072
|
+
reaction?: string | undefined;
|
|
5073
|
+
repliers?: (string[] & string[] & { [K_4 in Exclude<keyof I["channel"]["last_seen_message"]["repliers"], keyof string[]>]: never; }) | undefined;
|
|
5074
|
+
} & { [K_5 in Exclude<keyof I["channel"]["last_seen_message"], keyof ChannelMessageHeader>]: never; }) | undefined;
|
|
5075
|
+
is_online?: (boolean[] & boolean[] & { [K_6 in Exclude<keyof I["channel"]["is_online"], keyof boolean[]>]: never; }) | undefined;
|
|
5076
|
+
meeting_code?: string | undefined;
|
|
5077
|
+
count_mess_unread?: number | undefined;
|
|
5078
|
+
active?: number | undefined;
|
|
5079
|
+
last_pin_message?: string | undefined;
|
|
5080
|
+
usernames?: (string[] & string[] & { [K_7 in Exclude<keyof I["channel"]["usernames"], keyof string[]>]: never; }) | undefined;
|
|
5081
|
+
creator_name?: string | undefined;
|
|
5082
|
+
create_time_seconds?: number | undefined;
|
|
5083
|
+
update_time_seconds?: number | undefined;
|
|
5084
|
+
metadata?: (string[] & string[] & { [K_8 in Exclude<keyof I["channel"]["metadata"], keyof string[]>]: never; }) | undefined;
|
|
5085
|
+
about_me?: (string[] & string[] & { [K_9 in Exclude<keyof I["channel"]["about_me"], keyof string[]>]: never; }) | undefined;
|
|
5086
|
+
clan_name?: string | undefined;
|
|
5087
|
+
app_url?: string | undefined;
|
|
5088
|
+
is_mute?: boolean | undefined;
|
|
5089
|
+
age_restricted?: number | undefined;
|
|
5090
|
+
topic?: string | undefined;
|
|
5091
|
+
e2ee?: number | undefined;
|
|
5092
|
+
display_names?: (string[] & string[] & { [K_10 in Exclude<keyof I["channel"]["display_names"], keyof string[]>]: never; }) | undefined;
|
|
5093
|
+
} & { [K_11 in Exclude<keyof I["channel"], keyof ChannelDescription>]: never; }) | undefined;
|
|
5094
|
+
} & { [K_12 in Exclude<keyof I, keyof NotificationInfo>]: never; }>(base?: I | undefined): NotificationInfo;
|
|
4822
5095
|
fromPartial<I_1 extends {
|
|
4823
5096
|
username?: string | undefined;
|
|
4824
5097
|
avatar?: string | undefined;
|
|
@@ -4830,43 +5103,221 @@ export declare const NotificationInfo: {
|
|
|
4830
5103
|
category_name?: string | undefined;
|
|
4831
5104
|
clan_name?: string | undefined;
|
|
4832
5105
|
clan_logo?: string | undefined;
|
|
4833
|
-
|
|
4834
|
-
|
|
4835
|
-
|
|
4836
|
-
|
|
4837
|
-
|
|
4838
|
-
|
|
4839
|
-
|
|
4840
|
-
|
|
4841
|
-
|
|
4842
|
-
|
|
4843
|
-
|
|
4844
|
-
|
|
4845
|
-
|
|
4846
|
-
|
|
4847
|
-
|
|
4848
|
-
|
|
4849
|
-
|
|
4850
|
-
|
|
4851
|
-
|
|
4852
|
-
|
|
4853
|
-
|
|
4854
|
-
|
|
4855
|
-
|
|
4856
|
-
|
|
4857
|
-
|
|
4858
|
-
|
|
4859
|
-
|
|
4860
|
-
|
|
4861
|
-
|
|
4862
|
-
|
|
4863
|
-
|
|
4864
|
-
|
|
4865
|
-
|
|
4866
|
-
|
|
4867
|
-
|
|
4868
|
-
|
|
4869
|
-
|
|
5106
|
+
channel?: {
|
|
5107
|
+
clan_id?: string | undefined;
|
|
5108
|
+
parrent_id?: string | undefined;
|
|
5109
|
+
channel_id?: string | undefined;
|
|
5110
|
+
category_id?: string | undefined;
|
|
5111
|
+
category_name?: string | undefined;
|
|
5112
|
+
type?: number | undefined;
|
|
5113
|
+
creator_id?: string | undefined;
|
|
5114
|
+
channel_label?: string | undefined;
|
|
5115
|
+
channel_private?: number | undefined;
|
|
5116
|
+
channel_avatar?: string[] | undefined;
|
|
5117
|
+
user_id?: string[] | undefined;
|
|
5118
|
+
last_sent_message?: {
|
|
5119
|
+
id?: string | undefined;
|
|
5120
|
+
timestamp_seconds?: number | undefined;
|
|
5121
|
+
sender_id?: string | undefined;
|
|
5122
|
+
content?: string | undefined;
|
|
5123
|
+
attachment?: string | undefined;
|
|
5124
|
+
referece?: string | undefined;
|
|
5125
|
+
mention?: string | undefined;
|
|
5126
|
+
reaction?: string | undefined;
|
|
5127
|
+
repliers?: string[] | undefined;
|
|
5128
|
+
} | undefined;
|
|
5129
|
+
last_seen_message?: {
|
|
5130
|
+
id?: string | undefined;
|
|
5131
|
+
timestamp_seconds?: number | undefined;
|
|
5132
|
+
sender_id?: string | undefined;
|
|
5133
|
+
content?: string | undefined;
|
|
5134
|
+
attachment?: string | undefined;
|
|
5135
|
+
referece?: string | undefined;
|
|
5136
|
+
mention?: string | undefined;
|
|
5137
|
+
reaction?: string | undefined;
|
|
5138
|
+
repliers?: string[] | undefined;
|
|
5139
|
+
} | undefined;
|
|
5140
|
+
is_online?: boolean[] | undefined;
|
|
5141
|
+
meeting_code?: string | undefined;
|
|
5142
|
+
count_mess_unread?: number | undefined;
|
|
5143
|
+
active?: number | undefined;
|
|
5144
|
+
last_pin_message?: string | undefined;
|
|
5145
|
+
usernames?: string[] | undefined;
|
|
5146
|
+
creator_name?: string | undefined;
|
|
5147
|
+
create_time_seconds?: number | undefined;
|
|
5148
|
+
update_time_seconds?: number | undefined;
|
|
5149
|
+
metadata?: string[] | undefined;
|
|
5150
|
+
about_me?: string[] | undefined;
|
|
5151
|
+
clan_name?: string | undefined;
|
|
5152
|
+
app_url?: string | undefined;
|
|
5153
|
+
is_mute?: boolean | undefined;
|
|
5154
|
+
age_restricted?: number | undefined;
|
|
5155
|
+
topic?: string | undefined;
|
|
5156
|
+
e2ee?: number | undefined;
|
|
5157
|
+
display_names?: string[] | undefined;
|
|
5158
|
+
} | undefined;
|
|
5159
|
+
} & {
|
|
5160
|
+
username?: string | undefined;
|
|
5161
|
+
avatar?: string | undefined;
|
|
5162
|
+
clan_nick?: string | undefined;
|
|
5163
|
+
clan_avatar?: string | undefined;
|
|
5164
|
+
display_name?: string | undefined;
|
|
5165
|
+
channel_label?: string | undefined;
|
|
5166
|
+
channel_type?: number | undefined;
|
|
5167
|
+
category_name?: string | undefined;
|
|
5168
|
+
clan_name?: string | undefined;
|
|
5169
|
+
clan_logo?: string | undefined;
|
|
5170
|
+
channel?: ({
|
|
5171
|
+
clan_id?: string | undefined;
|
|
5172
|
+
parrent_id?: string | undefined;
|
|
5173
|
+
channel_id?: string | undefined;
|
|
5174
|
+
category_id?: string | undefined;
|
|
5175
|
+
category_name?: string | undefined;
|
|
5176
|
+
type?: number | undefined;
|
|
5177
|
+
creator_id?: string | undefined;
|
|
5178
|
+
channel_label?: string | undefined;
|
|
5179
|
+
channel_private?: number | undefined;
|
|
5180
|
+
channel_avatar?: string[] | undefined;
|
|
5181
|
+
user_id?: string[] | undefined;
|
|
5182
|
+
last_sent_message?: {
|
|
5183
|
+
id?: string | undefined;
|
|
5184
|
+
timestamp_seconds?: number | undefined;
|
|
5185
|
+
sender_id?: string | undefined;
|
|
5186
|
+
content?: string | undefined;
|
|
5187
|
+
attachment?: string | undefined;
|
|
5188
|
+
referece?: string | undefined;
|
|
5189
|
+
mention?: string | undefined;
|
|
5190
|
+
reaction?: string | undefined;
|
|
5191
|
+
repliers?: string[] | undefined;
|
|
5192
|
+
} | undefined;
|
|
5193
|
+
last_seen_message?: {
|
|
5194
|
+
id?: string | undefined;
|
|
5195
|
+
timestamp_seconds?: number | undefined;
|
|
5196
|
+
sender_id?: string | undefined;
|
|
5197
|
+
content?: string | undefined;
|
|
5198
|
+
attachment?: string | undefined;
|
|
5199
|
+
referece?: string | undefined;
|
|
5200
|
+
mention?: string | undefined;
|
|
5201
|
+
reaction?: string | undefined;
|
|
5202
|
+
repliers?: string[] | undefined;
|
|
5203
|
+
} | undefined;
|
|
5204
|
+
is_online?: boolean[] | undefined;
|
|
5205
|
+
meeting_code?: string | undefined;
|
|
5206
|
+
count_mess_unread?: number | undefined;
|
|
5207
|
+
active?: number | undefined;
|
|
5208
|
+
last_pin_message?: string | undefined;
|
|
5209
|
+
usernames?: string[] | undefined;
|
|
5210
|
+
creator_name?: string | undefined;
|
|
5211
|
+
create_time_seconds?: number | undefined;
|
|
5212
|
+
update_time_seconds?: number | undefined;
|
|
5213
|
+
metadata?: string[] | undefined;
|
|
5214
|
+
about_me?: string[] | undefined;
|
|
5215
|
+
clan_name?: string | undefined;
|
|
5216
|
+
app_url?: string | undefined;
|
|
5217
|
+
is_mute?: boolean | undefined;
|
|
5218
|
+
age_restricted?: number | undefined;
|
|
5219
|
+
topic?: string | undefined;
|
|
5220
|
+
e2ee?: number | undefined;
|
|
5221
|
+
display_names?: string[] | undefined;
|
|
5222
|
+
} & {
|
|
5223
|
+
clan_id?: string | undefined;
|
|
5224
|
+
parrent_id?: string | undefined;
|
|
5225
|
+
channel_id?: string | undefined;
|
|
5226
|
+
category_id?: string | undefined;
|
|
5227
|
+
category_name?: string | undefined;
|
|
5228
|
+
type?: number | undefined;
|
|
5229
|
+
creator_id?: string | undefined;
|
|
5230
|
+
channel_label?: string | undefined;
|
|
5231
|
+
channel_private?: number | undefined;
|
|
5232
|
+
channel_avatar?: (string[] & string[] & { [K_13 in Exclude<keyof I_1["channel"]["channel_avatar"], keyof string[]>]: never; }) | undefined;
|
|
5233
|
+
user_id?: (string[] & string[] & { [K_14 in Exclude<keyof I_1["channel"]["user_id"], keyof string[]>]: never; }) | undefined;
|
|
5234
|
+
last_sent_message?: ({
|
|
5235
|
+
id?: string | undefined;
|
|
5236
|
+
timestamp_seconds?: number | undefined;
|
|
5237
|
+
sender_id?: string | undefined;
|
|
5238
|
+
content?: string | undefined;
|
|
5239
|
+
attachment?: string | undefined;
|
|
5240
|
+
referece?: string | undefined;
|
|
5241
|
+
mention?: string | undefined;
|
|
5242
|
+
reaction?: string | undefined;
|
|
5243
|
+
repliers?: string[] | undefined;
|
|
5244
|
+
} & {
|
|
5245
|
+
id?: string | undefined;
|
|
5246
|
+
timestamp_seconds?: number | undefined;
|
|
5247
|
+
sender_id?: string | undefined;
|
|
5248
|
+
content?: string | undefined;
|
|
5249
|
+
attachment?: string | undefined;
|
|
5250
|
+
referece?: string | undefined;
|
|
5251
|
+
mention?: string | undefined;
|
|
5252
|
+
reaction?: string | undefined;
|
|
5253
|
+
repliers?: (string[] & string[] & { [K_15 in Exclude<keyof I_1["channel"]["last_sent_message"]["repliers"], keyof string[]>]: never; }) | undefined;
|
|
5254
|
+
} & { [K_16 in Exclude<keyof I_1["channel"]["last_sent_message"], keyof ChannelMessageHeader>]: never; }) | undefined;
|
|
5255
|
+
last_seen_message?: ({
|
|
5256
|
+
id?: string | undefined;
|
|
5257
|
+
timestamp_seconds?: number | undefined;
|
|
5258
|
+
sender_id?: string | undefined;
|
|
5259
|
+
content?: string | undefined;
|
|
5260
|
+
attachment?: string | undefined;
|
|
5261
|
+
referece?: string | undefined;
|
|
5262
|
+
mention?: string | undefined;
|
|
5263
|
+
reaction?: string | undefined;
|
|
5264
|
+
repliers?: string[] | undefined;
|
|
5265
|
+
} & {
|
|
5266
|
+
id?: string | undefined;
|
|
5267
|
+
timestamp_seconds?: number | undefined;
|
|
5268
|
+
sender_id?: string | undefined;
|
|
5269
|
+
content?: string | undefined;
|
|
5270
|
+
attachment?: string | undefined;
|
|
5271
|
+
referece?: string | undefined;
|
|
5272
|
+
mention?: string | undefined;
|
|
5273
|
+
reaction?: string | undefined;
|
|
5274
|
+
repliers?: (string[] & string[] & { [K_17 in Exclude<keyof I_1["channel"]["last_seen_message"]["repliers"], keyof string[]>]: never; }) | undefined;
|
|
5275
|
+
} & { [K_18 in Exclude<keyof I_1["channel"]["last_seen_message"], keyof ChannelMessageHeader>]: never; }) | undefined;
|
|
5276
|
+
is_online?: (boolean[] & boolean[] & { [K_19 in Exclude<keyof I_1["channel"]["is_online"], keyof boolean[]>]: never; }) | undefined;
|
|
5277
|
+
meeting_code?: string | undefined;
|
|
5278
|
+
count_mess_unread?: number | undefined;
|
|
5279
|
+
active?: number | undefined;
|
|
5280
|
+
last_pin_message?: string | undefined;
|
|
5281
|
+
usernames?: (string[] & string[] & { [K_20 in Exclude<keyof I_1["channel"]["usernames"], keyof string[]>]: never; }) | undefined;
|
|
5282
|
+
creator_name?: string | undefined;
|
|
5283
|
+
create_time_seconds?: number | undefined;
|
|
5284
|
+
update_time_seconds?: number | undefined;
|
|
5285
|
+
metadata?: (string[] & string[] & { [K_21 in Exclude<keyof I_1["channel"]["metadata"], keyof string[]>]: never; }) | undefined;
|
|
5286
|
+
about_me?: (string[] & string[] & { [K_22 in Exclude<keyof I_1["channel"]["about_me"], keyof string[]>]: never; }) | undefined;
|
|
5287
|
+
clan_name?: string | undefined;
|
|
5288
|
+
app_url?: string | undefined;
|
|
5289
|
+
is_mute?: boolean | undefined;
|
|
5290
|
+
age_restricted?: number | undefined;
|
|
5291
|
+
topic?: string | undefined;
|
|
5292
|
+
e2ee?: number | undefined;
|
|
5293
|
+
display_names?: (string[] & string[] & { [K_23 in Exclude<keyof I_1["channel"]["display_names"], keyof string[]>]: never; }) | undefined;
|
|
5294
|
+
} & { [K_24 in Exclude<keyof I_1["channel"], keyof ChannelDescription>]: never; }) | undefined;
|
|
5295
|
+
} & { [K_25 in Exclude<keyof I_1, keyof NotificationInfo>]: never; }>(object: I_1): NotificationInfo;
|
|
5296
|
+
};
|
|
5297
|
+
export declare const MessageReaction: {
|
|
5298
|
+
encode(message: MessageReaction, writer?: _m0.Writer): _m0.Writer;
|
|
5299
|
+
decode(input: _m0.Reader | Uint8Array, length?: number): MessageReaction;
|
|
5300
|
+
fromJSON(object: any): MessageReaction;
|
|
5301
|
+
toJSON(message: MessageReaction): unknown;
|
|
5302
|
+
create<I extends {
|
|
5303
|
+
id?: string | undefined;
|
|
5304
|
+
emoji_id?: string | undefined;
|
|
5305
|
+
emoji?: string | undefined;
|
|
5306
|
+
sender_id?: string | undefined;
|
|
5307
|
+
sender_name?: string | undefined;
|
|
5308
|
+
sender_avatar?: string | undefined;
|
|
5309
|
+
action?: boolean | undefined;
|
|
5310
|
+
count?: number | undefined;
|
|
5311
|
+
channel_id?: string | undefined;
|
|
5312
|
+
message_id?: string | undefined;
|
|
5313
|
+
clan_id?: string | undefined;
|
|
5314
|
+
mode?: number | undefined;
|
|
5315
|
+
message_sender_id?: string | undefined;
|
|
5316
|
+
is_public?: boolean | undefined;
|
|
5317
|
+
topic_id?: string | undefined;
|
|
5318
|
+
} & {
|
|
5319
|
+
id?: string | undefined;
|
|
5320
|
+
emoji_id?: string | undefined;
|
|
4870
5321
|
emoji?: string | undefined;
|
|
4871
5322
|
sender_id?: string | undefined;
|
|
4872
5323
|
sender_name?: string | undefined;
|
|
@@ -8284,6 +8735,59 @@ export declare const Notification: {
|
|
|
8284
8735
|
channel_id?: string | undefined;
|
|
8285
8736
|
channel_type?: number | undefined;
|
|
8286
8737
|
avatar_url?: string | undefined;
|
|
8738
|
+
channel?: {
|
|
8739
|
+
clan_id?: string | undefined;
|
|
8740
|
+
parrent_id?: string | undefined;
|
|
8741
|
+
channel_id?: string | undefined;
|
|
8742
|
+
category_id?: string | undefined;
|
|
8743
|
+
category_name?: string | undefined;
|
|
8744
|
+
type?: number | undefined;
|
|
8745
|
+
creator_id?: string | undefined;
|
|
8746
|
+
channel_label?: string | undefined;
|
|
8747
|
+
channel_private?: number | undefined;
|
|
8748
|
+
channel_avatar?: string[] | undefined;
|
|
8749
|
+
user_id?: string[] | undefined;
|
|
8750
|
+
last_sent_message?: {
|
|
8751
|
+
id?: string | undefined;
|
|
8752
|
+
timestamp_seconds?: number | undefined;
|
|
8753
|
+
sender_id?: string | undefined;
|
|
8754
|
+
content?: string | undefined;
|
|
8755
|
+
attachment?: string | undefined;
|
|
8756
|
+
referece?: string | undefined;
|
|
8757
|
+
mention?: string | undefined;
|
|
8758
|
+
reaction?: string | undefined;
|
|
8759
|
+
repliers?: string[] | undefined;
|
|
8760
|
+
} | undefined;
|
|
8761
|
+
last_seen_message?: {
|
|
8762
|
+
id?: string | undefined;
|
|
8763
|
+
timestamp_seconds?: number | undefined;
|
|
8764
|
+
sender_id?: string | undefined;
|
|
8765
|
+
content?: string | undefined;
|
|
8766
|
+
attachment?: string | undefined;
|
|
8767
|
+
referece?: string | undefined;
|
|
8768
|
+
mention?: string | undefined;
|
|
8769
|
+
reaction?: string | undefined;
|
|
8770
|
+
repliers?: string[] | undefined;
|
|
8771
|
+
} | undefined;
|
|
8772
|
+
is_online?: boolean[] | undefined;
|
|
8773
|
+
meeting_code?: string | undefined;
|
|
8774
|
+
count_mess_unread?: number | undefined;
|
|
8775
|
+
active?: number | undefined;
|
|
8776
|
+
last_pin_message?: string | undefined;
|
|
8777
|
+
usernames?: string[] | undefined;
|
|
8778
|
+
creator_name?: string | undefined;
|
|
8779
|
+
create_time_seconds?: number | undefined;
|
|
8780
|
+
update_time_seconds?: number | undefined;
|
|
8781
|
+
metadata?: string[] | undefined;
|
|
8782
|
+
about_me?: string[] | undefined;
|
|
8783
|
+
clan_name?: string | undefined;
|
|
8784
|
+
app_url?: string | undefined;
|
|
8785
|
+
is_mute?: boolean | undefined;
|
|
8786
|
+
age_restricted?: number | undefined;
|
|
8787
|
+
topic?: string | undefined;
|
|
8788
|
+
e2ee?: number | undefined;
|
|
8789
|
+
display_names?: string[] | undefined;
|
|
8790
|
+
} | undefined;
|
|
8287
8791
|
} & {
|
|
8288
8792
|
id?: string | undefined;
|
|
8289
8793
|
subject?: string | undefined;
|
|
@@ -8296,19 +8800,197 @@ export declare const Notification: {
|
|
|
8296
8800
|
channel_id?: string | undefined;
|
|
8297
8801
|
channel_type?: number | undefined;
|
|
8298
8802
|
avatar_url?: string | undefined;
|
|
8299
|
-
|
|
8300
|
-
|
|
8301
|
-
|
|
8302
|
-
|
|
8303
|
-
|
|
8304
|
-
|
|
8305
|
-
|
|
8306
|
-
|
|
8307
|
-
|
|
8308
|
-
|
|
8309
|
-
|
|
8803
|
+
channel?: ({
|
|
8804
|
+
clan_id?: string | undefined;
|
|
8805
|
+
parrent_id?: string | undefined;
|
|
8806
|
+
channel_id?: string | undefined;
|
|
8807
|
+
category_id?: string | undefined;
|
|
8808
|
+
category_name?: string | undefined;
|
|
8809
|
+
type?: number | undefined;
|
|
8810
|
+
creator_id?: string | undefined;
|
|
8811
|
+
channel_label?: string | undefined;
|
|
8812
|
+
channel_private?: number | undefined;
|
|
8813
|
+
channel_avatar?: string[] | undefined;
|
|
8814
|
+
user_id?: string[] | undefined;
|
|
8815
|
+
last_sent_message?: {
|
|
8816
|
+
id?: string | undefined;
|
|
8817
|
+
timestamp_seconds?: number | undefined;
|
|
8818
|
+
sender_id?: string | undefined;
|
|
8819
|
+
content?: string | undefined;
|
|
8820
|
+
attachment?: string | undefined;
|
|
8821
|
+
referece?: string | undefined;
|
|
8822
|
+
mention?: string | undefined;
|
|
8823
|
+
reaction?: string | undefined;
|
|
8824
|
+
repliers?: string[] | undefined;
|
|
8825
|
+
} | undefined;
|
|
8826
|
+
last_seen_message?: {
|
|
8827
|
+
id?: string | undefined;
|
|
8828
|
+
timestamp_seconds?: number | undefined;
|
|
8829
|
+
sender_id?: string | undefined;
|
|
8830
|
+
content?: string | undefined;
|
|
8831
|
+
attachment?: string | undefined;
|
|
8832
|
+
referece?: string | undefined;
|
|
8833
|
+
mention?: string | undefined;
|
|
8834
|
+
reaction?: string | undefined;
|
|
8835
|
+
repliers?: string[] | undefined;
|
|
8836
|
+
} | undefined;
|
|
8837
|
+
is_online?: boolean[] | undefined;
|
|
8838
|
+
meeting_code?: string | undefined;
|
|
8839
|
+
count_mess_unread?: number | undefined;
|
|
8840
|
+
active?: number | undefined;
|
|
8841
|
+
last_pin_message?: string | undefined;
|
|
8842
|
+
usernames?: string[] | undefined;
|
|
8843
|
+
creator_name?: string | undefined;
|
|
8844
|
+
create_time_seconds?: number | undefined;
|
|
8845
|
+
update_time_seconds?: number | undefined;
|
|
8846
|
+
metadata?: string[] | undefined;
|
|
8847
|
+
about_me?: string[] | undefined;
|
|
8848
|
+
clan_name?: string | undefined;
|
|
8849
|
+
app_url?: string | undefined;
|
|
8850
|
+
is_mute?: boolean | undefined;
|
|
8851
|
+
age_restricted?: number | undefined;
|
|
8852
|
+
topic?: string | undefined;
|
|
8853
|
+
e2ee?: number | undefined;
|
|
8854
|
+
display_names?: string[] | undefined;
|
|
8855
|
+
} & {
|
|
8856
|
+
clan_id?: string | undefined;
|
|
8857
|
+
parrent_id?: string | undefined;
|
|
8858
|
+
channel_id?: string | undefined;
|
|
8859
|
+
category_id?: string | undefined;
|
|
8860
|
+
category_name?: string | undefined;
|
|
8861
|
+
type?: number | undefined;
|
|
8862
|
+
creator_id?: string | undefined;
|
|
8863
|
+
channel_label?: string | undefined;
|
|
8864
|
+
channel_private?: number | undefined;
|
|
8865
|
+
channel_avatar?: (string[] & string[] & { [K in Exclude<keyof I["channel"]["channel_avatar"], keyof string[]>]: never; }) | undefined;
|
|
8866
|
+
user_id?: (string[] & string[] & { [K_1 in Exclude<keyof I["channel"]["user_id"], keyof string[]>]: never; }) | undefined;
|
|
8867
|
+
last_sent_message?: ({
|
|
8868
|
+
id?: string | undefined;
|
|
8869
|
+
timestamp_seconds?: number | undefined;
|
|
8870
|
+
sender_id?: string | undefined;
|
|
8871
|
+
content?: string | undefined;
|
|
8872
|
+
attachment?: string | undefined;
|
|
8873
|
+
referece?: string | undefined;
|
|
8874
|
+
mention?: string | undefined;
|
|
8875
|
+
reaction?: string | undefined;
|
|
8876
|
+
repliers?: string[] | undefined;
|
|
8877
|
+
} & {
|
|
8878
|
+
id?: string | undefined;
|
|
8879
|
+
timestamp_seconds?: number | undefined;
|
|
8880
|
+
sender_id?: string | undefined;
|
|
8881
|
+
content?: string | undefined;
|
|
8882
|
+
attachment?: string | undefined;
|
|
8883
|
+
referece?: string | undefined;
|
|
8884
|
+
mention?: string | undefined;
|
|
8885
|
+
reaction?: string | undefined;
|
|
8886
|
+
repliers?: (string[] & string[] & { [K_2 in Exclude<keyof I["channel"]["last_sent_message"]["repliers"], keyof string[]>]: never; }) | undefined;
|
|
8887
|
+
} & { [K_3 in Exclude<keyof I["channel"]["last_sent_message"], keyof ChannelMessageHeader>]: never; }) | undefined;
|
|
8888
|
+
last_seen_message?: ({
|
|
8889
|
+
id?: string | undefined;
|
|
8890
|
+
timestamp_seconds?: number | undefined;
|
|
8891
|
+
sender_id?: string | undefined;
|
|
8892
|
+
content?: string | undefined;
|
|
8893
|
+
attachment?: string | undefined;
|
|
8894
|
+
referece?: string | undefined;
|
|
8895
|
+
mention?: string | undefined;
|
|
8896
|
+
reaction?: string | undefined;
|
|
8897
|
+
repliers?: string[] | undefined;
|
|
8898
|
+
} & {
|
|
8899
|
+
id?: string | undefined;
|
|
8900
|
+
timestamp_seconds?: number | undefined;
|
|
8901
|
+
sender_id?: string | undefined;
|
|
8902
|
+
content?: string | undefined;
|
|
8903
|
+
attachment?: string | undefined;
|
|
8904
|
+
referece?: string | undefined;
|
|
8905
|
+
mention?: string | undefined;
|
|
8906
|
+
reaction?: string | undefined;
|
|
8907
|
+
repliers?: (string[] & string[] & { [K_4 in Exclude<keyof I["channel"]["last_seen_message"]["repliers"], keyof string[]>]: never; }) | undefined;
|
|
8908
|
+
} & { [K_5 in Exclude<keyof I["channel"]["last_seen_message"], keyof ChannelMessageHeader>]: never; }) | undefined;
|
|
8909
|
+
is_online?: (boolean[] & boolean[] & { [K_6 in Exclude<keyof I["channel"]["is_online"], keyof boolean[]>]: never; }) | undefined;
|
|
8910
|
+
meeting_code?: string | undefined;
|
|
8911
|
+
count_mess_unread?: number | undefined;
|
|
8912
|
+
active?: number | undefined;
|
|
8913
|
+
last_pin_message?: string | undefined;
|
|
8914
|
+
usernames?: (string[] & string[] & { [K_7 in Exclude<keyof I["channel"]["usernames"], keyof string[]>]: never; }) | undefined;
|
|
8915
|
+
creator_name?: string | undefined;
|
|
8916
|
+
create_time_seconds?: number | undefined;
|
|
8917
|
+
update_time_seconds?: number | undefined;
|
|
8918
|
+
metadata?: (string[] & string[] & { [K_8 in Exclude<keyof I["channel"]["metadata"], keyof string[]>]: never; }) | undefined;
|
|
8919
|
+
about_me?: (string[] & string[] & { [K_9 in Exclude<keyof I["channel"]["about_me"], keyof string[]>]: never; }) | undefined;
|
|
8920
|
+
clan_name?: string | undefined;
|
|
8921
|
+
app_url?: string | undefined;
|
|
8922
|
+
is_mute?: boolean | undefined;
|
|
8923
|
+
age_restricted?: number | undefined;
|
|
8924
|
+
topic?: string | undefined;
|
|
8925
|
+
e2ee?: number | undefined;
|
|
8926
|
+
display_names?: (string[] & string[] & { [K_10 in Exclude<keyof I["channel"]["display_names"], keyof string[]>]: never; }) | undefined;
|
|
8927
|
+
} & { [K_11 in Exclude<keyof I["channel"], keyof ChannelDescription>]: never; }) | undefined;
|
|
8928
|
+
} & { [K_12 in Exclude<keyof I, keyof Notification>]: never; }>(base?: I | undefined): Notification;
|
|
8929
|
+
fromPartial<I_1 extends {
|
|
8930
|
+
id?: string | undefined;
|
|
8931
|
+
subject?: string | undefined;
|
|
8932
|
+
content?: string | undefined;
|
|
8933
|
+
code?: number | undefined;
|
|
8934
|
+
sender_id?: string | undefined;
|
|
8935
|
+
create_time?: Date | undefined;
|
|
8936
|
+
persistent?: boolean | undefined;
|
|
8937
|
+
clan_id?: string | undefined;
|
|
8938
|
+
channel_id?: string | undefined;
|
|
8310
8939
|
channel_type?: number | undefined;
|
|
8311
8940
|
avatar_url?: string | undefined;
|
|
8941
|
+
channel?: {
|
|
8942
|
+
clan_id?: string | undefined;
|
|
8943
|
+
parrent_id?: string | undefined;
|
|
8944
|
+
channel_id?: string | undefined;
|
|
8945
|
+
category_id?: string | undefined;
|
|
8946
|
+
category_name?: string | undefined;
|
|
8947
|
+
type?: number | undefined;
|
|
8948
|
+
creator_id?: string | undefined;
|
|
8949
|
+
channel_label?: string | undefined;
|
|
8950
|
+
channel_private?: number | undefined;
|
|
8951
|
+
channel_avatar?: string[] | undefined;
|
|
8952
|
+
user_id?: string[] | undefined;
|
|
8953
|
+
last_sent_message?: {
|
|
8954
|
+
id?: string | undefined;
|
|
8955
|
+
timestamp_seconds?: number | undefined;
|
|
8956
|
+
sender_id?: string | undefined;
|
|
8957
|
+
content?: string | undefined;
|
|
8958
|
+
attachment?: string | undefined;
|
|
8959
|
+
referece?: string | undefined;
|
|
8960
|
+
mention?: string | undefined;
|
|
8961
|
+
reaction?: string | undefined;
|
|
8962
|
+
repliers?: string[] | undefined;
|
|
8963
|
+
} | undefined;
|
|
8964
|
+
last_seen_message?: {
|
|
8965
|
+
id?: string | undefined;
|
|
8966
|
+
timestamp_seconds?: number | undefined;
|
|
8967
|
+
sender_id?: string | undefined;
|
|
8968
|
+
content?: string | undefined;
|
|
8969
|
+
attachment?: string | undefined;
|
|
8970
|
+
referece?: string | undefined;
|
|
8971
|
+
mention?: string | undefined;
|
|
8972
|
+
reaction?: string | undefined;
|
|
8973
|
+
repliers?: string[] | undefined;
|
|
8974
|
+
} | undefined;
|
|
8975
|
+
is_online?: boolean[] | undefined;
|
|
8976
|
+
meeting_code?: string | undefined;
|
|
8977
|
+
count_mess_unread?: number | undefined;
|
|
8978
|
+
active?: number | undefined;
|
|
8979
|
+
last_pin_message?: string | undefined;
|
|
8980
|
+
usernames?: string[] | undefined;
|
|
8981
|
+
creator_name?: string | undefined;
|
|
8982
|
+
create_time_seconds?: number | undefined;
|
|
8983
|
+
update_time_seconds?: number | undefined;
|
|
8984
|
+
metadata?: string[] | undefined;
|
|
8985
|
+
about_me?: string[] | undefined;
|
|
8986
|
+
clan_name?: string | undefined;
|
|
8987
|
+
app_url?: string | undefined;
|
|
8988
|
+
is_mute?: boolean | undefined;
|
|
8989
|
+
age_restricted?: number | undefined;
|
|
8990
|
+
topic?: string | undefined;
|
|
8991
|
+
e2ee?: number | undefined;
|
|
8992
|
+
display_names?: string[] | undefined;
|
|
8993
|
+
} | undefined;
|
|
8312
8994
|
} & {
|
|
8313
8995
|
id?: string | undefined;
|
|
8314
8996
|
subject?: string | undefined;
|
|
@@ -8321,7 +9003,132 @@ export declare const Notification: {
|
|
|
8321
9003
|
channel_id?: string | undefined;
|
|
8322
9004
|
channel_type?: number | undefined;
|
|
8323
9005
|
avatar_url?: string | undefined;
|
|
8324
|
-
|
|
9006
|
+
channel?: ({
|
|
9007
|
+
clan_id?: string | undefined;
|
|
9008
|
+
parrent_id?: string | undefined;
|
|
9009
|
+
channel_id?: string | undefined;
|
|
9010
|
+
category_id?: string | undefined;
|
|
9011
|
+
category_name?: string | undefined;
|
|
9012
|
+
type?: number | undefined;
|
|
9013
|
+
creator_id?: string | undefined;
|
|
9014
|
+
channel_label?: string | undefined;
|
|
9015
|
+
channel_private?: number | undefined;
|
|
9016
|
+
channel_avatar?: string[] | undefined;
|
|
9017
|
+
user_id?: string[] | undefined;
|
|
9018
|
+
last_sent_message?: {
|
|
9019
|
+
id?: string | undefined;
|
|
9020
|
+
timestamp_seconds?: number | undefined;
|
|
9021
|
+
sender_id?: string | undefined;
|
|
9022
|
+
content?: string | undefined;
|
|
9023
|
+
attachment?: string | undefined;
|
|
9024
|
+
referece?: string | undefined;
|
|
9025
|
+
mention?: string | undefined;
|
|
9026
|
+
reaction?: string | undefined;
|
|
9027
|
+
repliers?: string[] | undefined;
|
|
9028
|
+
} | undefined;
|
|
9029
|
+
last_seen_message?: {
|
|
9030
|
+
id?: string | undefined;
|
|
9031
|
+
timestamp_seconds?: number | undefined;
|
|
9032
|
+
sender_id?: string | undefined;
|
|
9033
|
+
content?: string | undefined;
|
|
9034
|
+
attachment?: string | undefined;
|
|
9035
|
+
referece?: string | undefined;
|
|
9036
|
+
mention?: string | undefined;
|
|
9037
|
+
reaction?: string | undefined;
|
|
9038
|
+
repliers?: string[] | undefined;
|
|
9039
|
+
} | undefined;
|
|
9040
|
+
is_online?: boolean[] | undefined;
|
|
9041
|
+
meeting_code?: string | undefined;
|
|
9042
|
+
count_mess_unread?: number | undefined;
|
|
9043
|
+
active?: number | undefined;
|
|
9044
|
+
last_pin_message?: string | undefined;
|
|
9045
|
+
usernames?: string[] | undefined;
|
|
9046
|
+
creator_name?: string | undefined;
|
|
9047
|
+
create_time_seconds?: number | undefined;
|
|
9048
|
+
update_time_seconds?: number | undefined;
|
|
9049
|
+
metadata?: string[] | undefined;
|
|
9050
|
+
about_me?: string[] | undefined;
|
|
9051
|
+
clan_name?: string | undefined;
|
|
9052
|
+
app_url?: string | undefined;
|
|
9053
|
+
is_mute?: boolean | undefined;
|
|
9054
|
+
age_restricted?: number | undefined;
|
|
9055
|
+
topic?: string | undefined;
|
|
9056
|
+
e2ee?: number | undefined;
|
|
9057
|
+
display_names?: string[] | undefined;
|
|
9058
|
+
} & {
|
|
9059
|
+
clan_id?: string | undefined;
|
|
9060
|
+
parrent_id?: string | undefined;
|
|
9061
|
+
channel_id?: string | undefined;
|
|
9062
|
+
category_id?: string | undefined;
|
|
9063
|
+
category_name?: string | undefined;
|
|
9064
|
+
type?: number | undefined;
|
|
9065
|
+
creator_id?: string | undefined;
|
|
9066
|
+
channel_label?: string | undefined;
|
|
9067
|
+
channel_private?: number | undefined;
|
|
9068
|
+
channel_avatar?: (string[] & string[] & { [K_13 in Exclude<keyof I_1["channel"]["channel_avatar"], keyof string[]>]: never; }) | undefined;
|
|
9069
|
+
user_id?: (string[] & string[] & { [K_14 in Exclude<keyof I_1["channel"]["user_id"], keyof string[]>]: never; }) | undefined;
|
|
9070
|
+
last_sent_message?: ({
|
|
9071
|
+
id?: string | undefined;
|
|
9072
|
+
timestamp_seconds?: number | undefined;
|
|
9073
|
+
sender_id?: string | undefined;
|
|
9074
|
+
content?: string | undefined;
|
|
9075
|
+
attachment?: string | undefined;
|
|
9076
|
+
referece?: string | undefined;
|
|
9077
|
+
mention?: string | undefined;
|
|
9078
|
+
reaction?: string | undefined;
|
|
9079
|
+
repliers?: string[] | undefined;
|
|
9080
|
+
} & {
|
|
9081
|
+
id?: string | undefined;
|
|
9082
|
+
timestamp_seconds?: number | undefined;
|
|
9083
|
+
sender_id?: string | undefined;
|
|
9084
|
+
content?: string | undefined;
|
|
9085
|
+
attachment?: string | undefined;
|
|
9086
|
+
referece?: string | undefined;
|
|
9087
|
+
mention?: string | undefined;
|
|
9088
|
+
reaction?: string | undefined;
|
|
9089
|
+
repliers?: (string[] & string[] & { [K_15 in Exclude<keyof I_1["channel"]["last_sent_message"]["repliers"], keyof string[]>]: never; }) | undefined;
|
|
9090
|
+
} & { [K_16 in Exclude<keyof I_1["channel"]["last_sent_message"], keyof ChannelMessageHeader>]: never; }) | undefined;
|
|
9091
|
+
last_seen_message?: ({
|
|
9092
|
+
id?: string | undefined;
|
|
9093
|
+
timestamp_seconds?: number | undefined;
|
|
9094
|
+
sender_id?: string | undefined;
|
|
9095
|
+
content?: string | undefined;
|
|
9096
|
+
attachment?: string | undefined;
|
|
9097
|
+
referece?: string | undefined;
|
|
9098
|
+
mention?: string | undefined;
|
|
9099
|
+
reaction?: string | undefined;
|
|
9100
|
+
repliers?: string[] | undefined;
|
|
9101
|
+
} & {
|
|
9102
|
+
id?: string | undefined;
|
|
9103
|
+
timestamp_seconds?: number | undefined;
|
|
9104
|
+
sender_id?: string | undefined;
|
|
9105
|
+
content?: string | undefined;
|
|
9106
|
+
attachment?: string | undefined;
|
|
9107
|
+
referece?: string | undefined;
|
|
9108
|
+
mention?: string | undefined;
|
|
9109
|
+
reaction?: string | undefined;
|
|
9110
|
+
repliers?: (string[] & string[] & { [K_17 in Exclude<keyof I_1["channel"]["last_seen_message"]["repliers"], keyof string[]>]: never; }) | undefined;
|
|
9111
|
+
} & { [K_18 in Exclude<keyof I_1["channel"]["last_seen_message"], keyof ChannelMessageHeader>]: never; }) | undefined;
|
|
9112
|
+
is_online?: (boolean[] & boolean[] & { [K_19 in Exclude<keyof I_1["channel"]["is_online"], keyof boolean[]>]: never; }) | undefined;
|
|
9113
|
+
meeting_code?: string | undefined;
|
|
9114
|
+
count_mess_unread?: number | undefined;
|
|
9115
|
+
active?: number | undefined;
|
|
9116
|
+
last_pin_message?: string | undefined;
|
|
9117
|
+
usernames?: (string[] & string[] & { [K_20 in Exclude<keyof I_1["channel"]["usernames"], keyof string[]>]: never; }) | undefined;
|
|
9118
|
+
creator_name?: string | undefined;
|
|
9119
|
+
create_time_seconds?: number | undefined;
|
|
9120
|
+
update_time_seconds?: number | undefined;
|
|
9121
|
+
metadata?: (string[] & string[] & { [K_21 in Exclude<keyof I_1["channel"]["metadata"], keyof string[]>]: never; }) | undefined;
|
|
9122
|
+
about_me?: (string[] & string[] & { [K_22 in Exclude<keyof I_1["channel"]["about_me"], keyof string[]>]: never; }) | undefined;
|
|
9123
|
+
clan_name?: string | undefined;
|
|
9124
|
+
app_url?: string | undefined;
|
|
9125
|
+
is_mute?: boolean | undefined;
|
|
9126
|
+
age_restricted?: number | undefined;
|
|
9127
|
+
topic?: string | undefined;
|
|
9128
|
+
e2ee?: number | undefined;
|
|
9129
|
+
display_names?: (string[] & string[] & { [K_23 in Exclude<keyof I_1["channel"]["display_names"], keyof string[]>]: never; }) | undefined;
|
|
9130
|
+
} & { [K_24 in Exclude<keyof I_1["channel"], keyof ChannelDescription>]: never; }) | undefined;
|
|
9131
|
+
} & { [K_25 in Exclude<keyof I_1, keyof Notification>]: never; }>(object: I_1): Notification;
|
|
8325
9132
|
};
|
|
8326
9133
|
export declare const NotificationList: {
|
|
8327
9134
|
encode(message: NotificationList, writer?: _m0.Writer): _m0.Writer;
|
|
@@ -8341,6 +9148,59 @@ export declare const NotificationList: {
|
|
|
8341
9148
|
channel_id?: string | undefined;
|
|
8342
9149
|
channel_type?: number | undefined;
|
|
8343
9150
|
avatar_url?: string | undefined;
|
|
9151
|
+
channel?: {
|
|
9152
|
+
clan_id?: string | undefined;
|
|
9153
|
+
parrent_id?: string | undefined;
|
|
9154
|
+
channel_id?: string | undefined;
|
|
9155
|
+
category_id?: string | undefined;
|
|
9156
|
+
category_name?: string | undefined;
|
|
9157
|
+
type?: number | undefined;
|
|
9158
|
+
creator_id?: string | undefined;
|
|
9159
|
+
channel_label?: string | undefined;
|
|
9160
|
+
channel_private?: number | undefined;
|
|
9161
|
+
channel_avatar?: string[] | undefined;
|
|
9162
|
+
user_id?: string[] | undefined;
|
|
9163
|
+
last_sent_message?: {
|
|
9164
|
+
id?: string | undefined;
|
|
9165
|
+
timestamp_seconds?: number | undefined;
|
|
9166
|
+
sender_id?: string | undefined;
|
|
9167
|
+
content?: string | undefined;
|
|
9168
|
+
attachment?: string | undefined;
|
|
9169
|
+
referece?: string | undefined;
|
|
9170
|
+
mention?: string | undefined;
|
|
9171
|
+
reaction?: string | undefined;
|
|
9172
|
+
repliers?: string[] | undefined;
|
|
9173
|
+
} | undefined;
|
|
9174
|
+
last_seen_message?: {
|
|
9175
|
+
id?: string | undefined;
|
|
9176
|
+
timestamp_seconds?: number | undefined;
|
|
9177
|
+
sender_id?: string | undefined;
|
|
9178
|
+
content?: string | undefined;
|
|
9179
|
+
attachment?: string | undefined;
|
|
9180
|
+
referece?: string | undefined;
|
|
9181
|
+
mention?: string | undefined;
|
|
9182
|
+
reaction?: string | undefined;
|
|
9183
|
+
repliers?: string[] | undefined;
|
|
9184
|
+
} | undefined;
|
|
9185
|
+
is_online?: boolean[] | undefined;
|
|
9186
|
+
meeting_code?: string | undefined;
|
|
9187
|
+
count_mess_unread?: number | undefined;
|
|
9188
|
+
active?: number | undefined;
|
|
9189
|
+
last_pin_message?: string | undefined;
|
|
9190
|
+
usernames?: string[] | undefined;
|
|
9191
|
+
creator_name?: string | undefined;
|
|
9192
|
+
create_time_seconds?: number | undefined;
|
|
9193
|
+
update_time_seconds?: number | undefined;
|
|
9194
|
+
metadata?: string[] | undefined;
|
|
9195
|
+
about_me?: string[] | undefined;
|
|
9196
|
+
clan_name?: string | undefined;
|
|
9197
|
+
app_url?: string | undefined;
|
|
9198
|
+
is_mute?: boolean | undefined;
|
|
9199
|
+
age_restricted?: number | undefined;
|
|
9200
|
+
topic?: string | undefined;
|
|
9201
|
+
e2ee?: number | undefined;
|
|
9202
|
+
display_names?: string[] | undefined;
|
|
9203
|
+
} | undefined;
|
|
8344
9204
|
}[] | undefined;
|
|
8345
9205
|
cacheable_cursor?: string | undefined;
|
|
8346
9206
|
} & {
|
|
@@ -8356,6 +9216,59 @@ export declare const NotificationList: {
|
|
|
8356
9216
|
channel_id?: string | undefined;
|
|
8357
9217
|
channel_type?: number | undefined;
|
|
8358
9218
|
avatar_url?: string | undefined;
|
|
9219
|
+
channel?: {
|
|
9220
|
+
clan_id?: string | undefined;
|
|
9221
|
+
parrent_id?: string | undefined;
|
|
9222
|
+
channel_id?: string | undefined;
|
|
9223
|
+
category_id?: string | undefined;
|
|
9224
|
+
category_name?: string | undefined;
|
|
9225
|
+
type?: number | undefined;
|
|
9226
|
+
creator_id?: string | undefined;
|
|
9227
|
+
channel_label?: string | undefined;
|
|
9228
|
+
channel_private?: number | undefined;
|
|
9229
|
+
channel_avatar?: string[] | undefined;
|
|
9230
|
+
user_id?: string[] | undefined;
|
|
9231
|
+
last_sent_message?: {
|
|
9232
|
+
id?: string | undefined;
|
|
9233
|
+
timestamp_seconds?: number | undefined;
|
|
9234
|
+
sender_id?: string | undefined;
|
|
9235
|
+
content?: string | undefined;
|
|
9236
|
+
attachment?: string | undefined;
|
|
9237
|
+
referece?: string | undefined;
|
|
9238
|
+
mention?: string | undefined;
|
|
9239
|
+
reaction?: string | undefined;
|
|
9240
|
+
repliers?: string[] | undefined;
|
|
9241
|
+
} | undefined;
|
|
9242
|
+
last_seen_message?: {
|
|
9243
|
+
id?: string | undefined;
|
|
9244
|
+
timestamp_seconds?: number | undefined;
|
|
9245
|
+
sender_id?: string | undefined;
|
|
9246
|
+
content?: string | undefined;
|
|
9247
|
+
attachment?: string | undefined;
|
|
9248
|
+
referece?: string | undefined;
|
|
9249
|
+
mention?: string | undefined;
|
|
9250
|
+
reaction?: string | undefined;
|
|
9251
|
+
repliers?: string[] | undefined;
|
|
9252
|
+
} | undefined;
|
|
9253
|
+
is_online?: boolean[] | undefined;
|
|
9254
|
+
meeting_code?: string | undefined;
|
|
9255
|
+
count_mess_unread?: number | undefined;
|
|
9256
|
+
active?: number | undefined;
|
|
9257
|
+
last_pin_message?: string | undefined;
|
|
9258
|
+
usernames?: string[] | undefined;
|
|
9259
|
+
creator_name?: string | undefined;
|
|
9260
|
+
create_time_seconds?: number | undefined;
|
|
9261
|
+
update_time_seconds?: number | undefined;
|
|
9262
|
+
metadata?: string[] | undefined;
|
|
9263
|
+
about_me?: string[] | undefined;
|
|
9264
|
+
clan_name?: string | undefined;
|
|
9265
|
+
app_url?: string | undefined;
|
|
9266
|
+
is_mute?: boolean | undefined;
|
|
9267
|
+
age_restricted?: number | undefined;
|
|
9268
|
+
topic?: string | undefined;
|
|
9269
|
+
e2ee?: number | undefined;
|
|
9270
|
+
display_names?: string[] | undefined;
|
|
9271
|
+
} | undefined;
|
|
8359
9272
|
}[] & ({
|
|
8360
9273
|
id?: string | undefined;
|
|
8361
9274
|
subject?: string | undefined;
|
|
@@ -8368,6 +9281,59 @@ export declare const NotificationList: {
|
|
|
8368
9281
|
channel_id?: string | undefined;
|
|
8369
9282
|
channel_type?: number | undefined;
|
|
8370
9283
|
avatar_url?: string | undefined;
|
|
9284
|
+
channel?: {
|
|
9285
|
+
clan_id?: string | undefined;
|
|
9286
|
+
parrent_id?: string | undefined;
|
|
9287
|
+
channel_id?: string | undefined;
|
|
9288
|
+
category_id?: string | undefined;
|
|
9289
|
+
category_name?: string | undefined;
|
|
9290
|
+
type?: number | undefined;
|
|
9291
|
+
creator_id?: string | undefined;
|
|
9292
|
+
channel_label?: string | undefined;
|
|
9293
|
+
channel_private?: number | undefined;
|
|
9294
|
+
channel_avatar?: string[] | undefined;
|
|
9295
|
+
user_id?: string[] | undefined;
|
|
9296
|
+
last_sent_message?: {
|
|
9297
|
+
id?: string | undefined;
|
|
9298
|
+
timestamp_seconds?: number | undefined;
|
|
9299
|
+
sender_id?: string | undefined;
|
|
9300
|
+
content?: string | undefined;
|
|
9301
|
+
attachment?: string | undefined;
|
|
9302
|
+
referece?: string | undefined;
|
|
9303
|
+
mention?: string | undefined;
|
|
9304
|
+
reaction?: string | undefined;
|
|
9305
|
+
repliers?: string[] | undefined;
|
|
9306
|
+
} | undefined;
|
|
9307
|
+
last_seen_message?: {
|
|
9308
|
+
id?: string | undefined;
|
|
9309
|
+
timestamp_seconds?: number | undefined;
|
|
9310
|
+
sender_id?: string | undefined;
|
|
9311
|
+
content?: string | undefined;
|
|
9312
|
+
attachment?: string | undefined;
|
|
9313
|
+
referece?: string | undefined;
|
|
9314
|
+
mention?: string | undefined;
|
|
9315
|
+
reaction?: string | undefined;
|
|
9316
|
+
repliers?: string[] | undefined;
|
|
9317
|
+
} | undefined;
|
|
9318
|
+
is_online?: boolean[] | undefined;
|
|
9319
|
+
meeting_code?: string | undefined;
|
|
9320
|
+
count_mess_unread?: number | undefined;
|
|
9321
|
+
active?: number | undefined;
|
|
9322
|
+
last_pin_message?: string | undefined;
|
|
9323
|
+
usernames?: string[] | undefined;
|
|
9324
|
+
creator_name?: string | undefined;
|
|
9325
|
+
create_time_seconds?: number | undefined;
|
|
9326
|
+
update_time_seconds?: number | undefined;
|
|
9327
|
+
metadata?: string[] | undefined;
|
|
9328
|
+
about_me?: string[] | undefined;
|
|
9329
|
+
clan_name?: string | undefined;
|
|
9330
|
+
app_url?: string | undefined;
|
|
9331
|
+
is_mute?: boolean | undefined;
|
|
9332
|
+
age_restricted?: number | undefined;
|
|
9333
|
+
topic?: string | undefined;
|
|
9334
|
+
e2ee?: number | undefined;
|
|
9335
|
+
display_names?: string[] | undefined;
|
|
9336
|
+
} | undefined;
|
|
8371
9337
|
} & {
|
|
8372
9338
|
id?: string | undefined;
|
|
8373
9339
|
subject?: string | undefined;
|
|
@@ -8380,7 +9346,132 @@ export declare const NotificationList: {
|
|
|
8380
9346
|
channel_id?: string | undefined;
|
|
8381
9347
|
channel_type?: number | undefined;
|
|
8382
9348
|
avatar_url?: string | undefined;
|
|
8383
|
-
|
|
9349
|
+
channel?: ({
|
|
9350
|
+
clan_id?: string | undefined;
|
|
9351
|
+
parrent_id?: string | undefined;
|
|
9352
|
+
channel_id?: string | undefined;
|
|
9353
|
+
category_id?: string | undefined;
|
|
9354
|
+
category_name?: string | undefined;
|
|
9355
|
+
type?: number | undefined;
|
|
9356
|
+
creator_id?: string | undefined;
|
|
9357
|
+
channel_label?: string | undefined;
|
|
9358
|
+
channel_private?: number | undefined;
|
|
9359
|
+
channel_avatar?: string[] | undefined;
|
|
9360
|
+
user_id?: string[] | undefined;
|
|
9361
|
+
last_sent_message?: {
|
|
9362
|
+
id?: string | undefined;
|
|
9363
|
+
timestamp_seconds?: number | undefined;
|
|
9364
|
+
sender_id?: string | undefined;
|
|
9365
|
+
content?: string | undefined;
|
|
9366
|
+
attachment?: string | undefined;
|
|
9367
|
+
referece?: string | undefined;
|
|
9368
|
+
mention?: string | undefined;
|
|
9369
|
+
reaction?: string | undefined;
|
|
9370
|
+
repliers?: string[] | undefined;
|
|
9371
|
+
} | undefined;
|
|
9372
|
+
last_seen_message?: {
|
|
9373
|
+
id?: string | undefined;
|
|
9374
|
+
timestamp_seconds?: number | undefined;
|
|
9375
|
+
sender_id?: string | undefined;
|
|
9376
|
+
content?: string | undefined;
|
|
9377
|
+
attachment?: string | undefined;
|
|
9378
|
+
referece?: string | undefined;
|
|
9379
|
+
mention?: string | undefined;
|
|
9380
|
+
reaction?: string | undefined;
|
|
9381
|
+
repliers?: string[] | undefined;
|
|
9382
|
+
} | undefined;
|
|
9383
|
+
is_online?: boolean[] | undefined;
|
|
9384
|
+
meeting_code?: string | undefined;
|
|
9385
|
+
count_mess_unread?: number | undefined;
|
|
9386
|
+
active?: number | undefined;
|
|
9387
|
+
last_pin_message?: string | undefined;
|
|
9388
|
+
usernames?: string[] | undefined;
|
|
9389
|
+
creator_name?: string | undefined;
|
|
9390
|
+
create_time_seconds?: number | undefined;
|
|
9391
|
+
update_time_seconds?: number | undefined;
|
|
9392
|
+
metadata?: string[] | undefined;
|
|
9393
|
+
about_me?: string[] | undefined;
|
|
9394
|
+
clan_name?: string | undefined;
|
|
9395
|
+
app_url?: string | undefined;
|
|
9396
|
+
is_mute?: boolean | undefined;
|
|
9397
|
+
age_restricted?: number | undefined;
|
|
9398
|
+
topic?: string | undefined;
|
|
9399
|
+
e2ee?: number | undefined;
|
|
9400
|
+
display_names?: string[] | undefined;
|
|
9401
|
+
} & {
|
|
9402
|
+
clan_id?: string | undefined;
|
|
9403
|
+
parrent_id?: string | undefined;
|
|
9404
|
+
channel_id?: string | undefined;
|
|
9405
|
+
category_id?: string | undefined;
|
|
9406
|
+
category_name?: string | undefined;
|
|
9407
|
+
type?: number | undefined;
|
|
9408
|
+
creator_id?: string | undefined;
|
|
9409
|
+
channel_label?: string | undefined;
|
|
9410
|
+
channel_private?: number | undefined;
|
|
9411
|
+
channel_avatar?: (string[] & string[] & { [K in Exclude<keyof I["notifications"][number]["channel"]["channel_avatar"], keyof string[]>]: never; }) | undefined;
|
|
9412
|
+
user_id?: (string[] & string[] & { [K_1 in Exclude<keyof I["notifications"][number]["channel"]["user_id"], keyof string[]>]: never; }) | undefined;
|
|
9413
|
+
last_sent_message?: ({
|
|
9414
|
+
id?: string | undefined;
|
|
9415
|
+
timestamp_seconds?: number | undefined;
|
|
9416
|
+
sender_id?: string | undefined;
|
|
9417
|
+
content?: string | undefined;
|
|
9418
|
+
attachment?: string | undefined;
|
|
9419
|
+
referece?: string | undefined;
|
|
9420
|
+
mention?: string | undefined;
|
|
9421
|
+
reaction?: string | undefined;
|
|
9422
|
+
repliers?: string[] | undefined;
|
|
9423
|
+
} & {
|
|
9424
|
+
id?: string | undefined;
|
|
9425
|
+
timestamp_seconds?: number | undefined;
|
|
9426
|
+
sender_id?: string | undefined;
|
|
9427
|
+
content?: string | undefined;
|
|
9428
|
+
attachment?: string | undefined;
|
|
9429
|
+
referece?: string | undefined;
|
|
9430
|
+
mention?: string | undefined;
|
|
9431
|
+
reaction?: string | undefined;
|
|
9432
|
+
repliers?: (string[] & string[] & { [K_2 in Exclude<keyof I["notifications"][number]["channel"]["last_sent_message"]["repliers"], keyof string[]>]: never; }) | undefined;
|
|
9433
|
+
} & { [K_3 in Exclude<keyof I["notifications"][number]["channel"]["last_sent_message"], keyof ChannelMessageHeader>]: never; }) | undefined;
|
|
9434
|
+
last_seen_message?: ({
|
|
9435
|
+
id?: string | undefined;
|
|
9436
|
+
timestamp_seconds?: number | undefined;
|
|
9437
|
+
sender_id?: string | undefined;
|
|
9438
|
+
content?: string | undefined;
|
|
9439
|
+
attachment?: string | undefined;
|
|
9440
|
+
referece?: string | undefined;
|
|
9441
|
+
mention?: string | undefined;
|
|
9442
|
+
reaction?: string | undefined;
|
|
9443
|
+
repliers?: string[] | undefined;
|
|
9444
|
+
} & {
|
|
9445
|
+
id?: string | undefined;
|
|
9446
|
+
timestamp_seconds?: number | undefined;
|
|
9447
|
+
sender_id?: string | undefined;
|
|
9448
|
+
content?: string | undefined;
|
|
9449
|
+
attachment?: string | undefined;
|
|
9450
|
+
referece?: string | undefined;
|
|
9451
|
+
mention?: string | undefined;
|
|
9452
|
+
reaction?: string | undefined;
|
|
9453
|
+
repliers?: (string[] & string[] & { [K_4 in Exclude<keyof I["notifications"][number]["channel"]["last_seen_message"]["repliers"], keyof string[]>]: never; }) | undefined;
|
|
9454
|
+
} & { [K_5 in Exclude<keyof I["notifications"][number]["channel"]["last_seen_message"], keyof ChannelMessageHeader>]: never; }) | undefined;
|
|
9455
|
+
is_online?: (boolean[] & boolean[] & { [K_6 in Exclude<keyof I["notifications"][number]["channel"]["is_online"], keyof boolean[]>]: never; }) | undefined;
|
|
9456
|
+
meeting_code?: string | undefined;
|
|
9457
|
+
count_mess_unread?: number | undefined;
|
|
9458
|
+
active?: number | undefined;
|
|
9459
|
+
last_pin_message?: string | undefined;
|
|
9460
|
+
usernames?: (string[] & string[] & { [K_7 in Exclude<keyof I["notifications"][number]["channel"]["usernames"], keyof string[]>]: never; }) | undefined;
|
|
9461
|
+
creator_name?: string | undefined;
|
|
9462
|
+
create_time_seconds?: number | undefined;
|
|
9463
|
+
update_time_seconds?: number | undefined;
|
|
9464
|
+
metadata?: (string[] & string[] & { [K_8 in Exclude<keyof I["notifications"][number]["channel"]["metadata"], keyof string[]>]: never; }) | undefined;
|
|
9465
|
+
about_me?: (string[] & string[] & { [K_9 in Exclude<keyof I["notifications"][number]["channel"]["about_me"], keyof string[]>]: never; }) | undefined;
|
|
9466
|
+
clan_name?: string | undefined;
|
|
9467
|
+
app_url?: string | undefined;
|
|
9468
|
+
is_mute?: boolean | undefined;
|
|
9469
|
+
age_restricted?: number | undefined;
|
|
9470
|
+
topic?: string | undefined;
|
|
9471
|
+
e2ee?: number | undefined;
|
|
9472
|
+
display_names?: (string[] & string[] & { [K_10 in Exclude<keyof I["notifications"][number]["channel"]["display_names"], keyof string[]>]: never; }) | undefined;
|
|
9473
|
+
} & { [K_11 in Exclude<keyof I["notifications"][number]["channel"], keyof ChannelDescription>]: never; }) | undefined;
|
|
9474
|
+
} & { [K_12 in Exclude<keyof I["notifications"][number], keyof Notification>]: never; })[] & { [K_13 in Exclude<keyof I["notifications"], keyof {
|
|
8384
9475
|
id?: string | undefined;
|
|
8385
9476
|
subject?: string | undefined;
|
|
8386
9477
|
content?: string | undefined;
|
|
@@ -8392,9 +9483,62 @@ export declare const NotificationList: {
|
|
|
8392
9483
|
channel_id?: string | undefined;
|
|
8393
9484
|
channel_type?: number | undefined;
|
|
8394
9485
|
avatar_url?: string | undefined;
|
|
9486
|
+
channel?: {
|
|
9487
|
+
clan_id?: string | undefined;
|
|
9488
|
+
parrent_id?: string | undefined;
|
|
9489
|
+
channel_id?: string | undefined;
|
|
9490
|
+
category_id?: string | undefined;
|
|
9491
|
+
category_name?: string | undefined;
|
|
9492
|
+
type?: number | undefined;
|
|
9493
|
+
creator_id?: string | undefined;
|
|
9494
|
+
channel_label?: string | undefined;
|
|
9495
|
+
channel_private?: number | undefined;
|
|
9496
|
+
channel_avatar?: string[] | undefined;
|
|
9497
|
+
user_id?: string[] | undefined;
|
|
9498
|
+
last_sent_message?: {
|
|
9499
|
+
id?: string | undefined;
|
|
9500
|
+
timestamp_seconds?: number | undefined;
|
|
9501
|
+
sender_id?: string | undefined;
|
|
9502
|
+
content?: string | undefined;
|
|
9503
|
+
attachment?: string | undefined;
|
|
9504
|
+
referece?: string | undefined;
|
|
9505
|
+
mention?: string | undefined;
|
|
9506
|
+
reaction?: string | undefined;
|
|
9507
|
+
repliers?: string[] | undefined;
|
|
9508
|
+
} | undefined;
|
|
9509
|
+
last_seen_message?: {
|
|
9510
|
+
id?: string | undefined;
|
|
9511
|
+
timestamp_seconds?: number | undefined;
|
|
9512
|
+
sender_id?: string | undefined;
|
|
9513
|
+
content?: string | undefined;
|
|
9514
|
+
attachment?: string | undefined;
|
|
9515
|
+
referece?: string | undefined;
|
|
9516
|
+
mention?: string | undefined;
|
|
9517
|
+
reaction?: string | undefined;
|
|
9518
|
+
repliers?: string[] | undefined;
|
|
9519
|
+
} | undefined;
|
|
9520
|
+
is_online?: boolean[] | undefined;
|
|
9521
|
+
meeting_code?: string | undefined;
|
|
9522
|
+
count_mess_unread?: number | undefined;
|
|
9523
|
+
active?: number | undefined;
|
|
9524
|
+
last_pin_message?: string | undefined;
|
|
9525
|
+
usernames?: string[] | undefined;
|
|
9526
|
+
creator_name?: string | undefined;
|
|
9527
|
+
create_time_seconds?: number | undefined;
|
|
9528
|
+
update_time_seconds?: number | undefined;
|
|
9529
|
+
metadata?: string[] | undefined;
|
|
9530
|
+
about_me?: string[] | undefined;
|
|
9531
|
+
clan_name?: string | undefined;
|
|
9532
|
+
app_url?: string | undefined;
|
|
9533
|
+
is_mute?: boolean | undefined;
|
|
9534
|
+
age_restricted?: number | undefined;
|
|
9535
|
+
topic?: string | undefined;
|
|
9536
|
+
e2ee?: number | undefined;
|
|
9537
|
+
display_names?: string[] | undefined;
|
|
9538
|
+
} | undefined;
|
|
8395
9539
|
}[]>]: never; }) | undefined;
|
|
8396
9540
|
cacheable_cursor?: string | undefined;
|
|
8397
|
-
} & { [
|
|
9541
|
+
} & { [K_14 in Exclude<keyof I, keyof NotificationList>]: never; }>(base?: I | undefined): NotificationList;
|
|
8398
9542
|
fromPartial<I_1 extends {
|
|
8399
9543
|
notifications?: {
|
|
8400
9544
|
id?: string | undefined;
|
|
@@ -8408,6 +9552,59 @@ export declare const NotificationList: {
|
|
|
8408
9552
|
channel_id?: string | undefined;
|
|
8409
9553
|
channel_type?: number | undefined;
|
|
8410
9554
|
avatar_url?: string | undefined;
|
|
9555
|
+
channel?: {
|
|
9556
|
+
clan_id?: string | undefined;
|
|
9557
|
+
parrent_id?: string | undefined;
|
|
9558
|
+
channel_id?: string | undefined;
|
|
9559
|
+
category_id?: string | undefined;
|
|
9560
|
+
category_name?: string | undefined;
|
|
9561
|
+
type?: number | undefined;
|
|
9562
|
+
creator_id?: string | undefined;
|
|
9563
|
+
channel_label?: string | undefined;
|
|
9564
|
+
channel_private?: number | undefined;
|
|
9565
|
+
channel_avatar?: string[] | undefined;
|
|
9566
|
+
user_id?: string[] | undefined;
|
|
9567
|
+
last_sent_message?: {
|
|
9568
|
+
id?: string | undefined;
|
|
9569
|
+
timestamp_seconds?: number | undefined;
|
|
9570
|
+
sender_id?: string | undefined;
|
|
9571
|
+
content?: string | undefined;
|
|
9572
|
+
attachment?: string | undefined;
|
|
9573
|
+
referece?: string | undefined;
|
|
9574
|
+
mention?: string | undefined;
|
|
9575
|
+
reaction?: string | undefined;
|
|
9576
|
+
repliers?: string[] | undefined;
|
|
9577
|
+
} | undefined;
|
|
9578
|
+
last_seen_message?: {
|
|
9579
|
+
id?: string | undefined;
|
|
9580
|
+
timestamp_seconds?: number | undefined;
|
|
9581
|
+
sender_id?: string | undefined;
|
|
9582
|
+
content?: string | undefined;
|
|
9583
|
+
attachment?: string | undefined;
|
|
9584
|
+
referece?: string | undefined;
|
|
9585
|
+
mention?: string | undefined;
|
|
9586
|
+
reaction?: string | undefined;
|
|
9587
|
+
repliers?: string[] | undefined;
|
|
9588
|
+
} | undefined;
|
|
9589
|
+
is_online?: boolean[] | undefined;
|
|
9590
|
+
meeting_code?: string | undefined;
|
|
9591
|
+
count_mess_unread?: number | undefined;
|
|
9592
|
+
active?: number | undefined;
|
|
9593
|
+
last_pin_message?: string | undefined;
|
|
9594
|
+
usernames?: string[] | undefined;
|
|
9595
|
+
creator_name?: string | undefined;
|
|
9596
|
+
create_time_seconds?: number | undefined;
|
|
9597
|
+
update_time_seconds?: number | undefined;
|
|
9598
|
+
metadata?: string[] | undefined;
|
|
9599
|
+
about_me?: string[] | undefined;
|
|
9600
|
+
clan_name?: string | undefined;
|
|
9601
|
+
app_url?: string | undefined;
|
|
9602
|
+
is_mute?: boolean | undefined;
|
|
9603
|
+
age_restricted?: number | undefined;
|
|
9604
|
+
topic?: string | undefined;
|
|
9605
|
+
e2ee?: number | undefined;
|
|
9606
|
+
display_names?: string[] | undefined;
|
|
9607
|
+
} | undefined;
|
|
8411
9608
|
}[] | undefined;
|
|
8412
9609
|
cacheable_cursor?: string | undefined;
|
|
8413
9610
|
} & {
|
|
@@ -8423,6 +9620,59 @@ export declare const NotificationList: {
|
|
|
8423
9620
|
channel_id?: string | undefined;
|
|
8424
9621
|
channel_type?: number | undefined;
|
|
8425
9622
|
avatar_url?: string | undefined;
|
|
9623
|
+
channel?: {
|
|
9624
|
+
clan_id?: string | undefined;
|
|
9625
|
+
parrent_id?: string | undefined;
|
|
9626
|
+
channel_id?: string | undefined;
|
|
9627
|
+
category_id?: string | undefined;
|
|
9628
|
+
category_name?: string | undefined;
|
|
9629
|
+
type?: number | undefined;
|
|
9630
|
+
creator_id?: string | undefined;
|
|
9631
|
+
channel_label?: string | undefined;
|
|
9632
|
+
channel_private?: number | undefined;
|
|
9633
|
+
channel_avatar?: string[] | undefined;
|
|
9634
|
+
user_id?: string[] | undefined;
|
|
9635
|
+
last_sent_message?: {
|
|
9636
|
+
id?: string | undefined;
|
|
9637
|
+
timestamp_seconds?: number | undefined;
|
|
9638
|
+
sender_id?: string | undefined;
|
|
9639
|
+
content?: string | undefined;
|
|
9640
|
+
attachment?: string | undefined;
|
|
9641
|
+
referece?: string | undefined;
|
|
9642
|
+
mention?: string | undefined;
|
|
9643
|
+
reaction?: string | undefined;
|
|
9644
|
+
repliers?: string[] | undefined;
|
|
9645
|
+
} | undefined;
|
|
9646
|
+
last_seen_message?: {
|
|
9647
|
+
id?: string | undefined;
|
|
9648
|
+
timestamp_seconds?: number | undefined;
|
|
9649
|
+
sender_id?: string | undefined;
|
|
9650
|
+
content?: string | undefined;
|
|
9651
|
+
attachment?: string | undefined;
|
|
9652
|
+
referece?: string | undefined;
|
|
9653
|
+
mention?: string | undefined;
|
|
9654
|
+
reaction?: string | undefined;
|
|
9655
|
+
repliers?: string[] | undefined;
|
|
9656
|
+
} | undefined;
|
|
9657
|
+
is_online?: boolean[] | undefined;
|
|
9658
|
+
meeting_code?: string | undefined;
|
|
9659
|
+
count_mess_unread?: number | undefined;
|
|
9660
|
+
active?: number | undefined;
|
|
9661
|
+
last_pin_message?: string | undefined;
|
|
9662
|
+
usernames?: string[] | undefined;
|
|
9663
|
+
creator_name?: string | undefined;
|
|
9664
|
+
create_time_seconds?: number | undefined;
|
|
9665
|
+
update_time_seconds?: number | undefined;
|
|
9666
|
+
metadata?: string[] | undefined;
|
|
9667
|
+
about_me?: string[] | undefined;
|
|
9668
|
+
clan_name?: string | undefined;
|
|
9669
|
+
app_url?: string | undefined;
|
|
9670
|
+
is_mute?: boolean | undefined;
|
|
9671
|
+
age_restricted?: number | undefined;
|
|
9672
|
+
topic?: string | undefined;
|
|
9673
|
+
e2ee?: number | undefined;
|
|
9674
|
+
display_names?: string[] | undefined;
|
|
9675
|
+
} | undefined;
|
|
8426
9676
|
}[] & ({
|
|
8427
9677
|
id?: string | undefined;
|
|
8428
9678
|
subject?: string | undefined;
|
|
@@ -8435,6 +9685,59 @@ export declare const NotificationList: {
|
|
|
8435
9685
|
channel_id?: string | undefined;
|
|
8436
9686
|
channel_type?: number | undefined;
|
|
8437
9687
|
avatar_url?: string | undefined;
|
|
9688
|
+
channel?: {
|
|
9689
|
+
clan_id?: string | undefined;
|
|
9690
|
+
parrent_id?: string | undefined;
|
|
9691
|
+
channel_id?: string | undefined;
|
|
9692
|
+
category_id?: string | undefined;
|
|
9693
|
+
category_name?: string | undefined;
|
|
9694
|
+
type?: number | undefined;
|
|
9695
|
+
creator_id?: string | undefined;
|
|
9696
|
+
channel_label?: string | undefined;
|
|
9697
|
+
channel_private?: number | undefined;
|
|
9698
|
+
channel_avatar?: string[] | undefined;
|
|
9699
|
+
user_id?: string[] | undefined;
|
|
9700
|
+
last_sent_message?: {
|
|
9701
|
+
id?: string | undefined;
|
|
9702
|
+
timestamp_seconds?: number | undefined;
|
|
9703
|
+
sender_id?: string | undefined;
|
|
9704
|
+
content?: string | undefined;
|
|
9705
|
+
attachment?: string | undefined;
|
|
9706
|
+
referece?: string | undefined;
|
|
9707
|
+
mention?: string | undefined;
|
|
9708
|
+
reaction?: string | undefined;
|
|
9709
|
+
repliers?: string[] | undefined;
|
|
9710
|
+
} | undefined;
|
|
9711
|
+
last_seen_message?: {
|
|
9712
|
+
id?: string | undefined;
|
|
9713
|
+
timestamp_seconds?: number | undefined;
|
|
9714
|
+
sender_id?: string | undefined;
|
|
9715
|
+
content?: string | undefined;
|
|
9716
|
+
attachment?: string | undefined;
|
|
9717
|
+
referece?: string | undefined;
|
|
9718
|
+
mention?: string | undefined;
|
|
9719
|
+
reaction?: string | undefined;
|
|
9720
|
+
repliers?: string[] | undefined;
|
|
9721
|
+
} | undefined;
|
|
9722
|
+
is_online?: boolean[] | undefined;
|
|
9723
|
+
meeting_code?: string | undefined;
|
|
9724
|
+
count_mess_unread?: number | undefined;
|
|
9725
|
+
active?: number | undefined;
|
|
9726
|
+
last_pin_message?: string | undefined;
|
|
9727
|
+
usernames?: string[] | undefined;
|
|
9728
|
+
creator_name?: string | undefined;
|
|
9729
|
+
create_time_seconds?: number | undefined;
|
|
9730
|
+
update_time_seconds?: number | undefined;
|
|
9731
|
+
metadata?: string[] | undefined;
|
|
9732
|
+
about_me?: string[] | undefined;
|
|
9733
|
+
clan_name?: string | undefined;
|
|
9734
|
+
app_url?: string | undefined;
|
|
9735
|
+
is_mute?: boolean | undefined;
|
|
9736
|
+
age_restricted?: number | undefined;
|
|
9737
|
+
topic?: string | undefined;
|
|
9738
|
+
e2ee?: number | undefined;
|
|
9739
|
+
display_names?: string[] | undefined;
|
|
9740
|
+
} | undefined;
|
|
8438
9741
|
} & {
|
|
8439
9742
|
id?: string | undefined;
|
|
8440
9743
|
subject?: string | undefined;
|
|
@@ -8447,7 +9750,132 @@ export declare const NotificationList: {
|
|
|
8447
9750
|
channel_id?: string | undefined;
|
|
8448
9751
|
channel_type?: number | undefined;
|
|
8449
9752
|
avatar_url?: string | undefined;
|
|
8450
|
-
|
|
9753
|
+
channel?: ({
|
|
9754
|
+
clan_id?: string | undefined;
|
|
9755
|
+
parrent_id?: string | undefined;
|
|
9756
|
+
channel_id?: string | undefined;
|
|
9757
|
+
category_id?: string | undefined;
|
|
9758
|
+
category_name?: string | undefined;
|
|
9759
|
+
type?: number | undefined;
|
|
9760
|
+
creator_id?: string | undefined;
|
|
9761
|
+
channel_label?: string | undefined;
|
|
9762
|
+
channel_private?: number | undefined;
|
|
9763
|
+
channel_avatar?: string[] | undefined;
|
|
9764
|
+
user_id?: string[] | undefined;
|
|
9765
|
+
last_sent_message?: {
|
|
9766
|
+
id?: string | undefined;
|
|
9767
|
+
timestamp_seconds?: number | undefined;
|
|
9768
|
+
sender_id?: string | undefined;
|
|
9769
|
+
content?: string | undefined;
|
|
9770
|
+
attachment?: string | undefined;
|
|
9771
|
+
referece?: string | undefined;
|
|
9772
|
+
mention?: string | undefined;
|
|
9773
|
+
reaction?: string | undefined;
|
|
9774
|
+
repliers?: string[] | undefined;
|
|
9775
|
+
} | undefined;
|
|
9776
|
+
last_seen_message?: {
|
|
9777
|
+
id?: string | undefined;
|
|
9778
|
+
timestamp_seconds?: number | undefined;
|
|
9779
|
+
sender_id?: string | undefined;
|
|
9780
|
+
content?: string | undefined;
|
|
9781
|
+
attachment?: string | undefined;
|
|
9782
|
+
referece?: string | undefined;
|
|
9783
|
+
mention?: string | undefined;
|
|
9784
|
+
reaction?: string | undefined;
|
|
9785
|
+
repliers?: string[] | undefined;
|
|
9786
|
+
} | undefined;
|
|
9787
|
+
is_online?: boolean[] | undefined;
|
|
9788
|
+
meeting_code?: string | undefined;
|
|
9789
|
+
count_mess_unread?: number | undefined;
|
|
9790
|
+
active?: number | undefined;
|
|
9791
|
+
last_pin_message?: string | undefined;
|
|
9792
|
+
usernames?: string[] | undefined;
|
|
9793
|
+
creator_name?: string | undefined;
|
|
9794
|
+
create_time_seconds?: number | undefined;
|
|
9795
|
+
update_time_seconds?: number | undefined;
|
|
9796
|
+
metadata?: string[] | undefined;
|
|
9797
|
+
about_me?: string[] | undefined;
|
|
9798
|
+
clan_name?: string | undefined;
|
|
9799
|
+
app_url?: string | undefined;
|
|
9800
|
+
is_mute?: boolean | undefined;
|
|
9801
|
+
age_restricted?: number | undefined;
|
|
9802
|
+
topic?: string | undefined;
|
|
9803
|
+
e2ee?: number | undefined;
|
|
9804
|
+
display_names?: string[] | undefined;
|
|
9805
|
+
} & {
|
|
9806
|
+
clan_id?: string | undefined;
|
|
9807
|
+
parrent_id?: string | undefined;
|
|
9808
|
+
channel_id?: string | undefined;
|
|
9809
|
+
category_id?: string | undefined;
|
|
9810
|
+
category_name?: string | undefined;
|
|
9811
|
+
type?: number | undefined;
|
|
9812
|
+
creator_id?: string | undefined;
|
|
9813
|
+
channel_label?: string | undefined;
|
|
9814
|
+
channel_private?: number | undefined;
|
|
9815
|
+
channel_avatar?: (string[] & string[] & { [K_15 in Exclude<keyof I_1["notifications"][number]["channel"]["channel_avatar"], keyof string[]>]: never; }) | undefined;
|
|
9816
|
+
user_id?: (string[] & string[] & { [K_16 in Exclude<keyof I_1["notifications"][number]["channel"]["user_id"], keyof string[]>]: never; }) | undefined;
|
|
9817
|
+
last_sent_message?: ({
|
|
9818
|
+
id?: string | undefined;
|
|
9819
|
+
timestamp_seconds?: number | undefined;
|
|
9820
|
+
sender_id?: string | undefined;
|
|
9821
|
+
content?: string | undefined;
|
|
9822
|
+
attachment?: string | undefined;
|
|
9823
|
+
referece?: string | undefined;
|
|
9824
|
+
mention?: string | undefined;
|
|
9825
|
+
reaction?: string | undefined;
|
|
9826
|
+
repliers?: string[] | undefined;
|
|
9827
|
+
} & {
|
|
9828
|
+
id?: string | undefined;
|
|
9829
|
+
timestamp_seconds?: number | undefined;
|
|
9830
|
+
sender_id?: string | undefined;
|
|
9831
|
+
content?: string | undefined;
|
|
9832
|
+
attachment?: string | undefined;
|
|
9833
|
+
referece?: string | undefined;
|
|
9834
|
+
mention?: string | undefined;
|
|
9835
|
+
reaction?: string | undefined;
|
|
9836
|
+
repliers?: (string[] & string[] & { [K_17 in Exclude<keyof I_1["notifications"][number]["channel"]["last_sent_message"]["repliers"], keyof string[]>]: never; }) | undefined;
|
|
9837
|
+
} & { [K_18 in Exclude<keyof I_1["notifications"][number]["channel"]["last_sent_message"], keyof ChannelMessageHeader>]: never; }) | undefined;
|
|
9838
|
+
last_seen_message?: ({
|
|
9839
|
+
id?: string | undefined;
|
|
9840
|
+
timestamp_seconds?: number | undefined;
|
|
9841
|
+
sender_id?: string | undefined;
|
|
9842
|
+
content?: string | undefined;
|
|
9843
|
+
attachment?: string | undefined;
|
|
9844
|
+
referece?: string | undefined;
|
|
9845
|
+
mention?: string | undefined;
|
|
9846
|
+
reaction?: string | undefined;
|
|
9847
|
+
repliers?: string[] | undefined;
|
|
9848
|
+
} & {
|
|
9849
|
+
id?: string | undefined;
|
|
9850
|
+
timestamp_seconds?: number | undefined;
|
|
9851
|
+
sender_id?: string | undefined;
|
|
9852
|
+
content?: string | undefined;
|
|
9853
|
+
attachment?: string | undefined;
|
|
9854
|
+
referece?: string | undefined;
|
|
9855
|
+
mention?: string | undefined;
|
|
9856
|
+
reaction?: string | undefined;
|
|
9857
|
+
repliers?: (string[] & string[] & { [K_19 in Exclude<keyof I_1["notifications"][number]["channel"]["last_seen_message"]["repliers"], keyof string[]>]: never; }) | undefined;
|
|
9858
|
+
} & { [K_20 in Exclude<keyof I_1["notifications"][number]["channel"]["last_seen_message"], keyof ChannelMessageHeader>]: never; }) | undefined;
|
|
9859
|
+
is_online?: (boolean[] & boolean[] & { [K_21 in Exclude<keyof I_1["notifications"][number]["channel"]["is_online"], keyof boolean[]>]: never; }) | undefined;
|
|
9860
|
+
meeting_code?: string | undefined;
|
|
9861
|
+
count_mess_unread?: number | undefined;
|
|
9862
|
+
active?: number | undefined;
|
|
9863
|
+
last_pin_message?: string | undefined;
|
|
9864
|
+
usernames?: (string[] & string[] & { [K_22 in Exclude<keyof I_1["notifications"][number]["channel"]["usernames"], keyof string[]>]: never; }) | undefined;
|
|
9865
|
+
creator_name?: string | undefined;
|
|
9866
|
+
create_time_seconds?: number | undefined;
|
|
9867
|
+
update_time_seconds?: number | undefined;
|
|
9868
|
+
metadata?: (string[] & string[] & { [K_23 in Exclude<keyof I_1["notifications"][number]["channel"]["metadata"], keyof string[]>]: never; }) | undefined;
|
|
9869
|
+
about_me?: (string[] & string[] & { [K_24 in Exclude<keyof I_1["notifications"][number]["channel"]["about_me"], keyof string[]>]: never; }) | undefined;
|
|
9870
|
+
clan_name?: string | undefined;
|
|
9871
|
+
app_url?: string | undefined;
|
|
9872
|
+
is_mute?: boolean | undefined;
|
|
9873
|
+
age_restricted?: number | undefined;
|
|
9874
|
+
topic?: string | undefined;
|
|
9875
|
+
e2ee?: number | undefined;
|
|
9876
|
+
display_names?: (string[] & string[] & { [K_25 in Exclude<keyof I_1["notifications"][number]["channel"]["display_names"], keyof string[]>]: never; }) | undefined;
|
|
9877
|
+
} & { [K_26 in Exclude<keyof I_1["notifications"][number]["channel"], keyof ChannelDescription>]: never; }) | undefined;
|
|
9878
|
+
} & { [K_27 in Exclude<keyof I_1["notifications"][number], keyof Notification>]: never; })[] & { [K_28 in Exclude<keyof I_1["notifications"], keyof {
|
|
8451
9879
|
id?: string | undefined;
|
|
8452
9880
|
subject?: string | undefined;
|
|
8453
9881
|
content?: string | undefined;
|
|
@@ -8459,9 +9887,62 @@ export declare const NotificationList: {
|
|
|
8459
9887
|
channel_id?: string | undefined;
|
|
8460
9888
|
channel_type?: number | undefined;
|
|
8461
9889
|
avatar_url?: string | undefined;
|
|
9890
|
+
channel?: {
|
|
9891
|
+
clan_id?: string | undefined;
|
|
9892
|
+
parrent_id?: string | undefined;
|
|
9893
|
+
channel_id?: string | undefined;
|
|
9894
|
+
category_id?: string | undefined;
|
|
9895
|
+
category_name?: string | undefined;
|
|
9896
|
+
type?: number | undefined;
|
|
9897
|
+
creator_id?: string | undefined;
|
|
9898
|
+
channel_label?: string | undefined;
|
|
9899
|
+
channel_private?: number | undefined;
|
|
9900
|
+
channel_avatar?: string[] | undefined;
|
|
9901
|
+
user_id?: string[] | undefined;
|
|
9902
|
+
last_sent_message?: {
|
|
9903
|
+
id?: string | undefined;
|
|
9904
|
+
timestamp_seconds?: number | undefined;
|
|
9905
|
+
sender_id?: string | undefined;
|
|
9906
|
+
content?: string | undefined;
|
|
9907
|
+
attachment?: string | undefined;
|
|
9908
|
+
referece?: string | undefined;
|
|
9909
|
+
mention?: string | undefined;
|
|
9910
|
+
reaction?: string | undefined;
|
|
9911
|
+
repliers?: string[] | undefined;
|
|
9912
|
+
} | undefined;
|
|
9913
|
+
last_seen_message?: {
|
|
9914
|
+
id?: string | undefined;
|
|
9915
|
+
timestamp_seconds?: number | undefined;
|
|
9916
|
+
sender_id?: string | undefined;
|
|
9917
|
+
content?: string | undefined;
|
|
9918
|
+
attachment?: string | undefined;
|
|
9919
|
+
referece?: string | undefined;
|
|
9920
|
+
mention?: string | undefined;
|
|
9921
|
+
reaction?: string | undefined;
|
|
9922
|
+
repliers?: string[] | undefined;
|
|
9923
|
+
} | undefined;
|
|
9924
|
+
is_online?: boolean[] | undefined;
|
|
9925
|
+
meeting_code?: string | undefined;
|
|
9926
|
+
count_mess_unread?: number | undefined;
|
|
9927
|
+
active?: number | undefined;
|
|
9928
|
+
last_pin_message?: string | undefined;
|
|
9929
|
+
usernames?: string[] | undefined;
|
|
9930
|
+
creator_name?: string | undefined;
|
|
9931
|
+
create_time_seconds?: number | undefined;
|
|
9932
|
+
update_time_seconds?: number | undefined;
|
|
9933
|
+
metadata?: string[] | undefined;
|
|
9934
|
+
about_me?: string[] | undefined;
|
|
9935
|
+
clan_name?: string | undefined;
|
|
9936
|
+
app_url?: string | undefined;
|
|
9937
|
+
is_mute?: boolean | undefined;
|
|
9938
|
+
age_restricted?: number | undefined;
|
|
9939
|
+
topic?: string | undefined;
|
|
9940
|
+
e2ee?: number | undefined;
|
|
9941
|
+
display_names?: string[] | undefined;
|
|
9942
|
+
} | undefined;
|
|
8462
9943
|
}[]>]: never; }) | undefined;
|
|
8463
9944
|
cacheable_cursor?: string | undefined;
|
|
8464
|
-
} & { [
|
|
9945
|
+
} & { [K_29 in Exclude<keyof I_1, keyof NotificationList>]: never; }>(object: I_1): NotificationList;
|
|
8465
9946
|
};
|
|
8466
9947
|
export declare const PromoteGroupUsersRequest: {
|
|
8467
9948
|
encode(message: PromoteGroupUsersRequest, writer?: _m0.Writer): _m0.Writer;
|
|
@@ -9693,6 +11174,59 @@ export declare const InviteUserRes: {
|
|
|
9693
11174
|
channel_label?: string | undefined;
|
|
9694
11175
|
user_joined?: boolean | undefined;
|
|
9695
11176
|
expiry_time?: Date | undefined;
|
|
11177
|
+
channel_desc?: {
|
|
11178
|
+
clan_id?: string | undefined;
|
|
11179
|
+
parrent_id?: string | undefined;
|
|
11180
|
+
channel_id?: string | undefined;
|
|
11181
|
+
category_id?: string | undefined;
|
|
11182
|
+
category_name?: string | undefined;
|
|
11183
|
+
type?: number | undefined;
|
|
11184
|
+
creator_id?: string | undefined;
|
|
11185
|
+
channel_label?: string | undefined;
|
|
11186
|
+
channel_private?: number | undefined;
|
|
11187
|
+
channel_avatar?: string[] | undefined;
|
|
11188
|
+
user_id?: string[] | undefined;
|
|
11189
|
+
last_sent_message?: {
|
|
11190
|
+
id?: string | undefined;
|
|
11191
|
+
timestamp_seconds?: number | undefined;
|
|
11192
|
+
sender_id?: string | undefined;
|
|
11193
|
+
content?: string | undefined;
|
|
11194
|
+
attachment?: string | undefined;
|
|
11195
|
+
referece?: string | undefined;
|
|
11196
|
+
mention?: string | undefined;
|
|
11197
|
+
reaction?: string | undefined;
|
|
11198
|
+
repliers?: string[] | undefined;
|
|
11199
|
+
} | undefined;
|
|
11200
|
+
last_seen_message?: {
|
|
11201
|
+
id?: string | undefined;
|
|
11202
|
+
timestamp_seconds?: number | undefined;
|
|
11203
|
+
sender_id?: string | undefined;
|
|
11204
|
+
content?: string | undefined;
|
|
11205
|
+
attachment?: string | undefined;
|
|
11206
|
+
referece?: string | undefined;
|
|
11207
|
+
mention?: string | undefined;
|
|
11208
|
+
reaction?: string | undefined;
|
|
11209
|
+
repliers?: string[] | undefined;
|
|
11210
|
+
} | undefined;
|
|
11211
|
+
is_online?: boolean[] | undefined;
|
|
11212
|
+
meeting_code?: string | undefined;
|
|
11213
|
+
count_mess_unread?: number | undefined;
|
|
11214
|
+
active?: number | undefined;
|
|
11215
|
+
last_pin_message?: string | undefined;
|
|
11216
|
+
usernames?: string[] | undefined;
|
|
11217
|
+
creator_name?: string | undefined;
|
|
11218
|
+
create_time_seconds?: number | undefined;
|
|
11219
|
+
update_time_seconds?: number | undefined;
|
|
11220
|
+
metadata?: string[] | undefined;
|
|
11221
|
+
about_me?: string[] | undefined;
|
|
11222
|
+
clan_name?: string | undefined;
|
|
11223
|
+
app_url?: string | undefined;
|
|
11224
|
+
is_mute?: boolean | undefined;
|
|
11225
|
+
age_restricted?: number | undefined;
|
|
11226
|
+
topic?: string | undefined;
|
|
11227
|
+
e2ee?: number | undefined;
|
|
11228
|
+
display_names?: string[] | undefined;
|
|
11229
|
+
} | undefined;
|
|
9696
11230
|
} & {
|
|
9697
11231
|
clan_id?: string | undefined;
|
|
9698
11232
|
channel_id?: string | undefined;
|
|
@@ -9700,7 +11234,132 @@ export declare const InviteUserRes: {
|
|
|
9700
11234
|
channel_label?: string | undefined;
|
|
9701
11235
|
user_joined?: boolean | undefined;
|
|
9702
11236
|
expiry_time?: Date | undefined;
|
|
9703
|
-
|
|
11237
|
+
channel_desc?: ({
|
|
11238
|
+
clan_id?: string | undefined;
|
|
11239
|
+
parrent_id?: string | undefined;
|
|
11240
|
+
channel_id?: string | undefined;
|
|
11241
|
+
category_id?: string | undefined;
|
|
11242
|
+
category_name?: string | undefined;
|
|
11243
|
+
type?: number | undefined;
|
|
11244
|
+
creator_id?: string | undefined;
|
|
11245
|
+
channel_label?: string | undefined;
|
|
11246
|
+
channel_private?: number | undefined;
|
|
11247
|
+
channel_avatar?: string[] | undefined;
|
|
11248
|
+
user_id?: string[] | undefined;
|
|
11249
|
+
last_sent_message?: {
|
|
11250
|
+
id?: string | undefined;
|
|
11251
|
+
timestamp_seconds?: number | undefined;
|
|
11252
|
+
sender_id?: string | undefined;
|
|
11253
|
+
content?: string | undefined;
|
|
11254
|
+
attachment?: string | undefined;
|
|
11255
|
+
referece?: string | undefined;
|
|
11256
|
+
mention?: string | undefined;
|
|
11257
|
+
reaction?: string | undefined;
|
|
11258
|
+
repliers?: string[] | undefined;
|
|
11259
|
+
} | undefined;
|
|
11260
|
+
last_seen_message?: {
|
|
11261
|
+
id?: string | undefined;
|
|
11262
|
+
timestamp_seconds?: number | undefined;
|
|
11263
|
+
sender_id?: string | undefined;
|
|
11264
|
+
content?: string | undefined;
|
|
11265
|
+
attachment?: string | undefined;
|
|
11266
|
+
referece?: string | undefined;
|
|
11267
|
+
mention?: string | undefined;
|
|
11268
|
+
reaction?: string | undefined;
|
|
11269
|
+
repliers?: string[] | undefined;
|
|
11270
|
+
} | undefined;
|
|
11271
|
+
is_online?: boolean[] | undefined;
|
|
11272
|
+
meeting_code?: string | undefined;
|
|
11273
|
+
count_mess_unread?: number | undefined;
|
|
11274
|
+
active?: number | undefined;
|
|
11275
|
+
last_pin_message?: string | undefined;
|
|
11276
|
+
usernames?: string[] | undefined;
|
|
11277
|
+
creator_name?: string | undefined;
|
|
11278
|
+
create_time_seconds?: number | undefined;
|
|
11279
|
+
update_time_seconds?: number | undefined;
|
|
11280
|
+
metadata?: string[] | undefined;
|
|
11281
|
+
about_me?: string[] | undefined;
|
|
11282
|
+
clan_name?: string | undefined;
|
|
11283
|
+
app_url?: string | undefined;
|
|
11284
|
+
is_mute?: boolean | undefined;
|
|
11285
|
+
age_restricted?: number | undefined;
|
|
11286
|
+
topic?: string | undefined;
|
|
11287
|
+
e2ee?: number | undefined;
|
|
11288
|
+
display_names?: string[] | undefined;
|
|
11289
|
+
} & {
|
|
11290
|
+
clan_id?: string | undefined;
|
|
11291
|
+
parrent_id?: string | undefined;
|
|
11292
|
+
channel_id?: string | undefined;
|
|
11293
|
+
category_id?: string | undefined;
|
|
11294
|
+
category_name?: string | undefined;
|
|
11295
|
+
type?: number | undefined;
|
|
11296
|
+
creator_id?: string | undefined;
|
|
11297
|
+
channel_label?: string | undefined;
|
|
11298
|
+
channel_private?: number | undefined;
|
|
11299
|
+
channel_avatar?: (string[] & string[] & { [K in Exclude<keyof I["channel_desc"]["channel_avatar"], keyof string[]>]: never; }) | undefined;
|
|
11300
|
+
user_id?: (string[] & string[] & { [K_1 in Exclude<keyof I["channel_desc"]["user_id"], keyof string[]>]: never; }) | undefined;
|
|
11301
|
+
last_sent_message?: ({
|
|
11302
|
+
id?: string | undefined;
|
|
11303
|
+
timestamp_seconds?: number | undefined;
|
|
11304
|
+
sender_id?: string | undefined;
|
|
11305
|
+
content?: string | undefined;
|
|
11306
|
+
attachment?: string | undefined;
|
|
11307
|
+
referece?: string | undefined;
|
|
11308
|
+
mention?: string | undefined;
|
|
11309
|
+
reaction?: string | undefined;
|
|
11310
|
+
repliers?: string[] | undefined;
|
|
11311
|
+
} & {
|
|
11312
|
+
id?: string | undefined;
|
|
11313
|
+
timestamp_seconds?: number | undefined;
|
|
11314
|
+
sender_id?: string | undefined;
|
|
11315
|
+
content?: string | undefined;
|
|
11316
|
+
attachment?: string | undefined;
|
|
11317
|
+
referece?: string | undefined;
|
|
11318
|
+
mention?: string | undefined;
|
|
11319
|
+
reaction?: string | undefined;
|
|
11320
|
+
repliers?: (string[] & string[] & { [K_2 in Exclude<keyof I["channel_desc"]["last_sent_message"]["repliers"], keyof string[]>]: never; }) | undefined;
|
|
11321
|
+
} & { [K_3 in Exclude<keyof I["channel_desc"]["last_sent_message"], keyof ChannelMessageHeader>]: never; }) | undefined;
|
|
11322
|
+
last_seen_message?: ({
|
|
11323
|
+
id?: string | undefined;
|
|
11324
|
+
timestamp_seconds?: number | undefined;
|
|
11325
|
+
sender_id?: string | undefined;
|
|
11326
|
+
content?: string | undefined;
|
|
11327
|
+
attachment?: string | undefined;
|
|
11328
|
+
referece?: string | undefined;
|
|
11329
|
+
mention?: string | undefined;
|
|
11330
|
+
reaction?: string | undefined;
|
|
11331
|
+
repliers?: string[] | undefined;
|
|
11332
|
+
} & {
|
|
11333
|
+
id?: string | undefined;
|
|
11334
|
+
timestamp_seconds?: number | undefined;
|
|
11335
|
+
sender_id?: string | undefined;
|
|
11336
|
+
content?: string | undefined;
|
|
11337
|
+
attachment?: string | undefined;
|
|
11338
|
+
referece?: string | undefined;
|
|
11339
|
+
mention?: string | undefined;
|
|
11340
|
+
reaction?: string | undefined;
|
|
11341
|
+
repliers?: (string[] & string[] & { [K_4 in Exclude<keyof I["channel_desc"]["last_seen_message"]["repliers"], keyof string[]>]: never; }) | undefined;
|
|
11342
|
+
} & { [K_5 in Exclude<keyof I["channel_desc"]["last_seen_message"], keyof ChannelMessageHeader>]: never; }) | undefined;
|
|
11343
|
+
is_online?: (boolean[] & boolean[] & { [K_6 in Exclude<keyof I["channel_desc"]["is_online"], keyof boolean[]>]: never; }) | undefined;
|
|
11344
|
+
meeting_code?: string | undefined;
|
|
11345
|
+
count_mess_unread?: number | undefined;
|
|
11346
|
+
active?: number | undefined;
|
|
11347
|
+
last_pin_message?: string | undefined;
|
|
11348
|
+
usernames?: (string[] & string[] & { [K_7 in Exclude<keyof I["channel_desc"]["usernames"], keyof string[]>]: never; }) | undefined;
|
|
11349
|
+
creator_name?: string | undefined;
|
|
11350
|
+
create_time_seconds?: number | undefined;
|
|
11351
|
+
update_time_seconds?: number | undefined;
|
|
11352
|
+
metadata?: (string[] & string[] & { [K_8 in Exclude<keyof I["channel_desc"]["metadata"], keyof string[]>]: never; }) | undefined;
|
|
11353
|
+
about_me?: (string[] & string[] & { [K_9 in Exclude<keyof I["channel_desc"]["about_me"], keyof string[]>]: never; }) | undefined;
|
|
11354
|
+
clan_name?: string | undefined;
|
|
11355
|
+
app_url?: string | undefined;
|
|
11356
|
+
is_mute?: boolean | undefined;
|
|
11357
|
+
age_restricted?: number | undefined;
|
|
11358
|
+
topic?: string | undefined;
|
|
11359
|
+
e2ee?: number | undefined;
|
|
11360
|
+
display_names?: (string[] & string[] & { [K_10 in Exclude<keyof I["channel_desc"]["display_names"], keyof string[]>]: never; }) | undefined;
|
|
11361
|
+
} & { [K_11 in Exclude<keyof I["channel_desc"], keyof ChannelDescription>]: never; }) | undefined;
|
|
11362
|
+
} & { [K_12 in Exclude<keyof I, keyof InviteUserRes>]: never; }>(base?: I | undefined): InviteUserRes;
|
|
9704
11363
|
fromPartial<I_1 extends {
|
|
9705
11364
|
clan_id?: string | undefined;
|
|
9706
11365
|
channel_id?: string | undefined;
|
|
@@ -9708,6 +11367,59 @@ export declare const InviteUserRes: {
|
|
|
9708
11367
|
channel_label?: string | undefined;
|
|
9709
11368
|
user_joined?: boolean | undefined;
|
|
9710
11369
|
expiry_time?: Date | undefined;
|
|
11370
|
+
channel_desc?: {
|
|
11371
|
+
clan_id?: string | undefined;
|
|
11372
|
+
parrent_id?: string | undefined;
|
|
11373
|
+
channel_id?: string | undefined;
|
|
11374
|
+
category_id?: string | undefined;
|
|
11375
|
+
category_name?: string | undefined;
|
|
11376
|
+
type?: number | undefined;
|
|
11377
|
+
creator_id?: string | undefined;
|
|
11378
|
+
channel_label?: string | undefined;
|
|
11379
|
+
channel_private?: number | undefined;
|
|
11380
|
+
channel_avatar?: string[] | undefined;
|
|
11381
|
+
user_id?: string[] | undefined;
|
|
11382
|
+
last_sent_message?: {
|
|
11383
|
+
id?: string | undefined;
|
|
11384
|
+
timestamp_seconds?: number | undefined;
|
|
11385
|
+
sender_id?: string | undefined;
|
|
11386
|
+
content?: string | undefined;
|
|
11387
|
+
attachment?: string | undefined;
|
|
11388
|
+
referece?: string | undefined;
|
|
11389
|
+
mention?: string | undefined;
|
|
11390
|
+
reaction?: string | undefined;
|
|
11391
|
+
repliers?: string[] | undefined;
|
|
11392
|
+
} | undefined;
|
|
11393
|
+
last_seen_message?: {
|
|
11394
|
+
id?: string | undefined;
|
|
11395
|
+
timestamp_seconds?: number | undefined;
|
|
11396
|
+
sender_id?: string | undefined;
|
|
11397
|
+
content?: string | undefined;
|
|
11398
|
+
attachment?: string | undefined;
|
|
11399
|
+
referece?: string | undefined;
|
|
11400
|
+
mention?: string | undefined;
|
|
11401
|
+
reaction?: string | undefined;
|
|
11402
|
+
repliers?: string[] | undefined;
|
|
11403
|
+
} | undefined;
|
|
11404
|
+
is_online?: boolean[] | undefined;
|
|
11405
|
+
meeting_code?: string | undefined;
|
|
11406
|
+
count_mess_unread?: number | undefined;
|
|
11407
|
+
active?: number | undefined;
|
|
11408
|
+
last_pin_message?: string | undefined;
|
|
11409
|
+
usernames?: string[] | undefined;
|
|
11410
|
+
creator_name?: string | undefined;
|
|
11411
|
+
create_time_seconds?: number | undefined;
|
|
11412
|
+
update_time_seconds?: number | undefined;
|
|
11413
|
+
metadata?: string[] | undefined;
|
|
11414
|
+
about_me?: string[] | undefined;
|
|
11415
|
+
clan_name?: string | undefined;
|
|
11416
|
+
app_url?: string | undefined;
|
|
11417
|
+
is_mute?: boolean | undefined;
|
|
11418
|
+
age_restricted?: number | undefined;
|
|
11419
|
+
topic?: string | undefined;
|
|
11420
|
+
e2ee?: number | undefined;
|
|
11421
|
+
display_names?: string[] | undefined;
|
|
11422
|
+
} | undefined;
|
|
9711
11423
|
} & {
|
|
9712
11424
|
clan_id?: string | undefined;
|
|
9713
11425
|
channel_id?: string | undefined;
|
|
@@ -9715,7 +11427,132 @@ export declare const InviteUserRes: {
|
|
|
9715
11427
|
channel_label?: string | undefined;
|
|
9716
11428
|
user_joined?: boolean | undefined;
|
|
9717
11429
|
expiry_time?: Date | undefined;
|
|
9718
|
-
|
|
11430
|
+
channel_desc?: ({
|
|
11431
|
+
clan_id?: string | undefined;
|
|
11432
|
+
parrent_id?: string | undefined;
|
|
11433
|
+
channel_id?: string | undefined;
|
|
11434
|
+
category_id?: string | undefined;
|
|
11435
|
+
category_name?: string | undefined;
|
|
11436
|
+
type?: number | undefined;
|
|
11437
|
+
creator_id?: string | undefined;
|
|
11438
|
+
channel_label?: string | undefined;
|
|
11439
|
+
channel_private?: number | undefined;
|
|
11440
|
+
channel_avatar?: string[] | undefined;
|
|
11441
|
+
user_id?: string[] | undefined;
|
|
11442
|
+
last_sent_message?: {
|
|
11443
|
+
id?: string | undefined;
|
|
11444
|
+
timestamp_seconds?: number | undefined;
|
|
11445
|
+
sender_id?: string | undefined;
|
|
11446
|
+
content?: string | undefined;
|
|
11447
|
+
attachment?: string | undefined;
|
|
11448
|
+
referece?: string | undefined;
|
|
11449
|
+
mention?: string | undefined;
|
|
11450
|
+
reaction?: string | undefined;
|
|
11451
|
+
repliers?: string[] | undefined;
|
|
11452
|
+
} | undefined;
|
|
11453
|
+
last_seen_message?: {
|
|
11454
|
+
id?: string | undefined;
|
|
11455
|
+
timestamp_seconds?: number | undefined;
|
|
11456
|
+
sender_id?: string | undefined;
|
|
11457
|
+
content?: string | undefined;
|
|
11458
|
+
attachment?: string | undefined;
|
|
11459
|
+
referece?: string | undefined;
|
|
11460
|
+
mention?: string | undefined;
|
|
11461
|
+
reaction?: string | undefined;
|
|
11462
|
+
repliers?: string[] | undefined;
|
|
11463
|
+
} | undefined;
|
|
11464
|
+
is_online?: boolean[] | undefined;
|
|
11465
|
+
meeting_code?: string | undefined;
|
|
11466
|
+
count_mess_unread?: number | undefined;
|
|
11467
|
+
active?: number | undefined;
|
|
11468
|
+
last_pin_message?: string | undefined;
|
|
11469
|
+
usernames?: string[] | undefined;
|
|
11470
|
+
creator_name?: string | undefined;
|
|
11471
|
+
create_time_seconds?: number | undefined;
|
|
11472
|
+
update_time_seconds?: number | undefined;
|
|
11473
|
+
metadata?: string[] | undefined;
|
|
11474
|
+
about_me?: string[] | undefined;
|
|
11475
|
+
clan_name?: string | undefined;
|
|
11476
|
+
app_url?: string | undefined;
|
|
11477
|
+
is_mute?: boolean | undefined;
|
|
11478
|
+
age_restricted?: number | undefined;
|
|
11479
|
+
topic?: string | undefined;
|
|
11480
|
+
e2ee?: number | undefined;
|
|
11481
|
+
display_names?: string[] | undefined;
|
|
11482
|
+
} & {
|
|
11483
|
+
clan_id?: string | undefined;
|
|
11484
|
+
parrent_id?: string | undefined;
|
|
11485
|
+
channel_id?: string | undefined;
|
|
11486
|
+
category_id?: string | undefined;
|
|
11487
|
+
category_name?: string | undefined;
|
|
11488
|
+
type?: number | undefined;
|
|
11489
|
+
creator_id?: string | undefined;
|
|
11490
|
+
channel_label?: string | undefined;
|
|
11491
|
+
channel_private?: number | undefined;
|
|
11492
|
+
channel_avatar?: (string[] & string[] & { [K_13 in Exclude<keyof I_1["channel_desc"]["channel_avatar"], keyof string[]>]: never; }) | undefined;
|
|
11493
|
+
user_id?: (string[] & string[] & { [K_14 in Exclude<keyof I_1["channel_desc"]["user_id"], keyof string[]>]: never; }) | undefined;
|
|
11494
|
+
last_sent_message?: ({
|
|
11495
|
+
id?: string | undefined;
|
|
11496
|
+
timestamp_seconds?: number | undefined;
|
|
11497
|
+
sender_id?: string | undefined;
|
|
11498
|
+
content?: string | undefined;
|
|
11499
|
+
attachment?: string | undefined;
|
|
11500
|
+
referece?: string | undefined;
|
|
11501
|
+
mention?: string | undefined;
|
|
11502
|
+
reaction?: string | undefined;
|
|
11503
|
+
repliers?: string[] | undefined;
|
|
11504
|
+
} & {
|
|
11505
|
+
id?: string | undefined;
|
|
11506
|
+
timestamp_seconds?: number | undefined;
|
|
11507
|
+
sender_id?: string | undefined;
|
|
11508
|
+
content?: string | undefined;
|
|
11509
|
+
attachment?: string | undefined;
|
|
11510
|
+
referece?: string | undefined;
|
|
11511
|
+
mention?: string | undefined;
|
|
11512
|
+
reaction?: string | undefined;
|
|
11513
|
+
repliers?: (string[] & string[] & { [K_15 in Exclude<keyof I_1["channel_desc"]["last_sent_message"]["repliers"], keyof string[]>]: never; }) | undefined;
|
|
11514
|
+
} & { [K_16 in Exclude<keyof I_1["channel_desc"]["last_sent_message"], keyof ChannelMessageHeader>]: never; }) | undefined;
|
|
11515
|
+
last_seen_message?: ({
|
|
11516
|
+
id?: string | undefined;
|
|
11517
|
+
timestamp_seconds?: number | undefined;
|
|
11518
|
+
sender_id?: string | undefined;
|
|
11519
|
+
content?: string | undefined;
|
|
11520
|
+
attachment?: string | undefined;
|
|
11521
|
+
referece?: string | undefined;
|
|
11522
|
+
mention?: string | undefined;
|
|
11523
|
+
reaction?: string | undefined;
|
|
11524
|
+
repliers?: string[] | undefined;
|
|
11525
|
+
} & {
|
|
11526
|
+
id?: string | undefined;
|
|
11527
|
+
timestamp_seconds?: number | undefined;
|
|
11528
|
+
sender_id?: string | undefined;
|
|
11529
|
+
content?: string | undefined;
|
|
11530
|
+
attachment?: string | undefined;
|
|
11531
|
+
referece?: string | undefined;
|
|
11532
|
+
mention?: string | undefined;
|
|
11533
|
+
reaction?: string | undefined;
|
|
11534
|
+
repliers?: (string[] & string[] & { [K_17 in Exclude<keyof I_1["channel_desc"]["last_seen_message"]["repliers"], keyof string[]>]: never; }) | undefined;
|
|
11535
|
+
} & { [K_18 in Exclude<keyof I_1["channel_desc"]["last_seen_message"], keyof ChannelMessageHeader>]: never; }) | undefined;
|
|
11536
|
+
is_online?: (boolean[] & boolean[] & { [K_19 in Exclude<keyof I_1["channel_desc"]["is_online"], keyof boolean[]>]: never; }) | undefined;
|
|
11537
|
+
meeting_code?: string | undefined;
|
|
11538
|
+
count_mess_unread?: number | undefined;
|
|
11539
|
+
active?: number | undefined;
|
|
11540
|
+
last_pin_message?: string | undefined;
|
|
11541
|
+
usernames?: (string[] & string[] & { [K_20 in Exclude<keyof I_1["channel_desc"]["usernames"], keyof string[]>]: never; }) | undefined;
|
|
11542
|
+
creator_name?: string | undefined;
|
|
11543
|
+
create_time_seconds?: number | undefined;
|
|
11544
|
+
update_time_seconds?: number | undefined;
|
|
11545
|
+
metadata?: (string[] & string[] & { [K_21 in Exclude<keyof I_1["channel_desc"]["metadata"], keyof string[]>]: never; }) | undefined;
|
|
11546
|
+
about_me?: (string[] & string[] & { [K_22 in Exclude<keyof I_1["channel_desc"]["about_me"], keyof string[]>]: never; }) | undefined;
|
|
11547
|
+
clan_name?: string | undefined;
|
|
11548
|
+
app_url?: string | undefined;
|
|
11549
|
+
is_mute?: boolean | undefined;
|
|
11550
|
+
age_restricted?: number | undefined;
|
|
11551
|
+
topic?: string | undefined;
|
|
11552
|
+
e2ee?: number | undefined;
|
|
11553
|
+
display_names?: (string[] & string[] & { [K_23 in Exclude<keyof I_1["channel_desc"]["display_names"], keyof string[]>]: never; }) | undefined;
|
|
11554
|
+
} & { [K_24 in Exclude<keyof I_1["channel_desc"], keyof ChannelDescription>]: never; }) | undefined;
|
|
11555
|
+
} & { [K_25 in Exclude<keyof I_1, keyof InviteUserRes>]: never; }>(object: I_1): InviteUserRes;
|
|
9719
11556
|
};
|
|
9720
11557
|
export declare const JoinClanChannelRequest: {
|
|
9721
11558
|
encode(message: JoinClanChannelRequest, writer?: _m0.Writer): _m0.Writer;
|
|
@@ -10183,7 +12020,7 @@ export declare const ChannelDescription: {
|
|
|
10183
12020
|
count_mess_unread?: number | undefined;
|
|
10184
12021
|
active?: number | undefined;
|
|
10185
12022
|
last_pin_message?: string | undefined;
|
|
10186
|
-
usernames?: string | undefined;
|
|
12023
|
+
usernames?: string[] | undefined;
|
|
10187
12024
|
creator_name?: string | undefined;
|
|
10188
12025
|
create_time_seconds?: number | undefined;
|
|
10189
12026
|
update_time_seconds?: number | undefined;
|
|
@@ -10195,6 +12032,7 @@ export declare const ChannelDescription: {
|
|
|
10195
12032
|
age_restricted?: number | undefined;
|
|
10196
12033
|
topic?: string | undefined;
|
|
10197
12034
|
e2ee?: number | undefined;
|
|
12035
|
+
display_names?: string[] | undefined;
|
|
10198
12036
|
} & {
|
|
10199
12037
|
clan_id?: string | undefined;
|
|
10200
12038
|
parrent_id?: string | undefined;
|
|
@@ -10254,19 +12092,20 @@ export declare const ChannelDescription: {
|
|
|
10254
12092
|
count_mess_unread?: number | undefined;
|
|
10255
12093
|
active?: number | undefined;
|
|
10256
12094
|
last_pin_message?: string | undefined;
|
|
10257
|
-
usernames?: string | undefined;
|
|
12095
|
+
usernames?: (string[] & string[] & { [K_7 in Exclude<keyof I["usernames"], keyof string[]>]: never; }) | undefined;
|
|
10258
12096
|
creator_name?: string | undefined;
|
|
10259
12097
|
create_time_seconds?: number | undefined;
|
|
10260
12098
|
update_time_seconds?: number | undefined;
|
|
10261
|
-
metadata?: (string[] & string[] & { [
|
|
10262
|
-
about_me?: (string[] & string[] & { [
|
|
12099
|
+
metadata?: (string[] & string[] & { [K_8 in Exclude<keyof I["metadata"], keyof string[]>]: never; }) | undefined;
|
|
12100
|
+
about_me?: (string[] & string[] & { [K_9 in Exclude<keyof I["about_me"], keyof string[]>]: never; }) | undefined;
|
|
10263
12101
|
clan_name?: string | undefined;
|
|
10264
12102
|
app_url?: string | undefined;
|
|
10265
12103
|
is_mute?: boolean | undefined;
|
|
10266
12104
|
age_restricted?: number | undefined;
|
|
10267
12105
|
topic?: string | undefined;
|
|
10268
12106
|
e2ee?: number | undefined;
|
|
10269
|
-
|
|
12107
|
+
display_names?: (string[] & string[] & { [K_10 in Exclude<keyof I["display_names"], keyof string[]>]: never; }) | undefined;
|
|
12108
|
+
} & { [K_11 in Exclude<keyof I, keyof ChannelDescription>]: never; }>(base?: I | undefined): ChannelDescription;
|
|
10270
12109
|
fromPartial<I_1 extends {
|
|
10271
12110
|
clan_id?: string | undefined;
|
|
10272
12111
|
parrent_id?: string | undefined;
|
|
@@ -10306,7 +12145,7 @@ export declare const ChannelDescription: {
|
|
|
10306
12145
|
count_mess_unread?: number | undefined;
|
|
10307
12146
|
active?: number | undefined;
|
|
10308
12147
|
last_pin_message?: string | undefined;
|
|
10309
|
-
usernames?: string | undefined;
|
|
12148
|
+
usernames?: string[] | undefined;
|
|
10310
12149
|
creator_name?: string | undefined;
|
|
10311
12150
|
create_time_seconds?: number | undefined;
|
|
10312
12151
|
update_time_seconds?: number | undefined;
|
|
@@ -10318,6 +12157,7 @@ export declare const ChannelDescription: {
|
|
|
10318
12157
|
age_restricted?: number | undefined;
|
|
10319
12158
|
topic?: string | undefined;
|
|
10320
12159
|
e2ee?: number | undefined;
|
|
12160
|
+
display_names?: string[] | undefined;
|
|
10321
12161
|
} & {
|
|
10322
12162
|
clan_id?: string | undefined;
|
|
10323
12163
|
parrent_id?: string | undefined;
|
|
@@ -10328,8 +12168,8 @@ export declare const ChannelDescription: {
|
|
|
10328
12168
|
creator_id?: string | undefined;
|
|
10329
12169
|
channel_label?: string | undefined;
|
|
10330
12170
|
channel_private?: number | undefined;
|
|
10331
|
-
channel_avatar?: (string[] & string[] & { [
|
|
10332
|
-
user_id?: (string[] & string[] & { [
|
|
12171
|
+
channel_avatar?: (string[] & string[] & { [K_12 in Exclude<keyof I_1["channel_avatar"], keyof string[]>]: never; }) | undefined;
|
|
12172
|
+
user_id?: (string[] & string[] & { [K_13 in Exclude<keyof I_1["user_id"], keyof string[]>]: never; }) | undefined;
|
|
10333
12173
|
last_sent_message?: ({
|
|
10334
12174
|
id?: string | undefined;
|
|
10335
12175
|
timestamp_seconds?: number | undefined;
|
|
@@ -10349,8 +12189,8 @@ export declare const ChannelDescription: {
|
|
|
10349
12189
|
referece?: string | undefined;
|
|
10350
12190
|
mention?: string | undefined;
|
|
10351
12191
|
reaction?: string | undefined;
|
|
10352
|
-
repliers?: (string[] & string[] & { [
|
|
10353
|
-
} & { [
|
|
12192
|
+
repliers?: (string[] & string[] & { [K_14 in Exclude<keyof I_1["last_sent_message"]["repliers"], keyof string[]>]: never; }) | undefined;
|
|
12193
|
+
} & { [K_15 in Exclude<keyof I_1["last_sent_message"], keyof ChannelMessageHeader>]: never; }) | undefined;
|
|
10354
12194
|
last_seen_message?: ({
|
|
10355
12195
|
id?: string | undefined;
|
|
10356
12196
|
timestamp_seconds?: number | undefined;
|
|
@@ -10370,26 +12210,27 @@ export declare const ChannelDescription: {
|
|
|
10370
12210
|
referece?: string | undefined;
|
|
10371
12211
|
mention?: string | undefined;
|
|
10372
12212
|
reaction?: string | undefined;
|
|
10373
|
-
repliers?: (string[] & string[] & { [
|
|
10374
|
-
} & { [
|
|
10375
|
-
is_online?: (boolean[] & boolean[] & { [
|
|
12213
|
+
repliers?: (string[] & string[] & { [K_16 in Exclude<keyof I_1["last_seen_message"]["repliers"], keyof string[]>]: never; }) | undefined;
|
|
12214
|
+
} & { [K_17 in Exclude<keyof I_1["last_seen_message"], keyof ChannelMessageHeader>]: never; }) | undefined;
|
|
12215
|
+
is_online?: (boolean[] & boolean[] & { [K_18 in Exclude<keyof I_1["is_online"], keyof boolean[]>]: never; }) | undefined;
|
|
10376
12216
|
meeting_code?: string | undefined;
|
|
10377
12217
|
count_mess_unread?: number | undefined;
|
|
10378
12218
|
active?: number | undefined;
|
|
10379
12219
|
last_pin_message?: string | undefined;
|
|
10380
|
-
usernames?: string | undefined;
|
|
12220
|
+
usernames?: (string[] & string[] & { [K_19 in Exclude<keyof I_1["usernames"], keyof string[]>]: never; }) | undefined;
|
|
10381
12221
|
creator_name?: string | undefined;
|
|
10382
12222
|
create_time_seconds?: number | undefined;
|
|
10383
12223
|
update_time_seconds?: number | undefined;
|
|
10384
|
-
metadata?: (string[] & string[] & { [
|
|
10385
|
-
about_me?: (string[] & string[] & { [
|
|
12224
|
+
metadata?: (string[] & string[] & { [K_20 in Exclude<keyof I_1["metadata"], keyof string[]>]: never; }) | undefined;
|
|
12225
|
+
about_me?: (string[] & string[] & { [K_21 in Exclude<keyof I_1["about_me"], keyof string[]>]: never; }) | undefined;
|
|
10386
12226
|
clan_name?: string | undefined;
|
|
10387
12227
|
app_url?: string | undefined;
|
|
10388
12228
|
is_mute?: boolean | undefined;
|
|
10389
12229
|
age_restricted?: number | undefined;
|
|
10390
12230
|
topic?: string | undefined;
|
|
10391
12231
|
e2ee?: number | undefined;
|
|
10392
|
-
|
|
12232
|
+
display_names?: (string[] & string[] & { [K_22 in Exclude<keyof I_1["display_names"], keyof string[]>]: never; }) | undefined;
|
|
12233
|
+
} & { [K_23 in Exclude<keyof I_1, keyof ChannelDescription>]: never; }>(object: I_1): ChannelDescription;
|
|
10393
12234
|
};
|
|
10394
12235
|
export declare const ChannelDescList: {
|
|
10395
12236
|
encode(message: ChannelDescList, writer?: _m0.Writer): _m0.Writer;
|
|
@@ -10436,7 +12277,7 @@ export declare const ChannelDescList: {
|
|
|
10436
12277
|
count_mess_unread?: number | undefined;
|
|
10437
12278
|
active?: number | undefined;
|
|
10438
12279
|
last_pin_message?: string | undefined;
|
|
10439
|
-
usernames?: string | undefined;
|
|
12280
|
+
usernames?: string[] | undefined;
|
|
10440
12281
|
creator_name?: string | undefined;
|
|
10441
12282
|
create_time_seconds?: number | undefined;
|
|
10442
12283
|
update_time_seconds?: number | undefined;
|
|
@@ -10448,10 +12289,12 @@ export declare const ChannelDescList: {
|
|
|
10448
12289
|
age_restricted?: number | undefined;
|
|
10449
12290
|
topic?: string | undefined;
|
|
10450
12291
|
e2ee?: number | undefined;
|
|
12292
|
+
display_names?: string[] | undefined;
|
|
10451
12293
|
}[] | undefined;
|
|
10452
12294
|
next_cursor?: string | undefined;
|
|
10453
12295
|
prev_cursor?: string | undefined;
|
|
10454
12296
|
cacheable_cursor?: string | undefined;
|
|
12297
|
+
page?: number | undefined;
|
|
10455
12298
|
} & {
|
|
10456
12299
|
channeldesc?: ({
|
|
10457
12300
|
clan_id?: string | undefined;
|
|
@@ -10492,7 +12335,7 @@ export declare const ChannelDescList: {
|
|
|
10492
12335
|
count_mess_unread?: number | undefined;
|
|
10493
12336
|
active?: number | undefined;
|
|
10494
12337
|
last_pin_message?: string | undefined;
|
|
10495
|
-
usernames?: string | undefined;
|
|
12338
|
+
usernames?: string[] | undefined;
|
|
10496
12339
|
creator_name?: string | undefined;
|
|
10497
12340
|
create_time_seconds?: number | undefined;
|
|
10498
12341
|
update_time_seconds?: number | undefined;
|
|
@@ -10504,6 +12347,7 @@ export declare const ChannelDescList: {
|
|
|
10504
12347
|
age_restricted?: number | undefined;
|
|
10505
12348
|
topic?: string | undefined;
|
|
10506
12349
|
e2ee?: number | undefined;
|
|
12350
|
+
display_names?: string[] | undefined;
|
|
10507
12351
|
}[] & ({
|
|
10508
12352
|
clan_id?: string | undefined;
|
|
10509
12353
|
parrent_id?: string | undefined;
|
|
@@ -10543,7 +12387,7 @@ export declare const ChannelDescList: {
|
|
|
10543
12387
|
count_mess_unread?: number | undefined;
|
|
10544
12388
|
active?: number | undefined;
|
|
10545
12389
|
last_pin_message?: string | undefined;
|
|
10546
|
-
usernames?: string | undefined;
|
|
12390
|
+
usernames?: string[] | undefined;
|
|
10547
12391
|
creator_name?: string | undefined;
|
|
10548
12392
|
create_time_seconds?: number | undefined;
|
|
10549
12393
|
update_time_seconds?: number | undefined;
|
|
@@ -10555,6 +12399,7 @@ export declare const ChannelDescList: {
|
|
|
10555
12399
|
age_restricted?: number | undefined;
|
|
10556
12400
|
topic?: string | undefined;
|
|
10557
12401
|
e2ee?: number | undefined;
|
|
12402
|
+
display_names?: string[] | undefined;
|
|
10558
12403
|
} & {
|
|
10559
12404
|
clan_id?: string | undefined;
|
|
10560
12405
|
parrent_id?: string | undefined;
|
|
@@ -10614,19 +12459,20 @@ export declare const ChannelDescList: {
|
|
|
10614
12459
|
count_mess_unread?: number | undefined;
|
|
10615
12460
|
active?: number | undefined;
|
|
10616
12461
|
last_pin_message?: string | undefined;
|
|
10617
|
-
usernames?: string | undefined;
|
|
12462
|
+
usernames?: (string[] & string[] & { [K_7 in Exclude<keyof I["channeldesc"][number]["usernames"], keyof string[]>]: never; }) | undefined;
|
|
10618
12463
|
creator_name?: string | undefined;
|
|
10619
12464
|
create_time_seconds?: number | undefined;
|
|
10620
12465
|
update_time_seconds?: number | undefined;
|
|
10621
|
-
metadata?: (string[] & string[] & { [
|
|
10622
|
-
about_me?: (string[] & string[] & { [
|
|
12466
|
+
metadata?: (string[] & string[] & { [K_8 in Exclude<keyof I["channeldesc"][number]["metadata"], keyof string[]>]: never; }) | undefined;
|
|
12467
|
+
about_me?: (string[] & string[] & { [K_9 in Exclude<keyof I["channeldesc"][number]["about_me"], keyof string[]>]: never; }) | undefined;
|
|
10623
12468
|
clan_name?: string | undefined;
|
|
10624
12469
|
app_url?: string | undefined;
|
|
10625
12470
|
is_mute?: boolean | undefined;
|
|
10626
12471
|
age_restricted?: number | undefined;
|
|
10627
12472
|
topic?: string | undefined;
|
|
10628
12473
|
e2ee?: number | undefined;
|
|
10629
|
-
|
|
12474
|
+
display_names?: (string[] & string[] & { [K_10 in Exclude<keyof I["channeldesc"][number]["display_names"], keyof string[]>]: never; }) | undefined;
|
|
12475
|
+
} & { [K_11 in Exclude<keyof I["channeldesc"][number], keyof ChannelDescription>]: never; })[] & { [K_12 in Exclude<keyof I["channeldesc"], keyof {
|
|
10630
12476
|
clan_id?: string | undefined;
|
|
10631
12477
|
parrent_id?: string | undefined;
|
|
10632
12478
|
channel_id?: string | undefined;
|
|
@@ -10665,7 +12511,7 @@ export declare const ChannelDescList: {
|
|
|
10665
12511
|
count_mess_unread?: number | undefined;
|
|
10666
12512
|
active?: number | undefined;
|
|
10667
12513
|
last_pin_message?: string | undefined;
|
|
10668
|
-
usernames?: string | undefined;
|
|
12514
|
+
usernames?: string[] | undefined;
|
|
10669
12515
|
creator_name?: string | undefined;
|
|
10670
12516
|
create_time_seconds?: number | undefined;
|
|
10671
12517
|
update_time_seconds?: number | undefined;
|
|
@@ -10677,11 +12523,13 @@ export declare const ChannelDescList: {
|
|
|
10677
12523
|
age_restricted?: number | undefined;
|
|
10678
12524
|
topic?: string | undefined;
|
|
10679
12525
|
e2ee?: number | undefined;
|
|
12526
|
+
display_names?: string[] | undefined;
|
|
10680
12527
|
}[]>]: never; }) | undefined;
|
|
10681
12528
|
next_cursor?: string | undefined;
|
|
10682
12529
|
prev_cursor?: string | undefined;
|
|
10683
12530
|
cacheable_cursor?: string | undefined;
|
|
10684
|
-
|
|
12531
|
+
page?: number | undefined;
|
|
12532
|
+
} & { [K_13 in Exclude<keyof I, keyof ChannelDescList>]: never; }>(base?: I | undefined): ChannelDescList;
|
|
10685
12533
|
fromPartial<I_1 extends {
|
|
10686
12534
|
channeldesc?: {
|
|
10687
12535
|
clan_id?: string | undefined;
|
|
@@ -10722,7 +12570,7 @@ export declare const ChannelDescList: {
|
|
|
10722
12570
|
count_mess_unread?: number | undefined;
|
|
10723
12571
|
active?: number | undefined;
|
|
10724
12572
|
last_pin_message?: string | undefined;
|
|
10725
|
-
usernames?: string | undefined;
|
|
12573
|
+
usernames?: string[] | undefined;
|
|
10726
12574
|
creator_name?: string | undefined;
|
|
10727
12575
|
create_time_seconds?: number | undefined;
|
|
10728
12576
|
update_time_seconds?: number | undefined;
|
|
@@ -10734,10 +12582,12 @@ export declare const ChannelDescList: {
|
|
|
10734
12582
|
age_restricted?: number | undefined;
|
|
10735
12583
|
topic?: string | undefined;
|
|
10736
12584
|
e2ee?: number | undefined;
|
|
12585
|
+
display_names?: string[] | undefined;
|
|
10737
12586
|
}[] | undefined;
|
|
10738
12587
|
next_cursor?: string | undefined;
|
|
10739
12588
|
prev_cursor?: string | undefined;
|
|
10740
12589
|
cacheable_cursor?: string | undefined;
|
|
12590
|
+
page?: number | undefined;
|
|
10741
12591
|
} & {
|
|
10742
12592
|
channeldesc?: ({
|
|
10743
12593
|
clan_id?: string | undefined;
|
|
@@ -10778,7 +12628,7 @@ export declare const ChannelDescList: {
|
|
|
10778
12628
|
count_mess_unread?: number | undefined;
|
|
10779
12629
|
active?: number | undefined;
|
|
10780
12630
|
last_pin_message?: string | undefined;
|
|
10781
|
-
usernames?: string | undefined;
|
|
12631
|
+
usernames?: string[] | undefined;
|
|
10782
12632
|
creator_name?: string | undefined;
|
|
10783
12633
|
create_time_seconds?: number | undefined;
|
|
10784
12634
|
update_time_seconds?: number | undefined;
|
|
@@ -10790,6 +12640,7 @@ export declare const ChannelDescList: {
|
|
|
10790
12640
|
age_restricted?: number | undefined;
|
|
10791
12641
|
topic?: string | undefined;
|
|
10792
12642
|
e2ee?: number | undefined;
|
|
12643
|
+
display_names?: string[] | undefined;
|
|
10793
12644
|
}[] & ({
|
|
10794
12645
|
clan_id?: string | undefined;
|
|
10795
12646
|
parrent_id?: string | undefined;
|
|
@@ -10829,7 +12680,7 @@ export declare const ChannelDescList: {
|
|
|
10829
12680
|
count_mess_unread?: number | undefined;
|
|
10830
12681
|
active?: number | undefined;
|
|
10831
12682
|
last_pin_message?: string | undefined;
|
|
10832
|
-
usernames?: string | undefined;
|
|
12683
|
+
usernames?: string[] | undefined;
|
|
10833
12684
|
creator_name?: string | undefined;
|
|
10834
12685
|
create_time_seconds?: number | undefined;
|
|
10835
12686
|
update_time_seconds?: number | undefined;
|
|
@@ -10841,6 +12692,7 @@ export declare const ChannelDescList: {
|
|
|
10841
12692
|
age_restricted?: number | undefined;
|
|
10842
12693
|
topic?: string | undefined;
|
|
10843
12694
|
e2ee?: number | undefined;
|
|
12695
|
+
display_names?: string[] | undefined;
|
|
10844
12696
|
} & {
|
|
10845
12697
|
clan_id?: string | undefined;
|
|
10846
12698
|
parrent_id?: string | undefined;
|
|
@@ -10851,8 +12703,8 @@ export declare const ChannelDescList: {
|
|
|
10851
12703
|
creator_id?: string | undefined;
|
|
10852
12704
|
channel_label?: string | undefined;
|
|
10853
12705
|
channel_private?: number | undefined;
|
|
10854
|
-
channel_avatar?: (string[] & string[] & { [
|
|
10855
|
-
user_id?: (string[] & string[] & { [
|
|
12706
|
+
channel_avatar?: (string[] & string[] & { [K_14 in Exclude<keyof I_1["channeldesc"][number]["channel_avatar"], keyof string[]>]: never; }) | undefined;
|
|
12707
|
+
user_id?: (string[] & string[] & { [K_15 in Exclude<keyof I_1["channeldesc"][number]["user_id"], keyof string[]>]: never; }) | undefined;
|
|
10856
12708
|
last_sent_message?: ({
|
|
10857
12709
|
id?: string | undefined;
|
|
10858
12710
|
timestamp_seconds?: number | undefined;
|
|
@@ -10872,8 +12724,8 @@ export declare const ChannelDescList: {
|
|
|
10872
12724
|
referece?: string | undefined;
|
|
10873
12725
|
mention?: string | undefined;
|
|
10874
12726
|
reaction?: string | undefined;
|
|
10875
|
-
repliers?: (string[] & string[] & { [
|
|
10876
|
-
} & { [
|
|
12727
|
+
repliers?: (string[] & string[] & { [K_16 in Exclude<keyof I_1["channeldesc"][number]["last_sent_message"]["repliers"], keyof string[]>]: never; }) | undefined;
|
|
12728
|
+
} & { [K_17 in Exclude<keyof I_1["channeldesc"][number]["last_sent_message"], keyof ChannelMessageHeader>]: never; }) | undefined;
|
|
10877
12729
|
last_seen_message?: ({
|
|
10878
12730
|
id?: string | undefined;
|
|
10879
12731
|
timestamp_seconds?: number | undefined;
|
|
@@ -10893,26 +12745,27 @@ export declare const ChannelDescList: {
|
|
|
10893
12745
|
referece?: string | undefined;
|
|
10894
12746
|
mention?: string | undefined;
|
|
10895
12747
|
reaction?: string | undefined;
|
|
10896
|
-
repliers?: (string[] & string[] & { [
|
|
10897
|
-
} & { [
|
|
10898
|
-
is_online?: (boolean[] & boolean[] & { [
|
|
12748
|
+
repliers?: (string[] & string[] & { [K_18 in Exclude<keyof I_1["channeldesc"][number]["last_seen_message"]["repliers"], keyof string[]>]: never; }) | undefined;
|
|
12749
|
+
} & { [K_19 in Exclude<keyof I_1["channeldesc"][number]["last_seen_message"], keyof ChannelMessageHeader>]: never; }) | undefined;
|
|
12750
|
+
is_online?: (boolean[] & boolean[] & { [K_20 in Exclude<keyof I_1["channeldesc"][number]["is_online"], keyof boolean[]>]: never; }) | undefined;
|
|
10899
12751
|
meeting_code?: string | undefined;
|
|
10900
12752
|
count_mess_unread?: number | undefined;
|
|
10901
12753
|
active?: number | undefined;
|
|
10902
12754
|
last_pin_message?: string | undefined;
|
|
10903
|
-
usernames?: string | undefined;
|
|
12755
|
+
usernames?: (string[] & string[] & { [K_21 in Exclude<keyof I_1["channeldesc"][number]["usernames"], keyof string[]>]: never; }) | undefined;
|
|
10904
12756
|
creator_name?: string | undefined;
|
|
10905
12757
|
create_time_seconds?: number | undefined;
|
|
10906
12758
|
update_time_seconds?: number | undefined;
|
|
10907
|
-
metadata?: (string[] & string[] & { [
|
|
10908
|
-
about_me?: (string[] & string[] & { [
|
|
12759
|
+
metadata?: (string[] & string[] & { [K_22 in Exclude<keyof I_1["channeldesc"][number]["metadata"], keyof string[]>]: never; }) | undefined;
|
|
12760
|
+
about_me?: (string[] & string[] & { [K_23 in Exclude<keyof I_1["channeldesc"][number]["about_me"], keyof string[]>]: never; }) | undefined;
|
|
10909
12761
|
clan_name?: string | undefined;
|
|
10910
12762
|
app_url?: string | undefined;
|
|
10911
12763
|
is_mute?: boolean | undefined;
|
|
10912
12764
|
age_restricted?: number | undefined;
|
|
10913
12765
|
topic?: string | undefined;
|
|
10914
12766
|
e2ee?: number | undefined;
|
|
10915
|
-
|
|
12767
|
+
display_names?: (string[] & string[] & { [K_24 in Exclude<keyof I_1["channeldesc"][number]["display_names"], keyof string[]>]: never; }) | undefined;
|
|
12768
|
+
} & { [K_25 in Exclude<keyof I_1["channeldesc"][number], keyof ChannelDescription>]: never; })[] & { [K_26 in Exclude<keyof I_1["channeldesc"], keyof {
|
|
10916
12769
|
clan_id?: string | undefined;
|
|
10917
12770
|
parrent_id?: string | undefined;
|
|
10918
12771
|
channel_id?: string | undefined;
|
|
@@ -10951,7 +12804,7 @@ export declare const ChannelDescList: {
|
|
|
10951
12804
|
count_mess_unread?: number | undefined;
|
|
10952
12805
|
active?: number | undefined;
|
|
10953
12806
|
last_pin_message?: string | undefined;
|
|
10954
|
-
usernames?: string | undefined;
|
|
12807
|
+
usernames?: string[] | undefined;
|
|
10955
12808
|
creator_name?: string | undefined;
|
|
10956
12809
|
create_time_seconds?: number | undefined;
|
|
10957
12810
|
update_time_seconds?: number | undefined;
|
|
@@ -10963,11 +12816,13 @@ export declare const ChannelDescList: {
|
|
|
10963
12816
|
age_restricted?: number | undefined;
|
|
10964
12817
|
topic?: string | undefined;
|
|
10965
12818
|
e2ee?: number | undefined;
|
|
12819
|
+
display_names?: string[] | undefined;
|
|
10966
12820
|
}[]>]: never; }) | undefined;
|
|
10967
12821
|
next_cursor?: string | undefined;
|
|
10968
12822
|
prev_cursor?: string | undefined;
|
|
10969
12823
|
cacheable_cursor?: string | undefined;
|
|
10970
|
-
|
|
12824
|
+
page?: number | undefined;
|
|
12825
|
+
} & { [K_27 in Exclude<keyof I_1, keyof ChannelDescList>]: never; }>(object: I_1): ChannelDescList;
|
|
10971
12826
|
};
|
|
10972
12827
|
export declare const ListThreadRequest: {
|
|
10973
12828
|
encode(message: ListThreadRequest, writer?: _m0.Writer): _m0.Writer;
|
|
@@ -10980,12 +12835,14 @@ export declare const ListThreadRequest: {
|
|
|
10980
12835
|
clan_id?: string | undefined;
|
|
10981
12836
|
channel_id?: string | undefined;
|
|
10982
12837
|
thread_id?: string | undefined;
|
|
12838
|
+
page?: number | undefined;
|
|
10983
12839
|
} & {
|
|
10984
12840
|
limit?: number | undefined;
|
|
10985
12841
|
state?: number | undefined;
|
|
10986
12842
|
clan_id?: string | undefined;
|
|
10987
12843
|
channel_id?: string | undefined;
|
|
10988
12844
|
thread_id?: string | undefined;
|
|
12845
|
+
page?: number | undefined;
|
|
10989
12846
|
} & { [K in Exclude<keyof I, keyof ListThreadRequest>]: never; }>(base?: I | undefined): ListThreadRequest;
|
|
10990
12847
|
fromPartial<I_1 extends {
|
|
10991
12848
|
limit?: number | undefined;
|
|
@@ -10993,12 +12850,14 @@ export declare const ListThreadRequest: {
|
|
|
10993
12850
|
clan_id?: string | undefined;
|
|
10994
12851
|
channel_id?: string | undefined;
|
|
10995
12852
|
thread_id?: string | undefined;
|
|
12853
|
+
page?: number | undefined;
|
|
10996
12854
|
} & {
|
|
10997
12855
|
limit?: number | undefined;
|
|
10998
12856
|
state?: number | undefined;
|
|
10999
12857
|
clan_id?: string | undefined;
|
|
11000
12858
|
channel_id?: string | undefined;
|
|
11001
12859
|
thread_id?: string | undefined;
|
|
12860
|
+
page?: number | undefined;
|
|
11002
12861
|
} & { [K_1 in Exclude<keyof I_1, keyof ListThreadRequest>]: never; }>(object: I_1): ListThreadRequest;
|
|
11003
12862
|
};
|
|
11004
12863
|
export declare const ListChannelDescsRequest: {
|
|
@@ -11899,22 +13758,26 @@ export declare const NotificationUserChannel: {
|
|
|
11899
13758
|
notification_setting_type?: number | undefined;
|
|
11900
13759
|
time_mute?: Date | undefined;
|
|
11901
13760
|
active?: number | undefined;
|
|
13761
|
+
channel_id?: string | undefined;
|
|
11902
13762
|
} & {
|
|
11903
13763
|
id?: string | undefined;
|
|
11904
13764
|
notification_setting_type?: number | undefined;
|
|
11905
13765
|
time_mute?: Date | undefined;
|
|
11906
13766
|
active?: number | undefined;
|
|
13767
|
+
channel_id?: string | undefined;
|
|
11907
13768
|
} & { [K in Exclude<keyof I, keyof NotificationUserChannel>]: never; }>(base?: I | undefined): NotificationUserChannel;
|
|
11908
13769
|
fromPartial<I_1 extends {
|
|
11909
13770
|
id?: string | undefined;
|
|
11910
13771
|
notification_setting_type?: number | undefined;
|
|
11911
13772
|
time_mute?: Date | undefined;
|
|
11912
13773
|
active?: number | undefined;
|
|
13774
|
+
channel_id?: string | undefined;
|
|
11913
13775
|
} & {
|
|
11914
13776
|
id?: string | undefined;
|
|
11915
13777
|
notification_setting_type?: number | undefined;
|
|
11916
13778
|
time_mute?: Date | undefined;
|
|
11917
13779
|
active?: number | undefined;
|
|
13780
|
+
channel_id?: string | undefined;
|
|
11918
13781
|
} & { [K_1 in Exclude<keyof I_1, keyof NotificationUserChannel>]: never; }>(object: I_1): NotificationUserChannel;
|
|
11919
13782
|
};
|
|
11920
13783
|
export declare const NotifiReactMessage: {
|
|
@@ -14226,8 +16089,8 @@ export declare const SearchMessageDocument: {
|
|
|
14226
16089
|
clan_id?: number | undefined;
|
|
14227
16090
|
sender_id?: number | undefined;
|
|
14228
16091
|
content?: string | undefined;
|
|
14229
|
-
|
|
14230
|
-
|
|
16092
|
+
mentions?: string | undefined;
|
|
16093
|
+
reactions?: string | undefined;
|
|
14231
16094
|
attachments?: {
|
|
14232
16095
|
filename?: string | undefined;
|
|
14233
16096
|
size?: number | undefined;
|
|
@@ -14236,7 +16099,7 @@ export declare const SearchMessageDocument: {
|
|
|
14236
16099
|
width?: number | undefined;
|
|
14237
16100
|
height?: number | undefined;
|
|
14238
16101
|
}[] | undefined;
|
|
14239
|
-
|
|
16102
|
+
references?: string | undefined;
|
|
14240
16103
|
create_time?: string | undefined;
|
|
14241
16104
|
update_time?: string | undefined;
|
|
14242
16105
|
channel_label?: string | undefined;
|
|
@@ -14251,8 +16114,8 @@ export declare const SearchMessageDocument: {
|
|
|
14251
16114
|
clan_id?: number | undefined;
|
|
14252
16115
|
sender_id?: number | undefined;
|
|
14253
16116
|
content?: string | undefined;
|
|
14254
|
-
|
|
14255
|
-
|
|
16117
|
+
mentions?: string | undefined;
|
|
16118
|
+
reactions?: string | undefined;
|
|
14256
16119
|
attachments?: ({
|
|
14257
16120
|
filename?: string | undefined;
|
|
14258
16121
|
size?: number | undefined;
|
|
@@ -14282,7 +16145,7 @@ export declare const SearchMessageDocument: {
|
|
|
14282
16145
|
width?: number | undefined;
|
|
14283
16146
|
height?: number | undefined;
|
|
14284
16147
|
}[]>]: never; }) | undefined;
|
|
14285
|
-
|
|
16148
|
+
references?: string | undefined;
|
|
14286
16149
|
create_time?: string | undefined;
|
|
14287
16150
|
update_time?: string | undefined;
|
|
14288
16151
|
channel_label?: string | undefined;
|
|
@@ -14298,8 +16161,8 @@ export declare const SearchMessageDocument: {
|
|
|
14298
16161
|
clan_id?: number | undefined;
|
|
14299
16162
|
sender_id?: number | undefined;
|
|
14300
16163
|
content?: string | undefined;
|
|
14301
|
-
|
|
14302
|
-
|
|
16164
|
+
mentions?: string | undefined;
|
|
16165
|
+
reactions?: string | undefined;
|
|
14303
16166
|
attachments?: {
|
|
14304
16167
|
filename?: string | undefined;
|
|
14305
16168
|
size?: number | undefined;
|
|
@@ -14308,7 +16171,7 @@ export declare const SearchMessageDocument: {
|
|
|
14308
16171
|
width?: number | undefined;
|
|
14309
16172
|
height?: number | undefined;
|
|
14310
16173
|
}[] | undefined;
|
|
14311
|
-
|
|
16174
|
+
references?: string | undefined;
|
|
14312
16175
|
create_time?: string | undefined;
|
|
14313
16176
|
update_time?: string | undefined;
|
|
14314
16177
|
channel_label?: string | undefined;
|
|
@@ -14323,8 +16186,8 @@ export declare const SearchMessageDocument: {
|
|
|
14323
16186
|
clan_id?: number | undefined;
|
|
14324
16187
|
sender_id?: number | undefined;
|
|
14325
16188
|
content?: string | undefined;
|
|
14326
|
-
|
|
14327
|
-
|
|
16189
|
+
mentions?: string | undefined;
|
|
16190
|
+
reactions?: string | undefined;
|
|
14328
16191
|
attachments?: ({
|
|
14329
16192
|
filename?: string | undefined;
|
|
14330
16193
|
size?: number | undefined;
|
|
@@ -14354,7 +16217,7 @@ export declare const SearchMessageDocument: {
|
|
|
14354
16217
|
width?: number | undefined;
|
|
14355
16218
|
height?: number | undefined;
|
|
14356
16219
|
}[]>]: never; }) | undefined;
|
|
14357
|
-
|
|
16220
|
+
references?: string | undefined;
|
|
14358
16221
|
create_time?: string | undefined;
|
|
14359
16222
|
update_time?: string | undefined;
|
|
14360
16223
|
channel_label?: string | undefined;
|
|
@@ -14377,8 +16240,8 @@ export declare const SearchMessageResponse: {
|
|
|
14377
16240
|
clan_id?: number | undefined;
|
|
14378
16241
|
sender_id?: number | undefined;
|
|
14379
16242
|
content?: string | undefined;
|
|
14380
|
-
|
|
14381
|
-
|
|
16243
|
+
mentions?: string | undefined;
|
|
16244
|
+
reactions?: string | undefined;
|
|
14382
16245
|
attachments?: {
|
|
14383
16246
|
filename?: string | undefined;
|
|
14384
16247
|
size?: number | undefined;
|
|
@@ -14387,7 +16250,7 @@ export declare const SearchMessageResponse: {
|
|
|
14387
16250
|
width?: number | undefined;
|
|
14388
16251
|
height?: number | undefined;
|
|
14389
16252
|
}[] | undefined;
|
|
14390
|
-
|
|
16253
|
+
references?: string | undefined;
|
|
14391
16254
|
create_time?: string | undefined;
|
|
14392
16255
|
update_time?: string | undefined;
|
|
14393
16256
|
channel_label?: string | undefined;
|
|
@@ -14405,8 +16268,8 @@ export declare const SearchMessageResponse: {
|
|
|
14405
16268
|
clan_id?: number | undefined;
|
|
14406
16269
|
sender_id?: number | undefined;
|
|
14407
16270
|
content?: string | undefined;
|
|
14408
|
-
|
|
14409
|
-
|
|
16271
|
+
mentions?: string | undefined;
|
|
16272
|
+
reactions?: string | undefined;
|
|
14410
16273
|
attachments?: {
|
|
14411
16274
|
filename?: string | undefined;
|
|
14412
16275
|
size?: number | undefined;
|
|
@@ -14415,7 +16278,7 @@ export declare const SearchMessageResponse: {
|
|
|
14415
16278
|
width?: number | undefined;
|
|
14416
16279
|
height?: number | undefined;
|
|
14417
16280
|
}[] | undefined;
|
|
14418
|
-
|
|
16281
|
+
references?: string | undefined;
|
|
14419
16282
|
create_time?: string | undefined;
|
|
14420
16283
|
update_time?: string | undefined;
|
|
14421
16284
|
channel_label?: string | undefined;
|
|
@@ -14430,8 +16293,8 @@ export declare const SearchMessageResponse: {
|
|
|
14430
16293
|
clan_id?: number | undefined;
|
|
14431
16294
|
sender_id?: number | undefined;
|
|
14432
16295
|
content?: string | undefined;
|
|
14433
|
-
|
|
14434
|
-
|
|
16296
|
+
mentions?: string | undefined;
|
|
16297
|
+
reactions?: string | undefined;
|
|
14435
16298
|
attachments?: {
|
|
14436
16299
|
filename?: string | undefined;
|
|
14437
16300
|
size?: number | undefined;
|
|
@@ -14440,7 +16303,7 @@ export declare const SearchMessageResponse: {
|
|
|
14440
16303
|
width?: number | undefined;
|
|
14441
16304
|
height?: number | undefined;
|
|
14442
16305
|
}[] | undefined;
|
|
14443
|
-
|
|
16306
|
+
references?: string | undefined;
|
|
14444
16307
|
create_time?: string | undefined;
|
|
14445
16308
|
update_time?: string | undefined;
|
|
14446
16309
|
channel_label?: string | undefined;
|
|
@@ -14455,8 +16318,8 @@ export declare const SearchMessageResponse: {
|
|
|
14455
16318
|
clan_id?: number | undefined;
|
|
14456
16319
|
sender_id?: number | undefined;
|
|
14457
16320
|
content?: string | undefined;
|
|
14458
|
-
|
|
14459
|
-
|
|
16321
|
+
mentions?: string | undefined;
|
|
16322
|
+
reactions?: string | undefined;
|
|
14460
16323
|
attachments?: ({
|
|
14461
16324
|
filename?: string | undefined;
|
|
14462
16325
|
size?: number | undefined;
|
|
@@ -14486,7 +16349,7 @@ export declare const SearchMessageResponse: {
|
|
|
14486
16349
|
width?: number | undefined;
|
|
14487
16350
|
height?: number | undefined;
|
|
14488
16351
|
}[]>]: never; }) | undefined;
|
|
14489
|
-
|
|
16352
|
+
references?: string | undefined;
|
|
14490
16353
|
create_time?: string | undefined;
|
|
14491
16354
|
update_time?: string | undefined;
|
|
14492
16355
|
channel_label?: string | undefined;
|
|
@@ -14501,8 +16364,8 @@ export declare const SearchMessageResponse: {
|
|
|
14501
16364
|
clan_id?: number | undefined;
|
|
14502
16365
|
sender_id?: number | undefined;
|
|
14503
16366
|
content?: string | undefined;
|
|
14504
|
-
|
|
14505
|
-
|
|
16367
|
+
mentions?: string | undefined;
|
|
16368
|
+
reactions?: string | undefined;
|
|
14506
16369
|
attachments?: {
|
|
14507
16370
|
filename?: string | undefined;
|
|
14508
16371
|
size?: number | undefined;
|
|
@@ -14511,7 +16374,7 @@ export declare const SearchMessageResponse: {
|
|
|
14511
16374
|
width?: number | undefined;
|
|
14512
16375
|
height?: number | undefined;
|
|
14513
16376
|
}[] | undefined;
|
|
14514
|
-
|
|
16377
|
+
references?: string | undefined;
|
|
14515
16378
|
create_time?: string | undefined;
|
|
14516
16379
|
update_time?: string | undefined;
|
|
14517
16380
|
channel_label?: string | undefined;
|
|
@@ -14530,8 +16393,8 @@ export declare const SearchMessageResponse: {
|
|
|
14530
16393
|
clan_id?: number | undefined;
|
|
14531
16394
|
sender_id?: number | undefined;
|
|
14532
16395
|
content?: string | undefined;
|
|
14533
|
-
|
|
14534
|
-
|
|
16396
|
+
mentions?: string | undefined;
|
|
16397
|
+
reactions?: string | undefined;
|
|
14535
16398
|
attachments?: {
|
|
14536
16399
|
filename?: string | undefined;
|
|
14537
16400
|
size?: number | undefined;
|
|
@@ -14540,7 +16403,7 @@ export declare const SearchMessageResponse: {
|
|
|
14540
16403
|
width?: number | undefined;
|
|
14541
16404
|
height?: number | undefined;
|
|
14542
16405
|
}[] | undefined;
|
|
14543
|
-
|
|
16406
|
+
references?: string | undefined;
|
|
14544
16407
|
create_time?: string | undefined;
|
|
14545
16408
|
update_time?: string | undefined;
|
|
14546
16409
|
channel_label?: string | undefined;
|
|
@@ -14558,8 +16421,8 @@ export declare const SearchMessageResponse: {
|
|
|
14558
16421
|
clan_id?: number | undefined;
|
|
14559
16422
|
sender_id?: number | undefined;
|
|
14560
16423
|
content?: string | undefined;
|
|
14561
|
-
|
|
14562
|
-
|
|
16424
|
+
mentions?: string | undefined;
|
|
16425
|
+
reactions?: string | undefined;
|
|
14563
16426
|
attachments?: {
|
|
14564
16427
|
filename?: string | undefined;
|
|
14565
16428
|
size?: number | undefined;
|
|
@@ -14568,7 +16431,7 @@ export declare const SearchMessageResponse: {
|
|
|
14568
16431
|
width?: number | undefined;
|
|
14569
16432
|
height?: number | undefined;
|
|
14570
16433
|
}[] | undefined;
|
|
14571
|
-
|
|
16434
|
+
references?: string | undefined;
|
|
14572
16435
|
create_time?: string | undefined;
|
|
14573
16436
|
update_time?: string | undefined;
|
|
14574
16437
|
channel_label?: string | undefined;
|
|
@@ -14583,8 +16446,8 @@ export declare const SearchMessageResponse: {
|
|
|
14583
16446
|
clan_id?: number | undefined;
|
|
14584
16447
|
sender_id?: number | undefined;
|
|
14585
16448
|
content?: string | undefined;
|
|
14586
|
-
|
|
14587
|
-
|
|
16449
|
+
mentions?: string | undefined;
|
|
16450
|
+
reactions?: string | undefined;
|
|
14588
16451
|
attachments?: {
|
|
14589
16452
|
filename?: string | undefined;
|
|
14590
16453
|
size?: number | undefined;
|
|
@@ -14593,7 +16456,7 @@ export declare const SearchMessageResponse: {
|
|
|
14593
16456
|
width?: number | undefined;
|
|
14594
16457
|
height?: number | undefined;
|
|
14595
16458
|
}[] | undefined;
|
|
14596
|
-
|
|
16459
|
+
references?: string | undefined;
|
|
14597
16460
|
create_time?: string | undefined;
|
|
14598
16461
|
update_time?: string | undefined;
|
|
14599
16462
|
channel_label?: string | undefined;
|
|
@@ -14608,8 +16471,8 @@ export declare const SearchMessageResponse: {
|
|
|
14608
16471
|
clan_id?: number | undefined;
|
|
14609
16472
|
sender_id?: number | undefined;
|
|
14610
16473
|
content?: string | undefined;
|
|
14611
|
-
|
|
14612
|
-
|
|
16474
|
+
mentions?: string | undefined;
|
|
16475
|
+
reactions?: string | undefined;
|
|
14613
16476
|
attachments?: ({
|
|
14614
16477
|
filename?: string | undefined;
|
|
14615
16478
|
size?: number | undefined;
|
|
@@ -14639,7 +16502,7 @@ export declare const SearchMessageResponse: {
|
|
|
14639
16502
|
width?: number | undefined;
|
|
14640
16503
|
height?: number | undefined;
|
|
14641
16504
|
}[]>]: never; }) | undefined;
|
|
14642
|
-
|
|
16505
|
+
references?: string | undefined;
|
|
14643
16506
|
create_time?: string | undefined;
|
|
14644
16507
|
update_time?: string | undefined;
|
|
14645
16508
|
channel_label?: string | undefined;
|
|
@@ -14654,8 +16517,8 @@ export declare const SearchMessageResponse: {
|
|
|
14654
16517
|
clan_id?: number | undefined;
|
|
14655
16518
|
sender_id?: number | undefined;
|
|
14656
16519
|
content?: string | undefined;
|
|
14657
|
-
|
|
14658
|
-
|
|
16520
|
+
mentions?: string | undefined;
|
|
16521
|
+
reactions?: string | undefined;
|
|
14659
16522
|
attachments?: {
|
|
14660
16523
|
filename?: string | undefined;
|
|
14661
16524
|
size?: number | undefined;
|
|
@@ -14664,7 +16527,7 @@ export declare const SearchMessageResponse: {
|
|
|
14664
16527
|
width?: number | undefined;
|
|
14665
16528
|
height?: number | undefined;
|
|
14666
16529
|
}[] | undefined;
|
|
14667
|
-
|
|
16530
|
+
references?: string | undefined;
|
|
14668
16531
|
create_time?: string | undefined;
|
|
14669
16532
|
update_time?: string | undefined;
|
|
14670
16533
|
channel_label?: string | undefined;
|
|
@@ -15218,6 +17081,7 @@ export declare const Webhook: {
|
|
|
15218
17081
|
create_time?: string | undefined;
|
|
15219
17082
|
update_time?: string | undefined;
|
|
15220
17083
|
avatar?: string | undefined;
|
|
17084
|
+
status?: number | undefined;
|
|
15221
17085
|
} & {
|
|
15222
17086
|
id?: string | undefined;
|
|
15223
17087
|
webhook_name?: string | undefined;
|
|
@@ -15228,6 +17092,7 @@ export declare const Webhook: {
|
|
|
15228
17092
|
create_time?: string | undefined;
|
|
15229
17093
|
update_time?: string | undefined;
|
|
15230
17094
|
avatar?: string | undefined;
|
|
17095
|
+
status?: number | undefined;
|
|
15231
17096
|
} & { [K in Exclude<keyof I, keyof Webhook>]: never; }>(base?: I | undefined): Webhook;
|
|
15232
17097
|
fromPartial<I_1 extends {
|
|
15233
17098
|
id?: string | undefined;
|
|
@@ -15239,6 +17104,7 @@ export declare const Webhook: {
|
|
|
15239
17104
|
create_time?: string | undefined;
|
|
15240
17105
|
update_time?: string | undefined;
|
|
15241
17106
|
avatar?: string | undefined;
|
|
17107
|
+
status?: number | undefined;
|
|
15242
17108
|
} & {
|
|
15243
17109
|
id?: string | undefined;
|
|
15244
17110
|
webhook_name?: string | undefined;
|
|
@@ -15249,6 +17115,7 @@ export declare const Webhook: {
|
|
|
15249
17115
|
create_time?: string | undefined;
|
|
15250
17116
|
update_time?: string | undefined;
|
|
15251
17117
|
avatar?: string | undefined;
|
|
17118
|
+
status?: number | undefined;
|
|
15252
17119
|
} & { [K_1 in Exclude<keyof I_1, keyof Webhook>]: never; }>(object: I_1): Webhook;
|
|
15253
17120
|
};
|
|
15254
17121
|
export declare const WebhookCreateRequest: {
|
|
@@ -15391,6 +17258,7 @@ export declare const WebhookListResponse: {
|
|
|
15391
17258
|
create_time?: string | undefined;
|
|
15392
17259
|
update_time?: string | undefined;
|
|
15393
17260
|
avatar?: string | undefined;
|
|
17261
|
+
status?: number | undefined;
|
|
15394
17262
|
}[] | undefined;
|
|
15395
17263
|
} & {
|
|
15396
17264
|
webhooks?: ({
|
|
@@ -15403,6 +17271,7 @@ export declare const WebhookListResponse: {
|
|
|
15403
17271
|
create_time?: string | undefined;
|
|
15404
17272
|
update_time?: string | undefined;
|
|
15405
17273
|
avatar?: string | undefined;
|
|
17274
|
+
status?: number | undefined;
|
|
15406
17275
|
}[] & ({
|
|
15407
17276
|
id?: string | undefined;
|
|
15408
17277
|
webhook_name?: string | undefined;
|
|
@@ -15413,6 +17282,7 @@ export declare const WebhookListResponse: {
|
|
|
15413
17282
|
create_time?: string | undefined;
|
|
15414
17283
|
update_time?: string | undefined;
|
|
15415
17284
|
avatar?: string | undefined;
|
|
17285
|
+
status?: number | undefined;
|
|
15416
17286
|
} & {
|
|
15417
17287
|
id?: string | undefined;
|
|
15418
17288
|
webhook_name?: string | undefined;
|
|
@@ -15423,6 +17293,7 @@ export declare const WebhookListResponse: {
|
|
|
15423
17293
|
create_time?: string | undefined;
|
|
15424
17294
|
update_time?: string | undefined;
|
|
15425
17295
|
avatar?: string | undefined;
|
|
17296
|
+
status?: number | undefined;
|
|
15426
17297
|
} & { [K in Exclude<keyof I["webhooks"][number], keyof Webhook>]: never; })[] & { [K_1 in Exclude<keyof I["webhooks"], keyof {
|
|
15427
17298
|
id?: string | undefined;
|
|
15428
17299
|
webhook_name?: string | undefined;
|
|
@@ -15433,6 +17304,7 @@ export declare const WebhookListResponse: {
|
|
|
15433
17304
|
create_time?: string | undefined;
|
|
15434
17305
|
update_time?: string | undefined;
|
|
15435
17306
|
avatar?: string | undefined;
|
|
17307
|
+
status?: number | undefined;
|
|
15436
17308
|
}[]>]: never; }) | undefined;
|
|
15437
17309
|
} & { [K_2 in Exclude<keyof I, "webhooks">]: never; }>(base?: I | undefined): WebhookListResponse;
|
|
15438
17310
|
fromPartial<I_1 extends {
|
|
@@ -15446,6 +17318,7 @@ export declare const WebhookListResponse: {
|
|
|
15446
17318
|
create_time?: string | undefined;
|
|
15447
17319
|
update_time?: string | undefined;
|
|
15448
17320
|
avatar?: string | undefined;
|
|
17321
|
+
status?: number | undefined;
|
|
15449
17322
|
}[] | undefined;
|
|
15450
17323
|
} & {
|
|
15451
17324
|
webhooks?: ({
|
|
@@ -15458,6 +17331,7 @@ export declare const WebhookListResponse: {
|
|
|
15458
17331
|
create_time?: string | undefined;
|
|
15459
17332
|
update_time?: string | undefined;
|
|
15460
17333
|
avatar?: string | undefined;
|
|
17334
|
+
status?: number | undefined;
|
|
15461
17335
|
}[] & ({
|
|
15462
17336
|
id?: string | undefined;
|
|
15463
17337
|
webhook_name?: string | undefined;
|
|
@@ -15468,6 +17342,7 @@ export declare const WebhookListResponse: {
|
|
|
15468
17342
|
create_time?: string | undefined;
|
|
15469
17343
|
update_time?: string | undefined;
|
|
15470
17344
|
avatar?: string | undefined;
|
|
17345
|
+
status?: number | undefined;
|
|
15471
17346
|
} & {
|
|
15472
17347
|
id?: string | undefined;
|
|
15473
17348
|
webhook_name?: string | undefined;
|
|
@@ -15478,6 +17353,7 @@ export declare const WebhookListResponse: {
|
|
|
15478
17353
|
create_time?: string | undefined;
|
|
15479
17354
|
update_time?: string | undefined;
|
|
15480
17355
|
avatar?: string | undefined;
|
|
17356
|
+
status?: number | undefined;
|
|
15481
17357
|
} & { [K_3 in Exclude<keyof I_1["webhooks"][number], keyof Webhook>]: never; })[] & { [K_4 in Exclude<keyof I_1["webhooks"], keyof {
|
|
15482
17358
|
id?: string | undefined;
|
|
15483
17359
|
webhook_name?: string | undefined;
|
|
@@ -15488,6 +17364,7 @@ export declare const WebhookListResponse: {
|
|
|
15488
17364
|
create_time?: string | undefined;
|
|
15489
17365
|
update_time?: string | undefined;
|
|
15490
17366
|
avatar?: string | undefined;
|
|
17367
|
+
status?: number | undefined;
|
|
15491
17368
|
}[]>]: never; }) | undefined;
|
|
15492
17369
|
} & { [K_5 in Exclude<keyof I_1, "webhooks">]: never; }>(object: I_1): WebhookListResponse;
|
|
15493
17370
|
};
|
|
@@ -15697,16 +17574,20 @@ export declare const ChangeChannelCategoryRequest: {
|
|
|
15697
17574
|
fromJSON(object: any): ChangeChannelCategoryRequest;
|
|
15698
17575
|
toJSON(message: ChangeChannelCategoryRequest): unknown;
|
|
15699
17576
|
create<I extends {
|
|
17577
|
+
clan_id?: string | undefined;
|
|
15700
17578
|
channel_id?: string | undefined;
|
|
15701
17579
|
new_category_id?: string | undefined;
|
|
15702
17580
|
} & {
|
|
17581
|
+
clan_id?: string | undefined;
|
|
15703
17582
|
channel_id?: string | undefined;
|
|
15704
17583
|
new_category_id?: string | undefined;
|
|
15705
17584
|
} & { [K in Exclude<keyof I, keyof ChangeChannelCategoryRequest>]: never; }>(base?: I | undefined): ChangeChannelCategoryRequest;
|
|
15706
17585
|
fromPartial<I_1 extends {
|
|
17586
|
+
clan_id?: string | undefined;
|
|
15707
17587
|
channel_id?: string | undefined;
|
|
15708
17588
|
new_category_id?: string | undefined;
|
|
15709
17589
|
} & {
|
|
17590
|
+
clan_id?: string | undefined;
|
|
15710
17591
|
channel_id?: string | undefined;
|
|
15711
17592
|
new_category_id?: string | undefined;
|
|
15712
17593
|
} & { [K_1 in Exclude<keyof I_1, keyof ChangeChannelCategoryRequest>]: never; }>(object: I_1): ChangeChannelCategoryRequest;
|
|
@@ -18543,22 +20424,26 @@ export declare const ChannelCanvasListRequest: {
|
|
|
18543
20424
|
channel_id?: string | undefined;
|
|
18544
20425
|
limit?: number | undefined;
|
|
18545
20426
|
page?: number | undefined;
|
|
20427
|
+
cursor?: string | undefined;
|
|
18546
20428
|
} & {
|
|
18547
20429
|
clan_id?: string | undefined;
|
|
18548
20430
|
channel_id?: string | undefined;
|
|
18549
20431
|
limit?: number | undefined;
|
|
18550
20432
|
page?: number | undefined;
|
|
20433
|
+
cursor?: string | undefined;
|
|
18551
20434
|
} & { [K in Exclude<keyof I, keyof ChannelCanvasListRequest>]: never; }>(base?: I | undefined): ChannelCanvasListRequest;
|
|
18552
20435
|
fromPartial<I_1 extends {
|
|
18553
20436
|
clan_id?: string | undefined;
|
|
18554
20437
|
channel_id?: string | undefined;
|
|
18555
20438
|
limit?: number | undefined;
|
|
18556
20439
|
page?: number | undefined;
|
|
20440
|
+
cursor?: string | undefined;
|
|
18557
20441
|
} & {
|
|
18558
20442
|
clan_id?: string | undefined;
|
|
18559
20443
|
channel_id?: string | undefined;
|
|
18560
20444
|
limit?: number | undefined;
|
|
18561
20445
|
page?: number | undefined;
|
|
20446
|
+
cursor?: string | undefined;
|
|
18562
20447
|
} & { [K_1 in Exclude<keyof I_1, keyof ChannelCanvasListRequest>]: never; }>(object: I_1): ChannelCanvasListRequest;
|
|
18563
20448
|
};
|
|
18564
20449
|
export declare const ChannelCanvasItem: {
|
|
@@ -18572,12 +20457,14 @@ export declare const ChannelCanvasItem: {
|
|
|
18572
20457
|
is_default?: boolean | undefined;
|
|
18573
20458
|
content?: string | undefined;
|
|
18574
20459
|
creator_id?: string | undefined;
|
|
20460
|
+
update_time?: Date | undefined;
|
|
18575
20461
|
} & {
|
|
18576
20462
|
id?: string | undefined;
|
|
18577
20463
|
title?: string | undefined;
|
|
18578
20464
|
is_default?: boolean | undefined;
|
|
18579
20465
|
content?: string | undefined;
|
|
18580
20466
|
creator_id?: string | undefined;
|
|
20467
|
+
update_time?: Date | undefined;
|
|
18581
20468
|
} & { [K in Exclude<keyof I, keyof ChannelCanvasItem>]: never; }>(base?: I | undefined): ChannelCanvasItem;
|
|
18582
20469
|
fromPartial<I_1 extends {
|
|
18583
20470
|
id?: string | undefined;
|
|
@@ -18585,12 +20472,14 @@ export declare const ChannelCanvasItem: {
|
|
|
18585
20472
|
is_default?: boolean | undefined;
|
|
18586
20473
|
content?: string | undefined;
|
|
18587
20474
|
creator_id?: string | undefined;
|
|
20475
|
+
update_time?: Date | undefined;
|
|
18588
20476
|
} & {
|
|
18589
20477
|
id?: string | undefined;
|
|
18590
20478
|
title?: string | undefined;
|
|
18591
20479
|
is_default?: boolean | undefined;
|
|
18592
20480
|
content?: string | undefined;
|
|
18593
20481
|
creator_id?: string | undefined;
|
|
20482
|
+
update_time?: Date | undefined;
|
|
18594
20483
|
} & { [K_1 in Exclude<keyof I_1, keyof ChannelCanvasItem>]: never; }>(object: I_1): ChannelCanvasItem;
|
|
18595
20484
|
};
|
|
18596
20485
|
export declare const ChannelCanvasListResponse: {
|
|
@@ -18607,7 +20496,9 @@ export declare const ChannelCanvasListResponse: {
|
|
|
18607
20496
|
is_default?: boolean | undefined;
|
|
18608
20497
|
content?: string | undefined;
|
|
18609
20498
|
creator_id?: string | undefined;
|
|
20499
|
+
update_time?: Date | undefined;
|
|
18610
20500
|
}[] | undefined;
|
|
20501
|
+
count?: number | undefined;
|
|
18611
20502
|
} & {
|
|
18612
20503
|
clan_id?: string | undefined;
|
|
18613
20504
|
channel_id?: string | undefined;
|
|
@@ -18617,25 +20508,30 @@ export declare const ChannelCanvasListResponse: {
|
|
|
18617
20508
|
is_default?: boolean | undefined;
|
|
18618
20509
|
content?: string | undefined;
|
|
18619
20510
|
creator_id?: string | undefined;
|
|
20511
|
+
update_time?: Date | undefined;
|
|
18620
20512
|
}[] & ({
|
|
18621
20513
|
id?: string | undefined;
|
|
18622
20514
|
title?: string | undefined;
|
|
18623
20515
|
is_default?: boolean | undefined;
|
|
18624
20516
|
content?: string | undefined;
|
|
18625
20517
|
creator_id?: string | undefined;
|
|
20518
|
+
update_time?: Date | undefined;
|
|
18626
20519
|
} & {
|
|
18627
20520
|
id?: string | undefined;
|
|
18628
20521
|
title?: string | undefined;
|
|
18629
20522
|
is_default?: boolean | undefined;
|
|
18630
20523
|
content?: string | undefined;
|
|
18631
20524
|
creator_id?: string | undefined;
|
|
20525
|
+
update_time?: Date | undefined;
|
|
18632
20526
|
} & { [K in Exclude<keyof I["channel_canvases"][number], keyof ChannelCanvasItem>]: never; })[] & { [K_1 in Exclude<keyof I["channel_canvases"], keyof {
|
|
18633
20527
|
id?: string | undefined;
|
|
18634
20528
|
title?: string | undefined;
|
|
18635
20529
|
is_default?: boolean | undefined;
|
|
18636
20530
|
content?: string | undefined;
|
|
18637
20531
|
creator_id?: string | undefined;
|
|
20532
|
+
update_time?: Date | undefined;
|
|
18638
20533
|
}[]>]: never; }) | undefined;
|
|
20534
|
+
count?: number | undefined;
|
|
18639
20535
|
} & { [K_2 in Exclude<keyof I, keyof ChannelCanvasListResponse>]: never; }>(base?: I | undefined): ChannelCanvasListResponse;
|
|
18640
20536
|
fromPartial<I_1 extends {
|
|
18641
20537
|
clan_id?: string | undefined;
|
|
@@ -18646,7 +20542,9 @@ export declare const ChannelCanvasListResponse: {
|
|
|
18646
20542
|
is_default?: boolean | undefined;
|
|
18647
20543
|
content?: string | undefined;
|
|
18648
20544
|
creator_id?: string | undefined;
|
|
20545
|
+
update_time?: Date | undefined;
|
|
18649
20546
|
}[] | undefined;
|
|
20547
|
+
count?: number | undefined;
|
|
18650
20548
|
} & {
|
|
18651
20549
|
clan_id?: string | undefined;
|
|
18652
20550
|
channel_id?: string | undefined;
|
|
@@ -18656,25 +20554,30 @@ export declare const ChannelCanvasListResponse: {
|
|
|
18656
20554
|
is_default?: boolean | undefined;
|
|
18657
20555
|
content?: string | undefined;
|
|
18658
20556
|
creator_id?: string | undefined;
|
|
20557
|
+
update_time?: Date | undefined;
|
|
18659
20558
|
}[] & ({
|
|
18660
20559
|
id?: string | undefined;
|
|
18661
20560
|
title?: string | undefined;
|
|
18662
20561
|
is_default?: boolean | undefined;
|
|
18663
20562
|
content?: string | undefined;
|
|
18664
20563
|
creator_id?: string | undefined;
|
|
20564
|
+
update_time?: Date | undefined;
|
|
18665
20565
|
} & {
|
|
18666
20566
|
id?: string | undefined;
|
|
18667
20567
|
title?: string | undefined;
|
|
18668
20568
|
is_default?: boolean | undefined;
|
|
18669
20569
|
content?: string | undefined;
|
|
18670
20570
|
creator_id?: string | undefined;
|
|
20571
|
+
update_time?: Date | undefined;
|
|
18671
20572
|
} & { [K_3 in Exclude<keyof I_1["channel_canvases"][number], keyof ChannelCanvasItem>]: never; })[] & { [K_4 in Exclude<keyof I_1["channel_canvases"], keyof {
|
|
18672
20573
|
id?: string | undefined;
|
|
18673
20574
|
title?: string | undefined;
|
|
18674
20575
|
is_default?: boolean | undefined;
|
|
18675
20576
|
content?: string | undefined;
|
|
18676
20577
|
creator_id?: string | undefined;
|
|
20578
|
+
update_time?: Date | undefined;
|
|
18677
20579
|
}[]>]: never; }) | undefined;
|
|
20580
|
+
count?: number | undefined;
|
|
18678
20581
|
} & { [K_5 in Exclude<keyof I_1, keyof ChannelCanvasListResponse>]: never; }>(object: I_1): ChannelCanvasListResponse;
|
|
18679
20582
|
};
|
|
18680
20583
|
export declare const ChannelCanvasDetailRequest: {
|
|
@@ -19018,7 +20921,7 @@ export declare const LoginIDResponse: {
|
|
|
19018
20921
|
create_time_second?: number | undefined;
|
|
19019
20922
|
platform?: string | undefined;
|
|
19020
20923
|
user_id?: number | undefined;
|
|
19021
|
-
|
|
20924
|
+
username?: string | undefined;
|
|
19022
20925
|
address?: string | undefined;
|
|
19023
20926
|
} & {
|
|
19024
20927
|
login_id?: string | undefined;
|
|
@@ -19026,7 +20929,7 @@ export declare const LoginIDResponse: {
|
|
|
19026
20929
|
create_time_second?: number | undefined;
|
|
19027
20930
|
platform?: string | undefined;
|
|
19028
20931
|
user_id?: number | undefined;
|
|
19029
|
-
|
|
20932
|
+
username?: string | undefined;
|
|
19030
20933
|
address?: string | undefined;
|
|
19031
20934
|
} & { [K in Exclude<keyof I, keyof LoginIDResponse>]: never; }>(base?: I | undefined): LoginIDResponse;
|
|
19032
20935
|
fromPartial<I_1 extends {
|
|
@@ -19035,7 +20938,7 @@ export declare const LoginIDResponse: {
|
|
|
19035
20938
|
create_time_second?: number | undefined;
|
|
19036
20939
|
platform?: string | undefined;
|
|
19037
20940
|
user_id?: number | undefined;
|
|
19038
|
-
|
|
20941
|
+
username?: string | undefined;
|
|
19039
20942
|
address?: string | undefined;
|
|
19040
20943
|
} & {
|
|
19041
20944
|
login_id?: string | undefined;
|
|
@@ -19043,7 +20946,7 @@ export declare const LoginIDResponse: {
|
|
|
19043
20946
|
create_time_second?: number | undefined;
|
|
19044
20947
|
platform?: string | undefined;
|
|
19045
20948
|
user_id?: number | undefined;
|
|
19046
|
-
|
|
20949
|
+
username?: string | undefined;
|
|
19047
20950
|
address?: string | undefined;
|
|
19048
20951
|
} & { [K_1 in Exclude<keyof I_1, keyof LoginIDResponse>]: never; }>(object: I_1): LoginIDResponse;
|
|
19049
20952
|
};
|
|
@@ -21043,100 +22946,6 @@ export declare const UpdateOnboardingStepRequest: {
|
|
|
21043
22946
|
onboarding_step?: number | undefined;
|
|
21044
22947
|
} & { [K_1 in Exclude<keyof I_1, keyof UpdateOnboardingStepRequest>]: never; }>(object: I_1): UpdateOnboardingStepRequest;
|
|
21045
22948
|
};
|
|
21046
|
-
export declare const PTTChannelUser: {
|
|
21047
|
-
encode(message: PTTChannelUser, writer?: _m0.Writer): _m0.Writer;
|
|
21048
|
-
decode(input: _m0.Reader | Uint8Array, length?: number): PTTChannelUser;
|
|
21049
|
-
fromJSON(object: any): PTTChannelUser;
|
|
21050
|
-
toJSON(message: PTTChannelUser): unknown;
|
|
21051
|
-
create<I extends {
|
|
21052
|
-
id?: string | undefined;
|
|
21053
|
-
user_id?: string | undefined;
|
|
21054
|
-
channel_id?: string | undefined;
|
|
21055
|
-
participant?: string | undefined;
|
|
21056
|
-
} & {
|
|
21057
|
-
id?: string | undefined;
|
|
21058
|
-
user_id?: string | undefined;
|
|
21059
|
-
channel_id?: string | undefined;
|
|
21060
|
-
participant?: string | undefined;
|
|
21061
|
-
} & { [K in Exclude<keyof I, keyof PTTChannelUser>]: never; }>(base?: I | undefined): PTTChannelUser;
|
|
21062
|
-
fromPartial<I_1 extends {
|
|
21063
|
-
id?: string | undefined;
|
|
21064
|
-
user_id?: string | undefined;
|
|
21065
|
-
channel_id?: string | undefined;
|
|
21066
|
-
participant?: string | undefined;
|
|
21067
|
-
} & {
|
|
21068
|
-
id?: string | undefined;
|
|
21069
|
-
user_id?: string | undefined;
|
|
21070
|
-
channel_id?: string | undefined;
|
|
21071
|
-
participant?: string | undefined;
|
|
21072
|
-
} & { [K_1 in Exclude<keyof I_1, keyof PTTChannelUser>]: never; }>(object: I_1): PTTChannelUser;
|
|
21073
|
-
};
|
|
21074
|
-
export declare const PTTChannelUserList: {
|
|
21075
|
-
encode(message: PTTChannelUserList, writer?: _m0.Writer): _m0.Writer;
|
|
21076
|
-
decode(input: _m0.Reader | Uint8Array, length?: number): PTTChannelUserList;
|
|
21077
|
-
fromJSON(object: any): PTTChannelUserList;
|
|
21078
|
-
toJSON(message: PTTChannelUserList): unknown;
|
|
21079
|
-
create<I extends {
|
|
21080
|
-
ptt_channel_users?: {
|
|
21081
|
-
id?: string | undefined;
|
|
21082
|
-
user_id?: string | undefined;
|
|
21083
|
-
channel_id?: string | undefined;
|
|
21084
|
-
participant?: string | undefined;
|
|
21085
|
-
}[] | undefined;
|
|
21086
|
-
} & {
|
|
21087
|
-
ptt_channel_users?: ({
|
|
21088
|
-
id?: string | undefined;
|
|
21089
|
-
user_id?: string | undefined;
|
|
21090
|
-
channel_id?: string | undefined;
|
|
21091
|
-
participant?: string | undefined;
|
|
21092
|
-
}[] & ({
|
|
21093
|
-
id?: string | undefined;
|
|
21094
|
-
user_id?: string | undefined;
|
|
21095
|
-
channel_id?: string | undefined;
|
|
21096
|
-
participant?: string | undefined;
|
|
21097
|
-
} & {
|
|
21098
|
-
id?: string | undefined;
|
|
21099
|
-
user_id?: string | undefined;
|
|
21100
|
-
channel_id?: string | undefined;
|
|
21101
|
-
participant?: string | undefined;
|
|
21102
|
-
} & { [K in Exclude<keyof I["ptt_channel_users"][number], keyof PTTChannelUser>]: never; })[] & { [K_1 in Exclude<keyof I["ptt_channel_users"], keyof {
|
|
21103
|
-
id?: string | undefined;
|
|
21104
|
-
user_id?: string | undefined;
|
|
21105
|
-
channel_id?: string | undefined;
|
|
21106
|
-
participant?: string | undefined;
|
|
21107
|
-
}[]>]: never; }) | undefined;
|
|
21108
|
-
} & { [K_2 in Exclude<keyof I, "ptt_channel_users">]: never; }>(base?: I | undefined): PTTChannelUserList;
|
|
21109
|
-
fromPartial<I_1 extends {
|
|
21110
|
-
ptt_channel_users?: {
|
|
21111
|
-
id?: string | undefined;
|
|
21112
|
-
user_id?: string | undefined;
|
|
21113
|
-
channel_id?: string | undefined;
|
|
21114
|
-
participant?: string | undefined;
|
|
21115
|
-
}[] | undefined;
|
|
21116
|
-
} & {
|
|
21117
|
-
ptt_channel_users?: ({
|
|
21118
|
-
id?: string | undefined;
|
|
21119
|
-
user_id?: string | undefined;
|
|
21120
|
-
channel_id?: string | undefined;
|
|
21121
|
-
participant?: string | undefined;
|
|
21122
|
-
}[] & ({
|
|
21123
|
-
id?: string | undefined;
|
|
21124
|
-
user_id?: string | undefined;
|
|
21125
|
-
channel_id?: string | undefined;
|
|
21126
|
-
participant?: string | undefined;
|
|
21127
|
-
} & {
|
|
21128
|
-
id?: string | undefined;
|
|
21129
|
-
user_id?: string | undefined;
|
|
21130
|
-
channel_id?: string | undefined;
|
|
21131
|
-
participant?: string | undefined;
|
|
21132
|
-
} & { [K_3 in Exclude<keyof I_1["ptt_channel_users"][number], keyof PTTChannelUser>]: never; })[] & { [K_4 in Exclude<keyof I_1["ptt_channel_users"], keyof {
|
|
21133
|
-
id?: string | undefined;
|
|
21134
|
-
user_id?: string | undefined;
|
|
21135
|
-
channel_id?: string | undefined;
|
|
21136
|
-
participant?: string | undefined;
|
|
21137
|
-
}[]>]: never; }) | undefined;
|
|
21138
|
-
} & { [K_5 in Exclude<keyof I_1, "ptt_channel_users">]: never; }>(object: I_1): PTTChannelUserList;
|
|
21139
|
-
};
|
|
21140
22949
|
export declare const WalletLedger: {
|
|
21141
22950
|
encode(message: WalletLedger, writer?: _m0.Writer): _m0.Writer;
|
|
21142
22951
|
decode(input: _m0.Reader | Uint8Array, length?: number): WalletLedger;
|
|
@@ -21182,8 +22991,7 @@ export declare const WalletLedgerList: {
|
|
|
21182
22991
|
value?: number | undefined;
|
|
21183
22992
|
transaction_id?: string | undefined;
|
|
21184
22993
|
}[] | undefined;
|
|
21185
|
-
|
|
21186
|
-
next_cursor?: string | undefined;
|
|
22994
|
+
count?: number | undefined;
|
|
21187
22995
|
} & {
|
|
21188
22996
|
wallet_ledger?: ({
|
|
21189
22997
|
id?: string | undefined;
|
|
@@ -21210,8 +23018,7 @@ export declare const WalletLedgerList: {
|
|
|
21210
23018
|
value?: number | undefined;
|
|
21211
23019
|
transaction_id?: string | undefined;
|
|
21212
23020
|
}[]>]: never; }) | undefined;
|
|
21213
|
-
|
|
21214
|
-
next_cursor?: string | undefined;
|
|
23021
|
+
count?: number | undefined;
|
|
21215
23022
|
} & { [K_2 in Exclude<keyof I, keyof WalletLedgerList>]: never; }>(base?: I | undefined): WalletLedgerList;
|
|
21216
23023
|
fromPartial<I_1 extends {
|
|
21217
23024
|
wallet_ledger?: {
|
|
@@ -21221,8 +23028,7 @@ export declare const WalletLedgerList: {
|
|
|
21221
23028
|
value?: number | undefined;
|
|
21222
23029
|
transaction_id?: string | undefined;
|
|
21223
23030
|
}[] | undefined;
|
|
21224
|
-
|
|
21225
|
-
next_cursor?: string | undefined;
|
|
23031
|
+
count?: number | undefined;
|
|
21226
23032
|
} & {
|
|
21227
23033
|
wallet_ledger?: ({
|
|
21228
23034
|
id?: string | undefined;
|
|
@@ -21249,8 +23055,7 @@ export declare const WalletLedgerList: {
|
|
|
21249
23055
|
value?: number | undefined;
|
|
21250
23056
|
transaction_id?: string | undefined;
|
|
21251
23057
|
}[]>]: never; }) | undefined;
|
|
21252
|
-
|
|
21253
|
-
next_cursor?: string | undefined;
|
|
23058
|
+
count?: number | undefined;
|
|
21254
23059
|
} & { [K_5 in Exclude<keyof I_1, keyof WalletLedgerList>]: never; }>(object: I_1): WalletLedgerList;
|
|
21255
23060
|
};
|
|
21256
23061
|
export declare const WalletLedgerListReq: {
|
|
@@ -21262,21 +23067,89 @@ export declare const WalletLedgerListReq: {
|
|
|
21262
23067
|
limit?: number | undefined;
|
|
21263
23068
|
cursor?: string | undefined;
|
|
21264
23069
|
transaction_id?: string | undefined;
|
|
23070
|
+
page?: number | undefined;
|
|
21265
23071
|
} & {
|
|
21266
23072
|
limit?: number | undefined;
|
|
21267
23073
|
cursor?: string | undefined;
|
|
21268
23074
|
transaction_id?: string | undefined;
|
|
23075
|
+
page?: number | undefined;
|
|
21269
23076
|
} & { [K in Exclude<keyof I, keyof WalletLedgerListReq>]: never; }>(base?: I | undefined): WalletLedgerListReq;
|
|
21270
23077
|
fromPartial<I_1 extends {
|
|
21271
23078
|
limit?: number | undefined;
|
|
21272
23079
|
cursor?: string | undefined;
|
|
21273
23080
|
transaction_id?: string | undefined;
|
|
23081
|
+
page?: number | undefined;
|
|
21274
23082
|
} & {
|
|
21275
23083
|
limit?: number | undefined;
|
|
21276
23084
|
cursor?: string | undefined;
|
|
21277
23085
|
transaction_id?: string | undefined;
|
|
23086
|
+
page?: number | undefined;
|
|
21278
23087
|
} & { [K_1 in Exclude<keyof I_1, keyof WalletLedgerListReq>]: never; }>(object: I_1): WalletLedgerListReq;
|
|
21279
23088
|
};
|
|
23089
|
+
export declare const TransactionDetailReq: {
|
|
23090
|
+
encode(message: TransactionDetailReq, writer?: _m0.Writer): _m0.Writer;
|
|
23091
|
+
decode(input: _m0.Reader | Uint8Array, length?: number): TransactionDetailReq;
|
|
23092
|
+
fromJSON(object: any): TransactionDetailReq;
|
|
23093
|
+
toJSON(message: TransactionDetailReq): unknown;
|
|
23094
|
+
create<I extends {
|
|
23095
|
+
trans_id?: string | undefined;
|
|
23096
|
+
} & {
|
|
23097
|
+
trans_id?: string | undefined;
|
|
23098
|
+
} & { [K in Exclude<keyof I, "trans_id">]: never; }>(base?: I | undefined): TransactionDetailReq;
|
|
23099
|
+
fromPartial<I_1 extends {
|
|
23100
|
+
trans_id?: string | undefined;
|
|
23101
|
+
} & {
|
|
23102
|
+
trans_id?: string | undefined;
|
|
23103
|
+
} & { [K_1 in Exclude<keyof I_1, "trans_id">]: never; }>(object: I_1): TransactionDetailReq;
|
|
23104
|
+
};
|
|
23105
|
+
export declare const TransactionDetail: {
|
|
23106
|
+
encode(message: TransactionDetail, writer?: _m0.Writer): _m0.Writer;
|
|
23107
|
+
decode(input: _m0.Reader | Uint8Array, length?: number): TransactionDetail;
|
|
23108
|
+
fromJSON(object: any): TransactionDetail;
|
|
23109
|
+
toJSON(message: TransactionDetail): unknown;
|
|
23110
|
+
create<I extends {
|
|
23111
|
+
sender_id?: string | undefined;
|
|
23112
|
+
sender_username?: string | undefined;
|
|
23113
|
+
receiver_id?: string | undefined;
|
|
23114
|
+
receiver_username?: string | undefined;
|
|
23115
|
+
amount?: number | undefined;
|
|
23116
|
+
trans_id?: string | undefined;
|
|
23117
|
+
metadata?: string | undefined;
|
|
23118
|
+
create_time?: Date | undefined;
|
|
23119
|
+
update_time?: Date | undefined;
|
|
23120
|
+
} & {
|
|
23121
|
+
sender_id?: string | undefined;
|
|
23122
|
+
sender_username?: string | undefined;
|
|
23123
|
+
receiver_id?: string | undefined;
|
|
23124
|
+
receiver_username?: string | undefined;
|
|
23125
|
+
amount?: number | undefined;
|
|
23126
|
+
trans_id?: string | undefined;
|
|
23127
|
+
metadata?: string | undefined;
|
|
23128
|
+
create_time?: Date | undefined;
|
|
23129
|
+
update_time?: Date | undefined;
|
|
23130
|
+
} & { [K in Exclude<keyof I, keyof TransactionDetail>]: never; }>(base?: I | undefined): TransactionDetail;
|
|
23131
|
+
fromPartial<I_1 extends {
|
|
23132
|
+
sender_id?: string | undefined;
|
|
23133
|
+
sender_username?: string | undefined;
|
|
23134
|
+
receiver_id?: string | undefined;
|
|
23135
|
+
receiver_username?: string | undefined;
|
|
23136
|
+
amount?: number | undefined;
|
|
23137
|
+
trans_id?: string | undefined;
|
|
23138
|
+
metadata?: string | undefined;
|
|
23139
|
+
create_time?: Date | undefined;
|
|
23140
|
+
update_time?: Date | undefined;
|
|
23141
|
+
} & {
|
|
23142
|
+
sender_id?: string | undefined;
|
|
23143
|
+
sender_username?: string | undefined;
|
|
23144
|
+
receiver_id?: string | undefined;
|
|
23145
|
+
receiver_username?: string | undefined;
|
|
23146
|
+
amount?: number | undefined;
|
|
23147
|
+
trans_id?: string | undefined;
|
|
23148
|
+
metadata?: string | undefined;
|
|
23149
|
+
create_time?: Date | undefined;
|
|
23150
|
+
update_time?: Date | undefined;
|
|
23151
|
+
} & { [K_1 in Exclude<keyof I_1, keyof TransactionDetail>]: never; }>(object: I_1): TransactionDetail;
|
|
23152
|
+
};
|
|
21280
23153
|
export declare const SdTopic: {
|
|
21281
23154
|
encode(message: SdTopic, writer?: _m0.Writer): _m0.Writer;
|
|
21282
23155
|
decode(input: _m0.Reader | Uint8Array, length?: number): SdTopic;
|
|
@@ -22227,6 +24100,790 @@ export declare const DeleteSdTopicRequest: {
|
|
|
22227
24100
|
clan_id?: string | undefined;
|
|
22228
24101
|
} & { [K_1 in Exclude<keyof I_1, keyof DeleteSdTopicRequest>]: never; }>(object: I_1): DeleteSdTopicRequest;
|
|
22229
24102
|
};
|
|
24103
|
+
export declare const GenerateMeetTokenRequest: {
|
|
24104
|
+
encode(message: GenerateMeetTokenRequest, writer?: _m0.Writer): _m0.Writer;
|
|
24105
|
+
decode(input: _m0.Reader | Uint8Array, length?: number): GenerateMeetTokenRequest;
|
|
24106
|
+
fromJSON(object: any): GenerateMeetTokenRequest;
|
|
24107
|
+
toJSON(message: GenerateMeetTokenRequest): unknown;
|
|
24108
|
+
create<I extends {
|
|
24109
|
+
channel_id?: string | undefined;
|
|
24110
|
+
room_name?: string | undefined;
|
|
24111
|
+
} & {
|
|
24112
|
+
channel_id?: string | undefined;
|
|
24113
|
+
room_name?: string | undefined;
|
|
24114
|
+
} & { [K in Exclude<keyof I, keyof GenerateMeetTokenRequest>]: never; }>(base?: I | undefined): GenerateMeetTokenRequest;
|
|
24115
|
+
fromPartial<I_1 extends {
|
|
24116
|
+
channel_id?: string | undefined;
|
|
24117
|
+
room_name?: string | undefined;
|
|
24118
|
+
} & {
|
|
24119
|
+
channel_id?: string | undefined;
|
|
24120
|
+
room_name?: string | undefined;
|
|
24121
|
+
} & { [K_1 in Exclude<keyof I_1, keyof GenerateMeetTokenRequest>]: never; }>(object: I_1): GenerateMeetTokenRequest;
|
|
24122
|
+
};
|
|
24123
|
+
export declare const GenerateMeetTokenResponse: {
|
|
24124
|
+
encode(message: GenerateMeetTokenResponse, writer?: _m0.Writer): _m0.Writer;
|
|
24125
|
+
decode(input: _m0.Reader | Uint8Array, length?: number): GenerateMeetTokenResponse;
|
|
24126
|
+
fromJSON(object: any): GenerateMeetTokenResponse;
|
|
24127
|
+
toJSON(message: GenerateMeetTokenResponse): unknown;
|
|
24128
|
+
create<I extends {
|
|
24129
|
+
token?: string | undefined;
|
|
24130
|
+
} & {
|
|
24131
|
+
token?: string | undefined;
|
|
24132
|
+
} & { [K in Exclude<keyof I, "token">]: never; }>(base?: I | undefined): GenerateMeetTokenResponse;
|
|
24133
|
+
fromPartial<I_1 extends {
|
|
24134
|
+
token?: string | undefined;
|
|
24135
|
+
} & {
|
|
24136
|
+
token?: string | undefined;
|
|
24137
|
+
} & { [K_1 in Exclude<keyof I_1, "token">]: never; }>(object: I_1): GenerateMeetTokenResponse;
|
|
24138
|
+
};
|
|
24139
|
+
export declare const CreateRoomChannelApps: {
|
|
24140
|
+
encode(message: CreateRoomChannelApps, writer?: _m0.Writer): _m0.Writer;
|
|
24141
|
+
decode(input: _m0.Reader | Uint8Array, length?: number): CreateRoomChannelApps;
|
|
24142
|
+
fromJSON(object: any): CreateRoomChannelApps;
|
|
24143
|
+
toJSON(message: CreateRoomChannelApps): unknown;
|
|
24144
|
+
create<I extends {
|
|
24145
|
+
channel_id?: string | undefined;
|
|
24146
|
+
room_name?: string | undefined;
|
|
24147
|
+
} & {
|
|
24148
|
+
channel_id?: string | undefined;
|
|
24149
|
+
room_name?: string | undefined;
|
|
24150
|
+
} & { [K in Exclude<keyof I, keyof CreateRoomChannelApps>]: never; }>(base?: I | undefined): CreateRoomChannelApps;
|
|
24151
|
+
fromPartial<I_1 extends {
|
|
24152
|
+
channel_id?: string | undefined;
|
|
24153
|
+
room_name?: string | undefined;
|
|
24154
|
+
} & {
|
|
24155
|
+
channel_id?: string | undefined;
|
|
24156
|
+
room_name?: string | undefined;
|
|
24157
|
+
} & { [K_1 in Exclude<keyof I_1, keyof CreateRoomChannelApps>]: never; }>(object: I_1): CreateRoomChannelApps;
|
|
24158
|
+
};
|
|
24159
|
+
export declare const HandleParticipantMeetStateRequest: {
|
|
24160
|
+
encode(message: HandleParticipantMeetStateRequest, writer?: _m0.Writer): _m0.Writer;
|
|
24161
|
+
decode(input: _m0.Reader | Uint8Array, length?: number): HandleParticipantMeetStateRequest;
|
|
24162
|
+
fromJSON(object: any): HandleParticipantMeetStateRequest;
|
|
24163
|
+
toJSON(message: HandleParticipantMeetStateRequest): unknown;
|
|
24164
|
+
create<I extends {
|
|
24165
|
+
clan_id?: string | undefined;
|
|
24166
|
+
channel_id?: string | undefined;
|
|
24167
|
+
user_id?: string | undefined;
|
|
24168
|
+
display_name?: string | undefined;
|
|
24169
|
+
state?: number | undefined;
|
|
24170
|
+
} & {
|
|
24171
|
+
clan_id?: string | undefined;
|
|
24172
|
+
channel_id?: string | undefined;
|
|
24173
|
+
user_id?: string | undefined;
|
|
24174
|
+
display_name?: string | undefined;
|
|
24175
|
+
state?: number | undefined;
|
|
24176
|
+
} & { [K in Exclude<keyof I, keyof HandleParticipantMeetStateRequest>]: never; }>(base?: I | undefined): HandleParticipantMeetStateRequest;
|
|
24177
|
+
fromPartial<I_1 extends {
|
|
24178
|
+
clan_id?: string | undefined;
|
|
24179
|
+
channel_id?: string | undefined;
|
|
24180
|
+
user_id?: string | undefined;
|
|
24181
|
+
display_name?: string | undefined;
|
|
24182
|
+
state?: number | undefined;
|
|
24183
|
+
} & {
|
|
24184
|
+
clan_id?: string | undefined;
|
|
24185
|
+
channel_id?: string | undefined;
|
|
24186
|
+
user_id?: string | undefined;
|
|
24187
|
+
display_name?: string | undefined;
|
|
24188
|
+
state?: number | undefined;
|
|
24189
|
+
} & { [K_1 in Exclude<keyof I_1, keyof HandleParticipantMeetStateRequest>]: never; }>(object: I_1): HandleParticipantMeetStateRequest;
|
|
24190
|
+
};
|
|
24191
|
+
export declare const MezonOauthClient: {
|
|
24192
|
+
encode(message: MezonOauthClient, writer?: _m0.Writer): _m0.Writer;
|
|
24193
|
+
decode(input: _m0.Reader | Uint8Array, length?: number): MezonOauthClient;
|
|
24194
|
+
fromJSON(object: any): MezonOauthClient;
|
|
24195
|
+
toJSON(message: MezonOauthClient): unknown;
|
|
24196
|
+
create<I extends {
|
|
24197
|
+
access_token_strategy?: string | undefined;
|
|
24198
|
+
allowed_cors_origins?: string[] | undefined;
|
|
24199
|
+
audience?: string[] | undefined;
|
|
24200
|
+
authorization_code_grant_access_token_lifespan?: string | undefined;
|
|
24201
|
+
authorization_code_grant_id_token_lifespan?: string | undefined;
|
|
24202
|
+
authorization_code_grant_refresh_token_lifespan?: string | undefined;
|
|
24203
|
+
backchannel_logout_session_required?: boolean | undefined;
|
|
24204
|
+
backchannel_logout_uri?: string | undefined;
|
|
24205
|
+
client_credentials_grant_access_token_lifespan?: string | undefined;
|
|
24206
|
+
client_id?: string | undefined;
|
|
24207
|
+
client_name?: string | undefined;
|
|
24208
|
+
client_secret?: string | undefined;
|
|
24209
|
+
client_secret_expires_at?: number | undefined;
|
|
24210
|
+
client_uri?: string | undefined;
|
|
24211
|
+
contacts?: string[] | undefined;
|
|
24212
|
+
created_at?: Date | undefined;
|
|
24213
|
+
frontchannel_logout_session_required?: boolean | undefined;
|
|
24214
|
+
frontchannel_logout_uri?: string | undefined;
|
|
24215
|
+
grant_types?: string[] | undefined;
|
|
24216
|
+
implicit_grant_access_token_lifespan?: string | undefined;
|
|
24217
|
+
implicit_grant_id_token_lifespan?: string | undefined;
|
|
24218
|
+
jwks?: string[] | undefined;
|
|
24219
|
+
jwks_uri?: string | undefined;
|
|
24220
|
+
jwt_bearer_grant_access_token_lifespan?: string | undefined;
|
|
24221
|
+
logo_uri?: string | undefined;
|
|
24222
|
+
owner?: string | undefined;
|
|
24223
|
+
policy_uri?: string | undefined;
|
|
24224
|
+
post_logout_redirect_uris?: string[] | undefined;
|
|
24225
|
+
redirect_uris?: string[] | undefined;
|
|
24226
|
+
refresh_token_grant_access_token_lifespan?: string | undefined;
|
|
24227
|
+
refresh_token_grant_id_token_lifespan?: string | undefined;
|
|
24228
|
+
refresh_token_grant_refresh_token_lifespan?: string | undefined;
|
|
24229
|
+
registration_access_token?: string | undefined;
|
|
24230
|
+
registration_client_uri?: string | undefined;
|
|
24231
|
+
request_object_signing_alg?: string | undefined;
|
|
24232
|
+
request_uris?: string[] | undefined;
|
|
24233
|
+
response_types?: string[] | undefined;
|
|
24234
|
+
scope?: string | undefined;
|
|
24235
|
+
sector_identifier_uri?: string | undefined;
|
|
24236
|
+
skip_consent?: boolean | undefined;
|
|
24237
|
+
skip_logout_consent?: boolean | undefined;
|
|
24238
|
+
subject_type?: string | undefined;
|
|
24239
|
+
token_endpoint_auth_method?: string | undefined;
|
|
24240
|
+
token_endpoint_auth_signing_alg?: string | undefined;
|
|
24241
|
+
tos_uri?: string | undefined;
|
|
24242
|
+
updated_at?: Date | undefined;
|
|
24243
|
+
userinfo_signed_response_alg?: string | undefined;
|
|
24244
|
+
} & {
|
|
24245
|
+
access_token_strategy?: string | undefined;
|
|
24246
|
+
allowed_cors_origins?: (string[] & string[] & { [K in Exclude<keyof I["allowed_cors_origins"], keyof string[]>]: never; }) | undefined;
|
|
24247
|
+
audience?: (string[] & string[] & { [K_1 in Exclude<keyof I["audience"], keyof string[]>]: never; }) | undefined;
|
|
24248
|
+
authorization_code_grant_access_token_lifespan?: string | undefined;
|
|
24249
|
+
authorization_code_grant_id_token_lifespan?: string | undefined;
|
|
24250
|
+
authorization_code_grant_refresh_token_lifespan?: string | undefined;
|
|
24251
|
+
backchannel_logout_session_required?: boolean | undefined;
|
|
24252
|
+
backchannel_logout_uri?: string | undefined;
|
|
24253
|
+
client_credentials_grant_access_token_lifespan?: string | undefined;
|
|
24254
|
+
client_id?: string | undefined;
|
|
24255
|
+
client_name?: string | undefined;
|
|
24256
|
+
client_secret?: string | undefined;
|
|
24257
|
+
client_secret_expires_at?: number | undefined;
|
|
24258
|
+
client_uri?: string | undefined;
|
|
24259
|
+
contacts?: (string[] & string[] & { [K_2 in Exclude<keyof I["contacts"], keyof string[]>]: never; }) | undefined;
|
|
24260
|
+
created_at?: Date | undefined;
|
|
24261
|
+
frontchannel_logout_session_required?: boolean | undefined;
|
|
24262
|
+
frontchannel_logout_uri?: string | undefined;
|
|
24263
|
+
grant_types?: (string[] & string[] & { [K_3 in Exclude<keyof I["grant_types"], keyof string[]>]: never; }) | undefined;
|
|
24264
|
+
implicit_grant_access_token_lifespan?: string | undefined;
|
|
24265
|
+
implicit_grant_id_token_lifespan?: string | undefined;
|
|
24266
|
+
jwks?: (string[] & string[] & { [K_4 in Exclude<keyof I["jwks"], keyof string[]>]: never; }) | undefined;
|
|
24267
|
+
jwks_uri?: string | undefined;
|
|
24268
|
+
jwt_bearer_grant_access_token_lifespan?: string | undefined;
|
|
24269
|
+
logo_uri?: string | undefined;
|
|
24270
|
+
owner?: string | undefined;
|
|
24271
|
+
policy_uri?: string | undefined;
|
|
24272
|
+
post_logout_redirect_uris?: (string[] & string[] & { [K_5 in Exclude<keyof I["post_logout_redirect_uris"], keyof string[]>]: never; }) | undefined;
|
|
24273
|
+
redirect_uris?: (string[] & string[] & { [K_6 in Exclude<keyof I["redirect_uris"], keyof string[]>]: never; }) | undefined;
|
|
24274
|
+
refresh_token_grant_access_token_lifespan?: string | undefined;
|
|
24275
|
+
refresh_token_grant_id_token_lifespan?: string | undefined;
|
|
24276
|
+
refresh_token_grant_refresh_token_lifespan?: string | undefined;
|
|
24277
|
+
registration_access_token?: string | undefined;
|
|
24278
|
+
registration_client_uri?: string | undefined;
|
|
24279
|
+
request_object_signing_alg?: string | undefined;
|
|
24280
|
+
request_uris?: (string[] & string[] & { [K_7 in Exclude<keyof I["request_uris"], keyof string[]>]: never; }) | undefined;
|
|
24281
|
+
response_types?: (string[] & string[] & { [K_8 in Exclude<keyof I["response_types"], keyof string[]>]: never; }) | undefined;
|
|
24282
|
+
scope?: string | undefined;
|
|
24283
|
+
sector_identifier_uri?: string | undefined;
|
|
24284
|
+
skip_consent?: boolean | undefined;
|
|
24285
|
+
skip_logout_consent?: boolean | undefined;
|
|
24286
|
+
subject_type?: string | undefined;
|
|
24287
|
+
token_endpoint_auth_method?: string | undefined;
|
|
24288
|
+
token_endpoint_auth_signing_alg?: string | undefined;
|
|
24289
|
+
tos_uri?: string | undefined;
|
|
24290
|
+
updated_at?: Date | undefined;
|
|
24291
|
+
userinfo_signed_response_alg?: string | undefined;
|
|
24292
|
+
} & { [K_9 in Exclude<keyof I, keyof MezonOauthClient>]: never; }>(base?: I | undefined): MezonOauthClient;
|
|
24293
|
+
fromPartial<I_1 extends {
|
|
24294
|
+
access_token_strategy?: string | undefined;
|
|
24295
|
+
allowed_cors_origins?: string[] | undefined;
|
|
24296
|
+
audience?: string[] | undefined;
|
|
24297
|
+
authorization_code_grant_access_token_lifespan?: string | undefined;
|
|
24298
|
+
authorization_code_grant_id_token_lifespan?: string | undefined;
|
|
24299
|
+
authorization_code_grant_refresh_token_lifespan?: string | undefined;
|
|
24300
|
+
backchannel_logout_session_required?: boolean | undefined;
|
|
24301
|
+
backchannel_logout_uri?: string | undefined;
|
|
24302
|
+
client_credentials_grant_access_token_lifespan?: string | undefined;
|
|
24303
|
+
client_id?: string | undefined;
|
|
24304
|
+
client_name?: string | undefined;
|
|
24305
|
+
client_secret?: string | undefined;
|
|
24306
|
+
client_secret_expires_at?: number | undefined;
|
|
24307
|
+
client_uri?: string | undefined;
|
|
24308
|
+
contacts?: string[] | undefined;
|
|
24309
|
+
created_at?: Date | undefined;
|
|
24310
|
+
frontchannel_logout_session_required?: boolean | undefined;
|
|
24311
|
+
frontchannel_logout_uri?: string | undefined;
|
|
24312
|
+
grant_types?: string[] | undefined;
|
|
24313
|
+
implicit_grant_access_token_lifespan?: string | undefined;
|
|
24314
|
+
implicit_grant_id_token_lifespan?: string | undefined;
|
|
24315
|
+
jwks?: string[] | undefined;
|
|
24316
|
+
jwks_uri?: string | undefined;
|
|
24317
|
+
jwt_bearer_grant_access_token_lifespan?: string | undefined;
|
|
24318
|
+
logo_uri?: string | undefined;
|
|
24319
|
+
owner?: string | undefined;
|
|
24320
|
+
policy_uri?: string | undefined;
|
|
24321
|
+
post_logout_redirect_uris?: string[] | undefined;
|
|
24322
|
+
redirect_uris?: string[] | undefined;
|
|
24323
|
+
refresh_token_grant_access_token_lifespan?: string | undefined;
|
|
24324
|
+
refresh_token_grant_id_token_lifespan?: string | undefined;
|
|
24325
|
+
refresh_token_grant_refresh_token_lifespan?: string | undefined;
|
|
24326
|
+
registration_access_token?: string | undefined;
|
|
24327
|
+
registration_client_uri?: string | undefined;
|
|
24328
|
+
request_object_signing_alg?: string | undefined;
|
|
24329
|
+
request_uris?: string[] | undefined;
|
|
24330
|
+
response_types?: string[] | undefined;
|
|
24331
|
+
scope?: string | undefined;
|
|
24332
|
+
sector_identifier_uri?: string | undefined;
|
|
24333
|
+
skip_consent?: boolean | undefined;
|
|
24334
|
+
skip_logout_consent?: boolean | undefined;
|
|
24335
|
+
subject_type?: string | undefined;
|
|
24336
|
+
token_endpoint_auth_method?: string | undefined;
|
|
24337
|
+
token_endpoint_auth_signing_alg?: string | undefined;
|
|
24338
|
+
tos_uri?: string | undefined;
|
|
24339
|
+
updated_at?: Date | undefined;
|
|
24340
|
+
userinfo_signed_response_alg?: string | undefined;
|
|
24341
|
+
} & {
|
|
24342
|
+
access_token_strategy?: string | undefined;
|
|
24343
|
+
allowed_cors_origins?: (string[] & string[] & { [K_10 in Exclude<keyof I_1["allowed_cors_origins"], keyof string[]>]: never; }) | undefined;
|
|
24344
|
+
audience?: (string[] & string[] & { [K_11 in Exclude<keyof I_1["audience"], keyof string[]>]: never; }) | undefined;
|
|
24345
|
+
authorization_code_grant_access_token_lifespan?: string | undefined;
|
|
24346
|
+
authorization_code_grant_id_token_lifespan?: string | undefined;
|
|
24347
|
+
authorization_code_grant_refresh_token_lifespan?: string | undefined;
|
|
24348
|
+
backchannel_logout_session_required?: boolean | undefined;
|
|
24349
|
+
backchannel_logout_uri?: string | undefined;
|
|
24350
|
+
client_credentials_grant_access_token_lifespan?: string | undefined;
|
|
24351
|
+
client_id?: string | undefined;
|
|
24352
|
+
client_name?: string | undefined;
|
|
24353
|
+
client_secret?: string | undefined;
|
|
24354
|
+
client_secret_expires_at?: number | undefined;
|
|
24355
|
+
client_uri?: string | undefined;
|
|
24356
|
+
contacts?: (string[] & string[] & { [K_12 in Exclude<keyof I_1["contacts"], keyof string[]>]: never; }) | undefined;
|
|
24357
|
+
created_at?: Date | undefined;
|
|
24358
|
+
frontchannel_logout_session_required?: boolean | undefined;
|
|
24359
|
+
frontchannel_logout_uri?: string | undefined;
|
|
24360
|
+
grant_types?: (string[] & string[] & { [K_13 in Exclude<keyof I_1["grant_types"], keyof string[]>]: never; }) | undefined;
|
|
24361
|
+
implicit_grant_access_token_lifespan?: string | undefined;
|
|
24362
|
+
implicit_grant_id_token_lifespan?: string | undefined;
|
|
24363
|
+
jwks?: (string[] & string[] & { [K_14 in Exclude<keyof I_1["jwks"], keyof string[]>]: never; }) | undefined;
|
|
24364
|
+
jwks_uri?: string | undefined;
|
|
24365
|
+
jwt_bearer_grant_access_token_lifespan?: string | undefined;
|
|
24366
|
+
logo_uri?: string | undefined;
|
|
24367
|
+
owner?: string | undefined;
|
|
24368
|
+
policy_uri?: string | undefined;
|
|
24369
|
+
post_logout_redirect_uris?: (string[] & string[] & { [K_15 in Exclude<keyof I_1["post_logout_redirect_uris"], keyof string[]>]: never; }) | undefined;
|
|
24370
|
+
redirect_uris?: (string[] & string[] & { [K_16 in Exclude<keyof I_1["redirect_uris"], keyof string[]>]: never; }) | undefined;
|
|
24371
|
+
refresh_token_grant_access_token_lifespan?: string | undefined;
|
|
24372
|
+
refresh_token_grant_id_token_lifespan?: string | undefined;
|
|
24373
|
+
refresh_token_grant_refresh_token_lifespan?: string | undefined;
|
|
24374
|
+
registration_access_token?: string | undefined;
|
|
24375
|
+
registration_client_uri?: string | undefined;
|
|
24376
|
+
request_object_signing_alg?: string | undefined;
|
|
24377
|
+
request_uris?: (string[] & string[] & { [K_17 in Exclude<keyof I_1["request_uris"], keyof string[]>]: never; }) | undefined;
|
|
24378
|
+
response_types?: (string[] & string[] & { [K_18 in Exclude<keyof I_1["response_types"], keyof string[]>]: never; }) | undefined;
|
|
24379
|
+
scope?: string | undefined;
|
|
24380
|
+
sector_identifier_uri?: string | undefined;
|
|
24381
|
+
skip_consent?: boolean | undefined;
|
|
24382
|
+
skip_logout_consent?: boolean | undefined;
|
|
24383
|
+
subject_type?: string | undefined;
|
|
24384
|
+
token_endpoint_auth_method?: string | undefined;
|
|
24385
|
+
token_endpoint_auth_signing_alg?: string | undefined;
|
|
24386
|
+
tos_uri?: string | undefined;
|
|
24387
|
+
updated_at?: Date | undefined;
|
|
24388
|
+
userinfo_signed_response_alg?: string | undefined;
|
|
24389
|
+
} & { [K_19 in Exclude<keyof I_1, keyof MezonOauthClient>]: never; }>(object: I_1): MezonOauthClient;
|
|
24390
|
+
};
|
|
24391
|
+
export declare const MezonOauthClientList: {
|
|
24392
|
+
encode(message: MezonOauthClientList, writer?: _m0.Writer): _m0.Writer;
|
|
24393
|
+
decode(input: _m0.Reader | Uint8Array, length?: number): MezonOauthClientList;
|
|
24394
|
+
fromJSON(object: any): MezonOauthClientList;
|
|
24395
|
+
toJSON(message: MezonOauthClientList): unknown;
|
|
24396
|
+
create<I extends {
|
|
24397
|
+
listMezonOauthClient?: {
|
|
24398
|
+
access_token_strategy?: string | undefined;
|
|
24399
|
+
allowed_cors_origins?: string[] | undefined;
|
|
24400
|
+
audience?: string[] | undefined;
|
|
24401
|
+
authorization_code_grant_access_token_lifespan?: string | undefined;
|
|
24402
|
+
authorization_code_grant_id_token_lifespan?: string | undefined;
|
|
24403
|
+
authorization_code_grant_refresh_token_lifespan?: string | undefined;
|
|
24404
|
+
backchannel_logout_session_required?: boolean | undefined;
|
|
24405
|
+
backchannel_logout_uri?: string | undefined;
|
|
24406
|
+
client_credentials_grant_access_token_lifespan?: string | undefined;
|
|
24407
|
+
client_id?: string | undefined;
|
|
24408
|
+
client_name?: string | undefined;
|
|
24409
|
+
client_secret?: string | undefined;
|
|
24410
|
+
client_secret_expires_at?: number | undefined;
|
|
24411
|
+
client_uri?: string | undefined;
|
|
24412
|
+
contacts?: string[] | undefined;
|
|
24413
|
+
created_at?: Date | undefined;
|
|
24414
|
+
frontchannel_logout_session_required?: boolean | undefined;
|
|
24415
|
+
frontchannel_logout_uri?: string | undefined;
|
|
24416
|
+
grant_types?: string[] | undefined;
|
|
24417
|
+
implicit_grant_access_token_lifespan?: string | undefined;
|
|
24418
|
+
implicit_grant_id_token_lifespan?: string | undefined;
|
|
24419
|
+
jwks?: string[] | undefined;
|
|
24420
|
+
jwks_uri?: string | undefined;
|
|
24421
|
+
jwt_bearer_grant_access_token_lifespan?: string | undefined;
|
|
24422
|
+
logo_uri?: string | undefined;
|
|
24423
|
+
owner?: string | undefined;
|
|
24424
|
+
policy_uri?: string | undefined;
|
|
24425
|
+
post_logout_redirect_uris?: string[] | undefined;
|
|
24426
|
+
redirect_uris?: string[] | undefined;
|
|
24427
|
+
refresh_token_grant_access_token_lifespan?: string | undefined;
|
|
24428
|
+
refresh_token_grant_id_token_lifespan?: string | undefined;
|
|
24429
|
+
refresh_token_grant_refresh_token_lifespan?: string | undefined;
|
|
24430
|
+
registration_access_token?: string | undefined;
|
|
24431
|
+
registration_client_uri?: string | undefined;
|
|
24432
|
+
request_object_signing_alg?: string | undefined;
|
|
24433
|
+
request_uris?: string[] | undefined;
|
|
24434
|
+
response_types?: string[] | undefined;
|
|
24435
|
+
scope?: string | undefined;
|
|
24436
|
+
sector_identifier_uri?: string | undefined;
|
|
24437
|
+
skip_consent?: boolean | undefined;
|
|
24438
|
+
skip_logout_consent?: boolean | undefined;
|
|
24439
|
+
subject_type?: string | undefined;
|
|
24440
|
+
token_endpoint_auth_method?: string | undefined;
|
|
24441
|
+
token_endpoint_auth_signing_alg?: string | undefined;
|
|
24442
|
+
tos_uri?: string | undefined;
|
|
24443
|
+
updated_at?: Date | undefined;
|
|
24444
|
+
userinfo_signed_response_alg?: string | undefined;
|
|
24445
|
+
}[] | undefined;
|
|
24446
|
+
} & {
|
|
24447
|
+
listMezonOauthClient?: ({
|
|
24448
|
+
access_token_strategy?: string | undefined;
|
|
24449
|
+
allowed_cors_origins?: string[] | undefined;
|
|
24450
|
+
audience?: string[] | undefined;
|
|
24451
|
+
authorization_code_grant_access_token_lifespan?: string | undefined;
|
|
24452
|
+
authorization_code_grant_id_token_lifespan?: string | undefined;
|
|
24453
|
+
authorization_code_grant_refresh_token_lifespan?: string | undefined;
|
|
24454
|
+
backchannel_logout_session_required?: boolean | undefined;
|
|
24455
|
+
backchannel_logout_uri?: string | undefined;
|
|
24456
|
+
client_credentials_grant_access_token_lifespan?: string | undefined;
|
|
24457
|
+
client_id?: string | undefined;
|
|
24458
|
+
client_name?: string | undefined;
|
|
24459
|
+
client_secret?: string | undefined;
|
|
24460
|
+
client_secret_expires_at?: number | undefined;
|
|
24461
|
+
client_uri?: string | undefined;
|
|
24462
|
+
contacts?: string[] | undefined;
|
|
24463
|
+
created_at?: Date | undefined;
|
|
24464
|
+
frontchannel_logout_session_required?: boolean | undefined;
|
|
24465
|
+
frontchannel_logout_uri?: string | undefined;
|
|
24466
|
+
grant_types?: string[] | undefined;
|
|
24467
|
+
implicit_grant_access_token_lifespan?: string | undefined;
|
|
24468
|
+
implicit_grant_id_token_lifespan?: string | undefined;
|
|
24469
|
+
jwks?: string[] | undefined;
|
|
24470
|
+
jwks_uri?: string | undefined;
|
|
24471
|
+
jwt_bearer_grant_access_token_lifespan?: string | undefined;
|
|
24472
|
+
logo_uri?: string | undefined;
|
|
24473
|
+
owner?: string | undefined;
|
|
24474
|
+
policy_uri?: string | undefined;
|
|
24475
|
+
post_logout_redirect_uris?: string[] | undefined;
|
|
24476
|
+
redirect_uris?: string[] | undefined;
|
|
24477
|
+
refresh_token_grant_access_token_lifespan?: string | undefined;
|
|
24478
|
+
refresh_token_grant_id_token_lifespan?: string | undefined;
|
|
24479
|
+
refresh_token_grant_refresh_token_lifespan?: string | undefined;
|
|
24480
|
+
registration_access_token?: string | undefined;
|
|
24481
|
+
registration_client_uri?: string | undefined;
|
|
24482
|
+
request_object_signing_alg?: string | undefined;
|
|
24483
|
+
request_uris?: string[] | undefined;
|
|
24484
|
+
response_types?: string[] | undefined;
|
|
24485
|
+
scope?: string | undefined;
|
|
24486
|
+
sector_identifier_uri?: string | undefined;
|
|
24487
|
+
skip_consent?: boolean | undefined;
|
|
24488
|
+
skip_logout_consent?: boolean | undefined;
|
|
24489
|
+
subject_type?: string | undefined;
|
|
24490
|
+
token_endpoint_auth_method?: string | undefined;
|
|
24491
|
+
token_endpoint_auth_signing_alg?: string | undefined;
|
|
24492
|
+
tos_uri?: string | undefined;
|
|
24493
|
+
updated_at?: Date | undefined;
|
|
24494
|
+
userinfo_signed_response_alg?: string | undefined;
|
|
24495
|
+
}[] & ({
|
|
24496
|
+
access_token_strategy?: string | undefined;
|
|
24497
|
+
allowed_cors_origins?: string[] | undefined;
|
|
24498
|
+
audience?: string[] | undefined;
|
|
24499
|
+
authorization_code_grant_access_token_lifespan?: string | undefined;
|
|
24500
|
+
authorization_code_grant_id_token_lifespan?: string | undefined;
|
|
24501
|
+
authorization_code_grant_refresh_token_lifespan?: string | undefined;
|
|
24502
|
+
backchannel_logout_session_required?: boolean | undefined;
|
|
24503
|
+
backchannel_logout_uri?: string | undefined;
|
|
24504
|
+
client_credentials_grant_access_token_lifespan?: string | undefined;
|
|
24505
|
+
client_id?: string | undefined;
|
|
24506
|
+
client_name?: string | undefined;
|
|
24507
|
+
client_secret?: string | undefined;
|
|
24508
|
+
client_secret_expires_at?: number | undefined;
|
|
24509
|
+
client_uri?: string | undefined;
|
|
24510
|
+
contacts?: string[] | undefined;
|
|
24511
|
+
created_at?: Date | undefined;
|
|
24512
|
+
frontchannel_logout_session_required?: boolean | undefined;
|
|
24513
|
+
frontchannel_logout_uri?: string | undefined;
|
|
24514
|
+
grant_types?: string[] | undefined;
|
|
24515
|
+
implicit_grant_access_token_lifespan?: string | undefined;
|
|
24516
|
+
implicit_grant_id_token_lifespan?: string | undefined;
|
|
24517
|
+
jwks?: string[] | undefined;
|
|
24518
|
+
jwks_uri?: string | undefined;
|
|
24519
|
+
jwt_bearer_grant_access_token_lifespan?: string | undefined;
|
|
24520
|
+
logo_uri?: string | undefined;
|
|
24521
|
+
owner?: string | undefined;
|
|
24522
|
+
policy_uri?: string | undefined;
|
|
24523
|
+
post_logout_redirect_uris?: string[] | undefined;
|
|
24524
|
+
redirect_uris?: string[] | undefined;
|
|
24525
|
+
refresh_token_grant_access_token_lifespan?: string | undefined;
|
|
24526
|
+
refresh_token_grant_id_token_lifespan?: string | undefined;
|
|
24527
|
+
refresh_token_grant_refresh_token_lifespan?: string | undefined;
|
|
24528
|
+
registration_access_token?: string | undefined;
|
|
24529
|
+
registration_client_uri?: string | undefined;
|
|
24530
|
+
request_object_signing_alg?: string | undefined;
|
|
24531
|
+
request_uris?: string[] | undefined;
|
|
24532
|
+
response_types?: string[] | undefined;
|
|
24533
|
+
scope?: string | undefined;
|
|
24534
|
+
sector_identifier_uri?: string | undefined;
|
|
24535
|
+
skip_consent?: boolean | undefined;
|
|
24536
|
+
skip_logout_consent?: boolean | undefined;
|
|
24537
|
+
subject_type?: string | undefined;
|
|
24538
|
+
token_endpoint_auth_method?: string | undefined;
|
|
24539
|
+
token_endpoint_auth_signing_alg?: string | undefined;
|
|
24540
|
+
tos_uri?: string | undefined;
|
|
24541
|
+
updated_at?: Date | undefined;
|
|
24542
|
+
userinfo_signed_response_alg?: string | undefined;
|
|
24543
|
+
} & {
|
|
24544
|
+
access_token_strategy?: string | undefined;
|
|
24545
|
+
allowed_cors_origins?: (string[] & string[] & { [K in Exclude<keyof I["listMezonOauthClient"][number]["allowed_cors_origins"], keyof string[]>]: never; }) | undefined;
|
|
24546
|
+
audience?: (string[] & string[] & { [K_1 in Exclude<keyof I["listMezonOauthClient"][number]["audience"], keyof string[]>]: never; }) | undefined;
|
|
24547
|
+
authorization_code_grant_access_token_lifespan?: string | undefined;
|
|
24548
|
+
authorization_code_grant_id_token_lifespan?: string | undefined;
|
|
24549
|
+
authorization_code_grant_refresh_token_lifespan?: string | undefined;
|
|
24550
|
+
backchannel_logout_session_required?: boolean | undefined;
|
|
24551
|
+
backchannel_logout_uri?: string | undefined;
|
|
24552
|
+
client_credentials_grant_access_token_lifespan?: string | undefined;
|
|
24553
|
+
client_id?: string | undefined;
|
|
24554
|
+
client_name?: string | undefined;
|
|
24555
|
+
client_secret?: string | undefined;
|
|
24556
|
+
client_secret_expires_at?: number | undefined;
|
|
24557
|
+
client_uri?: string | undefined;
|
|
24558
|
+
contacts?: (string[] & string[] & { [K_2 in Exclude<keyof I["listMezonOauthClient"][number]["contacts"], keyof string[]>]: never; }) | undefined;
|
|
24559
|
+
created_at?: Date | undefined;
|
|
24560
|
+
frontchannel_logout_session_required?: boolean | undefined;
|
|
24561
|
+
frontchannel_logout_uri?: string | undefined;
|
|
24562
|
+
grant_types?: (string[] & string[] & { [K_3 in Exclude<keyof I["listMezonOauthClient"][number]["grant_types"], keyof string[]>]: never; }) | undefined;
|
|
24563
|
+
implicit_grant_access_token_lifespan?: string | undefined;
|
|
24564
|
+
implicit_grant_id_token_lifespan?: string | undefined;
|
|
24565
|
+
jwks?: (string[] & string[] & { [K_4 in Exclude<keyof I["listMezonOauthClient"][number]["jwks"], keyof string[]>]: never; }) | undefined;
|
|
24566
|
+
jwks_uri?: string | undefined;
|
|
24567
|
+
jwt_bearer_grant_access_token_lifespan?: string | undefined;
|
|
24568
|
+
logo_uri?: string | undefined;
|
|
24569
|
+
owner?: string | undefined;
|
|
24570
|
+
policy_uri?: string | undefined;
|
|
24571
|
+
post_logout_redirect_uris?: (string[] & string[] & { [K_5 in Exclude<keyof I["listMezonOauthClient"][number]["post_logout_redirect_uris"], keyof string[]>]: never; }) | undefined;
|
|
24572
|
+
redirect_uris?: (string[] & string[] & { [K_6 in Exclude<keyof I["listMezonOauthClient"][number]["redirect_uris"], keyof string[]>]: never; }) | undefined;
|
|
24573
|
+
refresh_token_grant_access_token_lifespan?: string | undefined;
|
|
24574
|
+
refresh_token_grant_id_token_lifespan?: string | undefined;
|
|
24575
|
+
refresh_token_grant_refresh_token_lifespan?: string | undefined;
|
|
24576
|
+
registration_access_token?: string | undefined;
|
|
24577
|
+
registration_client_uri?: string | undefined;
|
|
24578
|
+
request_object_signing_alg?: string | undefined;
|
|
24579
|
+
request_uris?: (string[] & string[] & { [K_7 in Exclude<keyof I["listMezonOauthClient"][number]["request_uris"], keyof string[]>]: never; }) | undefined;
|
|
24580
|
+
response_types?: (string[] & string[] & { [K_8 in Exclude<keyof I["listMezonOauthClient"][number]["response_types"], keyof string[]>]: never; }) | undefined;
|
|
24581
|
+
scope?: string | undefined;
|
|
24582
|
+
sector_identifier_uri?: string | undefined;
|
|
24583
|
+
skip_consent?: boolean | undefined;
|
|
24584
|
+
skip_logout_consent?: boolean | undefined;
|
|
24585
|
+
subject_type?: string | undefined;
|
|
24586
|
+
token_endpoint_auth_method?: string | undefined;
|
|
24587
|
+
token_endpoint_auth_signing_alg?: string | undefined;
|
|
24588
|
+
tos_uri?: string | undefined;
|
|
24589
|
+
updated_at?: Date | undefined;
|
|
24590
|
+
userinfo_signed_response_alg?: string | undefined;
|
|
24591
|
+
} & { [K_9 in Exclude<keyof I["listMezonOauthClient"][number], keyof MezonOauthClient>]: never; })[] & { [K_10 in Exclude<keyof I["listMezonOauthClient"], keyof {
|
|
24592
|
+
access_token_strategy?: string | undefined;
|
|
24593
|
+
allowed_cors_origins?: string[] | undefined;
|
|
24594
|
+
audience?: string[] | undefined;
|
|
24595
|
+
authorization_code_grant_access_token_lifespan?: string | undefined;
|
|
24596
|
+
authorization_code_grant_id_token_lifespan?: string | undefined;
|
|
24597
|
+
authorization_code_grant_refresh_token_lifespan?: string | undefined;
|
|
24598
|
+
backchannel_logout_session_required?: boolean | undefined;
|
|
24599
|
+
backchannel_logout_uri?: string | undefined;
|
|
24600
|
+
client_credentials_grant_access_token_lifespan?: string | undefined;
|
|
24601
|
+
client_id?: string | undefined;
|
|
24602
|
+
client_name?: string | undefined;
|
|
24603
|
+
client_secret?: string | undefined;
|
|
24604
|
+
client_secret_expires_at?: number | undefined;
|
|
24605
|
+
client_uri?: string | undefined;
|
|
24606
|
+
contacts?: string[] | undefined;
|
|
24607
|
+
created_at?: Date | undefined;
|
|
24608
|
+
frontchannel_logout_session_required?: boolean | undefined;
|
|
24609
|
+
frontchannel_logout_uri?: string | undefined;
|
|
24610
|
+
grant_types?: string[] | undefined;
|
|
24611
|
+
implicit_grant_access_token_lifespan?: string | undefined;
|
|
24612
|
+
implicit_grant_id_token_lifespan?: string | undefined;
|
|
24613
|
+
jwks?: string[] | undefined;
|
|
24614
|
+
jwks_uri?: string | undefined;
|
|
24615
|
+
jwt_bearer_grant_access_token_lifespan?: string | undefined;
|
|
24616
|
+
logo_uri?: string | undefined;
|
|
24617
|
+
owner?: string | undefined;
|
|
24618
|
+
policy_uri?: string | undefined;
|
|
24619
|
+
post_logout_redirect_uris?: string[] | undefined;
|
|
24620
|
+
redirect_uris?: string[] | undefined;
|
|
24621
|
+
refresh_token_grant_access_token_lifespan?: string | undefined;
|
|
24622
|
+
refresh_token_grant_id_token_lifespan?: string | undefined;
|
|
24623
|
+
refresh_token_grant_refresh_token_lifespan?: string | undefined;
|
|
24624
|
+
registration_access_token?: string | undefined;
|
|
24625
|
+
registration_client_uri?: string | undefined;
|
|
24626
|
+
request_object_signing_alg?: string | undefined;
|
|
24627
|
+
request_uris?: string[] | undefined;
|
|
24628
|
+
response_types?: string[] | undefined;
|
|
24629
|
+
scope?: string | undefined;
|
|
24630
|
+
sector_identifier_uri?: string | undefined;
|
|
24631
|
+
skip_consent?: boolean | undefined;
|
|
24632
|
+
skip_logout_consent?: boolean | undefined;
|
|
24633
|
+
subject_type?: string | undefined;
|
|
24634
|
+
token_endpoint_auth_method?: string | undefined;
|
|
24635
|
+
token_endpoint_auth_signing_alg?: string | undefined;
|
|
24636
|
+
tos_uri?: string | undefined;
|
|
24637
|
+
updated_at?: Date | undefined;
|
|
24638
|
+
userinfo_signed_response_alg?: string | undefined;
|
|
24639
|
+
}[]>]: never; }) | undefined;
|
|
24640
|
+
} & { [K_11 in Exclude<keyof I, "listMezonOauthClient">]: never; }>(base?: I | undefined): MezonOauthClientList;
|
|
24641
|
+
fromPartial<I_1 extends {
|
|
24642
|
+
listMezonOauthClient?: {
|
|
24643
|
+
access_token_strategy?: string | undefined;
|
|
24644
|
+
allowed_cors_origins?: string[] | undefined;
|
|
24645
|
+
audience?: string[] | undefined;
|
|
24646
|
+
authorization_code_grant_access_token_lifespan?: string | undefined;
|
|
24647
|
+
authorization_code_grant_id_token_lifespan?: string | undefined;
|
|
24648
|
+
authorization_code_grant_refresh_token_lifespan?: string | undefined;
|
|
24649
|
+
backchannel_logout_session_required?: boolean | undefined;
|
|
24650
|
+
backchannel_logout_uri?: string | undefined;
|
|
24651
|
+
client_credentials_grant_access_token_lifespan?: string | undefined;
|
|
24652
|
+
client_id?: string | undefined;
|
|
24653
|
+
client_name?: string | undefined;
|
|
24654
|
+
client_secret?: string | undefined;
|
|
24655
|
+
client_secret_expires_at?: number | undefined;
|
|
24656
|
+
client_uri?: string | undefined;
|
|
24657
|
+
contacts?: string[] | undefined;
|
|
24658
|
+
created_at?: Date | undefined;
|
|
24659
|
+
frontchannel_logout_session_required?: boolean | undefined;
|
|
24660
|
+
frontchannel_logout_uri?: string | undefined;
|
|
24661
|
+
grant_types?: string[] | undefined;
|
|
24662
|
+
implicit_grant_access_token_lifespan?: string | undefined;
|
|
24663
|
+
implicit_grant_id_token_lifespan?: string | undefined;
|
|
24664
|
+
jwks?: string[] | undefined;
|
|
24665
|
+
jwks_uri?: string | undefined;
|
|
24666
|
+
jwt_bearer_grant_access_token_lifespan?: string | undefined;
|
|
24667
|
+
logo_uri?: string | undefined;
|
|
24668
|
+
owner?: string | undefined;
|
|
24669
|
+
policy_uri?: string | undefined;
|
|
24670
|
+
post_logout_redirect_uris?: string[] | undefined;
|
|
24671
|
+
redirect_uris?: string[] | undefined;
|
|
24672
|
+
refresh_token_grant_access_token_lifespan?: string | undefined;
|
|
24673
|
+
refresh_token_grant_id_token_lifespan?: string | undefined;
|
|
24674
|
+
refresh_token_grant_refresh_token_lifespan?: string | undefined;
|
|
24675
|
+
registration_access_token?: string | undefined;
|
|
24676
|
+
registration_client_uri?: string | undefined;
|
|
24677
|
+
request_object_signing_alg?: string | undefined;
|
|
24678
|
+
request_uris?: string[] | undefined;
|
|
24679
|
+
response_types?: string[] | undefined;
|
|
24680
|
+
scope?: string | undefined;
|
|
24681
|
+
sector_identifier_uri?: string | undefined;
|
|
24682
|
+
skip_consent?: boolean | undefined;
|
|
24683
|
+
skip_logout_consent?: boolean | undefined;
|
|
24684
|
+
subject_type?: string | undefined;
|
|
24685
|
+
token_endpoint_auth_method?: string | undefined;
|
|
24686
|
+
token_endpoint_auth_signing_alg?: string | undefined;
|
|
24687
|
+
tos_uri?: string | undefined;
|
|
24688
|
+
updated_at?: Date | undefined;
|
|
24689
|
+
userinfo_signed_response_alg?: string | undefined;
|
|
24690
|
+
}[] | undefined;
|
|
24691
|
+
} & {
|
|
24692
|
+
listMezonOauthClient?: ({
|
|
24693
|
+
access_token_strategy?: string | undefined;
|
|
24694
|
+
allowed_cors_origins?: string[] | undefined;
|
|
24695
|
+
audience?: string[] | undefined;
|
|
24696
|
+
authorization_code_grant_access_token_lifespan?: string | undefined;
|
|
24697
|
+
authorization_code_grant_id_token_lifespan?: string | undefined;
|
|
24698
|
+
authorization_code_grant_refresh_token_lifespan?: string | undefined;
|
|
24699
|
+
backchannel_logout_session_required?: boolean | undefined;
|
|
24700
|
+
backchannel_logout_uri?: string | undefined;
|
|
24701
|
+
client_credentials_grant_access_token_lifespan?: string | undefined;
|
|
24702
|
+
client_id?: string | undefined;
|
|
24703
|
+
client_name?: string | undefined;
|
|
24704
|
+
client_secret?: string | undefined;
|
|
24705
|
+
client_secret_expires_at?: number | undefined;
|
|
24706
|
+
client_uri?: string | undefined;
|
|
24707
|
+
contacts?: string[] | undefined;
|
|
24708
|
+
created_at?: Date | undefined;
|
|
24709
|
+
frontchannel_logout_session_required?: boolean | undefined;
|
|
24710
|
+
frontchannel_logout_uri?: string | undefined;
|
|
24711
|
+
grant_types?: string[] | undefined;
|
|
24712
|
+
implicit_grant_access_token_lifespan?: string | undefined;
|
|
24713
|
+
implicit_grant_id_token_lifespan?: string | undefined;
|
|
24714
|
+
jwks?: string[] | undefined;
|
|
24715
|
+
jwks_uri?: string | undefined;
|
|
24716
|
+
jwt_bearer_grant_access_token_lifespan?: string | undefined;
|
|
24717
|
+
logo_uri?: string | undefined;
|
|
24718
|
+
owner?: string | undefined;
|
|
24719
|
+
policy_uri?: string | undefined;
|
|
24720
|
+
post_logout_redirect_uris?: string[] | undefined;
|
|
24721
|
+
redirect_uris?: string[] | undefined;
|
|
24722
|
+
refresh_token_grant_access_token_lifespan?: string | undefined;
|
|
24723
|
+
refresh_token_grant_id_token_lifespan?: string | undefined;
|
|
24724
|
+
refresh_token_grant_refresh_token_lifespan?: string | undefined;
|
|
24725
|
+
registration_access_token?: string | undefined;
|
|
24726
|
+
registration_client_uri?: string | undefined;
|
|
24727
|
+
request_object_signing_alg?: string | undefined;
|
|
24728
|
+
request_uris?: string[] | undefined;
|
|
24729
|
+
response_types?: string[] | undefined;
|
|
24730
|
+
scope?: string | undefined;
|
|
24731
|
+
sector_identifier_uri?: string | undefined;
|
|
24732
|
+
skip_consent?: boolean | undefined;
|
|
24733
|
+
skip_logout_consent?: boolean | undefined;
|
|
24734
|
+
subject_type?: string | undefined;
|
|
24735
|
+
token_endpoint_auth_method?: string | undefined;
|
|
24736
|
+
token_endpoint_auth_signing_alg?: string | undefined;
|
|
24737
|
+
tos_uri?: string | undefined;
|
|
24738
|
+
updated_at?: Date | undefined;
|
|
24739
|
+
userinfo_signed_response_alg?: string | undefined;
|
|
24740
|
+
}[] & ({
|
|
24741
|
+
access_token_strategy?: string | undefined;
|
|
24742
|
+
allowed_cors_origins?: string[] | undefined;
|
|
24743
|
+
audience?: string[] | undefined;
|
|
24744
|
+
authorization_code_grant_access_token_lifespan?: string | undefined;
|
|
24745
|
+
authorization_code_grant_id_token_lifespan?: string | undefined;
|
|
24746
|
+
authorization_code_grant_refresh_token_lifespan?: string | undefined;
|
|
24747
|
+
backchannel_logout_session_required?: boolean | undefined;
|
|
24748
|
+
backchannel_logout_uri?: string | undefined;
|
|
24749
|
+
client_credentials_grant_access_token_lifespan?: string | undefined;
|
|
24750
|
+
client_id?: string | undefined;
|
|
24751
|
+
client_name?: string | undefined;
|
|
24752
|
+
client_secret?: string | undefined;
|
|
24753
|
+
client_secret_expires_at?: number | undefined;
|
|
24754
|
+
client_uri?: string | undefined;
|
|
24755
|
+
contacts?: string[] | undefined;
|
|
24756
|
+
created_at?: Date | undefined;
|
|
24757
|
+
frontchannel_logout_session_required?: boolean | undefined;
|
|
24758
|
+
frontchannel_logout_uri?: string | undefined;
|
|
24759
|
+
grant_types?: string[] | undefined;
|
|
24760
|
+
implicit_grant_access_token_lifespan?: string | undefined;
|
|
24761
|
+
implicit_grant_id_token_lifespan?: string | undefined;
|
|
24762
|
+
jwks?: string[] | undefined;
|
|
24763
|
+
jwks_uri?: string | undefined;
|
|
24764
|
+
jwt_bearer_grant_access_token_lifespan?: string | undefined;
|
|
24765
|
+
logo_uri?: string | undefined;
|
|
24766
|
+
owner?: string | undefined;
|
|
24767
|
+
policy_uri?: string | undefined;
|
|
24768
|
+
post_logout_redirect_uris?: string[] | undefined;
|
|
24769
|
+
redirect_uris?: string[] | undefined;
|
|
24770
|
+
refresh_token_grant_access_token_lifespan?: string | undefined;
|
|
24771
|
+
refresh_token_grant_id_token_lifespan?: string | undefined;
|
|
24772
|
+
refresh_token_grant_refresh_token_lifespan?: string | undefined;
|
|
24773
|
+
registration_access_token?: string | undefined;
|
|
24774
|
+
registration_client_uri?: string | undefined;
|
|
24775
|
+
request_object_signing_alg?: string | undefined;
|
|
24776
|
+
request_uris?: string[] | undefined;
|
|
24777
|
+
response_types?: string[] | undefined;
|
|
24778
|
+
scope?: string | undefined;
|
|
24779
|
+
sector_identifier_uri?: string | undefined;
|
|
24780
|
+
skip_consent?: boolean | undefined;
|
|
24781
|
+
skip_logout_consent?: boolean | undefined;
|
|
24782
|
+
subject_type?: string | undefined;
|
|
24783
|
+
token_endpoint_auth_method?: string | undefined;
|
|
24784
|
+
token_endpoint_auth_signing_alg?: string | undefined;
|
|
24785
|
+
tos_uri?: string | undefined;
|
|
24786
|
+
updated_at?: Date | undefined;
|
|
24787
|
+
userinfo_signed_response_alg?: string | undefined;
|
|
24788
|
+
} & {
|
|
24789
|
+
access_token_strategy?: string | undefined;
|
|
24790
|
+
allowed_cors_origins?: (string[] & string[] & { [K_12 in Exclude<keyof I_1["listMezonOauthClient"][number]["allowed_cors_origins"], keyof string[]>]: never; }) | undefined;
|
|
24791
|
+
audience?: (string[] & string[] & { [K_13 in Exclude<keyof I_1["listMezonOauthClient"][number]["audience"], keyof string[]>]: never; }) | undefined;
|
|
24792
|
+
authorization_code_grant_access_token_lifespan?: string | undefined;
|
|
24793
|
+
authorization_code_grant_id_token_lifespan?: string | undefined;
|
|
24794
|
+
authorization_code_grant_refresh_token_lifespan?: string | undefined;
|
|
24795
|
+
backchannel_logout_session_required?: boolean | undefined;
|
|
24796
|
+
backchannel_logout_uri?: string | undefined;
|
|
24797
|
+
client_credentials_grant_access_token_lifespan?: string | undefined;
|
|
24798
|
+
client_id?: string | undefined;
|
|
24799
|
+
client_name?: string | undefined;
|
|
24800
|
+
client_secret?: string | undefined;
|
|
24801
|
+
client_secret_expires_at?: number | undefined;
|
|
24802
|
+
client_uri?: string | undefined;
|
|
24803
|
+
contacts?: (string[] & string[] & { [K_14 in Exclude<keyof I_1["listMezonOauthClient"][number]["contacts"], keyof string[]>]: never; }) | undefined;
|
|
24804
|
+
created_at?: Date | undefined;
|
|
24805
|
+
frontchannel_logout_session_required?: boolean | undefined;
|
|
24806
|
+
frontchannel_logout_uri?: string | undefined;
|
|
24807
|
+
grant_types?: (string[] & string[] & { [K_15 in Exclude<keyof I_1["listMezonOauthClient"][number]["grant_types"], keyof string[]>]: never; }) | undefined;
|
|
24808
|
+
implicit_grant_access_token_lifespan?: string | undefined;
|
|
24809
|
+
implicit_grant_id_token_lifespan?: string | undefined;
|
|
24810
|
+
jwks?: (string[] & string[] & { [K_16 in Exclude<keyof I_1["listMezonOauthClient"][number]["jwks"], keyof string[]>]: never; }) | undefined;
|
|
24811
|
+
jwks_uri?: string | undefined;
|
|
24812
|
+
jwt_bearer_grant_access_token_lifespan?: string | undefined;
|
|
24813
|
+
logo_uri?: string | undefined;
|
|
24814
|
+
owner?: string | undefined;
|
|
24815
|
+
policy_uri?: string | undefined;
|
|
24816
|
+
post_logout_redirect_uris?: (string[] & string[] & { [K_17 in Exclude<keyof I_1["listMezonOauthClient"][number]["post_logout_redirect_uris"], keyof string[]>]: never; }) | undefined;
|
|
24817
|
+
redirect_uris?: (string[] & string[] & { [K_18 in Exclude<keyof I_1["listMezonOauthClient"][number]["redirect_uris"], keyof string[]>]: never; }) | undefined;
|
|
24818
|
+
refresh_token_grant_access_token_lifespan?: string | undefined;
|
|
24819
|
+
refresh_token_grant_id_token_lifespan?: string | undefined;
|
|
24820
|
+
refresh_token_grant_refresh_token_lifespan?: string | undefined;
|
|
24821
|
+
registration_access_token?: string | undefined;
|
|
24822
|
+
registration_client_uri?: string | undefined;
|
|
24823
|
+
request_object_signing_alg?: string | undefined;
|
|
24824
|
+
request_uris?: (string[] & string[] & { [K_19 in Exclude<keyof I_1["listMezonOauthClient"][number]["request_uris"], keyof string[]>]: never; }) | undefined;
|
|
24825
|
+
response_types?: (string[] & string[] & { [K_20 in Exclude<keyof I_1["listMezonOauthClient"][number]["response_types"], keyof string[]>]: never; }) | undefined;
|
|
24826
|
+
scope?: string | undefined;
|
|
24827
|
+
sector_identifier_uri?: string | undefined;
|
|
24828
|
+
skip_consent?: boolean | undefined;
|
|
24829
|
+
skip_logout_consent?: boolean | undefined;
|
|
24830
|
+
subject_type?: string | undefined;
|
|
24831
|
+
token_endpoint_auth_method?: string | undefined;
|
|
24832
|
+
token_endpoint_auth_signing_alg?: string | undefined;
|
|
24833
|
+
tos_uri?: string | undefined;
|
|
24834
|
+
updated_at?: Date | undefined;
|
|
24835
|
+
userinfo_signed_response_alg?: string | undefined;
|
|
24836
|
+
} & { [K_21 in Exclude<keyof I_1["listMezonOauthClient"][number], keyof MezonOauthClient>]: never; })[] & { [K_22 in Exclude<keyof I_1["listMezonOauthClient"], keyof {
|
|
24837
|
+
access_token_strategy?: string | undefined;
|
|
24838
|
+
allowed_cors_origins?: string[] | undefined;
|
|
24839
|
+
audience?: string[] | undefined;
|
|
24840
|
+
authorization_code_grant_access_token_lifespan?: string | undefined;
|
|
24841
|
+
authorization_code_grant_id_token_lifespan?: string | undefined;
|
|
24842
|
+
authorization_code_grant_refresh_token_lifespan?: string | undefined;
|
|
24843
|
+
backchannel_logout_session_required?: boolean | undefined;
|
|
24844
|
+
backchannel_logout_uri?: string | undefined;
|
|
24845
|
+
client_credentials_grant_access_token_lifespan?: string | undefined;
|
|
24846
|
+
client_id?: string | undefined;
|
|
24847
|
+
client_name?: string | undefined;
|
|
24848
|
+
client_secret?: string | undefined;
|
|
24849
|
+
client_secret_expires_at?: number | undefined;
|
|
24850
|
+
client_uri?: string | undefined;
|
|
24851
|
+
contacts?: string[] | undefined;
|
|
24852
|
+
created_at?: Date | undefined;
|
|
24853
|
+
frontchannel_logout_session_required?: boolean | undefined;
|
|
24854
|
+
frontchannel_logout_uri?: string | undefined;
|
|
24855
|
+
grant_types?: string[] | undefined;
|
|
24856
|
+
implicit_grant_access_token_lifespan?: string | undefined;
|
|
24857
|
+
implicit_grant_id_token_lifespan?: string | undefined;
|
|
24858
|
+
jwks?: string[] | undefined;
|
|
24859
|
+
jwks_uri?: string | undefined;
|
|
24860
|
+
jwt_bearer_grant_access_token_lifespan?: string | undefined;
|
|
24861
|
+
logo_uri?: string | undefined;
|
|
24862
|
+
owner?: string | undefined;
|
|
24863
|
+
policy_uri?: string | undefined;
|
|
24864
|
+
post_logout_redirect_uris?: string[] | undefined;
|
|
24865
|
+
redirect_uris?: string[] | undefined;
|
|
24866
|
+
refresh_token_grant_access_token_lifespan?: string | undefined;
|
|
24867
|
+
refresh_token_grant_id_token_lifespan?: string | undefined;
|
|
24868
|
+
refresh_token_grant_refresh_token_lifespan?: string | undefined;
|
|
24869
|
+
registration_access_token?: string | undefined;
|
|
24870
|
+
registration_client_uri?: string | undefined;
|
|
24871
|
+
request_object_signing_alg?: string | undefined;
|
|
24872
|
+
request_uris?: string[] | undefined;
|
|
24873
|
+
response_types?: string[] | undefined;
|
|
24874
|
+
scope?: string | undefined;
|
|
24875
|
+
sector_identifier_uri?: string | undefined;
|
|
24876
|
+
skip_consent?: boolean | undefined;
|
|
24877
|
+
skip_logout_consent?: boolean | undefined;
|
|
24878
|
+
subject_type?: string | undefined;
|
|
24879
|
+
token_endpoint_auth_method?: string | undefined;
|
|
24880
|
+
token_endpoint_auth_signing_alg?: string | undefined;
|
|
24881
|
+
tos_uri?: string | undefined;
|
|
24882
|
+
updated_at?: Date | undefined;
|
|
24883
|
+
userinfo_signed_response_alg?: string | undefined;
|
|
24884
|
+
}[]>]: never; }) | undefined;
|
|
24885
|
+
} & { [K_23 in Exclude<keyof I_1, "listMezonOauthClient">]: never; }>(object: I_1): MezonOauthClientList;
|
|
24886
|
+
};
|
|
22230
24887
|
type Builtin = Date | Function | Uint8Array | string | number | boolean | undefined;
|
|
22231
24888
|
export type DeepPartial<T> = T extends Builtin ? T : T extends globalThis.Array<infer U> ? globalThis.Array<DeepPartial<U>> : T extends ReadonlyArray<infer U> ? ReadonlyArray<DeepPartial<U>> : T extends {} ? {
|
|
22232
24889
|
[K in keyof T]?: DeepPartial<T[K]>;
|