@webex/event-dictionary-ts 1.0.1367 → 1.0.1369

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.
@@ -2893,15 +2893,24 @@
2893
2893
  "type": "object",
2894
2894
  "additionalProperties": true,
2895
2895
  "properties": {
2896
- "deviceType": {
2896
+ "deviceId": {
2897
2897
  "type": "string"
2898
2898
  },
2899
- "deviceId": {
2899
+ "deviceJoinType": {
2900
+ "type": "string"
2901
+ },
2902
+ "devicePairingType": {
2903
+ "type": "string"
2904
+ },
2905
+ "deviceType": {
2900
2906
  "type": "string"
2901
2907
  },
2902
2908
  "deviceURL": {
2903
2909
  "type": "string"
2904
2910
  },
2911
+ "isPersonalDevice": {
2912
+ "type": "boolean"
2913
+ },
2905
2914
  "modelNumber": {
2906
2915
  "type": "string"
2907
2916
  },
@@ -2910,9 +2919,6 @@
2910
2919
  },
2911
2920
  "tempSipUri": {
2912
2921
  "type": "string"
2913
- },
2914
- "isPersonalDevice": {
2915
- "type": "boolean"
2916
2922
  }
2917
2923
  }
2918
2924
  },
@@ -3368,15 +3368,24 @@
3368
3368
  "type": "object",
3369
3369
  "additionalProperties": true,
3370
3370
  "properties": {
3371
- "deviceType": {
3371
+ "deviceId": {
3372
3372
  "type": "string"
3373
3373
  },
3374
- "deviceId": {
3374
+ "deviceJoinType": {
3375
+ "type": "string"
3376
+ },
3377
+ "devicePairingType": {
3378
+ "type": "string"
3379
+ },
3380
+ "deviceType": {
3375
3381
  "type": "string"
3376
3382
  },
3377
3383
  "deviceURL": {
3378
3384
  "type": "string"
3379
3385
  },
3386
+ "isPersonalDevice": {
3387
+ "type": "boolean"
3388
+ },
3380
3389
  "modelNumber": {
3381
3390
  "type": "string"
3382
3391
  },
@@ -3385,9 +3394,6 @@
3385
3394
  },
3386
3395
  "tempSipUri": {
3387
3396
  "type": "string"
3388
- },
3389
- "isPersonalDevice": {
3390
- "type": "boolean"
3391
3397
  }
3392
3398
  }
3393
3399
  },
@@ -9734,15 +9740,24 @@
9734
9740
  "type": "object",
9735
9741
  "additionalProperties": true,
9736
9742
  "properties": {
9737
- "deviceType": {
9743
+ "deviceId": {
9738
9744
  "type": "string"
9739
9745
  },
9740
- "deviceId": {
9746
+ "deviceJoinType": {
9747
+ "type": "string"
9748
+ },
9749
+ "devicePairingType": {
9750
+ "type": "string"
9751
+ },
9752
+ "deviceType": {
9741
9753
  "type": "string"
9742
9754
  },
9743
9755
  "deviceURL": {
9744
9756
  "type": "string"
9745
9757
  },
9758
+ "isPersonalDevice": {
9759
+ "type": "boolean"
9760
+ },
9746
9761
  "modelNumber": {
9747
9762
  "type": "string"
9748
9763
  },
@@ -9751,9 +9766,6 @@
9751
9766
  },
9752
9767
  "tempSipUri": {
9753
9768
  "type": "string"
9754
- },
9755
- "isPersonalDevice": {
9756
- "type": "boolean"
9757
9769
  }
9758
9770
  }
9759
9771
  },
@@ -10526,6 +10538,37 @@
10526
10538
  "type": "string"
10527
10539
  }
10528
10540
  },
10541
+ "geoHintCandidates": {
10542
+ "type": "array",
10543
+ "items": {
10544
+ "type": "object",
10545
+ "description": "A potentially usable GeoHint for Orpheus's call placement logic",
10546
+ "additionalProperties": true,
10547
+ "properties": {
10548
+ "geoHints": {
10549
+ "type": "array",
10550
+ "items": {
10551
+ "type": "string"
10552
+ }
10553
+ },
10554
+ "source": {}
10555
+ }
10556
+ }
10557
+ },
10558
+ "geoHintClusterInformation": {
10559
+ "type": "object",
10560
+ "description": "Mapping information for a given GeoHint",
10561
+ "additionalProperties": true,
10562
+ "properties": {
10563
+ "geoHintClusters": {
10564
+ "type": "array",
10565
+ "items": {
10566
+ "type": "string"
10567
+ }
10568
+ },
10569
+ "source": {}
10570
+ }
10571
+ },
10529
10572
  "isCall": {
10530
10573
  "type": "boolean"
10531
10574
  },
@@ -11145,6 +11188,10 @@
11145
11188
  },
11146
11189
  "clientPublicNetworkPrefix": {
11147
11190
  "type": "string"
11191
+ },
11192
+ "timeShot": {
11193
+ "type": "string",
11194
+ "format": "date-time"
11148
11195
  }
11149
11196
  }
11150
11197
  },
@@ -1329,13 +1329,15 @@ export interface Event {
1329
1329
  contentAudioShare?: boolean;
1330
1330
  pairingState?: "paired" | "observing" | "challenging";
1331
1331
  pairedDevice?: {
1332
- deviceType?: string;
1333
1332
  deviceId?: string;
1333
+ deviceJoinType?: string;
1334
+ devicePairingType?: string;
1335
+ deviceType?: string;
1334
1336
  deviceURL?: string;
1337
+ isPersonalDevice?: boolean;
1335
1338
  modelNumber?: string;
1336
1339
  productName?: string;
1337
1340
  tempSipUri?: string;
1338
- isPersonalDevice?: boolean;
1339
1341
  additionalProperties?: false;
1340
1342
  };
1341
1343
  /**
@@ -4178,13 +4180,15 @@ export interface Event {
4178
4180
  | "WIRELESS_SHARE"
4179
4181
  | "ZTM";
4180
4182
  device?: {
4181
- deviceType?: string;
4182
4183
  deviceId?: string;
4184
+ deviceJoinType?: string;
4185
+ devicePairingType?: string;
4186
+ deviceType?: string;
4183
4187
  deviceURL?: string;
4188
+ isPersonalDevice?: boolean;
4184
4189
  modelNumber?: string;
4185
4190
  productName?: string;
4186
4191
  tempSipUri?: string;
4187
- isPersonalDevice?: boolean;
4188
4192
  additionalProperties?: false;
4189
4193
  };
4190
4194
  deviceState?: "idle" | "idle-observed" | "joined" | "joined-observing";
@@ -4544,6 +4548,19 @@ export interface Event {
4544
4548
  expectedCloudReachabilityClustersCount?: number;
4545
4549
  geoHint?: string[];
4546
4550
  geoHintClusters?: string[];
4551
+ geoHintCandidates?: {
4552
+ geoHints?: string[];
4553
+ source?: {};
4554
+ additionalProperties?: false;
4555
+ }[];
4556
+ /**
4557
+ * Mapping information for a given GeoHint
4558
+ */
4559
+ geoHintClusterInformation?: {
4560
+ geoHintClusters?: string[];
4561
+ source?: {};
4562
+ additionalProperties?: false;
4563
+ };
4547
4564
  isCall?: boolean;
4548
4565
  isTIP: boolean;
4549
4566
  /**
@@ -4858,6 +4875,7 @@ export interface Event {
4858
4875
  discoveryInfo?: {
4859
4876
  anycastEntryPoint?: string;
4860
4877
  clientPublicNetworkPrefix?: string;
4878
+ timeShot?: string;
4861
4879
  additionalProperties?: false;
4862
4880
  };
4863
4881
  isMeetingStartedByCCPUser?: boolean;
@@ -10623,13 +10641,15 @@ export interface ClientEvent {
10623
10641
  contentAudioShare?: boolean;
10624
10642
  pairingState?: "paired" | "observing" | "challenging";
10625
10643
  pairedDevice?: {
10626
- deviceType?: string;
10627
10644
  deviceId?: string;
10645
+ deviceJoinType?: string;
10646
+ devicePairingType?: string;
10647
+ deviceType?: string;
10628
10648
  deviceURL?: string;
10649
+ isPersonalDevice?: boolean;
10629
10650
  modelNumber?: string;
10630
10651
  productName?: string;
10631
10652
  tempSipUri?: string;
10632
- isPersonalDevice?: boolean;
10633
10653
  additionalProperties?: false;
10634
10654
  };
10635
10655
  /**
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.1367"
31
+ "version": "1.0.1369"
32
32
  }