File tree Expand file tree Collapse file tree 2 files changed +9
-3
lines changed Expand file tree Collapse file tree 2 files changed +9
-3
lines changed Original file line number Diff line number Diff line change 558558 "description" : " Password of username. If not set here it must be provided when connecting."
559559 },
560560 "https" : {
561- "description" : " Use SSL to access to API ." ,
561+ "description" : " Use SSL/TLS to access the server ." ,
562562 "type" : " boolean" ,
563563 "default" : false
564564 },
565565 "links" : {
566566 "description" : " Extra links for the server." ,
567- "type" : " object"
567+ "type" : " object" ,
568+ "patternProperties" : {
569+ ".*" : {
570+ "type" : " string" ,
571+ "format" : " uri"
572+ }
573+ }
568574 },
569575 "docker-compose" : {
570576 "type" : " object" ,
Original file line number Diff line number Diff line change @@ -228,7 +228,7 @@ export class AtelierAPI {
228228 headers [ "Cache-Control" ] = "no-cache" ;
229229
230230 const proto = this . _config . https ? "https" : "http" ;
231- const http : any = this . _config . https ? httpsModule : httpModule ;
231+ const http = this . _config . https ? httpsModule : httpModule ;
232232 const agent = new http . Agent ( {
233233 keepAlive : true ,
234234 maxSockets : 10 ,
You can’t perform that action at this time.
0 commit comments