Releases: okta/okta-sdk-nodejs
Releases · okta/okta-sdk-nodejs
6.1.0
6.0.1
6.0.0
Breaking Changes
- Some
Client
methods signature has changed - see CHANGELOG for details - Enum-like modules introduced in JS code
Features
- #289 Adds Brand API, Profile Enrolment and Access Policy models
- #287 Adds Authenticators API
- #278 Adds Org, Group Schema, Domain API, introduces enum modules
- #273 Introduces parameterized
getApplication
andcreateApplication
methods
Bug Fixes
- #281
@types
dependencies should be devDependencies
Other
- #291 bump dependencies to latest versions (resolves known vulnerabilities)
5.0.0
-
#259 Drop support for Node 10
-
#248 Generates SDK over latest spec
@okta/[email protected]
that includes new endpoints and updated method signatures. Please see list below for detailed information:- Fixes
- correct njwt-facing type signatures
- force required params in js code
- correct parsing of models' properties of array types
- Model changes
AuthorizationServer
- method
listPolicies
: returnsCollection<AuthorizationServerPolicy>
- method
createPolicy
: parameter type changed toAuthorizationServerPolicyOptions
, returnsCollection<AuthorizationServerPolicy>
- method
getPolicy
: returnsPromise<AuthorizationServerPolicy>
- method
updatePolicy
: second parameter type changed toAuthorizationServerPolicyOptions
, returnsPromise<AuthorizationServerPolicy>
- method
PolicyRule
- added properties:
actions: PolicyRuleActions
,conditions: PolicyRuleConditions
,name: string
- added properties:
SamlApplicationSettingsSignOn
- added properties:
slo: SingleLogout
,spCertificate: SpCertificate
- added properties:
InlineHookChannelConfig
- added properties:
method: string
- added properties:
OpenIdConnectApplicationSettingsClient
- added properties:
idp_initiated_login: OpenIdConnectApplicationIdpInitiatedLogin
- added properties:
UserType
- added method
replaceUserType
- added method
- added
AuthorizationServerPolicy
- added
AuthorizationServerPolicyRule
- added
AuthorizationServerPolicyRuleActions
- added
AuthorizationServerPolicyRuleActions
- added
AuthorizationServerPolicyRuleConditions
- added
NetworkZone
- added
NetworkZoneAddress
- added
NetworkZoneAddressType
- added
NetworkZoneLocation
- added
NetworkZoneStatus
- added
NetworkZoneType
- added
NetworkZoneUsage
- added
OpenIdConnectApplicationIdpInitiatedLogin
- added
PolicyRuleActions
- added
PolicyRuleActionsEnroll
- added
PolicyRuleActionsEnrollSelf
- added
ProfileMapping
- added
ProfileMappingProperty
- added
ProfileMappingPropertyPushStatus
- added
ProfileMappingSource
- added
SingleLogout
- added
SpCertificate
- added
ThreatInsightConfiguration
- added
TokenAuthorizationServerPolicyRuleAction
- added
UserSchema
- added
UserSchemaAttribute
- added
UserSchemaAttributeMaster
- added
UserSchemaAttributePermission
- added
UserSchemaBase
- added
UserSchemaBaseProperties
- added
UserSchemaDefinitions
- added
UserSchemaPublic
- Client changes
- method
createAuthorizationServerPolicy
: addedauthorizationServerPolicy: AuthorizationServerPolicyOptions
parameter - method
listAuthorizationServerPolicies
: returnsCollection<AuthorizationServerPolicy>
- method
getAuthorizationServerPolicy
: returnsPromise<AuthorizationServerPolicy>
- method
updateAuthorizationServerPolicy
: second parameter type changed toAuthorizationServerPolicyOptions
, returnsPromise<AuthorizationServerPolicy>
- method
listPolicies
returnsPromise<AuthorizationServerPolicy>
- added method
activateAuthorizationServerPolicy
- added method
deactivateAuthorizationServerPolicy
- added method
listAuthorizationServerPolicyRules
- added method
createAuthorizationServerPolicyRule
- added method
deleteAuthorizationServerPolicyRule
- added method
getAuthorizationServerPolicyRule
- added method
updateAuthorizationServerPolicyRule
- added method
activateAuthorizationServerPolicyRule
- added method
deactivateAuthorizationServerPolicyRule
- added method
listProfileMappings
- added method
getProfileMapping
- added method
updateProfileMapping
- added method
getApplicationUserSchema
- added method
updateApplicationUserProfile
- added method
getUserSchema
- added method
updateUserProfile
- added method
getCurrentConfiguration
- added method
updateConfiguration
- added method
createNetworkZone
- added method
deleteNetworkZone
- added method
getNetworkZone
- added method
updateNetworkZone
- added method
activateNetworkZone
- added method
deactivateNetworkZone
- method
- Fixes