We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent caa98c3 commit b8dd91fCopy full SHA for b8dd91f
components/workday/workday.app.mjs
@@ -379,6 +379,25 @@ export default {
379
}));
380
},
381
382
+ interviewId: {
383
+ type: "string",
384
+ label: "Interview ID",
385
+ description: "The ID of the interview.",
386
+ async options({ page }) {
387
+ const res = await this.listInterviews?.({
388
+ params: {
389
+ limit: 50,
390
+ offset: 50 * page,
391
+ },
392
+ }) || {
393
+ data: [],
394
+ };
395
+ return (res.data || []).map((i) => ({
396
+ label: i.descriptor || i.id,
397
+ value: i.id,
398
+ }));
399
400
401
402
maxResults: {
403
type: "integer",
0 commit comments