├── .gitignore ├── LICENSE ├── README.md ├── package.json ├── src ├── drivers │ ├── Lever │ │ ├── config │ │ │ └── config.ts │ │ ├── fillLeverApplication.ts │ │ ├── handlers │ │ │ └── inputHandlers.ts │ │ ├── lib │ │ │ ├── fillLeverBasicQuestions.ts │ │ │ ├── fillLeverCustomQuestions.ts │ │ │ └── uploadResumeToLever.ts │ │ ├── submitLeverApplication.ts │ │ └── types │ │ │ └── types.ts │ ├── apply.ts │ └── init.ts ├── index.ts ├── types │ └── shared.ts └── utils │ ├── general.ts │ └── resume.ts └── tsconfig.json /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MochiDay/auto-apply-applet/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MochiDay/auto-apply-applet/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MochiDay/auto-apply-applet/HEAD/package.json -------------------------------------------------------------------------------- /src/drivers/Lever/config/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MochiDay/auto-apply-applet/HEAD/src/drivers/Lever/config/config.ts -------------------------------------------------------------------------------- /src/drivers/Lever/fillLeverApplication.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MochiDay/auto-apply-applet/HEAD/src/drivers/Lever/fillLeverApplication.ts -------------------------------------------------------------------------------- /src/drivers/Lever/handlers/inputHandlers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MochiDay/auto-apply-applet/HEAD/src/drivers/Lever/handlers/inputHandlers.ts -------------------------------------------------------------------------------- /src/drivers/Lever/lib/fillLeverBasicQuestions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MochiDay/auto-apply-applet/HEAD/src/drivers/Lever/lib/fillLeverBasicQuestions.ts -------------------------------------------------------------------------------- /src/drivers/Lever/lib/fillLeverCustomQuestions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MochiDay/auto-apply-applet/HEAD/src/drivers/Lever/lib/fillLeverCustomQuestions.ts -------------------------------------------------------------------------------- /src/drivers/Lever/lib/uploadResumeToLever.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MochiDay/auto-apply-applet/HEAD/src/drivers/Lever/lib/uploadResumeToLever.ts -------------------------------------------------------------------------------- /src/drivers/Lever/submitLeverApplication.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MochiDay/auto-apply-applet/HEAD/src/drivers/Lever/submitLeverApplication.ts -------------------------------------------------------------------------------- /src/drivers/Lever/types/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MochiDay/auto-apply-applet/HEAD/src/drivers/Lever/types/types.ts -------------------------------------------------------------------------------- /src/drivers/apply.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MochiDay/auto-apply-applet/HEAD/src/drivers/apply.ts -------------------------------------------------------------------------------- /src/drivers/init.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MochiDay/auto-apply-applet/HEAD/src/drivers/init.ts -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MochiDay/auto-apply-applet/HEAD/src/index.ts -------------------------------------------------------------------------------- /src/types/shared.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MochiDay/auto-apply-applet/HEAD/src/types/shared.ts -------------------------------------------------------------------------------- /src/utils/general.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MochiDay/auto-apply-applet/HEAD/src/utils/general.ts -------------------------------------------------------------------------------- /src/utils/resume.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MochiDay/auto-apply-applet/HEAD/src/utils/resume.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MochiDay/auto-apply-applet/HEAD/tsconfig.json --------------------------------------------------------------------------------