Socket
Socket
Sign inDemoInstall

agilite

Package Overview
Dependencies
160
Maintainers
1
Versions
69
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

Comparing version 6.7.5 to 6.8.0

controllers/admin-solutions.js

8

controllers/agilite.js

@@ -18,2 +18,4 @@ 'use strict'

const BatchLogging = require('./batchlogging')
const NodeRed = require('./nodered')
const AdminSolutions = require('./admin-solutions')
const Utilities = require('../utils/utils')

@@ -47,2 +49,4 @@

this.BatchLogging = new BatchLogging(config)
this.NodeRed = new NodeRed(config)
this.AdminSolutions = new AdminSolutions(config)

@@ -64,3 +68,5 @@ this.appName = {

MODULE_KEY_EVENTS: 'events',
MODULE_KEY_BATCH_LOGGING: 'batchlogging'
MODULE_KEY_BATCH_LOGGING: 'batchlogging',
MODULE_KEY_NODE_RED: 'nodered',
MODULE_KEY_ADMIN_SOLUTIONS: 'solutions'
}

@@ -67,0 +73,0 @@

@@ -364,3 +364,3 @@ 'use strict'

exportData (includeModules, logProcessId = null) {
exportData (includeModules, solutionsArray, includeData, includeCredentials, logProcessId = null) {
let config = {

@@ -381,2 +381,14 @@ url: `${this.apiServerUrl}/${Enums.MODULE_KEY_UTILS}/exportAllData`,

if (solutionsArray !== undefined && solutionsArray !== null) {
config.headers.solutions = solutionsArray
}
if (includeData !== undefined && includeData !== null) {
config.headers[Enums.HEADER_INCLUDE_DATA] = includeData
}
if (includeCredentials !== undefined && includeCredentials !== null) {
config.headers[Enums.HEADER_INCLUDE_CREDENTIALS] = includeCredentials
}
if (this.apiKey !== undefined && this.apiKey !== null) {

@@ -383,0 +395,0 @@ config.headers[Enums.HEADER_API_KEY] = this.apiKey

4

data-templates/connectors.js

@@ -34,3 +34,3 @@ const data = {

},
imap: {
smtp: {
smtpHost: '',

@@ -127,3 +127,3 @@ smtpPort: '',

},
imap: {
smtp: {
smtpHost: '',

@@ -130,0 +130,0 @@ smtpPort: '',

{
"name": "agilite",
"license": "MIT",
"version": "6.7.5",
"version": "6.8.0",
"description": "A NodeJS module that provides seamless interactions with Agilit-e APIs",

@@ -41,9 +41,9 @@ "homepage": "https://agilite.io",

"dependencies": {
"axios": "0.19.1",
"axios": "0.19.2",
"chai": "4.2.0",
"dotenv": "8.2.0",
"mocha": "7.0.0",
"mocha": "7.1.2",
"type-detect": "4.0.8",
"uuid": "3.3.3"
"uuid": "8.0.0"
}
}

@@ -57,2 +57,4 @@ const Enums = {

HEADER_LOG_PROCESS_ID: 'log-process-id',
HEADER_INCLUDE_DATA: 'include-data',
HEADER_INCLUDE_CREDENTIALS: 'include-credentials',
METHOD_DELETE: 'delete',

@@ -79,2 +81,4 @@ METHOD_GET: 'get',

MODULE_KEY_ADMIN: 'admin',
MODULE_KEY_NODE_RED: 'nodered',
MODULE_KEY_ADMIN_SOLUTIONS: 'solutions',
VALUE_ARRAY_PROPER: 'Array',

@@ -81,0 +85,0 @@ VALUE_ARRAY_LOWER: 'array',

SocketSocket SOC 2 Logo

Product

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

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc