Commit 82aed0a 1 parent 3659bab commit 82aed0a Copy full SHA for 82aed0a
File tree 2 files changed +4
-9
lines changed
2 files changed +4
-9
lines changed Original file line number Diff line number Diff line change @@ -18,7 +18,7 @@ export type LoginMethodParams = Pick<
18
18
| "connectionId"
19
19
| "redirectURL"
20
20
| "hasSuccessPage"
21
- | "workflowId "
21
+ | "workflowDeploymentId "
22
22
| "releaseId"
23
23
> ;
24
24
@@ -112,13 +112,9 @@ export type LoginOptions = {
112
112
*/
113
113
nonce ?: string ;
114
114
/**
115
- * Workflow ID to trigger on authentication
115
+ * Workflow Deployment ID to trigger on authentication
116
116
*/
117
- workflowId ?: string ;
118
- /**
119
- * Release ID to trigger on authentication
120
- */
121
- releaseId ?: string ;
117
+ workflowDeploymentId ?: string ;
122
118
} ;
123
119
124
120
export enum IssuerRouteTypes {
Original file line number Diff line number Diff line change @@ -18,8 +18,7 @@ export const mapLoginMethodParamsForUrl = (
18
18
org_code : options . orgCode ,
19
19
org_name : options . orgName ,
20
20
has_success_page : options . hasSuccessPage ?. toString ( ) ,
21
- workflow_id : options . workflowId ,
22
- release_id : options . releaseId ,
21
+ workflow_deployment_id : options . workflowDeploymentId
23
22
} ;
24
23
25
24
Object . keys ( translate ) . forEach (
You can’t perform that action at this time.
0 commit comments