-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathschema.json
81 lines (80 loc) · 1.69 KB
/
schema.json
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
[
{
"namespace": "attachmentExtractorApi",
"types": [
{
"id": "MessageDetails",
"type": "object",
"description": "Details of a message",
"properties": {
"message": {
"$ref": "messages.MessageHeader"
},
"full": {
"$ref": "messages.MessagePart"
},
"attachments": {
"type": "array",
"items": {
"$ref": "messages.MessageAttachment"
}
}
}
}
],
"functions": [
{
"name": "detachAttachmentsFromSelectedMessages",
"type": "function",
"description": "Starts detachment process for selected messages.",
"async": true,
"parameters": [
{
"name": "messages",
"type": "array",
"description": "The details of the messages with attachments to extract.",
"items": {
"$ref": "MessageDetails"
}
}
]
},
{
"name": "showAlertToUser",
"type": "function",
"description": "Shows a simple alert pop-up to the user.",
"async": false,
"parameters": [
{
"name": "title",
"type": "string",
"description": "Title of the message box."
},
{
"name": "text",
"type": "string",
"description": "Text of the message."
}
]
},
{
"name": "showPromptToUser",
"type": "function",
"description": "Shows a simple prompt pop-up to the user.",
"async": true,
"parameters": [
{
"name": "title",
"type": "string",
"description": "Title of the message box."
},
{
"name": "text",
"type": "string",
"description": "Text of the message."
}
]
}
]
}
]