New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

lightapp-platform-common

Package Overview
Dependencies
Maintainers
1
Versions
103
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

lightapp-platform-common - npm Package Compare versions

Comparing version

to
1.0.451

2

package.json
{
"name": "lightapp-platform-common",
"version": "1.0.450",
"version": "1.0.451",
"description": "common utilities for lightapp platform",

@@ -5,0 +5,0 @@ "main": "index.js",

@@ -43,3 +43,3 @@ "use strict";

catch (error) {
_error = error(error, 'fail instantiating CognitoUserPool');
_error = Result_2.getError(error, 'fail instantiating CognitoUserPool');
_result = Result_2.getResult(Result_1.StatusCode.BAD_REQUEST);

@@ -111,3 +111,3 @@ console.error(`in new CognitoUserPool catch ${error}`);

_error = Result_2.getError(err, `fail in cognitoUser.confirmRegistration with verificationCode: ${verificationCode}`);
_result = result(Result_1.StatusCode.BAD_REQUEST, err);
_result = Result_2.getResult(Result_1.StatusCode.BAD_REQUEST, err);
callBack(_error, _result);

@@ -117,3 +117,3 @@ }

console.log(`success in confirmRegistration. result: ${JSON.stringify(result)}`);
_result = result(Result_1.StatusCode.OK, result);
_result = Result_2.getResult(Result_1.StatusCode.OK, result);
callBack(null, _result);

@@ -120,0 +120,0 @@ }