@webex/event-dictionary-ts 1.0.1368 → 1.0.1370

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.
@@ -2827,7 +2827,8 @@
2827
2827
  "user-interaction",
2828
2828
  "web-ucf-crosslaunch",
2829
2829
  "wireless-share",
2830
- "deep-link"
2830
+ "deep-link",
2831
+ "protocol-generated-link"
2831
2832
  ],
2832
2833
  "type": "string"
2833
2834
  },
@@ -2893,15 +2894,24 @@
2893
2894
  "type": "object",
2894
2895
  "additionalProperties": true,
2895
2896
  "properties": {
2896
- "deviceType": {
2897
+ "deviceId": {
2897
2898
  "type": "string"
2898
2899
  },
2899
- "deviceId": {
2900
+ "deviceJoinType": {
2901
+ "type": "string"
2902
+ },
2903
+ "devicePairingType": {
2904
+ "type": "string"
2905
+ },
2906
+ "deviceType": {
2900
2907
  "type": "string"
2901
2908
  },
2902
2909
  "deviceURL": {
2903
2910
  "type": "string"
2904
2911
  },
2912
+ "isPersonalDevice": {
2913
+ "type": "boolean"
2914
+ },
2905
2915
  "modelNumber": {
2906
2916
  "type": "string"
2907
2917
  },
@@ -2910,9 +2920,6 @@
2910
2920
  },
2911
2921
  "tempSipUri": {
2912
2922
  "type": "string"
2913
- },
2914
- "isPersonalDevice": {
2915
- "type": "boolean"
2916
2923
  }
2917
2924
  }
2918
2925
  },
@@ -3302,7 +3302,8 @@
3302
3302
  "user-interaction",
3303
3303
  "web-ucf-crosslaunch",
3304
3304
  "wireless-share",
3305
- "deep-link"
3305
+ "deep-link",
3306
+ "protocol-generated-link"
3306
3307
  ],
3307
3308
  "type": "string"
3308
3309
  },
@@ -3368,15 +3369,24 @@
3368
3369
  "type": "object",
3369
3370
  "additionalProperties": true,
3370
3371
  "properties": {
3371
- "deviceType": {
3372
+ "deviceId": {
3372
3373
  "type": "string"
3373
3374
  },
3374
- "deviceId": {
3375
+ "deviceJoinType": {
3376
+ "type": "string"
3377
+ },
3378
+ "devicePairingType": {
3379
+ "type": "string"
3380
+ },
3381
+ "deviceType": {
3375
3382
  "type": "string"
3376
3383
  },
3377
3384
  "deviceURL": {
3378
3385
  "type": "string"
3379
3386
  },
3387
+ "isPersonalDevice": {
3388
+ "type": "boolean"
3389
+ },
3380
3390
  "modelNumber": {
3381
3391
  "type": "string"
3382
3392
  },
@@ -3385,9 +3395,6 @@
3385
3395
  },
3386
3396
  "tempSipUri": {
3387
3397
  "type": "string"
3388
- },
3389
- "isPersonalDevice": {
3390
- "type": "boolean"
3391
3398
  }
3392
3399
  }
3393
3400
  },
@@ -9734,15 +9741,24 @@
9734
9741
  "type": "object",
9735
9742
  "additionalProperties": true,
9736
9743
  "properties": {
9737
- "deviceType": {
9744
+ "deviceId": {
9738
9745
  "type": "string"
9739
9746
  },
9740
- "deviceId": {
9747
+ "deviceJoinType": {
9748
+ "type": "string"
9749
+ },
9750
+ "devicePairingType": {
9751
+ "type": "string"
9752
+ },
9753
+ "deviceType": {
9741
9754
  "type": "string"
9742
9755
  },
9743
9756
  "deviceURL": {
9744
9757
  "type": "string"
9745
9758
  },
9759
+ "isPersonalDevice": {
9760
+ "type": "boolean"
9761
+ },
9746
9762
  "modelNumber": {
9747
9763
  "type": "string"
9748
9764
  },
@@ -9751,9 +9767,6 @@
9751
9767
  },
9752
9768
  "tempSipUri": {
9753
9769
  "type": "string"
9754
- },
9755
- "isPersonalDevice": {
9756
- "type": "boolean"
9757
9770
  }
9758
9771
  }
9759
9772
  },
@@ -1302,7 +1302,8 @@ export interface Event {
1302
1302
  | "user-interaction"
1303
1303
  | "web-ucf-crosslaunch"
1304
1304
  | "wireless-share"
1305
- | "deep-link";
1305
+ | "deep-link"
1306
+ | "protocol-generated-link";
1306
1307
  leaveReason?: "paired-leave" | "one-to-one" | "ended-by-locus";
1307
1308
  displayLocation?:
1308
1309
  | "toast"
@@ -1329,13 +1330,15 @@ export interface Event {
1329
1330
  contentAudioShare?: boolean;
1330
1331
  pairingState?: "paired" | "observing" | "challenging";
1331
1332
  pairedDevice?: {
1332
- deviceType?: string;
1333
1333
  deviceId?: string;
1334
+ deviceJoinType?: string;
1335
+ devicePairingType?: string;
1336
+ deviceType?: string;
1334
1337
  deviceURL?: string;
1338
+ isPersonalDevice?: boolean;
1335
1339
  modelNumber?: string;
1336
1340
  productName?: string;
1337
1341
  tempSipUri?: string;
1338
- isPersonalDevice?: boolean;
1339
1342
  additionalProperties?: false;
1340
1343
  };
1341
1344
  /**
@@ -4178,13 +4181,15 @@ export interface Event {
4178
4181
  | "WIRELESS_SHARE"
4179
4182
  | "ZTM";
4180
4183
  device?: {
4181
- deviceType?: string;
4182
4184
  deviceId?: string;
4185
+ deviceJoinType?: string;
4186
+ devicePairingType?: string;
4187
+ deviceType?: string;
4183
4188
  deviceURL?: string;
4189
+ isPersonalDevice?: boolean;
4184
4190
  modelNumber?: string;
4185
4191
  productName?: string;
4186
4192
  tempSipUri?: string;
4187
- isPersonalDevice?: boolean;
4188
4193
  additionalProperties?: false;
4189
4194
  };
4190
4195
  deviceState?: "idle" | "idle-observed" | "joined" | "joined-observing";
@@ -10610,7 +10615,8 @@ export interface ClientEvent {
10610
10615
  | "user-interaction"
10611
10616
  | "web-ucf-crosslaunch"
10612
10617
  | "wireless-share"
10613
- | "deep-link";
10618
+ | "deep-link"
10619
+ | "protocol-generated-link";
10614
10620
  leaveReason?: "paired-leave" | "one-to-one" | "ended-by-locus";
10615
10621
  displayLocation?:
10616
10622
  | "toast"
@@ -10637,13 +10643,15 @@ export interface ClientEvent {
10637
10643
  contentAudioShare?: boolean;
10638
10644
  pairingState?: "paired" | "observing" | "challenging";
10639
10645
  pairedDevice?: {
10640
- deviceType?: string;
10641
10646
  deviceId?: string;
10647
+ deviceJoinType?: string;
10648
+ devicePairingType?: string;
10649
+ deviceType?: string;
10642
10650
  deviceURL?: string;
10651
+ isPersonalDevice?: boolean;
10643
10652
  modelNumber?: string;
10644
10653
  productName?: string;
10645
10654
  tempSipUri?: string;
10646
- isPersonalDevice?: boolean;
10647
10655
  additionalProperties?: false;
10648
10656
  };
10649
10657
  /**
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.1370"
32
32
  }