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

aws-fanout

Package Overview
Dependencies
Maintainers
1
Versions
25
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

aws-fanout - npm Package Compare versions

Comparing version 1.0.2 to 1.0.3

2

dist/sqs/setQueuePermissions.js

@@ -48,3 +48,3 @@ 'use strict';

}).then(function (queueAttributesRes) {
var arnList = getArnListFromPolicy(JSON.parse(queueAttributesRes.Attributes.Policy), scope.topicArns);
var arnList = queueAttributesRes.Attributes.Policy ? getArnListFromPolicy(JSON.parse(queueAttributesRes.Attributes.Policy), scope.topicArns) : scope.topicArns;
return createAttributes(arnList, scope.queueInfo.url, scope.queueInfo.arn);

@@ -51,0 +51,0 @@ }).then(function (attributes) {

@@ -32,3 +32,5 @@ import { SQS } from 'aws-sdk'

.then(queueAttributesRes => {
const arnList = getArnListFromPolicy(JSON.parse(queueAttributesRes.Attributes.Policy), scope.topicArns)
const arnList = queueAttributesRes.Attributes.Policy
? getArnListFromPolicy(JSON.parse(queueAttributesRes.Attributes.Policy), scope.topicArns)
: scope.topicArns
return createAttributes(arnList, scope.queueInfo.url, scope.queueInfo.arn)

@@ -35,0 +37,0 @@ })

{
"name": "aws-fanout",
"version": "1.0.2",
"version": "1.0.3",
"description": "A library wrapping SNS and SQS to allow for human readable names when using a fanout technique",

@@ -5,0 +5,0 @@ "main": "dist/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