Skip to content

Commit 8bd09d2

Browse files
authored
Add Migrate User Password API (#62)
* Add Migrate User Password API * Bump Version to 2.1.32 * Bump Version to 2.1.32
1 parent 1871a4b commit 8bd09d2

File tree

4 files changed

+9
-4
lines changed

4 files changed

+9
-4
lines changed

packages/cloudflare-worker/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
"type": "git",
55
"url": "https://github.com/PropelAuth/cloudflare-worker"
66
},
7-
"version": "2.1.31",
7+
"version": "2.1.32",
88
"license": "MIT",
99
"keywords": [
1010
"auth",
@@ -57,7 +57,7 @@
5757
}
5858
},
5959
"dependencies": {
60-
"@propelauth/node-apis": "^2.1.31",
60+
"@propelauth/node-apis": "^2.1.32",
6161
"jose": "^5.2.0"
6262
}
6363
}

packages/cloudflare-worker/src/index.ts

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,8 @@ export {
2222
MagicLink,
2323
CreateAccessTokenRequest,
2424
AccessToken,
25+
MigrateUserFromExternalSourceRequest,
26+
MigrateUserPasswordRequest
2527
} from "@propelauth/node-apis"
2628
export {
2729
ApiKeyValidateException,
@@ -37,6 +39,7 @@ export {
3739
ForbiddenException,
3840
MagicLinkCreationException,
3941
MigrateUserException,
42+
MigrateUserPasswordException,
4043
UserNotFoundException,
4144
UnauthorizedException,
4245
UpdateUserEmailException,

packages/node/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,15 +4,15 @@
44
"type": "git",
55
"url": "https://github.com/PropelAuth/node"
66
},
7-
"version": "2.1.31",
7+
"version": "2.1.32",
88
"license": "MIT",
99
"keywords": [
1010
"auth",
1111
"node",
1212
"user"
1313
],
1414
"dependencies": {
15-
"@propelauth/node-apis": "^2.1.31",
15+
"@propelauth/node-apis": "^2.1.32",
1616
"jose": "^5.2.0"
1717
},
1818
"devDependencies": {

packages/node/src/index.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@ export {
1515
ForbiddenException,
1616
MagicLinkCreationException,
1717
MigrateUserException,
18+
MigrateUserPasswordException,
1819
OrgMemberInfo,
1920
RateLimitedException,
2021
RemoveUserFromOrgException,
@@ -54,6 +55,7 @@ export type {
5455
LoginMethod,
5556
MagicLink,
5657
MigrateUserFromExternalSourceRequest,
58+
MigrateUserPasswordRequest,
5759
Org,
5860
OrgApiKeyValidation,
5961
OrgIdToOrgMemberInfo,

0 commit comments

Comments
 (0)