@factiii/auth 0.5.2 → 0.5.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.d.mts +2 -0
- package/dist/index.d.ts +2 -0
- package/dist/index.js +2 -1
- package/dist/index.mjs +2 -1
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -754,6 +754,7 @@ declare function createAuthRouter<TExtensions extends SchemaExtensions = {}>(con
|
|
|
754
754
|
output: {
|
|
755
755
|
success: boolean;
|
|
756
756
|
requires2FA: boolean;
|
|
757
|
+
userId: number;
|
|
757
758
|
user?: undefined;
|
|
758
759
|
} | {
|
|
759
760
|
success: boolean;
|
|
@@ -763,6 +764,7 @@ declare function createAuthRouter<TExtensions extends SchemaExtensions = {}>(con
|
|
|
763
764
|
username: string;
|
|
764
765
|
};
|
|
765
766
|
requires2FA?: undefined;
|
|
767
|
+
userId?: undefined;
|
|
766
768
|
};
|
|
767
769
|
meta: Meta;
|
|
768
770
|
}>;
|
package/dist/index.d.ts
CHANGED
|
@@ -754,6 +754,7 @@ declare function createAuthRouter<TExtensions extends SchemaExtensions = {}>(con
|
|
|
754
754
|
output: {
|
|
755
755
|
success: boolean;
|
|
756
756
|
requires2FA: boolean;
|
|
757
|
+
userId: number;
|
|
757
758
|
user?: undefined;
|
|
758
759
|
} | {
|
|
759
760
|
success: boolean;
|
|
@@ -763,6 +764,7 @@ declare function createAuthRouter<TExtensions extends SchemaExtensions = {}>(con
|
|
|
763
764
|
username: string;
|
|
764
765
|
};
|
|
765
766
|
requires2FA?: undefined;
|
|
767
|
+
userId?: undefined;
|
|
766
768
|
};
|
|
767
769
|
meta: Meta;
|
|
768
770
|
}>;
|
package/dist/index.js
CHANGED
package/dist/index.mjs
CHANGED