@pipedream/recruitee 0.1.0 → 0.2.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md ADDED
@@ -0,0 +1,11 @@
1
+ # Overview
2
+
3
+ The Recruitee API allows you to automate and integrate your recruitment process with other tools and services. It provides programmatic access to manipulate jobs, candidates, and various recruitment activities. By using Pipedream, you can create custom workflows that interact with the Recruitee platform, enabling you to streamline your hiring process, synchronize recruitment data with other systems, and trigger actions based on recruitment events.
4
+
5
+ # Example Use Cases
6
+
7
+ - **Sync New Candidates to Google Sheets**: When a new candidate applies, automatically add their details to a Google Sheet. This workflow uses the Recruitee API to detect new candidates and the Google Sheets API to update a spreadsheet, keeping a real-time record of applicants.
8
+
9
+ - **Trigger Email Campaigns for New Positions**: Send targeted email campaigns to potential candidates when a new job is posted. This workflow could use the Recruitee API to monitor for new jobs and trigger an email campaign via Mailchimp or another email service, ensuring prompt outreach to your talent pool.
10
+
11
+ - **Automate Candidate Evaluation Notifications**: Notify team members in Slack when a candidate reaches a specific stage in the evaluation process. This workflow would use the Recruitee API to watch for candidate status changes and the Slack API to send messages to the relevant hiring team's channel or direct messages to specific evaluators.
@@ -4,7 +4,12 @@ export default {
4
4
  name: "Create Candidate",
5
5
  description: "Create a new candidate. [See the documentation](https://api.recruitee.com/docs/index.html#candidate.web.candidate-candidate.web.candidate)",
6
6
  key: "recruitee-create-candidate",
7
- version: "0.0.1",
7
+ version: "0.0.2",
8
+ annotations: {
9
+ destructiveHint: false,
10
+ openWorldHint: true,
11
+ readOnlyHint: false,
12
+ },
8
13
  type: "action",
9
14
  props: {
10
15
  app,
@@ -4,7 +4,12 @@ export default {
4
4
  name: "Create Note",
5
5
  description: "Create a new note for a candidate. [See the documentation](https://api.recruitee.com/docs/index.html#note.web.note-note.web.note)",
6
6
  key: "recruitee-create-note",
7
- version: "0.0.1",
7
+ version: "0.0.2",
8
+ annotations: {
9
+ destructiveHint: false,
10
+ openWorldHint: true,
11
+ readOnlyHint: false,
12
+ },
8
13
  type: "action",
9
14
  props: {
10
15
  app,
@@ -5,7 +5,12 @@ export default {
5
5
  name: "Create Task",
6
6
  description: "Create a new task for a candidate. [See the documentation](https://api.recruitee.com/docs/index.html#task.web.task-task.web.task-post)",
7
7
  key: "recruitee-create-task",
8
- version: "0.0.1",
8
+ version: "0.0.2",
9
+ annotations: {
10
+ destructiveHint: false,
11
+ openWorldHint: true,
12
+ readOnlyHint: false,
13
+ },
9
14
  type: "action",
10
15
  props: {
11
16
  app,
@@ -0,0 +1,26 @@
1
+ import recruitee from "../../recruitee.app.mjs";
2
+
3
+ export default {
4
+ key: "recruitee-list-candidate-id-options",
5
+ name: "List Candidate ID Options",
6
+ description: "Retrieves available options for the Candidate ID field.",
7
+ version: "0.0.1",
8
+ type: "action",
9
+ annotations: {
10
+ destructiveHint: false,
11
+ openWorldHint: true,
12
+ readOnlyHint: true,
13
+ },
14
+ props: {
15
+ recruitee,
16
+ },
17
+ async run({ $ }) {
18
+ const options = await recruitee.propDefinitions.candidateId.options.call(this.recruitee, {});
19
+ $.export("$summary", `Successfully retrieved ${options.length} option${
20
+ options.length === 1
21
+ ? ""
22
+ : "s"
23
+ }`);
24
+ return options;
25
+ },
26
+ };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pipedream/recruitee",
3
- "version": "0.1.0",
3
+ "version": "0.2.0",
4
4
  "description": "Pipedream Recruitee Components",
5
5
  "main": "recruitee.app.mjs",
6
6
  "keywords": [
@@ -13,6 +13,6 @@
13
13
  "access": "public"
14
14
  },
15
15
  "dependencies": {
16
- "@pipedream/platform": "^1.5.1"
16
+ "@pipedream/platform": "^1.6.8"
17
17
  }
18
18
  }