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.1 to 6.7.2

24

controllers/batchlogging.js

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

generateLogProcessReport (logProcessId = '') {
generateLogProcessReport (logProcessId = '', qry = null, fieldsToReturn = null, qryOptions = null, page = null, pageNumber = null) {
let config = {

@@ -174,6 +174,24 @@ url: `${this.apiServerUrl}/${Enums.MODULE_KEY_BATCH_LOGGING}/report`,

if (logProcessId !== undefined && logProcessId !== null) {
config.headers['log-process-id'] = logProcessId
config.headers['log-process-id'] = logProcessId
if (qry !== undefined && qry !== null) {
config.headers.qry = qry
}
if (fieldsToReturn !== undefined && fieldsToReturn !== null) {
config.headers['fields-to-return'] = fieldsToReturn
}
if (qryOptions !== undefined && qryOptions !== null) {
config.headers['qry-options'] = qryOptions
}
if (page !== undefined && page !== null) {
config.headers.page = page
}
if (pageNumber !== undefined && pageNumber !== null) {
config.headers['page-number'] = pageNumber
}
if (this.apiKey !== undefined && this.apiKey !== null) {

@@ -180,0 +198,0 @@ config.headers[Enums.HEADER_API_KEY] = this.apiKey

28

data-templates/connectors.js

@@ -13,7 +13,7 @@ const data = {

data: {
webAPI: {
urlParams: [],
connectionData: {
queryParams: [],
headerParams: [],
baseURL: 'http://127.0.0.1:6010',
bodyData: ''
url: 'http://127.0.0.1:6010',
body: ''
},

@@ -87,9 +87,9 @@ feb: {

description: '',
webAPI: {
routeData: {
requestType: 'get',
responseIsFile: '0',
routePath: '/ping',
urlParams: [],
queryParams: [],
headerParams: [],
bodyData: ''
body: ''
}

@@ -107,7 +107,7 @@ }],

data: {
webAPI: {
urlParams: [],
connectionData: {
queryParams: [],
headerParams: [],
baseURL: 'http://127.0.0.1:6010',
bodyData: ''
url: 'http://127.0.0.1:6010',
body: ''
},

@@ -181,9 +181,9 @@ feb: {

description: '',
webAPI: {
routeData: {
requestType: 'get',
responseIsFile: '0',
routePath: '/ping',
urlParams: [],
queryParams: [],
headerParams: [],
bodyData: ''
body: ''
}

@@ -190,0 +190,0 @@ }],

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

@@ -6,0 +6,0 @@ "homepage": "https://agilite.io",

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