File tree Expand file tree Collapse file tree 1 file changed +15
-0
lines changed Expand file tree Collapse file tree 1 file changed +15
-0
lines changed Original file line number Diff line number Diff line change @@ -287,6 +287,18 @@ export interface License {
287
287
readonly claims : Record < string , any >
288
288
}
289
289
290
+ // From codersdk/agentconn.go
291
+ export interface ListeningPort {
292
+ readonly process_name : string
293
+ readonly network : ListeningPortNetwork
294
+ readonly port : number
295
+ }
296
+
297
+ // From codersdk/agentconn.go
298
+ export interface ListeningPortsResponse {
299
+ readonly ports : ListeningPort [ ]
300
+ }
301
+
290
302
// From codersdk/users.go
291
303
export interface LoginWithPasswordRequest {
292
304
readonly email : string
@@ -671,6 +683,9 @@ export type BuildReason = "autostart" | "autostop" | "initiator"
671
683
// From codersdk/features.go
672
684
export type Entitlement = "entitled" | "grace_period" | "not_entitled"
673
685
686
+ // From codersdk/agentconn.go
687
+ export type ListeningPortNetwork = "tcp"
688
+
674
689
// From codersdk/provisionerdaemons.go
675
690
export type LogLevel = "debug" | "error" | "info" | "trace" | "warn"
676
691
You can’t perform that action at this time.
0 commit comments