Skip to content

Commit 796992c

Browse files
Adds step-up MFA
1 parent 8b0e2fb commit 796992c

File tree

5 files changed

+30
-10
lines changed

5 files changed

+30
-10
lines changed

package-lock.json

Lines changed: 5 additions & 5 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

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.32",
7+
"version": "2.1.33",
88
"license": "MIT",
99
"keywords": [
1010
"auth",
@@ -57,7 +57,7 @@
5757
}
5858
},
5959
"dependencies": {
60-
"@propelauth/node-apis": "^2.1.32",
60+
"@propelauth/node-apis": "^2.1.33",
6161
"jose": "^5.2.0"
6262
}
6363
}

packages/cloudflare-worker/src/index.ts

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,12 @@ export {
2323
CreateAccessTokenRequest,
2424
AccessToken,
2525
MigrateUserFromExternalSourceRequest,
26-
MigrateUserPasswordRequest
26+
MigrateUserPasswordRequest,
27+
StepUpMfaGrantType,
28+
VerifyTotpChallengeRequest,
29+
StepUpMfaVerifyTotpResponse,
30+
VerifyStepUpGrantRequest,
31+
StepUpMfaVerifyGrantResponse,
2732
} from "@propelauth/node-apis"
2833
export {
2934
ApiKeyValidateException,
@@ -45,6 +50,11 @@ export {
4550
UpdateUserEmailException,
4651
UpdateUserMetadataException,
4752
RateLimitedException,
53+
InvalidRequestFieldsException,
54+
FeatureGatedException,
55+
MfaNotEnabledException,
56+
IncorrectMfaCodeException,
57+
RevokePendingOrgInviteException,
4858
RevokePendingOrgInviteRequest,
4959
FetchSamlSpMetadataResponse,
5060
SetSamlIdpMetadataRequest,

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.32",
7+
"version": "2.1.33",
88
"license": "MIT",
99
"keywords": [
1010
"auth",
1111
"node",
1212
"user"
1313
],
1414
"dependencies": {
15-
"@propelauth/node-apis": "^2.1.32",
15+
"@propelauth/node-apis": "^2.1.33",
1616
"jose": "^5.2.0"
1717
},
1818
"devDependencies": {

packages/node/src/index.ts

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,11 @@ export {
2929
UpdateUserPasswordException,
3030
UserClass,
3131
UserNotFoundException,
32+
InvalidRequestFieldsException,
33+
FeatureGatedException,
34+
MfaNotEnabledException,
35+
IncorrectMfaCodeException,
36+
RevokePendingOrgInviteException,
3237
} from "@propelauth/node-apis"
3338
export type {
3439
AccessToken,
@@ -87,6 +92,11 @@ export type {
8792
FetchSamlSpMetadataResponse,
8893
SetSamlIdpMetadataRequest,
8994
IdpProvider,
95+
StepUpMfaGrantType,
96+
VerifyTotpChallengeRequest,
97+
StepUpMfaVerifyTotpResponse,
98+
VerifyStepUpGrantRequest,
99+
StepUpMfaVerifyGrantResponse,
90100
} from "@propelauth/node-apis"
91101
export {
92102
BaseAuthOptions,

0 commit comments

Comments
 (0)