Skip to content

Commit e086487

Browse files
committed
Added actions
1 parent 76363b7 commit e086487

File tree

4 files changed

+1
-8
lines changed

4 files changed

+1
-8
lines changed

components/listen_notes/actions/full-search/full-search.mjs

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -50,9 +50,7 @@ export default {
5050
language: this.language,
5151
},
5252
});
53-
5453
$.export("$summary", `Successfully retrieved ${response.results.length} results`);
55-
5654
return response;
5755
},
5856
};

components/listen_notes/actions/get-episode-details/get-episode-details.mjs

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -54,9 +54,7 @@ export default {
5454
show_transcript: this.showTranscript,
5555
},
5656
});
57-
5857
$.export("$summary", `Successfully retrieved details for the episode '${response.title}'`);
59-
6058
return response;
6159
},
6260
};

components/listen_notes/actions/get-podcast-details/get-podcast-details.mjs

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -62,9 +62,7 @@ export default {
6262
sort: this.sort,
6363
},
6464
});
65-
6665
$.export("$summary", `Successfully retrieved details for the podcast '${response.title}'`);
67-
6866
return response;
6967
},
7068
};

components/listen_notes/listen_notes.app.mjs

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -63,8 +63,7 @@ export default {
6363
nextEpisodePubDate: {
6464
type: "string",
6565
label: "Next Episode Pub Date",
66-
description: "For episodes pagination. It's the value of `next_episode_pub_date` from the response of last request",
67-
options: constants.EPISODES_SORTING_OPTIONS,
66+
description: "For episodes pagination. It's the value of `next_episode_pub_date` from the response of last request. It is an Epoch Unix timestamp in milliseconds, i.e.: `1479154463000`",
6867
optional: true,
6968
},
7069
sort: {

0 commit comments

Comments
 (0)