@webex/event-dictionary-ts 1.0.1400 → 1.0.1402

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.
@@ -2819,13 +2819,14 @@
2819
2819
  }
2820
2820
  },
2821
2821
  "endTrigger": {
2822
+ "type": "string",
2823
+ "description": "End Trigger - indicate how the call was ended from client. Set in end of call events such as client.call.end, client.call.aborted",
2822
2824
  "enum": [
2823
2825
  "ejected",
2824
2826
  "end-meeting",
2825
2827
  "leave",
2826
2828
  "other"
2827
- ],
2828
- "type": "string"
2829
+ ]
2829
2830
  },
2830
2831
  "trigger": {
2831
2832
  "enum": [
@@ -3294,13 +3294,14 @@
3294
3294
  }
3295
3295
  },
3296
3296
  "endTrigger": {
3297
+ "type": "string",
3298
+ "description": "End Trigger - indicate how the call was ended from client. Set in end of call events such as client.call.end, client.call.aborted",
3297
3299
  "enum": [
3298
3300
  "ejected",
3299
3301
  "end-meeting",
3300
3302
  "leave",
3301
3303
  "other"
3302
- ],
3303
- "type": "string"
3304
+ ]
3304
3305
  },
3305
3306
  "trigger": {
3306
3307
  "enum": [
@@ -1286,6 +1286,9 @@ export interface Event {
1286
1286
  expiredAfter?: number;
1287
1287
  additionalProperties?: false;
1288
1288
  };
1289
+ /**
1290
+ * End Trigger - indicate how the call was ended from client. Set in end of call events such as client.call.end, client.call.aborted
1291
+ */
1289
1292
  endTrigger?: "ejected" | "end-meeting" | "leave" | "other";
1290
1293
  trigger?:
1291
1294
  | "bricklet"
@@ -10611,6 +10614,9 @@ export interface ClientEvent {
10611
10614
  expiredAfter?: number;
10612
10615
  additionalProperties?: false;
10613
10616
  };
10617
+ /**
10618
+ * End Trigger - indicate how the call was ended from client. Set in end of call events such as client.call.end, client.call.aborted
10619
+ */
10614
10620
  endTrigger?: "ejected" | "end-meeting" | "leave" | "other";
10615
10621
  trigger?:
10616
10622
  | "bricklet"
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.1400"
31
+ "version": "1.0.1402"
32
32
  }