Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

aws-user-service

Package Overview
Dependencies
Maintainers
2
Versions
47
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

aws-user-service - npm Package Compare versions

Comparing version 1.1.14 to 1.1.15

17

index.js

@@ -107,11 +107,14 @@ const AWS = require('aws-sdk')

async updateUserAttributes(userId, attributeName, attributeValue) {
async updateUserAttribute(userId, attributeName, attributeValue) {
return await updateUserAttributes(userId, [
{
"Name": attributeName,
"Value": attributeValue
}
])
}
async updateUserAttributes(userId, attributes) {
var params = {
"UserAttributes": [
{
"Name": attributeName,
"Value": attributeValue
}
],
"UserAttributes": attributes,
"Username": userId,

@@ -118,0 +121,0 @@ "UserPoolId": this.authIntegrationUserPoolId

{
"name": "aws-user-service",
"version": "1.1.14",
"version": "1.1.15",
"description": "Contain methods to work with asw user",

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

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc