Skip to content

Commit e683e08

Browse files
authored
Merge branch 'master' into jay/dj-2824-update-sdk
2 parents 7968c67 + 2c1ae19 commit e683e08

File tree

67 files changed

+649
-79
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

67 files changed

+649
-79
lines changed
Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,11 @@
1-
import { defineApp } from "@pipedream/types";
2-
3-
export default defineApp({
1+
export default {
42
type: "app",
5-
app: "listen_notes",
3+
app: "azure_api_for_fhir",
64
propDefinitions: {},
75
methods: {
86
// this.$auth contains connected account data
97
authKeys() {
108
console.log(Object.keys(this.$auth));
119
},
1210
},
13-
});
11+
};
Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
{
2+
"name": "@pipedream/azure_api_for_fhir",
3+
"version": "0.0.1",
4+
"description": "Pipedream Azure API for FHIR Components",
5+
"main": "azure_api_for_fhir.app.mjs",
6+
"keywords": [
7+
"pipedream",
8+
"azure_api_for_fhir"
9+
],
10+
"homepage": "https://pipedream.com/apps/azure_api_for_fhir",
11+
"author": "Pipedream <[email protected]> (https://pipedream.com/)",
12+
"publishConfig": {
13+
"access": "public"
14+
}
15+
}

components/exist/exist.app.mjs

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
export default {
2+
type: "app",
3+
app: "exist",
4+
propDefinitions: {},
5+
methods: {
6+
// this.$auth contains connected account data
7+
authKeys() {
8+
console.log(Object.keys(this.$auth));
9+
},
10+
},
11+
};

components/exist/package.json

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
{
2+
"name": "@pipedream/exist",
3+
"version": "0.0.1",
4+
"description": "Pipedream Exist Components",
5+
"main": "exist.app.mjs",
6+
"keywords": [
7+
"pipedream",
8+
"exist"
9+
],
10+
"homepage": "https://pipedream.com/apps/exist",
11+
"author": "Pipedream <[email protected]> (https://pipedream.com/)",
12+
"publishConfig": {
13+
"access": "public"
14+
}
15+
}
Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
export default {
2+
type: "app",
3+
app: "have_i_been_pwned",
4+
propDefinitions: {},
5+
methods: {
6+
// this.$auth contains connected account data
7+
authKeys() {
8+
console.log(Object.keys(this.$auth));
9+
},
10+
},
11+
};
Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
{
2+
"name": "@pipedream/have_i_been_pwned",
3+
"version": "0.0.1",
4+
"description": "Pipedream Have I Been Pwned Components",
5+
"main": "have_i_been_pwned.app.mjs",
6+
"keywords": [
7+
"pipedream",
8+
"have_i_been_pwned"
9+
],
10+
"homepage": "https://pipedream.com/apps/have_i_been_pwned",
11+
"author": "Pipedream <[email protected]> (https://pipedream.com/)",
12+
"publishConfig": {
13+
"access": "public"
14+
}
15+
}

components/linear/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@pipedream/linear",
3-
"version": "0.6.1",
3+
"version": "0.7.0",
44
"description": "Pipedream Linear Components",
55
"main": "linear.app.mjs",
66
"keywords": [
@@ -15,7 +15,7 @@
1515
},
1616
"dependencies": {
1717
"@linear/sdk": "^13.0.0",
18-
"@pipedream/linear_app": "^0.6.0",
18+
"@pipedream/linear_app": "^0.7.0",
1919
"@pipedream/platform": "^3.0.3"
2020
}
2121
}
Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
import newProjectUpdateCreated from "@pipedream/linear_app/sources/new-projectupdate-created/new-projectupdate-created.mjs";
2+
3+
import utils from "../../common/utils.mjs";
4+
5+
/* eslint-disable pipedream/required-properties-type */
6+
/* eslint-disable pipedream/required-properties-name */
7+
/* eslint-disable pipedream/required-properties-version */
8+
9+
export default {
10+
...newProjectUpdateCreated,
11+
...utils.getAppProps(newProjectUpdateCreated),
12+
key: "linear-new-projectupdate-created",
13+
description: "Project updates are short status reports on the health of your projects. Emit new event when a new Project Update is written. [See the documentation](https://developers.linear.app/docs/graphql/webhooks)",
14+
version: "0.0.1",
15+
};

components/listen_notes/.gitignore

Lines changed: 0 additions & 3 deletions
This file was deleted.
Lines changed: 56 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,56 @@
1+
import app from "../../listen_notes.app.mjs";
2+
3+
export default {
4+
key: "listen_notes-full-search",
5+
name: "Full Search",
6+
description: "Full-text search on episodes, podcasts, or curated lists of podcasts. [See the documentation](https://www.listennotes.com/api/docs/#get-api-v2-search)",
7+
version: "0.0.1",
8+
type: "action",
9+
props: {
10+
app,
11+
q: {
12+
propDefinition: [
13+
app,
14+
"q",
15+
],
16+
},
17+
sortByDate: {
18+
propDefinition: [
19+
app,
20+
"sortByDate",
21+
],
22+
},
23+
type: {
24+
propDefinition: [
25+
app,
26+
"type",
27+
],
28+
},
29+
language: {
30+
propDefinition: [
31+
app,
32+
"language",
33+
],
34+
},
35+
offset: {
36+
propDefinition: [
37+
app,
38+
"offset",
39+
],
40+
},
41+
},
42+
43+
async run({ $ }) {
44+
const response = await this.app.fullSearch({
45+
$,
46+
params: {
47+
q: this.q,
48+
sort_by_date: this.sortByDate,
49+
type: this.type,
50+
language: this.language,
51+
},
52+
});
53+
$.export("$summary", `Successfully retrieved ${response.results.length} results`);
54+
return response;
55+
},
56+
};

0 commit comments

Comments
 (0)