Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
23 commits
Select commit Hold shift + click to select a range
65592c0
feat: add Workday integration plugin
Dhirenderchoudhary Jul 19, 2026
44f5db4
Merge branch 'main' into feat/workday-clean
Dhirenderchoudhary Jul 19, 2026
4199b3d
fix(workday): rename mock directory to pass kebab-case validation
Dhirenderchoudhary Jul 19, 2026
15f82b8
fix(workday): rename mock file to pass kebab-case validation
Dhirenderchoudhary Jul 19, 2026
1cec2cb
fix(workday): address greptile review findings (webhook signature, in…
Dhirenderchoudhary Jul 19, 2026
9ed45b0
fix(workday): correct endpoint URLs, HTTP methods, schemas, and riskL…
Dhirenderchoudhary Jul 19, 2026
88b9178
fix(workday): resolve
Dhirenderchoudhary Jul 19, 2026
cd512e7
fix(workday): resolve remaining index references to 'an'
Dhirenderchoudhary Jul 19, 2026
1f35061
fix(workday): resolve remaining webhook crash and ID schema issues
Dhirenderchoudhary Jul 19, 2026
725ad57
fix(workday): correct endpoint list schemas
Dhirenderchoudhary Jul 22, 2026
302607d
Merge branch 'main' into feat/workday-clean
Dhirenderchoudhary Jul 22, 2026
75f15ea
fix(workday): resolve remaining URL interpolation and missing justifi…
Dhirenderchoudhary Jul 22, 2026
adfe9e8
chore(workday): sync lockfile for ts-jest dependency
Dhirenderchoudhary Jul 22, 2026
69eeaa8
fix(workday): resolve remaining webhook type issues
Dhirenderchoudhary Jul 22, 2026
c210bfc
fix(workday): resolve timing-attack vulnerability using verifyHmacSig…
Dhirenderchoudhary Jul 22, 2026
4188fd3
fix(workday): wire 85 ops to real Workday REST paths
Dhirenderchoudhary Aug 8, 2026
911fa9a
chore(workday): merge main, resolve conflicts
Dhirenderchoudhary Aug 8, 2026
f6879c1
chore(workday): merge upstream/main, resolve conflicts
Dhirenderchoudhary Aug 8, 2026
00c16e9
fix(workday): drop trailing-slash regex for CodeQL ReDoS
Dhirenderchoudhary Aug 8, 2026
798f5f1
fix(workday): preserve ApiError retryAfter; split aliased routes
Dhirenderchoudhary Aug 8, 2026
f68c244
feat(workday): add db schema, cache sync, doc-align routes
Dhirenderchoudhary Aug 10, 2026
f1cc289
fix(workday): address CodeRabbit; docs-shaped DB schema
Dhirenderchoudhary Aug 10, 2026
5d2ff59
fix(workday): coerce pagination; test real HMAC verify
Dhirenderchoudhary Aug 10, 2026
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions packages/corsair/core/constants.ts
Original file line number Diff line number Diff line change
Expand Up @@ -109,6 +109,7 @@ export const BaseProviders = [
'vercel',
'whatsapp',
'wiza',
'workday',
'xquik',
'youtube',
'zendesk',
Expand Down Expand Up @@ -213,6 +214,7 @@ export const ProviderDisplayNames = {
vercel: 'Vercel',
whatsapp: 'WhatsApp',
wiza: 'Wiza',
workday: 'Workday',
xquik: 'XQuik',
youtube: 'YouTube',
zendesk: 'Zendesk',
Expand Down Expand Up @@ -324,6 +326,7 @@ export type AllProviders =
| 'vercel'
| 'whatsapp'
| 'wiza'
| 'workday'
| 'xquik'
| 'youtube'
| 'zendesk'
Expand Down
Loading
Loading