-
Notifications
You must be signed in to change notification settings - Fork 5.3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Sources - New Identity (Instant) - New Identity Attribute Change (Instant) Actions - Upload Account Source File - List Certification Campaigns - Submit Access Request
- Loading branch information
1 parent
1969631
commit e9e3d23
Showing
14 changed files
with
334 additions
and
301 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
export const LIMIT = 100; | ||
|
||
export const REQUEST_TYPE_OPTIONS = [ | ||
{ | ||
label: "Grant Access", | ||
value: "GRANT_ACCESS", | ||
}, | ||
{ | ||
label: "Revoke Access", | ||
value: "REVOKE_ACCESS", | ||
}, | ||
]; | ||
|
||
export const WEBHOOK_TYPE_OPTIONS = [ | ||
"HTTP", | ||
"EVENTBRIDGE", | ||
"INLINE", | ||
"SCRIPT", | ||
"WORKFLOW", | ||
]; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
export default { | ||
checkTmp(filename) { | ||
if (!filename.startsWith("/tmp")) { | ||
return `/tmp/${filename}`; | ||
} | ||
return filename; | ||
}, | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,16 +1,20 @@ | ||
{ | ||
"name": "@pipedream/sailpoint", | ||
"version": "0.0.3", | ||
"version": "0.1.0", | ||
"description": "Pipedream SailPoint Components", | ||
"main": "dist/app/sailpoint.app.mjs", | ||
"main": "sailpoint.app.mjs", | ||
"keywords": [ | ||
"pipedream", | ||
"sailpoint" | ||
], | ||
"files": ["dist"], | ||
"homepage": "https://pipedream.com/apps/sailpoint", | ||
"author": "Pipedream <[email protected]> (https://pipedream.com/)", | ||
"publishConfig": { | ||
"access": "public" | ||
}, | ||
"dependencies": { | ||
"@pipedream/platform": "^3.0.3", | ||
"fs": "^0.0.1-security" | ||
} | ||
} | ||
|
Oops, something went wrong.