-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathplugin.json
More file actions
106 lines (106 loc) · 3.36 KB
/
plugin.json
File metadata and controls
106 lines (106 loc) · 3.36 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
{
"name": "workflow-plugin-monday",
"version": "0.0.0",
"description": "monday.com integration plugin (~57 step types covering all monday.com resources)",
"author": "GoCodeAlone",
"license": "MIT",
"type": "external",
"tier": "community",
"minEngineVersion": "0.51.7",
"required_secrets": [
{
"name": "MONDAY_API_TOKEN",
"sensitive": true,
"description": "Monday.com API token. Referenced as ${MONDAY_API_TOKEN} in apiToken.",
"prompt": "Monday.com API token"
}
],
"capabilities": {
"configProvider": false,
"moduleTypes": [
"monday.provider"
],
"stepTypes": [
"step.monday_create_board",
"step.monday_list_boards",
"step.monday_fetch_board",
"step.monday_update_board",
"step.monday_delete_board",
"step.monday_duplicate_board",
"step.monday_archive_board",
"step.monday_create_item",
"step.monday_list_items",
"step.monday_fetch_item",
"step.monday_update_item",
"step.monday_move_item",
"step.monday_archive_item",
"step.monday_delete_item",
"step.monday_search_items",
"step.monday_create_subitem",
"step.monday_list_subitems",
"step.monday_update_subitem",
"step.monday_delete_subitem",
"step.monday_get_column_values",
"step.monday_change_column_value",
"step.monday_create_column",
"step.monday_create_group",
"step.monday_list_groups",
"step.monday_update_group",
"step.monday_move_group",
"step.monday_delete_group",
"step.monday_create_workspace",
"step.monday_list_workspaces",
"step.monday_update_workspace",
"step.monday_delete_workspace",
"step.monday_create_folder",
"step.monday_list_folders",
"step.monday_update_folder",
"step.monday_delete_folder",
"step.monday_create_update",
"step.monday_list_updates",
"step.monday_edit_update",
"step.monday_delete_update",
"step.monday_list_users",
"step.monday_fetch_user",
"step.monday_invite_user",
"step.monday_list_teams",
"step.monday_add_team_to_workspace",
"step.monday_list_tags",
"step.monday_create_tag",
"step.monday_upload_file",
"step.monday_list_files",
"step.monday_create_notification",
"step.monday_create_webhook",
"step.monday_list_webhooks",
"step.monday_delete_webhook",
"step.monday_create_document",
"step.monday_list_documents",
"step.monday_update_document",
"step.monday_query",
"step.monday_mutate"
],
"triggerTypes": []
},
"downloads": [
{
"os": "linux",
"arch": "amd64",
"url": "https://github.com/GoCodeAlone/workflow-plugin-monday/releases/download/v0.1.3/workflow-plugin-monday-linux-amd64.tar.gz"
},
{
"os": "linux",
"arch": "arm64",
"url": "https://github.com/GoCodeAlone/workflow-plugin-monday/releases/download/v0.1.3/workflow-plugin-monday-linux-arm64.tar.gz"
},
{
"os": "darwin",
"arch": "amd64",
"url": "https://github.com/GoCodeAlone/workflow-plugin-monday/releases/download/v0.1.3/workflow-plugin-monday-darwin-amd64.tar.gz"
},
{
"os": "darwin",
"arch": "arm64",
"url": "https://github.com/GoCodeAlone/workflow-plugin-monday/releases/download/v0.1.3/workflow-plugin-monday-darwin-arm64.tar.gz"
}
]
}