Skip to content

Commit

Permalink
Automated commit: Latest generated changes from schedule action
Browse files Browse the repository at this point in the history
  • Loading branch information
WilliamBergamin committed Jul 8, 2024
1 parent 376bc86 commit 7118586
Show file tree
Hide file tree
Showing 10 changed files with 26 additions and 26 deletions.
10 changes: 5 additions & 5 deletions src/connectors/clickup/functions/create_task.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,10 @@ export default DefineConnector({
title: "Create a task in a folder",
input_parameters: {
properties: {
team_id: { type: Schema.types.string, title: "Team" },
space_id: { type: Schema.types.string, title: "Space" },
folder_id: { type: Schema.types.string, title: "Folder" },
list_id: { type: Schema.types.string, title: "List" },
team_id: { type: Schema.types.integer, title: "Team" },
space_id: { type: Schema.types.integer, title: "Space" },
folder_id: { type: Schema.types.integer, title: "Folder" },
list_id: { type: Schema.types.integer, title: "List" },
name: {
type: Schema.types.string,
description: "Enter text",
Expand All @@ -29,7 +29,7 @@ export default DefineConnector({
assignees: {
type: Schema.types.array,
title: "Assignee",
items: { type: Schema.types.string },
items: { type: Schema.types.integer },
},
start_date: { type: Schema.slack.types.timestamp, title: "Start at" },
due_date: { type: Schema.slack.types.timestamp, title: "Due at" },
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,17 +7,17 @@ export default DefineConnector({
title: "Hire Application",
input_parameters: {
properties: {
candidate_id: { type: Schema.types.string, title: "Candidate email" },
application_id: { type: Schema.types.string, title: "Application" },
close_reason_id: { type: Schema.types.string, title: "Close reason" },
candidate_id: { type: Schema.types.integer, title: "Candidate email" },
application_id: { type: Schema.types.integer, title: "Application" },
close_reason_id: { type: Schema.types.integer, title: "Close reason" },
},
required: ["candidate_id", "application_id", "close_reason_id"],
},
output_parameters: {
properties: {
id: { type: Schema.types.string, title: "Application ID" },
id: { type: Schema.types.integer, title: "Application ID" },
status: { type: Schema.types.string, title: "Status" },
candidate_id: { type: Schema.types.string, title: "Candidate ID" },
candidate_id: { type: Schema.types.integer, title: "Candidate ID" },
},
required: [],
},
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ export default DefineConnector({
description: "Retrieve a candidate activity feed",
input_parameters: {
properties: {
candidate_id: { type: Schema.types.string, title: "Candidate email" },
candidate_id: { type: Schema.types.integer, title: "Candidate email" },
},
required: ["candidate_id"],
},
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ export default DefineConnector({
title: "List job candidates",
description: "List all candidates for a job request",
input_parameters: {
properties: { job_id: { type: Schema.types.string, title: "Job" } },
properties: { job_id: { type: Schema.types.integer, title: "Job" } },
required: ["job_id"],
},
output_parameters: {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,10 @@ export default DefineConnector({
title: "Reject Application",
input_parameters: {
properties: {
candidate_id: { type: Schema.types.string, title: "Candidate email" },
application_id: { type: Schema.types.string, title: "Application" },
candidate_id: { type: Schema.types.integer, title: "Candidate email" },
application_id: { type: Schema.types.integer, title: "Application" },
rejection_reason_id: {
type: Schema.types.string,
type: Schema.types.integer,
title: "Rejection reason",
},
notes: { type: Schema.types.string, title: "Notes" },
Expand All @@ -19,9 +19,9 @@ export default DefineConnector({
},
output_parameters: {
properties: {
id: { type: Schema.types.string, title: "Application ID" },
id: { type: Schema.types.integer, title: "Application ID" },
status: { type: Schema.types.string, title: "Status" },
candidate_id: { type: Schema.types.string, title: "Candidate ID" },
candidate_id: { type: Schema.types.integer, title: "Candidate ID" },
},
required: [],
},
Expand Down
2 changes: 1 addition & 1 deletion src/connectors/mod.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/** This file was autogenerated on Mon Jul 01 2024. Follow the steps in src/schema/slack/functions/README.md to rebuild **/
/** This file was autogenerated on Mon Jul 08 2024. Follow the steps in src/schema/slack/functions/README.md to rebuild **/
import AdobeSign from "./adobe.sign/mod.ts";
import Airtable from "./airtable/mod.ts";
import Asana from "./asana/mod.ts";
Expand Down
4 changes: 2 additions & 2 deletions src/connectors/travisci/functions/cancel_build.ts
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ export default DefineConnector({
title: "Branch",
},
build_id: {
type: Schema.types.string,
type: Schema.types.integer,
description: "Select a build ID",
title: "Build ID",
},
Expand All @@ -23,7 +23,7 @@ export default DefineConnector({
},
output_parameters: {
properties: {
build_id: { type: Schema.types.string, title: "Build ID" },
build_id: { type: Schema.types.integer, title: "Build ID" },
branch: { type: Schema.types.string, title: "Branch" },
repository: { type: Schema.types.string, title: "Repository" },
build_url: { type: Schema.types.string, title: "Build URL" },
Expand Down
4 changes: 2 additions & 2 deletions src/connectors/travisci/functions/restart_build.ts
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ export default DefineConnector({
title: "Branch",
},
build_id: {
type: Schema.types.string,
type: Schema.types.integer,
description: "Select a build ID",
title: "Build ID",
},
Expand All @@ -23,7 +23,7 @@ export default DefineConnector({
},
output_parameters: {
properties: {
build_id: { type: Schema.types.string, title: "Build ID" },
build_id: { type: Schema.types.integer, title: "Build ID" },
branch: { type: Schema.types.string, title: "Branch" },
repository: { type: Schema.types.string, title: "Repository" },
build_url: { type: Schema.types.string, title: "Build URL" },
Expand Down
4 changes: 2 additions & 2 deletions src/connectors/zendesk/functions/create_ticket.ts
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,8 @@ export default DefineConnector({
description: "Enter text",
title: "Requester email",
},
assignee_id: { type: Schema.types.string, title: "Assignee" },
group_id: { type: Schema.types.string, title: "Group" },
assignee_id: { type: Schema.types.integer, title: "Assignee" },
group_id: { type: Schema.types.integer, title: "Group" },
followers: {
type: Schema.types.array,
description: "Enter internal agent emails",
Expand Down
4 changes: 2 additions & 2 deletions src/connectors/zendesk/functions/update_ticket.ts
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,8 @@ export default DefineConnector({
description: "Enter text",
title: "New requester email",
},
assignee_id: { type: Schema.types.string, title: "New assignee" },
group_id: { type: Schema.types.string, title: "New group" },
assignee_id: { type: Schema.types.integer, title: "New assignee" },
group_id: { type: Schema.types.integer, title: "New group" },
add_followers: {
type: Schema.types.array,
description: "Enter internal agent emails to be added",
Expand Down

0 comments on commit 7118586

Please sign in to comment.