You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
// Name: Search Stashpad Docsimport"@johnlindquist/kit"constfetch=awaitnpm("node-fetch");interfaceRecentDoc{
id: string;
title: string;}interfaceQueryResult{
data: RecentDoc[];}constapiKey=awaitenv("STASHPAD_DOCS_API_KEY",{hint: `Login to your account on <a href="https://docs.stashpad.com">Stashpad Docs</a> and generate an API key from the settings menu (top right corner).`,});asyncfunctiongetRecentDocs(apiKey: string){constresponse=awaitfetch(`https://api.stashpad.live/v1/docs/recent?api_key=${apiKey}`);if(response.status!==200){thrownewError("Please make sure your API key is valid.");}return((awaitresponse.json())asQueryResult).data;}constrecentDocList=awaitgetRecentDocs(apiKey)constdoc=awaitarg({placeholder: "Select a doc to go to",},recentDocList.map((d)=>{return{name: d.title,value: `https://docs.stashpad.com/document/${d.id}`,};}));open(doc)
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
-
Open search-stashpad-docs in Script Kit
Beta Was this translation helpful? Give feedback.
All reactions