You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Address PR review feedback: BXML verbs, unit tests, and smoke test fixes
- Add Connect and Endpoint BXML verbs with tests, registered in Bxml and Response
- Create EndpointsApi unit/mock test following existing API test patterns
- Add missing model unit tests: CreateWebRtcConnectionRequest, Device,
DeviceStatusEnum, ErrorResponse, Page, SipConnectionMetadata, SipCredentials
- Rename smoke test methods to operationId format (createEndpointTest, etc.)
- Use builder-style field initialization instead of setters
- Replace notNullValue()/hasProperty() assertions with direct field assertions
- Simplify list assertions to check first element directly
- Remove unnecessary filter-by-type test
Generated from Claude9 with Claude Code
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
* @param endpoints (list[Endpoint], optional): List of endpoints to connect. Defaults to [].
34
+
* @param connectCallbackUrl (str, optional): URL to send the Connect event to. May be a relative URL. Defaults to None.
35
+
* @param connectCallbackMethod (str, optional): The HTTP method to use for the request to connectCallbackUrl. GET or POST. Default value is POST. Defaults to None.
36
+
* @param connectCallbackFallbackUrl (str, optional): A fallback url which, if provided, will be used to retry the Connect callback delivery in case connectCallbackUrl fails to respond. Defaults to None.
37
+
* @param connectCallbackFallbackMethod (str, optional): The HTTP method to use for the request to connectCallbackFallbackUrl. GET or POST. Default value is POST. Defaults to None.
38
+
* @param username (str, optional): The username to send in the HTTP request to connectCallbackUrl. Defaults to None.
39
+
* @param password (str, optional): The password to send in the HTTP request to connectCallbackUrl. Defaults to None.
40
+
* @param fallbackUsername (str, optional): The username to send in the HTTP request to connectCallbackFallbackUrl. Defaults to None.
41
+
* @param fallbackPassword (str, optional): The password to send in the HTTP request to connectCallbackFallbackUrl. Defaults to None.
42
+
* @param tag (str, optional): A custom string that will be sent with this and all future callbacks unless overwritten by a future tag attribute or cleared. May be cleared by setting tag="" Max length 256 characters. Defaults to None.
43
+
*
44
+
*/
45
+
publicclassConnectimplementsVerb {
46
+
47
+
publicstaticfinalStringTYPE_NAME = "Connect";
48
+
49
+
@XmlElements({
50
+
@XmlElement(name = Endpoint.TYPE_NAME, type = Endpoint.class)
0 commit comments