Skip to content

Commit a00a355

Browse files
committed
fixes
1 parent 899677d commit a00a355

File tree

4 files changed

+10
-10
lines changed

4 files changed

+10
-10
lines changed

components/workday/actions/create-home-contact-information-change/create-home-contact-information-change.mjs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@ import workday from "../../workday.app.mjs";
22
import { ConfigurationError } from "@pipedream/platform";
33

44
export default {
5-
key: "workday-initiate-home-contact-information-change",
6-
name: "Initiate Home Contact Information Change",
7-
description: "Initiates a home contact change for a worker. [See the Documentation](https://community.workday.com/sites/default/files/file-hosting/restapi/#person/v4/)",
5+
key: "workday-create-home-contact-information-change",
6+
name: "create Home Contact Information Change",
7+
description: "creates a home contact change for a worker. [See the Documentation](https://community.workday.com/sites/default/files/file-hosting/restapi/#person/v4/)",
88
version: "0.0.1",
99
annotations: {
1010
destructiveHint: false,
@@ -30,7 +30,7 @@ export default {
3030
data: {},
3131
$,
3232
});
33-
$.export("$summary", `Home contact change event initiated for worker ID ${this.workerId}`);
33+
$.export("$summary", `Home contact change event created for worker ID ${this.workerId}`);
3434
return response;
3535
},
3636
};

components/workday/actions/create-org-assignment-change/create-org-assignment-change.mjs renamed to components/workday/actions/create-organization-assignment-change/create-organization-assignment-change.mjs

File renamed without changes.

components/workday/actions/create-work-contact-information-change/create-work-contact-information-change.mjs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@ import workday from "../../workday.app.mjs";
22
import { ConfigurationError } from "@pipedream/platform";
33

44
export default {
5-
key: "workday-initiate-work-contact-information-change",
6-
name: "Initiate Work Contact Information Change",
7-
description: "Initiate a work contact change event for a worker. [See the Documentation](https://community.workday.com/sites/default/files/file-hosting/restapi/#person/v4)",
5+
key: "workday-create-work-contact-information-change",
6+
name: "create Work Contact Information Change",
7+
description: "create a work contact change event for a worker. [See the Documentation](https://community.workday.com/sites/default/files/file-hosting/restapi/#person/v4)",
88
version: "0.0.1",
99
annotations: {
1010
destructiveHint: false,
@@ -30,7 +30,7 @@ export default {
3030
data: {},
3131
$,
3232
});
33-
$.export("$summary", `Work contact change event initiated for worker ID ${this.workerId}`);
33+
$.export("$summary", `Work contact change event created for worker ID ${this.workerId}`);
3434
return response;
3535
},
3636
};

components/workday/actions/get-job-posting/get-job-posting.mjs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
import workday from "../../workday.app.mjs";
22

33
export default {
4-
key: "workday-get-job-posting-details",
5-
name: "Get Job Posting Details",
4+
key: "workday-get-job-posting",
5+
name: "Get Job Posting",
66
description: "Get details for a job posting by ID. [See the Documentation](https://community.workday.com/sites/default/files/file-hosting/restapi/#recruiting/v4/get-/jobPostings/-ID-)",
77
version: "0.0.1",
88
annotations: {

0 commit comments

Comments
 (0)