@webex/event-dictionary-ts 1.0.2208 → 1.0.2210
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.
|
@@ -8559,6 +8559,14 @@
|
|
|
8559
8559
|
}
|
|
8560
8560
|
}
|
|
8561
8561
|
}
|
|
8562
|
+
},
|
|
8563
|
+
"leaveState": {
|
|
8564
|
+
"type": "string",
|
|
8565
|
+
"description": "Leave State - Set in some client.call.leave events. Indicates if the leave state is a leave attempt, or if the leave attempt was cancelled",
|
|
8566
|
+
"enum": [
|
|
8567
|
+
"attempt",
|
|
8568
|
+
"cancel"
|
|
8569
|
+
]
|
|
8562
8570
|
}
|
|
8563
8571
|
}
|
|
8564
8572
|
}
|
|
@@ -9193,6 +9193,14 @@
|
|
|
9193
9193
|
}
|
|
9194
9194
|
}
|
|
9195
9195
|
}
|
|
9196
|
+
},
|
|
9197
|
+
"leaveState": {
|
|
9198
|
+
"type": "string",
|
|
9199
|
+
"description": "Leave State - Set in some client.call.leave events. Indicates if the leave state is a leave attempt, or if the leave attempt was cancelled",
|
|
9200
|
+
"enum": [
|
|
9201
|
+
"attempt",
|
|
9202
|
+
"cancel"
|
|
9203
|
+
]
|
|
9196
9204
|
}
|
|
9197
9205
|
}
|
|
9198
9206
|
},
|
|
@@ -4438,6 +4438,10 @@ export interface Event {
|
|
|
4438
4438
|
};
|
|
4439
4439
|
additionalProperties?: never;
|
|
4440
4440
|
};
|
|
4441
|
+
/**
|
|
4442
|
+
* Leave State - Set in some client.call.leave events. Indicates if the leave state is a leave attempt, or if the leave attempt was cancelled
|
|
4443
|
+
*/
|
|
4444
|
+
leaveState?: "attempt" | "cancel";
|
|
4441
4445
|
additionalProperties?: never;
|
|
4442
4446
|
}
|
|
4443
4447
|
| {
|
|
@@ -21052,6 +21056,10 @@ export interface ClientEvent {
|
|
|
21052
21056
|
};
|
|
21053
21057
|
additionalProperties?: never;
|
|
21054
21058
|
};
|
|
21059
|
+
/**
|
|
21060
|
+
* Leave State - Set in some client.call.leave events. Indicates if the leave state is a leave attempt, or if the leave attempt was cancelled
|
|
21061
|
+
*/
|
|
21062
|
+
leaveState?: "attempt" | "cancel";
|
|
21055
21063
|
additionalProperties?: never;
|
|
21056
21064
|
}
|
|
21057
21065
|
|
package/package.json
CHANGED