mezon-sdk 2.7.71 → 2.7.73
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 +577 -0
- package/dist/cjs/api/api.js +979 -7
- package/dist/cjs/api/api.js.map +1 -1
- package/dist/cjs/client.d.ts +11 -1
- package/dist/cjs/client.js +21 -3
- package/dist/cjs/client.js.map +1 -1
- package/dist/cjs/google/protobuf/struct.js +1 -1
- package/dist/cjs/google/protobuf/timestamp.js +1 -1
- package/dist/cjs/google/protobuf/wrappers.js +1 -1
- package/dist/cjs/interfaces/client.d.ts +11 -2
- package/dist/cjs/interfaces/client.js +10 -1
- package/dist/cjs/interfaces/client.js.map +1 -1
- package/dist/cjs/rtapi/realtime.d.ts +263 -145
- package/dist/cjs/rtapi/realtime.js +170 -43
- package/dist/cjs/rtapi/realtime.js.map +1 -1
- package/dist/esm/api/api.d.ts +577 -0
- package/dist/esm/api/api.js +961 -2
- package/dist/esm/api/api.js.map +1 -1
- package/dist/esm/client.d.ts +11 -1
- package/dist/esm/client.js +21 -3
- package/dist/esm/client.js.map +1 -1
- package/dist/esm/google/protobuf/struct.js +1 -1
- package/dist/esm/google/protobuf/timestamp.js +1 -1
- package/dist/esm/google/protobuf/wrappers.js +1 -1
- package/dist/esm/interfaces/client.d.ts +11 -2
- package/dist/esm/interfaces/client.js +9 -0
- package/dist/esm/interfaces/client.js.map +1 -1
- package/dist/esm/rtapi/realtime.d.ts +263 -145
- package/dist/esm/rtapi/realtime.js +164 -38
- 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
|
@@ -59,6 +59,10 @@ export interface Account {
|
|
|
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. */
|
|
61
61
|
disable_time: Date | undefined;
|
|
62
|
+
/** Logo url */
|
|
63
|
+
logo: string;
|
|
64
|
+
/** Splash screen url */
|
|
65
|
+
splash_screen: string;
|
|
62
66
|
}
|
|
63
67
|
/** Obtain a new authentication token using a refresh token. */
|
|
64
68
|
export interface AccountRefresh {
|
|
@@ -398,6 +402,8 @@ export interface ChannelMessage {
|
|
|
398
402
|
hide_editted: boolean;
|
|
399
403
|
/** is public */
|
|
400
404
|
is_public: boolean;
|
|
405
|
+
/** topic */
|
|
406
|
+
topic_id: string;
|
|
401
407
|
}
|
|
402
408
|
/** Mention to message */
|
|
403
409
|
export interface MessageMention {
|
|
@@ -1008,6 +1014,10 @@ export interface UpdateAccountRequest {
|
|
|
1008
1014
|
about_me: string;
|
|
1009
1015
|
/** date of birth */
|
|
1010
1016
|
dob: Date | undefined;
|
|
1017
|
+
/** logo url */
|
|
1018
|
+
logo: string;
|
|
1019
|
+
/** splash screen */
|
|
1020
|
+
splash_screen: string;
|
|
1011
1021
|
}
|
|
1012
1022
|
/** Update fields in a given group. */
|
|
1013
1023
|
export interface UpdateGroupRequest {
|
|
@@ -2751,6 +2761,7 @@ export interface AuditLog {
|
|
|
2751
2761
|
entity_id: string;
|
|
2752
2762
|
details: string;
|
|
2753
2763
|
time_log: Date | undefined;
|
|
2764
|
+
channel_id: string;
|
|
2754
2765
|
}
|
|
2755
2766
|
export interface ListAuditLog {
|
|
2756
2767
|
total_count: number;
|
|
@@ -2989,6 +3000,72 @@ export interface UpdateOnboardingStepRequest {
|
|
|
2989
3000
|
/** onboarding step. */
|
|
2990
3001
|
onboarding_step: number | undefined;
|
|
2991
3002
|
}
|
|
3003
|
+
/** A list of users belonging to a channel, along with their role. */
|
|
3004
|
+
export interface PTTChannelUser {
|
|
3005
|
+
/** user join id */
|
|
3006
|
+
id: string;
|
|
3007
|
+
/** user for a channel. */
|
|
3008
|
+
user_id: string;
|
|
3009
|
+
/** channel id */
|
|
3010
|
+
channel_id: string;
|
|
3011
|
+
/** participant */
|
|
3012
|
+
participant: string;
|
|
3013
|
+
}
|
|
3014
|
+
/** A list of users belonging to a channel, along with their role. */
|
|
3015
|
+
export interface PTTChannelUserList {
|
|
3016
|
+
/** list of ptt channel user */
|
|
3017
|
+
ptt_channel_users: PTTChannelUser[];
|
|
3018
|
+
}
|
|
3019
|
+
export interface WalletLedger {
|
|
3020
|
+
/** change set id */
|
|
3021
|
+
id: string;
|
|
3022
|
+
/** user id */
|
|
3023
|
+
user_id: string;
|
|
3024
|
+
/** create time */
|
|
3025
|
+
create_time: Date | undefined;
|
|
3026
|
+
/** value */
|
|
3027
|
+
value: number;
|
|
3028
|
+
/** transaction id */
|
|
3029
|
+
transaction_id: string;
|
|
3030
|
+
}
|
|
3031
|
+
export interface WalletLedgerList {
|
|
3032
|
+
wallet_ledger: WalletLedger[];
|
|
3033
|
+
prev_cursor: string;
|
|
3034
|
+
next_cursor: string;
|
|
3035
|
+
}
|
|
3036
|
+
export interface WalletLedgerListReq {
|
|
3037
|
+
limit: number | undefined;
|
|
3038
|
+
cursor: string;
|
|
3039
|
+
transaction_id: string;
|
|
3040
|
+
}
|
|
3041
|
+
export interface SdTopic {
|
|
3042
|
+
id: string;
|
|
3043
|
+
creator_id: string;
|
|
3044
|
+
message_id: string;
|
|
3045
|
+
clan_id: string;
|
|
3046
|
+
channel_id: string;
|
|
3047
|
+
status: number;
|
|
3048
|
+
create_time: Date | undefined;
|
|
3049
|
+
update_time: Date | undefined;
|
|
3050
|
+
}
|
|
3051
|
+
export interface SdTopicRequest {
|
|
3052
|
+
message_id: string;
|
|
3053
|
+
clan_id: string;
|
|
3054
|
+
channel_id: string;
|
|
3055
|
+
}
|
|
3056
|
+
export interface SdTopicList {
|
|
3057
|
+
count: number;
|
|
3058
|
+
topics: SdTopic[];
|
|
3059
|
+
}
|
|
3060
|
+
export interface ListSdTopicRequest {
|
|
3061
|
+
channel_id: string;
|
|
3062
|
+
limit: number;
|
|
3063
|
+
}
|
|
3064
|
+
export interface DeleteSdTopicRequest {
|
|
3065
|
+
channel_id: string;
|
|
3066
|
+
id: string;
|
|
3067
|
+
clan_id: string;
|
|
3068
|
+
}
|
|
2992
3069
|
export declare const Account: {
|
|
2993
3070
|
encode(message: Account, writer?: _m0.Writer): _m0.Writer;
|
|
2994
3071
|
decode(input: _m0.Reader | Uint8Array, length?: number): Account;
|
|
@@ -3029,6 +3106,8 @@ export declare const Account: {
|
|
|
3029
3106
|
custom_id?: string | undefined;
|
|
3030
3107
|
verify_time?: Date | undefined;
|
|
3031
3108
|
disable_time?: Date | undefined;
|
|
3109
|
+
logo?: string | undefined;
|
|
3110
|
+
splash_screen?: string | undefined;
|
|
3032
3111
|
} & {
|
|
3033
3112
|
user?: ({
|
|
3034
3113
|
id?: string | undefined;
|
|
@@ -3103,6 +3182,8 @@ export declare const Account: {
|
|
|
3103
3182
|
custom_id?: string | undefined;
|
|
3104
3183
|
verify_time?: Date | undefined;
|
|
3105
3184
|
disable_time?: Date | undefined;
|
|
3185
|
+
logo?: string | undefined;
|
|
3186
|
+
splash_screen?: string | undefined;
|
|
3106
3187
|
} & { [K_4 in Exclude<keyof I, keyof Account>]: never; }>(base?: I | undefined): Account;
|
|
3107
3188
|
fromPartial<I_1 extends {
|
|
3108
3189
|
user?: {
|
|
@@ -3139,6 +3220,8 @@ export declare const Account: {
|
|
|
3139
3220
|
custom_id?: string | undefined;
|
|
3140
3221
|
verify_time?: Date | undefined;
|
|
3141
3222
|
disable_time?: Date | undefined;
|
|
3223
|
+
logo?: string | undefined;
|
|
3224
|
+
splash_screen?: string | undefined;
|
|
3142
3225
|
} & {
|
|
3143
3226
|
user?: ({
|
|
3144
3227
|
id?: string | undefined;
|
|
@@ -3213,6 +3296,8 @@ export declare const Account: {
|
|
|
3213
3296
|
custom_id?: string | undefined;
|
|
3214
3297
|
verify_time?: Date | undefined;
|
|
3215
3298
|
disable_time?: Date | undefined;
|
|
3299
|
+
logo?: string | undefined;
|
|
3300
|
+
splash_screen?: string | undefined;
|
|
3216
3301
|
} & { [K_9 in Exclude<keyof I_1, keyof Account>]: never; }>(object: I_1): Account;
|
|
3217
3302
|
};
|
|
3218
3303
|
export declare const AccountRefresh: {
|
|
@@ -4533,6 +4618,7 @@ export declare const ChannelMessage: {
|
|
|
4533
4618
|
mode?: number | undefined;
|
|
4534
4619
|
hide_editted?: boolean | undefined;
|
|
4535
4620
|
is_public?: boolean | undefined;
|
|
4621
|
+
topic_id?: string | undefined;
|
|
4536
4622
|
} & {
|
|
4537
4623
|
clan_id?: string | undefined;
|
|
4538
4624
|
channel_id?: string | undefined;
|
|
@@ -4560,6 +4646,7 @@ export declare const ChannelMessage: {
|
|
|
4560
4646
|
mode?: number | undefined;
|
|
4561
4647
|
hide_editted?: boolean | undefined;
|
|
4562
4648
|
is_public?: boolean | undefined;
|
|
4649
|
+
topic_id?: string | undefined;
|
|
4563
4650
|
} & { [K in Exclude<keyof I, keyof ChannelMessage>]: never; }>(base?: I | undefined): ChannelMessage;
|
|
4564
4651
|
fromPartial<I_1 extends {
|
|
4565
4652
|
clan_id?: string | undefined;
|
|
@@ -4588,6 +4675,7 @@ export declare const ChannelMessage: {
|
|
|
4588
4675
|
mode?: number | undefined;
|
|
4589
4676
|
hide_editted?: boolean | undefined;
|
|
4590
4677
|
is_public?: boolean | undefined;
|
|
4678
|
+
topic_id?: string | undefined;
|
|
4591
4679
|
} & {
|
|
4592
4680
|
clan_id?: string | undefined;
|
|
4593
4681
|
channel_id?: string | undefined;
|
|
@@ -4615,6 +4703,7 @@ export declare const ChannelMessage: {
|
|
|
4615
4703
|
mode?: number | undefined;
|
|
4616
4704
|
hide_editted?: boolean | undefined;
|
|
4617
4705
|
is_public?: boolean | undefined;
|
|
4706
|
+
topic_id?: string | undefined;
|
|
4618
4707
|
} & { [K_1 in Exclude<keyof I_1, keyof ChannelMessage>]: never; }>(object: I_1): ChannelMessage;
|
|
4619
4708
|
};
|
|
4620
4709
|
export declare const MessageMention: {
|
|
@@ -4922,6 +5011,7 @@ export declare const ChannelMessageList: {
|
|
|
4922
5011
|
mode?: number | undefined;
|
|
4923
5012
|
hide_editted?: boolean | undefined;
|
|
4924
5013
|
is_public?: boolean | undefined;
|
|
5014
|
+
topic_id?: string | undefined;
|
|
4925
5015
|
}[] | undefined;
|
|
4926
5016
|
last_seen_message?: {
|
|
4927
5017
|
id?: string | undefined;
|
|
@@ -4971,6 +5061,7 @@ export declare const ChannelMessageList: {
|
|
|
4971
5061
|
mode?: number | undefined;
|
|
4972
5062
|
hide_editted?: boolean | undefined;
|
|
4973
5063
|
is_public?: boolean | undefined;
|
|
5064
|
+
topic_id?: string | undefined;
|
|
4974
5065
|
}[] & ({
|
|
4975
5066
|
clan_id?: string | undefined;
|
|
4976
5067
|
channel_id?: string | undefined;
|
|
@@ -4998,6 +5089,7 @@ export declare const ChannelMessageList: {
|
|
|
4998
5089
|
mode?: number | undefined;
|
|
4999
5090
|
hide_editted?: boolean | undefined;
|
|
5000
5091
|
is_public?: boolean | undefined;
|
|
5092
|
+
topic_id?: string | undefined;
|
|
5001
5093
|
} & {
|
|
5002
5094
|
clan_id?: string | undefined;
|
|
5003
5095
|
channel_id?: string | undefined;
|
|
@@ -5025,6 +5117,7 @@ export declare const ChannelMessageList: {
|
|
|
5025
5117
|
mode?: number | undefined;
|
|
5026
5118
|
hide_editted?: boolean | undefined;
|
|
5027
5119
|
is_public?: boolean | undefined;
|
|
5120
|
+
topic_id?: string | undefined;
|
|
5028
5121
|
} & { [K in Exclude<keyof I["messages"][number], keyof ChannelMessage>]: never; })[] & { [K_1 in Exclude<keyof I["messages"], keyof {
|
|
5029
5122
|
clan_id?: string | undefined;
|
|
5030
5123
|
channel_id?: string | undefined;
|
|
@@ -5052,6 +5145,7 @@ export declare const ChannelMessageList: {
|
|
|
5052
5145
|
mode?: number | undefined;
|
|
5053
5146
|
hide_editted?: boolean | undefined;
|
|
5054
5147
|
is_public?: boolean | undefined;
|
|
5148
|
+
topic_id?: string | undefined;
|
|
5055
5149
|
}[]>]: never; }) | undefined;
|
|
5056
5150
|
last_seen_message?: ({
|
|
5057
5151
|
id?: string | undefined;
|
|
@@ -5120,6 +5214,7 @@ export declare const ChannelMessageList: {
|
|
|
5120
5214
|
mode?: number | undefined;
|
|
5121
5215
|
hide_editted?: boolean | undefined;
|
|
5122
5216
|
is_public?: boolean | undefined;
|
|
5217
|
+
topic_id?: string | undefined;
|
|
5123
5218
|
}[] | undefined;
|
|
5124
5219
|
last_seen_message?: {
|
|
5125
5220
|
id?: string | undefined;
|
|
@@ -5169,6 +5264,7 @@ export declare const ChannelMessageList: {
|
|
|
5169
5264
|
mode?: number | undefined;
|
|
5170
5265
|
hide_editted?: boolean | undefined;
|
|
5171
5266
|
is_public?: boolean | undefined;
|
|
5267
|
+
topic_id?: string | undefined;
|
|
5172
5268
|
}[] & ({
|
|
5173
5269
|
clan_id?: string | undefined;
|
|
5174
5270
|
channel_id?: string | undefined;
|
|
@@ -5196,6 +5292,7 @@ export declare const ChannelMessageList: {
|
|
|
5196
5292
|
mode?: number | undefined;
|
|
5197
5293
|
hide_editted?: boolean | undefined;
|
|
5198
5294
|
is_public?: boolean | undefined;
|
|
5295
|
+
topic_id?: string | undefined;
|
|
5199
5296
|
} & {
|
|
5200
5297
|
clan_id?: string | undefined;
|
|
5201
5298
|
channel_id?: string | undefined;
|
|
@@ -5223,6 +5320,7 @@ export declare const ChannelMessageList: {
|
|
|
5223
5320
|
mode?: number | undefined;
|
|
5224
5321
|
hide_editted?: boolean | undefined;
|
|
5225
5322
|
is_public?: boolean | undefined;
|
|
5323
|
+
topic_id?: string | undefined;
|
|
5226
5324
|
} & { [K_5 in Exclude<keyof I_1["messages"][number], keyof ChannelMessage>]: never; })[] & { [K_6 in Exclude<keyof I_1["messages"], keyof {
|
|
5227
5325
|
clan_id?: string | undefined;
|
|
5228
5326
|
channel_id?: string | undefined;
|
|
@@ -5250,6 +5348,7 @@ export declare const ChannelMessageList: {
|
|
|
5250
5348
|
mode?: number | undefined;
|
|
5251
5349
|
hide_editted?: boolean | undefined;
|
|
5252
5350
|
is_public?: boolean | undefined;
|
|
5351
|
+
topic_id?: string | undefined;
|
|
5253
5352
|
}[]>]: never; }) | undefined;
|
|
5254
5353
|
last_seen_message?: ({
|
|
5255
5354
|
id?: string | undefined;
|
|
@@ -8367,6 +8466,8 @@ export declare const UpdateAccountRequest: {
|
|
|
8367
8466
|
timezone?: string | undefined;
|
|
8368
8467
|
about_me?: string | undefined;
|
|
8369
8468
|
dob?: Date | undefined;
|
|
8469
|
+
logo?: string | undefined;
|
|
8470
|
+
splash_screen?: string | undefined;
|
|
8370
8471
|
} & {
|
|
8371
8472
|
username?: string | undefined;
|
|
8372
8473
|
display_name?: string | undefined;
|
|
@@ -8376,6 +8477,8 @@ export declare const UpdateAccountRequest: {
|
|
|
8376
8477
|
timezone?: string | undefined;
|
|
8377
8478
|
about_me?: string | undefined;
|
|
8378
8479
|
dob?: Date | undefined;
|
|
8480
|
+
logo?: string | undefined;
|
|
8481
|
+
splash_screen?: string | undefined;
|
|
8379
8482
|
} & { [K in Exclude<keyof I, keyof UpdateAccountRequest>]: never; }>(base?: I | undefined): UpdateAccountRequest;
|
|
8380
8483
|
fromPartial<I_1 extends {
|
|
8381
8484
|
username?: string | undefined;
|
|
@@ -8386,6 +8489,8 @@ export declare const UpdateAccountRequest: {
|
|
|
8386
8489
|
timezone?: string | undefined;
|
|
8387
8490
|
about_me?: string | undefined;
|
|
8388
8491
|
dob?: Date | undefined;
|
|
8492
|
+
logo?: string | undefined;
|
|
8493
|
+
splash_screen?: string | undefined;
|
|
8389
8494
|
} & {
|
|
8390
8495
|
username?: string | undefined;
|
|
8391
8496
|
display_name?: string | undefined;
|
|
@@ -8395,6 +8500,8 @@ export declare const UpdateAccountRequest: {
|
|
|
8395
8500
|
timezone?: string | undefined;
|
|
8396
8501
|
about_me?: string | undefined;
|
|
8397
8502
|
dob?: Date | undefined;
|
|
8503
|
+
logo?: string | undefined;
|
|
8504
|
+
splash_screen?: string | undefined;
|
|
8398
8505
|
} & { [K_1 in Exclude<keyof I_1, keyof UpdateAccountRequest>]: never; }>(object: I_1): UpdateAccountRequest;
|
|
8399
8506
|
};
|
|
8400
8507
|
export declare const UpdateGroupRequest: {
|
|
@@ -19077,6 +19184,7 @@ export declare const AuditLog: {
|
|
|
19077
19184
|
entity_id?: string | undefined;
|
|
19078
19185
|
details?: string | undefined;
|
|
19079
19186
|
time_log?: Date | undefined;
|
|
19187
|
+
channel_id?: string | undefined;
|
|
19080
19188
|
} & {
|
|
19081
19189
|
id?: string | undefined;
|
|
19082
19190
|
user_id?: string | undefined;
|
|
@@ -19086,6 +19194,7 @@ export declare const AuditLog: {
|
|
|
19086
19194
|
entity_id?: string | undefined;
|
|
19087
19195
|
details?: string | undefined;
|
|
19088
19196
|
time_log?: Date | undefined;
|
|
19197
|
+
channel_id?: string | undefined;
|
|
19089
19198
|
} & { [K in Exclude<keyof I, keyof AuditLog>]: never; }>(base?: I | undefined): AuditLog;
|
|
19090
19199
|
fromPartial<I_1 extends {
|
|
19091
19200
|
id?: string | undefined;
|
|
@@ -19096,6 +19205,7 @@ export declare const AuditLog: {
|
|
|
19096
19205
|
entity_id?: string | undefined;
|
|
19097
19206
|
details?: string | undefined;
|
|
19098
19207
|
time_log?: Date | undefined;
|
|
19208
|
+
channel_id?: string | undefined;
|
|
19099
19209
|
} & {
|
|
19100
19210
|
id?: string | undefined;
|
|
19101
19211
|
user_id?: string | undefined;
|
|
@@ -19105,6 +19215,7 @@ export declare const AuditLog: {
|
|
|
19105
19215
|
entity_id?: string | undefined;
|
|
19106
19216
|
details?: string | undefined;
|
|
19107
19217
|
time_log?: Date | undefined;
|
|
19218
|
+
channel_id?: string | undefined;
|
|
19108
19219
|
} & { [K_1 in Exclude<keyof I_1, keyof AuditLog>]: never; }>(object: I_1): AuditLog;
|
|
19109
19220
|
};
|
|
19110
19221
|
export declare const ListAuditLog: {
|
|
@@ -19125,6 +19236,7 @@ export declare const ListAuditLog: {
|
|
|
19125
19236
|
entity_id?: string | undefined;
|
|
19126
19237
|
details?: string | undefined;
|
|
19127
19238
|
time_log?: Date | undefined;
|
|
19239
|
+
channel_id?: string | undefined;
|
|
19128
19240
|
}[] | undefined;
|
|
19129
19241
|
} & {
|
|
19130
19242
|
total_count?: number | undefined;
|
|
@@ -19139,6 +19251,7 @@ export declare const ListAuditLog: {
|
|
|
19139
19251
|
entity_id?: string | undefined;
|
|
19140
19252
|
details?: string | undefined;
|
|
19141
19253
|
time_log?: Date | undefined;
|
|
19254
|
+
channel_id?: string | undefined;
|
|
19142
19255
|
}[] & ({
|
|
19143
19256
|
id?: string | undefined;
|
|
19144
19257
|
user_id?: string | undefined;
|
|
@@ -19148,6 +19261,7 @@ export declare const ListAuditLog: {
|
|
|
19148
19261
|
entity_id?: string | undefined;
|
|
19149
19262
|
details?: string | undefined;
|
|
19150
19263
|
time_log?: Date | undefined;
|
|
19264
|
+
channel_id?: string | undefined;
|
|
19151
19265
|
} & {
|
|
19152
19266
|
id?: string | undefined;
|
|
19153
19267
|
user_id?: string | undefined;
|
|
@@ -19157,6 +19271,7 @@ export declare const ListAuditLog: {
|
|
|
19157
19271
|
entity_id?: string | undefined;
|
|
19158
19272
|
details?: string | undefined;
|
|
19159
19273
|
time_log?: Date | undefined;
|
|
19274
|
+
channel_id?: string | undefined;
|
|
19160
19275
|
} & { [K in Exclude<keyof I["logs"][number], keyof AuditLog>]: never; })[] & { [K_1 in Exclude<keyof I["logs"], keyof {
|
|
19161
19276
|
id?: string | undefined;
|
|
19162
19277
|
user_id?: string | undefined;
|
|
@@ -19166,6 +19281,7 @@ export declare const ListAuditLog: {
|
|
|
19166
19281
|
entity_id?: string | undefined;
|
|
19167
19282
|
details?: string | undefined;
|
|
19168
19283
|
time_log?: Date | undefined;
|
|
19284
|
+
channel_id?: string | undefined;
|
|
19169
19285
|
}[]>]: never; }) | undefined;
|
|
19170
19286
|
} & { [K_2 in Exclude<keyof I, keyof ListAuditLog>]: never; }>(base?: I | undefined): ListAuditLog;
|
|
19171
19287
|
fromPartial<I_1 extends {
|
|
@@ -19181,6 +19297,7 @@ export declare const ListAuditLog: {
|
|
|
19181
19297
|
entity_id?: string | undefined;
|
|
19182
19298
|
details?: string | undefined;
|
|
19183
19299
|
time_log?: Date | undefined;
|
|
19300
|
+
channel_id?: string | undefined;
|
|
19184
19301
|
}[] | undefined;
|
|
19185
19302
|
} & {
|
|
19186
19303
|
total_count?: number | undefined;
|
|
@@ -19195,6 +19312,7 @@ export declare const ListAuditLog: {
|
|
|
19195
19312
|
entity_id?: string | undefined;
|
|
19196
19313
|
details?: string | undefined;
|
|
19197
19314
|
time_log?: Date | undefined;
|
|
19315
|
+
channel_id?: string | undefined;
|
|
19198
19316
|
}[] & ({
|
|
19199
19317
|
id?: string | undefined;
|
|
19200
19318
|
user_id?: string | undefined;
|
|
@@ -19204,6 +19322,7 @@ export declare const ListAuditLog: {
|
|
|
19204
19322
|
entity_id?: string | undefined;
|
|
19205
19323
|
details?: string | undefined;
|
|
19206
19324
|
time_log?: Date | undefined;
|
|
19325
|
+
channel_id?: string | undefined;
|
|
19207
19326
|
} & {
|
|
19208
19327
|
id?: string | undefined;
|
|
19209
19328
|
user_id?: string | undefined;
|
|
@@ -19213,6 +19332,7 @@ export declare const ListAuditLog: {
|
|
|
19213
19332
|
entity_id?: string | undefined;
|
|
19214
19333
|
details?: string | undefined;
|
|
19215
19334
|
time_log?: Date | undefined;
|
|
19335
|
+
channel_id?: string | undefined;
|
|
19216
19336
|
} & { [K_3 in Exclude<keyof I_1["logs"][number], keyof AuditLog>]: never; })[] & { [K_4 in Exclude<keyof I_1["logs"], keyof {
|
|
19217
19337
|
id?: string | undefined;
|
|
19218
19338
|
user_id?: string | undefined;
|
|
@@ -19222,6 +19342,7 @@ export declare const ListAuditLog: {
|
|
|
19222
19342
|
entity_id?: string | undefined;
|
|
19223
19343
|
details?: string | undefined;
|
|
19224
19344
|
time_log?: Date | undefined;
|
|
19345
|
+
channel_id?: string | undefined;
|
|
19225
19346
|
}[]>]: never; }) | undefined;
|
|
19226
19347
|
} & { [K_5 in Exclude<keyof I_1, keyof ListAuditLog>]: never; }>(object: I_1): ListAuditLog;
|
|
19227
19348
|
};
|
|
@@ -20749,6 +20870,462 @@ export declare const UpdateOnboardingStepRequest: {
|
|
|
20749
20870
|
onboarding_step?: number | undefined;
|
|
20750
20871
|
} & { [K_1 in Exclude<keyof I_1, keyof UpdateOnboardingStepRequest>]: never; }>(object: I_1): UpdateOnboardingStepRequest;
|
|
20751
20872
|
};
|
|
20873
|
+
export declare const PTTChannelUser: {
|
|
20874
|
+
encode(message: PTTChannelUser, writer?: _m0.Writer): _m0.Writer;
|
|
20875
|
+
decode(input: _m0.Reader | Uint8Array, length?: number): PTTChannelUser;
|
|
20876
|
+
fromJSON(object: any): PTTChannelUser;
|
|
20877
|
+
toJSON(message: PTTChannelUser): unknown;
|
|
20878
|
+
create<I extends {
|
|
20879
|
+
id?: string | undefined;
|
|
20880
|
+
user_id?: string | undefined;
|
|
20881
|
+
channel_id?: string | undefined;
|
|
20882
|
+
participant?: string | undefined;
|
|
20883
|
+
} & {
|
|
20884
|
+
id?: string | undefined;
|
|
20885
|
+
user_id?: string | undefined;
|
|
20886
|
+
channel_id?: string | undefined;
|
|
20887
|
+
participant?: string | undefined;
|
|
20888
|
+
} & { [K in Exclude<keyof I, keyof PTTChannelUser>]: never; }>(base?: I | undefined): PTTChannelUser;
|
|
20889
|
+
fromPartial<I_1 extends {
|
|
20890
|
+
id?: string | undefined;
|
|
20891
|
+
user_id?: string | undefined;
|
|
20892
|
+
channel_id?: string | undefined;
|
|
20893
|
+
participant?: string | undefined;
|
|
20894
|
+
} & {
|
|
20895
|
+
id?: string | undefined;
|
|
20896
|
+
user_id?: string | undefined;
|
|
20897
|
+
channel_id?: string | undefined;
|
|
20898
|
+
participant?: string | undefined;
|
|
20899
|
+
} & { [K_1 in Exclude<keyof I_1, keyof PTTChannelUser>]: never; }>(object: I_1): PTTChannelUser;
|
|
20900
|
+
};
|
|
20901
|
+
export declare const PTTChannelUserList: {
|
|
20902
|
+
encode(message: PTTChannelUserList, writer?: _m0.Writer): _m0.Writer;
|
|
20903
|
+
decode(input: _m0.Reader | Uint8Array, length?: number): PTTChannelUserList;
|
|
20904
|
+
fromJSON(object: any): PTTChannelUserList;
|
|
20905
|
+
toJSON(message: PTTChannelUserList): unknown;
|
|
20906
|
+
create<I extends {
|
|
20907
|
+
ptt_channel_users?: {
|
|
20908
|
+
id?: string | undefined;
|
|
20909
|
+
user_id?: string | undefined;
|
|
20910
|
+
channel_id?: string | undefined;
|
|
20911
|
+
participant?: string | undefined;
|
|
20912
|
+
}[] | undefined;
|
|
20913
|
+
} & {
|
|
20914
|
+
ptt_channel_users?: ({
|
|
20915
|
+
id?: string | undefined;
|
|
20916
|
+
user_id?: string | undefined;
|
|
20917
|
+
channel_id?: string | undefined;
|
|
20918
|
+
participant?: string | undefined;
|
|
20919
|
+
}[] & ({
|
|
20920
|
+
id?: string | undefined;
|
|
20921
|
+
user_id?: string | undefined;
|
|
20922
|
+
channel_id?: string | undefined;
|
|
20923
|
+
participant?: string | undefined;
|
|
20924
|
+
} & {
|
|
20925
|
+
id?: string | undefined;
|
|
20926
|
+
user_id?: string | undefined;
|
|
20927
|
+
channel_id?: string | undefined;
|
|
20928
|
+
participant?: string | undefined;
|
|
20929
|
+
} & { [K in Exclude<keyof I["ptt_channel_users"][number], keyof PTTChannelUser>]: never; })[] & { [K_1 in Exclude<keyof I["ptt_channel_users"], keyof {
|
|
20930
|
+
id?: string | undefined;
|
|
20931
|
+
user_id?: string | undefined;
|
|
20932
|
+
channel_id?: string | undefined;
|
|
20933
|
+
participant?: string | undefined;
|
|
20934
|
+
}[]>]: never; }) | undefined;
|
|
20935
|
+
} & { [K_2 in Exclude<keyof I, "ptt_channel_users">]: never; }>(base?: I | undefined): PTTChannelUserList;
|
|
20936
|
+
fromPartial<I_1 extends {
|
|
20937
|
+
ptt_channel_users?: {
|
|
20938
|
+
id?: string | undefined;
|
|
20939
|
+
user_id?: string | undefined;
|
|
20940
|
+
channel_id?: string | undefined;
|
|
20941
|
+
participant?: string | undefined;
|
|
20942
|
+
}[] | undefined;
|
|
20943
|
+
} & {
|
|
20944
|
+
ptt_channel_users?: ({
|
|
20945
|
+
id?: string | undefined;
|
|
20946
|
+
user_id?: string | undefined;
|
|
20947
|
+
channel_id?: string | undefined;
|
|
20948
|
+
participant?: string | undefined;
|
|
20949
|
+
}[] & ({
|
|
20950
|
+
id?: string | undefined;
|
|
20951
|
+
user_id?: string | undefined;
|
|
20952
|
+
channel_id?: string | undefined;
|
|
20953
|
+
participant?: string | undefined;
|
|
20954
|
+
} & {
|
|
20955
|
+
id?: string | undefined;
|
|
20956
|
+
user_id?: string | undefined;
|
|
20957
|
+
channel_id?: string | undefined;
|
|
20958
|
+
participant?: string | undefined;
|
|
20959
|
+
} & { [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 {
|
|
20960
|
+
id?: string | undefined;
|
|
20961
|
+
user_id?: string | undefined;
|
|
20962
|
+
channel_id?: string | undefined;
|
|
20963
|
+
participant?: string | undefined;
|
|
20964
|
+
}[]>]: never; }) | undefined;
|
|
20965
|
+
} & { [K_5 in Exclude<keyof I_1, "ptt_channel_users">]: never; }>(object: I_1): PTTChannelUserList;
|
|
20966
|
+
};
|
|
20967
|
+
export declare const WalletLedger: {
|
|
20968
|
+
encode(message: WalletLedger, writer?: _m0.Writer): _m0.Writer;
|
|
20969
|
+
decode(input: _m0.Reader | Uint8Array, length?: number): WalletLedger;
|
|
20970
|
+
fromJSON(object: any): WalletLedger;
|
|
20971
|
+
toJSON(message: WalletLedger): unknown;
|
|
20972
|
+
create<I extends {
|
|
20973
|
+
id?: string | undefined;
|
|
20974
|
+
user_id?: string | undefined;
|
|
20975
|
+
create_time?: Date | undefined;
|
|
20976
|
+
value?: number | undefined;
|
|
20977
|
+
transaction_id?: string | undefined;
|
|
20978
|
+
} & {
|
|
20979
|
+
id?: string | undefined;
|
|
20980
|
+
user_id?: string | undefined;
|
|
20981
|
+
create_time?: Date | undefined;
|
|
20982
|
+
value?: number | undefined;
|
|
20983
|
+
transaction_id?: string | undefined;
|
|
20984
|
+
} & { [K in Exclude<keyof I, keyof WalletLedger>]: never; }>(base?: I | undefined): WalletLedger;
|
|
20985
|
+
fromPartial<I_1 extends {
|
|
20986
|
+
id?: string | undefined;
|
|
20987
|
+
user_id?: string | undefined;
|
|
20988
|
+
create_time?: Date | undefined;
|
|
20989
|
+
value?: number | undefined;
|
|
20990
|
+
transaction_id?: string | undefined;
|
|
20991
|
+
} & {
|
|
20992
|
+
id?: string | undefined;
|
|
20993
|
+
user_id?: string | undefined;
|
|
20994
|
+
create_time?: Date | undefined;
|
|
20995
|
+
value?: number | undefined;
|
|
20996
|
+
transaction_id?: string | undefined;
|
|
20997
|
+
} & { [K_1 in Exclude<keyof I_1, keyof WalletLedger>]: never; }>(object: I_1): WalletLedger;
|
|
20998
|
+
};
|
|
20999
|
+
export declare const WalletLedgerList: {
|
|
21000
|
+
encode(message: WalletLedgerList, writer?: _m0.Writer): _m0.Writer;
|
|
21001
|
+
decode(input: _m0.Reader | Uint8Array, length?: number): WalletLedgerList;
|
|
21002
|
+
fromJSON(object: any): WalletLedgerList;
|
|
21003
|
+
toJSON(message: WalletLedgerList): unknown;
|
|
21004
|
+
create<I extends {
|
|
21005
|
+
wallet_ledger?: {
|
|
21006
|
+
id?: string | undefined;
|
|
21007
|
+
user_id?: string | undefined;
|
|
21008
|
+
create_time?: Date | undefined;
|
|
21009
|
+
value?: number | undefined;
|
|
21010
|
+
transaction_id?: string | undefined;
|
|
21011
|
+
}[] | undefined;
|
|
21012
|
+
prev_cursor?: string | undefined;
|
|
21013
|
+
next_cursor?: string | undefined;
|
|
21014
|
+
} & {
|
|
21015
|
+
wallet_ledger?: ({
|
|
21016
|
+
id?: string | undefined;
|
|
21017
|
+
user_id?: string | undefined;
|
|
21018
|
+
create_time?: Date | undefined;
|
|
21019
|
+
value?: number | undefined;
|
|
21020
|
+
transaction_id?: string | undefined;
|
|
21021
|
+
}[] & ({
|
|
21022
|
+
id?: string | undefined;
|
|
21023
|
+
user_id?: string | undefined;
|
|
21024
|
+
create_time?: Date | undefined;
|
|
21025
|
+
value?: number | undefined;
|
|
21026
|
+
transaction_id?: string | undefined;
|
|
21027
|
+
} & {
|
|
21028
|
+
id?: string | undefined;
|
|
21029
|
+
user_id?: string | undefined;
|
|
21030
|
+
create_time?: Date | undefined;
|
|
21031
|
+
value?: number | undefined;
|
|
21032
|
+
transaction_id?: string | undefined;
|
|
21033
|
+
} & { [K in Exclude<keyof I["wallet_ledger"][number], keyof WalletLedger>]: never; })[] & { [K_1 in Exclude<keyof I["wallet_ledger"], keyof {
|
|
21034
|
+
id?: string | undefined;
|
|
21035
|
+
user_id?: string | undefined;
|
|
21036
|
+
create_time?: Date | undefined;
|
|
21037
|
+
value?: number | undefined;
|
|
21038
|
+
transaction_id?: string | undefined;
|
|
21039
|
+
}[]>]: never; }) | undefined;
|
|
21040
|
+
prev_cursor?: string | undefined;
|
|
21041
|
+
next_cursor?: string | undefined;
|
|
21042
|
+
} & { [K_2 in Exclude<keyof I, keyof WalletLedgerList>]: never; }>(base?: I | undefined): WalletLedgerList;
|
|
21043
|
+
fromPartial<I_1 extends {
|
|
21044
|
+
wallet_ledger?: {
|
|
21045
|
+
id?: string | undefined;
|
|
21046
|
+
user_id?: string | undefined;
|
|
21047
|
+
create_time?: Date | undefined;
|
|
21048
|
+
value?: number | undefined;
|
|
21049
|
+
transaction_id?: string | undefined;
|
|
21050
|
+
}[] | undefined;
|
|
21051
|
+
prev_cursor?: string | undefined;
|
|
21052
|
+
next_cursor?: string | undefined;
|
|
21053
|
+
} & {
|
|
21054
|
+
wallet_ledger?: ({
|
|
21055
|
+
id?: string | undefined;
|
|
21056
|
+
user_id?: string | undefined;
|
|
21057
|
+
create_time?: Date | undefined;
|
|
21058
|
+
value?: number | undefined;
|
|
21059
|
+
transaction_id?: string | undefined;
|
|
21060
|
+
}[] & ({
|
|
21061
|
+
id?: string | undefined;
|
|
21062
|
+
user_id?: string | undefined;
|
|
21063
|
+
create_time?: Date | undefined;
|
|
21064
|
+
value?: number | undefined;
|
|
21065
|
+
transaction_id?: string | undefined;
|
|
21066
|
+
} & {
|
|
21067
|
+
id?: string | undefined;
|
|
21068
|
+
user_id?: string | undefined;
|
|
21069
|
+
create_time?: Date | undefined;
|
|
21070
|
+
value?: number | undefined;
|
|
21071
|
+
transaction_id?: string | undefined;
|
|
21072
|
+
} & { [K_3 in Exclude<keyof I_1["wallet_ledger"][number], keyof WalletLedger>]: never; })[] & { [K_4 in Exclude<keyof I_1["wallet_ledger"], keyof {
|
|
21073
|
+
id?: string | undefined;
|
|
21074
|
+
user_id?: string | undefined;
|
|
21075
|
+
create_time?: Date | undefined;
|
|
21076
|
+
value?: number | undefined;
|
|
21077
|
+
transaction_id?: string | undefined;
|
|
21078
|
+
}[]>]: never; }) | undefined;
|
|
21079
|
+
prev_cursor?: string | undefined;
|
|
21080
|
+
next_cursor?: string | undefined;
|
|
21081
|
+
} & { [K_5 in Exclude<keyof I_1, keyof WalletLedgerList>]: never; }>(object: I_1): WalletLedgerList;
|
|
21082
|
+
};
|
|
21083
|
+
export declare const WalletLedgerListReq: {
|
|
21084
|
+
encode(message: WalletLedgerListReq, writer?: _m0.Writer): _m0.Writer;
|
|
21085
|
+
decode(input: _m0.Reader | Uint8Array, length?: number): WalletLedgerListReq;
|
|
21086
|
+
fromJSON(object: any): WalletLedgerListReq;
|
|
21087
|
+
toJSON(message: WalletLedgerListReq): unknown;
|
|
21088
|
+
create<I extends {
|
|
21089
|
+
limit?: number | undefined;
|
|
21090
|
+
cursor?: string | undefined;
|
|
21091
|
+
transaction_id?: string | undefined;
|
|
21092
|
+
} & {
|
|
21093
|
+
limit?: number | undefined;
|
|
21094
|
+
cursor?: string | undefined;
|
|
21095
|
+
transaction_id?: string | undefined;
|
|
21096
|
+
} & { [K in Exclude<keyof I, keyof WalletLedgerListReq>]: never; }>(base?: I | undefined): WalletLedgerListReq;
|
|
21097
|
+
fromPartial<I_1 extends {
|
|
21098
|
+
limit?: number | undefined;
|
|
21099
|
+
cursor?: string | undefined;
|
|
21100
|
+
transaction_id?: string | undefined;
|
|
21101
|
+
} & {
|
|
21102
|
+
limit?: number | undefined;
|
|
21103
|
+
cursor?: string | undefined;
|
|
21104
|
+
transaction_id?: string | undefined;
|
|
21105
|
+
} & { [K_1 in Exclude<keyof I_1, keyof WalletLedgerListReq>]: never; }>(object: I_1): WalletLedgerListReq;
|
|
21106
|
+
};
|
|
21107
|
+
export declare const SdTopic: {
|
|
21108
|
+
encode(message: SdTopic, writer?: _m0.Writer): _m0.Writer;
|
|
21109
|
+
decode(input: _m0.Reader | Uint8Array, length?: number): SdTopic;
|
|
21110
|
+
fromJSON(object: any): SdTopic;
|
|
21111
|
+
toJSON(message: SdTopic): unknown;
|
|
21112
|
+
create<I extends {
|
|
21113
|
+
id?: string | undefined;
|
|
21114
|
+
creator_id?: string | undefined;
|
|
21115
|
+
message_id?: string | undefined;
|
|
21116
|
+
clan_id?: string | undefined;
|
|
21117
|
+
channel_id?: string | undefined;
|
|
21118
|
+
status?: number | undefined;
|
|
21119
|
+
create_time?: Date | undefined;
|
|
21120
|
+
update_time?: Date | undefined;
|
|
21121
|
+
} & {
|
|
21122
|
+
id?: string | undefined;
|
|
21123
|
+
creator_id?: string | undefined;
|
|
21124
|
+
message_id?: string | undefined;
|
|
21125
|
+
clan_id?: string | undefined;
|
|
21126
|
+
channel_id?: string | undefined;
|
|
21127
|
+
status?: number | undefined;
|
|
21128
|
+
create_time?: Date | undefined;
|
|
21129
|
+
update_time?: Date | undefined;
|
|
21130
|
+
} & { [K in Exclude<keyof I, keyof SdTopic>]: never; }>(base?: I | undefined): SdTopic;
|
|
21131
|
+
fromPartial<I_1 extends {
|
|
21132
|
+
id?: string | undefined;
|
|
21133
|
+
creator_id?: string | undefined;
|
|
21134
|
+
message_id?: string | undefined;
|
|
21135
|
+
clan_id?: string | undefined;
|
|
21136
|
+
channel_id?: string | undefined;
|
|
21137
|
+
status?: number | undefined;
|
|
21138
|
+
create_time?: Date | undefined;
|
|
21139
|
+
update_time?: Date | undefined;
|
|
21140
|
+
} & {
|
|
21141
|
+
id?: string | undefined;
|
|
21142
|
+
creator_id?: string | undefined;
|
|
21143
|
+
message_id?: string | undefined;
|
|
21144
|
+
clan_id?: string | undefined;
|
|
21145
|
+
channel_id?: string | undefined;
|
|
21146
|
+
status?: number | undefined;
|
|
21147
|
+
create_time?: Date | undefined;
|
|
21148
|
+
update_time?: Date | undefined;
|
|
21149
|
+
} & { [K_1 in Exclude<keyof I_1, keyof SdTopic>]: never; }>(object: I_1): SdTopic;
|
|
21150
|
+
};
|
|
21151
|
+
export declare const SdTopicRequest: {
|
|
21152
|
+
encode(message: SdTopicRequest, writer?: _m0.Writer): _m0.Writer;
|
|
21153
|
+
decode(input: _m0.Reader | Uint8Array, length?: number): SdTopicRequest;
|
|
21154
|
+
fromJSON(object: any): SdTopicRequest;
|
|
21155
|
+
toJSON(message: SdTopicRequest): unknown;
|
|
21156
|
+
create<I extends {
|
|
21157
|
+
message_id?: string | undefined;
|
|
21158
|
+
clan_id?: string | undefined;
|
|
21159
|
+
channel_id?: string | undefined;
|
|
21160
|
+
} & {
|
|
21161
|
+
message_id?: string | undefined;
|
|
21162
|
+
clan_id?: string | undefined;
|
|
21163
|
+
channel_id?: string | undefined;
|
|
21164
|
+
} & { [K in Exclude<keyof I, keyof SdTopicRequest>]: never; }>(base?: I | undefined): SdTopicRequest;
|
|
21165
|
+
fromPartial<I_1 extends {
|
|
21166
|
+
message_id?: string | undefined;
|
|
21167
|
+
clan_id?: string | undefined;
|
|
21168
|
+
channel_id?: string | undefined;
|
|
21169
|
+
} & {
|
|
21170
|
+
message_id?: string | undefined;
|
|
21171
|
+
clan_id?: string | undefined;
|
|
21172
|
+
channel_id?: string | undefined;
|
|
21173
|
+
} & { [K_1 in Exclude<keyof I_1, keyof SdTopicRequest>]: never; }>(object: I_1): SdTopicRequest;
|
|
21174
|
+
};
|
|
21175
|
+
export declare const SdTopicList: {
|
|
21176
|
+
encode(message: SdTopicList, writer?: _m0.Writer): _m0.Writer;
|
|
21177
|
+
decode(input: _m0.Reader | Uint8Array, length?: number): SdTopicList;
|
|
21178
|
+
fromJSON(object: any): SdTopicList;
|
|
21179
|
+
toJSON(message: SdTopicList): unknown;
|
|
21180
|
+
create<I extends {
|
|
21181
|
+
count?: number | undefined;
|
|
21182
|
+
topics?: {
|
|
21183
|
+
id?: string | undefined;
|
|
21184
|
+
creator_id?: string | undefined;
|
|
21185
|
+
message_id?: string | undefined;
|
|
21186
|
+
clan_id?: string | undefined;
|
|
21187
|
+
channel_id?: string | undefined;
|
|
21188
|
+
status?: number | undefined;
|
|
21189
|
+
create_time?: Date | undefined;
|
|
21190
|
+
update_time?: Date | undefined;
|
|
21191
|
+
}[] | undefined;
|
|
21192
|
+
} & {
|
|
21193
|
+
count?: number | undefined;
|
|
21194
|
+
topics?: ({
|
|
21195
|
+
id?: string | undefined;
|
|
21196
|
+
creator_id?: string | undefined;
|
|
21197
|
+
message_id?: string | undefined;
|
|
21198
|
+
clan_id?: string | undefined;
|
|
21199
|
+
channel_id?: string | undefined;
|
|
21200
|
+
status?: number | undefined;
|
|
21201
|
+
create_time?: Date | undefined;
|
|
21202
|
+
update_time?: Date | undefined;
|
|
21203
|
+
}[] & ({
|
|
21204
|
+
id?: string | undefined;
|
|
21205
|
+
creator_id?: string | undefined;
|
|
21206
|
+
message_id?: string | undefined;
|
|
21207
|
+
clan_id?: string | undefined;
|
|
21208
|
+
channel_id?: string | undefined;
|
|
21209
|
+
status?: number | undefined;
|
|
21210
|
+
create_time?: Date | undefined;
|
|
21211
|
+
update_time?: Date | undefined;
|
|
21212
|
+
} & {
|
|
21213
|
+
id?: string | undefined;
|
|
21214
|
+
creator_id?: string | undefined;
|
|
21215
|
+
message_id?: string | undefined;
|
|
21216
|
+
clan_id?: string | undefined;
|
|
21217
|
+
channel_id?: string | undefined;
|
|
21218
|
+
status?: number | undefined;
|
|
21219
|
+
create_time?: Date | undefined;
|
|
21220
|
+
update_time?: Date | undefined;
|
|
21221
|
+
} & { [K in Exclude<keyof I["topics"][number], keyof SdTopic>]: never; })[] & { [K_1 in Exclude<keyof I["topics"], keyof {
|
|
21222
|
+
id?: string | undefined;
|
|
21223
|
+
creator_id?: string | undefined;
|
|
21224
|
+
message_id?: string | undefined;
|
|
21225
|
+
clan_id?: string | undefined;
|
|
21226
|
+
channel_id?: string | undefined;
|
|
21227
|
+
status?: number | undefined;
|
|
21228
|
+
create_time?: Date | undefined;
|
|
21229
|
+
update_time?: Date | undefined;
|
|
21230
|
+
}[]>]: never; }) | undefined;
|
|
21231
|
+
} & { [K_2 in Exclude<keyof I, keyof SdTopicList>]: never; }>(base?: I | undefined): SdTopicList;
|
|
21232
|
+
fromPartial<I_1 extends {
|
|
21233
|
+
count?: number | undefined;
|
|
21234
|
+
topics?: {
|
|
21235
|
+
id?: string | undefined;
|
|
21236
|
+
creator_id?: string | undefined;
|
|
21237
|
+
message_id?: string | undefined;
|
|
21238
|
+
clan_id?: string | undefined;
|
|
21239
|
+
channel_id?: string | undefined;
|
|
21240
|
+
status?: number | undefined;
|
|
21241
|
+
create_time?: Date | undefined;
|
|
21242
|
+
update_time?: Date | undefined;
|
|
21243
|
+
}[] | undefined;
|
|
21244
|
+
} & {
|
|
21245
|
+
count?: number | undefined;
|
|
21246
|
+
topics?: ({
|
|
21247
|
+
id?: string | undefined;
|
|
21248
|
+
creator_id?: string | undefined;
|
|
21249
|
+
message_id?: string | undefined;
|
|
21250
|
+
clan_id?: string | undefined;
|
|
21251
|
+
channel_id?: string | undefined;
|
|
21252
|
+
status?: number | undefined;
|
|
21253
|
+
create_time?: Date | undefined;
|
|
21254
|
+
update_time?: Date | undefined;
|
|
21255
|
+
}[] & ({
|
|
21256
|
+
id?: string | undefined;
|
|
21257
|
+
creator_id?: string | undefined;
|
|
21258
|
+
message_id?: string | undefined;
|
|
21259
|
+
clan_id?: string | undefined;
|
|
21260
|
+
channel_id?: string | undefined;
|
|
21261
|
+
status?: number | undefined;
|
|
21262
|
+
create_time?: Date | undefined;
|
|
21263
|
+
update_time?: Date | undefined;
|
|
21264
|
+
} & {
|
|
21265
|
+
id?: string | undefined;
|
|
21266
|
+
creator_id?: string | undefined;
|
|
21267
|
+
message_id?: string | undefined;
|
|
21268
|
+
clan_id?: string | undefined;
|
|
21269
|
+
channel_id?: string | undefined;
|
|
21270
|
+
status?: number | undefined;
|
|
21271
|
+
create_time?: Date | undefined;
|
|
21272
|
+
update_time?: Date | undefined;
|
|
21273
|
+
} & { [K_3 in Exclude<keyof I_1["topics"][number], keyof SdTopic>]: never; })[] & { [K_4 in Exclude<keyof I_1["topics"], keyof {
|
|
21274
|
+
id?: string | undefined;
|
|
21275
|
+
creator_id?: string | undefined;
|
|
21276
|
+
message_id?: string | undefined;
|
|
21277
|
+
clan_id?: string | undefined;
|
|
21278
|
+
channel_id?: string | undefined;
|
|
21279
|
+
status?: number | undefined;
|
|
21280
|
+
create_time?: Date | undefined;
|
|
21281
|
+
update_time?: Date | undefined;
|
|
21282
|
+
}[]>]: never; }) | undefined;
|
|
21283
|
+
} & { [K_5 in Exclude<keyof I_1, keyof SdTopicList>]: never; }>(object: I_1): SdTopicList;
|
|
21284
|
+
};
|
|
21285
|
+
export declare const ListSdTopicRequest: {
|
|
21286
|
+
encode(message: ListSdTopicRequest, writer?: _m0.Writer): _m0.Writer;
|
|
21287
|
+
decode(input: _m0.Reader | Uint8Array, length?: number): ListSdTopicRequest;
|
|
21288
|
+
fromJSON(object: any): ListSdTopicRequest;
|
|
21289
|
+
toJSON(message: ListSdTopicRequest): unknown;
|
|
21290
|
+
create<I extends {
|
|
21291
|
+
channel_id?: string | undefined;
|
|
21292
|
+
limit?: number | undefined;
|
|
21293
|
+
} & {
|
|
21294
|
+
channel_id?: string | undefined;
|
|
21295
|
+
limit?: number | undefined;
|
|
21296
|
+
} & { [K in Exclude<keyof I, keyof ListSdTopicRequest>]: never; }>(base?: I | undefined): ListSdTopicRequest;
|
|
21297
|
+
fromPartial<I_1 extends {
|
|
21298
|
+
channel_id?: string | undefined;
|
|
21299
|
+
limit?: number | undefined;
|
|
21300
|
+
} & {
|
|
21301
|
+
channel_id?: string | undefined;
|
|
21302
|
+
limit?: number | undefined;
|
|
21303
|
+
} & { [K_1 in Exclude<keyof I_1, keyof ListSdTopicRequest>]: never; }>(object: I_1): ListSdTopicRequest;
|
|
21304
|
+
};
|
|
21305
|
+
export declare const DeleteSdTopicRequest: {
|
|
21306
|
+
encode(message: DeleteSdTopicRequest, writer?: _m0.Writer): _m0.Writer;
|
|
21307
|
+
decode(input: _m0.Reader | Uint8Array, length?: number): DeleteSdTopicRequest;
|
|
21308
|
+
fromJSON(object: any): DeleteSdTopicRequest;
|
|
21309
|
+
toJSON(message: DeleteSdTopicRequest): unknown;
|
|
21310
|
+
create<I extends {
|
|
21311
|
+
channel_id?: string | undefined;
|
|
21312
|
+
id?: string | undefined;
|
|
21313
|
+
clan_id?: string | undefined;
|
|
21314
|
+
} & {
|
|
21315
|
+
channel_id?: string | undefined;
|
|
21316
|
+
id?: string | undefined;
|
|
21317
|
+
clan_id?: string | undefined;
|
|
21318
|
+
} & { [K in Exclude<keyof I, keyof DeleteSdTopicRequest>]: never; }>(base?: I | undefined): DeleteSdTopicRequest;
|
|
21319
|
+
fromPartial<I_1 extends {
|
|
21320
|
+
channel_id?: string | undefined;
|
|
21321
|
+
id?: string | undefined;
|
|
21322
|
+
clan_id?: string | undefined;
|
|
21323
|
+
} & {
|
|
21324
|
+
channel_id?: string | undefined;
|
|
21325
|
+
id?: string | undefined;
|
|
21326
|
+
clan_id?: string | undefined;
|
|
21327
|
+
} & { [K_1 in Exclude<keyof I_1, keyof DeleteSdTopicRequest>]: never; }>(object: I_1): DeleteSdTopicRequest;
|
|
21328
|
+
};
|
|
20752
21329
|
type Builtin = Date | Function | Uint8Array | string | number | boolean | undefined;
|
|
20753
21330
|
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 {} ? {
|
|
20754
21331
|
[K in keyof T]?: DeepPartial<T[K]>;
|