Node package manager
Emit new event with the latest count of downloads for an npm package. See the documentation.
Emit new event when a new version of an npm package is published. See the documentation
Emit new event when data is imported into a project
Emit new event when a new task is created in Lokalise
Retrieves and downloads files from a specified Lokalise project. See the documentation
Uploads a specified file to a Lokalise project. See the documentation
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
lokalise: {
type: "app",
app: "lokalise",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.lokalise.com/api2/projects`,
headers: {
Authorization: `Bearer ${this.lokalise.$auth.oauth_access_token}`,
"accept": `application/json`,
},
})
},
})