plugnmeet-protocol-js 1.2.2-20 → 1.2.2-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/dist/index.cjs.js +34 -24
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.d.ts +213 -213
- package/dist/index.d.ts.map +1 -1
- package/dist/index.mjs.js +34 -24
- package/dist/index.mjs.js.map +1 -1
- package/package.json +6 -6
package/dist/index.d.ts
CHANGED
|
@@ -31,38 +31,38 @@ export type AnalyticsDataMsg = Message<"plugnmeet.AnalyticsDataMsg"> & {
|
|
|
31
31
|
*
|
|
32
32
|
* @generated from field: optional string event_value_string = 5;
|
|
33
33
|
*/
|
|
34
|
-
eventValueString?: string;
|
|
34
|
+
eventValueString?: string | undefined;
|
|
35
35
|
/**
|
|
36
36
|
* if we pass value here then it will use redis INCRBY to increment value for the key
|
|
37
37
|
*
|
|
38
38
|
* @generated from field: optional int64 event_value_integer = 6 [jstype = JS_STRING];
|
|
39
39
|
*/
|
|
40
|
-
eventValueInteger?: string;
|
|
40
|
+
eventValueInteger?: string | undefined;
|
|
41
41
|
/**
|
|
42
42
|
* if we pass value here then it will use redis HSET to set hash field value for the key
|
|
43
43
|
* hash field will be unix milliseconds, so it will remain unique as always
|
|
44
44
|
*
|
|
45
45
|
* @generated from field: optional string hset_value = 7;
|
|
46
46
|
*/
|
|
47
|
-
hsetValue?: string;
|
|
47
|
+
hsetValue?: string | undefined;
|
|
48
48
|
/**
|
|
49
49
|
* @generated from field: optional string room_sid = 8;
|
|
50
50
|
*/
|
|
51
|
-
roomSid?: string;
|
|
51
|
+
roomSid?: string | undefined;
|
|
52
52
|
/**
|
|
53
53
|
* @generated from field: optional string user_id = 9;
|
|
54
54
|
*/
|
|
55
|
-
userId?: string;
|
|
55
|
+
userId?: string | undefined;
|
|
56
56
|
/**
|
|
57
57
|
* @generated from field: optional string user_name = 10;
|
|
58
58
|
*/
|
|
59
|
-
userName?: string;
|
|
59
|
+
userName?: string | undefined;
|
|
60
60
|
/**
|
|
61
61
|
* this extra_data can be use for various purposes like, room or user metadata
|
|
62
62
|
*
|
|
63
63
|
* @generated from field: optional string extra_data = 11;
|
|
64
64
|
*/
|
|
65
|
-
extraData?: string;
|
|
65
|
+
extraData?: string | undefined;
|
|
66
66
|
};
|
|
67
67
|
/**
|
|
68
68
|
* Describes the message plugnmeet.AnalyticsDataMsg.
|
|
@@ -170,11 +170,11 @@ export type AnalyticsUserInfo = Message<"plugnmeet.AnalyticsUserInfo"> & {
|
|
|
170
170
|
/**
|
|
171
171
|
* @generated from field: optional string extra_data = 4;
|
|
172
172
|
*/
|
|
173
|
-
extraData?: string;
|
|
173
|
+
extraData?: string | undefined;
|
|
174
174
|
/**
|
|
175
175
|
* @generated from field: optional string ex_user_id = 5;
|
|
176
176
|
*/
|
|
177
|
-
exUserId?: string;
|
|
177
|
+
exUserId?: string | undefined;
|
|
178
178
|
/**
|
|
179
179
|
* @generated from field: repeated plugnmeet.AnalyticsEventData events = 6;
|
|
180
180
|
*/
|
|
@@ -192,7 +192,7 @@ export type AnalyticsResult = Message<"plugnmeet.AnalyticsResult"> & {
|
|
|
192
192
|
/**
|
|
193
193
|
* @generated from field: plugnmeet.AnalyticsRoomInfo room = 1;
|
|
194
194
|
*/
|
|
195
|
-
room?: AnalyticsRoomInfo;
|
|
195
|
+
room?: AnalyticsRoomInfo | undefined;
|
|
196
196
|
/**
|
|
197
197
|
* @generated from field: repeated plugnmeet.AnalyticsUserInfo users = 2;
|
|
198
198
|
*/
|
|
@@ -210,7 +210,7 @@ export type AnalyticsRedisUserInfo = Message<"plugnmeet.AnalyticsRedisUserInfo">
|
|
|
210
210
|
/**
|
|
211
211
|
* @generated from field: optional string name = 1;
|
|
212
212
|
*/
|
|
213
|
-
name?: string;
|
|
213
|
+
name?: string | undefined;
|
|
214
214
|
/**
|
|
215
215
|
* @generated from field: bool is_admin = 2;
|
|
216
216
|
*/
|
|
@@ -218,11 +218,11 @@ export type AnalyticsRedisUserInfo = Message<"plugnmeet.AnalyticsRedisUserInfo">
|
|
|
218
218
|
/**
|
|
219
219
|
* @generated from field: optional string extra_data = 3;
|
|
220
220
|
*/
|
|
221
|
-
extraData?: string;
|
|
221
|
+
extraData?: string | undefined;
|
|
222
222
|
/**
|
|
223
223
|
* @generated from field: optional string ex_user_id = 4;
|
|
224
224
|
*/
|
|
225
|
-
exUserId?: string;
|
|
225
|
+
exUserId?: string | undefined;
|
|
226
226
|
};
|
|
227
227
|
/**
|
|
228
228
|
* Describes the message plugnmeet.AnalyticsRedisUserInfo.
|
|
@@ -490,7 +490,7 @@ export type DataChannelMessage = Message<"plugnmeet.DataChannelMessage"> & {
|
|
|
490
490
|
/**
|
|
491
491
|
* @generated from field: optional string to_user_id = 4;
|
|
492
492
|
*/
|
|
493
|
-
toUserId?: string;
|
|
493
|
+
toUserId?: string | undefined;
|
|
494
494
|
/**
|
|
495
495
|
* @generated from field: string message = 5;
|
|
496
496
|
*/
|
|
@@ -869,7 +869,7 @@ export type TurnCredentials = Message<"plugnmeet.TurnCredentials"> & {
|
|
|
869
869
|
/**
|
|
870
870
|
* @generated from field: optional plugnmeet.FallbackOnFlapping fallback_on_flapping = 7;
|
|
871
871
|
*/
|
|
872
|
-
fallbackOnFlapping?: FallbackOnFlapping;
|
|
872
|
+
fallbackOnFlapping?: FallbackOnFlapping | undefined;
|
|
873
873
|
};
|
|
874
874
|
/**
|
|
875
875
|
* Describes the message plugnmeet.TurnCredentials.
|
|
@@ -895,7 +895,7 @@ export type MediaServerConnInfo = Message<"plugnmeet.MediaServerConnInfo"> & {
|
|
|
895
895
|
/**
|
|
896
896
|
* @generated from field: optional plugnmeet.TurnCredentials turn_credentials = 4;
|
|
897
897
|
*/
|
|
898
|
-
turnCredentials?: TurnCredentials;
|
|
898
|
+
turnCredentials?: TurnCredentials | undefined;
|
|
899
899
|
};
|
|
900
900
|
/**
|
|
901
901
|
* Describes the message plugnmeet.MediaServerConnInfo.
|
|
@@ -909,11 +909,11 @@ export type NatsInitialData = Message<"plugnmeet.NatsInitialData"> & {
|
|
|
909
909
|
/**
|
|
910
910
|
* @generated from field: plugnmeet.NatsKvRoomInfo room = 1;
|
|
911
911
|
*/
|
|
912
|
-
room?: NatsKvRoomInfo;
|
|
912
|
+
room?: NatsKvRoomInfo | undefined;
|
|
913
913
|
/**
|
|
914
914
|
* @generated from field: plugnmeet.NatsKvUserInfo local_user = 2;
|
|
915
915
|
*/
|
|
916
|
-
localUser?: NatsKvUserInfo;
|
|
916
|
+
localUser?: NatsKvUserInfo | undefined;
|
|
917
917
|
};
|
|
918
918
|
/**
|
|
919
919
|
* Describes the message plugnmeet.NatsInitialData.
|
|
@@ -991,7 +991,7 @@ export type ChatMessage = Message<"plugnmeet.ChatMessage"> & {
|
|
|
991
991
|
/**
|
|
992
992
|
* @generated from field: optional string to_user_id = 5;
|
|
993
993
|
*/
|
|
994
|
-
toUserId?: string;
|
|
994
|
+
toUserId?: string | undefined;
|
|
995
995
|
/**
|
|
996
996
|
* @generated from field: bool is_private = 6;
|
|
997
997
|
*/
|
|
@@ -1007,7 +1007,7 @@ export type ChatMessage = Message<"plugnmeet.ChatMessage"> & {
|
|
|
1007
1007
|
/**
|
|
1008
1008
|
* @generated from field: optional string source_lang = 9;
|
|
1009
1009
|
*/
|
|
1010
|
-
sourceLang?: string;
|
|
1010
|
+
sourceLang?: string | undefined;
|
|
1011
1011
|
/**
|
|
1012
1012
|
* @generated from field: map<string, string> translations = 10;
|
|
1013
1013
|
*/
|
|
@@ -1228,7 +1228,7 @@ export type VerifyTokenReq = Message<"plugnmeet.VerifyTokenReq"> & {
|
|
|
1228
1228
|
/**
|
|
1229
1229
|
* @generated from field: optional bool is_production = 1;
|
|
1230
1230
|
*/
|
|
1231
|
-
isProduction?: boolean;
|
|
1231
|
+
isProduction?: boolean | undefined;
|
|
1232
1232
|
};
|
|
1233
1233
|
/**
|
|
1234
1234
|
* Describes the message plugnmeet.VerifyTokenReq.
|
|
@@ -1254,31 +1254,31 @@ export type VerifyTokenRes = Message<"plugnmeet.VerifyTokenRes"> & {
|
|
|
1254
1254
|
/**
|
|
1255
1255
|
* @generated from field: optional string server_version = 4;
|
|
1256
1256
|
*/
|
|
1257
|
-
serverVersion?: string;
|
|
1257
|
+
serverVersion?: string | undefined;
|
|
1258
1258
|
/**
|
|
1259
1259
|
* @generated from field: optional string room_id = 5;
|
|
1260
1260
|
*/
|
|
1261
|
-
roomId?: string;
|
|
1261
|
+
roomId?: string | undefined;
|
|
1262
1262
|
/**
|
|
1263
1263
|
* @generated from field: optional string user_id = 6;
|
|
1264
1264
|
*/
|
|
1265
|
-
userId?: string;
|
|
1265
|
+
userId?: string | undefined;
|
|
1266
1266
|
/**
|
|
1267
1267
|
* @generated from field: optional string room_stream_name = 7;
|
|
1268
1268
|
*/
|
|
1269
|
-
roomStreamName?: string;
|
|
1269
|
+
roomStreamName?: string | undefined;
|
|
1270
1270
|
/**
|
|
1271
1271
|
* @generated from field: optional plugnmeet.NatsSubjects nats_subjects = 8;
|
|
1272
1272
|
*/
|
|
1273
|
-
natsSubjects?: NatsSubjects;
|
|
1273
|
+
natsSubjects?: NatsSubjects | undefined;
|
|
1274
1274
|
/**
|
|
1275
1275
|
* @generated from field: optional bool enabled_self_insert_encryption_key = 9;
|
|
1276
1276
|
*/
|
|
1277
|
-
enabledSelfInsertEncryptionKey?: boolean;
|
|
1277
|
+
enabledSelfInsertEncryptionKey?: boolean | undefined;
|
|
1278
1278
|
/**
|
|
1279
1279
|
* @generated from field: optional bool is_cloud = 10;
|
|
1280
1280
|
*/
|
|
1281
|
-
isCloud?: boolean;
|
|
1281
|
+
isCloud?: boolean | undefined;
|
|
1282
1282
|
};
|
|
1283
1283
|
/**
|
|
1284
1284
|
* Describes the message plugnmeet.VerifyTokenRes.
|
|
@@ -1420,11 +1420,11 @@ export type ChangeVisibilityRes = Message<"plugnmeet.ChangeVisibilityRes"> & {
|
|
|
1420
1420
|
/**
|
|
1421
1421
|
* @generated from field: optional bool visible_notepad = 2;
|
|
1422
1422
|
*/
|
|
1423
|
-
visibleNotepad?: boolean;
|
|
1423
|
+
visibleNotepad?: boolean | undefined;
|
|
1424
1424
|
/**
|
|
1425
1425
|
* @generated from field: optional bool visible_white_board = 3;
|
|
1426
1426
|
*/
|
|
1427
|
-
visibleWhiteBoard?: boolean;
|
|
1427
|
+
visibleWhiteBoard?: boolean | undefined;
|
|
1428
1428
|
};
|
|
1429
1429
|
/**
|
|
1430
1430
|
* Describes the message plugnmeet.ChangeVisibilityRes.
|
|
@@ -1468,11 +1468,11 @@ export type ExternalMediaPlayerReq = Message<"plugnmeet.ExternalMediaPlayerReq">
|
|
|
1468
1468
|
/**
|
|
1469
1469
|
* @generated from field: optional string url = 2;
|
|
1470
1470
|
*/
|
|
1471
|
-
url?: string;
|
|
1471
|
+
url?: string | undefined;
|
|
1472
1472
|
/**
|
|
1473
1473
|
* @generated from field: optional double seek_to = 3;
|
|
1474
1474
|
*/
|
|
1475
|
-
seekTo?: number;
|
|
1475
|
+
seekTo?: number | undefined;
|
|
1476
1476
|
/**
|
|
1477
1477
|
* @generated from field: string room_id = 4;
|
|
1478
1478
|
*/
|
|
@@ -1498,7 +1498,7 @@ export type ExternalDisplayLinkReq = Message<"plugnmeet.ExternalDisplayLinkReq">
|
|
|
1498
1498
|
/**
|
|
1499
1499
|
* @generated from field: optional string url = 2;
|
|
1500
1500
|
*/
|
|
1501
|
-
url?: string;
|
|
1501
|
+
url?: string | undefined;
|
|
1502
1502
|
/**
|
|
1503
1503
|
* @generated from field: string room_id = 4;
|
|
1504
1504
|
*/
|
|
@@ -1528,11 +1528,11 @@ export type CreateEtherpadSessionRes = Message<"plugnmeet.CreateEtherpadSessionR
|
|
|
1528
1528
|
/**
|
|
1529
1529
|
* @generated from field: optional string pad_id = 3;
|
|
1530
1530
|
*/
|
|
1531
|
-
padId?: string;
|
|
1531
|
+
padId?: string | undefined;
|
|
1532
1532
|
/**
|
|
1533
1533
|
* @generated from field: optional string readonly_pad_id = 4;
|
|
1534
1534
|
*/
|
|
1535
|
-
readonlyPadId?: string;
|
|
1535
|
+
readonlyPadId?: string | undefined;
|
|
1536
1536
|
};
|
|
1537
1537
|
/**
|
|
1538
1538
|
* Describes the message plugnmeet.CreateEtherpadSessionRes.
|
|
@@ -1820,7 +1820,7 @@ export type RoomUploadedFileMetadata = Message<"plugnmeet.RoomUploadedFileMetada
|
|
|
1820
1820
|
/**
|
|
1821
1821
|
* @generated from field: optional int32 total_pages = 8;
|
|
1822
1822
|
*/
|
|
1823
|
-
totalPages?: number;
|
|
1823
|
+
totalPages?: number | undefined;
|
|
1824
1824
|
};
|
|
1825
1825
|
/**
|
|
1826
1826
|
* Describes the message plugnmeet.RoomUploadedFileMetadata.
|
|
@@ -2139,7 +2139,7 @@ export type FetchAnalyticsRes = Message<"plugnmeet.FetchAnalyticsRes"> & {
|
|
|
2139
2139
|
/**
|
|
2140
2140
|
* @generated from field: plugnmeet.FetchAnalyticsResult result = 4;
|
|
2141
2141
|
*/
|
|
2142
|
-
result?: FetchAnalyticsResult;
|
|
2142
|
+
result?: FetchAnalyticsResult | undefined;
|
|
2143
2143
|
};
|
|
2144
2144
|
/**
|
|
2145
2145
|
* Describes the message plugnmeet.FetchAnalyticsRes.
|
|
@@ -2215,7 +2215,7 @@ export type GetAnalyticsDownloadTokenRes = Message<"plugnmeet.GetAnalyticsDownlo
|
|
|
2215
2215
|
/**
|
|
2216
2216
|
* @generated from field: optional string token = 4;
|
|
2217
2217
|
*/
|
|
2218
|
-
token?: string;
|
|
2218
|
+
token?: string | undefined;
|
|
2219
2219
|
};
|
|
2220
2220
|
/**
|
|
2221
2221
|
* Describes the message plugnmeet.GetAnalyticsDownloadTokenRes.
|
|
@@ -2351,7 +2351,7 @@ type ParticipantInfo = Message<"livekit.ParticipantInfo"> & {
|
|
|
2351
2351
|
/**
|
|
2352
2352
|
* @generated from field: livekit.ParticipantPermission permission = 11;
|
|
2353
2353
|
*/
|
|
2354
|
-
permission?: ParticipantPermission;
|
|
2354
|
+
permission?: ParticipantPermission | undefined;
|
|
2355
2355
|
/**
|
|
2356
2356
|
* @generated from field: string region = 12;
|
|
2357
2357
|
*/
|
|
@@ -2650,7 +2650,7 @@ type TrackInfo = Message<"livekit.TrackInfo"> & {
|
|
|
2650
2650
|
/**
|
|
2651
2651
|
* @generated from field: livekit.TimedVersion version = 18;
|
|
2652
2652
|
*/
|
|
2653
|
-
version?: TimedVersion;
|
|
2653
|
+
version?: TimedVersion | undefined;
|
|
2654
2654
|
/**
|
|
2655
2655
|
* @generated from field: repeated livekit.AudioTrackFeature audio_features = 19;
|
|
2656
2656
|
*/
|
|
@@ -3049,7 +3049,7 @@ export type ActiveRoomInfoRes = Message<"plugnmeet.ActiveRoomInfoRes"> & {
|
|
|
3049
3049
|
/**
|
|
3050
3050
|
* @generated from field: optional plugnmeet.ActiveRoomInfo room_info = 4;
|
|
3051
3051
|
*/
|
|
3052
|
-
roomInfo?: ActiveRoomInfo;
|
|
3052
|
+
roomInfo?: ActiveRoomInfo | undefined;
|
|
3053
3053
|
/**
|
|
3054
3054
|
* @generated from field: repeated livekit.ParticipantInfo participants_info = 5;
|
|
3055
3055
|
*/
|
|
@@ -3201,7 +3201,7 @@ export type ActiveRoomWithParticipant = Message<"plugnmeet.ActiveRoomWithPartici
|
|
|
3201
3201
|
/**
|
|
3202
3202
|
* @generated from field: optional plugnmeet.ActiveRoomInfo room_info = 3;
|
|
3203
3203
|
*/
|
|
3204
|
-
roomInfo?: ActiveRoomInfo;
|
|
3204
|
+
roomInfo?: ActiveRoomInfo | undefined;
|
|
3205
3205
|
/**
|
|
3206
3206
|
* @generated from field: repeated livekit.ParticipantInfo participants_info = 4;
|
|
3207
3207
|
*/
|
|
@@ -3231,7 +3231,7 @@ export type GetActiveRoomInfoRes = Message<"plugnmeet.GetActiveRoomInfoRes"> & {
|
|
|
3231
3231
|
/**
|
|
3232
3232
|
* @generated from field: plugnmeet.ActiveRoomWithParticipant room = 4;
|
|
3233
3233
|
*/
|
|
3234
|
-
room?: ActiveRoomWithParticipant;
|
|
3234
|
+
room?: ActiveRoomWithParticipant | undefined;
|
|
3235
3235
|
};
|
|
3236
3236
|
/**
|
|
3237
3237
|
* Describes the message plugnmeet.GetActiveRoomInfoRes.
|
|
@@ -3299,7 +3299,7 @@ export type PastRoomInfo = Message<"plugnmeet.PastRoomInfo"> & {
|
|
|
3299
3299
|
/**
|
|
3300
3300
|
* @generated from field: optional string analytics_file_id = 8;
|
|
3301
3301
|
*/
|
|
3302
|
-
analyticsFileId?: string;
|
|
3302
|
+
analyticsFileId?: string | undefined;
|
|
3303
3303
|
};
|
|
3304
3304
|
/**
|
|
3305
3305
|
* Describes the message plugnmeet.PastRoomInfo.
|
|
@@ -3381,7 +3381,7 @@ export type FetchPastRoomsRes = Message<"plugnmeet.FetchPastRoomsRes"> & {
|
|
|
3381
3381
|
/**
|
|
3382
3382
|
* @generated from field: plugnmeet.FetchPastRoomsResult result = 4;
|
|
3383
3383
|
*/
|
|
3384
|
-
result?: FetchPastRoomsResult;
|
|
3384
|
+
result?: FetchPastRoomsResult | undefined;
|
|
3385
3385
|
};
|
|
3386
3386
|
/**
|
|
3387
3387
|
* Describes the message plugnmeet.FetchPastRoomsRes.
|
|
@@ -3425,7 +3425,7 @@ export type GetClientFilesRes = Message<"plugnmeet.GetClientFilesRes"> & {
|
|
|
3425
3425
|
/**
|
|
3426
3426
|
* @generated from field: optional string static_assets_path = 8;
|
|
3427
3427
|
*/
|
|
3428
|
-
staticAssetsPath?: string;
|
|
3428
|
+
staticAssetsPath?: string | undefined;
|
|
3429
3429
|
};
|
|
3430
3430
|
/**
|
|
3431
3431
|
* Describes the message plugnmeet.GetClientFilesRes.
|
|
@@ -3475,7 +3475,7 @@ export type PlugNmeetToRecorder = Message<"plugnmeet.PlugNmeetToRecorder"> & {
|
|
|
3475
3475
|
/**
|
|
3476
3476
|
* @generated from field: optional string rtmp_url = 9;
|
|
3477
3477
|
*/
|
|
3478
|
-
rtmpUrl?: string;
|
|
3478
|
+
rtmpUrl?: string | undefined;
|
|
3479
3479
|
};
|
|
3480
3480
|
/**
|
|
3481
3481
|
* Describes the message plugnmeet.PlugNmeetToRecorder.
|
|
@@ -3535,7 +3535,7 @@ export type RecorderToPlugNmeet = Message<"plugnmeet.RecorderToPlugNmeet"> & {
|
|
|
3535
3535
|
*
|
|
3536
3536
|
* @generated from field: optional plugnmeet.CloudRecordingVariants recording_variant = 12;
|
|
3537
3537
|
*/
|
|
3538
|
-
recordingVariant?: CloudRecordingVariants;
|
|
3538
|
+
recordingVariant?: CloudRecordingVariants | undefined;
|
|
3539
3539
|
};
|
|
3540
3540
|
/**
|
|
3541
3541
|
* Describes the message plugnmeet.RecorderToPlugNmeet.
|
|
@@ -3710,15 +3710,15 @@ export type RecordingReq = Message<"plugnmeet.RecordingReq"> & {
|
|
|
3710
3710
|
/**
|
|
3711
3711
|
* @generated from field: optional string rtmp_url = 5;
|
|
3712
3712
|
*/
|
|
3713
|
-
rtmpUrl?: string;
|
|
3713
|
+
rtmpUrl?: string | undefined;
|
|
3714
3714
|
/**
|
|
3715
3715
|
* @generated from field: optional string custom_design = 6;
|
|
3716
3716
|
*/
|
|
3717
|
-
customDesign?: string;
|
|
3717
|
+
customDesign?: string | undefined;
|
|
3718
3718
|
/**
|
|
3719
3719
|
* @generated from field: optional plugnmeet.CloudRecordingVariants recording_variant = 7;
|
|
3720
3720
|
*/
|
|
3721
|
-
recordingVariant?: CloudRecordingVariants;
|
|
3721
|
+
recordingVariant?: CloudRecordingVariants | undefined;
|
|
3722
3722
|
};
|
|
3723
3723
|
/**
|
|
3724
3724
|
* Describes the message plugnmeet.RecordingReq.
|
|
@@ -3804,11 +3804,11 @@ export type RecordingMetadata = Message<"plugnmeet.RecordingMetadata"> & {
|
|
|
3804
3804
|
/**
|
|
3805
3805
|
* @generated from field: optional string title = 1;
|
|
3806
3806
|
*/
|
|
3807
|
-
title?: string;
|
|
3807
|
+
title?: string | undefined;
|
|
3808
3808
|
/**
|
|
3809
3809
|
* @generated from field: optional string description = 2;
|
|
3810
3810
|
*/
|
|
3811
|
-
description?: string;
|
|
3811
|
+
description?: string | undefined;
|
|
3812
3812
|
/**
|
|
3813
3813
|
* e.g. map<language, RecordingSubtitle>
|
|
3814
3814
|
*
|
|
@@ -3846,7 +3846,7 @@ export type FetchRecordingsReq = Message<"plugnmeet.FetchRecordingsReq"> & {
|
|
|
3846
3846
|
*
|
|
3847
3847
|
* @generated from field: optional string room_sid = 2;
|
|
3848
3848
|
*/
|
|
3849
|
-
roomSid?: string;
|
|
3849
|
+
roomSid?: string | undefined;
|
|
3850
3850
|
/**
|
|
3851
3851
|
* @generated from field: uint32 from = 3;
|
|
3852
3852
|
*/
|
|
@@ -3900,7 +3900,7 @@ export type RecordingInfo = Message<"plugnmeet.RecordingInfo"> & {
|
|
|
3900
3900
|
/**
|
|
3901
3901
|
* @generated from field: optional plugnmeet.RecordingMetadata metadata = 8;
|
|
3902
3902
|
*/
|
|
3903
|
-
metadata?: RecordingMetadata;
|
|
3903
|
+
metadata?: RecordingMetadata | undefined;
|
|
3904
3904
|
};
|
|
3905
3905
|
/**
|
|
3906
3906
|
* Describes the message plugnmeet.RecordingInfo.
|
|
@@ -3956,7 +3956,7 @@ export type FetchRecordingsRes = Message<"plugnmeet.FetchRecordingsRes"> & {
|
|
|
3956
3956
|
/**
|
|
3957
3957
|
* @generated from field: plugnmeet.FetchRecordingsResult result = 4;
|
|
3958
3958
|
*/
|
|
3959
|
-
result?: FetchRecordingsResult;
|
|
3959
|
+
result?: FetchRecordingsResult | undefined;
|
|
3960
3960
|
};
|
|
3961
3961
|
/**
|
|
3962
3962
|
* Describes the message plugnmeet.FetchRecordingsRes.
|
|
@@ -3996,11 +3996,11 @@ export type RecordingInfoRes = Message<"plugnmeet.RecordingInfoRes"> & {
|
|
|
3996
3996
|
/**
|
|
3997
3997
|
* @generated from field: plugnmeet.RecordingInfo recording_info = 4;
|
|
3998
3998
|
*/
|
|
3999
|
-
recordingInfo?: RecordingInfo;
|
|
3999
|
+
recordingInfo?: RecordingInfo | undefined;
|
|
4000
4000
|
/**
|
|
4001
4001
|
* @generated from field: plugnmeet.PastRoomInfo room_info = 5;
|
|
4002
4002
|
*/
|
|
4003
|
-
roomInfo?: PastRoomInfo;
|
|
4003
|
+
roomInfo?: PastRoomInfo | undefined;
|
|
4004
4004
|
};
|
|
4005
4005
|
/**
|
|
4006
4006
|
* Describes the message plugnmeet.RecordingInfoRes.
|
|
@@ -4076,7 +4076,7 @@ export type GetDownloadTokenRes = Message<"plugnmeet.GetDownloadTokenRes"> & {
|
|
|
4076
4076
|
/**
|
|
4077
4077
|
* @generated from field: optional string token = 4;
|
|
4078
4078
|
*/
|
|
4079
|
-
token?: string;
|
|
4079
|
+
token?: string | undefined;
|
|
4080
4080
|
};
|
|
4081
4081
|
/**
|
|
4082
4082
|
* Describes the message plugnmeet.GetDownloadTokenRes.
|
|
@@ -4094,7 +4094,7 @@ export type UpdateRecordingMetadataReq = Message<"plugnmeet.UpdateRecordingMetad
|
|
|
4094
4094
|
/**
|
|
4095
4095
|
* @generated from field: plugnmeet.RecordingMetadata metadata = 2;
|
|
4096
4096
|
*/
|
|
4097
|
-
metadata?: RecordingMetadata;
|
|
4097
|
+
metadata?: RecordingMetadata | undefined;
|
|
4098
4098
|
};
|
|
4099
4099
|
/**
|
|
4100
4100
|
* Describes the message plugnmeet.UpdateRecordingMetadataReq.
|
|
@@ -4146,7 +4146,7 @@ export type CreateBreakoutRoomsReq = Message<"plugnmeet.CreateBreakoutRoomsReq">
|
|
|
4146
4146
|
/**
|
|
4147
4147
|
* @generated from field: optional string welcome_msg = 4;
|
|
4148
4148
|
*/
|
|
4149
|
-
welcomeMsg?: string;
|
|
4149
|
+
welcomeMsg?: string | undefined;
|
|
4150
4150
|
/**
|
|
4151
4151
|
* @generated from field: repeated plugnmeet.BreakoutRoom rooms = 5;
|
|
4152
4152
|
*/
|
|
@@ -4314,13 +4314,13 @@ export type BreakoutRoomRes = Message<"plugnmeet.BreakoutRoomRes"> & {
|
|
|
4314
4314
|
*
|
|
4315
4315
|
* @generated from field: optional string token = 3;
|
|
4316
4316
|
*/
|
|
4317
|
-
token?: string;
|
|
4317
|
+
token?: string | undefined;
|
|
4318
4318
|
/**
|
|
4319
4319
|
* for my breakout room
|
|
4320
4320
|
*
|
|
4321
4321
|
* @generated from field: optional plugnmeet.BreakoutRoom room = 4;
|
|
4322
4322
|
*/
|
|
4323
|
-
room?: BreakoutRoom;
|
|
4323
|
+
room?: BreakoutRoom | undefined;
|
|
4324
4324
|
/**
|
|
4325
4325
|
* rooms list
|
|
4326
4326
|
*
|
|
@@ -4394,7 +4394,7 @@ export type RoomArtifactUserInfo = Message<"plugnmeet.RoomArtifactUserInfo"> & {
|
|
|
4394
4394
|
/**
|
|
4395
4395
|
* @generated from field: optional string name = 2;
|
|
4396
4396
|
*/
|
|
4397
|
-
name?: string;
|
|
4397
|
+
name?: string | undefined;
|
|
4398
4398
|
};
|
|
4399
4399
|
/**
|
|
4400
4400
|
* Describes the message plugnmeet.RoomArtifactUserInfo.
|
|
@@ -4426,15 +4426,15 @@ export type RoomArtifactTokenUsage = Message<"plugnmeet.RoomArtifactTokenUsage">
|
|
|
4426
4426
|
/**
|
|
4427
4427
|
* @generated from field: optional double prompt_tokens_estimated_cost = 5;
|
|
4428
4428
|
*/
|
|
4429
|
-
promptTokensEstimatedCost?: number;
|
|
4429
|
+
promptTokensEstimatedCost?: number | undefined;
|
|
4430
4430
|
/**
|
|
4431
4431
|
* @generated from field: optional double completion_tokens_estimated_cost = 6;
|
|
4432
4432
|
*/
|
|
4433
|
-
completionTokensEstimatedCost?: number;
|
|
4433
|
+
completionTokensEstimatedCost?: number | undefined;
|
|
4434
4434
|
/**
|
|
4435
4435
|
* @generated from field: optional double total_tokens_estimated_cost = 7;
|
|
4436
4436
|
*/
|
|
4437
|
-
totalTokensEstimatedCost?: number;
|
|
4437
|
+
totalTokensEstimatedCost?: number | undefined;
|
|
4438
4438
|
};
|
|
4439
4439
|
/**
|
|
4440
4440
|
* Describes the message plugnmeet.RoomArtifactTokenUsage.
|
|
@@ -4458,7 +4458,7 @@ export type RoomArtifactDurationUsage = Message<"plugnmeet.RoomArtifactDurationU
|
|
|
4458
4458
|
/**
|
|
4459
4459
|
* @generated from field: optional double duration_sec_estimated_cost = 3;
|
|
4460
4460
|
*/
|
|
4461
|
-
durationSecEstimatedCost?: number;
|
|
4461
|
+
durationSecEstimatedCost?: number | undefined;
|
|
4462
4462
|
};
|
|
4463
4463
|
/**
|
|
4464
4464
|
* Describes the message plugnmeet.RoomArtifactDurationUsage.
|
|
@@ -4482,7 +4482,7 @@ export type RoomArtifactCharacterCountUsage = Message<"plugnmeet.RoomArtifactCha
|
|
|
4482
4482
|
/**
|
|
4483
4483
|
* @generated from field: optional double total_characters_estimated_cost = 3;
|
|
4484
4484
|
*/
|
|
4485
|
-
totalCharactersEstimatedCost?: number;
|
|
4485
|
+
totalCharactersEstimatedCost?: number | undefined;
|
|
4486
4486
|
};
|
|
4487
4487
|
/**
|
|
4488
4488
|
* Describes the message plugnmeet.RoomArtifactCharacterCountUsage.
|
|
@@ -4501,19 +4501,19 @@ export type RoomArtifactMetadata = Message<"plugnmeet.RoomArtifactMetadata"> & {
|
|
|
4501
4501
|
*
|
|
4502
4502
|
* @generated from field: plugnmeet.RoomArtifactUserInfo user_info = 1;
|
|
4503
4503
|
*/
|
|
4504
|
-
userInfo?: RoomArtifactUserInfo;
|
|
4504
|
+
userInfo?: RoomArtifactUserInfo | undefined;
|
|
4505
4505
|
/**
|
|
4506
4506
|
* Optional: Information about an asynchronous provider job.
|
|
4507
4507
|
*
|
|
4508
4508
|
* @generated from field: plugnmeet.RoomArtifactProviderJobInfo provider_job_info = 2;
|
|
4509
4509
|
*/
|
|
4510
|
-
providerJobInfo?: RoomArtifactProviderJobInfo;
|
|
4510
|
+
providerJobInfo?: RoomArtifactProviderJobInfo | undefined;
|
|
4511
4511
|
/**
|
|
4512
4512
|
* Optional: Information about the final generated file artifact.
|
|
4513
4513
|
*
|
|
4514
4514
|
* @generated from field: plugnmeet.RoomArtifactFileInfo file_info = 3;
|
|
4515
4515
|
*/
|
|
4516
|
-
fileInfo?: RoomArtifactFileInfo;
|
|
4516
|
+
fileInfo?: RoomArtifactFileInfo | undefined;
|
|
4517
4517
|
/**
|
|
4518
4518
|
* A field for different types of usage metrics.
|
|
4519
4519
|
*
|
|
@@ -4546,7 +4546,7 @@ export type RoomArtifactMetadata = Message<"plugnmeet.RoomArtifactMetadata"> & {
|
|
|
4546
4546
|
*
|
|
4547
4547
|
* @generated from field: optional string reference_artifact_id = 10;
|
|
4548
4548
|
*/
|
|
4549
|
-
referenceArtifactId?: string;
|
|
4549
|
+
referenceArtifactId?: string | undefined;
|
|
4550
4550
|
};
|
|
4551
4551
|
/**
|
|
4552
4552
|
* Describes the message plugnmeet.RoomArtifactMetadata.
|
|
@@ -4570,7 +4570,7 @@ export type RoomArtifactWebhookEvent = Message<"plugnmeet.RoomArtifactWebhookEve
|
|
|
4570
4570
|
/**
|
|
4571
4571
|
* @generated from field: plugnmeet.RoomArtifactMetadata metadata = 3;
|
|
4572
4572
|
*/
|
|
4573
|
-
metadata?: RoomArtifactMetadata;
|
|
4573
|
+
metadata?: RoomArtifactMetadata | undefined;
|
|
4574
4574
|
};
|
|
4575
4575
|
/**
|
|
4576
4576
|
* Describes the message plugnmeet.RoomArtifactWebhookEvent.
|
|
@@ -4637,43 +4637,43 @@ export type CommonNotifyEvent = Message<"plugnmeet.CommonNotifyEvent"> & {
|
|
|
4637
4637
|
/**
|
|
4638
4638
|
* @generated from field: optional string event = 1;
|
|
4639
4639
|
*/
|
|
4640
|
-
event?: string;
|
|
4640
|
+
event?: string | undefined;
|
|
4641
4641
|
/**
|
|
4642
4642
|
* @generated from field: optional plugnmeet.NotifyEventRoom room = 2;
|
|
4643
4643
|
*/
|
|
4644
|
-
room?: NotifyEventRoom;
|
|
4644
|
+
room?: NotifyEventRoom | undefined;
|
|
4645
4645
|
/**
|
|
4646
4646
|
* @generated from field: optional livekit.ParticipantInfo participant = 3;
|
|
4647
4647
|
*/
|
|
4648
|
-
participant?: ParticipantInfo;
|
|
4648
|
+
participant?: ParticipantInfo | undefined;
|
|
4649
4649
|
/**
|
|
4650
4650
|
* @generated from field: optional plugnmeet.RecordingInfoEvent recording_info = 4;
|
|
4651
4651
|
*/
|
|
4652
|
-
recordingInfo?: RecordingInfoEvent;
|
|
4652
|
+
recordingInfo?: RecordingInfoEvent | undefined;
|
|
4653
4653
|
/**
|
|
4654
4654
|
* @generated from field: optional plugnmeet.SpeechServiceEvent speech_service = 5;
|
|
4655
4655
|
*/
|
|
4656
|
-
speechService?: SpeechServiceEvent;
|
|
4656
|
+
speechService?: SpeechServiceEvent | undefined;
|
|
4657
4657
|
/**
|
|
4658
4658
|
* @generated from field: optional livekit.TrackInfo track = 6;
|
|
4659
4659
|
*/
|
|
4660
|
-
track?: TrackInfo;
|
|
4660
|
+
track?: TrackInfo | undefined;
|
|
4661
4661
|
/**
|
|
4662
4662
|
* @generated from field: optional plugnmeet.AnalyticsEvent analytics = 7;
|
|
4663
4663
|
*/
|
|
4664
|
-
analytics?: AnalyticsEvent;
|
|
4664
|
+
analytics?: AnalyticsEvent | undefined;
|
|
4665
4665
|
/**
|
|
4666
4666
|
* @generated from field: optional plugnmeet.RoomArtifactWebhookEvent room_artifact = 8;
|
|
4667
4667
|
*/
|
|
4668
|
-
roomArtifact?: RoomArtifactWebhookEvent;
|
|
4668
|
+
roomArtifact?: RoomArtifactWebhookEvent | undefined;
|
|
4669
4669
|
/**
|
|
4670
4670
|
* @generated from field: optional string id = 9;
|
|
4671
4671
|
*/
|
|
4672
|
-
id?: string;
|
|
4672
|
+
id?: string | undefined;
|
|
4673
4673
|
/**
|
|
4674
4674
|
* @generated from field: optional int64 created_at = 10 [jstype = JS_STRING];
|
|
4675
4675
|
*/
|
|
4676
|
-
createdAt?: string;
|
|
4676
|
+
createdAt?: string | undefined;
|
|
4677
4677
|
};
|
|
4678
4678
|
/**
|
|
4679
4679
|
* Describes the message plugnmeet.CommonNotifyEvent.
|
|
@@ -4687,23 +4687,23 @@ export type NotifyEventRoom = Message<"plugnmeet.NotifyEventRoom"> & {
|
|
|
4687
4687
|
/**
|
|
4688
4688
|
* @generated from field: optional string sid = 1;
|
|
4689
4689
|
*/
|
|
4690
|
-
sid?: string;
|
|
4690
|
+
sid?: string | undefined;
|
|
4691
4691
|
/**
|
|
4692
4692
|
* @generated from field: optional string room_id = 2;
|
|
4693
4693
|
*/
|
|
4694
|
-
roomId?: string;
|
|
4694
|
+
roomId?: string | undefined;
|
|
4695
4695
|
/**
|
|
4696
4696
|
* @generated from field: optional uint32 empty_timeout = 3;
|
|
4697
4697
|
*/
|
|
4698
|
-
emptyTimeout?: number;
|
|
4698
|
+
emptyTimeout?: number | undefined;
|
|
4699
4699
|
/**
|
|
4700
4700
|
* @generated from field: optional uint32 max_participants = 4;
|
|
4701
4701
|
*/
|
|
4702
|
-
maxParticipants?: number;
|
|
4702
|
+
maxParticipants?: number | undefined;
|
|
4703
4703
|
/**
|
|
4704
4704
|
* @generated from field: optional uint64 creation_time = 5 [jstype = JS_STRING];
|
|
4705
4705
|
*/
|
|
4706
|
-
creationTime?: string;
|
|
4706
|
+
creationTime?: string | undefined;
|
|
4707
4707
|
/**
|
|
4708
4708
|
* @generated from field: repeated livekit.Codec enabled_codecs = 6;
|
|
4709
4709
|
*/
|
|
@@ -4711,11 +4711,11 @@ export type NotifyEventRoom = Message<"plugnmeet.NotifyEventRoom"> & {
|
|
|
4711
4711
|
/**
|
|
4712
4712
|
* @generated from field: optional string metadata = 7;
|
|
4713
4713
|
*/
|
|
4714
|
-
metadata?: string;
|
|
4714
|
+
metadata?: string | undefined;
|
|
4715
4715
|
/**
|
|
4716
4716
|
* @generated from field: optional uint32 num_participants = 8;
|
|
4717
4717
|
*/
|
|
4718
|
-
numParticipants?: number;
|
|
4718
|
+
numParticipants?: number | undefined;
|
|
4719
4719
|
};
|
|
4720
4720
|
/**
|
|
4721
4721
|
* Describes the message plugnmeet.NotifyEventRoom.
|
|
@@ -4741,11 +4741,11 @@ export type RecordingInfoEvent = Message<"plugnmeet.RecordingInfoEvent"> & {
|
|
|
4741
4741
|
/**
|
|
4742
4742
|
* @generated from field: optional string file_path = 4;
|
|
4743
4743
|
*/
|
|
4744
|
-
filePath?: string;
|
|
4744
|
+
filePath?: string | undefined;
|
|
4745
4745
|
/**
|
|
4746
4746
|
* @generated from field: optional float file_size = 5;
|
|
4747
4747
|
*/
|
|
4748
|
-
fileSize?: number;
|
|
4748
|
+
fileSize?: number | undefined;
|
|
4749
4749
|
};
|
|
4750
4750
|
/**
|
|
4751
4751
|
* Describes the message plugnmeet.RecordingInfoEvent.
|
|
@@ -4759,7 +4759,7 @@ export type SpeechServiceEvent = Message<"plugnmeet.SpeechServiceEvent"> & {
|
|
|
4759
4759
|
/**
|
|
4760
4760
|
* @generated from field: optional string user_id = 3;
|
|
4761
4761
|
*/
|
|
4762
|
-
userId?: string;
|
|
4762
|
+
userId?: string | undefined;
|
|
4763
4763
|
/**
|
|
4764
4764
|
* @generated from field: int64 total_usage = 4 [jstype = JS_STRING];
|
|
4765
4765
|
*/
|
|
@@ -4777,7 +4777,7 @@ export type AnalyticsEvent = Message<"plugnmeet.AnalyticsEvent"> & {
|
|
|
4777
4777
|
/**
|
|
4778
4778
|
* @generated from field: optional string file_id = 1;
|
|
4779
4779
|
*/
|
|
4780
|
-
fileId?: string;
|
|
4780
|
+
fileId?: string | undefined;
|
|
4781
4781
|
};
|
|
4782
4782
|
/**
|
|
4783
4783
|
* Describes the message plugnmeet.AnalyticsEvent.
|
|
@@ -4799,7 +4799,7 @@ export type GenerateTokenReq = Message<"plugnmeet.GenerateTokenReq"> & {
|
|
|
4799
4799
|
/**
|
|
4800
4800
|
* @generated from field: plugnmeet.UserInfo user_info = 2;
|
|
4801
4801
|
*/
|
|
4802
|
-
userInfo?: UserInfo;
|
|
4802
|
+
userInfo?: UserInfo | undefined;
|
|
4803
4803
|
};
|
|
4804
4804
|
/**
|
|
4805
4805
|
* Describes the message plugnmeet.GenerateTokenReq.
|
|
@@ -4829,7 +4829,7 @@ export type UserInfo = Message<"plugnmeet.UserInfo"> & {
|
|
|
4829
4829
|
/**
|
|
4830
4830
|
* @generated from field: plugnmeet.UserMetadata user_metadata = 5;
|
|
4831
4831
|
*/
|
|
4832
|
-
userMetadata?: UserMetadata;
|
|
4832
|
+
userMetadata?: UserMetadata | undefined;
|
|
4833
4833
|
};
|
|
4834
4834
|
/**
|
|
4835
4835
|
* Describes the message plugnmeet.UserInfo.
|
|
@@ -4843,7 +4843,7 @@ export type UserMetadata = Message<"plugnmeet.UserMetadata"> & {
|
|
|
4843
4843
|
/**
|
|
4844
4844
|
* @generated from field: optional string profile_pic = 1;
|
|
4845
4845
|
*/
|
|
4846
|
-
profilePic?: string;
|
|
4846
|
+
profilePic?: string | undefined;
|
|
4847
4847
|
/**
|
|
4848
4848
|
* @generated from field: bool is_admin = 2;
|
|
4849
4849
|
*/
|
|
@@ -4851,7 +4851,7 @@ export type UserMetadata = Message<"plugnmeet.UserMetadata"> & {
|
|
|
4851
4851
|
/**
|
|
4852
4852
|
* @generated from field: optional bool record_webcam = 3;
|
|
4853
4853
|
*/
|
|
4854
|
-
recordWebcam?: boolean;
|
|
4854
|
+
recordWebcam?: boolean | undefined;
|
|
4855
4855
|
/**
|
|
4856
4856
|
* @generated from field: bool is_presenter = 4;
|
|
4857
4857
|
*/
|
|
@@ -4867,17 +4867,17 @@ export type UserMetadata = Message<"plugnmeet.UserMetadata"> & {
|
|
|
4867
4867
|
/**
|
|
4868
4868
|
* @generated from field: optional string preferred_lang = 7;
|
|
4869
4869
|
*/
|
|
4870
|
-
preferredLang?: string;
|
|
4870
|
+
preferredLang?: string | undefined;
|
|
4871
4871
|
/**
|
|
4872
4872
|
* @generated from field: plugnmeet.LockSettings lock_settings = 8;
|
|
4873
4873
|
*/
|
|
4874
|
-
lockSettings?: LockSettings;
|
|
4874
|
+
lockSettings?: LockSettings | undefined;
|
|
4875
4875
|
/**
|
|
4876
4876
|
* we'll use this as version control
|
|
4877
4877
|
*
|
|
4878
4878
|
* @generated from field: optional string metadata_id = 9;
|
|
4879
4879
|
*/
|
|
4880
|
-
metadataId?: string;
|
|
4880
|
+
metadataId?: string | undefined;
|
|
4881
4881
|
/**
|
|
4882
4882
|
* @generated from field: map<string, string> extra_data = 10;
|
|
4883
4883
|
*/
|
|
@@ -4891,7 +4891,7 @@ export type UserMetadata = Message<"plugnmeet.UserMetadata"> & {
|
|
|
4891
4891
|
*
|
|
4892
4892
|
* @generated from field: optional string ex_user_id = 11;
|
|
4893
4893
|
*/
|
|
4894
|
-
exUserId?: string;
|
|
4894
|
+
exUserId?: string | undefined;
|
|
4895
4895
|
};
|
|
4896
4896
|
/**
|
|
4897
4897
|
* Describes the message plugnmeet.UserMetadata.
|
|
@@ -4935,39 +4935,39 @@ export type LockSettings = Message<"plugnmeet.LockSettings"> & {
|
|
|
4935
4935
|
/**
|
|
4936
4936
|
* @generated from field: optional bool lock_microphone = 1;
|
|
4937
4937
|
*/
|
|
4938
|
-
lockMicrophone?: boolean;
|
|
4938
|
+
lockMicrophone?: boolean | undefined;
|
|
4939
4939
|
/**
|
|
4940
4940
|
* @generated from field: optional bool lock_webcam = 2;
|
|
4941
4941
|
*/
|
|
4942
|
-
lockWebcam?: boolean;
|
|
4942
|
+
lockWebcam?: boolean | undefined;
|
|
4943
4943
|
/**
|
|
4944
4944
|
* @generated from field: optional bool lock_screen_sharing = 3;
|
|
4945
4945
|
*/
|
|
4946
|
-
lockScreenSharing?: boolean;
|
|
4946
|
+
lockScreenSharing?: boolean | undefined;
|
|
4947
4947
|
/**
|
|
4948
4948
|
* @generated from field: optional bool lock_chat = 4;
|
|
4949
4949
|
*/
|
|
4950
|
-
lockChat?: boolean;
|
|
4950
|
+
lockChat?: boolean | undefined;
|
|
4951
4951
|
/**
|
|
4952
4952
|
* @generated from field: optional bool lock_chat_send_message = 5;
|
|
4953
4953
|
*/
|
|
4954
|
-
lockChatSendMessage?: boolean;
|
|
4954
|
+
lockChatSendMessage?: boolean | undefined;
|
|
4955
4955
|
/**
|
|
4956
4956
|
* @generated from field: optional bool lock_chat_file_share = 6;
|
|
4957
4957
|
*/
|
|
4958
|
-
lockChatFileShare?: boolean;
|
|
4958
|
+
lockChatFileShare?: boolean | undefined;
|
|
4959
4959
|
/**
|
|
4960
4960
|
* @generated from field: optional bool lock_private_chat = 7;
|
|
4961
4961
|
*/
|
|
4962
|
-
lockPrivateChat?: boolean;
|
|
4962
|
+
lockPrivateChat?: boolean | undefined;
|
|
4963
4963
|
/**
|
|
4964
4964
|
* @generated from field: optional bool lock_whiteboard = 8;
|
|
4965
4965
|
*/
|
|
4966
|
-
lockWhiteboard?: boolean;
|
|
4966
|
+
lockWhiteboard?: boolean | undefined;
|
|
4967
4967
|
/**
|
|
4968
4968
|
* @generated from field: optional bool lock_shared_notepad = 9;
|
|
4969
4969
|
*/
|
|
4970
|
-
lockSharedNotepad?: boolean;
|
|
4970
|
+
lockSharedNotepad?: boolean | undefined;
|
|
4971
4971
|
};
|
|
4972
4972
|
/**
|
|
4973
4973
|
* Describes the message plugnmeet.LockSettings.
|
|
@@ -4993,7 +4993,7 @@ export type GenerateTokenRes = Message<"plugnmeet.GenerateTokenRes"> & {
|
|
|
4993
4993
|
/**
|
|
4994
4994
|
* @generated from field: optional string token = 4;
|
|
4995
4995
|
*/
|
|
4996
|
-
token?: string;
|
|
4996
|
+
token?: string | undefined;
|
|
4997
4997
|
};
|
|
4998
4998
|
/**
|
|
4999
4999
|
* Describes the message plugnmeet.GenerateTokenRes.
|
|
@@ -5007,43 +5007,43 @@ export type CustomDesignParams = Message<"plugnmeet.CustomDesignParams"> & {
|
|
|
5007
5007
|
/**
|
|
5008
5008
|
* @generated from field: optional string primary_color = 1;
|
|
5009
5009
|
*/
|
|
5010
|
-
primaryColor?: string;
|
|
5010
|
+
primaryColor?: string | undefined;
|
|
5011
5011
|
/**
|
|
5012
5012
|
* @generated from field: optional string secondary_color = 2;
|
|
5013
5013
|
*/
|
|
5014
|
-
secondaryColor?: string;
|
|
5014
|
+
secondaryColor?: string | undefined;
|
|
5015
5015
|
/**
|
|
5016
5016
|
* @generated from field: optional string background_color = 3;
|
|
5017
5017
|
*/
|
|
5018
|
-
backgroundColor?: string;
|
|
5018
|
+
backgroundColor?: string | undefined;
|
|
5019
5019
|
/**
|
|
5020
5020
|
* @generated from field: optional string background_image = 4;
|
|
5021
5021
|
*/
|
|
5022
|
-
backgroundImage?: string;
|
|
5022
|
+
backgroundImage?: string | undefined;
|
|
5023
5023
|
/**
|
|
5024
5024
|
* @generated from field: optional string header_bg_color = 5;
|
|
5025
5025
|
*/
|
|
5026
|
-
headerBgColor?: string;
|
|
5026
|
+
headerBgColor?: string | undefined;
|
|
5027
5027
|
/**
|
|
5028
5028
|
* @generated from field: optional string footer_bg_color = 6;
|
|
5029
5029
|
*/
|
|
5030
|
-
footerBgColor?: string;
|
|
5030
|
+
footerBgColor?: string | undefined;
|
|
5031
5031
|
/**
|
|
5032
5032
|
* @generated from field: optional string left_side_bg_color = 7;
|
|
5033
5033
|
*/
|
|
5034
|
-
leftSideBgColor?: string;
|
|
5034
|
+
leftSideBgColor?: string | undefined;
|
|
5035
5035
|
/**
|
|
5036
5036
|
* @generated from field: optional string right_side_bg_color = 8;
|
|
5037
5037
|
*/
|
|
5038
|
-
rightSideBgColor?: string;
|
|
5038
|
+
rightSideBgColor?: string | undefined;
|
|
5039
5039
|
/**
|
|
5040
5040
|
* @generated from field: optional string custom_css_url = 9;
|
|
5041
5041
|
*/
|
|
5042
|
-
customCssUrl?: string;
|
|
5042
|
+
customCssUrl?: string | undefined;
|
|
5043
5043
|
/**
|
|
5044
5044
|
* @generated from field: optional string custom_logo = 10;
|
|
5045
5045
|
*/
|
|
5046
|
-
customLogo?: string;
|
|
5046
|
+
customLogo?: string | undefined;
|
|
5047
5047
|
};
|
|
5048
5048
|
/**
|
|
5049
5049
|
* Describes the message plugnmeet.CustomDesignParams.
|
|
@@ -5138,15 +5138,15 @@ export type CreateRoomReq = Message<"plugnmeet.CreateRoomReq"> & {
|
|
|
5138
5138
|
/**
|
|
5139
5139
|
* @generated from field: optional uint32 empty_timeout = 2;
|
|
5140
5140
|
*/
|
|
5141
|
-
emptyTimeout?: number;
|
|
5141
|
+
emptyTimeout?: number | undefined;
|
|
5142
5142
|
/**
|
|
5143
5143
|
* @generated from field: optional uint32 max_participants = 3;
|
|
5144
5144
|
*/
|
|
5145
|
-
maxParticipants?: number;
|
|
5145
|
+
maxParticipants?: number | undefined;
|
|
5146
5146
|
/**
|
|
5147
5147
|
* @generated from field: plugnmeet.RoomMetadata metadata = 4;
|
|
5148
5148
|
*/
|
|
5149
|
-
metadata?: RoomMetadata;
|
|
5149
|
+
metadata?: RoomMetadata | undefined;
|
|
5150
5150
|
};
|
|
5151
5151
|
/**
|
|
5152
5152
|
* Describes the message plugnmeet.CreateRoomReq.
|
|
@@ -5164,7 +5164,7 @@ export type RoomMetadata = Message<"plugnmeet.RoomMetadata"> & {
|
|
|
5164
5164
|
/**
|
|
5165
5165
|
* @generated from field: optional string welcome_message = 2;
|
|
5166
5166
|
*/
|
|
5167
|
-
welcomeMessage?: string;
|
|
5167
|
+
welcomeMessage?: string | undefined;
|
|
5168
5168
|
/**
|
|
5169
5169
|
* @generated from field: bool is_recording = 3;
|
|
5170
5170
|
*/
|
|
@@ -5184,7 +5184,7 @@ export type RoomMetadata = Message<"plugnmeet.RoomMetadata"> & {
|
|
|
5184
5184
|
/**
|
|
5185
5185
|
* @generated from field: optional string webhook_url = 7;
|
|
5186
5186
|
*/
|
|
5187
|
-
webhookUrl?: string;
|
|
5187
|
+
webhookUrl?: string | undefined;
|
|
5188
5188
|
/**
|
|
5189
5189
|
* @generated from field: uint64 started_at = 8 [jstype = JS_STRING];
|
|
5190
5190
|
*/
|
|
@@ -5192,25 +5192,25 @@ export type RoomMetadata = Message<"plugnmeet.RoomMetadata"> & {
|
|
|
5192
5192
|
/**
|
|
5193
5193
|
* @generated from field: optional string logout_url = 9;
|
|
5194
5194
|
*/
|
|
5195
|
-
logoutUrl?: string;
|
|
5195
|
+
logoutUrl?: string | undefined;
|
|
5196
5196
|
/**
|
|
5197
5197
|
* @generated from field: plugnmeet.RoomCreateFeatures room_features = 10;
|
|
5198
5198
|
*/
|
|
5199
|
-
roomFeatures?: RoomCreateFeatures;
|
|
5199
|
+
roomFeatures?: RoomCreateFeatures | undefined;
|
|
5200
5200
|
/**
|
|
5201
5201
|
* @generated from field: plugnmeet.LockSettings default_lock_settings = 11;
|
|
5202
5202
|
*/
|
|
5203
|
-
defaultLockSettings?: LockSettings;
|
|
5203
|
+
defaultLockSettings?: LockSettings | undefined;
|
|
5204
5204
|
/**
|
|
5205
5205
|
* @generated from field: plugnmeet.CopyrightConf copyright_conf = 12;
|
|
5206
5206
|
*/
|
|
5207
|
-
copyrightConf?: CopyrightConf;
|
|
5207
|
+
copyrightConf?: CopyrightConf | undefined;
|
|
5208
5208
|
/**
|
|
5209
5209
|
* we'll use this as version control
|
|
5210
5210
|
*
|
|
5211
5211
|
* @generated from field: optional string metadata_id = 13;
|
|
5212
5212
|
*/
|
|
5213
|
-
metadataId?: string;
|
|
5213
|
+
metadataId?: string | undefined;
|
|
5214
5214
|
/**
|
|
5215
5215
|
* @generated from field: map<string, string> extra_data = 14;
|
|
5216
5216
|
*/
|
|
@@ -5261,11 +5261,11 @@ export type RoomCreateFeatures = Message<"plugnmeet.RoomCreateFeatures"> & {
|
|
|
5261
5261
|
* @generated from field: optional bool allow_polls = 8 [deprecated = true];
|
|
5262
5262
|
* @deprecated
|
|
5263
5263
|
*/
|
|
5264
|
-
allowPolls?: boolean;
|
|
5264
|
+
allowPolls?: boolean | undefined;
|
|
5265
5265
|
/**
|
|
5266
5266
|
* @generated from field: optional uint64 room_duration = 9 [jstype = JS_STRING];
|
|
5267
5267
|
*/
|
|
5268
|
-
roomDuration?: string;
|
|
5268
|
+
roomDuration?: string | undefined;
|
|
5269
5269
|
/**
|
|
5270
5270
|
* @generated from field: bool enable_analytics = 10;
|
|
5271
5271
|
*/
|
|
@@ -5273,76 +5273,76 @@ export type RoomCreateFeatures = Message<"plugnmeet.RoomCreateFeatures"> & {
|
|
|
5273
5273
|
/**
|
|
5274
5274
|
* @generated from field: optional bool allow_virtual_bg = 11;
|
|
5275
5275
|
*/
|
|
5276
|
-
allowVirtualBg?: boolean;
|
|
5276
|
+
allowVirtualBg?: boolean | undefined;
|
|
5277
5277
|
/**
|
|
5278
5278
|
* @generated from field: optional bool allow_raise_hand = 12;
|
|
5279
5279
|
*/
|
|
5280
|
-
allowRaiseHand?: boolean;
|
|
5280
|
+
allowRaiseHand?: boolean | undefined;
|
|
5281
5281
|
/**
|
|
5282
5282
|
* @generated from field: optional bool auto_gen_user_id = 13;
|
|
5283
5283
|
*/
|
|
5284
|
-
autoGenUserId?: boolean;
|
|
5284
|
+
autoGenUserId?: boolean | undefined;
|
|
5285
5285
|
/**
|
|
5286
5286
|
* @generated from field: plugnmeet.RecordingFeatures recording_features = 14;
|
|
5287
5287
|
*/
|
|
5288
|
-
recordingFeatures?: RecordingFeatures;
|
|
5288
|
+
recordingFeatures?: RecordingFeatures | undefined;
|
|
5289
5289
|
/**
|
|
5290
5290
|
* @generated from field: plugnmeet.ChatFeatures chat_features = 15;
|
|
5291
5291
|
*/
|
|
5292
|
-
chatFeatures?: ChatFeatures;
|
|
5292
|
+
chatFeatures?: ChatFeatures | undefined;
|
|
5293
5293
|
/**
|
|
5294
5294
|
* @generated from field: plugnmeet.SharedNotePadFeatures shared_note_pad_features = 16;
|
|
5295
5295
|
*/
|
|
5296
|
-
sharedNotePadFeatures?: SharedNotePadFeatures;
|
|
5296
|
+
sharedNotePadFeatures?: SharedNotePadFeatures | undefined;
|
|
5297
5297
|
/**
|
|
5298
5298
|
* @generated from field: plugnmeet.WhiteboardFeatures whiteboard_features = 17;
|
|
5299
5299
|
*/
|
|
5300
|
-
whiteboardFeatures?: WhiteboardFeatures;
|
|
5300
|
+
whiteboardFeatures?: WhiteboardFeatures | undefined;
|
|
5301
5301
|
/**
|
|
5302
5302
|
* @generated from field: plugnmeet.ExternalMediaPlayerFeatures external_media_player_features = 18;
|
|
5303
5303
|
*/
|
|
5304
|
-
externalMediaPlayerFeatures?: ExternalMediaPlayerFeatures;
|
|
5304
|
+
externalMediaPlayerFeatures?: ExternalMediaPlayerFeatures | undefined;
|
|
5305
5305
|
/**
|
|
5306
5306
|
* @generated from field: plugnmeet.WaitingRoomFeatures waiting_room_features = 19;
|
|
5307
5307
|
*/
|
|
5308
|
-
waitingRoomFeatures?: WaitingRoomFeatures;
|
|
5308
|
+
waitingRoomFeatures?: WaitingRoomFeatures | undefined;
|
|
5309
5309
|
/**
|
|
5310
5310
|
* @generated from field: plugnmeet.BreakoutRoomFeatures breakout_room_features = 20;
|
|
5311
5311
|
*/
|
|
5312
|
-
breakoutRoomFeatures?: BreakoutRoomFeatures;
|
|
5312
|
+
breakoutRoomFeatures?: BreakoutRoomFeatures | undefined;
|
|
5313
5313
|
/**
|
|
5314
5314
|
* @generated from field: plugnmeet.DisplayExternalLinkFeatures display_external_link_features = 21;
|
|
5315
5315
|
*/
|
|
5316
|
-
displayExternalLinkFeatures?: DisplayExternalLinkFeatures;
|
|
5316
|
+
displayExternalLinkFeatures?: DisplayExternalLinkFeatures | undefined;
|
|
5317
5317
|
/**
|
|
5318
5318
|
* @generated from field: plugnmeet.IngressFeatures ingress_features = 22;
|
|
5319
5319
|
*/
|
|
5320
|
-
ingressFeatures?: IngressFeatures;
|
|
5320
|
+
ingressFeatures?: IngressFeatures | undefined;
|
|
5321
5321
|
/**
|
|
5322
5322
|
* deprecated use insights_features
|
|
5323
5323
|
*
|
|
5324
5324
|
* @generated from field: plugnmeet.SpeechToTextTranslationFeatures speech_to_text_translation_features = 23 [deprecated = true];
|
|
5325
5325
|
* @deprecated
|
|
5326
5326
|
*/
|
|
5327
|
-
speechToTextTranslationFeatures?: SpeechToTextTranslationFeatures;
|
|
5327
|
+
speechToTextTranslationFeatures?: SpeechToTextTranslationFeatures | undefined;
|
|
5328
5328
|
/**
|
|
5329
5329
|
* @generated from field: plugnmeet.EndToEndEncryptionFeatures end_to_end_encryption_features = 24;
|
|
5330
5330
|
*/
|
|
5331
|
-
endToEndEncryptionFeatures?: EndToEndEncryptionFeatures;
|
|
5331
|
+
endToEndEncryptionFeatures?: EndToEndEncryptionFeatures | undefined;
|
|
5332
5332
|
/**
|
|
5333
5333
|
* @generated from field: plugnmeet.PollsFeatures polls_features = 25;
|
|
5334
5334
|
*/
|
|
5335
|
-
pollsFeatures?: PollsFeatures;
|
|
5335
|
+
pollsFeatures?: PollsFeatures | undefined;
|
|
5336
5336
|
/**
|
|
5337
5337
|
* @generated from field: plugnmeet.InsightsFeatures insights_features = 26;
|
|
5338
5338
|
*/
|
|
5339
|
-
insightsFeatures?: InsightsFeatures;
|
|
5339
|
+
insightsFeatures?: InsightsFeatures | undefined;
|
|
5340
5340
|
/**
|
|
5341
5341
|
* next ID: 28
|
|
5342
5342
|
*
|
|
5343
5343
|
* @generated from field: plugnmeet.SipDialInFeatures sip_dial_in_features = 27;
|
|
5344
5344
|
*/
|
|
5345
|
-
sipDialInFeatures?: SipDialInFeatures;
|
|
5345
|
+
sipDialInFeatures?: SipDialInFeatures | undefined;
|
|
5346
5346
|
};
|
|
5347
5347
|
/**
|
|
5348
5348
|
* Describes the message plugnmeet.RoomCreateFeatures.
|
|
@@ -5357,12 +5357,12 @@ export type ChatFeatures = Message<"plugnmeet.ChatFeatures"> & {
|
|
|
5357
5357
|
* @generated from field: optional bool allow_chat = 1 [deprecated = true];
|
|
5358
5358
|
* @deprecated
|
|
5359
5359
|
*/
|
|
5360
|
-
allowChat?: boolean;
|
|
5360
|
+
allowChat?: boolean | undefined;
|
|
5361
5361
|
/**
|
|
5362
5362
|
* @generated from field: optional bool allow_file_upload = 2 [deprecated = true];
|
|
5363
5363
|
* @deprecated
|
|
5364
5364
|
*/
|
|
5365
|
-
allowFileUpload?: boolean;
|
|
5365
|
+
allowFileUpload?: boolean | undefined;
|
|
5366
5366
|
/**
|
|
5367
5367
|
* @generated from field: bool is_allow = 5;
|
|
5368
5368
|
*/
|
|
@@ -5378,7 +5378,7 @@ export type ChatFeatures = Message<"plugnmeet.ChatFeatures"> & {
|
|
|
5378
5378
|
/**
|
|
5379
5379
|
* @generated from field: optional uint64 max_file_size = 4 [jstype = JS_STRING];
|
|
5380
5380
|
*/
|
|
5381
|
-
maxFileSize?: string;
|
|
5381
|
+
maxFileSize?: string | undefined;
|
|
5382
5382
|
};
|
|
5383
5383
|
/**
|
|
5384
5384
|
* Describes the message plugnmeet.ChatFeatures.
|
|
@@ -5393,7 +5393,7 @@ export type SharedNotePadFeatures = Message<"plugnmeet.SharedNotePadFeatures"> &
|
|
|
5393
5393
|
* @generated from field: optional bool allowed_shared_note_pad = 1 [deprecated = true];
|
|
5394
5394
|
* @deprecated
|
|
5395
5395
|
*/
|
|
5396
|
-
allowedSharedNotePad?: boolean;
|
|
5396
|
+
allowedSharedNotePad?: boolean | undefined;
|
|
5397
5397
|
/**
|
|
5398
5398
|
* @generated from field: bool is_allow = 8;
|
|
5399
5399
|
*/
|
|
@@ -5436,7 +5436,7 @@ export type WhiteboardFeatures = Message<"plugnmeet.WhiteboardFeatures"> & {
|
|
|
5436
5436
|
* @generated from field: optional bool allowed_whiteboard = 1 [deprecated = true];
|
|
5437
5437
|
* @deprecated
|
|
5438
5438
|
*/
|
|
5439
|
-
allowedWhiteboard?: boolean;
|
|
5439
|
+
allowedWhiteboard?: boolean | undefined;
|
|
5440
5440
|
/**
|
|
5441
5441
|
* @generated from field: bool is_allow = 9;
|
|
5442
5442
|
*/
|
|
@@ -5448,7 +5448,7 @@ export type WhiteboardFeatures = Message<"plugnmeet.WhiteboardFeatures"> & {
|
|
|
5448
5448
|
/**
|
|
5449
5449
|
* @generated from field: optional string preload_file = 3;
|
|
5450
5450
|
*/
|
|
5451
|
-
preloadFile?: string;
|
|
5451
|
+
preloadFile?: string | undefined;
|
|
5452
5452
|
/**
|
|
5453
5453
|
* @generated from field: string whiteboard_file_id = 4;
|
|
5454
5454
|
*/
|
|
@@ -5468,7 +5468,7 @@ export type WhiteboardFeatures = Message<"plugnmeet.WhiteboardFeatures"> & {
|
|
|
5468
5468
|
/**
|
|
5469
5469
|
* @generated from field: optional uint64 max_allowed_file_size = 8 [jstype = JS_STRING];
|
|
5470
5470
|
*/
|
|
5471
|
-
maxAllowedFileSize?: string;
|
|
5471
|
+
maxAllowedFileSize?: string | undefined;
|
|
5472
5472
|
};
|
|
5473
5473
|
/**
|
|
5474
5474
|
* Describes the message plugnmeet.WhiteboardFeatures.
|
|
@@ -5483,7 +5483,7 @@ export type ExternalMediaPlayerFeatures = Message<"plugnmeet.ExternalMediaPlayer
|
|
|
5483
5483
|
* @generated from field: optional bool allowed_external_media_player = 1 [deprecated = true];
|
|
5484
5484
|
* @deprecated
|
|
5485
5485
|
*/
|
|
5486
|
-
allowedExternalMediaPlayer?: boolean;
|
|
5486
|
+
allowedExternalMediaPlayer?: boolean | undefined;
|
|
5487
5487
|
/**
|
|
5488
5488
|
* @generated from field: bool is_allow = 5;
|
|
5489
5489
|
*/
|
|
@@ -5495,11 +5495,11 @@ export type ExternalMediaPlayerFeatures = Message<"plugnmeet.ExternalMediaPlayer
|
|
|
5495
5495
|
/**
|
|
5496
5496
|
* @generated from field: optional string shared_by = 3;
|
|
5497
5497
|
*/
|
|
5498
|
-
sharedBy?: string;
|
|
5498
|
+
sharedBy?: string | undefined;
|
|
5499
5499
|
/**
|
|
5500
5500
|
* @generated from field: optional string url = 4;
|
|
5501
5501
|
*/
|
|
5502
|
-
url?: string;
|
|
5502
|
+
url?: string | undefined;
|
|
5503
5503
|
};
|
|
5504
5504
|
/**
|
|
5505
5505
|
* Describes the message plugnmeet.ExternalMediaPlayerFeatures.
|
|
@@ -5561,11 +5561,11 @@ export type DisplayExternalLinkFeatures = Message<"plugnmeet.DisplayExternalLink
|
|
|
5561
5561
|
/**
|
|
5562
5562
|
* @generated from field: optional string link = 3;
|
|
5563
5563
|
*/
|
|
5564
|
-
link?: string;
|
|
5564
|
+
link?: string | undefined;
|
|
5565
5565
|
/**
|
|
5566
5566
|
* @generated from field: optional string shared_by = 4;
|
|
5567
5567
|
*/
|
|
5568
|
-
sharedBy?: string;
|
|
5568
|
+
sharedBy?: string | undefined;
|
|
5569
5569
|
};
|
|
5570
5570
|
/**
|
|
5571
5571
|
* Describes the message plugnmeet.DisplayExternalLinkFeatures.
|
|
@@ -5671,7 +5671,7 @@ export type SpeechToTextTranslationFeatures = Message<"plugnmeet.SpeechToTextTra
|
|
|
5671
5671
|
*
|
|
5672
5672
|
* @generated from field: optional string default_subtitle_lang = 10;
|
|
5673
5673
|
*/
|
|
5674
|
-
defaultSubtitleLang?: string;
|
|
5674
|
+
defaultSubtitleLang?: string | undefined;
|
|
5675
5675
|
};
|
|
5676
5676
|
/**
|
|
5677
5677
|
* Describes the message plugnmeet.SpeechToTextTranslationFeatures.
|
|
@@ -5703,7 +5703,7 @@ export type EndToEndEncryptionFeatures = Message<"plugnmeet.EndToEndEncryptionFe
|
|
|
5703
5703
|
*
|
|
5704
5704
|
* @generated from field: optional string encryption_key = 4;
|
|
5705
5705
|
*/
|
|
5706
|
-
encryptionKey?: string;
|
|
5706
|
+
encryptionKey?: string | undefined;
|
|
5707
5707
|
};
|
|
5708
5708
|
/**
|
|
5709
5709
|
* Describes the message plugnmeet.EndToEndEncryptionFeatures.
|
|
@@ -5761,11 +5761,11 @@ export type SipDialInFeatures = Message<"plugnmeet.SipDialInFeatures"> & {
|
|
|
5761
5761
|
/**
|
|
5762
5762
|
* @generated from field: optional string pin = 6;
|
|
5763
5763
|
*/
|
|
5764
|
-
pin?: string;
|
|
5764
|
+
pin?: string | undefined;
|
|
5765
5765
|
/**
|
|
5766
5766
|
* @generated from field: optional string dispatch_rule_id = 7;
|
|
5767
5767
|
*/
|
|
5768
|
-
dispatchRuleId?: string;
|
|
5768
|
+
dispatchRuleId?: string | undefined;
|
|
5769
5769
|
};
|
|
5770
5770
|
/**
|
|
5771
5771
|
* Describes the message plugnmeet.SipDialInFeatures.
|
|
@@ -5785,15 +5785,15 @@ export type InsightsFeatures = Message<"plugnmeet.InsightsFeatures"> & {
|
|
|
5785
5785
|
/**
|
|
5786
5786
|
* @generated from field: optional plugnmeet.InsightsTranscriptionFeatures transcription_features = 2;
|
|
5787
5787
|
*/
|
|
5788
|
-
transcriptionFeatures?: InsightsTranscriptionFeatures;
|
|
5788
|
+
transcriptionFeatures?: InsightsTranscriptionFeatures | undefined;
|
|
5789
5789
|
/**
|
|
5790
5790
|
* @generated from field: optional plugnmeet.InsightsChatTranslationFeatures chat_translation_features = 3;
|
|
5791
5791
|
*/
|
|
5792
|
-
chatTranslationFeatures?: InsightsChatTranslationFeatures;
|
|
5792
|
+
chatTranslationFeatures?: InsightsChatTranslationFeatures | undefined;
|
|
5793
5793
|
/**
|
|
5794
5794
|
* @generated from field: optional plugnmeet.InsightsAIFeatures ai_features = 4;
|
|
5795
5795
|
*/
|
|
5796
|
-
aiFeatures?: InsightsAIFeatures;
|
|
5796
|
+
aiFeatures?: InsightsAIFeatures | undefined;
|
|
5797
5797
|
};
|
|
5798
5798
|
/**
|
|
5799
5799
|
* Describes the message plugnmeet.InsightsFeatures.
|
|
@@ -5845,7 +5845,7 @@ export type InsightsTranscriptionFeatures = Message<"plugnmeet.InsightsTranscrip
|
|
|
5845
5845
|
/**
|
|
5846
5846
|
* @generated from field: optional string default_subtitle_lang = 10;
|
|
5847
5847
|
*/
|
|
5848
|
-
defaultSubtitleLang?: string;
|
|
5848
|
+
defaultSubtitleLang?: string | undefined;
|
|
5849
5849
|
/**
|
|
5850
5850
|
* @generated from field: bool is_enabled_speech_synthesis = 11;
|
|
5851
5851
|
*/
|
|
@@ -5881,7 +5881,7 @@ export type InsightsChatTranslationFeatures = Message<"plugnmeet.InsightsChatTra
|
|
|
5881
5881
|
/**
|
|
5882
5882
|
* @generated from field: optional string default_lang = 5;
|
|
5883
5883
|
*/
|
|
5884
|
-
defaultLang?: string;
|
|
5884
|
+
defaultLang?: string | undefined;
|
|
5885
5885
|
};
|
|
5886
5886
|
/**
|
|
5887
5887
|
* Describes the message plugnmeet.InsightsChatTranslationFeatures.
|
|
@@ -5899,11 +5899,11 @@ export type InsightsAIFeatures = Message<"plugnmeet.InsightsAIFeatures"> & {
|
|
|
5899
5899
|
/**
|
|
5900
5900
|
* @generated from field: optional plugnmeet.InsightsAITextChatFeatures ai_text_chat_features = 2;
|
|
5901
5901
|
*/
|
|
5902
|
-
aiTextChatFeatures?: InsightsAITextChatFeatures;
|
|
5902
|
+
aiTextChatFeatures?: InsightsAITextChatFeatures | undefined;
|
|
5903
5903
|
/**
|
|
5904
5904
|
* @generated from field: optional plugnmeet.InsightsAIMeetingSummarizationFeatures meeting_summarization_features = 3;
|
|
5905
5905
|
*/
|
|
5906
|
-
meetingSummarizationFeatures?: InsightsAIMeetingSummarizationFeatures;
|
|
5906
|
+
meetingSummarizationFeatures?: InsightsAIMeetingSummarizationFeatures | undefined;
|
|
5907
5907
|
};
|
|
5908
5908
|
/**
|
|
5909
5909
|
* Describes the message plugnmeet.InsightsAIFeatures.
|
|
@@ -5999,7 +5999,7 @@ export type CreateRoomRes = Message<"plugnmeet.CreateRoomRes"> & {
|
|
|
5999
5999
|
/**
|
|
6000
6000
|
* @generated from field: plugnmeet.ActiveRoomInfo room_info = 4;
|
|
6001
6001
|
*/
|
|
6002
|
-
roomInfo?: ActiveRoomInfo;
|
|
6002
|
+
roomInfo?: ActiveRoomInfo | undefined;
|
|
6003
6003
|
};
|
|
6004
6004
|
/**
|
|
6005
6005
|
* Describes the message plugnmeet.CreateRoomRes.
|
|
@@ -6037,7 +6037,7 @@ export type LtiClaims = Message<"plugnmeet.LtiClaims"> & {
|
|
|
6037
6037
|
/**
|
|
6038
6038
|
* @generated from field: plugnmeet.LtiCustomParameters lti_custom_parameters = 6;
|
|
6039
6039
|
*/
|
|
6040
|
-
ltiCustomParameters?: LtiCustomParameters;
|
|
6040
|
+
ltiCustomParameters?: LtiCustomParameters | undefined;
|
|
6041
6041
|
};
|
|
6042
6042
|
/**
|
|
6043
6043
|
* Describes the message plugnmeet.LtiClaims.
|
|
@@ -6051,43 +6051,43 @@ export type LtiCustomParameters = Message<"plugnmeet.LtiCustomParameters"> & {
|
|
|
6051
6051
|
/**
|
|
6052
6052
|
* @generated from field: optional uint64 room_duration = 1 [jstype = JS_STRING];
|
|
6053
6053
|
*/
|
|
6054
|
-
roomDuration?: string;
|
|
6054
|
+
roomDuration?: string | undefined;
|
|
6055
6055
|
/**
|
|
6056
6056
|
* @generated from field: optional bool allow_polls = 2;
|
|
6057
6057
|
*/
|
|
6058
|
-
allowPolls?: boolean;
|
|
6058
|
+
allowPolls?: boolean | undefined;
|
|
6059
6059
|
/**
|
|
6060
6060
|
* @generated from field: optional bool allow_shared_note_pad = 3;
|
|
6061
6061
|
*/
|
|
6062
|
-
allowSharedNotePad?: boolean;
|
|
6062
|
+
allowSharedNotePad?: boolean | undefined;
|
|
6063
6063
|
/**
|
|
6064
6064
|
* @generated from field: optional bool allow_breakout_room = 4;
|
|
6065
6065
|
*/
|
|
6066
|
-
allowBreakoutRoom?: boolean;
|
|
6066
|
+
allowBreakoutRoom?: boolean | undefined;
|
|
6067
6067
|
/**
|
|
6068
6068
|
* @generated from field: optional bool allow_recording = 5;
|
|
6069
6069
|
*/
|
|
6070
|
-
allowRecording?: boolean;
|
|
6070
|
+
allowRecording?: boolean | undefined;
|
|
6071
6071
|
/**
|
|
6072
6072
|
* @generated from field: optional bool allow_rtmp = 6;
|
|
6073
6073
|
*/
|
|
6074
|
-
allowRtmp?: boolean;
|
|
6074
|
+
allowRtmp?: boolean | undefined;
|
|
6075
6075
|
/**
|
|
6076
6076
|
* @generated from field: optional bool allow_view_other_webcams = 7;
|
|
6077
6077
|
*/
|
|
6078
|
-
allowViewOtherWebcams?: boolean;
|
|
6078
|
+
allowViewOtherWebcams?: boolean | undefined;
|
|
6079
6079
|
/**
|
|
6080
6080
|
* @generated from field: optional bool allow_view_other_users_list = 8;
|
|
6081
6081
|
*/
|
|
6082
|
-
allowViewOtherUsersList?: boolean;
|
|
6082
|
+
allowViewOtherUsersList?: boolean | undefined;
|
|
6083
6083
|
/**
|
|
6084
6084
|
* @generated from field: optional bool mute_on_start = 9;
|
|
6085
6085
|
*/
|
|
6086
|
-
muteOnStart?: boolean;
|
|
6086
|
+
muteOnStart?: boolean | undefined;
|
|
6087
6087
|
/**
|
|
6088
6088
|
* @generated from field: plugnmeet.LtiCustomDesign lti_custom_design = 10;
|
|
6089
6089
|
*/
|
|
6090
|
-
ltiCustomDesign?: LtiCustomDesign;
|
|
6090
|
+
ltiCustomDesign?: LtiCustomDesign | undefined;
|
|
6091
6091
|
};
|
|
6092
6092
|
/**
|
|
6093
6093
|
* Describes the message plugnmeet.LtiCustomParameters.
|
|
@@ -6101,19 +6101,19 @@ export type LtiCustomDesign = Message<"plugnmeet.LtiCustomDesign"> & {
|
|
|
6101
6101
|
/**
|
|
6102
6102
|
* @generated from field: optional string primary_color = 1;
|
|
6103
6103
|
*/
|
|
6104
|
-
primaryColor?: string;
|
|
6104
|
+
primaryColor?: string | undefined;
|
|
6105
6105
|
/**
|
|
6106
6106
|
* @generated from field: optional string secondary_color = 2;
|
|
6107
6107
|
*/
|
|
6108
|
-
secondaryColor?: string;
|
|
6108
|
+
secondaryColor?: string | undefined;
|
|
6109
6109
|
/**
|
|
6110
6110
|
* @generated from field: optional string background_color = 3;
|
|
6111
6111
|
*/
|
|
6112
|
-
backgroundColor?: string;
|
|
6112
|
+
backgroundColor?: string | undefined;
|
|
6113
6113
|
/**
|
|
6114
6114
|
* @generated from field: optional string custom_logo = 4;
|
|
6115
6115
|
*/
|
|
6116
|
-
customLogo?: string;
|
|
6116
|
+
customLogo?: string | undefined;
|
|
6117
6117
|
};
|
|
6118
6118
|
/**
|
|
6119
6119
|
* Describes the message plugnmeet.LtiCustomDesign.
|
|
@@ -6361,15 +6361,15 @@ export type PollResponse = Message<"plugnmeet.PollResponse"> & {
|
|
|
6361
6361
|
/**
|
|
6362
6362
|
* @generated from field: optional string poll_id = 3;
|
|
6363
6363
|
*/
|
|
6364
|
-
pollId?: string;
|
|
6364
|
+
pollId?: string | undefined;
|
|
6365
6365
|
/**
|
|
6366
6366
|
* @generated from field: optional uint64 total_responses = 4 [jstype = JS_STRING];
|
|
6367
6367
|
*/
|
|
6368
|
-
totalResponses?: string;
|
|
6368
|
+
totalResponses?: string | undefined;
|
|
6369
6369
|
/**
|
|
6370
6370
|
* @generated from field: optional uint64 voted = 5 [jstype = JS_STRING];
|
|
6371
6371
|
*/
|
|
6372
|
-
voted?: string;
|
|
6372
|
+
voted?: string | undefined;
|
|
6373
6373
|
/**
|
|
6374
6374
|
* @generated from field: map<string, string> responses = 6;
|
|
6375
6375
|
*/
|
|
@@ -6383,19 +6383,19 @@ export type PollResponse = Message<"plugnmeet.PollResponse"> & {
|
|
|
6383
6383
|
/**
|
|
6384
6384
|
* @generated from field: optional plugnmeet.PollsStats stats = 8;
|
|
6385
6385
|
*/
|
|
6386
|
-
stats?: PollsStats;
|
|
6386
|
+
stats?: PollsStats | undefined;
|
|
6387
6387
|
/**
|
|
6388
6388
|
* @generated from field: optional uint64 total_polls = 9 [jstype = JS_STRING];
|
|
6389
6389
|
*/
|
|
6390
|
-
totalPolls?: string;
|
|
6390
|
+
totalPolls?: string | undefined;
|
|
6391
6391
|
/**
|
|
6392
6392
|
* @generated from field: optional uint64 total_running = 10 [jstype = JS_STRING];
|
|
6393
6393
|
*/
|
|
6394
|
-
totalRunning?: string;
|
|
6394
|
+
totalRunning?: string | undefined;
|
|
6395
6395
|
/**
|
|
6396
6396
|
* @generated from field: optional plugnmeet.PollResponsesResult poll_responses_result = 11;
|
|
6397
6397
|
*/
|
|
6398
|
-
pollResponsesResult?: PollResponsesResult;
|
|
6398
|
+
pollResponsesResult?: PollResponsesResult | undefined;
|
|
6399
6399
|
};
|
|
6400
6400
|
/**
|
|
6401
6401
|
* Describes the message plugnmeet.PollResponse.
|
|
@@ -6455,7 +6455,7 @@ export type InsightsTranscriptionConfigReq = Message<"plugnmeet.InsightsTranscri
|
|
|
6455
6455
|
/**
|
|
6456
6456
|
* @generated from field: optional string default_subtitle_lang = 6;
|
|
6457
6457
|
*/
|
|
6458
|
-
defaultSubtitleLang?: string;
|
|
6458
|
+
defaultSubtitleLang?: string | undefined;
|
|
6459
6459
|
/**
|
|
6460
6460
|
* @generated from field: bool is_enabled_speech_synthesis = 7;
|
|
6461
6461
|
*/
|
|
@@ -6477,7 +6477,7 @@ export type InsightsTranscriptionUserSessionReq = Message<"plugnmeet.InsightsTra
|
|
|
6477
6477
|
/**
|
|
6478
6478
|
* @generated from field: optional string spoken_lang = 2;
|
|
6479
6479
|
*/
|
|
6480
|
-
spokenLang?: string;
|
|
6480
|
+
spokenLang?: string | undefined;
|
|
6481
6481
|
/**
|
|
6482
6482
|
* @generated from field: bool allowed_transcription_storage = 3;
|
|
6483
6483
|
*/
|
|
@@ -6545,7 +6545,7 @@ export type InsightsChatTranslationConfigReq = Message<"plugnmeet.InsightsChatTr
|
|
|
6545
6545
|
/**
|
|
6546
6546
|
* @generated from field: optional string default_lang = 6;
|
|
6547
6547
|
*/
|
|
6548
|
-
defaultLang?: string;
|
|
6548
|
+
defaultLang?: string | undefined;
|
|
6549
6549
|
};
|
|
6550
6550
|
/**
|
|
6551
6551
|
* Describes the message plugnmeet.InsightsChatTranslationConfigReq.
|
|
@@ -6615,7 +6615,7 @@ export type InsightsTranslateTextRes = Message<"plugnmeet.InsightsTranslateTextR
|
|
|
6615
6615
|
/**
|
|
6616
6616
|
* @generated from field: optional plugnmeet.InsightsTextTranslationResult result = 3;
|
|
6617
6617
|
*/
|
|
6618
|
-
result?: InsightsTextTranslationResult;
|
|
6618
|
+
result?: InsightsTextTranslationResult | undefined;
|
|
6619
6619
|
};
|
|
6620
6620
|
/**
|
|
6621
6621
|
* Describes the message plugnmeet.InsightsTranslateTextRes.
|
|
@@ -6681,11 +6681,11 @@ export type InsightsGetUserStatusRes = Message<"plugnmeet.InsightsGetUserStatusR
|
|
|
6681
6681
|
/**
|
|
6682
6682
|
* @generated from field: optional string spoken_lang = 5;
|
|
6683
6683
|
*/
|
|
6684
|
-
spokenLang?: string;
|
|
6684
|
+
spokenLang?: string | undefined;
|
|
6685
6685
|
/**
|
|
6686
6686
|
* @generated from field: optional bool allowed_transcription_storage = 6;
|
|
6687
6687
|
*/
|
|
6688
|
-
allowedTranscriptionStorage?: boolean;
|
|
6688
|
+
allowedTranscriptionStorage?: boolean | undefined;
|
|
6689
6689
|
};
|
|
6690
6690
|
/**
|
|
6691
6691
|
* Describes the message plugnmeet.InsightsGetUserStatusRes.
|
|
@@ -6707,7 +6707,7 @@ export type InsightsAITextChatContent = Message<"plugnmeet.InsightsAITextChatCon
|
|
|
6707
6707
|
/**
|
|
6708
6708
|
* @generated from field: optional string stream_id = 3;
|
|
6709
6709
|
*/
|
|
6710
|
-
streamId?: string;
|
|
6710
|
+
streamId?: string | undefined;
|
|
6711
6711
|
};
|
|
6712
6712
|
/**
|
|
6713
6713
|
* Describes the message plugnmeet.InsightsAITextChatContent.
|
|
@@ -6896,11 +6896,11 @@ export type FetchArtifactsReq = Message<"plugnmeet.FetchArtifactsReq"> & {
|
|
|
6896
6896
|
*
|
|
6897
6897
|
* @generated from field: optional string room_sid = 2;
|
|
6898
6898
|
*/
|
|
6899
|
-
roomSid?: string;
|
|
6899
|
+
roomSid?: string | undefined;
|
|
6900
6900
|
/**
|
|
6901
6901
|
* @generated from field: optional plugnmeet.RoomArtifactType type = 3;
|
|
6902
6902
|
*/
|
|
6903
|
-
type?: RoomArtifactType;
|
|
6903
|
+
type?: RoomArtifactType | undefined;
|
|
6904
6904
|
/**
|
|
6905
6905
|
* @generated from field: uint64 from = 4 [jstype = JS_STRING];
|
|
6906
6906
|
*/
|
|
@@ -6944,7 +6944,7 @@ export type ArtifactInfo = Message<"plugnmeet.ArtifactInfo"> & {
|
|
|
6944
6944
|
/**
|
|
6945
6945
|
* @generated from field: plugnmeet.RoomArtifactMetadata metadata = 5;
|
|
6946
6946
|
*/
|
|
6947
|
-
metadata?: RoomArtifactMetadata;
|
|
6947
|
+
metadata?: RoomArtifactMetadata | undefined;
|
|
6948
6948
|
};
|
|
6949
6949
|
/**
|
|
6950
6950
|
* Describes the message plugnmeet.ArtifactInfo.
|
|
@@ -6976,7 +6976,7 @@ export type FetchArtifactsResult = Message<"plugnmeet.FetchArtifactsResult"> & {
|
|
|
6976
6976
|
/**
|
|
6977
6977
|
* @generated from field: optional plugnmeet.RoomArtifactType type = 5;
|
|
6978
6978
|
*/
|
|
6979
|
-
type?: RoomArtifactType;
|
|
6979
|
+
type?: RoomArtifactType | undefined;
|
|
6980
6980
|
/**
|
|
6981
6981
|
* @generated from field: repeated plugnmeet.ArtifactInfo artifacts_list = 6;
|
|
6982
6982
|
*/
|
|
@@ -7008,7 +7008,7 @@ export type FetchArtifactsRes = Message<"plugnmeet.FetchArtifactsRes"> & {
|
|
|
7008
7008
|
/**
|
|
7009
7009
|
* @generated from field: plugnmeet.FetchArtifactsResult result = 4;
|
|
7010
7010
|
*/
|
|
7011
|
-
result?: FetchArtifactsResult;
|
|
7011
|
+
result?: FetchArtifactsResult | undefined;
|
|
7012
7012
|
};
|
|
7013
7013
|
/**
|
|
7014
7014
|
* Describes the message plugnmeet.FetchArtifactsRes.
|
|
@@ -7052,7 +7052,7 @@ export type GetArtifactDownloadTokenRes = Message<"plugnmeet.GetArtifactDownload
|
|
|
7052
7052
|
/**
|
|
7053
7053
|
* @generated from field: optional string token = 4;
|
|
7054
7054
|
*/
|
|
7055
|
-
token?: string;
|
|
7055
|
+
token?: string | undefined;
|
|
7056
7056
|
};
|
|
7057
7057
|
/**
|
|
7058
7058
|
* Describes the message plugnmeet.GetArtifactDownloadTokenRes.
|
|
@@ -7132,11 +7132,11 @@ export type ArtifactInfoRes = Message<"plugnmeet.ArtifactInfoRes"> & {
|
|
|
7132
7132
|
/**
|
|
7133
7133
|
* @generated from field: optional plugnmeet.ArtifactInfo artifact_info = 4;
|
|
7134
7134
|
*/
|
|
7135
|
-
artifactInfo?: ArtifactInfo;
|
|
7135
|
+
artifactInfo?: ArtifactInfo | undefined;
|
|
7136
7136
|
/**
|
|
7137
7137
|
* @generated from field: optional plugnmeet.PastRoomInfo room_info = 5;
|
|
7138
7138
|
*/
|
|
7139
|
-
roomInfo?: PastRoomInfo;
|
|
7139
|
+
roomInfo?: PastRoomInfo | undefined;
|
|
7140
7140
|
};
|
|
7141
7141
|
/**
|
|
7142
7142
|
* Describes the message plugnmeet.ArtifactInfoRes.
|