mezon-js-protobuf 1.5.98 → 1.6.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/api/api.ts +348 -1
- package/dist/mezon-js-protobuf/api/api.d.ts +186 -0
- package/package.json +1 -1
package/api/api.ts
CHANGED
|
@@ -1451,7 +1451,11 @@ export interface User {
|
|
|
1451
1451
|
/** */
|
|
1452
1452
|
about_me: string;
|
|
1453
1453
|
/** */
|
|
1454
|
-
join_time:
|
|
1454
|
+
join_time:
|
|
1455
|
+
| Date
|
|
1456
|
+
| undefined;
|
|
1457
|
+
/** platform */
|
|
1458
|
+
isMobile: boolean;
|
|
1455
1459
|
}
|
|
1456
1460
|
|
|
1457
1461
|
/** A list of groups belonging to a user, along with the user's role in each group. */
|
|
@@ -3266,6 +3270,27 @@ export interface ChannelCanvasDetailResponse {
|
|
|
3266
3270
|
is_default: boolean;
|
|
3267
3271
|
}
|
|
3268
3272
|
|
|
3273
|
+
export interface AddFavoriteChannelRequest {
|
|
3274
|
+
channel_id: string;
|
|
3275
|
+
clan_id: string;
|
|
3276
|
+
}
|
|
3277
|
+
|
|
3278
|
+
export interface RemoveFavoriteChannelRequest {
|
|
3279
|
+
channel_id: string;
|
|
3280
|
+
}
|
|
3281
|
+
|
|
3282
|
+
export interface AddFavoriteChannelResponse {
|
|
3283
|
+
channel_id: string;
|
|
3284
|
+
}
|
|
3285
|
+
|
|
3286
|
+
export interface ListFavoriteChannelRequest {
|
|
3287
|
+
clan_id: string;
|
|
3288
|
+
}
|
|
3289
|
+
|
|
3290
|
+
export interface ListFavoriteChannelResponse {
|
|
3291
|
+
channel_ids: string[];
|
|
3292
|
+
}
|
|
3293
|
+
|
|
3269
3294
|
function createBaseAccount(): Account {
|
|
3270
3295
|
return {
|
|
3271
3296
|
user: undefined,
|
|
@@ -12966,6 +12991,7 @@ function createBaseUser(): User {
|
|
|
12966
12991
|
apple_id: "",
|
|
12967
12992
|
about_me: "",
|
|
12968
12993
|
join_time: undefined,
|
|
12994
|
+
isMobile: false,
|
|
12969
12995
|
};
|
|
12970
12996
|
}
|
|
12971
12997
|
|
|
@@ -13028,6 +13054,9 @@ export const User = {
|
|
|
13028
13054
|
if (message.join_time !== undefined) {
|
|
13029
13055
|
Timestamp.encode(toTimestamp(message.join_time), writer.uint32(154).fork()).ldelim();
|
|
13030
13056
|
}
|
|
13057
|
+
if (message.isMobile !== false) {
|
|
13058
|
+
writer.uint32(160).bool(message.isMobile);
|
|
13059
|
+
}
|
|
13031
13060
|
return writer;
|
|
13032
13061
|
},
|
|
13033
13062
|
|
|
@@ -13171,6 +13200,13 @@ export const User = {
|
|
|
13171
13200
|
|
|
13172
13201
|
message.join_time = fromTimestamp(Timestamp.decode(reader, reader.uint32()));
|
|
13173
13202
|
continue;
|
|
13203
|
+
case 20:
|
|
13204
|
+
if (tag !== 160) {
|
|
13205
|
+
break;
|
|
13206
|
+
}
|
|
13207
|
+
|
|
13208
|
+
message.isMobile = reader.bool();
|
|
13209
|
+
continue;
|
|
13174
13210
|
}
|
|
13175
13211
|
if ((tag & 7) === 4 || tag === 0) {
|
|
13176
13212
|
break;
|
|
@@ -13201,6 +13237,7 @@ export const User = {
|
|
|
13201
13237
|
apple_id: isSet(object.apple_id) ? globalThis.String(object.apple_id) : "",
|
|
13202
13238
|
about_me: isSet(object.about_me) ? globalThis.String(object.about_me) : "",
|
|
13203
13239
|
join_time: isSet(object.join_time) ? fromJsonTimestamp(object.join_time) : undefined,
|
|
13240
|
+
isMobile: isSet(object.isMobile) ? globalThis.Boolean(object.isMobile) : false,
|
|
13204
13241
|
};
|
|
13205
13242
|
},
|
|
13206
13243
|
|
|
@@ -13263,6 +13300,9 @@ export const User = {
|
|
|
13263
13300
|
if (message.join_time !== undefined) {
|
|
13264
13301
|
obj.join_time = message.join_time.toISOString();
|
|
13265
13302
|
}
|
|
13303
|
+
if (message.isMobile !== false) {
|
|
13304
|
+
obj.isMobile = message.isMobile;
|
|
13305
|
+
}
|
|
13266
13306
|
return obj;
|
|
13267
13307
|
},
|
|
13268
13308
|
|
|
@@ -13290,6 +13330,7 @@ export const User = {
|
|
|
13290
13330
|
message.apple_id = object.apple_id ?? "";
|
|
13291
13331
|
message.about_me = object.about_me ?? "";
|
|
13292
13332
|
message.join_time = object.join_time ?? undefined;
|
|
13333
|
+
message.isMobile = object.isMobile ?? false;
|
|
13293
13334
|
return message;
|
|
13294
13335
|
},
|
|
13295
13336
|
};
|
|
@@ -30808,6 +30849,312 @@ export const ChannelCanvasDetailResponse = {
|
|
|
30808
30849
|
},
|
|
30809
30850
|
};
|
|
30810
30851
|
|
|
30852
|
+
function createBaseAddFavoriteChannelRequest(): AddFavoriteChannelRequest {
|
|
30853
|
+
return { channel_id: "", clan_id: "" };
|
|
30854
|
+
}
|
|
30855
|
+
|
|
30856
|
+
export const AddFavoriteChannelRequest = {
|
|
30857
|
+
encode(message: AddFavoriteChannelRequest, writer: _m0.Writer = _m0.Writer.create()): _m0.Writer {
|
|
30858
|
+
if (message.channel_id !== "") {
|
|
30859
|
+
writer.uint32(10).string(message.channel_id);
|
|
30860
|
+
}
|
|
30861
|
+
if (message.clan_id !== "") {
|
|
30862
|
+
writer.uint32(18).string(message.clan_id);
|
|
30863
|
+
}
|
|
30864
|
+
return writer;
|
|
30865
|
+
},
|
|
30866
|
+
|
|
30867
|
+
decode(input: _m0.Reader | Uint8Array, length?: number): AddFavoriteChannelRequest {
|
|
30868
|
+
const reader = input instanceof _m0.Reader ? input : _m0.Reader.create(input);
|
|
30869
|
+
let end = length === undefined ? reader.len : reader.pos + length;
|
|
30870
|
+
const message = createBaseAddFavoriteChannelRequest();
|
|
30871
|
+
while (reader.pos < end) {
|
|
30872
|
+
const tag = reader.uint32();
|
|
30873
|
+
switch (tag >>> 3) {
|
|
30874
|
+
case 1:
|
|
30875
|
+
if (tag !== 10) {
|
|
30876
|
+
break;
|
|
30877
|
+
}
|
|
30878
|
+
|
|
30879
|
+
message.channel_id = reader.string();
|
|
30880
|
+
continue;
|
|
30881
|
+
case 2:
|
|
30882
|
+
if (tag !== 18) {
|
|
30883
|
+
break;
|
|
30884
|
+
}
|
|
30885
|
+
|
|
30886
|
+
message.clan_id = reader.string();
|
|
30887
|
+
continue;
|
|
30888
|
+
}
|
|
30889
|
+
if ((tag & 7) === 4 || tag === 0) {
|
|
30890
|
+
break;
|
|
30891
|
+
}
|
|
30892
|
+
reader.skipType(tag & 7);
|
|
30893
|
+
}
|
|
30894
|
+
return message;
|
|
30895
|
+
},
|
|
30896
|
+
|
|
30897
|
+
fromJSON(object: any): AddFavoriteChannelRequest {
|
|
30898
|
+
return {
|
|
30899
|
+
channel_id: isSet(object.channel_id) ? globalThis.String(object.channel_id) : "",
|
|
30900
|
+
clan_id: isSet(object.clan_id) ? globalThis.String(object.clan_id) : "",
|
|
30901
|
+
};
|
|
30902
|
+
},
|
|
30903
|
+
|
|
30904
|
+
toJSON(message: AddFavoriteChannelRequest): unknown {
|
|
30905
|
+
const obj: any = {};
|
|
30906
|
+
if (message.channel_id !== "") {
|
|
30907
|
+
obj.channel_id = message.channel_id;
|
|
30908
|
+
}
|
|
30909
|
+
if (message.clan_id !== "") {
|
|
30910
|
+
obj.clan_id = message.clan_id;
|
|
30911
|
+
}
|
|
30912
|
+
return obj;
|
|
30913
|
+
},
|
|
30914
|
+
|
|
30915
|
+
create<I extends Exact<DeepPartial<AddFavoriteChannelRequest>, I>>(base?: I): AddFavoriteChannelRequest {
|
|
30916
|
+
return AddFavoriteChannelRequest.fromPartial(base ?? ({} as any));
|
|
30917
|
+
},
|
|
30918
|
+
fromPartial<I extends Exact<DeepPartial<AddFavoriteChannelRequest>, I>>(object: I): AddFavoriteChannelRequest {
|
|
30919
|
+
const message = createBaseAddFavoriteChannelRequest();
|
|
30920
|
+
message.channel_id = object.channel_id ?? "";
|
|
30921
|
+
message.clan_id = object.clan_id ?? "";
|
|
30922
|
+
return message;
|
|
30923
|
+
},
|
|
30924
|
+
};
|
|
30925
|
+
|
|
30926
|
+
function createBaseRemoveFavoriteChannelRequest(): RemoveFavoriteChannelRequest {
|
|
30927
|
+
return { channel_id: "" };
|
|
30928
|
+
}
|
|
30929
|
+
|
|
30930
|
+
export const RemoveFavoriteChannelRequest = {
|
|
30931
|
+
encode(message: RemoveFavoriteChannelRequest, writer: _m0.Writer = _m0.Writer.create()): _m0.Writer {
|
|
30932
|
+
if (message.channel_id !== "") {
|
|
30933
|
+
writer.uint32(10).string(message.channel_id);
|
|
30934
|
+
}
|
|
30935
|
+
return writer;
|
|
30936
|
+
},
|
|
30937
|
+
|
|
30938
|
+
decode(input: _m0.Reader | Uint8Array, length?: number): RemoveFavoriteChannelRequest {
|
|
30939
|
+
const reader = input instanceof _m0.Reader ? input : _m0.Reader.create(input);
|
|
30940
|
+
let end = length === undefined ? reader.len : reader.pos + length;
|
|
30941
|
+
const message = createBaseRemoveFavoriteChannelRequest();
|
|
30942
|
+
while (reader.pos < end) {
|
|
30943
|
+
const tag = reader.uint32();
|
|
30944
|
+
switch (tag >>> 3) {
|
|
30945
|
+
case 1:
|
|
30946
|
+
if (tag !== 10) {
|
|
30947
|
+
break;
|
|
30948
|
+
}
|
|
30949
|
+
|
|
30950
|
+
message.channel_id = reader.string();
|
|
30951
|
+
continue;
|
|
30952
|
+
}
|
|
30953
|
+
if ((tag & 7) === 4 || tag === 0) {
|
|
30954
|
+
break;
|
|
30955
|
+
}
|
|
30956
|
+
reader.skipType(tag & 7);
|
|
30957
|
+
}
|
|
30958
|
+
return message;
|
|
30959
|
+
},
|
|
30960
|
+
|
|
30961
|
+
fromJSON(object: any): RemoveFavoriteChannelRequest {
|
|
30962
|
+
return { channel_id: isSet(object.channel_id) ? globalThis.String(object.channel_id) : "" };
|
|
30963
|
+
},
|
|
30964
|
+
|
|
30965
|
+
toJSON(message: RemoveFavoriteChannelRequest): unknown {
|
|
30966
|
+
const obj: any = {};
|
|
30967
|
+
if (message.channel_id !== "") {
|
|
30968
|
+
obj.channel_id = message.channel_id;
|
|
30969
|
+
}
|
|
30970
|
+
return obj;
|
|
30971
|
+
},
|
|
30972
|
+
|
|
30973
|
+
create<I extends Exact<DeepPartial<RemoveFavoriteChannelRequest>, I>>(base?: I): RemoveFavoriteChannelRequest {
|
|
30974
|
+
return RemoveFavoriteChannelRequest.fromPartial(base ?? ({} as any));
|
|
30975
|
+
},
|
|
30976
|
+
fromPartial<I extends Exact<DeepPartial<RemoveFavoriteChannelRequest>, I>>(object: I): RemoveFavoriteChannelRequest {
|
|
30977
|
+
const message = createBaseRemoveFavoriteChannelRequest();
|
|
30978
|
+
message.channel_id = object.channel_id ?? "";
|
|
30979
|
+
return message;
|
|
30980
|
+
},
|
|
30981
|
+
};
|
|
30982
|
+
|
|
30983
|
+
function createBaseAddFavoriteChannelResponse(): AddFavoriteChannelResponse {
|
|
30984
|
+
return { channel_id: "" };
|
|
30985
|
+
}
|
|
30986
|
+
|
|
30987
|
+
export const AddFavoriteChannelResponse = {
|
|
30988
|
+
encode(message: AddFavoriteChannelResponse, writer: _m0.Writer = _m0.Writer.create()): _m0.Writer {
|
|
30989
|
+
if (message.channel_id !== "") {
|
|
30990
|
+
writer.uint32(10).string(message.channel_id);
|
|
30991
|
+
}
|
|
30992
|
+
return writer;
|
|
30993
|
+
},
|
|
30994
|
+
|
|
30995
|
+
decode(input: _m0.Reader | Uint8Array, length?: number): AddFavoriteChannelResponse {
|
|
30996
|
+
const reader = input instanceof _m0.Reader ? input : _m0.Reader.create(input);
|
|
30997
|
+
let end = length === undefined ? reader.len : reader.pos + length;
|
|
30998
|
+
const message = createBaseAddFavoriteChannelResponse();
|
|
30999
|
+
while (reader.pos < end) {
|
|
31000
|
+
const tag = reader.uint32();
|
|
31001
|
+
switch (tag >>> 3) {
|
|
31002
|
+
case 1:
|
|
31003
|
+
if (tag !== 10) {
|
|
31004
|
+
break;
|
|
31005
|
+
}
|
|
31006
|
+
|
|
31007
|
+
message.channel_id = reader.string();
|
|
31008
|
+
continue;
|
|
31009
|
+
}
|
|
31010
|
+
if ((tag & 7) === 4 || tag === 0) {
|
|
31011
|
+
break;
|
|
31012
|
+
}
|
|
31013
|
+
reader.skipType(tag & 7);
|
|
31014
|
+
}
|
|
31015
|
+
return message;
|
|
31016
|
+
},
|
|
31017
|
+
|
|
31018
|
+
fromJSON(object: any): AddFavoriteChannelResponse {
|
|
31019
|
+
return { channel_id: isSet(object.channel_id) ? globalThis.String(object.channel_id) : "" };
|
|
31020
|
+
},
|
|
31021
|
+
|
|
31022
|
+
toJSON(message: AddFavoriteChannelResponse): unknown {
|
|
31023
|
+
const obj: any = {};
|
|
31024
|
+
if (message.channel_id !== "") {
|
|
31025
|
+
obj.channel_id = message.channel_id;
|
|
31026
|
+
}
|
|
31027
|
+
return obj;
|
|
31028
|
+
},
|
|
31029
|
+
|
|
31030
|
+
create<I extends Exact<DeepPartial<AddFavoriteChannelResponse>, I>>(base?: I): AddFavoriteChannelResponse {
|
|
31031
|
+
return AddFavoriteChannelResponse.fromPartial(base ?? ({} as any));
|
|
31032
|
+
},
|
|
31033
|
+
fromPartial<I extends Exact<DeepPartial<AddFavoriteChannelResponse>, I>>(object: I): AddFavoriteChannelResponse {
|
|
31034
|
+
const message = createBaseAddFavoriteChannelResponse();
|
|
31035
|
+
message.channel_id = object.channel_id ?? "";
|
|
31036
|
+
return message;
|
|
31037
|
+
},
|
|
31038
|
+
};
|
|
31039
|
+
|
|
31040
|
+
function createBaseListFavoriteChannelRequest(): ListFavoriteChannelRequest {
|
|
31041
|
+
return { clan_id: "" };
|
|
31042
|
+
}
|
|
31043
|
+
|
|
31044
|
+
export const ListFavoriteChannelRequest = {
|
|
31045
|
+
encode(message: ListFavoriteChannelRequest, writer: _m0.Writer = _m0.Writer.create()): _m0.Writer {
|
|
31046
|
+
if (message.clan_id !== "") {
|
|
31047
|
+
writer.uint32(10).string(message.clan_id);
|
|
31048
|
+
}
|
|
31049
|
+
return writer;
|
|
31050
|
+
},
|
|
31051
|
+
|
|
31052
|
+
decode(input: _m0.Reader | Uint8Array, length?: number): ListFavoriteChannelRequest {
|
|
31053
|
+
const reader = input instanceof _m0.Reader ? input : _m0.Reader.create(input);
|
|
31054
|
+
let end = length === undefined ? reader.len : reader.pos + length;
|
|
31055
|
+
const message = createBaseListFavoriteChannelRequest();
|
|
31056
|
+
while (reader.pos < end) {
|
|
31057
|
+
const tag = reader.uint32();
|
|
31058
|
+
switch (tag >>> 3) {
|
|
31059
|
+
case 1:
|
|
31060
|
+
if (tag !== 10) {
|
|
31061
|
+
break;
|
|
31062
|
+
}
|
|
31063
|
+
|
|
31064
|
+
message.clan_id = reader.string();
|
|
31065
|
+
continue;
|
|
31066
|
+
}
|
|
31067
|
+
if ((tag & 7) === 4 || tag === 0) {
|
|
31068
|
+
break;
|
|
31069
|
+
}
|
|
31070
|
+
reader.skipType(tag & 7);
|
|
31071
|
+
}
|
|
31072
|
+
return message;
|
|
31073
|
+
},
|
|
31074
|
+
|
|
31075
|
+
fromJSON(object: any): ListFavoriteChannelRequest {
|
|
31076
|
+
return { clan_id: isSet(object.clan_id) ? globalThis.String(object.clan_id) : "" };
|
|
31077
|
+
},
|
|
31078
|
+
|
|
31079
|
+
toJSON(message: ListFavoriteChannelRequest): unknown {
|
|
31080
|
+
const obj: any = {};
|
|
31081
|
+
if (message.clan_id !== "") {
|
|
31082
|
+
obj.clan_id = message.clan_id;
|
|
31083
|
+
}
|
|
31084
|
+
return obj;
|
|
31085
|
+
},
|
|
31086
|
+
|
|
31087
|
+
create<I extends Exact<DeepPartial<ListFavoriteChannelRequest>, I>>(base?: I): ListFavoriteChannelRequest {
|
|
31088
|
+
return ListFavoriteChannelRequest.fromPartial(base ?? ({} as any));
|
|
31089
|
+
},
|
|
31090
|
+
fromPartial<I extends Exact<DeepPartial<ListFavoriteChannelRequest>, I>>(object: I): ListFavoriteChannelRequest {
|
|
31091
|
+
const message = createBaseListFavoriteChannelRequest();
|
|
31092
|
+
message.clan_id = object.clan_id ?? "";
|
|
31093
|
+
return message;
|
|
31094
|
+
},
|
|
31095
|
+
};
|
|
31096
|
+
|
|
31097
|
+
function createBaseListFavoriteChannelResponse(): ListFavoriteChannelResponse {
|
|
31098
|
+
return { channel_ids: [] };
|
|
31099
|
+
}
|
|
31100
|
+
|
|
31101
|
+
export const ListFavoriteChannelResponse = {
|
|
31102
|
+
encode(message: ListFavoriteChannelResponse, writer: _m0.Writer = _m0.Writer.create()): _m0.Writer {
|
|
31103
|
+
for (const v of message.channel_ids) {
|
|
31104
|
+
writer.uint32(10).string(v!);
|
|
31105
|
+
}
|
|
31106
|
+
return writer;
|
|
31107
|
+
},
|
|
31108
|
+
|
|
31109
|
+
decode(input: _m0.Reader | Uint8Array, length?: number): ListFavoriteChannelResponse {
|
|
31110
|
+
const reader = input instanceof _m0.Reader ? input : _m0.Reader.create(input);
|
|
31111
|
+
let end = length === undefined ? reader.len : reader.pos + length;
|
|
31112
|
+
const message = createBaseListFavoriteChannelResponse();
|
|
31113
|
+
while (reader.pos < end) {
|
|
31114
|
+
const tag = reader.uint32();
|
|
31115
|
+
switch (tag >>> 3) {
|
|
31116
|
+
case 1:
|
|
31117
|
+
if (tag !== 10) {
|
|
31118
|
+
break;
|
|
31119
|
+
}
|
|
31120
|
+
|
|
31121
|
+
message.channel_ids.push(reader.string());
|
|
31122
|
+
continue;
|
|
31123
|
+
}
|
|
31124
|
+
if ((tag & 7) === 4 || tag === 0) {
|
|
31125
|
+
break;
|
|
31126
|
+
}
|
|
31127
|
+
reader.skipType(tag & 7);
|
|
31128
|
+
}
|
|
31129
|
+
return message;
|
|
31130
|
+
},
|
|
31131
|
+
|
|
31132
|
+
fromJSON(object: any): ListFavoriteChannelResponse {
|
|
31133
|
+
return {
|
|
31134
|
+
channel_ids: globalThis.Array.isArray(object?.channel_ids)
|
|
31135
|
+
? object.channel_ids.map((e: any) => globalThis.String(e))
|
|
31136
|
+
: [],
|
|
31137
|
+
};
|
|
31138
|
+
},
|
|
31139
|
+
|
|
31140
|
+
toJSON(message: ListFavoriteChannelResponse): unknown {
|
|
31141
|
+
const obj: any = {};
|
|
31142
|
+
if (message.channel_ids?.length) {
|
|
31143
|
+
obj.channel_ids = message.channel_ids;
|
|
31144
|
+
}
|
|
31145
|
+
return obj;
|
|
31146
|
+
},
|
|
31147
|
+
|
|
31148
|
+
create<I extends Exact<DeepPartial<ListFavoriteChannelResponse>, I>>(base?: I): ListFavoriteChannelResponse {
|
|
31149
|
+
return ListFavoriteChannelResponse.fromPartial(base ?? ({} as any));
|
|
31150
|
+
},
|
|
31151
|
+
fromPartial<I extends Exact<DeepPartial<ListFavoriteChannelResponse>, I>>(object: I): ListFavoriteChannelResponse {
|
|
31152
|
+
const message = createBaseListFavoriteChannelResponse();
|
|
31153
|
+
message.channel_ids = object.channel_ids?.map((e) => e) || [];
|
|
31154
|
+
return message;
|
|
31155
|
+
},
|
|
31156
|
+
};
|
|
31157
|
+
|
|
30811
31158
|
type Builtin = Date | Function | Uint8Array | string | number | boolean | undefined;
|
|
30812
31159
|
|
|
30813
31160
|
export type DeepPartial<T> = T extends Builtin ? T
|
|
@@ -1064,6 +1064,8 @@ export interface User {
|
|
|
1064
1064
|
about_me: string;
|
|
1065
1065
|
/** */
|
|
1066
1066
|
join_time: Date | undefined;
|
|
1067
|
+
/** platform */
|
|
1068
|
+
isMobile: boolean;
|
|
1067
1069
|
}
|
|
1068
1070
|
/** A list of groups belonging to a user, along with the user's role in each group. */
|
|
1069
1071
|
export interface UserGroupList {
|
|
@@ -2602,6 +2604,22 @@ export interface ChannelCanvasDetailResponse {
|
|
|
2602
2604
|
/** is default */
|
|
2603
2605
|
is_default: boolean;
|
|
2604
2606
|
}
|
|
2607
|
+
export interface AddFavoriteChannelRequest {
|
|
2608
|
+
channel_id: string;
|
|
2609
|
+
clan_id: string;
|
|
2610
|
+
}
|
|
2611
|
+
export interface RemoveFavoriteChannelRequest {
|
|
2612
|
+
channel_id: string;
|
|
2613
|
+
}
|
|
2614
|
+
export interface AddFavoriteChannelResponse {
|
|
2615
|
+
channel_id: string;
|
|
2616
|
+
}
|
|
2617
|
+
export interface ListFavoriteChannelRequest {
|
|
2618
|
+
clan_id: string;
|
|
2619
|
+
}
|
|
2620
|
+
export interface ListFavoriteChannelResponse {
|
|
2621
|
+
channel_ids: string[];
|
|
2622
|
+
}
|
|
2605
2623
|
export declare const Account: {
|
|
2606
2624
|
encode(message: Account, writer?: _m0.Writer): _m0.Writer;
|
|
2607
2625
|
decode(input: _m0.Reader | Uint8Array, length?: number): Account;
|
|
@@ -2628,6 +2646,7 @@ export declare const Account: {
|
|
|
2628
2646
|
apple_id?: string | undefined;
|
|
2629
2647
|
about_me?: string | undefined;
|
|
2630
2648
|
join_time?: Date | undefined;
|
|
2649
|
+
isMobile?: boolean | undefined;
|
|
2631
2650
|
} | undefined;
|
|
2632
2651
|
wallet?: string | undefined;
|
|
2633
2652
|
email?: string | undefined;
|
|
@@ -2661,6 +2680,7 @@ export declare const Account: {
|
|
|
2661
2680
|
apple_id?: string | undefined;
|
|
2662
2681
|
about_me?: string | undefined;
|
|
2663
2682
|
join_time?: Date | undefined;
|
|
2683
|
+
isMobile?: boolean | undefined;
|
|
2664
2684
|
} & {
|
|
2665
2685
|
id?: string | undefined;
|
|
2666
2686
|
username?: string | undefined;
|
|
@@ -2681,6 +2701,7 @@ export declare const Account: {
|
|
|
2681
2701
|
apple_id?: string | undefined;
|
|
2682
2702
|
about_me?: string | undefined;
|
|
2683
2703
|
join_time?: Date | undefined;
|
|
2704
|
+
isMobile?: boolean | undefined;
|
|
2684
2705
|
} & { [K in Exclude<keyof I["user"], keyof User>]: never; }) | undefined;
|
|
2685
2706
|
wallet?: string | undefined;
|
|
2686
2707
|
email?: string | undefined;
|
|
@@ -2732,6 +2753,7 @@ export declare const Account: {
|
|
|
2732
2753
|
apple_id?: string | undefined;
|
|
2733
2754
|
about_me?: string | undefined;
|
|
2734
2755
|
join_time?: Date | undefined;
|
|
2756
|
+
isMobile?: boolean | undefined;
|
|
2735
2757
|
} | undefined;
|
|
2736
2758
|
wallet?: string | undefined;
|
|
2737
2759
|
email?: string | undefined;
|
|
@@ -2765,6 +2787,7 @@ export declare const Account: {
|
|
|
2765
2787
|
apple_id?: string | undefined;
|
|
2766
2788
|
about_me?: string | undefined;
|
|
2767
2789
|
join_time?: Date | undefined;
|
|
2790
|
+
isMobile?: boolean | undefined;
|
|
2768
2791
|
} & {
|
|
2769
2792
|
id?: string | undefined;
|
|
2770
2793
|
username?: string | undefined;
|
|
@@ -2785,6 +2808,7 @@ export declare const Account: {
|
|
|
2785
2808
|
apple_id?: string | undefined;
|
|
2786
2809
|
about_me?: string | undefined;
|
|
2787
2810
|
join_time?: Date | undefined;
|
|
2811
|
+
isMobile?: boolean | undefined;
|
|
2788
2812
|
} & { [K_5 in Exclude<keyof I_1["user"], keyof User>]: never; }) | undefined;
|
|
2789
2813
|
wallet?: string | undefined;
|
|
2790
2814
|
email?: string | undefined;
|
|
@@ -5066,6 +5090,7 @@ export declare const Friend: {
|
|
|
5066
5090
|
apple_id?: string | undefined;
|
|
5067
5091
|
about_me?: string | undefined;
|
|
5068
5092
|
join_time?: Date | undefined;
|
|
5093
|
+
isMobile?: boolean | undefined;
|
|
5069
5094
|
} | undefined;
|
|
5070
5095
|
state?: number | undefined;
|
|
5071
5096
|
update_time?: Date | undefined;
|
|
@@ -5090,6 +5115,7 @@ export declare const Friend: {
|
|
|
5090
5115
|
apple_id?: string | undefined;
|
|
5091
5116
|
about_me?: string | undefined;
|
|
5092
5117
|
join_time?: Date | undefined;
|
|
5118
|
+
isMobile?: boolean | undefined;
|
|
5093
5119
|
} & {
|
|
5094
5120
|
id?: string | undefined;
|
|
5095
5121
|
username?: string | undefined;
|
|
@@ -5110,6 +5136,7 @@ export declare const Friend: {
|
|
|
5110
5136
|
apple_id?: string | undefined;
|
|
5111
5137
|
about_me?: string | undefined;
|
|
5112
5138
|
join_time?: Date | undefined;
|
|
5139
|
+
isMobile?: boolean | undefined;
|
|
5113
5140
|
} & { [K in Exclude<keyof I["user"], keyof User>]: never; }) | undefined;
|
|
5114
5141
|
state?: number | undefined;
|
|
5115
5142
|
update_time?: Date | undefined;
|
|
@@ -5135,6 +5162,7 @@ export declare const Friend: {
|
|
|
5135
5162
|
apple_id?: string | undefined;
|
|
5136
5163
|
about_me?: string | undefined;
|
|
5137
5164
|
join_time?: Date | undefined;
|
|
5165
|
+
isMobile?: boolean | undefined;
|
|
5138
5166
|
} | undefined;
|
|
5139
5167
|
state?: number | undefined;
|
|
5140
5168
|
update_time?: Date | undefined;
|
|
@@ -5159,6 +5187,7 @@ export declare const Friend: {
|
|
|
5159
5187
|
apple_id?: string | undefined;
|
|
5160
5188
|
about_me?: string | undefined;
|
|
5161
5189
|
join_time?: Date | undefined;
|
|
5190
|
+
isMobile?: boolean | undefined;
|
|
5162
5191
|
} & {
|
|
5163
5192
|
id?: string | undefined;
|
|
5164
5193
|
username?: string | undefined;
|
|
@@ -5179,6 +5208,7 @@ export declare const Friend: {
|
|
|
5179
5208
|
apple_id?: string | undefined;
|
|
5180
5209
|
about_me?: string | undefined;
|
|
5181
5210
|
join_time?: Date | undefined;
|
|
5211
|
+
isMobile?: boolean | undefined;
|
|
5182
5212
|
} & { [K_2 in Exclude<keyof I_1["user"], keyof User>]: never; }) | undefined;
|
|
5183
5213
|
state?: number | undefined;
|
|
5184
5214
|
update_time?: Date | undefined;
|
|
@@ -5211,6 +5241,7 @@ export declare const FriendList: {
|
|
|
5211
5241
|
apple_id?: string | undefined;
|
|
5212
5242
|
about_me?: string | undefined;
|
|
5213
5243
|
join_time?: Date | undefined;
|
|
5244
|
+
isMobile?: boolean | undefined;
|
|
5214
5245
|
} | undefined;
|
|
5215
5246
|
state?: number | undefined;
|
|
5216
5247
|
update_time?: Date | undefined;
|
|
@@ -5238,6 +5269,7 @@ export declare const FriendList: {
|
|
|
5238
5269
|
apple_id?: string | undefined;
|
|
5239
5270
|
about_me?: string | undefined;
|
|
5240
5271
|
join_time?: Date | undefined;
|
|
5272
|
+
isMobile?: boolean | undefined;
|
|
5241
5273
|
} | undefined;
|
|
5242
5274
|
state?: number | undefined;
|
|
5243
5275
|
update_time?: Date | undefined;
|
|
@@ -5262,6 +5294,7 @@ export declare const FriendList: {
|
|
|
5262
5294
|
apple_id?: string | undefined;
|
|
5263
5295
|
about_me?: string | undefined;
|
|
5264
5296
|
join_time?: Date | undefined;
|
|
5297
|
+
isMobile?: boolean | undefined;
|
|
5265
5298
|
} | undefined;
|
|
5266
5299
|
state?: number | undefined;
|
|
5267
5300
|
update_time?: Date | undefined;
|
|
@@ -5286,6 +5319,7 @@ export declare const FriendList: {
|
|
|
5286
5319
|
apple_id?: string | undefined;
|
|
5287
5320
|
about_me?: string | undefined;
|
|
5288
5321
|
join_time?: Date | undefined;
|
|
5322
|
+
isMobile?: boolean | undefined;
|
|
5289
5323
|
} & {
|
|
5290
5324
|
id?: string | undefined;
|
|
5291
5325
|
username?: string | undefined;
|
|
@@ -5306,6 +5340,7 @@ export declare const FriendList: {
|
|
|
5306
5340
|
apple_id?: string | undefined;
|
|
5307
5341
|
about_me?: string | undefined;
|
|
5308
5342
|
join_time?: Date | undefined;
|
|
5343
|
+
isMobile?: boolean | undefined;
|
|
5309
5344
|
} & { [K in Exclude<keyof I["friends"][number]["user"], keyof User>]: never; }) | undefined;
|
|
5310
5345
|
state?: number | undefined;
|
|
5311
5346
|
update_time?: Date | undefined;
|
|
@@ -5330,6 +5365,7 @@ export declare const FriendList: {
|
|
|
5330
5365
|
apple_id?: string | undefined;
|
|
5331
5366
|
about_me?: string | undefined;
|
|
5332
5367
|
join_time?: Date | undefined;
|
|
5368
|
+
isMobile?: boolean | undefined;
|
|
5333
5369
|
} | undefined;
|
|
5334
5370
|
state?: number | undefined;
|
|
5335
5371
|
update_time?: Date | undefined;
|
|
@@ -5358,6 +5394,7 @@ export declare const FriendList: {
|
|
|
5358
5394
|
apple_id?: string | undefined;
|
|
5359
5395
|
about_me?: string | undefined;
|
|
5360
5396
|
join_time?: Date | undefined;
|
|
5397
|
+
isMobile?: boolean | undefined;
|
|
5361
5398
|
} | undefined;
|
|
5362
5399
|
state?: number | undefined;
|
|
5363
5400
|
update_time?: Date | undefined;
|
|
@@ -5385,6 +5422,7 @@ export declare const FriendList: {
|
|
|
5385
5422
|
apple_id?: string | undefined;
|
|
5386
5423
|
about_me?: string | undefined;
|
|
5387
5424
|
join_time?: Date | undefined;
|
|
5425
|
+
isMobile?: boolean | undefined;
|
|
5388
5426
|
} | undefined;
|
|
5389
5427
|
state?: number | undefined;
|
|
5390
5428
|
update_time?: Date | undefined;
|
|
@@ -5409,6 +5447,7 @@ export declare const FriendList: {
|
|
|
5409
5447
|
apple_id?: string | undefined;
|
|
5410
5448
|
about_me?: string | undefined;
|
|
5411
5449
|
join_time?: Date | undefined;
|
|
5450
|
+
isMobile?: boolean | undefined;
|
|
5412
5451
|
} | undefined;
|
|
5413
5452
|
state?: number | undefined;
|
|
5414
5453
|
update_time?: Date | undefined;
|
|
@@ -5433,6 +5472,7 @@ export declare const FriendList: {
|
|
|
5433
5472
|
apple_id?: string | undefined;
|
|
5434
5473
|
about_me?: string | undefined;
|
|
5435
5474
|
join_time?: Date | undefined;
|
|
5475
|
+
isMobile?: boolean | undefined;
|
|
5436
5476
|
} & {
|
|
5437
5477
|
id?: string | undefined;
|
|
5438
5478
|
username?: string | undefined;
|
|
@@ -5453,6 +5493,7 @@ export declare const FriendList: {
|
|
|
5453
5493
|
apple_id?: string | undefined;
|
|
5454
5494
|
about_me?: string | undefined;
|
|
5455
5495
|
join_time?: Date | undefined;
|
|
5496
|
+
isMobile?: boolean | undefined;
|
|
5456
5497
|
} & { [K_4 in Exclude<keyof I_1["friends"][number]["user"], keyof User>]: never; }) | undefined;
|
|
5457
5498
|
state?: number | undefined;
|
|
5458
5499
|
update_time?: Date | undefined;
|
|
@@ -5477,6 +5518,7 @@ export declare const FriendList: {
|
|
|
5477
5518
|
apple_id?: string | undefined;
|
|
5478
5519
|
about_me?: string | undefined;
|
|
5479
5520
|
join_time?: Date | undefined;
|
|
5521
|
+
isMobile?: boolean | undefined;
|
|
5480
5522
|
} | undefined;
|
|
5481
5523
|
state?: number | undefined;
|
|
5482
5524
|
update_time?: Date | undefined;
|
|
@@ -5765,6 +5807,7 @@ export declare const GroupUserList: {
|
|
|
5765
5807
|
apple_id?: string | undefined;
|
|
5766
5808
|
about_me?: string | undefined;
|
|
5767
5809
|
join_time?: Date | undefined;
|
|
5810
|
+
isMobile?: boolean | undefined;
|
|
5768
5811
|
} | undefined;
|
|
5769
5812
|
state?: number | undefined;
|
|
5770
5813
|
}[] | undefined;
|
|
@@ -5791,6 +5834,7 @@ export declare const GroupUserList: {
|
|
|
5791
5834
|
apple_id?: string | undefined;
|
|
5792
5835
|
about_me?: string | undefined;
|
|
5793
5836
|
join_time?: Date | undefined;
|
|
5837
|
+
isMobile?: boolean | undefined;
|
|
5794
5838
|
} | undefined;
|
|
5795
5839
|
state?: number | undefined;
|
|
5796
5840
|
}[] & ({
|
|
@@ -5814,6 +5858,7 @@ export declare const GroupUserList: {
|
|
|
5814
5858
|
apple_id?: string | undefined;
|
|
5815
5859
|
about_me?: string | undefined;
|
|
5816
5860
|
join_time?: Date | undefined;
|
|
5861
|
+
isMobile?: boolean | undefined;
|
|
5817
5862
|
} | undefined;
|
|
5818
5863
|
state?: number | undefined;
|
|
5819
5864
|
} & {
|
|
@@ -5837,6 +5882,7 @@ export declare const GroupUserList: {
|
|
|
5837
5882
|
apple_id?: string | undefined;
|
|
5838
5883
|
about_me?: string | undefined;
|
|
5839
5884
|
join_time?: Date | undefined;
|
|
5885
|
+
isMobile?: boolean | undefined;
|
|
5840
5886
|
} & {
|
|
5841
5887
|
id?: string | undefined;
|
|
5842
5888
|
username?: string | undefined;
|
|
@@ -5857,6 +5903,7 @@ export declare const GroupUserList: {
|
|
|
5857
5903
|
apple_id?: string | undefined;
|
|
5858
5904
|
about_me?: string | undefined;
|
|
5859
5905
|
join_time?: Date | undefined;
|
|
5906
|
+
isMobile?: boolean | undefined;
|
|
5860
5907
|
} & { [K in Exclude<keyof I["group_users"][number]["user"], keyof User>]: never; }) | undefined;
|
|
5861
5908
|
state?: number | undefined;
|
|
5862
5909
|
} & { [K_1 in Exclude<keyof I["group_users"][number], keyof GroupUserList_GroupUser>]: never; })[] & { [K_2 in Exclude<keyof I["group_users"], keyof {
|
|
@@ -5880,6 +5927,7 @@ export declare const GroupUserList: {
|
|
|
5880
5927
|
apple_id?: string | undefined;
|
|
5881
5928
|
about_me?: string | undefined;
|
|
5882
5929
|
join_time?: Date | undefined;
|
|
5930
|
+
isMobile?: boolean | undefined;
|
|
5883
5931
|
} | undefined;
|
|
5884
5932
|
state?: number | undefined;
|
|
5885
5933
|
}[]>]: never; }) | undefined;
|
|
@@ -5907,6 +5955,7 @@ export declare const GroupUserList: {
|
|
|
5907
5955
|
apple_id?: string | undefined;
|
|
5908
5956
|
about_me?: string | undefined;
|
|
5909
5957
|
join_time?: Date | undefined;
|
|
5958
|
+
isMobile?: boolean | undefined;
|
|
5910
5959
|
} | undefined;
|
|
5911
5960
|
state?: number | undefined;
|
|
5912
5961
|
}[] | undefined;
|
|
@@ -5933,6 +5982,7 @@ export declare const GroupUserList: {
|
|
|
5933
5982
|
apple_id?: string | undefined;
|
|
5934
5983
|
about_me?: string | undefined;
|
|
5935
5984
|
join_time?: Date | undefined;
|
|
5985
|
+
isMobile?: boolean | undefined;
|
|
5936
5986
|
} | undefined;
|
|
5937
5987
|
state?: number | undefined;
|
|
5938
5988
|
}[] & ({
|
|
@@ -5956,6 +6006,7 @@ export declare const GroupUserList: {
|
|
|
5956
6006
|
apple_id?: string | undefined;
|
|
5957
6007
|
about_me?: string | undefined;
|
|
5958
6008
|
join_time?: Date | undefined;
|
|
6009
|
+
isMobile?: boolean | undefined;
|
|
5959
6010
|
} | undefined;
|
|
5960
6011
|
state?: number | undefined;
|
|
5961
6012
|
} & {
|
|
@@ -5979,6 +6030,7 @@ export declare const GroupUserList: {
|
|
|
5979
6030
|
apple_id?: string | undefined;
|
|
5980
6031
|
about_me?: string | undefined;
|
|
5981
6032
|
join_time?: Date | undefined;
|
|
6033
|
+
isMobile?: boolean | undefined;
|
|
5982
6034
|
} & {
|
|
5983
6035
|
id?: string | undefined;
|
|
5984
6036
|
username?: string | undefined;
|
|
@@ -5999,6 +6051,7 @@ export declare const GroupUserList: {
|
|
|
5999
6051
|
apple_id?: string | undefined;
|
|
6000
6052
|
about_me?: string | undefined;
|
|
6001
6053
|
join_time?: Date | undefined;
|
|
6054
|
+
isMobile?: boolean | undefined;
|
|
6002
6055
|
} & { [K_4 in Exclude<keyof I_1["group_users"][number]["user"], keyof User>]: never; }) | undefined;
|
|
6003
6056
|
state?: number | undefined;
|
|
6004
6057
|
} & { [K_5 in Exclude<keyof I_1["group_users"][number], keyof GroupUserList_GroupUser>]: never; })[] & { [K_6 in Exclude<keyof I_1["group_users"], keyof {
|
|
@@ -6022,6 +6075,7 @@ export declare const GroupUserList: {
|
|
|
6022
6075
|
apple_id?: string | undefined;
|
|
6023
6076
|
about_me?: string | undefined;
|
|
6024
6077
|
join_time?: Date | undefined;
|
|
6078
|
+
isMobile?: boolean | undefined;
|
|
6025
6079
|
} | undefined;
|
|
6026
6080
|
state?: number | undefined;
|
|
6027
6081
|
}[]>]: never; }) | undefined;
|
|
@@ -6054,6 +6108,7 @@ export declare const GroupUserList_GroupUser: {
|
|
|
6054
6108
|
apple_id?: string | undefined;
|
|
6055
6109
|
about_me?: string | undefined;
|
|
6056
6110
|
join_time?: Date | undefined;
|
|
6111
|
+
isMobile?: boolean | undefined;
|
|
6057
6112
|
} | undefined;
|
|
6058
6113
|
state?: number | undefined;
|
|
6059
6114
|
} & {
|
|
@@ -6077,6 +6132,7 @@ export declare const GroupUserList_GroupUser: {
|
|
|
6077
6132
|
apple_id?: string | undefined;
|
|
6078
6133
|
about_me?: string | undefined;
|
|
6079
6134
|
join_time?: Date | undefined;
|
|
6135
|
+
isMobile?: boolean | undefined;
|
|
6080
6136
|
} & {
|
|
6081
6137
|
id?: string | undefined;
|
|
6082
6138
|
username?: string | undefined;
|
|
@@ -6097,6 +6153,7 @@ export declare const GroupUserList_GroupUser: {
|
|
|
6097
6153
|
apple_id?: string | undefined;
|
|
6098
6154
|
about_me?: string | undefined;
|
|
6099
6155
|
join_time?: Date | undefined;
|
|
6156
|
+
isMobile?: boolean | undefined;
|
|
6100
6157
|
} & { [K in Exclude<keyof I["user"], keyof User>]: never; }) | undefined;
|
|
6101
6158
|
state?: number | undefined;
|
|
6102
6159
|
} & { [K_1 in Exclude<keyof I, keyof GroupUserList_GroupUser>]: never; }>(base?: I | undefined): GroupUserList_GroupUser;
|
|
@@ -6121,6 +6178,7 @@ export declare const GroupUserList_GroupUser: {
|
|
|
6121
6178
|
apple_id?: string | undefined;
|
|
6122
6179
|
about_me?: string | undefined;
|
|
6123
6180
|
join_time?: Date | undefined;
|
|
6181
|
+
isMobile?: boolean | undefined;
|
|
6124
6182
|
} | undefined;
|
|
6125
6183
|
state?: number | undefined;
|
|
6126
6184
|
} & {
|
|
@@ -6144,6 +6202,7 @@ export declare const GroupUserList_GroupUser: {
|
|
|
6144
6202
|
apple_id?: string | undefined;
|
|
6145
6203
|
about_me?: string | undefined;
|
|
6146
6204
|
join_time?: Date | undefined;
|
|
6205
|
+
isMobile?: boolean | undefined;
|
|
6147
6206
|
} & {
|
|
6148
6207
|
id?: string | undefined;
|
|
6149
6208
|
username?: string | undefined;
|
|
@@ -6164,6 +6223,7 @@ export declare const GroupUserList_GroupUser: {
|
|
|
6164
6223
|
apple_id?: string | undefined;
|
|
6165
6224
|
about_me?: string | undefined;
|
|
6166
6225
|
join_time?: Date | undefined;
|
|
6226
|
+
isMobile?: boolean | undefined;
|
|
6167
6227
|
} & { [K_2 in Exclude<keyof I_1["user"], keyof User>]: never; }) | undefined;
|
|
6168
6228
|
state?: number | undefined;
|
|
6169
6229
|
} & { [K_3 in Exclude<keyof I_1, keyof GroupUserList_GroupUser>]: never; }>(object: I_1): GroupUserList_GroupUser;
|
|
@@ -6569,6 +6629,7 @@ export declare const ClanUserList: {
|
|
|
6569
6629
|
apple_id?: string | undefined;
|
|
6570
6630
|
about_me?: string | undefined;
|
|
6571
6631
|
join_time?: Date | undefined;
|
|
6632
|
+
isMobile?: boolean | undefined;
|
|
6572
6633
|
} | undefined;
|
|
6573
6634
|
role_id?: string[] | undefined;
|
|
6574
6635
|
clan_nick?: string | undefined;
|
|
@@ -6599,6 +6660,7 @@ export declare const ClanUserList: {
|
|
|
6599
6660
|
apple_id?: string | undefined;
|
|
6600
6661
|
about_me?: string | undefined;
|
|
6601
6662
|
join_time?: Date | undefined;
|
|
6663
|
+
isMobile?: boolean | undefined;
|
|
6602
6664
|
} | undefined;
|
|
6603
6665
|
role_id?: string[] | undefined;
|
|
6604
6666
|
clan_nick?: string | undefined;
|
|
@@ -6625,6 +6687,7 @@ export declare const ClanUserList: {
|
|
|
6625
6687
|
apple_id?: string | undefined;
|
|
6626
6688
|
about_me?: string | undefined;
|
|
6627
6689
|
join_time?: Date | undefined;
|
|
6690
|
+
isMobile?: boolean | undefined;
|
|
6628
6691
|
} | undefined;
|
|
6629
6692
|
role_id?: string[] | undefined;
|
|
6630
6693
|
clan_nick?: string | undefined;
|
|
@@ -6651,6 +6714,7 @@ export declare const ClanUserList: {
|
|
|
6651
6714
|
apple_id?: string | undefined;
|
|
6652
6715
|
about_me?: string | undefined;
|
|
6653
6716
|
join_time?: Date | undefined;
|
|
6717
|
+
isMobile?: boolean | undefined;
|
|
6654
6718
|
} & {
|
|
6655
6719
|
id?: string | undefined;
|
|
6656
6720
|
username?: string | undefined;
|
|
@@ -6671,6 +6735,7 @@ export declare const ClanUserList: {
|
|
|
6671
6735
|
apple_id?: string | undefined;
|
|
6672
6736
|
about_me?: string | undefined;
|
|
6673
6737
|
join_time?: Date | undefined;
|
|
6738
|
+
isMobile?: boolean | undefined;
|
|
6674
6739
|
} & { [K in Exclude<keyof I["clan_users"][number]["user"], keyof User>]: never; }) | undefined;
|
|
6675
6740
|
role_id?: (string[] & string[] & { [K_1 in Exclude<keyof I["clan_users"][number]["role_id"], keyof string[]>]: never; }) | undefined;
|
|
6676
6741
|
clan_nick?: string | undefined;
|
|
@@ -6697,6 +6762,7 @@ export declare const ClanUserList: {
|
|
|
6697
6762
|
apple_id?: string | undefined;
|
|
6698
6763
|
about_me?: string | undefined;
|
|
6699
6764
|
join_time?: Date | undefined;
|
|
6765
|
+
isMobile?: boolean | undefined;
|
|
6700
6766
|
} | undefined;
|
|
6701
6767
|
role_id?: string[] | undefined;
|
|
6702
6768
|
clan_nick?: string | undefined;
|
|
@@ -6728,6 +6794,7 @@ export declare const ClanUserList: {
|
|
|
6728
6794
|
apple_id?: string | undefined;
|
|
6729
6795
|
about_me?: string | undefined;
|
|
6730
6796
|
join_time?: Date | undefined;
|
|
6797
|
+
isMobile?: boolean | undefined;
|
|
6731
6798
|
} | undefined;
|
|
6732
6799
|
role_id?: string[] | undefined;
|
|
6733
6800
|
clan_nick?: string | undefined;
|
|
@@ -6758,6 +6825,7 @@ export declare const ClanUserList: {
|
|
|
6758
6825
|
apple_id?: string | undefined;
|
|
6759
6826
|
about_me?: string | undefined;
|
|
6760
6827
|
join_time?: Date | undefined;
|
|
6828
|
+
isMobile?: boolean | undefined;
|
|
6761
6829
|
} | undefined;
|
|
6762
6830
|
role_id?: string[] | undefined;
|
|
6763
6831
|
clan_nick?: string | undefined;
|
|
@@ -6784,6 +6852,7 @@ export declare const ClanUserList: {
|
|
|
6784
6852
|
apple_id?: string | undefined;
|
|
6785
6853
|
about_me?: string | undefined;
|
|
6786
6854
|
join_time?: Date | undefined;
|
|
6855
|
+
isMobile?: boolean | undefined;
|
|
6787
6856
|
} | undefined;
|
|
6788
6857
|
role_id?: string[] | undefined;
|
|
6789
6858
|
clan_nick?: string | undefined;
|
|
@@ -6810,6 +6879,7 @@ export declare const ClanUserList: {
|
|
|
6810
6879
|
apple_id?: string | undefined;
|
|
6811
6880
|
about_me?: string | undefined;
|
|
6812
6881
|
join_time?: Date | undefined;
|
|
6882
|
+
isMobile?: boolean | undefined;
|
|
6813
6883
|
} & {
|
|
6814
6884
|
id?: string | undefined;
|
|
6815
6885
|
username?: string | undefined;
|
|
@@ -6830,6 +6900,7 @@ export declare const ClanUserList: {
|
|
|
6830
6900
|
apple_id?: string | undefined;
|
|
6831
6901
|
about_me?: string | undefined;
|
|
6832
6902
|
join_time?: Date | undefined;
|
|
6903
|
+
isMobile?: boolean | undefined;
|
|
6833
6904
|
} & { [K_5 in Exclude<keyof I_1["clan_users"][number]["user"], keyof User>]: never; }) | undefined;
|
|
6834
6905
|
role_id?: (string[] & string[] & { [K_6 in Exclude<keyof I_1["clan_users"][number]["role_id"], keyof string[]>]: never; }) | undefined;
|
|
6835
6906
|
clan_nick?: string | undefined;
|
|
@@ -6856,6 +6927,7 @@ export declare const ClanUserList: {
|
|
|
6856
6927
|
apple_id?: string | undefined;
|
|
6857
6928
|
about_me?: string | undefined;
|
|
6858
6929
|
join_time?: Date | undefined;
|
|
6930
|
+
isMobile?: boolean | undefined;
|
|
6859
6931
|
} | undefined;
|
|
6860
6932
|
role_id?: string[] | undefined;
|
|
6861
6933
|
clan_nick?: string | undefined;
|
|
@@ -6892,6 +6964,7 @@ export declare const ClanUserList_ClanUser: {
|
|
|
6892
6964
|
apple_id?: string | undefined;
|
|
6893
6965
|
about_me?: string | undefined;
|
|
6894
6966
|
join_time?: Date | undefined;
|
|
6967
|
+
isMobile?: boolean | undefined;
|
|
6895
6968
|
} | undefined;
|
|
6896
6969
|
role_id?: string[] | undefined;
|
|
6897
6970
|
clan_nick?: string | undefined;
|
|
@@ -6918,6 +6991,7 @@ export declare const ClanUserList_ClanUser: {
|
|
|
6918
6991
|
apple_id?: string | undefined;
|
|
6919
6992
|
about_me?: string | undefined;
|
|
6920
6993
|
join_time?: Date | undefined;
|
|
6994
|
+
isMobile?: boolean | undefined;
|
|
6921
6995
|
} & {
|
|
6922
6996
|
id?: string | undefined;
|
|
6923
6997
|
username?: string | undefined;
|
|
@@ -6938,6 +7012,7 @@ export declare const ClanUserList_ClanUser: {
|
|
|
6938
7012
|
apple_id?: string | undefined;
|
|
6939
7013
|
about_me?: string | undefined;
|
|
6940
7014
|
join_time?: Date | undefined;
|
|
7015
|
+
isMobile?: boolean | undefined;
|
|
6941
7016
|
} & { [K in Exclude<keyof I["user"], keyof User>]: never; }) | undefined;
|
|
6942
7017
|
role_id?: (string[] & string[] & { [K_1 in Exclude<keyof I["role_id"], keyof string[]>]: never; }) | undefined;
|
|
6943
7018
|
clan_nick?: string | undefined;
|
|
@@ -6965,6 +7040,7 @@ export declare const ClanUserList_ClanUser: {
|
|
|
6965
7040
|
apple_id?: string | undefined;
|
|
6966
7041
|
about_me?: string | undefined;
|
|
6967
7042
|
join_time?: Date | undefined;
|
|
7043
|
+
isMobile?: boolean | undefined;
|
|
6968
7044
|
} | undefined;
|
|
6969
7045
|
role_id?: string[] | undefined;
|
|
6970
7046
|
clan_nick?: string | undefined;
|
|
@@ -6991,6 +7067,7 @@ export declare const ClanUserList_ClanUser: {
|
|
|
6991
7067
|
apple_id?: string | undefined;
|
|
6992
7068
|
about_me?: string | undefined;
|
|
6993
7069
|
join_time?: Date | undefined;
|
|
7070
|
+
isMobile?: boolean | undefined;
|
|
6994
7071
|
} & {
|
|
6995
7072
|
id?: string | undefined;
|
|
6996
7073
|
username?: string | undefined;
|
|
@@ -7011,6 +7088,7 @@ export declare const ClanUserList_ClanUser: {
|
|
|
7011
7088
|
apple_id?: string | undefined;
|
|
7012
7089
|
about_me?: string | undefined;
|
|
7013
7090
|
join_time?: Date | undefined;
|
|
7091
|
+
isMobile?: boolean | undefined;
|
|
7014
7092
|
} & { [K_3 in Exclude<keyof I_1["user"], keyof User>]: never; }) | undefined;
|
|
7015
7093
|
role_id?: (string[] & string[] & { [K_4 in Exclude<keyof I_1["role_id"], keyof string[]>]: never; }) | undefined;
|
|
7016
7094
|
clan_nick?: string | undefined;
|
|
@@ -7963,6 +8041,7 @@ export declare const User: {
|
|
|
7963
8041
|
apple_id?: string | undefined;
|
|
7964
8042
|
about_me?: string | undefined;
|
|
7965
8043
|
join_time?: Date | undefined;
|
|
8044
|
+
isMobile?: boolean | undefined;
|
|
7966
8045
|
} & {
|
|
7967
8046
|
id?: string | undefined;
|
|
7968
8047
|
username?: string | undefined;
|
|
@@ -7983,6 +8062,7 @@ export declare const User: {
|
|
|
7983
8062
|
apple_id?: string | undefined;
|
|
7984
8063
|
about_me?: string | undefined;
|
|
7985
8064
|
join_time?: Date | undefined;
|
|
8065
|
+
isMobile?: boolean | undefined;
|
|
7986
8066
|
} & { [K in Exclude<keyof I, keyof User>]: never; }>(base?: I | undefined): User;
|
|
7987
8067
|
fromPartial<I_1 extends {
|
|
7988
8068
|
id?: string | undefined;
|
|
@@ -8004,6 +8084,7 @@ export declare const User: {
|
|
|
8004
8084
|
apple_id?: string | undefined;
|
|
8005
8085
|
about_me?: string | undefined;
|
|
8006
8086
|
join_time?: Date | undefined;
|
|
8087
|
+
isMobile?: boolean | undefined;
|
|
8007
8088
|
} & {
|
|
8008
8089
|
id?: string | undefined;
|
|
8009
8090
|
username?: string | undefined;
|
|
@@ -8024,6 +8105,7 @@ export declare const User: {
|
|
|
8024
8105
|
apple_id?: string | undefined;
|
|
8025
8106
|
about_me?: string | undefined;
|
|
8026
8107
|
join_time?: Date | undefined;
|
|
8108
|
+
isMobile?: boolean | undefined;
|
|
8027
8109
|
} & { [K_1 in Exclude<keyof I_1, keyof User>]: never; }>(object: I_1): User;
|
|
8028
8110
|
};
|
|
8029
8111
|
export declare const UserGroupList: {
|
|
@@ -8356,6 +8438,7 @@ export declare const Users: {
|
|
|
8356
8438
|
apple_id?: string | undefined;
|
|
8357
8439
|
about_me?: string | undefined;
|
|
8358
8440
|
join_time?: Date | undefined;
|
|
8441
|
+
isMobile?: boolean | undefined;
|
|
8359
8442
|
}[] | undefined;
|
|
8360
8443
|
} & {
|
|
8361
8444
|
users?: ({
|
|
@@ -8378,6 +8461,7 @@ export declare const Users: {
|
|
|
8378
8461
|
apple_id?: string | undefined;
|
|
8379
8462
|
about_me?: string | undefined;
|
|
8380
8463
|
join_time?: Date | undefined;
|
|
8464
|
+
isMobile?: boolean | undefined;
|
|
8381
8465
|
}[] & ({
|
|
8382
8466
|
id?: string | undefined;
|
|
8383
8467
|
username?: string | undefined;
|
|
@@ -8398,6 +8482,7 @@ export declare const Users: {
|
|
|
8398
8482
|
apple_id?: string | undefined;
|
|
8399
8483
|
about_me?: string | undefined;
|
|
8400
8484
|
join_time?: Date | undefined;
|
|
8485
|
+
isMobile?: boolean | undefined;
|
|
8401
8486
|
} & {
|
|
8402
8487
|
id?: string | undefined;
|
|
8403
8488
|
username?: string | undefined;
|
|
@@ -8418,6 +8503,7 @@ export declare const Users: {
|
|
|
8418
8503
|
apple_id?: string | undefined;
|
|
8419
8504
|
about_me?: string | undefined;
|
|
8420
8505
|
join_time?: Date | undefined;
|
|
8506
|
+
isMobile?: boolean | undefined;
|
|
8421
8507
|
} & { [K in Exclude<keyof I["users"][number], keyof User>]: never; })[] & { [K_1 in Exclude<keyof I["users"], keyof {
|
|
8422
8508
|
id?: string | undefined;
|
|
8423
8509
|
username?: string | undefined;
|
|
@@ -8438,6 +8524,7 @@ export declare const Users: {
|
|
|
8438
8524
|
apple_id?: string | undefined;
|
|
8439
8525
|
about_me?: string | undefined;
|
|
8440
8526
|
join_time?: Date | undefined;
|
|
8527
|
+
isMobile?: boolean | undefined;
|
|
8441
8528
|
}[]>]: never; }) | undefined;
|
|
8442
8529
|
} & { [K_2 in Exclude<keyof I, "users">]: never; }>(base?: I | undefined): Users;
|
|
8443
8530
|
fromPartial<I_1 extends {
|
|
@@ -8461,6 +8548,7 @@ export declare const Users: {
|
|
|
8461
8548
|
apple_id?: string | undefined;
|
|
8462
8549
|
about_me?: string | undefined;
|
|
8463
8550
|
join_time?: Date | undefined;
|
|
8551
|
+
isMobile?: boolean | undefined;
|
|
8464
8552
|
}[] | undefined;
|
|
8465
8553
|
} & {
|
|
8466
8554
|
users?: ({
|
|
@@ -8483,6 +8571,7 @@ export declare const Users: {
|
|
|
8483
8571
|
apple_id?: string | undefined;
|
|
8484
8572
|
about_me?: string | undefined;
|
|
8485
8573
|
join_time?: Date | undefined;
|
|
8574
|
+
isMobile?: boolean | undefined;
|
|
8486
8575
|
}[] & ({
|
|
8487
8576
|
id?: string | undefined;
|
|
8488
8577
|
username?: string | undefined;
|
|
@@ -8503,6 +8592,7 @@ export declare const Users: {
|
|
|
8503
8592
|
apple_id?: string | undefined;
|
|
8504
8593
|
about_me?: string | undefined;
|
|
8505
8594
|
join_time?: Date | undefined;
|
|
8595
|
+
isMobile?: boolean | undefined;
|
|
8506
8596
|
} & {
|
|
8507
8597
|
id?: string | undefined;
|
|
8508
8598
|
username?: string | undefined;
|
|
@@ -8523,6 +8613,7 @@ export declare const Users: {
|
|
|
8523
8613
|
apple_id?: string | undefined;
|
|
8524
8614
|
about_me?: string | undefined;
|
|
8525
8615
|
join_time?: Date | undefined;
|
|
8616
|
+
isMobile?: boolean | undefined;
|
|
8526
8617
|
} & { [K_3 in Exclude<keyof I_1["users"][number], keyof User>]: never; })[] & { [K_4 in Exclude<keyof I_1["users"], keyof {
|
|
8527
8618
|
id?: string | undefined;
|
|
8528
8619
|
username?: string | undefined;
|
|
@@ -8543,6 +8634,7 @@ export declare const Users: {
|
|
|
8543
8634
|
apple_id?: string | undefined;
|
|
8544
8635
|
about_me?: string | undefined;
|
|
8545
8636
|
join_time?: Date | undefined;
|
|
8637
|
+
isMobile?: boolean | undefined;
|
|
8546
8638
|
}[]>]: never; }) | undefined;
|
|
8547
8639
|
} & { [K_5 in Exclude<keyof I_1, "users">]: never; }>(object: I_1): Users;
|
|
8548
8640
|
};
|
|
@@ -15738,6 +15830,7 @@ export declare const AllUserClans: {
|
|
|
15738
15830
|
apple_id?: string | undefined;
|
|
15739
15831
|
about_me?: string | undefined;
|
|
15740
15832
|
join_time?: Date | undefined;
|
|
15833
|
+
isMobile?: boolean | undefined;
|
|
15741
15834
|
}[] | undefined;
|
|
15742
15835
|
} & {
|
|
15743
15836
|
users?: ({
|
|
@@ -15760,6 +15853,7 @@ export declare const AllUserClans: {
|
|
|
15760
15853
|
apple_id?: string | undefined;
|
|
15761
15854
|
about_me?: string | undefined;
|
|
15762
15855
|
join_time?: Date | undefined;
|
|
15856
|
+
isMobile?: boolean | undefined;
|
|
15763
15857
|
}[] & ({
|
|
15764
15858
|
id?: string | undefined;
|
|
15765
15859
|
username?: string | undefined;
|
|
@@ -15780,6 +15874,7 @@ export declare const AllUserClans: {
|
|
|
15780
15874
|
apple_id?: string | undefined;
|
|
15781
15875
|
about_me?: string | undefined;
|
|
15782
15876
|
join_time?: Date | undefined;
|
|
15877
|
+
isMobile?: boolean | undefined;
|
|
15783
15878
|
} & {
|
|
15784
15879
|
id?: string | undefined;
|
|
15785
15880
|
username?: string | undefined;
|
|
@@ -15800,6 +15895,7 @@ export declare const AllUserClans: {
|
|
|
15800
15895
|
apple_id?: string | undefined;
|
|
15801
15896
|
about_me?: string | undefined;
|
|
15802
15897
|
join_time?: Date | undefined;
|
|
15898
|
+
isMobile?: boolean | undefined;
|
|
15803
15899
|
} & { [K in Exclude<keyof I["users"][number], keyof User>]: never; })[] & { [K_1 in Exclude<keyof I["users"], keyof {
|
|
15804
15900
|
id?: string | undefined;
|
|
15805
15901
|
username?: string | undefined;
|
|
@@ -15820,6 +15916,7 @@ export declare const AllUserClans: {
|
|
|
15820
15916
|
apple_id?: string | undefined;
|
|
15821
15917
|
about_me?: string | undefined;
|
|
15822
15918
|
join_time?: Date | undefined;
|
|
15919
|
+
isMobile?: boolean | undefined;
|
|
15823
15920
|
}[]>]: never; }) | undefined;
|
|
15824
15921
|
} & { [K_2 in Exclude<keyof I, "users">]: never; }>(base?: I | undefined): AllUserClans;
|
|
15825
15922
|
fromPartial<I_1 extends {
|
|
@@ -15843,6 +15940,7 @@ export declare const AllUserClans: {
|
|
|
15843
15940
|
apple_id?: string | undefined;
|
|
15844
15941
|
about_me?: string | undefined;
|
|
15845
15942
|
join_time?: Date | undefined;
|
|
15943
|
+
isMobile?: boolean | undefined;
|
|
15846
15944
|
}[] | undefined;
|
|
15847
15945
|
} & {
|
|
15848
15946
|
users?: ({
|
|
@@ -15865,6 +15963,7 @@ export declare const AllUserClans: {
|
|
|
15865
15963
|
apple_id?: string | undefined;
|
|
15866
15964
|
about_me?: string | undefined;
|
|
15867
15965
|
join_time?: Date | undefined;
|
|
15966
|
+
isMobile?: boolean | undefined;
|
|
15868
15967
|
}[] & ({
|
|
15869
15968
|
id?: string | undefined;
|
|
15870
15969
|
username?: string | undefined;
|
|
@@ -15885,6 +15984,7 @@ export declare const AllUserClans: {
|
|
|
15885
15984
|
apple_id?: string | undefined;
|
|
15886
15985
|
about_me?: string | undefined;
|
|
15887
15986
|
join_time?: Date | undefined;
|
|
15987
|
+
isMobile?: boolean | undefined;
|
|
15888
15988
|
} & {
|
|
15889
15989
|
id?: string | undefined;
|
|
15890
15990
|
username?: string | undefined;
|
|
@@ -15905,6 +16005,7 @@ export declare const AllUserClans: {
|
|
|
15905
16005
|
apple_id?: string | undefined;
|
|
15906
16006
|
about_me?: string | undefined;
|
|
15907
16007
|
join_time?: Date | undefined;
|
|
16008
|
+
isMobile?: boolean | undefined;
|
|
15908
16009
|
} & { [K_3 in Exclude<keyof I_1["users"][number], keyof User>]: never; })[] & { [K_4 in Exclude<keyof I_1["users"], keyof {
|
|
15909
16010
|
id?: string | undefined;
|
|
15910
16011
|
username?: string | undefined;
|
|
@@ -15925,6 +16026,7 @@ export declare const AllUserClans: {
|
|
|
15925
16026
|
apple_id?: string | undefined;
|
|
15926
16027
|
about_me?: string | undefined;
|
|
15927
16028
|
join_time?: Date | undefined;
|
|
16029
|
+
isMobile?: boolean | undefined;
|
|
15928
16030
|
}[]>]: never; }) | undefined;
|
|
15929
16031
|
} & { [K_5 in Exclude<keyof I_1, "users">]: never; }>(object: I_1): AllUserClans;
|
|
15930
16032
|
};
|
|
@@ -17590,6 +17692,90 @@ export declare const ChannelCanvasDetailResponse: {
|
|
|
17590
17692
|
is_default?: boolean | undefined;
|
|
17591
17693
|
} & { [K_1 in Exclude<keyof I_1, keyof ChannelCanvasDetailResponse>]: never; }>(object: I_1): ChannelCanvasDetailResponse;
|
|
17592
17694
|
};
|
|
17695
|
+
export declare const AddFavoriteChannelRequest: {
|
|
17696
|
+
encode(message: AddFavoriteChannelRequest, writer?: _m0.Writer): _m0.Writer;
|
|
17697
|
+
decode(input: _m0.Reader | Uint8Array, length?: number): AddFavoriteChannelRequest;
|
|
17698
|
+
fromJSON(object: any): AddFavoriteChannelRequest;
|
|
17699
|
+
toJSON(message: AddFavoriteChannelRequest): unknown;
|
|
17700
|
+
create<I extends {
|
|
17701
|
+
channel_id?: string | undefined;
|
|
17702
|
+
clan_id?: string | undefined;
|
|
17703
|
+
} & {
|
|
17704
|
+
channel_id?: string | undefined;
|
|
17705
|
+
clan_id?: string | undefined;
|
|
17706
|
+
} & { [K in Exclude<keyof I, keyof AddFavoriteChannelRequest>]: never; }>(base?: I | undefined): AddFavoriteChannelRequest;
|
|
17707
|
+
fromPartial<I_1 extends {
|
|
17708
|
+
channel_id?: string | undefined;
|
|
17709
|
+
clan_id?: string | undefined;
|
|
17710
|
+
} & {
|
|
17711
|
+
channel_id?: string | undefined;
|
|
17712
|
+
clan_id?: string | undefined;
|
|
17713
|
+
} & { [K_1 in Exclude<keyof I_1, keyof AddFavoriteChannelRequest>]: never; }>(object: I_1): AddFavoriteChannelRequest;
|
|
17714
|
+
};
|
|
17715
|
+
export declare const RemoveFavoriteChannelRequest: {
|
|
17716
|
+
encode(message: RemoveFavoriteChannelRequest, writer?: _m0.Writer): _m0.Writer;
|
|
17717
|
+
decode(input: _m0.Reader | Uint8Array, length?: number): RemoveFavoriteChannelRequest;
|
|
17718
|
+
fromJSON(object: any): RemoveFavoriteChannelRequest;
|
|
17719
|
+
toJSON(message: RemoveFavoriteChannelRequest): unknown;
|
|
17720
|
+
create<I extends {
|
|
17721
|
+
channel_id?: string | undefined;
|
|
17722
|
+
} & {
|
|
17723
|
+
channel_id?: string | undefined;
|
|
17724
|
+
} & { [K in Exclude<keyof I, "channel_id">]: never; }>(base?: I | undefined): RemoveFavoriteChannelRequest;
|
|
17725
|
+
fromPartial<I_1 extends {
|
|
17726
|
+
channel_id?: string | undefined;
|
|
17727
|
+
} & {
|
|
17728
|
+
channel_id?: string | undefined;
|
|
17729
|
+
} & { [K_1 in Exclude<keyof I_1, "channel_id">]: never; }>(object: I_1): RemoveFavoriteChannelRequest;
|
|
17730
|
+
};
|
|
17731
|
+
export declare const AddFavoriteChannelResponse: {
|
|
17732
|
+
encode(message: AddFavoriteChannelResponse, writer?: _m0.Writer): _m0.Writer;
|
|
17733
|
+
decode(input: _m0.Reader | Uint8Array, length?: number): AddFavoriteChannelResponse;
|
|
17734
|
+
fromJSON(object: any): AddFavoriteChannelResponse;
|
|
17735
|
+
toJSON(message: AddFavoriteChannelResponse): unknown;
|
|
17736
|
+
create<I extends {
|
|
17737
|
+
channel_id?: string | undefined;
|
|
17738
|
+
} & {
|
|
17739
|
+
channel_id?: string | undefined;
|
|
17740
|
+
} & { [K in Exclude<keyof I, "channel_id">]: never; }>(base?: I | undefined): AddFavoriteChannelResponse;
|
|
17741
|
+
fromPartial<I_1 extends {
|
|
17742
|
+
channel_id?: string | undefined;
|
|
17743
|
+
} & {
|
|
17744
|
+
channel_id?: string | undefined;
|
|
17745
|
+
} & { [K_1 in Exclude<keyof I_1, "channel_id">]: never; }>(object: I_1): AddFavoriteChannelResponse;
|
|
17746
|
+
};
|
|
17747
|
+
export declare const ListFavoriteChannelRequest: {
|
|
17748
|
+
encode(message: ListFavoriteChannelRequest, writer?: _m0.Writer): _m0.Writer;
|
|
17749
|
+
decode(input: _m0.Reader | Uint8Array, length?: number): ListFavoriteChannelRequest;
|
|
17750
|
+
fromJSON(object: any): ListFavoriteChannelRequest;
|
|
17751
|
+
toJSON(message: ListFavoriteChannelRequest): unknown;
|
|
17752
|
+
create<I extends {
|
|
17753
|
+
clan_id?: string | undefined;
|
|
17754
|
+
} & {
|
|
17755
|
+
clan_id?: string | undefined;
|
|
17756
|
+
} & { [K in Exclude<keyof I, "clan_id">]: never; }>(base?: I | undefined): ListFavoriteChannelRequest;
|
|
17757
|
+
fromPartial<I_1 extends {
|
|
17758
|
+
clan_id?: string | undefined;
|
|
17759
|
+
} & {
|
|
17760
|
+
clan_id?: string | undefined;
|
|
17761
|
+
} & { [K_1 in Exclude<keyof I_1, "clan_id">]: never; }>(object: I_1): ListFavoriteChannelRequest;
|
|
17762
|
+
};
|
|
17763
|
+
export declare const ListFavoriteChannelResponse: {
|
|
17764
|
+
encode(message: ListFavoriteChannelResponse, writer?: _m0.Writer): _m0.Writer;
|
|
17765
|
+
decode(input: _m0.Reader | Uint8Array, length?: number): ListFavoriteChannelResponse;
|
|
17766
|
+
fromJSON(object: any): ListFavoriteChannelResponse;
|
|
17767
|
+
toJSON(message: ListFavoriteChannelResponse): unknown;
|
|
17768
|
+
create<I extends {
|
|
17769
|
+
channel_ids?: string[] | undefined;
|
|
17770
|
+
} & {
|
|
17771
|
+
channel_ids?: (string[] & string[] & { [K in Exclude<keyof I["channel_ids"], keyof string[]>]: never; }) | undefined;
|
|
17772
|
+
} & { [K_1 in Exclude<keyof I, "channel_ids">]: never; }>(base?: I | undefined): ListFavoriteChannelResponse;
|
|
17773
|
+
fromPartial<I_1 extends {
|
|
17774
|
+
channel_ids?: string[] | undefined;
|
|
17775
|
+
} & {
|
|
17776
|
+
channel_ids?: (string[] & string[] & { [K_2 in Exclude<keyof I_1["channel_ids"], keyof string[]>]: never; }) | undefined;
|
|
17777
|
+
} & { [K_3 in Exclude<keyof I_1, "channel_ids">]: never; }>(object: I_1): ListFavoriteChannelResponse;
|
|
17778
|
+
};
|
|
17593
17779
|
type Builtin = Date | Function | Uint8Array | string | number | boolean | undefined;
|
|
17594
17780
|
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 {} ? {
|
|
17595
17781
|
[K in keyof T]?: DeepPartial<T[K]>;
|
package/package.json
CHANGED