mezon-js 2.9.20 → 2.9.22
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.gen.ts +2073 -1515
- package/client.ts +45 -5
- package/dist/api.gen.d.ts +25 -6
- package/dist/client.d.ts +5 -2
- package/dist/mezon-js.cjs.js +631 -196
- package/dist/mezon-js.esm.mjs +631 -196
- package/dist/socket.d.ts +3 -0
- package/package.json +1 -1
- package/socket.ts +6 -0
package/dist/socket.d.ts
CHANGED
@@ -293,6 +293,7 @@ export interface ChannelUpdatedEvent {
|
|
293
293
|
status: number;
|
294
294
|
meeting_code: string;
|
295
295
|
is_error: boolean;
|
296
|
+
app_url: string;
|
296
297
|
}
|
297
298
|
export interface ChannelCreatedEvent {
|
298
299
|
clan_id: string;
|
@@ -306,6 +307,7 @@ export interface ChannelCreatedEvent {
|
|
306
307
|
status: number;
|
307
308
|
parent_id: string;
|
308
309
|
is_parent_public: boolean;
|
310
|
+
app_url: string;
|
309
311
|
}
|
310
312
|
export interface ChannelDeletedEvent {
|
311
313
|
clan_id: string;
|
@@ -509,6 +511,7 @@ export interface ChannelDescription {
|
|
509
511
|
channel_id?: string;
|
510
512
|
type?: number;
|
511
513
|
channel_label?: string;
|
514
|
+
app_url?: string;
|
512
515
|
channel_private?: number;
|
513
516
|
meeting_code?: string;
|
514
517
|
clan_name?: string;
|
package/package.json
CHANGED
package/socket.ts
CHANGED
@@ -422,6 +422,8 @@ export interface ChannelUpdatedEvent {
|
|
422
422
|
meeting_code: string;
|
423
423
|
// is error
|
424
424
|
is_error: boolean;
|
425
|
+
// app url
|
426
|
+
app_url: string;
|
425
427
|
}
|
426
428
|
|
427
429
|
export interface ChannelCreatedEvent {
|
@@ -447,6 +449,8 @@ export interface ChannelCreatedEvent {
|
|
447
449
|
parent_id: string;
|
448
450
|
// parent public
|
449
451
|
is_parent_public: boolean;
|
452
|
+
// app url
|
453
|
+
app_url: string;
|
450
454
|
}
|
451
455
|
|
452
456
|
export interface ChannelDeletedEvent {
|
@@ -743,6 +747,8 @@ export interface ChannelDescription {
|
|
743
747
|
type?: number;
|
744
748
|
// The channel lable
|
745
749
|
channel_label?: string;
|
750
|
+
// The app url
|
751
|
+
app_url?: string;
|
746
752
|
// The channel private
|
747
753
|
channel_private?: number;
|
748
754
|
// meeting code
|