@webex/event-dictionary-ts 1.0.1444 → 1.0.1445

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.
@@ -2963,6 +2963,14 @@
2963
2963
  }
2964
2964
  }
2965
2965
  },
2966
+ "meetingJoinPhase": {
2967
+ "enum": [
2968
+ "pre-join",
2969
+ "join",
2970
+ "in-meeting"
2971
+ ],
2972
+ "type": "string"
2973
+ },
2966
2974
  "oldOrigin": {
2967
2975
  "type": "object",
2968
2976
  "description": "Information about the sender of the event",
@@ -3439,6 +3439,14 @@
3439
3439
  }
3440
3440
  }
3441
3441
  },
3442
+ "meetingJoinPhase": {
3443
+ "enum": [
3444
+ "pre-join",
3445
+ "join",
3446
+ "in-meeting"
3447
+ ],
3448
+ "type": "string"
3449
+ },
3442
3450
  "oldOrigin": {
3443
3451
  "type": "object",
3444
3452
  "description": "Information about the sender of the event",
@@ -1366,6 +1366,7 @@ export interface Event {
1366
1366
  tempSipUri?: string;
1367
1367
  additionalProperties?: false;
1368
1368
  };
1369
+ meetingJoinPhase?: "pre-join" | "join" | "in-meeting";
1369
1370
  /**
1370
1371
  * Information about the sender of the event
1371
1372
  */
@@ -12130,6 +12131,7 @@ export interface ClientEvent {
12130
12131
  tempSipUri?: string;
12131
12132
  additionalProperties?: false;
12132
12133
  };
12134
+ meetingJoinPhase?: "pre-join" | "join" | "in-meeting";
12133
12135
  /**
12134
12136
  * Information about the sender of the event
12135
12137
  */
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.1444"
31
+ "version": "1.0.1445"
32
32
  }