mezon-js-protobuf 1.8.91 → 1.8.92
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 +515 -961
- package/dist/mezon-js/api/api.d.ts +54 -252
- package/dist/mezon-js-protobuf/api/api.d.ts +54 -252
- package/dist/mezon-js-protobuf/rtapi/realtime.d.ts +690 -1012
- package/dist/mezon-js-protobuf.cjs.js +232 -612
- package/dist/mezon-js-protobuf.esm.mjs +232 -612
- package/package.json +1 -1
- package/rtapi/realtime.ts +23 -57
|
@@ -107,7 +107,7 @@ export interface SessionRefreshRequest {
|
|
|
107
107
|
[key: string]: string;
|
|
108
108
|
};
|
|
109
109
|
/** Whether to enable "Remember Me" for extended session duration. */
|
|
110
|
-
is_remember: boolean
|
|
110
|
+
is_remember: boolean;
|
|
111
111
|
}
|
|
112
112
|
export interface SessionRefreshRequest_VarsEntry {
|
|
113
113
|
key: string;
|
|
@@ -552,18 +552,18 @@ export interface ListChannelMessagesRequest {
|
|
|
552
552
|
/** The current message ID. */
|
|
553
553
|
message_id: string;
|
|
554
554
|
/** Max number of records to return. Between 1 and 100. */
|
|
555
|
-
limit: number
|
|
555
|
+
limit: number;
|
|
556
556
|
/** True if listing should be older messages to newer, false if reverse. */
|
|
557
|
-
direction: number
|
|
557
|
+
direction: number;
|
|
558
558
|
/** */
|
|
559
559
|
topic_id: string;
|
|
560
560
|
}
|
|
561
561
|
/** List friends for a user. */
|
|
562
562
|
export interface ListFriendsRequest {
|
|
563
563
|
/** Max number of records to return. Between 1 and 100. */
|
|
564
|
-
limit: number
|
|
564
|
+
limit: number;
|
|
565
565
|
/** The friend state to list. */
|
|
566
|
-
state: number
|
|
566
|
+
state: number;
|
|
567
567
|
/** An optional next page cursor. */
|
|
568
568
|
cursor: string;
|
|
569
569
|
}
|
|
@@ -574,22 +574,22 @@ export interface ListGroupsRequest {
|
|
|
574
574
|
/** Optional pagination cursor. */
|
|
575
575
|
cursor: string;
|
|
576
576
|
/** Max number of groups to return. Between 1 and 100. */
|
|
577
|
-
limit: number
|
|
577
|
+
limit: number;
|
|
578
578
|
/** Language tag filter */
|
|
579
579
|
lang_tag: string;
|
|
580
580
|
/** Number of group members */
|
|
581
|
-
members: number
|
|
581
|
+
members: number;
|
|
582
582
|
/** Optional Open/Closed filter. */
|
|
583
|
-
open: boolean
|
|
583
|
+
open: boolean;
|
|
584
584
|
}
|
|
585
585
|
/** List all users that are part of a group. */
|
|
586
586
|
export interface ListGroupUsersRequest {
|
|
587
587
|
/** The group ID to list from. */
|
|
588
588
|
group_id: string;
|
|
589
589
|
/** Max number of records to return. Between 1 and 100. */
|
|
590
|
-
limit: number
|
|
590
|
+
limit: number;
|
|
591
591
|
/** The group user state to list. */
|
|
592
|
-
state: number
|
|
592
|
+
state: number;
|
|
593
593
|
/** An optional next page cursor. */
|
|
594
594
|
cursor: string;
|
|
595
595
|
}
|
|
@@ -602,9 +602,9 @@ export interface ListChannelUsersRequest {
|
|
|
602
602
|
/** The channel type */
|
|
603
603
|
channel_type: number;
|
|
604
604
|
/** Max number of records to return. Between 1 and 100. */
|
|
605
|
-
limit: number
|
|
605
|
+
limit: number;
|
|
606
606
|
/** The group user state to list. */
|
|
607
|
-
state: number
|
|
607
|
+
state: number;
|
|
608
608
|
/** An optional next page cursor. */
|
|
609
609
|
cursor: string;
|
|
610
610
|
}
|
|
@@ -635,7 +635,7 @@ export interface ListClanUsersRequest {
|
|
|
635
635
|
/** Get a list of unexpired notifications. */
|
|
636
636
|
export interface ListNotificationsRequest {
|
|
637
637
|
/** The number of notifications to get. Between 1 and 100. */
|
|
638
|
-
limit: number
|
|
638
|
+
limit: number;
|
|
639
639
|
/** The clan id */
|
|
640
640
|
clan_id: string;
|
|
641
641
|
/** The current notification Id. */
|
|
@@ -643,16 +643,16 @@ export interface ListNotificationsRequest {
|
|
|
643
643
|
/** The category (1: mentions, 2: mesages, 3: for you). */
|
|
644
644
|
category: number;
|
|
645
645
|
/** True if listing should be older notifications to newer, false if reverse. */
|
|
646
|
-
direction: number
|
|
646
|
+
direction: number;
|
|
647
647
|
}
|
|
648
648
|
/** List the groups a user is part of, and their relationship to each. */
|
|
649
649
|
export interface ListUserGroupsRequest {
|
|
650
650
|
/** ID of the user. */
|
|
651
651
|
user_id: string;
|
|
652
652
|
/** Max number of records to return. Between 1 and 100. */
|
|
653
|
-
limit: number
|
|
653
|
+
limit: number;
|
|
654
654
|
/** The user group state to list. */
|
|
655
|
-
state: number
|
|
655
|
+
state: number;
|
|
656
656
|
/** An optional next page cursor. */
|
|
657
657
|
cursor: string;
|
|
658
658
|
}
|
|
@@ -791,7 +791,7 @@ export interface UpdateGroupRequest {
|
|
|
791
791
|
/** Avatar URL. */
|
|
792
792
|
avatar_url: string | undefined;
|
|
793
793
|
/** Open is true if anyone should be allowed to join, or false if joins must be approved by a group admin. */
|
|
794
|
-
open: boolean
|
|
794
|
+
open: boolean;
|
|
795
795
|
}
|
|
796
796
|
export interface UpdateCategoryDescRequest {
|
|
797
797
|
/** The ID of the group to update. */
|
|
@@ -966,9 +966,9 @@ export interface DeleteClanDescRequest {
|
|
|
966
966
|
/** List (and optionally filter) channels. */
|
|
967
967
|
export interface ListClanDescRequest {
|
|
968
968
|
/** Max number of records to return. Between 1 and 100. */
|
|
969
|
-
limit: number
|
|
969
|
+
limit: number;
|
|
970
970
|
/** The friend state to list. */
|
|
971
|
-
state: number
|
|
971
|
+
state: number;
|
|
972
972
|
/** Cursor to start from */
|
|
973
973
|
cursor: string;
|
|
974
974
|
}
|
|
@@ -1118,9 +1118,9 @@ export interface CategoryDescList {
|
|
|
1118
1118
|
/** List (and optionally filter) channels. */
|
|
1119
1119
|
export interface ListCategoryDescsRequest {
|
|
1120
1120
|
/** Max number of records to return. Between 1 and 100. */
|
|
1121
|
-
limit: number
|
|
1121
|
+
limit: number;
|
|
1122
1122
|
/** The friend state to list. */
|
|
1123
|
-
state: number
|
|
1123
|
+
state: number;
|
|
1124
1124
|
/** Cursor to start from */
|
|
1125
1125
|
cursor: string;
|
|
1126
1126
|
}
|
|
@@ -1213,9 +1213,9 @@ export interface ChannelDescListNoPool {
|
|
|
1213
1213
|
}
|
|
1214
1214
|
export interface ListThreadRequest {
|
|
1215
1215
|
/** Max number of records to return. Between 1 and 100. */
|
|
1216
|
-
limit: number
|
|
1216
|
+
limit: number;
|
|
1217
1217
|
/** The channel state to list. */
|
|
1218
|
-
state: number
|
|
1218
|
+
state: number;
|
|
1219
1219
|
/** The clan of this channel */
|
|
1220
1220
|
clan_id: string;
|
|
1221
1221
|
/** channel id */
|
|
@@ -1223,14 +1223,14 @@ export interface ListThreadRequest {
|
|
|
1223
1223
|
/** thread id */
|
|
1224
1224
|
thread_id: string;
|
|
1225
1225
|
/** Number of page */
|
|
1226
|
-
page: number
|
|
1226
|
+
page: number;
|
|
1227
1227
|
}
|
|
1228
1228
|
/** List (and optionally filter) channels. */
|
|
1229
1229
|
export interface ListChannelDescsRequest {
|
|
1230
1230
|
/** Max number of records to return. Between 1 and 100. */
|
|
1231
|
-
limit: number
|
|
1231
|
+
limit: number;
|
|
1232
1232
|
/** The channel state to list. */
|
|
1233
|
-
state: number
|
|
1233
|
+
state: number;
|
|
1234
1234
|
/** Cursor to start from */
|
|
1235
1235
|
cursor: string;
|
|
1236
1236
|
/** The clan of this channel */
|
|
@@ -1541,34 +1541,6 @@ export interface SetMuteRequest {
|
|
|
1541
1541
|
active: number;
|
|
1542
1542
|
clan_id: string;
|
|
1543
1543
|
}
|
|
1544
|
-
export interface HashtagDmListRequest {
|
|
1545
|
-
/** user Id */
|
|
1546
|
-
user_id: string[];
|
|
1547
|
-
/** Max number of records to return. Between 1 and 100. */
|
|
1548
|
-
limit: number | undefined;
|
|
1549
|
-
}
|
|
1550
|
-
export interface HashtagDmList {
|
|
1551
|
-
hashtag_dm: HashtagDm[];
|
|
1552
|
-
}
|
|
1553
|
-
/** hashtagDM */
|
|
1554
|
-
export interface HashtagDm {
|
|
1555
|
-
/** The channel id. */
|
|
1556
|
-
channel_id: string;
|
|
1557
|
-
/** The channel lable */
|
|
1558
|
-
channel_label: string;
|
|
1559
|
-
/** The clan of this channel */
|
|
1560
|
-
clan_id: string;
|
|
1561
|
-
/** The clan name */
|
|
1562
|
-
clan_name: string;
|
|
1563
|
-
/** */
|
|
1564
|
-
meeting_code: string;
|
|
1565
|
-
/** */
|
|
1566
|
-
type: number;
|
|
1567
|
-
/** */
|
|
1568
|
-
channel_private: number;
|
|
1569
|
-
/** */
|
|
1570
|
-
parent_id: string;
|
|
1571
|
-
}
|
|
1572
1544
|
export interface NotificationChannelCategorySettingList {
|
|
1573
1545
|
notification_channel_category_settings_list: NotificationChannelCategorySetting[];
|
|
1574
1546
|
}
|
|
@@ -1616,7 +1588,7 @@ export interface ListPermissionsRequest {
|
|
|
1616
1588
|
export interface ListRoleUsersRequest {
|
|
1617
1589
|
role_id: string;
|
|
1618
1590
|
/** Max number of records to return. Between 1 and 100. */
|
|
1619
|
-
limit: number
|
|
1591
|
+
limit: number;
|
|
1620
1592
|
/** An optional next page cursor. */
|
|
1621
1593
|
cursor: string;
|
|
1622
1594
|
}
|
|
@@ -1695,7 +1667,7 @@ export interface CreateEventRequest {
|
|
|
1695
1667
|
repeat_type: number;
|
|
1696
1668
|
creator_id: string;
|
|
1697
1669
|
user_id: string;
|
|
1698
|
-
is_private: boolean
|
|
1670
|
+
is_private: boolean;
|
|
1699
1671
|
meet_room: GenerateMezonMeetResponse | undefined;
|
|
1700
1672
|
}
|
|
1701
1673
|
/** update a event within clan. */
|
|
@@ -1745,8 +1717,8 @@ export interface UpdateRoleRequest {
|
|
|
1745
1717
|
color: string | undefined;
|
|
1746
1718
|
role_icon: string | undefined;
|
|
1747
1719
|
description: string | undefined;
|
|
1748
|
-
display_online: number
|
|
1749
|
-
allow_mention: number
|
|
1720
|
+
display_online: number;
|
|
1721
|
+
allow_mention: number;
|
|
1750
1722
|
/** The users to add. */
|
|
1751
1723
|
add_user_ids: string[];
|
|
1752
1724
|
/** The permissions to add. */
|
|
@@ -1796,9 +1768,9 @@ export interface UploadAttachmentRequest {
|
|
|
1796
1768
|
}
|
|
1797
1769
|
export interface ListMessageMentionRequest {
|
|
1798
1770
|
/** Max number of records to return. Between 1 and 100. */
|
|
1799
|
-
limit: number
|
|
1771
|
+
limit: number;
|
|
1800
1772
|
/** True if listing should be older messages to newer, false if reverse. */
|
|
1801
|
-
forward: boolean
|
|
1773
|
+
forward: boolean;
|
|
1802
1774
|
/** A pagination cursor, if any. */
|
|
1803
1775
|
cursor: string;
|
|
1804
1776
|
}
|
|
@@ -1811,9 +1783,9 @@ export interface UploadAttachment {
|
|
|
1811
1783
|
export interface SearchMessageRequest {
|
|
1812
1784
|
filters: FilterParam[];
|
|
1813
1785
|
/** Offset value */
|
|
1814
|
-
from: number
|
|
1786
|
+
from: number;
|
|
1815
1787
|
/** Page size */
|
|
1816
|
-
size: number
|
|
1788
|
+
size: number;
|
|
1817
1789
|
/** Sort information */
|
|
1818
1790
|
sorts: SortParam[];
|
|
1819
1791
|
}
|
|
@@ -1936,12 +1908,12 @@ export interface ClanSticker {
|
|
|
1936
1908
|
}
|
|
1937
1909
|
export interface AllUsersAddChannelRequest {
|
|
1938
1910
|
channel_id: string;
|
|
1939
|
-
limit: number
|
|
1911
|
+
limit: number;
|
|
1940
1912
|
}
|
|
1941
1913
|
export interface AllUsersAddChannelResponse {
|
|
1942
1914
|
channel_id: string;
|
|
1943
1915
|
user_ids: string[];
|
|
1944
|
-
limit: number
|
|
1916
|
+
limit: number;
|
|
1945
1917
|
usernames: string[];
|
|
1946
1918
|
display_names: string[];
|
|
1947
1919
|
avatars: string[];
|
|
@@ -2098,7 +2070,7 @@ export interface AppDeleteRequest {
|
|
|
2098
2070
|
/** The unique identifier of the app. */
|
|
2099
2071
|
id: string;
|
|
2100
2072
|
/** Record the app deletion - used for GDPR compliance. */
|
|
2101
|
-
record_deletion: boolean
|
|
2073
|
+
record_deletion: boolean;
|
|
2102
2074
|
}
|
|
2103
2075
|
/** A list of apps. */
|
|
2104
2076
|
export interface AppList {
|
|
@@ -2250,7 +2222,7 @@ export interface StreamHttpCallbackRequest {
|
|
|
2250
2222
|
token: string;
|
|
2251
2223
|
}
|
|
2252
2224
|
export interface StreamHttpCallbackResponse {
|
|
2253
|
-
code: number
|
|
2225
|
+
code: number;
|
|
2254
2226
|
msg: string;
|
|
2255
2227
|
}
|
|
2256
2228
|
/** A list of users belonging to a channel, along with their role. */
|
|
@@ -2394,17 +2366,17 @@ export interface ChannelSettingListRequest {
|
|
|
2394
2366
|
/** category id */
|
|
2395
2367
|
category_id: string;
|
|
2396
2368
|
/** is private channel */
|
|
2397
|
-
private_channel: number
|
|
2369
|
+
private_channel: number;
|
|
2398
2370
|
/** is active */
|
|
2399
|
-
active: number
|
|
2371
|
+
active: number;
|
|
2400
2372
|
/** status */
|
|
2401
|
-
status: number
|
|
2373
|
+
status: number;
|
|
2402
2374
|
/** type */
|
|
2403
|
-
type: number
|
|
2375
|
+
type: number;
|
|
2404
2376
|
/** limit */
|
|
2405
|
-
limit: number
|
|
2377
|
+
limit: number;
|
|
2406
2378
|
/** page */
|
|
2407
|
-
page: number
|
|
2379
|
+
page: number;
|
|
2408
2380
|
/** channel label */
|
|
2409
2381
|
channel_label: string;
|
|
2410
2382
|
}
|
|
@@ -2486,9 +2458,9 @@ export interface ChannelCanvasListRequest {
|
|
|
2486
2458
|
/** channel id */
|
|
2487
2459
|
channel_id: string;
|
|
2488
2460
|
/** limit */
|
|
2489
|
-
limit: number
|
|
2461
|
+
limit: number;
|
|
2490
2462
|
/** page */
|
|
2491
|
-
page: number
|
|
2463
|
+
page: number;
|
|
2492
2464
|
/** */
|
|
2493
2465
|
cursor: string;
|
|
2494
2466
|
}
|
|
@@ -2603,7 +2575,7 @@ export interface ConfirmLoginRequest {
|
|
|
2603
2575
|
/** loginId */
|
|
2604
2576
|
login_id: string;
|
|
2605
2577
|
/** Whether to enable "Remember Me" for extended session duration. */
|
|
2606
|
-
is_remember: boolean
|
|
2578
|
+
is_remember: boolean;
|
|
2607
2579
|
}
|
|
2608
2580
|
export interface PubKey {
|
|
2609
2581
|
encr: Uint8Array;
|
|
@@ -2681,11 +2653,11 @@ export interface ListOnboardingRequest {
|
|
|
2681
2653
|
/** clan id */
|
|
2682
2654
|
clan_id: string;
|
|
2683
2655
|
/** guide_type: 0 = greeting, 1 = rule, 2 = task, 3 = question */
|
|
2684
|
-
guide_type: number
|
|
2656
|
+
guide_type: number;
|
|
2685
2657
|
/** limit */
|
|
2686
|
-
limit: number
|
|
2658
|
+
limit: number;
|
|
2687
2659
|
/** page */
|
|
2688
|
-
page: number
|
|
2660
|
+
page: number;
|
|
2689
2661
|
}
|
|
2690
2662
|
export interface ListOnboardingResponse {
|
|
2691
2663
|
list_onboarding: OnboardingItem[];
|
|
@@ -2752,7 +2724,7 @@ export interface UpdateOnboardingRequest {
|
|
|
2752
2724
|
/** clan id */
|
|
2753
2725
|
clan_id: string;
|
|
2754
2726
|
/** task type */
|
|
2755
|
-
task_type: number
|
|
2727
|
+
task_type: number;
|
|
2756
2728
|
/** channel id */
|
|
2757
2729
|
channel_id: string;
|
|
2758
2730
|
/** title */
|
|
@@ -2875,15 +2847,15 @@ export interface ListOnboardingStepRequest {
|
|
|
2875
2847
|
/** clan id. */
|
|
2876
2848
|
clan_id: string;
|
|
2877
2849
|
/** limit */
|
|
2878
|
-
limit: number
|
|
2850
|
+
limit: number;
|
|
2879
2851
|
/** page */
|
|
2880
|
-
page: number
|
|
2852
|
+
page: number;
|
|
2881
2853
|
}
|
|
2882
2854
|
export interface UpdateOnboardingStepRequest {
|
|
2883
2855
|
/** clan id. */
|
|
2884
2856
|
clan_id: string;
|
|
2885
2857
|
/** onboarding step. */
|
|
2886
|
-
onboarding_step: number
|
|
2858
|
+
onboarding_step: number;
|
|
2887
2859
|
}
|
|
2888
2860
|
export interface SdTopic {
|
|
2889
2861
|
id: string;
|
|
@@ -12233,176 +12205,6 @@ export declare const SetMuteRequest: {
|
|
|
12233
12205
|
clan_id?: string | undefined;
|
|
12234
12206
|
} & { [K_1 in Exclude<keyof I_1, keyof SetMuteRequest>]: never; }>(object: I_1): SetMuteRequest;
|
|
12235
12207
|
};
|
|
12236
|
-
export declare const HashtagDmListRequest: {
|
|
12237
|
-
encode(message: HashtagDmListRequest, writer?: _m0.Writer): _m0.Writer;
|
|
12238
|
-
decode(input: _m0.Reader | Uint8Array, length?: number): HashtagDmListRequest;
|
|
12239
|
-
fromJSON(object: any): HashtagDmListRequest;
|
|
12240
|
-
toJSON(message: HashtagDmListRequest): unknown;
|
|
12241
|
-
create<I extends {
|
|
12242
|
-
user_id?: string[] | undefined;
|
|
12243
|
-
limit?: number | undefined;
|
|
12244
|
-
} & {
|
|
12245
|
-
user_id?: (string[] & string[] & { [K in Exclude<keyof I["user_id"], keyof string[]>]: never; }) | undefined;
|
|
12246
|
-
limit?: number | undefined;
|
|
12247
|
-
} & { [K_1 in Exclude<keyof I, keyof HashtagDmListRequest>]: never; }>(base?: I | undefined): HashtagDmListRequest;
|
|
12248
|
-
fromPartial<I_1 extends {
|
|
12249
|
-
user_id?: string[] | undefined;
|
|
12250
|
-
limit?: number | undefined;
|
|
12251
|
-
} & {
|
|
12252
|
-
user_id?: (string[] & string[] & { [K_2 in Exclude<keyof I_1["user_id"], keyof string[]>]: never; }) | undefined;
|
|
12253
|
-
limit?: number | undefined;
|
|
12254
|
-
} & { [K_3 in Exclude<keyof I_1, keyof HashtagDmListRequest>]: never; }>(object: I_1): HashtagDmListRequest;
|
|
12255
|
-
};
|
|
12256
|
-
export declare const HashtagDmList: {
|
|
12257
|
-
encode(message: HashtagDmList, writer?: _m0.Writer): _m0.Writer;
|
|
12258
|
-
decode(input: _m0.Reader | Uint8Array, length?: number): HashtagDmList;
|
|
12259
|
-
fromJSON(object: any): HashtagDmList;
|
|
12260
|
-
toJSON(message: HashtagDmList): unknown;
|
|
12261
|
-
create<I extends {
|
|
12262
|
-
hashtag_dm?: {
|
|
12263
|
-
channel_id?: string | undefined;
|
|
12264
|
-
channel_label?: string | undefined;
|
|
12265
|
-
clan_id?: string | undefined;
|
|
12266
|
-
clan_name?: string | undefined;
|
|
12267
|
-
meeting_code?: string | undefined;
|
|
12268
|
-
type?: number | undefined;
|
|
12269
|
-
channel_private?: number | undefined;
|
|
12270
|
-
parent_id?: string | undefined;
|
|
12271
|
-
}[] | undefined;
|
|
12272
|
-
} & {
|
|
12273
|
-
hashtag_dm?: ({
|
|
12274
|
-
channel_id?: string | undefined;
|
|
12275
|
-
channel_label?: string | undefined;
|
|
12276
|
-
clan_id?: string | undefined;
|
|
12277
|
-
clan_name?: string | undefined;
|
|
12278
|
-
meeting_code?: string | undefined;
|
|
12279
|
-
type?: number | undefined;
|
|
12280
|
-
channel_private?: number | undefined;
|
|
12281
|
-
parent_id?: string | undefined;
|
|
12282
|
-
}[] & ({
|
|
12283
|
-
channel_id?: string | undefined;
|
|
12284
|
-
channel_label?: string | undefined;
|
|
12285
|
-
clan_id?: string | undefined;
|
|
12286
|
-
clan_name?: string | undefined;
|
|
12287
|
-
meeting_code?: string | undefined;
|
|
12288
|
-
type?: number | undefined;
|
|
12289
|
-
channel_private?: number | undefined;
|
|
12290
|
-
parent_id?: string | undefined;
|
|
12291
|
-
} & {
|
|
12292
|
-
channel_id?: string | undefined;
|
|
12293
|
-
channel_label?: string | undefined;
|
|
12294
|
-
clan_id?: string | undefined;
|
|
12295
|
-
clan_name?: string | undefined;
|
|
12296
|
-
meeting_code?: string | undefined;
|
|
12297
|
-
type?: number | undefined;
|
|
12298
|
-
channel_private?: number | undefined;
|
|
12299
|
-
parent_id?: string | undefined;
|
|
12300
|
-
} & { [K in Exclude<keyof I["hashtag_dm"][number], keyof HashtagDm>]: never; })[] & { [K_1 in Exclude<keyof I["hashtag_dm"], keyof {
|
|
12301
|
-
channel_id?: string | undefined;
|
|
12302
|
-
channel_label?: string | undefined;
|
|
12303
|
-
clan_id?: string | undefined;
|
|
12304
|
-
clan_name?: string | undefined;
|
|
12305
|
-
meeting_code?: string | undefined;
|
|
12306
|
-
type?: number | undefined;
|
|
12307
|
-
channel_private?: number | undefined;
|
|
12308
|
-
parent_id?: string | undefined;
|
|
12309
|
-
}[]>]: never; }) | undefined;
|
|
12310
|
-
} & { [K_2 in Exclude<keyof I, "hashtag_dm">]: never; }>(base?: I | undefined): HashtagDmList;
|
|
12311
|
-
fromPartial<I_1 extends {
|
|
12312
|
-
hashtag_dm?: {
|
|
12313
|
-
channel_id?: string | undefined;
|
|
12314
|
-
channel_label?: string | undefined;
|
|
12315
|
-
clan_id?: string | undefined;
|
|
12316
|
-
clan_name?: string | undefined;
|
|
12317
|
-
meeting_code?: string | undefined;
|
|
12318
|
-
type?: number | undefined;
|
|
12319
|
-
channel_private?: number | undefined;
|
|
12320
|
-
parent_id?: string | undefined;
|
|
12321
|
-
}[] | undefined;
|
|
12322
|
-
} & {
|
|
12323
|
-
hashtag_dm?: ({
|
|
12324
|
-
channel_id?: string | undefined;
|
|
12325
|
-
channel_label?: string | undefined;
|
|
12326
|
-
clan_id?: string | undefined;
|
|
12327
|
-
clan_name?: string | undefined;
|
|
12328
|
-
meeting_code?: string | undefined;
|
|
12329
|
-
type?: number | undefined;
|
|
12330
|
-
channel_private?: number | undefined;
|
|
12331
|
-
parent_id?: string | undefined;
|
|
12332
|
-
}[] & ({
|
|
12333
|
-
channel_id?: string | undefined;
|
|
12334
|
-
channel_label?: string | undefined;
|
|
12335
|
-
clan_id?: string | undefined;
|
|
12336
|
-
clan_name?: string | undefined;
|
|
12337
|
-
meeting_code?: string | undefined;
|
|
12338
|
-
type?: number | undefined;
|
|
12339
|
-
channel_private?: number | undefined;
|
|
12340
|
-
parent_id?: string | undefined;
|
|
12341
|
-
} & {
|
|
12342
|
-
channel_id?: string | undefined;
|
|
12343
|
-
channel_label?: string | undefined;
|
|
12344
|
-
clan_id?: string | undefined;
|
|
12345
|
-
clan_name?: string | undefined;
|
|
12346
|
-
meeting_code?: string | undefined;
|
|
12347
|
-
type?: number | undefined;
|
|
12348
|
-
channel_private?: number | undefined;
|
|
12349
|
-
parent_id?: string | undefined;
|
|
12350
|
-
} & { [K_3 in Exclude<keyof I_1["hashtag_dm"][number], keyof HashtagDm>]: never; })[] & { [K_4 in Exclude<keyof I_1["hashtag_dm"], keyof {
|
|
12351
|
-
channel_id?: string | undefined;
|
|
12352
|
-
channel_label?: string | undefined;
|
|
12353
|
-
clan_id?: string | undefined;
|
|
12354
|
-
clan_name?: string | undefined;
|
|
12355
|
-
meeting_code?: string | undefined;
|
|
12356
|
-
type?: number | undefined;
|
|
12357
|
-
channel_private?: number | undefined;
|
|
12358
|
-
parent_id?: string | undefined;
|
|
12359
|
-
}[]>]: never; }) | undefined;
|
|
12360
|
-
} & { [K_5 in Exclude<keyof I_1, "hashtag_dm">]: never; }>(object: I_1): HashtagDmList;
|
|
12361
|
-
};
|
|
12362
|
-
export declare const HashtagDm: {
|
|
12363
|
-
encode(message: HashtagDm, writer?: _m0.Writer): _m0.Writer;
|
|
12364
|
-
decode(input: _m0.Reader | Uint8Array, length?: number): HashtagDm;
|
|
12365
|
-
fromJSON(object: any): HashtagDm;
|
|
12366
|
-
toJSON(message: HashtagDm): unknown;
|
|
12367
|
-
create<I extends {
|
|
12368
|
-
channel_id?: string | undefined;
|
|
12369
|
-
channel_label?: string | undefined;
|
|
12370
|
-
clan_id?: string | undefined;
|
|
12371
|
-
clan_name?: string | undefined;
|
|
12372
|
-
meeting_code?: string | undefined;
|
|
12373
|
-
type?: number | undefined;
|
|
12374
|
-
channel_private?: number | undefined;
|
|
12375
|
-
parent_id?: string | undefined;
|
|
12376
|
-
} & {
|
|
12377
|
-
channel_id?: string | undefined;
|
|
12378
|
-
channel_label?: string | undefined;
|
|
12379
|
-
clan_id?: string | undefined;
|
|
12380
|
-
clan_name?: string | undefined;
|
|
12381
|
-
meeting_code?: string | undefined;
|
|
12382
|
-
type?: number | undefined;
|
|
12383
|
-
channel_private?: number | undefined;
|
|
12384
|
-
parent_id?: string | undefined;
|
|
12385
|
-
} & { [K in Exclude<keyof I, keyof HashtagDm>]: never; }>(base?: I | undefined): HashtagDm;
|
|
12386
|
-
fromPartial<I_1 extends {
|
|
12387
|
-
channel_id?: string | undefined;
|
|
12388
|
-
channel_label?: string | undefined;
|
|
12389
|
-
clan_id?: string | undefined;
|
|
12390
|
-
clan_name?: string | undefined;
|
|
12391
|
-
meeting_code?: string | undefined;
|
|
12392
|
-
type?: number | undefined;
|
|
12393
|
-
channel_private?: number | undefined;
|
|
12394
|
-
parent_id?: string | undefined;
|
|
12395
|
-
} & {
|
|
12396
|
-
channel_id?: string | undefined;
|
|
12397
|
-
channel_label?: string | undefined;
|
|
12398
|
-
clan_id?: string | undefined;
|
|
12399
|
-
clan_name?: string | undefined;
|
|
12400
|
-
meeting_code?: string | undefined;
|
|
12401
|
-
type?: number | undefined;
|
|
12402
|
-
channel_private?: number | undefined;
|
|
12403
|
-
parent_id?: string | undefined;
|
|
12404
|
-
} & { [K_1 in Exclude<keyof I_1, keyof HashtagDm>]: never; }>(object: I_1): HashtagDm;
|
|
12405
|
-
};
|
|
12406
12208
|
export declare const NotificationChannelCategorySettingList: {
|
|
12407
12209
|
encode(message: NotificationChannelCategorySettingList, writer?: _m0.Writer): _m0.Writer;
|
|
12408
12210
|
decode(input: _m0.Reader | Uint8Array, length?: number): NotificationChannelCategorySettingList;
|