Skip to content

Commit 959398b

Browse files
committed
Merge remote-tracking branch 'origin/master' into issue-6258
2 parents cab1589 + 7f84b6d commit 959398b

File tree

48 files changed

+399
-128
lines changed

Some content is hidden

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

48 files changed

+399
-128
lines changed
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: "browserflow",
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/browserflow",
3+
"version": "0.0.1",
4+
"description": "Pipedream Browserflow Components",
5+
"main": "browserflow.app.mjs",
6+
"keywords": [
7+
"pipedream",
8+
"browserflow"
9+
],
10+
"homepage": "https://pipedream.com/apps/browserflow",
11+
"author": "Pipedream <[email protected]> (https://pipedream.com/)",
12+
"publishConfig": {
13+
"access": "public"
14+
}
15+
}

components/bump_sh/bump_sh.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: "bump_sh",
4+
propDefinitions: {},
5+
methods: {
6+
// this.$auth contains connected account data
7+
authKeys() {
8+
console.log(Object.keys(this.$auth));
9+
},
10+
},
11+
};

components/bump_sh/package.json

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
{
2+
"name": "@pipedream/bump_sh",
3+
"version": "0.0.1",
4+
"description": "Pipedream Bump.sh Components",
5+
"main": "bump_sh.app.mjs",
6+
"keywords": [
7+
"pipedream",
8+
"bump_sh"
9+
],
10+
"homepage": "https://pipedream.com/apps/bump_sh",
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: "chatbase",
4+
propDefinitions: {},
5+
methods: {
6+
// this.$auth contains connected account data
7+
authKeys() {
8+
console.log(Object.keys(this.$auth));
9+
},
10+
},
11+
};

components/chatbase/package.json

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
{
2+
"name": "@pipedream/chatbase",
3+
"version": "0.0.1",
4+
"description": "Pipedream Chatbase Components",
5+
"main": "chatbase.app.mjs",
6+
"keywords": [
7+
"pipedream",
8+
"chatbase"
9+
],
10+
"homepage": "https://pipedream.com/apps/chatbase",
11+
"author": "Pipedream <[email protected]> (https://pipedream.com/)",
12+
"publishConfig": {
13+
"access": "public"
14+
}
15+
}

components/fathom/fathom.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: "fathom",
4+
propDefinitions: {},
5+
methods: {
6+
// this.$auth contains connected account data
7+
authKeys() {
8+
console.log(Object.keys(this.$auth));
9+
},
10+
},
11+
};

components/fathom/package.json

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
{
2+
"name": "@pipedream/fathom",
3+
"version": "0.0.1",
4+
"description": "Pipedream Fathom Components",
5+
"main": "fathom.app.mjs",
6+
"keywords": [
7+
"pipedream",
8+
"fathom"
9+
],
10+
"homepage": "https://pipedream.com/apps/fathom",
11+
"author": "Pipedream <[email protected]> (https://pipedream.com/)",
12+
"publishConfig": {
13+
"access": "public"
14+
}
15+
}

components/frontapp/package.json

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

components/frontapp/sources/common/base.mjs

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -45,13 +45,17 @@ export default {
4545
if (filterFn) {
4646
responseArray.sort((a, b) => b.created_at - a.created_at);
4747
}
48-
this._setLastTs(this._getEmit(responseArray[0]).ts);
48+
this._setLastTs(this._getEmit(responseArray[0])?.ts ?? 0);
4949
}
5050

5151
for (const item of responseArray.reverse()) {
52+
const emit = this._getEmit(item);
53+
if (!emit) {
54+
continue;
55+
}
5256
this.$emit(
5357
item,
54-
this._getEmit(item),
58+
emit,
5559
);
5660
}
5761
},

0 commit comments

Comments
 (0)