quickvo-sdk-js 1.7.16 → 1.7.18

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.
@@ -51,7 +51,7 @@ export declare class QuickVO {
51
51
  setLocalStream: (mediaTypes: import('./enums').K_mediaType[], active: boolean) => Promise<void>;
52
52
  setMediaDeviceKind: (mediaDeviceKind: MediaDeviceKind, deviceId: string | undefined) => Promise<void>;
53
53
  setMediaTrackConstraints: (mediaType: import('./enums').K_mediaType, constraints: MediaTrackConstraints) => Promise<void>;
54
- joinRoom: (roomOptions: import('./types').RoomOptions) => Promise<void>;
54
+ joinRoom: (roomOptions: import('./types').RoomOptions) => Promise<string>;
55
55
  publish: (mediaTypes: import('./enums').K_mediaType[]) => Promise<void>;
56
56
  stopPublish: (mediaTypes: import('./enums').K_mediaType[]) => Promise<void>;
57
57
  subscribe: (usersMediaTypes?: import('./types').UserMediaTypes[]) => Promise<void>;
@@ -62,6 +62,7 @@ export declare class QuickVO {
62
62
  }>) => Promise<import('./protos/protoEvent').MessageRsp<"preventUsersBehavior">>;
63
63
  updateSimulcast: (simulcast: "f" | "h" | "q") => Promise<void>;
64
64
  toggleRoomSpeechLang: (data: {
65
+ stt?: boolean;
65
66
  input: string;
66
67
  output: string;
67
68
  translateEnable?: boolean;
@@ -52,7 +52,7 @@ export declare class ActionSFU {
52
52
  * @example quickvo.joinRoom({ userId: '', roomId: '', sdkToken: '', callType: '1' , newPublishAutoSubscribe: true })
53
53
  * @returns Promise<boolean>
54
54
  */
55
- joinRoom: (roomOptions: RoomOptions) => Promise<void>;
55
+ joinRoom: (roomOptions: RoomOptions) => Promise<string>;
56
56
  /**
57
57
  * publish
58
58
  * @param mediaTypes MediaType[]
@@ -97,6 +97,7 @@ export declare class ActionSFU {
97
97
  * @param data { input: string; output: string; translateEnable?: boolean }
98
98
  */
99
99
  toggleRoomSpeechLang: (data: {
100
+ stt?: boolean;
100
101
  input: string;
101
102
  output: string;
102
103
  translateEnable?: boolean;
@@ -17,15 +17,15 @@ export type User = Message<"com.quick.voice.proto.User"> & {
17
17
  /**
18
18
  * @generated from field: optional int32 callAction = 2;
19
19
  */
20
- callAction?: number;
20
+ callAction?: number | undefined;
21
21
  /**
22
22
  * @generated from field: optional int32 callState = 3;
23
23
  */
24
- callState?: number;
24
+ callState?: number | undefined;
25
25
  /**
26
26
  * @generated from field: optional int64 joinTime = 4;
27
27
  */
28
- joinTime?: bigint;
28
+ joinTime?: bigint | undefined;
29
29
  /**
30
30
  * @generated from field: repeated com.quick.voice.proto.Track tracks = 5;
31
31
  */
@@ -35,25 +35,25 @@ export type User = Message<"com.quick.voice.proto.User"> & {
35
35
  *
36
36
  * @generated from field: optional int32 permissions = 6;
37
37
  */
38
- permissions?: number;
38
+ permissions?: number | undefined;
39
39
  /**
40
40
  * have published tracks;
41
41
  *
42
42
  * @generated from field: optional bool isPublished = 7;
43
43
  */
44
- isPublished?: boolean;
44
+ isPublished?: boolean | undefined;
45
45
  /**
46
46
  * is forbidden some behavior (default:0)
47
47
  *
48
48
  * @generated from field: optional int32 behavior = 8;
49
49
  */
50
- behavior?: number;
50
+ behavior?: number | undefined;
51
51
  /**
52
52
  * 2025.6.11 add dataChannel
53
53
  *
54
54
  * @generated from field: optional com.quick.voice.proto.DataChannelCacheInfo channelCache = 9;
55
55
  */
56
- channelCache?: DataChannelCacheInfo;
56
+ channelCache?: DataChannelCacheInfo | undefined;
57
57
  };
58
58
  /**
59
59
  * Describes the message com.quick.voice.proto.User.
@@ -91,7 +91,7 @@ export type DataChannel = Message<"com.quick.voice.proto.DataChannel"> & {
91
91
  *
92
92
  * @generated from field: optional int32 id = 2;
93
93
  */
94
- id?: number;
94
+ id?: number | undefined;
95
95
  };
96
96
  /**
97
97
  * Describes the message com.quick.voice.proto.DataChannel.
@@ -135,43 +135,43 @@ export type Track = Message<"com.quick.voice.proto.Track"> & {
135
135
  /**
136
136
  * @generated from field: optional string trackName = 2;
137
137
  */
138
- trackName?: string;
138
+ trackName?: string | undefined;
139
139
  /**
140
140
  * @generated from field: optional string location = 3;
141
141
  */
142
- location?: string;
142
+ location?: string | undefined;
143
143
  /**
144
144
  * @generated from field: optional string userId = 4;
145
145
  */
146
- userId?: string;
146
+ userId?: string | undefined;
147
147
  /**
148
148
  * @generated from field: optional int32 code = 5;
149
149
  */
150
- code?: number;
150
+ code?: number | undefined;
151
151
  /**
152
152
  * @generated from field: optional string desc = 6;
153
153
  */
154
- desc?: string;
154
+ desc?: string | undefined;
155
155
  /**
156
156
  * @generated from field: optional com.quick.voice.proto.TrackType type = 7;
157
157
  */
158
- type?: TrackType;
158
+ type?: TrackType | undefined;
159
159
  /**
160
160
  * track is available in calls
161
161
  *
162
162
  * @generated from field: optional bool isValid = 8;
163
163
  */
164
- isValid?: boolean;
164
+ isValid?: boolean | undefined;
165
165
  /**
166
166
  * 2025.5.27 add simulcast includes "h","f","q"
167
167
  *
168
168
  * @generated from field: optional string simulcast = 9;
169
169
  */
170
- simulcast?: string;
170
+ simulcast?: string | undefined;
171
171
  /**
172
172
  * @generated from field: optional bool lastRetry = 10;
173
173
  */
174
- lastRetry?: boolean;
174
+ lastRetry?: boolean | undefined;
175
175
  };
176
176
  /**
177
177
  * Describes the message com.quick.voice.proto.Track.
@@ -191,7 +191,7 @@ export type JoinReq = Message<"com.quick.voice.proto.JoinReq"> & {
191
191
  /**
192
192
  * @generated from field: com.quick.voice.proto.User user = 2;
193
193
  */
194
- user?: User;
194
+ user?: User | undefined;
195
195
  /**
196
196
  * @generated from field: com.quick.voice.proto.CallType callType = 3;
197
197
  */
@@ -199,25 +199,25 @@ export type JoinReq = Message<"com.quick.voice.proto.JoinReq"> & {
199
199
  /**
200
200
  * @generated from field: optional string token = 4;
201
201
  */
202
- token?: string;
202
+ token?: string | undefined;
203
203
  /**
204
204
  * @generated from field: optional com.quick.voice.proto.AiLangSetting lang = 5;
205
205
  */
206
- lang?: AiLangSetting;
206
+ lang?: AiLangSetting | undefined;
207
207
  /**
208
208
  * @generated from field: optional bool stt = 6;
209
209
  */
210
- stt?: boolean;
210
+ stt?: boolean | undefined;
211
211
  /**
212
212
  * @generated from field: optional string msgId = 7;
213
213
  */
214
- msgId?: string;
214
+ msgId?: string | undefined;
215
215
  /**
216
216
  * # fix ios not support
217
217
  *
218
218
  * @generated from field: optional string msg = 8;
219
219
  */
220
- msg?: string;
220
+ msg?: string | undefined;
221
221
  };
222
222
  /**
223
223
  * Describes the message com.quick.voice.proto.JoinReq.
@@ -249,25 +249,25 @@ export type JoinRsp = Message<"com.quick.voice.proto.JoinRsp"> & {
249
249
  /**
250
250
  * @generated from field: optional int32 roomAction = 5;
251
251
  */
252
- roomAction?: number;
252
+ roomAction?: number | undefined;
253
253
  /**
254
254
  * exist in meet mode
255
255
  *
256
256
  * @generated from field: optional int32 totalSize = 6;
257
257
  */
258
- totalSize?: number;
258
+ totalSize?: number | undefined;
259
259
  /**
260
260
  * exist in meet mode
261
261
  *
262
262
  * @generated from field: optional com.quick.voice.proto.MeetRolesListRsp meetSpecialRoles = 7;
263
263
  */
264
- meetSpecialRoles?: MeetRolesListRsp;
264
+ meetSpecialRoles?: MeetRolesListRsp | undefined;
265
265
  /**
266
266
  * for reconnect
267
267
  *
268
268
  * @generated from field: optional string shardId = 8;
269
269
  */
270
- shardId?: string;
270
+ shardId?: string | undefined;
271
271
  };
272
272
  /**
273
273
  * Describes the message com.quick.voice.proto.JoinRsp.
@@ -287,7 +287,7 @@ export type JoinNotify = Message<"com.quick.voice.proto.JoinNotify"> & {
287
287
  /**
288
288
  * @generated from field: com.quick.voice.proto.User user = 2;
289
289
  */
290
- user?: User;
290
+ user?: User | undefined;
291
291
  };
292
292
  /**
293
293
  * Describes the message com.quick.voice.proto.JoinNotify.
@@ -329,7 +329,7 @@ export type ConnectCFRsp = Message<"com.quick.voice.proto.ConnectCFRsp"> & {
329
329
  *
330
330
  * @generated from field: optional string session = 3;
331
331
  */
332
- session?: string;
332
+ session?: string | undefined;
333
333
  };
334
334
  /**
335
335
  * Describes the message com.quick.voice.proto.ConnectCFRsp.
@@ -357,13 +357,13 @@ export type PublishReq = Message<"com.quick.voice.proto.PublishReq"> & {
357
357
  /**
358
358
  * @generated from field: optional bool recreate = 4;
359
359
  */
360
- recreate?: boolean;
360
+ recreate?: boolean | undefined;
361
361
  /**
362
362
  * 2025.7.17 add
363
363
  *
364
364
  * @generated from field: optional string session = 5;
365
365
  */
366
- session?: string;
366
+ session?: string | undefined;
367
367
  };
368
368
  /**
369
369
  * Describes the message com.quick.voice.proto.PublishReq.
@@ -385,7 +385,7 @@ export type PublishRsp = Message<"com.quick.voice.proto.PublishRsp"> & {
385
385
  *
386
386
  * @generated from field: optional string session = 2;
387
387
  */
388
- session?: string;
388
+ session?: string | undefined;
389
389
  };
390
390
  /**
391
391
  * Describes the message com.quick.voice.proto.PublishRsp.
@@ -405,13 +405,13 @@ export type PublishNotify = Message<"com.quick.voice.proto.PublishNotify"> & {
405
405
  /**
406
406
  * @generated from field: com.quick.voice.proto.User user = 2;
407
407
  */
408
- user?: User;
408
+ user?: User | undefined;
409
409
  /**
410
410
  * 2025.7.25 add
411
411
  *
412
412
  * @generated from field: optional string session = 3;
413
413
  */
414
- session?: string;
414
+ session?: string | undefined;
415
415
  };
416
416
  /**
417
417
  * Describes the message com.quick.voice.proto.PublishNotify.
@@ -433,13 +433,13 @@ export type SubscribeReq = Message<"com.quick.voice.proto.SubscribeReq"> & {
433
433
  *
434
434
  * @generated from field: optional string session = 2;
435
435
  */
436
- session?: string;
436
+ session?: string | undefined;
437
437
  /**
438
438
  * 2026.3.30 add
439
439
  *
440
440
  * @generated from field: optional bool selfCheck = 3;
441
441
  */
442
- selfCheck?: boolean;
442
+ selfCheck?: boolean | undefined;
443
443
  };
444
444
  /**
445
445
  * Describes the message com.quick.voice.proto.SubscribeReq.
@@ -465,7 +465,7 @@ export type SubscribeRsp = Message<"com.quick.voice.proto.SubscribeRsp"> & {
465
465
  *
466
466
  * @generated from field: optional string session = 3;
467
467
  */
468
- session?: string;
468
+ session?: string | undefined;
469
469
  };
470
470
  /**
471
471
  * Describes the message com.quick.voice.proto.SubscribeRsp.
@@ -509,13 +509,13 @@ export type QuitReq = Message<"com.quick.voice.proto.QuitReq"> & {
509
509
  /**
510
510
  * @generated from field: optional string msgId = 3;
511
511
  */
512
- msgId?: string;
512
+ msgId?: string | undefined;
513
513
  /**
514
514
  * # fix ios not support
515
515
  *
516
516
  * @generated from field: optional string msg = 4;
517
517
  */
518
- msg?: string;
518
+ msg?: string | undefined;
519
519
  };
520
520
  /**
521
521
  * Describes the message com.quick.voice.proto.QuitReq.
@@ -535,15 +535,15 @@ export type QuitNotify = Message<"com.quick.voice.proto.QuitNotify"> & {
535
535
  /**
536
536
  * @generated from field: com.quick.voice.proto.User user = 2;
537
537
  */
538
- user?: User;
538
+ user?: User | undefined;
539
539
  /**
540
540
  * @generated from field: optional int32 code = 3;
541
541
  */
542
- code?: number;
542
+ code?: number | undefined;
543
543
  /**
544
544
  * @generated from field: optional string desc = 4;
545
545
  */
546
- desc?: string;
546
+ desc?: string | undefined;
547
547
  };
548
548
  /**
549
549
  * Describes the message com.quick.voice.proto.QuitNotify.
@@ -643,7 +643,7 @@ export type UpdateCall = Message<"com.quick.voice.proto.UpdateCall"> & {
643
643
  /**
644
644
  * @generated from field: com.quick.voice.proto.User user = 2;
645
645
  */
646
- user?: User;
646
+ user?: User | undefined;
647
647
  };
648
648
  /**
649
649
  * Describes the message com.quick.voice.proto.UpdateCall.
@@ -697,11 +697,11 @@ export type SyncRoomInfoReq = Message<"com.quick.voice.proto.SyncRoomInfoReq"> &
697
697
  /**
698
698
  * @generated from field: com.quick.voice.proto.User user = 2;
699
699
  */
700
- user?: User;
700
+ user?: User | undefined;
701
701
  /**
702
702
  * @generated from field: optional com.quick.voice.proto.P2PUserSyncList p2pState = 3;
703
703
  */
704
- p2pState?: P2PUserSyncList;
704
+ p2pState?: P2PUserSyncList | undefined;
705
705
  };
706
706
  /**
707
707
  * Describes the message com.quick.voice.proto.SyncRoomInfoReq.
@@ -733,15 +733,15 @@ export type SyncRoomInfoRsp = Message<"com.quick.voice.proto.SyncRoomInfoRsp"> &
733
733
  /**
734
734
  * @generated from field: optional int32 roomAction = 5;
735
735
  */
736
- roomAction?: number;
736
+ roomAction?: number | undefined;
737
737
  /**
738
738
  * @generated from field: optional int32 totalSize = 6;
739
739
  */
740
- totalSize?: number;
740
+ totalSize?: number | undefined;
741
741
  /**
742
742
  * @generated from field: optional com.quick.voice.proto.MeetRolesListRsp meetSpecialRoles = 7;
743
743
  */
744
- meetSpecialRoles?: MeetRolesListRsp;
744
+ meetSpecialRoles?: MeetRolesListRsp | undefined;
745
745
  };
746
746
  /**
747
747
  * Describes the message com.quick.voice.proto.SyncRoomInfoRsp.
@@ -821,7 +821,7 @@ export type CloseTrackNotify = Message<"com.quick.voice.proto.CloseTrackNotify">
821
821
  /**
822
822
  * @generated from field: com.quick.voice.proto.User user = 1;
823
823
  */
824
- user?: User;
824
+ user?: User | undefined;
825
825
  };
826
826
  /**
827
827
  * Describes the message com.quick.voice.proto.CloseTrackNotify.
@@ -841,7 +841,7 @@ export type UpdatePermissions = Message<"com.quick.voice.proto.UpdatePermissions
841
841
  /**
842
842
  * @generated from field: com.quick.voice.proto.User user = 2;
843
843
  */
844
- user?: User;
844
+ user?: User | undefined;
845
845
  };
846
846
  /**
847
847
  * Describes the message com.quick.voice.proto.UpdatePermissions.
@@ -971,31 +971,31 @@ export type CDNPlayAddressNotify = Message<"com.quick.voice.proto.CDNPlayAddress
971
971
  *
972
972
  * @generated from field: optional string m3u8 = 2;
973
973
  */
974
- m3u8?: string;
974
+ m3u8?: string | undefined;
975
975
  /**
976
976
  * rtmp playback url
977
977
  *
978
978
  * @generated from field: optional string rtmp = 3;
979
979
  */
980
- rtmp?: string;
980
+ rtmp?: string | undefined;
981
981
  /**
982
982
  * flv playback url
983
983
  *
984
984
  * @generated from field: optional string flv = 4;
985
985
  */
986
- flv?: string;
986
+ flv?: string | undefined;
987
987
  /**
988
988
  * rtmps playback url
989
989
  *
990
990
  * @generated from field: optional string rtmps = 5;
991
991
  */
992
- rtmps?: string;
992
+ rtmps?: string | undefined;
993
993
  /**
994
994
  * main playback line
995
995
  *
996
996
  * @generated from field: optional com.quick.voice.proto.BaseCDNAddress mainLine = 6;
997
997
  */
998
- mainLine?: BaseCDNAddress;
998
+ mainLine?: BaseCDNAddress | undefined;
999
999
  /**
1000
1000
  * backup playback lines(optional value)
1001
1001
  *
@@ -1042,7 +1042,7 @@ export type ChannelPublishReq = Message<"com.quick.voice.proto.ChannelPublishReq
1042
1042
  /**
1043
1043
  * @generated from field: optional string session = 2;
1044
1044
  */
1045
- session?: string;
1045
+ session?: string | undefined;
1046
1046
  };
1047
1047
  /**
1048
1048
  * Describes the message com.quick.voice.proto.ChannelPublishReq.
@@ -1076,7 +1076,7 @@ export type ChannelSubscribeReq = Message<"com.quick.voice.proto.ChannelSubscrib
1076
1076
  /**
1077
1077
  * @generated from field: optional string session = 2;
1078
1078
  */
1079
- session?: string;
1079
+ session?: string | undefined;
1080
1080
  };
1081
1081
  /**
1082
1082
  * Describes the message com.quick.voice.proto.ChannelSubscribeReq.
@@ -1128,7 +1128,7 @@ export type SdpConsult = Message<"com.quick.voice.proto.SdpConsult"> & {
1128
1128
  *
1129
1129
  * @generated from field: optional com.quick.voice.proto.User sender = 2;
1130
1130
  */
1131
- sender?: User;
1131
+ sender?: User | undefined;
1132
1132
  /**
1133
1133
  * receive p2p msg userId
1134
1134
  *
@@ -1238,19 +1238,19 @@ export type ReportTrafficUsage = Message<"com.quick.voice.proto.ReportTrafficUsa
1238
1238
  *
1239
1239
  * @generated from field: optional int64 p2pPush = 1;
1240
1240
  */
1241
- p2pPush?: bigint;
1241
+ p2pPush?: bigint | undefined;
1242
1242
  /**
1243
1243
  * @generated from field: optional int64 p2pPull = 2;
1244
1244
  */
1245
- p2pPull?: bigint;
1245
+ p2pPull?: bigint | undefined;
1246
1246
  /**
1247
1247
  * @generated from field: optional int64 sfuPush = 3;
1248
1248
  */
1249
- sfuPush?: bigint;
1249
+ sfuPush?: bigint | undefined;
1250
1250
  /**
1251
1251
  * @generated from field: optional int64 sfuPull = 4;
1252
1252
  */
1253
- sfuPull?: bigint;
1253
+ sfuPull?: bigint | undefined;
1254
1254
  };
1255
1255
  /**
1256
1256
  * Describes the message com.quick.voice.proto.ReportTrafficUsage.
@@ -1398,7 +1398,13 @@ export type AiLangSetting = Message<"com.quick.voice.proto.AiLangSetting"> & {
1398
1398
  *
1399
1399
  * @generated from field: optional bool translateEnable = 3;
1400
1400
  */
1401
- translateEnable?: boolean;
1401
+ translateEnable?: boolean | undefined;
1402
+ /**
1403
+ * enable stt
1404
+ *
1405
+ * @generated from field: optional bool stt = 4;
1406
+ */
1407
+ stt?: boolean | undefined;
1402
1408
  };
1403
1409
  /**
1404
1410
  * Describes the message com.quick.voice.proto.AiLangSetting.
@@ -1466,19 +1472,19 @@ export type ReportP2PExReq = Message<"com.quick.voice.proto.ReportP2PExReq"> & {
1466
1472
  /**
1467
1473
  * @generated from field: optional string desc = 6;
1468
1474
  */
1469
- desc?: string;
1475
+ desc?: string | undefined;
1470
1476
  /**
1471
1477
  * used time that build p2p successfully.(unit:ms)
1472
1478
  *
1473
1479
  * @generated from field: optional string connectedTime = 7;
1474
1480
  */
1475
- connectedTime?: string;
1481
+ connectedTime?: string | undefined;
1476
1482
  /**
1477
1483
  * used only in P2PCode.Success and P2PCode.Failed
1478
1484
  *
1479
1485
  * @generated from field: optional com.quick.voice.proto.P2PAction action = 8;
1480
1486
  */
1481
- action?: P2PAction;
1487
+ action?: P2PAction | undefined;
1482
1488
  };
1483
1489
  /**
1484
1490
  * Describes the message com.quick.voice.proto.ReportP2PExReq.
@@ -1563,7 +1569,7 @@ export type PubNotifyInterceptSyncRsp = Message<"com.quick.voice.proto.PubNotify
1563
1569
  *
1564
1570
  * @generated from field: com.quick.voice.proto.User user = 3;
1565
1571
  */
1566
- user?: User;
1572
+ user?: User | undefined;
1567
1573
  };
1568
1574
  /**
1569
1575
  * Describes the message com.quick.voice.proto.PubNotifyInterceptSyncRsp.
@@ -1601,7 +1607,7 @@ export type MeetRolesChangeNotify = Message<"com.quick.voice.proto.MeetRolesChan
1601
1607
  /**
1602
1608
  * @generated from field: com.quick.voice.proto.MeetRolesListRsp meetSpecialRoles = 2;
1603
1609
  */
1604
- meetSpecialRoles?: MeetRolesListRsp;
1610
+ meetSpecialRoles?: MeetRolesListRsp | undefined;
1605
1611
  /**
1606
1612
  * who changed permissions
1607
1613
  *
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "quickvo-sdk-js",
3
3
  "description": "提供快捷接入单对单、单对多、群体会议、舞台会议等音视频功能。",
4
- "version": "1.7.16",
4
+ "version": "1.7.18",
5
5
  "type": "module",
6
6
  "files": [
7
7
  "dist"
@@ -1,60 +0,0 @@
1
- function e(e, t) {
2
- return e -= 494, f()[e];
3
- }
4
- var t = e;
5
- (function(t, n) {
6
- for (var r = e, i = t();;) try {
7
- if (parseInt(r(515)) / 1 * (parseInt(r(523)) / 2) + parseInt(r(519)) / 3 + -parseInt(r(505)) / 4 * (parseInt(r(504)) / 5) + parseInt(r(497)) / 6 + parseInt(r(503)) / 7 + -parseInt(r(518)) / 8 + -parseInt(r(520)) / 9 === n) break;
8
- i.push(i.shift());
9
- } catch {
10
- i.push(i.shift());
11
- }
12
- })(f, 804726);
13
- var n = Object[t(525)], r = Object.defineProperty, i = Object[t(510)], a = Object[t(507)], o = Object[t(512)], s = Object[t(509)][t(526)], c = (e, n) => () => (n || e((n = { exports: {} })[t(513)], n), n[t(513)]), l = (e, n) => {
14
- var i = t, a = {
15
- wxuCW: function(e, t, n, r) {
16
- return e(t, n, r);
17
- },
18
- DBsEz: i(494)
19
- };
20
- let o = {};
21
- for (var s in e) a.wxuCW(r, o, s, {
22
- get: e[s],
23
- enumerable: !0
24
- });
25
- return !n && a[i(511)](r, o, Symbol[i(517)], { value: a[i(514)] }), o;
26
- }, u = (e, n, o, c) => {
27
- var l = t, u = {
28
- dDkEv: function(e, t) {
29
- return e === t;
30
- },
31
- QsEVJ: l(499),
32
- WyuAS: function(e, t) {
33
- return e(t);
34
- },
35
- ozCMg: function(e, t) {
36
- return e < t;
37
- },
38
- MbAqL: function(e, t) {
39
- return e !== t;
40
- },
41
- jRvnO: function(e, t, n) {
42
- return e(t, n);
43
- }
44
- };
45
- if (n && u[l(521)](typeof n, u[l(502)]) || typeof n === l(522)) for (var d = u[l(506)](a, n), f = 0, p = d[l(501)], m; u[l(500)](f, p); f++) m = d[f], !s[l(524)](e, m) && u[l(498)](m, o) && r(e, m, {
46
- get: ((e) => n[e])[l(508)](null, m),
47
- enumerable: !(c = u[l(516)](i, n, m)) || c[l(495)]
48
- });
49
- return e;
50
- }, d = (e, i, a) => (a = e == null ? {} : n(o(e)), u(i || !e || !e.__esModule ? r(a, t(496), {
51
- value: e,
52
- enumerable: !0
53
- }) : a, e));
54
- export { l as n, d as r, c as t };
55
- function f() {
56
- var e = /* @__PURE__ */ "dDkEv.function.18CVrcYQ.call.create.hasOwnProperty.Module.enumerable.default.8591838GhaHof.MbAqL.object.ozCMg.length.QsEVJ.208390ueiVXi.30YFcqyZ.597008rKTjsF.WyuAS.getOwnPropertyNames.bind.prototype.getOwnPropertyDescriptor.wxuCW.getPrototypeOf.exports.DBsEz.116437WlSqBO.jRvnO.toStringTag.3181912bAWRgW.1781322gGEjUn.9049257OFISVV".split(".");
57
- return f = function() {
58
- return e;
59
- }, f();
60
- }