File tree Expand file tree Collapse file tree 2 files changed +75
-0
lines changed Expand file tree Collapse file tree 2 files changed +75
-0
lines changed Original file line number Diff line number Diff line change 3231
3231
}
3232
3232
}
3233
3233
},
3234
+ {
3235
+ "type" : " object" ,
3236
+ "additionalProperties" : false ,
3237
+ "properties" : {
3238
+ "type" : {
3239
+ "type" : " string" ,
3240
+ "enum" : [
3241
+ " compromisedSSHKey"
3242
+ ]
3243
+ },
3244
+ "value" : {
3245
+ "allOf" : [
3246
+ {
3247
+ "$ref" : " #/components/schemas/SocketIssueBasics"
3248
+ },
3249
+ {
3250
+ "type" : " object" ,
3251
+ "additionalProperties" : false ,
3252
+ "properties" : {
3253
+ "description" : {
3254
+ "type" : " string" ,
3255
+ "default" : " "
3256
+ },
3257
+ "props" : {
3258
+ "type" : " object" ,
3259
+ "additionalProperties" : false ,
3260
+ "properties" : {
3261
+ "fingerprint" : {
3262
+ "type" : " string" ,
3263
+ "default" : " "
3264
+ },
3265
+ "sshKey" : {
3266
+ "type" : " string" ,
3267
+ "default" : " "
3268
+ },
3269
+ "username" : {
3270
+ "type" : " string" ,
3271
+ "default" : " "
3272
+ }
3273
+ },
3274
+ "required" : [
3275
+ " fingerprint" ,
3276
+ " sshKey" ,
3277
+ " username"
3278
+ ]
3279
+ },
3280
+ "usage" : {
3281
+ "$ref" : " #/components/schemas/SocketUsageRef"
3282
+ }
3283
+ },
3284
+ "required" : [
3285
+ " description" ,
3286
+ " props"
3287
+ ]
3288
+ }
3289
+ ]
3290
+ }
3291
+ }
3292
+ },
3234
3293
{
3235
3294
"type" : " object" ,
3236
3295
"additionalProperties" : false ,
Original file line number Diff line number Diff line change @@ -1053,6 +1053,22 @@ export interface components {
1053
1053
} ;
1054
1054
usage ?: components [ "schemas" ] [ "SocketUsageRef" ] ;
1055
1055
} ;
1056
+ } ) | ( {
1057
+ /** @enum {string} */
1058
+ type ?: "compromisedSSHKey" ;
1059
+ value ?: components [ "schemas" ] [ "SocketIssueBasics" ] & {
1060
+ /** @default */
1061
+ description : string ;
1062
+ props : {
1063
+ /** @default */
1064
+ fingerprint : string ;
1065
+ /** @default */
1066
+ sshKey : string ;
1067
+ /** @default */
1068
+ username : string ;
1069
+ } ;
1070
+ usage ?: components [ "schemas" ] [ "SocketUsageRef" ] ;
1071
+ } ;
1056
1072
} ) | ( {
1057
1073
/** @enum {string} */
1058
1074
type ?: "semverAnomaly" ;
You can’t perform that action at this time.
0 commit comments