File tree Expand file tree Collapse file tree 3 files changed +8
-3
lines changed
packages/backend/src/api/endpoints Expand file tree Collapse file tree 3 files changed +8
-3
lines changed Original file line number Diff line number Diff line change 1+ ---
2+ ' @clerk/backend ' : patch
3+ ---
4+
5+ Dropping the ` __experimental_ ` prefix from ` setPasswordCompromised ` and ` unsetPasswordCompromised ` and marking them as stable
Original file line number Diff line number Diff line change @@ -237,7 +237,7 @@ export const createUserService = (clerkClient: ClerkClient) => {
237237 } satisfies FakeAPIKey ;
238238 } ,
239239 setPasswordCompromised : async ( userId : string ) => {
240- await clerkClient . users . __experimental_setPasswordCompromised ( userId ) ;
240+ await clerkClient . users . setPasswordCompromised ( userId ) ;
241241 } ,
242242 } ;
243243
Original file line number Diff line number Diff line change @@ -452,7 +452,7 @@ export class UserAPI extends AbstractAPI {
452452 } ) ;
453453 }
454454
455- public async __experimental_setPasswordCompromised (
455+ public async setPasswordCompromised (
456456 userId : string ,
457457 params : SetPasswordCompromisedParams = {
458458 revokeAllSessions : false ,
@@ -466,7 +466,7 @@ export class UserAPI extends AbstractAPI {
466466 } ) ;
467467 }
468468
469- public async __experimental_unsetPasswordCompromised ( userId : string ) {
469+ public async unsetPasswordCompromised ( userId : string ) {
470470 this . requireId ( userId ) ;
471471 return this . request < User > ( {
472472 method : 'POST' ,
You can’t perform that action at this time.
0 commit comments