@pipedream/linkup
Version:
Pipedream Linkup Components
19 lines (17 loc) • 345 B
JavaScript
import { LinkupClient } from "linkup-sdk";
export default {
type: "app",
app: "linkup",
propDefinitions: {},
methods: {
_getClient() {
return new LinkupClient({
apiKey: this.$auth.api_key,
});
},
search(params) {
const client = this._getClient();
return client.search(params);
},
},
};