@webex/event-dictionary-ts 1.0.1355 → 1.0.1357

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.
@@ -318,6 +318,9 @@
318
318
  "type": "string"
319
319
  }
320
320
  },
321
+ "labelsStr": {
322
+ "type": "string"
323
+ },
321
324
  "webexServiceType": {
322
325
  "enum": [
323
326
  "MC",
@@ -455,6 +458,7 @@
455
458
  "MIXED",
456
459
  "MOBILE_APP",
457
460
  "MOBILE_NETWORK",
461
+ "PAGE",
458
462
  "TEAMS_DEVICE",
459
463
  "VDI_APP",
460
464
  "WEB_APP"
@@ -3114,6 +3118,7 @@
3114
3118
  "MIXED",
3115
3119
  "MOBILE_APP",
3116
3120
  "MOBILE_NETWORK",
3121
+ "PAGE",
3117
3122
  "TEAMS_DEVICE",
3118
3123
  "VDI_APP",
3119
3124
  "WEB_APP"
@@ -220,6 +220,7 @@
220
220
  "MIXED",
221
221
  "MOBILE_APP",
222
222
  "MOBILE_NETWORK",
223
+ "PAGE",
223
224
  "TEAMS_DEVICE",
224
225
  "VDI_APP",
225
226
  "WEB_APP"
@@ -792,6 +793,9 @@
792
793
  "type": "string"
793
794
  }
794
795
  },
796
+ "labelsStr": {
797
+ "type": "string"
798
+ },
795
799
  "webexServiceType": {
796
800
  "enum": [
797
801
  "MC",
@@ -929,6 +933,7 @@
929
933
  "MIXED",
930
934
  "MOBILE_APP",
931
935
  "MOBILE_NETWORK",
936
+ "PAGE",
932
937
  "TEAMS_DEVICE",
933
938
  "VDI_APP",
934
939
  "WEB_APP"
@@ -3588,6 +3593,7 @@
3588
3593
  "MIXED",
3589
3594
  "MOBILE_APP",
3590
3595
  "MOBILE_NETWORK",
3596
+ "PAGE",
3591
3597
  "TEAMS_DEVICE",
3592
3598
  "VDI_APP",
3593
3599
  "WEB_APP"
@@ -7508,6 +7514,9 @@
7508
7514
  "type": "string"
7509
7515
  }
7510
7516
  },
7517
+ "labelsStr": {
7518
+ "type": "string"
7519
+ },
7511
7520
  "webexServiceType": {
7512
7521
  "enum": [
7513
7522
  "MC",
@@ -7645,6 +7654,7 @@
7645
7654
  "MIXED",
7646
7655
  "MOBILE_APP",
7647
7656
  "MOBILE_NETWORK",
7657
+ "PAGE",
7648
7658
  "TEAMS_DEVICE",
7649
7659
  "VDI_APP",
7650
7660
  "WEB_APP"
@@ -11557,6 +11567,9 @@
11557
11567
  "type": "string"
11558
11568
  }
11559
11569
  },
11570
+ "labelsStr": {
11571
+ "type": "string"
11572
+ },
11560
11573
  "webexServiceType": {
11561
11574
  "enum": [
11562
11575
  "MC",
@@ -11694,6 +11707,7 @@
11694
11707
  "MIXED",
11695
11708
  "MOBILE_APP",
11696
11709
  "MOBILE_NETWORK",
11710
+ "PAGE",
11697
11711
  "TEAMS_DEVICE",
11698
11712
  "VDI_APP",
11699
11713
  "WEB_APP"
@@ -19842,6 +19856,9 @@
19842
19856
  "type": "string"
19843
19857
  }
19844
19858
  },
19859
+ "labelsStr": {
19860
+ "type": "string"
19861
+ },
19845
19862
  "webexServiceType": {
19846
19863
  "enum": [
19847
19864
  "MC",
@@ -19979,6 +19996,7 @@
19979
19996
  "MIXED",
19980
19997
  "MOBILE_APP",
19981
19998
  "MOBILE_NETWORK",
19999
+ "PAGE",
19982
20000
  "TEAMS_DEVICE",
19983
20001
  "VDI_APP",
19984
20002
  "WEB_APP"
@@ -318,6 +318,9 @@
318
318
  "type": "string"
319
319
  }
320
320
  },
321
+ "labelsStr": {
322
+ "type": "string"
323
+ },
321
324
  "webexServiceType": {
322
325
  "enum": [
323
326
  "MC",
@@ -455,6 +458,7 @@
455
458
  "MIXED",
456
459
  "MOBILE_APP",
457
460
  "MOBILE_NETWORK",
461
+ "PAGE",
458
462
  "TEAMS_DEVICE",
459
463
  "VDI_APP",
460
464
  "WEB_APP"
@@ -319,6 +319,9 @@
319
319
  "type": "string"
320
320
  }
321
321
  },
322
+ "labelsStr": {
323
+ "type": "string"
324
+ },
322
325
  "webexServiceType": {
323
326
  "enum": [
324
327
  "MC",
@@ -456,6 +459,7 @@
456
459
  "MIXED",
457
460
  "MOBILE_APP",
458
461
  "MOBILE_NETWORK",
462
+ "PAGE",
459
463
  "TEAMS_DEVICE",
460
464
  "VDI_APP",
461
465
  "WEB_APP"
@@ -140,6 +140,7 @@ export interface Event {
140
140
  | "MIXED"
141
141
  | "MOBILE_APP"
142
142
  | "MOBILE_NETWORK"
143
+ | "PAGE"
143
144
  | "TEAMS_DEVICE"
144
145
  | "VDI_APP"
145
146
  | "WEB_APP";
@@ -342,6 +343,7 @@ export interface Event {
342
343
  */
343
344
  meetingPlatform?: "MsTeams" | "GoogleMeet" | "Zoom" | "Webex";
344
345
  labels?: string[];
346
+ labelsStr?: string;
345
347
  webexServiceType?: "MC" | "EC" | "SC" | "TC" | "AA" | "RA" | "NBR" | "WRF" | "HOL";
346
348
  /**
347
349
  * this defines the sub service type
@@ -443,6 +445,7 @@ export interface Event {
443
445
  | "MIXED"
444
446
  | "MOBILE_APP"
445
447
  | "MOBILE_NETWORK"
448
+ | "PAGE"
446
449
  | "TEAMS_DEVICE"
447
450
  | "VDI_APP"
448
451
  | "WEB_APP";
@@ -1467,6 +1470,7 @@ export interface Event {
1467
1470
  | "MIXED"
1468
1471
  | "MOBILE_APP"
1469
1472
  | "MOBILE_NETWORK"
1473
+ | "PAGE"
1470
1474
  | "TEAMS_DEVICE"
1471
1475
  | "VDI_APP"
1472
1476
  | "WEB_APP";
@@ -3333,6 +3337,7 @@ export interface Event {
3333
3337
  */
3334
3338
  meetingPlatform?: "MsTeams" | "GoogleMeet" | "Zoom" | "Webex";
3335
3339
  labels?: string[];
3340
+ labelsStr?: string;
3336
3341
  webexServiceType?: "MC" | "EC" | "SC" | "TC" | "AA" | "RA" | "NBR" | "WRF" | "HOL";
3337
3342
  /**
3338
3343
  * this defines the sub service type
@@ -3434,6 +3439,7 @@ export interface Event {
3434
3439
  | "MIXED"
3435
3440
  | "MOBILE_APP"
3436
3441
  | "MOBILE_NETWORK"
3442
+ | "PAGE"
3437
3443
  | "TEAMS_DEVICE"
3438
3444
  | "VDI_APP"
3439
3445
  | "WEB_APP";
@@ -4984,6 +4990,7 @@ export interface Event {
4984
4990
  */
4985
4991
  meetingPlatform?: "MsTeams" | "GoogleMeet" | "Zoom" | "Webex";
4986
4992
  labels?: string[];
4993
+ labelsStr?: string;
4987
4994
  webexServiceType?: "MC" | "EC" | "SC" | "TC" | "AA" | "RA" | "NBR" | "WRF" | "HOL";
4988
4995
  /**
4989
4996
  * this defines the sub service type
@@ -5085,6 +5092,7 @@ export interface Event {
5085
5092
  | "MIXED"
5086
5093
  | "MOBILE_APP"
5087
5094
  | "MOBILE_NETWORK"
5095
+ | "PAGE"
5088
5096
  | "TEAMS_DEVICE"
5089
5097
  | "VDI_APP"
5090
5098
  | "WEB_APP";
@@ -7981,6 +7989,7 @@ export interface Event {
7981
7989
  */
7982
7990
  meetingPlatform?: "MsTeams" | "GoogleMeet" | "Zoom" | "Webex";
7983
7991
  labels?: string[];
7992
+ labelsStr?: string;
7984
7993
  webexServiceType?: "MC" | "EC" | "SC" | "TC" | "AA" | "RA" | "NBR" | "WRF" | "HOL";
7985
7994
  /**
7986
7995
  * this defines the sub service type
@@ -8082,6 +8091,7 @@ export interface Event {
8082
8091
  | "MIXED"
8083
8092
  | "MOBILE_APP"
8084
8093
  | "MOBILE_NETWORK"
8094
+ | "PAGE"
8085
8095
  | "TEAMS_DEVICE"
8086
8096
  | "VDI_APP"
8087
8097
  | "WEB_APP";
@@ -9623,6 +9633,7 @@ export interface ClientEvent {
9623
9633
  */
9624
9634
  meetingPlatform?: "MsTeams" | "GoogleMeet" | "Zoom" | "Webex";
9625
9635
  labels?: string[];
9636
+ labelsStr?: string;
9626
9637
  webexServiceType?: "MC" | "EC" | "SC" | "TC" | "AA" | "RA" | "NBR" | "WRF" | "HOL";
9627
9638
  /**
9628
9639
  * this defines the sub service type
@@ -9717,6 +9728,7 @@ export interface ClientEvent {
9717
9728
  | "MIXED"
9718
9729
  | "MOBILE_APP"
9719
9730
  | "MOBILE_NETWORK"
9731
+ | "PAGE"
9720
9732
  | "TEAMS_DEVICE"
9721
9733
  | "VDI_APP"
9722
9734
  | "WEB_APP";
@@ -10741,6 +10753,7 @@ export interface ClientEvent {
10741
10753
  | "MIXED"
10742
10754
  | "MOBILE_APP"
10743
10755
  | "MOBILE_NETWORK"
10756
+ | "PAGE"
10744
10757
  | "TEAMS_DEVICE"
10745
10758
  | "VDI_APP"
10746
10759
  | "WEB_APP";
@@ -12521,6 +12534,7 @@ export interface FeatureEvent {
12521
12534
  */
12522
12535
  meetingPlatform?: "MsTeams" | "GoogleMeet" | "Zoom" | "Webex";
12523
12536
  labels?: string[];
12537
+ labelsStr?: string;
12524
12538
  webexServiceType?: "MC" | "EC" | "SC" | "TC" | "AA" | "RA" | "NBR" | "WRF" | "HOL";
12525
12539
  /**
12526
12540
  * this defines the sub service type
@@ -12615,6 +12629,7 @@ export interface FeatureEvent {
12615
12629
  | "MIXED"
12616
12630
  | "MOBILE_APP"
12617
12631
  | "MOBILE_NETWORK"
12632
+ | "PAGE"
12618
12633
  | "TEAMS_DEVICE"
12619
12634
  | "VDI_APP"
12620
12635
  | "WEB_APP";
@@ -14114,6 +14129,7 @@ export interface MediaQualityEvent {
14114
14129
  */
14115
14130
  meetingPlatform?: "MsTeams" | "GoogleMeet" | "Zoom" | "Webex";
14116
14131
  labels?: string[];
14132
+ labelsStr?: string;
14117
14133
  webexServiceType?: "MC" | "EC" | "SC" | "TC" | "AA" | "RA" | "NBR" | "WRF" | "HOL";
14118
14134
  /**
14119
14135
  * this defines the sub service type
@@ -14208,6 +14224,7 @@ export interface MediaQualityEvent {
14208
14224
  | "MIXED"
14209
14225
  | "MOBILE_APP"
14210
14226
  | "MOBILE_NETWORK"
14227
+ | "PAGE"
14211
14228
  | "TEAMS_DEVICE"
14212
14229
  | "VDI_APP"
14213
14230
  | "WEB_APP";
package/package.json CHANGED
@@ -28,5 +28,5 @@
28
28
  "access": "public",
29
29
  "registry": "https://registry.npmjs.org"
30
30
  },
31
- "version": "1.0.1355"
31
+ "version": "1.0.1357"
32
32
  }