Skip to content

Commit 520700f

Browse files
committed
fix app files
1 parent 64c3f78 commit 520700f

File tree

3 files changed

+7
-6
lines changed

3 files changed

+7
-6
lines changed

components/clio_australia/clio_australia.app.mjs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@ export default {
55
...clio,
66
type: "app",
77
app: "clio_australia",
8-
propDefinitions: {},
98
methods: {
109
...clio.methods,
1110
getUrl(path) {

components/clio_canada/clio_canada.app.mjs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@ export default {
55
...clio,
66
type: "app",
77
app: "clio_canada",
8-
propDefinitions: {},
98
methods: {
109
...clio.methods,
1110
getUrl(path) {

components/clio_eu/clio_eu.app.mjs

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,14 @@
1+
import clio from "@pipedream/clio";
2+
import constants from "@pipedream/clio/common/constants.mjs";
3+
14
export default {
5+
...clio,
26
type: "app",
37
app: "clio_eu",
4-
propDefinitions: {},
58
methods: {
6-
// this.$auth contains connected account data
7-
authKeys() {
8-
console.log(Object.keys(this.$auth));
9+
...clio.methods,
10+
getUrl(path) {
11+
return `https://eu.app.clio.com${constants.VERSION_PATH}${path}`;
912
},
1013
},
1114
};

0 commit comments

Comments
 (0)