@webex/event-dictionary-ts 1.0.1820 → 1.0.1822
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.
|
@@ -2439,6 +2439,7 @@
|
|
|
2439
2439
|
"client.webapp-download.in-progress",
|
|
2440
2440
|
"client.webapp-download.end",
|
|
2441
2441
|
"client.whiteboard.loaded",
|
|
2442
|
+
"client.call.survey.trigger",
|
|
2442
2443
|
"meeting.initiated",
|
|
2443
2444
|
"meeting.converged.initiated",
|
|
2444
2445
|
"meeting.joined",
|
|
@@ -7502,6 +7503,30 @@
|
|
|
7502
7503
|
},
|
|
7503
7504
|
"forceLogin": {
|
|
7504
7505
|
"type": "boolean"
|
|
7506
|
+
},
|
|
7507
|
+
"callSurveyTriggerData": {
|
|
7508
|
+
"type": "object",
|
|
7509
|
+
"description": "Call survey trigger data for client.call.survey.trigger event. This object only applies when callingServiceType is CUCM.",
|
|
7510
|
+
"additionalProperties": true,
|
|
7511
|
+
"required": [
|
|
7512
|
+
"callId",
|
|
7513
|
+
"callDuration",
|
|
7514
|
+
"isDIUser"
|
|
7515
|
+
],
|
|
7516
|
+
"properties": {
|
|
7517
|
+
"callId": {
|
|
7518
|
+
"type": "string",
|
|
7519
|
+
"description": "Unique identifier for the call."
|
|
7520
|
+
},
|
|
7521
|
+
"callDuration": {
|
|
7522
|
+
"type": "integer",
|
|
7523
|
+
"description": "Duration of the call in seconds."
|
|
7524
|
+
},
|
|
7525
|
+
"isDIUser": {
|
|
7526
|
+
"type": "boolean",
|
|
7527
|
+
"description": "Indicates whether the user is a DI (Dedicated Instance) user."
|
|
7528
|
+
}
|
|
7529
|
+
}
|
|
7505
7530
|
}
|
|
7506
7531
|
}
|
|
7507
7532
|
}
|
|
@@ -2960,6 +2960,7 @@
|
|
|
2960
2960
|
"client.webapp-download.in-progress",
|
|
2961
2961
|
"client.webapp-download.end",
|
|
2962
2962
|
"client.whiteboard.loaded",
|
|
2963
|
+
"client.call.survey.trigger",
|
|
2963
2964
|
"meeting.initiated",
|
|
2964
2965
|
"meeting.converged.initiated",
|
|
2965
2966
|
"meeting.joined",
|
|
@@ -8023,6 +8024,30 @@
|
|
|
8023
8024
|
},
|
|
8024
8025
|
"forceLogin": {
|
|
8025
8026
|
"type": "boolean"
|
|
8027
|
+
},
|
|
8028
|
+
"callSurveyTriggerData": {
|
|
8029
|
+
"type": "object",
|
|
8030
|
+
"description": "Call survey trigger data for client.call.survey.trigger event. This object only applies when callingServiceType is CUCM.",
|
|
8031
|
+
"additionalProperties": true,
|
|
8032
|
+
"required": [
|
|
8033
|
+
"callId",
|
|
8034
|
+
"callDuration",
|
|
8035
|
+
"isDIUser"
|
|
8036
|
+
],
|
|
8037
|
+
"properties": {
|
|
8038
|
+
"callId": {
|
|
8039
|
+
"type": "string",
|
|
8040
|
+
"description": "Unique identifier for the call."
|
|
8041
|
+
},
|
|
8042
|
+
"callDuration": {
|
|
8043
|
+
"type": "integer",
|
|
8044
|
+
"description": "Duration of the call in seconds."
|
|
8045
|
+
},
|
|
8046
|
+
"isDIUser": {
|
|
8047
|
+
"type": "boolean",
|
|
8048
|
+
"description": "Indicates whether the user is a DI (Dedicated Instance) user."
|
|
8049
|
+
}
|
|
8050
|
+
}
|
|
8026
8051
|
}
|
|
8027
8052
|
}
|
|
8028
8053
|
},
|
|
@@ -17413,6 +17438,10 @@
|
|
|
17413
17438
|
"description": "one short every 1 minute",
|
|
17414
17439
|
"minimum": -32768,
|
|
17415
17440
|
"maximum": 32767
|
|
17441
|
+
},
|
|
17442
|
+
"txEffectiveBandwidth": {
|
|
17443
|
+
"type": "integer",
|
|
17444
|
+
"description": "one int every 1 minute"
|
|
17416
17445
|
}
|
|
17417
17446
|
}
|
|
17418
17447
|
},
|
|
@@ -1295,6 +1295,7 @@ export interface Event {
|
|
|
1295
1295
|
| "client.webapp-download.in-progress"
|
|
1296
1296
|
| "client.webapp-download.end"
|
|
1297
1297
|
| "client.whiteboard.loaded"
|
|
1298
|
+
| "client.call.survey.trigger"
|
|
1298
1299
|
| "meeting.initiated"
|
|
1299
1300
|
| "meeting.converged.initiated"
|
|
1300
1301
|
| "meeting.joined"
|
|
@@ -3853,6 +3854,24 @@ export interface Event {
|
|
|
3853
3854
|
};
|
|
3854
3855
|
webClientPreload?: boolean;
|
|
3855
3856
|
forceLogin?: boolean;
|
|
3857
|
+
/**
|
|
3858
|
+
* Call survey trigger data for client.call.survey.trigger event. This object only applies when callingServiceType is CUCM.
|
|
3859
|
+
*/
|
|
3860
|
+
callSurveyTriggerData?: {
|
|
3861
|
+
/**
|
|
3862
|
+
* Unique identifier for the call.
|
|
3863
|
+
*/
|
|
3864
|
+
callId: string;
|
|
3865
|
+
/**
|
|
3866
|
+
* Duration of the call in seconds.
|
|
3867
|
+
*/
|
|
3868
|
+
callDuration: number;
|
|
3869
|
+
/**
|
|
3870
|
+
* Indicates whether the user is a DI (Dedicated Instance) user.
|
|
3871
|
+
*/
|
|
3872
|
+
isDIUser: boolean;
|
|
3873
|
+
additionalProperties?: false;
|
|
3874
|
+
};
|
|
3856
3875
|
additionalProperties?: false;
|
|
3857
3876
|
}
|
|
3858
3877
|
| {
|
|
@@ -7645,6 +7664,10 @@ export interface Event {
|
|
|
7645
7664
|
* one short every 1 minute
|
|
7646
7665
|
*/
|
|
7647
7666
|
opusDredTxAvgCostTimePerMin?: number;
|
|
7667
|
+
/**
|
|
7668
|
+
* one int every 1 minute
|
|
7669
|
+
*/
|
|
7670
|
+
txEffectiveBandwidth?: number;
|
|
7648
7671
|
additionalProperties?: false;
|
|
7649
7672
|
};
|
|
7650
7673
|
/**
|
|
@@ -15394,6 +15417,7 @@ export interface ClientEvent {
|
|
|
15394
15417
|
| "client.webapp-download.in-progress"
|
|
15395
15418
|
| "client.webapp-download.end"
|
|
15396
15419
|
| "client.whiteboard.loaded"
|
|
15420
|
+
| "client.call.survey.trigger"
|
|
15397
15421
|
| "meeting.initiated"
|
|
15398
15422
|
| "meeting.converged.initiated"
|
|
15399
15423
|
| "meeting.joined"
|
|
@@ -17952,6 +17976,24 @@ export interface ClientEvent {
|
|
|
17952
17976
|
};
|
|
17953
17977
|
webClientPreload?: boolean;
|
|
17954
17978
|
forceLogin?: boolean;
|
|
17979
|
+
/**
|
|
17980
|
+
* Call survey trigger data for client.call.survey.trigger event. This object only applies when callingServiceType is CUCM.
|
|
17981
|
+
*/
|
|
17982
|
+
callSurveyTriggerData?: {
|
|
17983
|
+
/**
|
|
17984
|
+
* Unique identifier for the call.
|
|
17985
|
+
*/
|
|
17986
|
+
callId: string;
|
|
17987
|
+
/**
|
|
17988
|
+
* Duration of the call in seconds.
|
|
17989
|
+
*/
|
|
17990
|
+
callDuration: number;
|
|
17991
|
+
/**
|
|
17992
|
+
* Indicates whether the user is a DI (Dedicated Instance) user.
|
|
17993
|
+
*/
|
|
17994
|
+
isDIUser: boolean;
|
|
17995
|
+
additionalProperties?: false;
|
|
17996
|
+
};
|
|
17955
17997
|
additionalProperties?: false;
|
|
17956
17998
|
}
|
|
17957
17999
|
|
|
@@ -21441,6 +21483,10 @@ export interface MediaQualityEvent {
|
|
|
21441
21483
|
* one short every 1 minute
|
|
21442
21484
|
*/
|
|
21443
21485
|
opusDredTxAvgCostTimePerMin?: number;
|
|
21486
|
+
/**
|
|
21487
|
+
* one int every 1 minute
|
|
21488
|
+
*/
|
|
21489
|
+
txEffectiveBandwidth?: number;
|
|
21444
21490
|
additionalProperties?: false;
|
|
21445
21491
|
};
|
|
21446
21492
|
/**
|
package/package.json
CHANGED