@itentialopensource/adapter-utils
Advanced tools
Comparing version 4.46.0 to 4.47.0
## 4.47.0 [08-13-2022] | ||
* Add SSO capability into service instance config | ||
Closes ADAPT-2328 | ||
See merge request itentialopensource/adapter-utils!235 | ||
--- | ||
## 4.46.0 [07-27-2022] | ||
@@ -3,0 +13,0 @@ |
{ | ||
"name": "@itentialopensource/adapter-utils", | ||
"version": "4.46.0", | ||
"version": "4.47.0", | ||
"description": "Itential Adapter Utility Libraries", | ||
@@ -5,0 +5,0 @@ "scripts": { |
@@ -255,2 +255,30 @@ { | ||
"default": "" | ||
}, | ||
"sso": { | ||
"type": "object", | ||
"properties": { | ||
"protocol": { | ||
"type": "string", | ||
"description": "the protocol to request token from system", | ||
"default": "", | ||
"enum": [ | ||
"http", "https", "" | ||
] | ||
}, | ||
"host": { | ||
"type": "string", | ||
"description": "hostname of the authentication system", | ||
"default": "", | ||
"examples": [ | ||
"systemx.customer.com" | ||
] | ||
}, | ||
"port": { | ||
"type": "integer", | ||
"description": "port on which to connect to the authentication system", | ||
"default": 0, | ||
"minimum": 0, | ||
"maximum": 65535 | ||
} | ||
} | ||
} | ||
@@ -257,0 +285,0 @@ }, |
Sorry, the diff of this file is too big to display
541006
11644