-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
tsoa.json
48 lines (48 loc) · 1.54 KB
/
tsoa.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
{
"entryFile": "src/app.ts",
"noImplicitAdditionalProperties": "throw-on-extras",
"controllerPathGlobs": ["src/controllers/*Controller.ts"],
"spec": {
"outputDirectory": "tsoa",
"specVersion": 3,
"name": "WPP Connect Server",
"description": "REST API similar to WhatsApp Cloud API to connect with WhatsApp and send messages",
"securityDefinitions": {
"apiKey": {
"type": "apiKey",
"name": "Authorization",
"in": "header"
}
},
"tags": [
{
"name": "Auth",
"description": "Auth Methods for connect com WPPConnect-Server. This routes are NOT similar to WhatsApp Cloud API."
},
{
"name": "Contacts",
"description": "Within the business profile request, you can specify what you want to know from business, groups and contacts. "
},
{
"name": "Profile",
"description": "Methods for update your profile - NOT IMPLEMENTED - Await wa-js functions"
},
{
"name": "Messages",
"description": "Methods for get and send messages to contacts"
},
{
"name": "Media",
"description": "Methods for get, delete and upload media to server"
},
{
"name": "Groups",
"description": "NOT similar to OFFICIAL API. Methods for manage groups"
}
]
},
"routes": {
"authenticationModule": "./src/authentication.ts",
"routesDir": "tsoa"
}
}