@pipedream/monday 0.5.0 → 0.6.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/actions/common/common-create-item.mjs +92 -0
- package/actions/create-board/create-board.mjs +1 -1
- package/actions/create-column/create-column.mjs +1 -1
- package/actions/create-group/create-group.mjs +1 -1
- package/actions/create-item/create-item.mjs +12 -84
- package/actions/create-subitem/create-subitem.mjs +60 -0
- package/actions/create-update/create-update.mjs +1 -1
- package/actions/get-column-values/get-column-values.mjs +1 -1
- package/actions/get-items-by-column-value/get-items-by-column-value.mjs +1 -1
- package/actions/update-column-values/update-column-values.mjs +41 -1
- package/actions/update-item-name/update-item-name.mjs +1 -1
- package/common/mutations.mjs +17 -0
- package/common/queries.mjs +1 -0
- package/monday.app.mjs +8 -0
- package/package.json +3 -2
- package/sources/column-value-updated/column-value-updated.mjs +1 -1
- package/sources/name-updated/name-updated.mjs +1 -1
- package/sources/new-board/new-board.mjs +1 -1
- package/sources/new-item/new-item.mjs +1 -1
- package/sources/new-subitem/new-subitem.mjs +1 -1
- package/sources/new-subitem-update/new-subitem-update.mjs +1 -1
- package/sources/new-user/new-user.mjs +1 -1
- package/sources/specific-column-updated/specific-column-updated.mjs +1 -1
- package/sources/subitem-column-value-updated/subitem-column-value-updated.mjs +1 -1
- package/sources/subitem-name-updated/subitem-name-updated.mjs +1 -1
|
@@ -0,0 +1,92 @@
|
|
|
1
|
+
import monday from "../../monday.app.mjs";
|
|
2
|
+
|
|
3
|
+
export default {
|
|
4
|
+
props: {
|
|
5
|
+
columns: {
|
|
6
|
+
propDefinition: [
|
|
7
|
+
monday,
|
|
8
|
+
"column",
|
|
9
|
+
(c) => ({
|
|
10
|
+
boardId: c.boardId,
|
|
11
|
+
}),
|
|
12
|
+
],
|
|
13
|
+
type: "string[]",
|
|
14
|
+
description: "Select columns to fill",
|
|
15
|
+
reloadProps: true,
|
|
16
|
+
},
|
|
17
|
+
},
|
|
18
|
+
async additionalProps() {
|
|
19
|
+
const props = {};
|
|
20
|
+
if (!this.columns) {
|
|
21
|
+
return props;
|
|
22
|
+
}
|
|
23
|
+
for (const column of this.columns) {
|
|
24
|
+
let description;
|
|
25
|
+
if (column === "status") {
|
|
26
|
+
description = "Value for status. [Status Index Value Map](https://view.monday.com/1073554546-ad9f20a427a16e67ded630108994c11b?r=use1)";
|
|
27
|
+
} else if (column === "person") {
|
|
28
|
+
description = "The ID of the person/user to add to item";
|
|
29
|
+
} else if (column === "date4") {
|
|
30
|
+
description = "Enter date of item in YYYY-MM-DD format. Eg. `2022-09-02`";
|
|
31
|
+
} else {
|
|
32
|
+
description = `Value for column ${column}. See the [Column Type Reference](https://developer.monday.com/api-reference/docs/column-types-reference) to learn more about entering column type values.`;
|
|
33
|
+
}
|
|
34
|
+
props[column] = {
|
|
35
|
+
type: "string",
|
|
36
|
+
label: column,
|
|
37
|
+
description,
|
|
38
|
+
};
|
|
39
|
+
}
|
|
40
|
+
return props;
|
|
41
|
+
},
|
|
42
|
+
methods: {
|
|
43
|
+
getEmailValue(value) {
|
|
44
|
+
let email = value;
|
|
45
|
+
if (typeof value === "string") {
|
|
46
|
+
try {
|
|
47
|
+
email = JSON.parse(value);
|
|
48
|
+
} catch {
|
|
49
|
+
email = {
|
|
50
|
+
text: value,
|
|
51
|
+
email: value,
|
|
52
|
+
};
|
|
53
|
+
}
|
|
54
|
+
}
|
|
55
|
+
return email;
|
|
56
|
+
},
|
|
57
|
+
},
|
|
58
|
+
async run({ $ }) {
|
|
59
|
+
const columnValues = {};
|
|
60
|
+
if (this.columns?.length > 0) {
|
|
61
|
+
for (const column of this.columns) {
|
|
62
|
+
if (column === "email") {
|
|
63
|
+
columnValues[column] = this.getEmailValue(this[column]);
|
|
64
|
+
continue;
|
|
65
|
+
}
|
|
66
|
+
columnValues[column] = this[column];
|
|
67
|
+
}
|
|
68
|
+
}
|
|
69
|
+
const {
|
|
70
|
+
data,
|
|
71
|
+
errors,
|
|
72
|
+
error_message: errorMessage,
|
|
73
|
+
} =
|
|
74
|
+
await this.sendRequest({
|
|
75
|
+
columnValues,
|
|
76
|
+
});
|
|
77
|
+
|
|
78
|
+
if (errors) {
|
|
79
|
+
throw new Error(`Failed to create item: ${errors[0].message}`);
|
|
80
|
+
}
|
|
81
|
+
|
|
82
|
+
if (errorMessage) {
|
|
83
|
+
throw new Error(`Failed to create item: ${errorMessage}`);
|
|
84
|
+
}
|
|
85
|
+
|
|
86
|
+
const itemId = this.getItemId(data);
|
|
87
|
+
|
|
88
|
+
$.export("$summary", `Successfully created a new item with ID: ${itemId}`);
|
|
89
|
+
|
|
90
|
+
return itemId;
|
|
91
|
+
},
|
|
92
|
+
};
|
|
@@ -5,7 +5,7 @@ export default {
|
|
|
5
5
|
name: "Create Group",
|
|
6
6
|
description: "Creates a new group in a specific board. [See the documentation](https://api.developer.monday.com/docs/groups-queries#create-a-group)",
|
|
7
7
|
type: "action",
|
|
8
|
-
version: "0.0.
|
|
8
|
+
version: "0.0.8",
|
|
9
9
|
props: {
|
|
10
10
|
monday,
|
|
11
11
|
boardId: {
|
|
@@ -1,12 +1,14 @@
|
|
|
1
|
-
import utils from "../../common/utils.mjs";
|
|
2
1
|
import monday from "../../monday.app.mjs";
|
|
2
|
+
import commonCreateItem from "../common/common-create-item.mjs";
|
|
3
|
+
import utils from "../../common/utils.mjs";
|
|
3
4
|
|
|
4
5
|
export default {
|
|
6
|
+
...commonCreateItem,
|
|
5
7
|
key: "monday-create-item",
|
|
6
8
|
name: "Create Item",
|
|
7
9
|
description: "Creates an item. [See the documentation](https://api.developer.monday.com/docs/items-queries#create-an-item)",
|
|
8
10
|
type: "action",
|
|
9
|
-
version: "0.0.
|
|
11
|
+
version: "0.0.10",
|
|
10
12
|
props: {
|
|
11
13
|
monday,
|
|
12
14
|
boardId: {
|
|
@@ -30,101 +32,27 @@ export default {
|
|
|
30
32
|
"itemName",
|
|
31
33
|
],
|
|
32
34
|
},
|
|
33
|
-
columns: {
|
|
34
|
-
propDefinition: [
|
|
35
|
-
monday,
|
|
36
|
-
"column",
|
|
37
|
-
(c) => ({
|
|
38
|
-
boardId: c.boardId,
|
|
39
|
-
}),
|
|
40
|
-
],
|
|
41
|
-
type: "string[]",
|
|
42
|
-
description: "Select columns to fill",
|
|
43
|
-
reloadProps: true,
|
|
44
|
-
},
|
|
45
35
|
createLabels: {
|
|
46
36
|
propDefinition: [
|
|
47
37
|
monday,
|
|
48
38
|
"itemCreateLabels",
|
|
49
39
|
],
|
|
50
40
|
},
|
|
51
|
-
|
|
52
|
-
async additionalProps() {
|
|
53
|
-
const props = {};
|
|
54
|
-
if (!this.columns) {
|
|
55
|
-
return props;
|
|
56
|
-
}
|
|
57
|
-
for (const column of this.columns) {
|
|
58
|
-
let description;
|
|
59
|
-
if (column === "status") {
|
|
60
|
-
description = "Value for status. [Status Index Value Map](https://view.monday.com/1073554546-ad9f20a427a16e67ded630108994c11b?r=use1)";
|
|
61
|
-
} else if (column === "person") {
|
|
62
|
-
description = "The ID of the person/user to add to item";
|
|
63
|
-
} else if (column === "date4") {
|
|
64
|
-
description = "Enter date of item in YYYY-MM-DD format. Eg. `2022-09-02`";
|
|
65
|
-
} else {
|
|
66
|
-
description = `Value for column ${column}. See the [Column Type Reference](https://developer.monday.com/api-reference/docs/column-types-reference) to learn more about entering column type values.`;
|
|
67
|
-
}
|
|
68
|
-
props[column] = {
|
|
69
|
-
type: "string",
|
|
70
|
-
label: column,
|
|
71
|
-
description,
|
|
72
|
-
};
|
|
73
|
-
}
|
|
74
|
-
return props;
|
|
41
|
+
...commonCreateItem.props,
|
|
75
42
|
},
|
|
76
43
|
methods: {
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
try {
|
|
81
|
-
email = JSON.parse(value);
|
|
82
|
-
} catch {
|
|
83
|
-
email = {
|
|
84
|
-
text: value,
|
|
85
|
-
email: value,
|
|
86
|
-
};
|
|
87
|
-
}
|
|
88
|
-
}
|
|
89
|
-
return email;
|
|
90
|
-
},
|
|
91
|
-
},
|
|
92
|
-
async run({ $ }) {
|
|
93
|
-
const columnValues = {};
|
|
94
|
-
if (this.columns?.length > 0) {
|
|
95
|
-
for (const column of this.columns) {
|
|
96
|
-
if (column === "email") {
|
|
97
|
-
columnValues[column] = this.getEmailValue(this[column]);
|
|
98
|
-
continue;
|
|
99
|
-
}
|
|
100
|
-
columnValues[column] = this[column];
|
|
101
|
-
}
|
|
102
|
-
}
|
|
103
|
-
const {
|
|
104
|
-
data,
|
|
105
|
-
errors,
|
|
106
|
-
error_message: errorMessage,
|
|
107
|
-
} =
|
|
108
|
-
await this.monday.createItem({
|
|
44
|
+
...commonCreateItem.methods,
|
|
45
|
+
sendRequest({ columnValues }) {
|
|
46
|
+
return this.monday.createItem({
|
|
109
47
|
boardId: +this.boardId,
|
|
110
48
|
groupId: utils.emptyStrToUndefined(this.groupId),
|
|
111
49
|
itemName: utils.emptyStrToUndefined(this.itemName),
|
|
112
50
|
columnValues: utils.strinfied(columnValues),
|
|
113
51
|
createLabels: utils.emptyStrToUndefined(this.createLabels),
|
|
114
52
|
});
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
}
|
|
119
|
-
|
|
120
|
-
if (errorMessage) {
|
|
121
|
-
throw new Error(`Failed to create item: ${errorMessage}`);
|
|
122
|
-
}
|
|
123
|
-
|
|
124
|
-
const { id: itemId } = data.create_item;
|
|
125
|
-
|
|
126
|
-
$.export("$summary", `Successfully created a new item with ID: ${itemId}`);
|
|
127
|
-
|
|
128
|
-
return itemId;
|
|
53
|
+
},
|
|
54
|
+
getItemId(data) {
|
|
55
|
+
return data.create_item.id;
|
|
56
|
+
},
|
|
129
57
|
},
|
|
130
58
|
};
|
|
@@ -0,0 +1,60 @@
|
|
|
1
|
+
import utils from "../../common/utils.mjs";
|
|
2
|
+
import monday from "../../monday.app.mjs";
|
|
3
|
+
import commonCreateItem from "../common/common-create-item.mjs";
|
|
4
|
+
|
|
5
|
+
export default {
|
|
6
|
+
...commonCreateItem,
|
|
7
|
+
key: "monday-create-subitem",
|
|
8
|
+
name: "Create Subitem",
|
|
9
|
+
description: "Creates a subitem. [See the documentation](https://developer.monday.com/api-reference/docs/introduction-to-graphql#mondaycom-schema)",
|
|
10
|
+
type: "action",
|
|
11
|
+
version: "0.0.2",
|
|
12
|
+
props: {
|
|
13
|
+
monday,
|
|
14
|
+
boardId: {
|
|
15
|
+
propDefinition: [
|
|
16
|
+
monday,
|
|
17
|
+
"boardId",
|
|
18
|
+
],
|
|
19
|
+
},
|
|
20
|
+
parentItemId: {
|
|
21
|
+
propDefinition: [
|
|
22
|
+
monday,
|
|
23
|
+
"itemId",
|
|
24
|
+
({ boardId }) => ({
|
|
25
|
+
boardId: +boardId,
|
|
26
|
+
}),
|
|
27
|
+
],
|
|
28
|
+
optional: false,
|
|
29
|
+
description: "The parent item's unique identifier",
|
|
30
|
+
},
|
|
31
|
+
itemName: {
|
|
32
|
+
propDefinition: [
|
|
33
|
+
monday,
|
|
34
|
+
"itemName",
|
|
35
|
+
],
|
|
36
|
+
description: "The new subitem's name",
|
|
37
|
+
},
|
|
38
|
+
createLabels: {
|
|
39
|
+
propDefinition: [
|
|
40
|
+
monday,
|
|
41
|
+
"itemCreateLabels",
|
|
42
|
+
],
|
|
43
|
+
},
|
|
44
|
+
...commonCreateItem.props,
|
|
45
|
+
},
|
|
46
|
+
methods: {
|
|
47
|
+
...commonCreateItem.methods,
|
|
48
|
+
sendRequest({ columnValues }) {
|
|
49
|
+
return this.monday.createSubItem({
|
|
50
|
+
parentItemId: utils.emptyStrToUndefined(this.parentItemId),
|
|
51
|
+
itemName: utils.emptyStrToUndefined(this.itemName),
|
|
52
|
+
columnValues: utils.strinfied(columnValues),
|
|
53
|
+
createLabels: utils.emptyStrToUndefined(this.createLabels),
|
|
54
|
+
});
|
|
55
|
+
},
|
|
56
|
+
getItemId(data) {
|
|
57
|
+
return data.create_subitem.id;
|
|
58
|
+
},
|
|
59
|
+
},
|
|
60
|
+
};
|
|
@@ -6,7 +6,7 @@ export default {
|
|
|
6
6
|
name: "Create an Update",
|
|
7
7
|
description: "Creates a new update. [See the documentation](https://api.developer.monday.com/docs/updates-queries#create-an-update)",
|
|
8
8
|
type: "action",
|
|
9
|
-
version: "0.0.
|
|
9
|
+
version: "0.0.9",
|
|
10
10
|
props: {
|
|
11
11
|
monday,
|
|
12
12
|
updateBody: {
|
|
@@ -5,7 +5,7 @@ export default {
|
|
|
5
5
|
key: "monday-get-column-values",
|
|
6
6
|
name: "Get Column Values",
|
|
7
7
|
description: "Return values of a specific column or columns for a board item. [See the documentation](https://developer.monday.com/api-reference/docs/column-values-v2)",
|
|
8
|
-
version: "0.0.
|
|
8
|
+
version: "0.0.4",
|
|
9
9
|
type: "action",
|
|
10
10
|
props: {
|
|
11
11
|
...common.props,
|
|
@@ -5,7 +5,7 @@ export default {
|
|
|
5
5
|
key: "monday-get-items-by-column-value",
|
|
6
6
|
name: "Get Items By Column Value",
|
|
7
7
|
description: "Searches a column for items matching a value. [See the documentation](https://developer.monday.com/api-reference/docs/items-page-by-column-values)",
|
|
8
|
-
version: "0.0.
|
|
8
|
+
version: "0.0.4",
|
|
9
9
|
type: "action",
|
|
10
10
|
props: {
|
|
11
11
|
...common.props,
|
|
@@ -1,11 +1,14 @@
|
|
|
1
1
|
import common from "../common/column-values.mjs";
|
|
2
|
+
import { axios } from "@pipedream/platform";
|
|
3
|
+
import fs from "fs";
|
|
4
|
+
import FormData from "form-data";
|
|
2
5
|
|
|
3
6
|
export default {
|
|
4
7
|
...common,
|
|
5
8
|
key: "monday-update-column-values",
|
|
6
9
|
name: "Update Column Values",
|
|
7
10
|
description: "Update multiple column values of an item. [See the documentation](https://developer.monday.com/api-reference/docs/columns#change-multiple-column-values)",
|
|
8
|
-
version: "0.0.
|
|
11
|
+
version: "0.0.4",
|
|
9
12
|
type: "action",
|
|
10
13
|
props: {
|
|
11
14
|
...common.props,
|
|
@@ -36,15 +39,52 @@ export default {
|
|
|
36
39
|
description: `The value for column ${column.title}`,
|
|
37
40
|
optional: true,
|
|
38
41
|
};
|
|
42
|
+
if (column.type === "file") {
|
|
43
|
+
props[column.id].description += ". The path to a file in the `/tmp` directory. [See the documentation on working with files](https://pipedream.com/docs/code/nodejs/working-with-files/#writing-a-file-to-tmp).";
|
|
44
|
+
}
|
|
39
45
|
}
|
|
40
46
|
}
|
|
41
47
|
return props;
|
|
42
48
|
},
|
|
49
|
+
methods: {
|
|
50
|
+
...common.methods,
|
|
51
|
+
async uploadFile({
|
|
52
|
+
$, itemId, column, filePath,
|
|
53
|
+
}) {
|
|
54
|
+
const query = `mutation ($file: File!) { add_file_to_column (file: $file, item_id: ${itemId}, column_id: "${column.id}") { id } }`;
|
|
55
|
+
const content = fs.createReadStream(filePath.includes("tmp/")
|
|
56
|
+
? filePath
|
|
57
|
+
: `/tmp/${filePath}`);
|
|
58
|
+
|
|
59
|
+
const formData = new FormData();
|
|
60
|
+
formData.append("query", query);
|
|
61
|
+
formData.append("variables[file]", content);
|
|
62
|
+
|
|
63
|
+
return axios($, {
|
|
64
|
+
method: "POST",
|
|
65
|
+
url: "https://api.monday.com/v2/file",
|
|
66
|
+
headers: {
|
|
67
|
+
"Content-Type": `multipart/form-data; boundary=${formData._boundary}`,
|
|
68
|
+
"Authorization": this.monday.$auth.api_key,
|
|
69
|
+
},
|
|
70
|
+
data: formData,
|
|
71
|
+
});
|
|
72
|
+
},
|
|
73
|
+
},
|
|
43
74
|
async run({ $ }) {
|
|
44
75
|
const columns = await this.getColumns(this.boardId);
|
|
45
76
|
const columnValues = {};
|
|
46
77
|
for (const column of columns) {
|
|
47
78
|
if (this[column.id]) {
|
|
79
|
+
if (column.type === "file") {
|
|
80
|
+
await this.uploadFile({
|
|
81
|
+
$,
|
|
82
|
+
itemId: this.itemId,
|
|
83
|
+
column,
|
|
84
|
+
filePath: this[column.id],
|
|
85
|
+
});
|
|
86
|
+
continue;
|
|
87
|
+
}
|
|
48
88
|
columnValues[column.id] = this[column.id];
|
|
49
89
|
}
|
|
50
90
|
}
|
package/common/mutations.mjs
CHANGED
|
@@ -50,6 +50,23 @@ export default {
|
|
|
50
50
|
}
|
|
51
51
|
}
|
|
52
52
|
`,
|
|
53
|
+
createSubItem: `
|
|
54
|
+
mutation createSubItem (
|
|
55
|
+
$itemName: String!
|
|
56
|
+
$parentItemId: ID!
|
|
57
|
+
$columnValues: JSON
|
|
58
|
+
$createLabels: Boolean
|
|
59
|
+
) {
|
|
60
|
+
create_subitem (
|
|
61
|
+
item_name: $itemName
|
|
62
|
+
parent_item_id: $parentItemId
|
|
63
|
+
column_values: $columnValues
|
|
64
|
+
create_labels_if_missing: $createLabels
|
|
65
|
+
) {
|
|
66
|
+
id
|
|
67
|
+
}
|
|
68
|
+
}
|
|
69
|
+
`,
|
|
53
70
|
createUpdate: `
|
|
54
71
|
mutation createUpdate (
|
|
55
72
|
$updateBody: String!
|
package/common/queries.mjs
CHANGED
package/monday.app.mjs
CHANGED
|
@@ -223,6 +223,14 @@ export default {
|
|
|
223
223
|
},
|
|
224
224
|
});
|
|
225
225
|
},
|
|
226
|
+
async createSubItem(variables) {
|
|
227
|
+
return this.makeRequest({
|
|
228
|
+
query: mutations.createSubItem,
|
|
229
|
+
options: {
|
|
230
|
+
variables,
|
|
231
|
+
},
|
|
232
|
+
});
|
|
233
|
+
},
|
|
226
234
|
async createUpdate(variables) {
|
|
227
235
|
return this.makeRequest({
|
|
228
236
|
query: mutations.createUpdate,
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@pipedream/monday",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.6.1",
|
|
4
4
|
"description": "Pipedream Monday Components",
|
|
5
5
|
"main": "monday.app.mjs",
|
|
6
6
|
"keywords": [
|
|
@@ -14,7 +14,8 @@
|
|
|
14
14
|
"access": "public"
|
|
15
15
|
},
|
|
16
16
|
"dependencies": {
|
|
17
|
-
"@pipedream/platform": "^1.
|
|
17
|
+
"@pipedream/platform": "^1.6.0",
|
|
18
|
+
"form-data": "^4.0.0",
|
|
18
19
|
"lodash.flatmap": "^4.5.0",
|
|
19
20
|
"lodash.map": "^4.6.0",
|
|
20
21
|
"lodash.uniqby": "^4.7.0",
|
|
@@ -6,7 +6,7 @@ export default {
|
|
|
6
6
|
name: "New Column Value Updated (Instant)",
|
|
7
7
|
description: "Emit new event when a column value is updated on a board in Monday. For changes to Name, use the Name Updated Trigger.",
|
|
8
8
|
type: "source",
|
|
9
|
-
version: "0.0.
|
|
9
|
+
version: "0.0.7",
|
|
10
10
|
dedupe: "unique",
|
|
11
11
|
hooks: {
|
|
12
12
|
...common.hooks,
|
|
@@ -6,7 +6,7 @@ export default {
|
|
|
6
6
|
name: "New Sub-Item (Instant)",
|
|
7
7
|
description: "Emit new event when a sub-item is created. To create this trigger, you need to have at least one subitem previously created on your board.",
|
|
8
8
|
type: "source",
|
|
9
|
-
version: "0.0.
|
|
9
|
+
version: "0.0.6",
|
|
10
10
|
dedupe: "unique",
|
|
11
11
|
props: {
|
|
12
12
|
...common.props,
|
|
@@ -6,7 +6,7 @@ export default {
|
|
|
6
6
|
name: "New Sub-Item Update (Instant)",
|
|
7
7
|
description: "Emit new event when an update is posted in sub-items. To create this trigger, you need to have at least one subitem previously created on your board.",
|
|
8
8
|
type: "source",
|
|
9
|
-
version: "0.0.
|
|
9
|
+
version: "0.0.6",
|
|
10
10
|
dedupe: "unique",
|
|
11
11
|
props: {
|
|
12
12
|
...common.props,
|
|
@@ -6,7 +6,7 @@ export default {
|
|
|
6
6
|
name: "New Specific Column Updated (Instant)",
|
|
7
7
|
description: "Emit new event when a value in the specified column is updated on a board in Monday. For changes to Name, use the Name Updated Trigger.",
|
|
8
8
|
type: "source",
|
|
9
|
-
version: "0.0.
|
|
9
|
+
version: "0.0.7",
|
|
10
10
|
dedupe: "unique",
|
|
11
11
|
hooks: {
|
|
12
12
|
...common.hooks,
|
|
@@ -6,7 +6,7 @@ export default {
|
|
|
6
6
|
name: "New Sub-Item Column Value Updated (Instant)",
|
|
7
7
|
description: "Emit new event when any sub-item column changes. To create this trigger, you need to have at least one subitem previously created on your board.",
|
|
8
8
|
type: "source",
|
|
9
|
-
version: "0.0.
|
|
9
|
+
version: "0.0.7",
|
|
10
10
|
dedupe: "unique",
|
|
11
11
|
props: {
|
|
12
12
|
...common.props,
|
|
@@ -6,7 +6,7 @@ export default {
|
|
|
6
6
|
name: "New Sub-Item Name Updated (Instant)",
|
|
7
7
|
description: "Emit new event when a sub-item name changes. To create this trigger, you need to have at least one subitem previously created on your board.",
|
|
8
8
|
type: "source",
|
|
9
|
-
version: "0.0.
|
|
9
|
+
version: "0.0.6",
|
|
10
10
|
dedupe: "unique",
|
|
11
11
|
props: {
|
|
12
12
|
...common.props,
|