-
Notifications
You must be signed in to change notification settings - Fork 7
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
SDK updates #118
SDK updates #118
Conversation
The following changes are needed to export the types correctly: The addition of an index file at diff --git a/src/models/index.ts b/src/models/index.ts
new file mode 100644
index 0000000..0a6a522
--- /dev/null
+++ b/src/models/index.ts
@@ -0,0 +1,4 @@
+/* tslint:disable */
+/* eslint-disable */
+export * from './UpdateMagicLinkAuthMethod';
+export * from './UpdateOtpAuthMethod'; and the re-export of that new index file in diff --git a/src/index.ts b/src/index.ts
index a937ac2..3ea2c82 100644
--- a/src/index.ts
+++ b/src/index.ts
@@ -5,6 +5,7 @@ export * from './types/MagicLink';
export * from './types/PassageConfig';
export * from './types/User';
export * from './generated/models';
+export * from './models';
export {
AppInfo as AppObject,
CreateUserRequest as CreateUserPayload,
@@ -17,7 +18,6 @@ export {
Layouts,
LayoutConfig,
ResponseError,
- UserEventInfo, <-- this one seems to have been broken since the last release https://github.com/passageidentity/passage-node/pull/109
UserMetadataFieldType,
UserMetadataField,
WebAuthnDevices,
|
Oh I'm sorry I forgot to mention in my last comment that one of the models was missed: git ended up resolving the diff between So |
|
No description provided.