@@ -53,9 +53,11 @@ export type AuditDiff = Record<string, AuditDiffField>
53
53
54
54
// From codersdk/audit.go
55
55
export interface AuditDiffField {
56
- // eslint-disable-next-line @typescript-eslint/no-explicit-any -- TODO explain why this is needed
56
+ // Empty interface{} type, cannot resolve the type.
57
+ // eslint-disable-next-line @typescript-eslint/no-explicit-any -- interface{}
57
58
readonly old ?: any
58
- // eslint-disable-next-line @typescript-eslint/no-explicit-any -- TODO explain why this is needed
59
+ // Empty interface{} type, cannot resolve the type.
60
+ // eslint-disable-next-line @typescript-eslint/no-explicit-any -- interface{}
59
61
readonly new ?: any
60
62
readonly secret : boolean
61
63
}
@@ -67,7 +69,7 @@ export interface AuditLog {
67
69
readonly time : string
68
70
readonly organization_id : string
69
71
// Named type "net/netip.Addr" unknown, using "any"
70
- // eslint-disable-next-line @typescript-eslint/no-explicit-any -- TODO explain why this is needed
72
+ // eslint-disable-next-line @typescript-eslint/no-explicit-any -- External type
71
73
readonly ip : any
72
74
readonly user_agent : string
73
75
readonly resource_type : ResourceType
@@ -357,13 +359,13 @@ export interface DeploymentValues {
357
359
readonly disable_password_auth ?: boolean
358
360
readonly support ?: SupportConfig
359
361
// Named type "github.com/coder/coder/cli/clibase.Struct[[]github.com/coder/coder/codersdk.GitAuthConfig]" unknown, using "any"
360
- // eslint-disable-next-line @typescript-eslint/no-explicit-any -- TODO explain why this is needed
362
+ // eslint-disable-next-line @typescript-eslint/no-explicit-any -- External type
361
363
readonly git_auth ?: any
362
364
readonly config_ssh ?: SSHConfig
363
365
readonly config ?: string
364
366
readonly write_config ?: boolean
365
367
// Named type "github.com/coder/coder/cli/clibase.HostPort" unknown, using "any"
366
- // eslint-disable-next-line @typescript-eslint/no-explicit-any -- TODO explain why this is needed
368
+ // eslint-disable-next-line @typescript-eslint/no-explicit-any -- External type
367
369
readonly address ?: any
368
370
}
369
371
@@ -442,7 +444,8 @@ export interface License {
442
444
readonly id : number
443
445
readonly uuid : string
444
446
readonly uploaded_at : string
445
- // eslint-disable-next-line @typescript-eslint/no-explicit-any -- TODO explain why this is needed
447
+ // Empty interface{} type, cannot resolve the type.
448
+ // eslint-disable-next-line @typescript-eslint/no-explicit-any -- interface{}
446
449
readonly claims : Record < string , any >
447
450
}
448
451
@@ -578,15 +581,15 @@ export interface PatchGroupRequest {
578
581
export interface PprofConfig {
579
582
readonly enable : boolean
580
583
// Named type "github.com/coder/coder/cli/clibase.HostPort" unknown, using "any"
581
- // eslint-disable-next-line @typescript-eslint/no-explicit-any -- TODO explain why this is needed
584
+ // eslint-disable-next-line @typescript-eslint/no-explicit-any -- External type
582
585
readonly address : any
583
586
}
584
587
585
588
// From codersdk/deployment.go
586
589
export interface PrometheusConfig {
587
590
readonly enable : boolean
588
591
// Named type "github.com/coder/coder/cli/clibase.HostPort" unknown, using "any"
589
- // eslint-disable-next-line @typescript-eslint/no-explicit-any -- TODO explain why this is needed
592
+ // eslint-disable-next-line @typescript-eslint/no-explicit-any -- External type
590
593
readonly address : any
591
594
}
592
595
@@ -683,7 +686,8 @@ export interface SSHConfigResponse {
683
686
// From codersdk/serversentevents.go
684
687
export interface ServerSentEvent {
685
688
readonly type : ServerSentEventType
686
- // eslint-disable-next-line @typescript-eslint/no-explicit-any -- TODO explain why this is needed
689
+ // Empty interface{} type, cannot resolve the type.
690
+ // eslint-disable-next-line @typescript-eslint/no-explicit-any -- interface{}
687
691
readonly data : any
688
692
}
689
693
@@ -705,7 +709,7 @@ export interface SessionCountDeploymentStats {
705
709
// From codersdk/deployment.go
706
710
export interface SupportConfig {
707
711
// Named type "github.com/coder/coder/cli/clibase.Struct[[]github.com/coder/coder/codersdk.LinkConfig]" unknown, using "any"
708
- // eslint-disable-next-line @typescript-eslint/no-explicit-any -- TODO explain why this is needed
712
+ // eslint-disable-next-line @typescript-eslint/no-explicit-any -- External type
709
713
readonly links : any
710
714
}
711
715
@@ -718,7 +722,7 @@ export interface SwaggerConfig {
718
722
export interface TLSConfig {
719
723
readonly enable : boolean
720
724
// Named type "github.com/coder/coder/cli/clibase.HostPort" unknown, using "any"
721
- // eslint-disable-next-line @typescript-eslint/no-explicit-any -- TODO explain why this is needed
725
+ // eslint-disable-next-line @typescript-eslint/no-explicit-any -- External type
722
726
readonly address : any
723
727
readonly redirect_http : boolean
724
728
readonly cert_file : string [ ]
0 commit comments