Skip to content

Commit be8c9c2

Browse files
committed
9.5
1 parent 609cc61 commit be8c9c2

File tree

1 file changed

+117
-18
lines changed

1 file changed

+117
-18
lines changed

static/swagger/openapi.json

Lines changed: 117 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -6348,14 +6348,7 @@
63486348
"description": ""
63496349
},
63506350
"201": {
6351-
"description": "",
6352-
"content": {
6353-
"application/json": {
6354-
"schema": {
6355-
"type": "object"
6356-
}
6357-
}
6358-
}
6351+
"description": ""
63596352
}
63606353
},
63616354
"tags": [
@@ -6415,14 +6408,7 @@
64156408
"description": ""
64166409
},
64176410
"201": {
6418-
"description": "",
6419-
"content": {
6420-
"application/json": {
6421-
"schema": {
6422-
"type": "object"
6423-
}
6424-
}
6425-
}
6411+
"description": ""
64266412
}
64276413
},
64286414
"tags": [
@@ -6495,6 +6481,33 @@
64956481
}
64966482
},
64976483
"/api/apps/{id}": {
6484+
"get": {
6485+
"operationId": "AppsController_get",
6486+
"summary": "Get app by ID",
6487+
"parameters": [
6488+
{
6489+
"name": "id",
6490+
"required": true,
6491+
"in": "path",
6492+
"schema": {
6493+
"type": "string"
6494+
}
6495+
}
6496+
],
6497+
"responses": {
6498+
"200": {
6499+
"description": ""
6500+
}
6501+
},
6502+
"tags": [
6503+
"🧩 Apps"
6504+
],
6505+
"security": [
6506+
{
6507+
"api_key": []
6508+
}
6509+
]
6510+
},
64986511
"put": {
64996512
"operationId": "AppsController_update",
65006513
"summary": "Update an existing app",
@@ -6595,7 +6608,7 @@
65956608
"info": {
65966609
"title": "WAHA - WhatsApp HTTP API",
65976610
"description": "<b>WhatsApp HTTP API</b> that you can run in a click!<br/><a href=\"/dashboard\"><b>📊 Dashboard</b></a><br/><br/>Learn more:<ul><li><a href=\"https://waha.devlike.pro/\" target=\"_blank\">Documentation</a></li><li><a href=\"https://waha.devlike.pro/docs/how-to/engines/#features\" target=\"_blank\">Supported features in engines</a></li><li><a href=\"https://github.com/devlikeapro/waha\" target=\"_blank\">GitHub - WAHA Core</a></li><li><a href=\"https://github.com/devlikeapro/waha-plus\" target=\"_blank\">GitHub - WAHA Plus</a></li></ul><p>Support the project and get WAHA Plus version!</p><ul><li><a href=\"https://waha.devlike.pro/docs/how-to/plus-version/\" target=\"_blank\">WAHA Plus</a></li><li><a href=\"https://patreon.com/wa_http_api/\" target=\"_blank\">Patreon</a></li><li><a href=\"https://boosty.to/wa-http-api/\" target=\"_blank\">Boosty</a></li><li><a href=\"https://portal.devlike.pro/\" target=\"_blank\">Patron Portal</a></li></ul>",
6598-
"version": "2025.8.2",
6611+
"version": "2025.9.5",
65996612
"contact": {}
66006613
},
66016614
"tags": [
@@ -6794,6 +6807,27 @@
67946807
"server"
67956808
]
67966809
},
6810+
"IgnoreConfig": {
6811+
"type": "object",
6812+
"properties": {
6813+
"status": {
6814+
"type": "boolean",
6815+
"description": "Ignore a status@broadcast (stories) events"
6816+
},
6817+
"groups": {
6818+
"type": "boolean",
6819+
"description": "Ignore groups events"
6820+
},
6821+
"channels": {
6822+
"type": "boolean",
6823+
"description": "Ignore channels events"
6824+
},
6825+
"broadcast": {
6826+
"type": "boolean",
6827+
"description": "Ignore broadcast events (broadcast list and status)"
6828+
}
6829+
}
6830+
},
67976831
"NowebStoreConfig": {
67986832
"type": "object",
67996833
"properties": {
@@ -6830,6 +6864,16 @@
68306864
"markOnline"
68316865
]
68326866
},
6867+
"WebjsConfig": {
6868+
"type": "object",
6869+
"properties": {
6870+
"tagsEventsOn": {
6871+
"type": "boolean",
6872+
"default": false,
6873+
"description": "Enable emission of special 'tag:*' engine events required for presence.update and message.ack.\nWARNING: Enabling this may have performance and stability impact. Disabled by default."
6874+
}
6875+
}
6876+
},
68336877
"HmacConfiguration": {
68346878
"type": "object",
68356879
"properties": {
@@ -6952,6 +6996,19 @@
69526996
"type": "boolean",
69536997
"default": false
69546998
},
6999+
"ignore": {
7000+
"example": {
7001+
"status": null,
7002+
"groups": null,
7003+
"channels": null
7004+
},
7005+
"description": "Ignore some events related to specific chats",
7006+
"allOf": [
7007+
{
7008+
"$ref": "#/components/schemas/IgnoreConfig"
7009+
}
7010+
]
7011+
},
69557012
"noweb": {
69567013
"example": {
69577014
"store": {
@@ -6965,6 +7022,14 @@
69657022
}
69667023
]
69677024
},
7025+
"webjs": {
7026+
"description": "WebJS-specific settings.",
7027+
"allOf": [
7028+
{
7029+
"$ref": "#/components/schemas/WebjsConfig"
7030+
}
7031+
]
7032+
},
69687033
"webhooks": {
69697034
"type": "array",
69707035
"items": {
@@ -9703,6 +9768,11 @@
97039768
"App": {
97049769
"type": "object",
97059770
"properties": {
9771+
"enabled": {
9772+
"type": "boolean",
9773+
"default": true,
9774+
"description": "Enable or disable this app without deleting it. If omitted, treated as enabled (true)."
9775+
},
97069776
"id": {
97079777
"type": "string"
97089778
},
@@ -9726,6 +9796,28 @@
97269796
"config"
97279797
]
97289798
},
9799+
"SessionStatusPoint": {
9800+
"type": "object",
9801+
"properties": {
9802+
"status": {
9803+
"type": "string",
9804+
"enum": [
9805+
"STOPPED",
9806+
"STARTING",
9807+
"SCAN_QR_CODE",
9808+
"WORKING",
9809+
"FAILED"
9810+
]
9811+
},
9812+
"timestamp": {
9813+
"type": "number"
9814+
}
9815+
},
9816+
"required": [
9817+
"status",
9818+
"timestamp"
9819+
]
9820+
},
97299821
"WASessionStatusBody": {
97309822
"type": "object",
97319823
"properties": {
@@ -9742,11 +9834,18 @@
97429834
"WORKING",
97439835
"FAILED"
97449836
]
9837+
},
9838+
"statuses": {
9839+
"type": "array",
9840+
"items": {
9841+
"$ref": "#/components/schemas/SessionStatusPoint"
9842+
}
97459843
}
97469844
},
97479845
"required": [
97489846
"name",
9749-
"status"
9847+
"status",
9848+
"statuses"
97509849
]
97519850
},
97529851
"WAHAWebhookSessionStatus": {

0 commit comments

Comments
 (0)