Skip to content

Commit 8a7842c

Browse files
committed
Merge remote-tracking branch 'origin/master' into origin/17396-fix
2 parents c78d023 + 724e1ac commit 8a7842c

File tree

1,002 files changed

+24987
-4104
lines changed

Some content is hidden

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

1,002 files changed

+24987
-4104
lines changed

.github/workflows/pull-request-checks.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -101,6 +101,6 @@ jobs:
101101
- name: Check component keys
102102
run: node scripts/findBadKeys.js ${{ steps.changed_files.outputs.added_modified }} ${{ steps.changed_files.outputs.renamed }}
103103
- name: Check component app prop
104-
run: node scripts/checkComponentAppProp.js ${{ steps.changed_files.outputs.added_modified }} ${{ steps.changed_files.outputs.renamed }}
104+
run: node --experimental-loader ./scripts/version-strip-loader.mjs scripts/checkComponentAppProp.js ${{ steps.changed_files.outputs.added_modified }} ${{ steps.changed_files.outputs.renamed }}
105105
- name: Check for duplicate component keys
106106
run: node scripts/findDuplicateKeys.js

.tool-versions

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
nodejs 18.18.0
1+
nodejs 20.13.1
22
pnpm 9.14.2
33
python 3.11.5
44
poetry 1.6.1
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: "freshsales",
3+
app: "accuweather",
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/accuweather",
3+
"version": "0.0.1",
4+
"description": "Pipedream AccuWeather Components",
5+
"main": "accuweather.app.mjs",
6+
"keywords": [
7+
"pipedream",
8+
"accuweather"
9+
],
10+
"homepage": "https://pipedream.com/apps/accuweather",
11+
"author": "Pipedream <[email protected]> (https://pipedream.com/)",
12+
"publishConfig": {
13+
"access": "public"
14+
}
15+
}

components/adobe_pdf_services/actions/extract-text-and-tables/extract-text-and-tables.mjs

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ export default {
44
key: "adobe_pdf_services-extract-text-and-tables",
55
name: "Extract Text and Tables From PDF",
66
description: "Extracts text and table element information from a PDF document and returns a JSON file along with table data in XLSX format within a .zip file saved to the `/tmp` directory. [See the documentation](https://developer.adobe.com/document-services/docs/overview/pdf-extract-api/howtos/extract-api/#extract-text-and-tables)",
7-
version: "0.0.2",
7+
version: "0.0.3",
88
type: "action",
99
props: {
1010
adobe,
@@ -20,6 +20,11 @@ export default {
2020
"filename",
2121
],
2222
},
23+
syncDir: {
24+
type: "dir",
25+
accessMode: "read-write",
26+
sync: true,
27+
},
2328
},
2429
async run({ $ }) {
2530
await this.adobe.extractPDF(this.filePath, "tables", this.filename);

components/adobe_pdf_services/actions/extract-text-from-pdf/extract-text-from-pdf.mjs

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ export default {
44
key: "adobe_pdf_services-extract-text-from-pdf",
55
name: "Extract Text From PDF",
66
description: "Extracts text element information from a PDF document and returns a JSON file within a .zip file saved to the `/tmp` directory. [See the documentation](https://developer.adobe.com/document-services/docs/overview/pdf-extract-api/howtos/extract-api/#extract-text-from-a-pdf)",
7-
version: "0.0.2",
7+
version: "0.0.3",
88
type: "action",
99
props: {
1010
adobe,
@@ -20,6 +20,11 @@ export default {
2020
"filename",
2121
],
2222
},
23+
syncDir: {
24+
type: "dir",
25+
accessMode: "read-write",
26+
sync: true,
27+
},
2328
},
2429
async run({ $ }) {
2530
await this.adobe.extractPDF(this.filePath, "text", this.filename);

components/adobe_pdf_services/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@pipedream/adobe_pdf_services",
3-
"version": "0.1.1",
3+
"version": "0.1.2",
44
"description": "Pipedream Adobe PDF Services Components",
55
"main": "adobe_pdf_services.app.mjs",
66
"keywords": [

components/aircall/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@pipedream/aircall",
3-
"version": "0.1.1",
3+
"version": "0.2.0",
44
"description": "Pipedream Aircall Components",
55
"main": "aircall.app.mjs",
66
"keywords": [

components/aircall/sources/common/common-webhook.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ export default {
2121
this.getEventType(),
2222
],
2323
});
24-
this._setHookId(webhook.id);
24+
this._setHookId(webhook.webhook_id);
2525
},
2626
async deactivate() {
2727
const hookId = this._getHookId();

components/aircall/sources/new-call-ended/new-call-ended.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ export default {
55
key: "aircall-new-call-ended",
66
name: "New Call Ended",
77
description: "Emit new event when a call ends",
8-
version: "0.0.2",
8+
version: "0.0.3",
99
type: "source",
1010
dedupe: "unique",
1111
methods: {

0 commit comments

Comments
 (0)