Skip to content

Commit fda9f55

Browse files
authoredNov 25, 2022
fix: Fix user put API importing incorrectly for thirdpartyemailpassword (#441)
* Fix import for user put * Bump package version and changelog
1 parent e18c185 commit fda9f55

File tree

8 files changed

+12
-8
lines changed

8 files changed

+12
-8
lines changed
 

‎CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## [unreleased]
99

10+
## [12.1.1] - 2022-11-25
11+
12+
- Fixed an issue with importing the wrong recipe in the dashboard APIs
13+
1014
## [12.1.0] - 2022-11-17
1115

1216
### Added:

‎lib/build/recipe/dashboard/api/userdetails/userPut.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ var __awaiter =
3333
Object.defineProperty(exports, "__esModule", { value: true });
3434
const error_1 = require("../../../../error");
3535
const recipe_1 = require("../../../emailpassword/recipe");
36-
const recipe_2 = require("../../../emailpassword/recipe");
36+
const recipe_2 = require("../../../thirdpartyemailpassword/recipe");
3737
const recipe_3 = require("../../../passwordless/recipe");
3838
const recipe_4 = require("../../../thirdpartypasswordless/recipe");
3939
const emailpassword_1 = require("../../../emailpassword");

‎lib/build/version.d.ts

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

‎lib/build/version.js

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

‎lib/ts/recipe/dashboard/api/userdetails/userPut.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import { APIInterface, APIOptions } from "../../types";
22
import STError from "../../../../error";
33
import EmailPasswordRecipe from "../../../emailpassword/recipe";
4-
import ThirdPartyEmailPasswordRecipe from "../../../emailpassword/recipe";
4+
import ThirdPartyEmailPasswordRecipe from "../../../thirdpartyemailpassword/recipe";
55
import PasswordlessRecipe from "../../../passwordless/recipe";
66
import ThirdPartyPasswordlessRecipe from "../../../thirdpartypasswordless/recipe";
77
import EmailPassword from "../../../emailpassword";

‎lib/ts/version.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
* License for the specific language governing permissions and limitations
1313
* under the License.
1414
*/
15-
export const version = "12.1.0";
15+
export const version = "12.1.1";
1616

1717
export const cdiSupported = ["2.8", "2.9", "2.10", "2.11", "2.12", "2.13", "2.14", "2.15"];
1818

‎package-lock.json

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

‎package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "supertokens-node",
3-
"version": "12.1.0",
3+
"version": "12.1.1",
44
"description": "NodeJS driver for SuperTokens core",
55
"main": "index.js",
66
"scripts": {

0 commit comments

Comments
 (0)
Please sign in to comment.