@gitrows/gitrows-utils
Advanced tools
Comparing version 0.3.11 to 0.3.12
@@ -140,3 +140,14 @@ const AWS = require('aws-sdk'); | ||
break; | ||
case 'auth0': | ||
result=await ddba._getItemByIndex('flink-users', 'id-auth0-index', { | ||
"id:auth0": uid | ||
}); | ||
result=Array.isArray(result)?result.pop():result; | ||
break; | ||
default: | ||
var query={}; | ||
query["id:"+service]=uid | ||
result=await ddba._getItemByIndex('flink-users', `id-${service}-index`, query); | ||
result=Array.isArray(result)?result.pop():result; | ||
} | ||
@@ -143,0 +154,0 @@ } else |
{ | ||
"name": "@gitrows/gitrows-utils", | ||
"version": "0.3.11", | ||
"version": "0.3.12", | ||
"description": "Data and string handling utilities for @gitrows", | ||
@@ -5,0 +5,0 @@ "main": "index.js", |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
26286
853