Skip to content

Commit 98e30d5

Browse files
committed
fix examples
1 parent d57d035 commit 98e30d5

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

apify-api/openapi/code_samples/javascript/act_runs_post.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,6 @@ const apifyClient = new ApifyClient({
55
});
66
const run = await apifyClient
77
.actor('<ACTOR ID>')
8-
.start({ /** <ACTOR INPUT> */ });
8+
.start({ 'foo': 'bar' });
99

1010
console.log(run);

apify-api/openapi/code_samples/javascript/actorTask_input_put.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,6 @@ const apifyClient = new ApifyClient({
55
});
66
const updatedInput = await apifyClient
77
.task('<TASK ID>')
8-
.updateInput({ /** NEW INPUT */ });
8+
.updateInput({ 'foo': 'baz' });
99

1010
console.log(updatedInput);

0 commit comments

Comments
 (0)