@@ -61,10 +61,20 @@ export interface ProxyCreateResponse {
6161 | ProxyCreateResponse . MobileProxyConfig
6262 | ProxyCreateResponse . CustomProxyConfig ;
6363
64+ /**
65+ * Timestamp of the last health check performed on this proxy.
66+ */
67+ last_checked ?: string ;
68+
6469 /**
6570 * Readable name of the proxy.
6671 */
6772 name ?: string ;
73+
74+ /**
75+ * Current health status of the proxy.
76+ */
77+ status ?: 'available' | 'unavailable' ;
6878}
6979
7080export namespace ProxyCreateResponse {
@@ -268,10 +278,20 @@ export interface ProxyRetrieveResponse {
268278 | ProxyRetrieveResponse . MobileProxyConfig
269279 | ProxyRetrieveResponse . CustomProxyConfig ;
270280
281+ /**
282+ * Timestamp of the last health check performed on this proxy.
283+ */
284+ last_checked ?: string ;
285+
271286 /**
272287 * Readable name of the proxy.
273288 */
274289 name ?: string ;
290+
291+ /**
292+ * Current health status of the proxy.
293+ */
294+ status ?: 'available' | 'unavailable' ;
275295}
276296
277297export namespace ProxyRetrieveResponse {
@@ -478,10 +498,20 @@ export namespace ProxyListResponse {
478498 | ProxyListResponseItem . MobileProxyConfig
479499 | ProxyListResponseItem . CustomProxyConfig ;
480500
501+ /**
502+ * Timestamp of the last health check performed on this proxy.
503+ */
504+ last_checked ?: string ;
505+
481506 /**
482507 * Readable name of the proxy.
483508 */
484509 name ?: string ;
510+
511+ /**
512+ * Current health status of the proxy.
513+ */
514+ status ?: 'available' | 'unavailable' ;
485515 }
486516
487517 export namespace ProxyListResponseItem {
0 commit comments