Skip to content

Commit 4a212bd

Browse files
authored
Add new APIs from node (#24)
* Add new APIs from node * bump versions
1 parent 2706c63 commit 4a212bd

File tree

2 files changed

+17
-2
lines changed

2 files changed

+17
-2
lines changed

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/express"
66
},
7-
"version": "2.1.33",
7+
"version": "2.1.34",
88
"license": "MIT",
99
"keywords": [
1010
"auth",
1111
"express",
1212
"user"
1313
],
1414
"dependencies": {
15-
"@propelauth/node": "^2.1.33"
15+
"@propelauth/node": "^2.1.34"
1616
},
1717
"devDependencies": {
1818
"@rollup/plugin-commonjs": "^19.0.0",

src/index.ts

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,7 @@ export {
3838
UserClass,
3939
UserMetadata,
4040
UserNotFoundException,
41+
ApiKeyImportException,
4142
} from "@propelauth/node"
4243
export type {
4344
AccessToken,
@@ -93,6 +94,20 @@ export type {
9394
UsersQuery,
9495
VerifyStepUpGrantRequest,
9596
VerifyTotpChallengeRequest,
97+
SendSmsMfaCodeRequest,
98+
SendSmsMfaCodeRequestResponse,
99+
VerifySmsChallengeRequest,
100+
VerifySmsChallengeResponse,
101+
InviteUserToOrgByUserIdRequest,
102+
FetchUserMfaMethodsResponse,
103+
ApiKeyUsageQueryRequest,
104+
ApiKeyUsageQueryResponse,
105+
ApiKeysImportRequest,
106+
Employee,
107+
MfaPhoneType,
108+
MfaPhones,
109+
MfaTotpType,
110+
96111
} from "@propelauth/node"
97112
export { AuthOptions, initAuth } from "./auth"
98113
export type { RequireOrgMemberArgs } from "./auth"

0 commit comments

Comments
 (0)