@webex/event-dictionary-ts 1.0.1368 → 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
  },
@@ -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";
@@ -10637,13 +10641,15 @@ export interface ClientEvent {
10637
10641
  contentAudioShare?: boolean;
10638
10642
  pairingState?: "paired" | "observing" | "challenging";
10639
10643
  pairedDevice?: {
10640
- deviceType?: string;
10641
10644
  deviceId?: string;
10645
+ deviceJoinType?: string;
10646
+ devicePairingType?: string;
10647
+ deviceType?: string;
10642
10648
  deviceURL?: string;
10649
+ isPersonalDevice?: boolean;
10643
10650
  modelNumber?: string;
10644
10651
  productName?: string;
10645
10652
  tempSipUri?: string;
10646
- isPersonalDevice?: boolean;
10647
10653
  additionalProperties?: false;
10648
10654
  };
10649
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.1368"
31
+ "version": "1.0.1369"
32
32
  }