Skip to content

Commit

Permalink
Merge pull request #9 from polarityio/develop
Browse files Browse the repository at this point in the history
INT-1107: Converted expandable types & Removed `requestOptions` from `config.json`
  • Loading branch information
sarus authored Nov 7, 2024
2 parents ac384c0 + 7df4a1f commit 2457569
Show file tree
Hide file tree
Showing 5 changed files with 84 additions and 73 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/run-int-dev-checklist.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ on:
jobs:
run-integration-development-checklist:
runs-on: ubuntu-latest
container: 'centos:7'
container: 'rockylinux:8'

steps:
- uses: actions/checkout@v2
Expand Down
4 changes: 2 additions & 2 deletions config/config.js
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ module.exports = {
*/
description:
'Search application records in Swimlane, a security automation, orchestration and incident response platform',
entityTypes: ['ip', 'email', 'domain', 'hash', 'url', 'cve'],
entityTypes: ['IPv4', 'IPv6', 'email', 'domain', 'MD5', 'SHA1', 'SHA256', 'url', 'cve'],
/**
* An array of style files (css or less) that will be included for your integration. Any styles specified in
* the below files can be used in your custom template.
Expand Down Expand Up @@ -66,7 +66,7 @@ module.exports = {
ca: '',
// An HTTP proxy to be used. Supports proxy Auth with Basic Auth, identical to support for
// the url parameter (by embedding the auth info in the uri)
proxy: ""
proxy: ''
},
logging: {
// directory is relative to the this integrations directory
Expand Down
21 changes: 3 additions & 18 deletions config/config.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,16 +5,8 @@
"defaultColor": "light-blue",
"onDemandOnly": true,
"description": "Search application records in Swimlane, a security automation, orchestration and incident response platform",
"entityTypes": [
"email",
"domain",
"hash",
"url",
"cve"
],
"styles": [
"./styles/swimlane.less"
],
"entityTypes": ["IPv4", "IPv6","email", "domain", "MD5", "SHA1", "SHA256", "url", "cve"],
"styles": ["./styles/swimlane.less"],
"block": {
"component": {
"file": "./components/swimlane-block.js"
Expand All @@ -23,13 +15,6 @@
"file": "./templates/swimlane-block.hbs"
}
},
"request": {
"cert": "",
"key": "",
"passphrase": "",
"ca": "",
"proxy": ""
},
"logging": {
"level": "info"
},
Expand Down Expand Up @@ -89,4 +74,4 @@
"adminOnly": true
}
]
}
}
122 changes: 74 additions & 48 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 4 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
{
"name": "swimlane",
"version": "3.4.4",
"version": "3.4.5",
"main": "./integration.js",
"private": true,
"license": "MIT",
"author": "Polarity",
"dependencies": {
"async": "^3.2.3",
"postman-request": "^2.88.1-postman.31",
"async": "^3.2.5",
"postman-request": "^2.88.1-postman.40",
"lodash": "^4.17.21"
}
}
}

0 comments on commit 2457569

Please sign in to comment.