-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathplugin.contracts.json
More file actions
90 lines (90 loc) · 2.9 KB
/
plugin.contracts.json
File metadata and controls
90 lines (90 loc) · 2.9 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
{
"version": "1.0",
"contracts": [
{
"kind": "module",
"type": "teams.provider",
"mode": "strict",
"config": "teams.v1.ProviderConfig"
},
{
"kind": "step",
"type": "step.teams_send_message",
"mode": "strict",
"config": "teams.v1.SendMessageConfig",
"input": "teams.v1.SendMessageInput",
"output": "teams.v1.SendMessageOutput"
},
{
"kind": "step",
"type": "step.teams_send_card",
"mode": "strict",
"config": "teams.v1.SendCardConfig",
"input": "teams.v1.SendCardInput",
"output": "teams.v1.SendCardOutput"
},
{
"kind": "step",
"type": "step.teams_reply_message",
"mode": "strict",
"config": "teams.v1.ReplyMessageConfig",
"input": "teams.v1.ReplyMessageInput",
"output": "teams.v1.ReplyMessageOutput"
},
{
"kind": "step",
"type": "step.teams_delete_message",
"mode": "strict",
"config": "teams.v1.DeleteMessageConfig",
"input": "teams.v1.DeleteMessageInput",
"output": "teams.v1.DeleteMessageOutput"
},
{
"kind": "step",
"type": "step.teams_create_channel",
"mode": "strict",
"config": "teams.v1.CreateChannelConfig",
"input": "teams.v1.CreateChannelInput",
"output": "teams.v1.CreateChannelOutput"
},
{
"kind": "step",
"type": "step.teams_add_member",
"mode": "strict",
"config": "teams.v1.AddMemberConfig",
"input": "teams.v1.AddMemberInput",
"output": "teams.v1.AddMemberOutput"
},
{
"kind": "step",
"type": "step.teams_list_channel_messages",
"mode": "strict",
"config": "teams.v1.ListChannelMessagesConfig",
"input": "teams.v1.ListChannelMessagesInput",
"output": "teams.v1.ListChannelMessagesOutput"
},
{
"kind": "step",
"type": "step.teams_get_message",
"mode": "strict",
"config": "teams.v1.GetMessageConfig",
"input": "teams.v1.GetMessageInput",
"output": "teams.v1.GetMessageOutput"
},
{
"kind": "step",
"type": "step.teams_upload_file",
"mode": "strict",
"config": "teams.v1.UploadFileConfig",
"input": "teams.v1.UploadFileInput",
"output": "teams.v1.UploadFileOutput"
},
{
"kind": "trigger",
"type": "trigger.teams",
"mode": "strict",
"config": "teams.v1.TriggerConfig",
"output": "teams.v1.TriggerEvent"
}
]
}