mezon-sdk 2.7.59 → 2.7.60
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 +121 -111
- package/dist/cjs/api/api.js +73 -73
- package/dist/cjs/api/api.js.map +1 -1
- package/dist/cjs/client.d.ts +2 -2
- package/dist/cjs/client.js +6 -7
- package/dist/cjs/client.js.map +1 -1
- package/dist/cjs/interfaces/client.d.ts +1 -2
- package/dist/cjs/interfaces/client.js.map +1 -1
- package/dist/cjs/interfaces/socket.d.ts +7 -16
- package/dist/cjs/message-socket-events/user_channel_added.js +1 -1
- package/dist/cjs/message-socket-events/user_channel_added.js.map +1 -1
- package/dist/cjs/rtapi/realtime.d.ts +0 -102
- package/dist/cjs/rtapi/realtime.js +17 -158
- package/dist/cjs/rtapi/realtime.js.map +1 -1
- package/dist/cjs/socket.d.ts +8 -8
- package/dist/cjs/socket.js +16 -18
- package/dist/cjs/socket.js.map +1 -1
- package/dist/cjs/utils/generate_reply_message.d.ts +0 -1
- package/dist/cjs/utils/generate_reply_message.js.map +1 -1
- package/dist/cjs/utils/stack.js +1 -1
- package/dist/cjs/utils/stack.js.map +1 -1
- package/dist/esm/api/api.d.ts +121 -111
- package/dist/esm/api/api.js +71 -71
- package/dist/esm/api/api.js.map +1 -1
- package/dist/esm/client.d.ts +2 -2
- package/dist/esm/client.js +6 -7
- package/dist/esm/client.js.map +1 -1
- package/dist/esm/interfaces/client.d.ts +1 -2
- package/dist/esm/interfaces/client.js.map +1 -1
- package/dist/esm/interfaces/socket.d.ts +7 -16
- package/dist/esm/message-socket-events/user_channel_added.js +1 -1
- package/dist/esm/message-socket-events/user_channel_added.js.map +1 -1
- package/dist/esm/rtapi/realtime.d.ts +0 -102
- package/dist/esm/rtapi/realtime.js +7 -148
- package/dist/esm/rtapi/realtime.js.map +1 -1
- package/dist/esm/socket.d.ts +8 -8
- package/dist/esm/socket.js +16 -18
- package/dist/esm/socket.js.map +1 -1
- package/dist/esm/utils/generate_reply_message.d.ts +0 -1
- package/dist/esm/utils/generate_reply_message.js.map +1 -1
- package/dist/esm/utils/stack.js +1 -1
- package/dist/esm/utils/stack.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
|
@@ -473,8 +473,6 @@ export interface MessageReaction {
|
|
|
473
473
|
is_public: boolean;
|
|
474
474
|
/** The parent id to sent to. */
|
|
475
475
|
parent_id: string;
|
|
476
|
-
/** is parent public */
|
|
477
|
-
is_parent_public: boolean;
|
|
478
476
|
}
|
|
479
477
|
/** Message attachment */
|
|
480
478
|
export interface MessageAttachment {
|
|
@@ -1375,6 +1373,8 @@ export interface ChannelDescription {
|
|
|
1375
1373
|
clan_name: string;
|
|
1376
1374
|
/** app url */
|
|
1377
1375
|
app_url: string;
|
|
1376
|
+
/** channel all message */
|
|
1377
|
+
is_mute: boolean;
|
|
1378
1378
|
}
|
|
1379
1379
|
/** A list of channel description, usually a result of a list operation. */
|
|
1380
1380
|
export interface ChannelDescList {
|
|
@@ -2467,19 +2467,19 @@ export interface ChannelSettingItem {
|
|
|
2467
2467
|
/** channel id */
|
|
2468
2468
|
id: string;
|
|
2469
2469
|
/** creator id */
|
|
2470
|
-
|
|
2470
|
+
creator_id: string;
|
|
2471
2471
|
/** parentId */
|
|
2472
|
-
|
|
2472
|
+
parent_id: string;
|
|
2473
2473
|
/** label of channel */
|
|
2474
|
-
|
|
2474
|
+
channel_label: string;
|
|
2475
2475
|
/** category id */
|
|
2476
|
-
|
|
2476
|
+
category_id: string;
|
|
2477
2477
|
/** meeting code */
|
|
2478
|
-
|
|
2478
|
+
meeting_code: string;
|
|
2479
2479
|
/** channel private */
|
|
2480
|
-
|
|
2480
|
+
channel_private: number;
|
|
2481
2481
|
/** channel type */
|
|
2482
|
-
|
|
2482
|
+
channel_type: number;
|
|
2483
2483
|
/** is active */
|
|
2484
2484
|
active: number;
|
|
2485
2485
|
/** list user in channel */
|
|
@@ -4232,7 +4232,6 @@ export declare const MessageReaction: {
|
|
|
4232
4232
|
message_sender_id?: string | undefined;
|
|
4233
4233
|
is_public?: boolean | undefined;
|
|
4234
4234
|
parent_id?: string | undefined;
|
|
4235
|
-
is_parent_public?: boolean | undefined;
|
|
4236
4235
|
} & {
|
|
4237
4236
|
id?: string | undefined;
|
|
4238
4237
|
emoji_id?: string | undefined;
|
|
@@ -4249,7 +4248,6 @@ export declare const MessageReaction: {
|
|
|
4249
4248
|
message_sender_id?: string | undefined;
|
|
4250
4249
|
is_public?: boolean | undefined;
|
|
4251
4250
|
parent_id?: string | undefined;
|
|
4252
|
-
is_parent_public?: boolean | undefined;
|
|
4253
4251
|
} & { [K in Exclude<keyof I, keyof MessageReaction>]: never; }>(base?: I | undefined): MessageReaction;
|
|
4254
4252
|
fromPartial<I_1 extends {
|
|
4255
4253
|
id?: string | undefined;
|
|
@@ -4267,7 +4265,6 @@ export declare const MessageReaction: {
|
|
|
4267
4265
|
message_sender_id?: string | undefined;
|
|
4268
4266
|
is_public?: boolean | undefined;
|
|
4269
4267
|
parent_id?: string | undefined;
|
|
4270
|
-
is_parent_public?: boolean | undefined;
|
|
4271
4268
|
} & {
|
|
4272
4269
|
id?: string | undefined;
|
|
4273
4270
|
emoji_id?: string | undefined;
|
|
@@ -4284,7 +4281,6 @@ export declare const MessageReaction: {
|
|
|
4284
4281
|
message_sender_id?: string | undefined;
|
|
4285
4282
|
is_public?: boolean | undefined;
|
|
4286
4283
|
parent_id?: string | undefined;
|
|
4287
|
-
is_parent_public?: boolean | undefined;
|
|
4288
4284
|
} & { [K_1 in Exclude<keyof I_1, keyof MessageReaction>]: never; }>(object: I_1): MessageReaction;
|
|
4289
4285
|
};
|
|
4290
4286
|
export declare const MessageAttachment: {
|
|
@@ -9283,6 +9279,7 @@ export declare const ChannelDescription: {
|
|
|
9283
9279
|
about_me?: string[] | undefined;
|
|
9284
9280
|
clan_name?: string | undefined;
|
|
9285
9281
|
app_url?: string | undefined;
|
|
9282
|
+
is_mute?: boolean | undefined;
|
|
9286
9283
|
} & {
|
|
9287
9284
|
clan_id?: string | undefined;
|
|
9288
9285
|
parrent_id?: string | undefined;
|
|
@@ -9346,6 +9343,7 @@ export declare const ChannelDescription: {
|
|
|
9346
9343
|
about_me?: (string[] & string[] & { [K_6 in Exclude<keyof I["about_me"], keyof string[]>]: never; }) | undefined;
|
|
9347
9344
|
clan_name?: string | undefined;
|
|
9348
9345
|
app_url?: string | undefined;
|
|
9346
|
+
is_mute?: boolean | undefined;
|
|
9349
9347
|
} & { [K_7 in Exclude<keyof I, keyof ChannelDescription>]: never; }>(base?: I | undefined): ChannelDescription;
|
|
9350
9348
|
fromPartial<I_1 extends {
|
|
9351
9349
|
clan_id?: string | undefined;
|
|
@@ -9392,6 +9390,7 @@ export declare const ChannelDescription: {
|
|
|
9392
9390
|
about_me?: string[] | undefined;
|
|
9393
9391
|
clan_name?: string | undefined;
|
|
9394
9392
|
app_url?: string | undefined;
|
|
9393
|
+
is_mute?: boolean | undefined;
|
|
9395
9394
|
} & {
|
|
9396
9395
|
clan_id?: string | undefined;
|
|
9397
9396
|
parrent_id?: string | undefined;
|
|
@@ -9455,6 +9454,7 @@ export declare const ChannelDescription: {
|
|
|
9455
9454
|
about_me?: (string[] & string[] & { [K_14 in Exclude<keyof I_1["about_me"], keyof string[]>]: never; }) | undefined;
|
|
9456
9455
|
clan_name?: string | undefined;
|
|
9457
9456
|
app_url?: string | undefined;
|
|
9457
|
+
is_mute?: boolean | undefined;
|
|
9458
9458
|
} & { [K_15 in Exclude<keyof I_1, keyof ChannelDescription>]: never; }>(object: I_1): ChannelDescription;
|
|
9459
9459
|
};
|
|
9460
9460
|
export declare const ChannelDescList: {
|
|
@@ -9508,6 +9508,7 @@ export declare const ChannelDescList: {
|
|
|
9508
9508
|
about_me?: string[] | undefined;
|
|
9509
9509
|
clan_name?: string | undefined;
|
|
9510
9510
|
app_url?: string | undefined;
|
|
9511
|
+
is_mute?: boolean | undefined;
|
|
9511
9512
|
}[] | undefined;
|
|
9512
9513
|
next_cursor?: string | undefined;
|
|
9513
9514
|
prev_cursor?: string | undefined;
|
|
@@ -9558,6 +9559,7 @@ export declare const ChannelDescList: {
|
|
|
9558
9559
|
about_me?: string[] | undefined;
|
|
9559
9560
|
clan_name?: string | undefined;
|
|
9560
9561
|
app_url?: string | undefined;
|
|
9562
|
+
is_mute?: boolean | undefined;
|
|
9561
9563
|
}[] & ({
|
|
9562
9564
|
clan_id?: string | undefined;
|
|
9563
9565
|
parrent_id?: string | undefined;
|
|
@@ -9603,6 +9605,7 @@ export declare const ChannelDescList: {
|
|
|
9603
9605
|
about_me?: string[] | undefined;
|
|
9604
9606
|
clan_name?: string | undefined;
|
|
9605
9607
|
app_url?: string | undefined;
|
|
9608
|
+
is_mute?: boolean | undefined;
|
|
9606
9609
|
} & {
|
|
9607
9610
|
clan_id?: string | undefined;
|
|
9608
9611
|
parrent_id?: string | undefined;
|
|
@@ -9666,6 +9669,7 @@ export declare const ChannelDescList: {
|
|
|
9666
9669
|
about_me?: (string[] & string[] & { [K_6 in Exclude<keyof I["channeldesc"][number]["about_me"], keyof string[]>]: never; }) | undefined;
|
|
9667
9670
|
clan_name?: string | undefined;
|
|
9668
9671
|
app_url?: string | undefined;
|
|
9672
|
+
is_mute?: boolean | undefined;
|
|
9669
9673
|
} & { [K_7 in Exclude<keyof I["channeldesc"][number], keyof ChannelDescription>]: never; })[] & { [K_8 in Exclude<keyof I["channeldesc"], keyof {
|
|
9670
9674
|
clan_id?: string | undefined;
|
|
9671
9675
|
parrent_id?: string | undefined;
|
|
@@ -9711,6 +9715,7 @@ export declare const ChannelDescList: {
|
|
|
9711
9715
|
about_me?: string[] | undefined;
|
|
9712
9716
|
clan_name?: string | undefined;
|
|
9713
9717
|
app_url?: string | undefined;
|
|
9718
|
+
is_mute?: boolean | undefined;
|
|
9714
9719
|
}[]>]: never; }) | undefined;
|
|
9715
9720
|
next_cursor?: string | undefined;
|
|
9716
9721
|
prev_cursor?: string | undefined;
|
|
@@ -9762,6 +9767,7 @@ export declare const ChannelDescList: {
|
|
|
9762
9767
|
about_me?: string[] | undefined;
|
|
9763
9768
|
clan_name?: string | undefined;
|
|
9764
9769
|
app_url?: string | undefined;
|
|
9770
|
+
is_mute?: boolean | undefined;
|
|
9765
9771
|
}[] | undefined;
|
|
9766
9772
|
next_cursor?: string | undefined;
|
|
9767
9773
|
prev_cursor?: string | undefined;
|
|
@@ -9812,6 +9818,7 @@ export declare const ChannelDescList: {
|
|
|
9812
9818
|
about_me?: string[] | undefined;
|
|
9813
9819
|
clan_name?: string | undefined;
|
|
9814
9820
|
app_url?: string | undefined;
|
|
9821
|
+
is_mute?: boolean | undefined;
|
|
9815
9822
|
}[] & ({
|
|
9816
9823
|
clan_id?: string | undefined;
|
|
9817
9824
|
parrent_id?: string | undefined;
|
|
@@ -9857,6 +9864,7 @@ export declare const ChannelDescList: {
|
|
|
9857
9864
|
about_me?: string[] | undefined;
|
|
9858
9865
|
clan_name?: string | undefined;
|
|
9859
9866
|
app_url?: string | undefined;
|
|
9867
|
+
is_mute?: boolean | undefined;
|
|
9860
9868
|
} & {
|
|
9861
9869
|
clan_id?: string | undefined;
|
|
9862
9870
|
parrent_id?: string | undefined;
|
|
@@ -9920,6 +9928,7 @@ export declare const ChannelDescList: {
|
|
|
9920
9928
|
about_me?: (string[] & string[] & { [K_16 in Exclude<keyof I_1["channeldesc"][number]["about_me"], keyof string[]>]: never; }) | undefined;
|
|
9921
9929
|
clan_name?: string | undefined;
|
|
9922
9930
|
app_url?: string | undefined;
|
|
9931
|
+
is_mute?: boolean | undefined;
|
|
9923
9932
|
} & { [K_17 in Exclude<keyof I_1["channeldesc"][number], keyof ChannelDescription>]: never; })[] & { [K_18 in Exclude<keyof I_1["channeldesc"], keyof {
|
|
9924
9933
|
clan_id?: string | undefined;
|
|
9925
9934
|
parrent_id?: string | undefined;
|
|
@@ -9965,6 +9974,7 @@ export declare const ChannelDescList: {
|
|
|
9965
9974
|
about_me?: string[] | undefined;
|
|
9966
9975
|
clan_name?: string | undefined;
|
|
9967
9976
|
app_url?: string | undefined;
|
|
9977
|
+
is_mute?: boolean | undefined;
|
|
9968
9978
|
}[]>]: never; }) | undefined;
|
|
9969
9979
|
next_cursor?: string | undefined;
|
|
9970
9980
|
prev_cursor?: string | undefined;
|
|
@@ -16748,47 +16758,47 @@ export declare const ChannelSettingItem: {
|
|
|
16748
16758
|
toJSON(message: ChannelSettingItem): unknown;
|
|
16749
16759
|
create<I extends {
|
|
16750
16760
|
id?: string | undefined;
|
|
16751
|
-
|
|
16752
|
-
|
|
16753
|
-
|
|
16754
|
-
|
|
16755
|
-
|
|
16756
|
-
|
|
16757
|
-
|
|
16761
|
+
creator_id?: string | undefined;
|
|
16762
|
+
parent_id?: string | undefined;
|
|
16763
|
+
channel_label?: string | undefined;
|
|
16764
|
+
category_id?: string | undefined;
|
|
16765
|
+
meeting_code?: string | undefined;
|
|
16766
|
+
channel_private?: number | undefined;
|
|
16767
|
+
channel_type?: number | undefined;
|
|
16758
16768
|
active?: number | undefined;
|
|
16759
16769
|
user_ids?: string[] | undefined;
|
|
16760
16770
|
} & {
|
|
16761
16771
|
id?: string | undefined;
|
|
16762
|
-
|
|
16763
|
-
|
|
16764
|
-
|
|
16765
|
-
|
|
16766
|
-
|
|
16767
|
-
|
|
16768
|
-
|
|
16772
|
+
creator_id?: string | undefined;
|
|
16773
|
+
parent_id?: string | undefined;
|
|
16774
|
+
channel_label?: string | undefined;
|
|
16775
|
+
category_id?: string | undefined;
|
|
16776
|
+
meeting_code?: string | undefined;
|
|
16777
|
+
channel_private?: number | undefined;
|
|
16778
|
+
channel_type?: number | undefined;
|
|
16769
16779
|
active?: number | undefined;
|
|
16770
16780
|
user_ids?: (string[] & string[] & { [K in Exclude<keyof I["user_ids"], keyof string[]>]: never; }) | undefined;
|
|
16771
16781
|
} & { [K_1 in Exclude<keyof I, keyof ChannelSettingItem>]: never; }>(base?: I | undefined): ChannelSettingItem;
|
|
16772
16782
|
fromPartial<I_1 extends {
|
|
16773
16783
|
id?: string | undefined;
|
|
16774
|
-
|
|
16775
|
-
|
|
16776
|
-
|
|
16777
|
-
|
|
16778
|
-
|
|
16779
|
-
|
|
16780
|
-
|
|
16784
|
+
creator_id?: string | undefined;
|
|
16785
|
+
parent_id?: string | undefined;
|
|
16786
|
+
channel_label?: string | undefined;
|
|
16787
|
+
category_id?: string | undefined;
|
|
16788
|
+
meeting_code?: string | undefined;
|
|
16789
|
+
channel_private?: number | undefined;
|
|
16790
|
+
channel_type?: number | undefined;
|
|
16781
16791
|
active?: number | undefined;
|
|
16782
16792
|
user_ids?: string[] | undefined;
|
|
16783
16793
|
} & {
|
|
16784
16794
|
id?: string | undefined;
|
|
16785
|
-
|
|
16786
|
-
|
|
16787
|
-
|
|
16788
|
-
|
|
16789
|
-
|
|
16790
|
-
|
|
16791
|
-
|
|
16795
|
+
creator_id?: string | undefined;
|
|
16796
|
+
parent_id?: string | undefined;
|
|
16797
|
+
channel_label?: string | undefined;
|
|
16798
|
+
category_id?: string | undefined;
|
|
16799
|
+
meeting_code?: string | undefined;
|
|
16800
|
+
channel_private?: number | undefined;
|
|
16801
|
+
channel_type?: number | undefined;
|
|
16792
16802
|
active?: number | undefined;
|
|
16793
16803
|
user_ids?: (string[] & string[] & { [K_2 in Exclude<keyof I_1["user_ids"], keyof string[]>]: never; }) | undefined;
|
|
16794
16804
|
} & { [K_3 in Exclude<keyof I_1, keyof ChannelSettingItem>]: never; }>(object: I_1): ChannelSettingItem;
|
|
@@ -16802,13 +16812,13 @@ export declare const ChannelSettingListResponse: {
|
|
|
16802
16812
|
clan_id?: string | undefined;
|
|
16803
16813
|
channel_setting_list?: {
|
|
16804
16814
|
id?: string | undefined;
|
|
16805
|
-
|
|
16806
|
-
|
|
16807
|
-
|
|
16808
|
-
|
|
16809
|
-
|
|
16810
|
-
|
|
16811
|
-
|
|
16815
|
+
creator_id?: string | undefined;
|
|
16816
|
+
parent_id?: string | undefined;
|
|
16817
|
+
channel_label?: string | undefined;
|
|
16818
|
+
category_id?: string | undefined;
|
|
16819
|
+
meeting_code?: string | undefined;
|
|
16820
|
+
channel_private?: number | undefined;
|
|
16821
|
+
channel_type?: number | undefined;
|
|
16812
16822
|
active?: number | undefined;
|
|
16813
16823
|
user_ids?: string[] | undefined;
|
|
16814
16824
|
}[] | undefined;
|
|
@@ -16816,46 +16826,46 @@ export declare const ChannelSettingListResponse: {
|
|
|
16816
16826
|
clan_id?: string | undefined;
|
|
16817
16827
|
channel_setting_list?: ({
|
|
16818
16828
|
id?: string | undefined;
|
|
16819
|
-
|
|
16820
|
-
|
|
16821
|
-
|
|
16822
|
-
|
|
16823
|
-
|
|
16824
|
-
|
|
16825
|
-
|
|
16829
|
+
creator_id?: string | undefined;
|
|
16830
|
+
parent_id?: string | undefined;
|
|
16831
|
+
channel_label?: string | undefined;
|
|
16832
|
+
category_id?: string | undefined;
|
|
16833
|
+
meeting_code?: string | undefined;
|
|
16834
|
+
channel_private?: number | undefined;
|
|
16835
|
+
channel_type?: number | undefined;
|
|
16826
16836
|
active?: number | undefined;
|
|
16827
16837
|
user_ids?: string[] | undefined;
|
|
16828
16838
|
}[] & ({
|
|
16829
16839
|
id?: string | undefined;
|
|
16830
|
-
|
|
16831
|
-
|
|
16832
|
-
|
|
16833
|
-
|
|
16834
|
-
|
|
16835
|
-
|
|
16836
|
-
|
|
16840
|
+
creator_id?: string | undefined;
|
|
16841
|
+
parent_id?: string | undefined;
|
|
16842
|
+
channel_label?: string | undefined;
|
|
16843
|
+
category_id?: string | undefined;
|
|
16844
|
+
meeting_code?: string | undefined;
|
|
16845
|
+
channel_private?: number | undefined;
|
|
16846
|
+
channel_type?: number | undefined;
|
|
16837
16847
|
active?: number | undefined;
|
|
16838
16848
|
user_ids?: string[] | undefined;
|
|
16839
16849
|
} & {
|
|
16840
16850
|
id?: string | undefined;
|
|
16841
|
-
|
|
16842
|
-
|
|
16843
|
-
|
|
16844
|
-
|
|
16845
|
-
|
|
16846
|
-
|
|
16847
|
-
|
|
16851
|
+
creator_id?: string | undefined;
|
|
16852
|
+
parent_id?: string | undefined;
|
|
16853
|
+
channel_label?: string | undefined;
|
|
16854
|
+
category_id?: string | undefined;
|
|
16855
|
+
meeting_code?: string | undefined;
|
|
16856
|
+
channel_private?: number | undefined;
|
|
16857
|
+
channel_type?: number | undefined;
|
|
16848
16858
|
active?: number | undefined;
|
|
16849
16859
|
user_ids?: (string[] & string[] & { [K in Exclude<keyof I["channel_setting_list"][number]["user_ids"], keyof string[]>]: never; }) | undefined;
|
|
16850
16860
|
} & { [K_1 in Exclude<keyof I["channel_setting_list"][number], keyof ChannelSettingItem>]: never; })[] & { [K_2 in Exclude<keyof I["channel_setting_list"], keyof {
|
|
16851
16861
|
id?: string | undefined;
|
|
16852
|
-
|
|
16853
|
-
|
|
16854
|
-
|
|
16855
|
-
|
|
16856
|
-
|
|
16857
|
-
|
|
16858
|
-
|
|
16862
|
+
creator_id?: string | undefined;
|
|
16863
|
+
parent_id?: string | undefined;
|
|
16864
|
+
channel_label?: string | undefined;
|
|
16865
|
+
category_id?: string | undefined;
|
|
16866
|
+
meeting_code?: string | undefined;
|
|
16867
|
+
channel_private?: number | undefined;
|
|
16868
|
+
channel_type?: number | undefined;
|
|
16859
16869
|
active?: number | undefined;
|
|
16860
16870
|
user_ids?: string[] | undefined;
|
|
16861
16871
|
}[]>]: never; }) | undefined;
|
|
@@ -16864,13 +16874,13 @@ export declare const ChannelSettingListResponse: {
|
|
|
16864
16874
|
clan_id?: string | undefined;
|
|
16865
16875
|
channel_setting_list?: {
|
|
16866
16876
|
id?: string | undefined;
|
|
16867
|
-
|
|
16868
|
-
|
|
16869
|
-
|
|
16870
|
-
|
|
16871
|
-
|
|
16872
|
-
|
|
16873
|
-
|
|
16877
|
+
creator_id?: string | undefined;
|
|
16878
|
+
parent_id?: string | undefined;
|
|
16879
|
+
channel_label?: string | undefined;
|
|
16880
|
+
category_id?: string | undefined;
|
|
16881
|
+
meeting_code?: string | undefined;
|
|
16882
|
+
channel_private?: number | undefined;
|
|
16883
|
+
channel_type?: number | undefined;
|
|
16874
16884
|
active?: number | undefined;
|
|
16875
16885
|
user_ids?: string[] | undefined;
|
|
16876
16886
|
}[] | undefined;
|
|
@@ -16878,46 +16888,46 @@ export declare const ChannelSettingListResponse: {
|
|
|
16878
16888
|
clan_id?: string | undefined;
|
|
16879
16889
|
channel_setting_list?: ({
|
|
16880
16890
|
id?: string | undefined;
|
|
16881
|
-
|
|
16882
|
-
|
|
16883
|
-
|
|
16884
|
-
|
|
16885
|
-
|
|
16886
|
-
|
|
16887
|
-
|
|
16891
|
+
creator_id?: string | undefined;
|
|
16892
|
+
parent_id?: string | undefined;
|
|
16893
|
+
channel_label?: string | undefined;
|
|
16894
|
+
category_id?: string | undefined;
|
|
16895
|
+
meeting_code?: string | undefined;
|
|
16896
|
+
channel_private?: number | undefined;
|
|
16897
|
+
channel_type?: number | undefined;
|
|
16888
16898
|
active?: number | undefined;
|
|
16889
16899
|
user_ids?: string[] | undefined;
|
|
16890
16900
|
}[] & ({
|
|
16891
16901
|
id?: string | undefined;
|
|
16892
|
-
|
|
16893
|
-
|
|
16894
|
-
|
|
16895
|
-
|
|
16896
|
-
|
|
16897
|
-
|
|
16898
|
-
|
|
16902
|
+
creator_id?: string | undefined;
|
|
16903
|
+
parent_id?: string | undefined;
|
|
16904
|
+
channel_label?: string | undefined;
|
|
16905
|
+
category_id?: string | undefined;
|
|
16906
|
+
meeting_code?: string | undefined;
|
|
16907
|
+
channel_private?: number | undefined;
|
|
16908
|
+
channel_type?: number | undefined;
|
|
16899
16909
|
active?: number | undefined;
|
|
16900
16910
|
user_ids?: string[] | undefined;
|
|
16901
16911
|
} & {
|
|
16902
16912
|
id?: string | undefined;
|
|
16903
|
-
|
|
16904
|
-
|
|
16905
|
-
|
|
16906
|
-
|
|
16907
|
-
|
|
16908
|
-
|
|
16909
|
-
|
|
16913
|
+
creator_id?: string | undefined;
|
|
16914
|
+
parent_id?: string | undefined;
|
|
16915
|
+
channel_label?: string | undefined;
|
|
16916
|
+
category_id?: string | undefined;
|
|
16917
|
+
meeting_code?: string | undefined;
|
|
16918
|
+
channel_private?: number | undefined;
|
|
16919
|
+
channel_type?: number | undefined;
|
|
16910
16920
|
active?: number | undefined;
|
|
16911
16921
|
user_ids?: (string[] & string[] & { [K_4 in Exclude<keyof I_1["channel_setting_list"][number]["user_ids"], keyof string[]>]: never; }) | undefined;
|
|
16912
16922
|
} & { [K_5 in Exclude<keyof I_1["channel_setting_list"][number], keyof ChannelSettingItem>]: never; })[] & { [K_6 in Exclude<keyof I_1["channel_setting_list"], keyof {
|
|
16913
16923
|
id?: string | undefined;
|
|
16914
|
-
|
|
16915
|
-
|
|
16916
|
-
|
|
16917
|
-
|
|
16918
|
-
|
|
16919
|
-
|
|
16920
|
-
|
|
16924
|
+
creator_id?: string | undefined;
|
|
16925
|
+
parent_id?: string | undefined;
|
|
16926
|
+
channel_label?: string | undefined;
|
|
16927
|
+
category_id?: string | undefined;
|
|
16928
|
+
meeting_code?: string | undefined;
|
|
16929
|
+
channel_private?: number | undefined;
|
|
16930
|
+
channel_type?: number | undefined;
|
|
16921
16931
|
active?: number | undefined;
|
|
16922
16932
|
user_ids?: string[] | undefined;
|
|
16923
16933
|
}[]>]: never; }) | undefined;
|