@djangocfg/api 1.2.5 → 1.2.7
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.cjs +4630 -1605
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +5103 -1773
- package/dist/index.d.ts +5103 -1773
- package/dist/index.mjs +4481 -1486
- package/dist/index.mjs.map +1 -1
- package/package.json +2 -2
- package/src/cfg/contexts/TasksContext.tsx +242 -0
- package/src/cfg/contexts/index.ts +3 -0
- package/src/cfg/generated/_utils/fetchers/cfg__accounts.ts +2 -3
- package/src/cfg/generated/_utils/fetchers/cfg__accounts__auth.ts +1 -2
- package/src/cfg/generated/_utils/fetchers/cfg__accounts__user_profile.ts +6 -7
- package/src/cfg/generated/_utils/fetchers/cfg__centrifugo.ts +61 -0
- package/src/cfg/generated/_utils/fetchers/cfg__centrifugo__centrifugo_admin_api.ts +12 -13
- package/src/cfg/generated/_utils/fetchers/cfg__centrifugo__centrifugo_monitoring.ts +25 -26
- package/src/cfg/generated/_utils/fetchers/cfg__centrifugo__centrifugo_testing.ts +8 -9
- package/src/cfg/generated/_utils/fetchers/cfg__dashboard__dashboard_activity.ts +61 -0
- package/src/cfg/generated/_utils/fetchers/cfg__dashboard__dashboard_api_zones.ts +62 -0
- package/src/cfg/generated/_utils/fetchers/cfg__dashboard__dashboard_charts.ts +90 -0
- package/src/cfg/generated/_utils/fetchers/cfg__dashboard__dashboard_commands.ts +62 -0
- package/src/cfg/generated/_utils/fetchers/cfg__dashboard__dashboard_overview.ts +48 -0
- package/src/cfg/generated/_utils/fetchers/cfg__dashboard__dashboard_statistics.ts +76 -0
- package/src/cfg/generated/_utils/fetchers/cfg__dashboard__dashboard_system.ts +63 -0
- package/src/cfg/generated/_utils/fetchers/cfg__endpoints.ts +30 -2
- package/src/cfg/generated/_utils/fetchers/cfg__health.ts +2 -3
- package/src/cfg/generated/_utils/fetchers/cfg__knowbase.ts +57 -58
- package/src/cfg/generated/_utils/fetchers/cfg__leads.ts +6 -7
- package/src/cfg/generated/_utils/fetchers/cfg__leads__lead_submission.ts +1 -2
- package/src/cfg/generated/_utils/fetchers/cfg__newsletter.ts +3 -4
- package/src/cfg/generated/_utils/fetchers/cfg__newsletter__bulk_email.ts +1 -2
- package/src/cfg/generated/_utils/fetchers/cfg__newsletter__campaigns.ts +6 -7
- package/src/cfg/generated/_utils/fetchers/cfg__newsletter__logs.ts +1 -2
- package/src/cfg/generated/_utils/fetchers/cfg__newsletter__newsletters.ts +2 -3
- package/src/cfg/generated/_utils/fetchers/cfg__newsletter__subscriptions.ts +3 -4
- package/src/cfg/generated/_utils/fetchers/cfg__newsletter__testing.ts +1 -2
- package/src/cfg/generated/_utils/fetchers/cfg__payments.ts +8 -9
- package/src/cfg/generated/_utils/fetchers/cfg__support.ts +12 -13
- package/src/cfg/generated/_utils/fetchers/cfg__tasks.ts +10 -11
- package/src/cfg/generated/_utils/fetchers/index.ts +8 -0
- package/src/cfg/generated/_utils/hooks/cfg__centrifugo.ts +49 -0
- package/src/cfg/generated/_utils/hooks/cfg__centrifugo__centrifugo_monitoring.ts +20 -20
- package/src/cfg/generated/_utils/hooks/cfg__dashboard__dashboard_activity.ts +49 -0
- package/src/cfg/generated/_utils/hooks/cfg__dashboard__dashboard_api_zones.ts +50 -0
- package/src/cfg/generated/_utils/hooks/cfg__dashboard__dashboard_charts.ts +78 -0
- package/src/cfg/generated/_utils/hooks/cfg__dashboard__dashboard_commands.ts +50 -0
- package/src/cfg/generated/_utils/hooks/cfg__dashboard__dashboard_overview.ts +36 -0
- package/src/cfg/generated/_utils/hooks/cfg__dashboard__dashboard_statistics.ts +64 -0
- package/src/cfg/generated/_utils/hooks/cfg__dashboard__dashboard_system.ts +51 -0
- package/src/cfg/generated/_utils/hooks/cfg__endpoints.ts +29 -0
- package/src/cfg/generated/_utils/hooks/index.ts +8 -0
- package/src/cfg/generated/_utils/schemas/APIZone.schema.ts +27 -0
- package/src/cfg/generated/_utils/schemas/APIZonesSummary.schema.ts +21 -0
- package/src/cfg/generated/_utils/schemas/ActivityEntry.schema.ts +25 -0
- package/src/cfg/generated/_utils/schemas/ActivityTrackerDay.schema.ts +23 -0
- package/src/cfg/generated/_utils/schemas/AppStatistics.schema.ts +20 -0
- package/src/cfg/generated/_utils/schemas/CentrifugoChannelsRequestRequest.schema.ts +1 -1
- package/src/cfg/generated/_utils/schemas/CentrifugoClientInfo.schema.ts +2 -2
- package/src/cfg/generated/_utils/schemas/CentrifugoHistoryRequestRequest.schema.ts +2 -2
- package/src/cfg/generated/_utils/schemas/CentrifugoPublication.schema.ts +1 -1
- package/src/cfg/generated/_utils/schemas/ChannelStatsSerializer.schema.ts +1 -0
- package/src/cfg/generated/_utils/schemas/ChartData.schema.ts +21 -0
- package/src/cfg/generated/_utils/schemas/ChartDataset.schema.ts +24 -0
- package/src/cfg/generated/_utils/schemas/Command.schema.ts +23 -0
- package/src/cfg/generated/_utils/schemas/CommandsSummary.schema.ts +25 -0
- package/src/cfg/generated/_utils/schemas/DashboardOverview.schema.ts +27 -0
- package/src/cfg/generated/_utils/schemas/ManualAckResponse.schema.ts +1 -1
- package/src/cfg/generated/_utils/schemas/PublishTestResponse.schema.ts +1 -1
- package/src/cfg/generated/_utils/schemas/QuickAction.schema.ts +29 -0
- package/src/cfg/generated/_utils/schemas/RecentPublishes.schema.ts +2 -0
- package/src/cfg/generated/_utils/schemas/RecentUser.schema.ts +26 -0
- package/src/cfg/generated/_utils/schemas/StatCard.schema.ts +30 -0
- package/src/cfg/generated/_utils/schemas/SystemHealth.schema.ts +24 -0
- package/src/cfg/generated/_utils/schemas/SystemHealthItem.schema.ts +28 -0
- package/src/cfg/generated/_utils/schemas/SystemMetrics.schema.ts +25 -0
- package/src/cfg/generated/_utils/schemas/URLPattern.schema.ts +26 -0
- package/src/cfg/generated/_utils/schemas/URLsList.schema.ts +25 -0
- package/src/cfg/generated/_utils/schemas/UserStatistics.schema.ts +22 -0
- package/src/cfg/generated/_utils/schemas/index.ts +19 -0
- package/src/cfg/generated/cfg__centrifugo/client.ts +30 -0
- package/src/cfg/generated/cfg__centrifugo/index.ts +2 -0
- package/src/cfg/generated/cfg__centrifugo/models.ts +0 -0
- package/src/cfg/generated/cfg__centrifugo__centrifugo_admin_api/models.ts +6 -6
- package/src/cfg/generated/cfg__centrifugo__centrifugo_monitoring/client.ts +32 -32
- package/src/cfg/generated/cfg__centrifugo__centrifugo_monitoring/models.ts +18 -12
- package/src/cfg/generated/cfg__centrifugo__centrifugo_testing/models.ts +2 -2
- package/src/cfg/generated/cfg__dashboard__dashboard_activity/client.ts +45 -0
- package/src/cfg/generated/cfg__dashboard__dashboard_activity/index.ts +2 -0
- package/src/cfg/generated/cfg__dashboard__dashboard_activity/models.ts +0 -0
- package/src/cfg/generated/cfg__dashboard__dashboard_api_zones/client.ts +34 -0
- package/src/cfg/generated/cfg__dashboard__dashboard_api_zones/index.ts +2 -0
- package/src/cfg/generated/cfg__dashboard__dashboard_api_zones/models.ts +27 -0
- package/src/cfg/generated/cfg__dashboard__dashboard_charts/client.ts +98 -0
- package/src/cfg/generated/cfg__dashboard__dashboard_charts/index.ts +2 -0
- package/src/cfg/generated/cfg__dashboard__dashboard_charts/models.ts +24 -0
- package/src/cfg/generated/cfg__dashboard__dashboard_commands/client.ts +34 -0
- package/src/cfg/generated/cfg__dashboard__dashboard_commands/index.ts +2 -0
- package/src/cfg/generated/cfg__dashboard__dashboard_commands/models.ts +27 -0
- package/src/cfg/generated/cfg__dashboard__dashboard_overview/client.ts +25 -0
- package/src/cfg/generated/cfg__dashboard__dashboard_overview/index.ts +2 -0
- package/src/cfg/generated/cfg__dashboard__dashboard_overview/models.ts +23 -0
- package/src/cfg/generated/cfg__dashboard__dashboard_statistics/client.ts +44 -0
- package/src/cfg/generated/cfg__dashboard__dashboard_statistics/index.ts +2 -0
- package/src/cfg/generated/cfg__dashboard__dashboard_statistics/models.ts +16 -0
- package/src/cfg/generated/cfg__dashboard__dashboard_system/client.ts +34 -0
- package/src/cfg/generated/cfg__dashboard__dashboard_system/index.ts +2 -0
- package/src/cfg/generated/cfg__dashboard__dashboard_system/models.ts +69 -0
- package/src/cfg/generated/cfg__endpoints/client.ts +16 -0
- package/src/cfg/generated/cfg__endpoints/models.ts +44 -0
- package/src/cfg/generated/client.ts +35 -9
- package/src/cfg/generated/enums.ts +56 -0
- package/src/cfg/generated/http.ts +8 -3
- package/src/cfg/generated/index.ts +47 -10
- package/src/cfg/generated/schema.ts +2120 -135
|
@@ -61,6 +61,166 @@ export const OPENAPI_SCHEMA = {
|
|
|
61
61
|
],
|
|
62
62
|
"type": "object"
|
|
63
63
|
},
|
|
64
|
+
"APIZone": {
|
|
65
|
+
"description": "OpenAPI zone/group serializer.",
|
|
66
|
+
"properties": {
|
|
67
|
+
"api_url": {
|
|
68
|
+
"type": "string"
|
|
69
|
+
},
|
|
70
|
+
"app_count": {
|
|
71
|
+
"type": "integer"
|
|
72
|
+
},
|
|
73
|
+
"apps": {
|
|
74
|
+
"items": {
|
|
75
|
+
"type": "string"
|
|
76
|
+
},
|
|
77
|
+
"type": "array"
|
|
78
|
+
},
|
|
79
|
+
"description": {
|
|
80
|
+
"type": "string"
|
|
81
|
+
},
|
|
82
|
+
"endpoint_count": {
|
|
83
|
+
"type": "integer"
|
|
84
|
+
},
|
|
85
|
+
"name": {
|
|
86
|
+
"type": "string"
|
|
87
|
+
},
|
|
88
|
+
"schema_url": {
|
|
89
|
+
"type": "string"
|
|
90
|
+
},
|
|
91
|
+
"status": {
|
|
92
|
+
"type": "string"
|
|
93
|
+
},
|
|
94
|
+
"title": {
|
|
95
|
+
"type": "string"
|
|
96
|
+
}
|
|
97
|
+
},
|
|
98
|
+
"required": [
|
|
99
|
+
"api_url",
|
|
100
|
+
"app_count",
|
|
101
|
+
"apps",
|
|
102
|
+
"description",
|
|
103
|
+
"endpoint_count",
|
|
104
|
+
"name",
|
|
105
|
+
"schema_url",
|
|
106
|
+
"status",
|
|
107
|
+
"title"
|
|
108
|
+
],
|
|
109
|
+
"type": "object"
|
|
110
|
+
},
|
|
111
|
+
"APIZonesSummary": {
|
|
112
|
+
"description": "API zones summary serializer.",
|
|
113
|
+
"properties": {
|
|
114
|
+
"summary": {
|
|
115
|
+
"additionalProperties": {},
|
|
116
|
+
"type": "object"
|
|
117
|
+
},
|
|
118
|
+
"zones": {
|
|
119
|
+
"items": {
|
|
120
|
+
"$ref": "#/components/schemas/APIZone"
|
|
121
|
+
},
|
|
122
|
+
"type": "array"
|
|
123
|
+
}
|
|
124
|
+
},
|
|
125
|
+
"required": [
|
|
126
|
+
"summary",
|
|
127
|
+
"zones"
|
|
128
|
+
],
|
|
129
|
+
"type": "object"
|
|
130
|
+
},
|
|
131
|
+
"ActivityEntry": {
|
|
132
|
+
"description": "Serializer for recent activity entries.",
|
|
133
|
+
"properties": {
|
|
134
|
+
"action": {
|
|
135
|
+
"description": "Action type (created, updated, deleted, etc.)",
|
|
136
|
+
"type": "string"
|
|
137
|
+
},
|
|
138
|
+
"color": {
|
|
139
|
+
"description": "Icon color",
|
|
140
|
+
"type": "string"
|
|
141
|
+
},
|
|
142
|
+
"icon": {
|
|
143
|
+
"description": "Material icon name",
|
|
144
|
+
"type": "string"
|
|
145
|
+
},
|
|
146
|
+
"id": {
|
|
147
|
+
"description": "Activity ID",
|
|
148
|
+
"type": "integer"
|
|
149
|
+
},
|
|
150
|
+
"resource": {
|
|
151
|
+
"description": "Resource affected",
|
|
152
|
+
"type": "string"
|
|
153
|
+
},
|
|
154
|
+
"timestamp": {
|
|
155
|
+
"description": "Activity timestamp (ISO format)",
|
|
156
|
+
"type": "string"
|
|
157
|
+
},
|
|
158
|
+
"user": {
|
|
159
|
+
"description": "User who performed the action",
|
|
160
|
+
"type": "string"
|
|
161
|
+
}
|
|
162
|
+
},
|
|
163
|
+
"required": [
|
|
164
|
+
"action",
|
|
165
|
+
"color",
|
|
166
|
+
"icon",
|
|
167
|
+
"id",
|
|
168
|
+
"resource",
|
|
169
|
+
"timestamp",
|
|
170
|
+
"user"
|
|
171
|
+
],
|
|
172
|
+
"type": "object"
|
|
173
|
+
},
|
|
174
|
+
"ActivityTrackerDay": {
|
|
175
|
+
"description": "Activity tracker single day serializer.",
|
|
176
|
+
"properties": {
|
|
177
|
+
"color": {
|
|
178
|
+
"type": "string"
|
|
179
|
+
},
|
|
180
|
+
"count": {
|
|
181
|
+
"type": "integer"
|
|
182
|
+
},
|
|
183
|
+
"date": {
|
|
184
|
+
"format": "date",
|
|
185
|
+
"type": "string"
|
|
186
|
+
},
|
|
187
|
+
"level": {
|
|
188
|
+
"type": "integer"
|
|
189
|
+
},
|
|
190
|
+
"tooltip": {
|
|
191
|
+
"type": "string"
|
|
192
|
+
}
|
|
193
|
+
},
|
|
194
|
+
"required": [
|
|
195
|
+
"color",
|
|
196
|
+
"count",
|
|
197
|
+
"date",
|
|
198
|
+
"level",
|
|
199
|
+
"tooltip"
|
|
200
|
+
],
|
|
201
|
+
"type": "object"
|
|
202
|
+
},
|
|
203
|
+
"AppStatistics": {
|
|
204
|
+
"description": "Serializer for application-specific statistics.",
|
|
205
|
+
"properties": {
|
|
206
|
+
"app_name": {
|
|
207
|
+
"description": "Application name",
|
|
208
|
+
"type": "string"
|
|
209
|
+
},
|
|
210
|
+
"statistics": {
|
|
211
|
+
"additionalProperties": {
|
|
212
|
+
"type": "integer"
|
|
213
|
+
},
|
|
214
|
+
"description": "Application statistics",
|
|
215
|
+
"type": "object"
|
|
216
|
+
}
|
|
217
|
+
},
|
|
218
|
+
"required": [
|
|
219
|
+
"app_name",
|
|
220
|
+
"statistics"
|
|
221
|
+
],
|
|
222
|
+
"type": "object"
|
|
223
|
+
},
|
|
64
224
|
"ArchiveItem": {
|
|
65
225
|
"description": "Archive item serializer.",
|
|
66
226
|
"properties": {
|
|
@@ -1549,6 +1709,19 @@ export const OPENAPI_SCHEMA = {
|
|
|
1549
1709
|
"title": "Failed",
|
|
1550
1710
|
"type": "integer"
|
|
1551
1711
|
},
|
|
1712
|
+
"last_activity_at": {
|
|
1713
|
+
"anyOf": [
|
|
1714
|
+
{
|
|
1715
|
+
"type": "string"
|
|
1716
|
+
},
|
|
1717
|
+
{
|
|
1718
|
+
"type": "null"
|
|
1719
|
+
}
|
|
1720
|
+
],
|
|
1721
|
+
"default": null,
|
|
1722
|
+
"description": "Last activity timestamp (ISO format)",
|
|
1723
|
+
"title": "Last Activity At"
|
|
1724
|
+
},
|
|
1552
1725
|
"successful": {
|
|
1553
1726
|
"description": "Successful publishes",
|
|
1554
1727
|
"title": "Successful",
|
|
@@ -1571,6 +1744,63 @@ export const OPENAPI_SCHEMA = {
|
|
|
1571
1744
|
"title": "ChannelStatsSerializer",
|
|
1572
1745
|
"type": "object"
|
|
1573
1746
|
},
|
|
1747
|
+
"ChartData": {
|
|
1748
|
+
"description": "Chart.js data structure serializer.",
|
|
1749
|
+
"properties": {
|
|
1750
|
+
"datasets": {
|
|
1751
|
+
"items": {
|
|
1752
|
+
"$ref": "#/components/schemas/ChartDataset"
|
|
1753
|
+
},
|
|
1754
|
+
"type": "array"
|
|
1755
|
+
},
|
|
1756
|
+
"labels": {
|
|
1757
|
+
"items": {
|
|
1758
|
+
"type": "string"
|
|
1759
|
+
},
|
|
1760
|
+
"type": "array"
|
|
1761
|
+
}
|
|
1762
|
+
},
|
|
1763
|
+
"required": [
|
|
1764
|
+
"datasets",
|
|
1765
|
+
"labels"
|
|
1766
|
+
],
|
|
1767
|
+
"type": "object"
|
|
1768
|
+
},
|
|
1769
|
+
"ChartDataset": {
|
|
1770
|
+
"description": "Chart.js dataset serializer.",
|
|
1771
|
+
"properties": {
|
|
1772
|
+
"backgroundColor": {
|
|
1773
|
+
"type": "string"
|
|
1774
|
+
},
|
|
1775
|
+
"borderColor": {
|
|
1776
|
+
"type": "string"
|
|
1777
|
+
},
|
|
1778
|
+
"data": {
|
|
1779
|
+
"items": {
|
|
1780
|
+
"type": "integer"
|
|
1781
|
+
},
|
|
1782
|
+
"type": "array"
|
|
1783
|
+
},
|
|
1784
|
+
"fill": {
|
|
1785
|
+
"type": "boolean"
|
|
1786
|
+
},
|
|
1787
|
+
"label": {
|
|
1788
|
+
"type": "string"
|
|
1789
|
+
},
|
|
1790
|
+
"tension": {
|
|
1791
|
+
"format": "double",
|
|
1792
|
+
"type": "number"
|
|
1793
|
+
}
|
|
1794
|
+
},
|
|
1795
|
+
"required": [
|
|
1796
|
+
"backgroundColor",
|
|
1797
|
+
"borderColor",
|
|
1798
|
+
"data",
|
|
1799
|
+
"label",
|
|
1800
|
+
"tension"
|
|
1801
|
+
],
|
|
1802
|
+
"type": "object"
|
|
1803
|
+
},
|
|
1574
1804
|
"ChatHistory": {
|
|
1575
1805
|
"description": "Chat history response serializer.",
|
|
1576
1806
|
"properties": {
|
|
@@ -1979,6 +2209,73 @@ export const OPENAPI_SCHEMA = {
|
|
|
1979
2209
|
],
|
|
1980
2210
|
"type": "object"
|
|
1981
2211
|
},
|
|
2212
|
+
"Command": {
|
|
2213
|
+
"description": "Django management command serializer.",
|
|
2214
|
+
"properties": {
|
|
2215
|
+
"app": {
|
|
2216
|
+
"type": "string"
|
|
2217
|
+
},
|
|
2218
|
+
"help": {
|
|
2219
|
+
"type": "string"
|
|
2220
|
+
},
|
|
2221
|
+
"is_core": {
|
|
2222
|
+
"type": "boolean"
|
|
2223
|
+
},
|
|
2224
|
+
"is_custom": {
|
|
2225
|
+
"type": "boolean"
|
|
2226
|
+
},
|
|
2227
|
+
"name": {
|
|
2228
|
+
"type": "string"
|
|
2229
|
+
}
|
|
2230
|
+
},
|
|
2231
|
+
"required": [
|
|
2232
|
+
"app",
|
|
2233
|
+
"help",
|
|
2234
|
+
"is_core",
|
|
2235
|
+
"is_custom",
|
|
2236
|
+
"name"
|
|
2237
|
+
],
|
|
2238
|
+
"type": "object"
|
|
2239
|
+
},
|
|
2240
|
+
"CommandsSummary": {
|
|
2241
|
+
"description": "Commands summary serializer.",
|
|
2242
|
+
"properties": {
|
|
2243
|
+
"categories": {
|
|
2244
|
+
"items": {
|
|
2245
|
+
"type": "string"
|
|
2246
|
+
},
|
|
2247
|
+
"type": "array"
|
|
2248
|
+
},
|
|
2249
|
+
"categorized": {
|
|
2250
|
+
"additionalProperties": {},
|
|
2251
|
+
"type": "object"
|
|
2252
|
+
},
|
|
2253
|
+
"commands": {
|
|
2254
|
+
"items": {
|
|
2255
|
+
"$ref": "#/components/schemas/Command"
|
|
2256
|
+
},
|
|
2257
|
+
"type": "array"
|
|
2258
|
+
},
|
|
2259
|
+
"core_commands": {
|
|
2260
|
+
"type": "integer"
|
|
2261
|
+
},
|
|
2262
|
+
"custom_commands": {
|
|
2263
|
+
"type": "integer"
|
|
2264
|
+
},
|
|
2265
|
+
"total_commands": {
|
|
2266
|
+
"type": "integer"
|
|
2267
|
+
}
|
|
2268
|
+
},
|
|
2269
|
+
"required": [
|
|
2270
|
+
"categories",
|
|
2271
|
+
"categorized",
|
|
2272
|
+
"commands",
|
|
2273
|
+
"core_commands",
|
|
2274
|
+
"custom_commands",
|
|
2275
|
+
"total_commands"
|
|
2276
|
+
],
|
|
2277
|
+
"type": "object"
|
|
2278
|
+
},
|
|
1982
2279
|
"ConnectionTokenRequestRequest": {
|
|
1983
2280
|
"description": "Request model for connection token generation.",
|
|
1984
2281
|
"properties": {
|
|
@@ -2099,6 +2396,67 @@ export const OPENAPI_SCHEMA = {
|
|
|
2099
2396
|
],
|
|
2100
2397
|
"type": "object"
|
|
2101
2398
|
},
|
|
2399
|
+
"DashboardOverview": {
|
|
2400
|
+
"description": "Main serializer for dashboard overview endpoint.\nUses DictField to avoid allOf generation in OpenAPI.",
|
|
2401
|
+
"properties": {
|
|
2402
|
+
"quick_actions": {
|
|
2403
|
+
"description": "Quick action buttons",
|
|
2404
|
+
"items": {
|
|
2405
|
+
"additionalProperties": {},
|
|
2406
|
+
"type": "object"
|
|
2407
|
+
},
|
|
2408
|
+
"type": "array"
|
|
2409
|
+
},
|
|
2410
|
+
"recent_activity": {
|
|
2411
|
+
"description": "Recent activity entries",
|
|
2412
|
+
"items": {
|
|
2413
|
+
"additionalProperties": {},
|
|
2414
|
+
"type": "object"
|
|
2415
|
+
},
|
|
2416
|
+
"type": "array"
|
|
2417
|
+
},
|
|
2418
|
+
"stat_cards": {
|
|
2419
|
+
"description": "Dashboard statistics cards",
|
|
2420
|
+
"items": {
|
|
2421
|
+
"additionalProperties": {},
|
|
2422
|
+
"type": "object"
|
|
2423
|
+
},
|
|
2424
|
+
"type": "array"
|
|
2425
|
+
},
|
|
2426
|
+
"system_health": {
|
|
2427
|
+
"description": "System health status",
|
|
2428
|
+
"items": {
|
|
2429
|
+
"additionalProperties": {},
|
|
2430
|
+
"type": "object"
|
|
2431
|
+
},
|
|
2432
|
+
"type": "array"
|
|
2433
|
+
},
|
|
2434
|
+
"system_metrics": {
|
|
2435
|
+
"additionalProperties": {},
|
|
2436
|
+
"description": "System performance metrics",
|
|
2437
|
+
"type": "object"
|
|
2438
|
+
},
|
|
2439
|
+
"timestamp": {
|
|
2440
|
+
"description": "Data timestamp (ISO format)",
|
|
2441
|
+
"type": "string"
|
|
2442
|
+
},
|
|
2443
|
+
"user_statistics": {
|
|
2444
|
+
"additionalProperties": {},
|
|
2445
|
+
"description": "User statistics",
|
|
2446
|
+
"type": "object"
|
|
2447
|
+
}
|
|
2448
|
+
},
|
|
2449
|
+
"required": [
|
|
2450
|
+
"quick_actions",
|
|
2451
|
+
"recent_activity",
|
|
2452
|
+
"stat_cards",
|
|
2453
|
+
"system_health",
|
|
2454
|
+
"system_metrics",
|
|
2455
|
+
"timestamp",
|
|
2456
|
+
"user_statistics"
|
|
2457
|
+
],
|
|
2458
|
+
"type": "object"
|
|
2459
|
+
},
|
|
2102
2460
|
"Document": {
|
|
2103
2461
|
"description": "Document response serializer.",
|
|
2104
2462
|
"properties": {
|
|
@@ -5855,22 +6213,68 @@ export const OPENAPI_SCHEMA = {
|
|
|
5855
6213
|
],
|
|
5856
6214
|
"type": "object"
|
|
5857
6215
|
},
|
|
5858
|
-
"
|
|
5859
|
-
"description": "Serializer for quick
|
|
6216
|
+
"QuickAction": {
|
|
6217
|
+
"description": "Serializer for quick action buttons.\n\nMaps to QuickAction Pydantic model.",
|
|
5860
6218
|
"properties": {
|
|
5861
|
-
"
|
|
5862
|
-
"
|
|
6219
|
+
"category": {
|
|
6220
|
+
"default": "general",
|
|
6221
|
+
"description": "Action category",
|
|
5863
6222
|
"type": "string"
|
|
5864
6223
|
},
|
|
5865
|
-
"
|
|
5866
|
-
"
|
|
6224
|
+
"color": {
|
|
6225
|
+
"default": "primary",
|
|
6226
|
+
"description": "Button color theme\n\n* `primary` - primary\n* `success` - success\n* `warning` - warning\n* `danger` - danger\n* `secondary` - secondary",
|
|
6227
|
+
"enum": [
|
|
6228
|
+
"primary",
|
|
6229
|
+
"success",
|
|
6230
|
+
"warning",
|
|
6231
|
+
"danger",
|
|
6232
|
+
"secondary"
|
|
6233
|
+
],
|
|
6234
|
+
"type": "string",
|
|
6235
|
+
"x-spec-enum-id": "6400710d5b71d6b0"
|
|
6236
|
+
},
|
|
6237
|
+
"description": {
|
|
6238
|
+
"description": "Action description",
|
|
5867
6239
|
"type": "string"
|
|
5868
6240
|
},
|
|
5869
|
-
"
|
|
5870
|
-
"description": "
|
|
5871
|
-
"format": "date-time",
|
|
6241
|
+
"icon": {
|
|
6242
|
+
"description": "Material icon name",
|
|
5872
6243
|
"type": "string"
|
|
5873
|
-
}
|
|
6244
|
+
},
|
|
6245
|
+
"link": {
|
|
6246
|
+
"description": "Action URL",
|
|
6247
|
+
"type": "string"
|
|
6248
|
+
},
|
|
6249
|
+
"title": {
|
|
6250
|
+
"description": "Action title",
|
|
6251
|
+
"type": "string"
|
|
6252
|
+
}
|
|
6253
|
+
},
|
|
6254
|
+
"required": [
|
|
6255
|
+
"description",
|
|
6256
|
+
"icon",
|
|
6257
|
+
"link",
|
|
6258
|
+
"title"
|
|
6259
|
+
],
|
|
6260
|
+
"type": "object"
|
|
6261
|
+
},
|
|
6262
|
+
"QuickHealth": {
|
|
6263
|
+
"description": "Serializer for quick health check response.",
|
|
6264
|
+
"properties": {
|
|
6265
|
+
"error": {
|
|
6266
|
+
"description": "Error message if health check failed",
|
|
6267
|
+
"type": "string"
|
|
6268
|
+
},
|
|
6269
|
+
"status": {
|
|
6270
|
+
"description": "Quick health status: ok or error",
|
|
6271
|
+
"type": "string"
|
|
6272
|
+
},
|
|
6273
|
+
"timestamp": {
|
|
6274
|
+
"description": "Timestamp of the health check",
|
|
6275
|
+
"format": "date-time",
|
|
6276
|
+
"type": "string"
|
|
6277
|
+
}
|
|
5874
6278
|
},
|
|
5875
6279
|
"required": [
|
|
5876
6280
|
"status",
|
|
@@ -5886,6 +6290,18 @@ export const OPENAPI_SCHEMA = {
|
|
|
5886
6290
|
"title": "Count",
|
|
5887
6291
|
"type": "integer"
|
|
5888
6292
|
},
|
|
6293
|
+
"has_more": {
|
|
6294
|
+
"default": false,
|
|
6295
|
+
"description": "Whether more results are available",
|
|
6296
|
+
"title": "Has More",
|
|
6297
|
+
"type": "boolean"
|
|
6298
|
+
},
|
|
6299
|
+
"offset": {
|
|
6300
|
+
"default": 0,
|
|
6301
|
+
"description": "Current offset for pagination",
|
|
6302
|
+
"title": "Offset",
|
|
6303
|
+
"type": "integer"
|
|
6304
|
+
},
|
|
5889
6305
|
"publishes": {
|
|
5890
6306
|
"description": "List of recent publishes",
|
|
5891
6307
|
"items": {
|
|
@@ -5909,6 +6325,48 @@ export const OPENAPI_SCHEMA = {
|
|
|
5909
6325
|
"title": "RecentPublishesSerializer",
|
|
5910
6326
|
"type": "object"
|
|
5911
6327
|
},
|
|
6328
|
+
"RecentUser": {
|
|
6329
|
+
"description": "Recent user serializer.",
|
|
6330
|
+
"properties": {
|
|
6331
|
+
"date_joined": {
|
|
6332
|
+
"type": "string"
|
|
6333
|
+
},
|
|
6334
|
+
"email": {
|
|
6335
|
+
"format": "email",
|
|
6336
|
+
"type": "string"
|
|
6337
|
+
},
|
|
6338
|
+
"id": {
|
|
6339
|
+
"type": "integer"
|
|
6340
|
+
},
|
|
6341
|
+
"is_active": {
|
|
6342
|
+
"type": "boolean"
|
|
6343
|
+
},
|
|
6344
|
+
"is_staff": {
|
|
6345
|
+
"type": "boolean"
|
|
6346
|
+
},
|
|
6347
|
+
"is_superuser": {
|
|
6348
|
+
"type": "boolean"
|
|
6349
|
+
},
|
|
6350
|
+
"last_login": {
|
|
6351
|
+
"nullable": true,
|
|
6352
|
+
"type": "string"
|
|
6353
|
+
},
|
|
6354
|
+
"username": {
|
|
6355
|
+
"type": "string"
|
|
6356
|
+
}
|
|
6357
|
+
},
|
|
6358
|
+
"required": [
|
|
6359
|
+
"date_joined",
|
|
6360
|
+
"email",
|
|
6361
|
+
"id",
|
|
6362
|
+
"is_active",
|
|
6363
|
+
"is_staff",
|
|
6364
|
+
"is_superuser",
|
|
6365
|
+
"last_login",
|
|
6366
|
+
"username"
|
|
6367
|
+
],
|
|
6368
|
+
"type": "object"
|
|
6369
|
+
},
|
|
5912
6370
|
"SendCampaignRequest": {
|
|
5913
6371
|
"description": "Simple serializer for sending campaign.",
|
|
5914
6372
|
"properties": {
|
|
@@ -5992,6 +6450,55 @@ export const OPENAPI_SCHEMA = {
|
|
|
5992
6450
|
],
|
|
5993
6451
|
"type": "object"
|
|
5994
6452
|
},
|
|
6453
|
+
"StatCard": {
|
|
6454
|
+
"description": "Serializer for dashboard statistics cards.\n\nMaps to StatCard Pydantic model.",
|
|
6455
|
+
"properties": {
|
|
6456
|
+
"change": {
|
|
6457
|
+
"description": "Change indicator (e.g., \u0027+12%\u0027)",
|
|
6458
|
+
"nullable": true,
|
|
6459
|
+
"type": "string"
|
|
6460
|
+
},
|
|
6461
|
+
"change_type": {
|
|
6462
|
+
"default": "neutral",
|
|
6463
|
+
"description": "Change type\n\n* `positive` - positive\n* `negative` - negative\n* `neutral` - neutral",
|
|
6464
|
+
"enum": [
|
|
6465
|
+
"positive",
|
|
6466
|
+
"negative",
|
|
6467
|
+
"neutral"
|
|
6468
|
+
],
|
|
6469
|
+
"type": "string",
|
|
6470
|
+
"x-spec-enum-id": "b21c1f8e6042dbef"
|
|
6471
|
+
},
|
|
6472
|
+
"color": {
|
|
6473
|
+
"default": "primary",
|
|
6474
|
+
"description": "Card color theme",
|
|
6475
|
+
"type": "string"
|
|
6476
|
+
},
|
|
6477
|
+
"description": {
|
|
6478
|
+
"description": "Additional description",
|
|
6479
|
+
"nullable": true,
|
|
6480
|
+
"type": "string"
|
|
6481
|
+
},
|
|
6482
|
+
"icon": {
|
|
6483
|
+
"description": "Material icon name",
|
|
6484
|
+
"type": "string"
|
|
6485
|
+
},
|
|
6486
|
+
"title": {
|
|
6487
|
+
"description": "Card title",
|
|
6488
|
+
"type": "string"
|
|
6489
|
+
},
|
|
6490
|
+
"value": {
|
|
6491
|
+
"description": "Main value to display",
|
|
6492
|
+
"type": "string"
|
|
6493
|
+
}
|
|
6494
|
+
},
|
|
6495
|
+
"required": [
|
|
6496
|
+
"icon",
|
|
6497
|
+
"title",
|
|
6498
|
+
"value"
|
|
6499
|
+
],
|
|
6500
|
+
"type": "object"
|
|
6501
|
+
},
|
|
5995
6502
|
"SubscribeRequest": {
|
|
5996
6503
|
"description": "Simple serializer for newsletter subscription.",
|
|
5997
6504
|
"properties": {
|
|
@@ -6045,6 +6552,134 @@ export const OPENAPI_SCHEMA = {
|
|
|
6045
6552
|
],
|
|
6046
6553
|
"type": "object"
|
|
6047
6554
|
},
|
|
6555
|
+
"SystemHealth": {
|
|
6556
|
+
"description": "Serializer for overall system health status.",
|
|
6557
|
+
"properties": {
|
|
6558
|
+
"components": {
|
|
6559
|
+
"description": "Health status of individual components",
|
|
6560
|
+
"items": {
|
|
6561
|
+
"$ref": "#/components/schemas/SystemHealthItem"
|
|
6562
|
+
},
|
|
6563
|
+
"type": "array"
|
|
6564
|
+
},
|
|
6565
|
+
"overall_health_percentage": {
|
|
6566
|
+
"description": "Overall health percentage",
|
|
6567
|
+
"maximum": 100,
|
|
6568
|
+
"minimum": 0,
|
|
6569
|
+
"type": "integer"
|
|
6570
|
+
},
|
|
6571
|
+
"overall_status": {
|
|
6572
|
+
"description": "Overall system health status\n\n* `healthy` - healthy\n* `warning` - warning\n* `error` - error\n* `unknown` - unknown",
|
|
6573
|
+
"enum": [
|
|
6574
|
+
"healthy",
|
|
6575
|
+
"warning",
|
|
6576
|
+
"error",
|
|
6577
|
+
"unknown"
|
|
6578
|
+
],
|
|
6579
|
+
"type": "string",
|
|
6580
|
+
"x-spec-enum-id": "4a4719b6db2b089e"
|
|
6581
|
+
},
|
|
6582
|
+
"timestamp": {
|
|
6583
|
+
"description": "Check timestamp (ISO format)",
|
|
6584
|
+
"type": "string"
|
|
6585
|
+
}
|
|
6586
|
+
},
|
|
6587
|
+
"required": [
|
|
6588
|
+
"components",
|
|
6589
|
+
"overall_health_percentage",
|
|
6590
|
+
"overall_status",
|
|
6591
|
+
"timestamp"
|
|
6592
|
+
],
|
|
6593
|
+
"type": "object"
|
|
6594
|
+
},
|
|
6595
|
+
"SystemHealthItem": {
|
|
6596
|
+
"description": "Serializer for system health status items.\n\nMaps to SystemHealthItem Pydantic model.",
|
|
6597
|
+
"properties": {
|
|
6598
|
+
"component": {
|
|
6599
|
+
"description": "Component name",
|
|
6600
|
+
"type": "string"
|
|
6601
|
+
},
|
|
6602
|
+
"description": {
|
|
6603
|
+
"description": "Status description",
|
|
6604
|
+
"type": "string"
|
|
6605
|
+
},
|
|
6606
|
+
"health_percentage": {
|
|
6607
|
+
"description": "Health percentage (0-100)",
|
|
6608
|
+
"maximum": 100,
|
|
6609
|
+
"minimum": 0,
|
|
6610
|
+
"nullable": true,
|
|
6611
|
+
"type": "integer"
|
|
6612
|
+
},
|
|
6613
|
+
"last_check": {
|
|
6614
|
+
"description": "Last check time (ISO format)",
|
|
6615
|
+
"type": "string"
|
|
6616
|
+
},
|
|
6617
|
+
"status": {
|
|
6618
|
+
"description": "Health status\n\n* `healthy` - healthy\n* `warning` - warning\n* `error` - error\n* `unknown` - unknown",
|
|
6619
|
+
"enum": [
|
|
6620
|
+
"healthy",
|
|
6621
|
+
"warning",
|
|
6622
|
+
"error",
|
|
6623
|
+
"unknown"
|
|
6624
|
+
],
|
|
6625
|
+
"type": "string",
|
|
6626
|
+
"x-spec-enum-id": "4a4719b6db2b089e"
|
|
6627
|
+
}
|
|
6628
|
+
},
|
|
6629
|
+
"required": [
|
|
6630
|
+
"component",
|
|
6631
|
+
"description",
|
|
6632
|
+
"last_check",
|
|
6633
|
+
"status"
|
|
6634
|
+
],
|
|
6635
|
+
"type": "object"
|
|
6636
|
+
},
|
|
6637
|
+
"SystemMetrics": {
|
|
6638
|
+
"description": "Serializer for system performance metrics.",
|
|
6639
|
+
"properties": {
|
|
6640
|
+
"cpu_usage": {
|
|
6641
|
+
"description": "CPU usage percentage",
|
|
6642
|
+
"format": "double",
|
|
6643
|
+
"type": "number"
|
|
6644
|
+
},
|
|
6645
|
+
"disk_usage": {
|
|
6646
|
+
"description": "Disk usage percentage",
|
|
6647
|
+
"format": "double",
|
|
6648
|
+
"type": "number"
|
|
6649
|
+
},
|
|
6650
|
+
"memory_usage": {
|
|
6651
|
+
"description": "Memory usage percentage",
|
|
6652
|
+
"format": "double",
|
|
6653
|
+
"type": "number"
|
|
6654
|
+
},
|
|
6655
|
+
"network_in": {
|
|
6656
|
+
"description": "Network incoming bandwidth",
|
|
6657
|
+
"type": "string"
|
|
6658
|
+
},
|
|
6659
|
+
"network_out": {
|
|
6660
|
+
"description": "Network outgoing bandwidth",
|
|
6661
|
+
"type": "string"
|
|
6662
|
+
},
|
|
6663
|
+
"response_time": {
|
|
6664
|
+
"description": "Average response time",
|
|
6665
|
+
"type": "string"
|
|
6666
|
+
},
|
|
6667
|
+
"uptime": {
|
|
6668
|
+
"description": "System uptime",
|
|
6669
|
+
"type": "string"
|
|
6670
|
+
}
|
|
6671
|
+
},
|
|
6672
|
+
"required": [
|
|
6673
|
+
"cpu_usage",
|
|
6674
|
+
"disk_usage",
|
|
6675
|
+
"memory_usage",
|
|
6676
|
+
"network_in",
|
|
6677
|
+
"network_out",
|
|
6678
|
+
"response_time",
|
|
6679
|
+
"uptime"
|
|
6680
|
+
],
|
|
6681
|
+
"type": "object"
|
|
6682
|
+
},
|
|
6048
6683
|
"TaskStatistics": {
|
|
6049
6684
|
"description": "Serializer for task statistics data.",
|
|
6050
6685
|
"properties": {
|
|
@@ -6284,6 +6919,97 @@ export const OPENAPI_SCHEMA = {
|
|
|
6284
6919
|
],
|
|
6285
6920
|
"type": "object"
|
|
6286
6921
|
},
|
|
6922
|
+
"URLPattern": {
|
|
6923
|
+
"description": "Serializer for single URL pattern.",
|
|
6924
|
+
"properties": {
|
|
6925
|
+
"full_name": {
|
|
6926
|
+
"description": "Full URL name with namespace (e.g., admin:index)",
|
|
6927
|
+
"nullable": true,
|
|
6928
|
+
"type": "string"
|
|
6929
|
+
},
|
|
6930
|
+
"methods": {
|
|
6931
|
+
"description": "Allowed HTTP methods",
|
|
6932
|
+
"items": {
|
|
6933
|
+
"type": "string"
|
|
6934
|
+
},
|
|
6935
|
+
"type": "array"
|
|
6936
|
+
},
|
|
6937
|
+
"module": {
|
|
6938
|
+
"description": "View module path",
|
|
6939
|
+
"nullable": true,
|
|
6940
|
+
"type": "string"
|
|
6941
|
+
},
|
|
6942
|
+
"name": {
|
|
6943
|
+
"description": "URL name (if defined)",
|
|
6944
|
+
"nullable": true,
|
|
6945
|
+
"type": "string"
|
|
6946
|
+
},
|
|
6947
|
+
"namespace": {
|
|
6948
|
+
"description": "URL namespace",
|
|
6949
|
+
"nullable": true,
|
|
6950
|
+
"type": "string"
|
|
6951
|
+
},
|
|
6952
|
+
"pattern": {
|
|
6953
|
+
"description": "URL pattern (e.g., ^api/users/(?P\u003cpk\u003e[^/.]+)/$)",
|
|
6954
|
+
"type": "string"
|
|
6955
|
+
},
|
|
6956
|
+
"view": {
|
|
6957
|
+
"description": "View function/class name",
|
|
6958
|
+
"nullable": true,
|
|
6959
|
+
"type": "string"
|
|
6960
|
+
},
|
|
6961
|
+
"view_class": {
|
|
6962
|
+
"description": "View class name (for CBV/ViewSets)",
|
|
6963
|
+
"nullable": true,
|
|
6964
|
+
"type": "string"
|
|
6965
|
+
}
|
|
6966
|
+
},
|
|
6967
|
+
"required": [
|
|
6968
|
+
"pattern"
|
|
6969
|
+
],
|
|
6970
|
+
"type": "object"
|
|
6971
|
+
},
|
|
6972
|
+
"URLsList": {
|
|
6973
|
+
"description": "Serializer for URLs list response.",
|
|
6974
|
+
"properties": {
|
|
6975
|
+
"base_url": {
|
|
6976
|
+
"description": "Base URL of the service",
|
|
6977
|
+
"type": "string"
|
|
6978
|
+
},
|
|
6979
|
+
"service": {
|
|
6980
|
+
"description": "Service name",
|
|
6981
|
+
"type": "string"
|
|
6982
|
+
},
|
|
6983
|
+
"status": {
|
|
6984
|
+
"description": "Status: success or error",
|
|
6985
|
+
"type": "string"
|
|
6986
|
+
},
|
|
6987
|
+
"total_urls": {
|
|
6988
|
+
"description": "Total number of registered URLs",
|
|
6989
|
+
"type": "integer"
|
|
6990
|
+
},
|
|
6991
|
+
"urls": {
|
|
6992
|
+
"description": "List of all registered URL patterns",
|
|
6993
|
+
"items": {
|
|
6994
|
+
"$ref": "#/components/schemas/URLPattern"
|
|
6995
|
+
},
|
|
6996
|
+
"type": "array"
|
|
6997
|
+
},
|
|
6998
|
+
"version": {
|
|
6999
|
+
"description": "Django-CFG version",
|
|
7000
|
+
"type": "string"
|
|
7001
|
+
}
|
|
7002
|
+
},
|
|
7003
|
+
"required": [
|
|
7004
|
+
"base_url",
|
|
7005
|
+
"service",
|
|
7006
|
+
"status",
|
|
7007
|
+
"total_urls",
|
|
7008
|
+
"urls",
|
|
7009
|
+
"version"
|
|
7010
|
+
],
|
|
7011
|
+
"type": "object"
|
|
7012
|
+
},
|
|
6287
7013
|
"Unsubscribe": {
|
|
6288
7014
|
"description": "Simple serializer for unsubscribe.",
|
|
6289
7015
|
"properties": {
|
|
@@ -6431,6 +7157,34 @@ export const OPENAPI_SCHEMA = {
|
|
|
6431
7157
|
},
|
|
6432
7158
|
"type": "object"
|
|
6433
7159
|
},
|
|
7160
|
+
"UserStatistics": {
|
|
7161
|
+
"description": "Serializer for user statistics.",
|
|
7162
|
+
"properties": {
|
|
7163
|
+
"active_users": {
|
|
7164
|
+
"description": "Active users (last 30 days)",
|
|
7165
|
+
"type": "integer"
|
|
7166
|
+
},
|
|
7167
|
+
"new_users": {
|
|
7168
|
+
"description": "New users (last 7 days)",
|
|
7169
|
+
"type": "integer"
|
|
7170
|
+
},
|
|
7171
|
+
"superusers": {
|
|
7172
|
+
"description": "Number of superusers",
|
|
7173
|
+
"type": "integer"
|
|
7174
|
+
},
|
|
7175
|
+
"total_users": {
|
|
7176
|
+
"description": "Total number of users",
|
|
7177
|
+
"type": "integer"
|
|
7178
|
+
}
|
|
7179
|
+
},
|
|
7180
|
+
"required": [
|
|
7181
|
+
"active_users",
|
|
7182
|
+
"new_users",
|
|
7183
|
+
"superusers",
|
|
7184
|
+
"total_users"
|
|
7185
|
+
],
|
|
7186
|
+
"type": "object"
|
|
7187
|
+
},
|
|
6434
7188
|
"VectorizationResult": {
|
|
6435
7189
|
"description": "Vectorization result serializer.",
|
|
6436
7190
|
"properties": {
|
|
@@ -6602,6 +7356,11 @@ export const OPENAPI_SCHEMA = {
|
|
|
6602
7356
|
"in": "cookie",
|
|
6603
7357
|
"name": "sessionid",
|
|
6604
7358
|
"type": "apiKey"
|
|
7359
|
+
},
|
|
7360
|
+
"jwtAuth": {
|
|
7361
|
+
"bearerFormat": "JWT",
|
|
7362
|
+
"scheme": "bearer",
|
|
7363
|
+
"type": "http"
|
|
6605
7364
|
}
|
|
6606
7365
|
}
|
|
6607
7366
|
},
|
|
@@ -6685,6 +7444,9 @@ export const OPENAPI_SCHEMA = {
|
|
|
6685
7444
|
}
|
|
6686
7445
|
},
|
|
6687
7446
|
"security": [
|
|
7447
|
+
{
|
|
7448
|
+
"jwtAuth": []
|
|
7449
|
+
},
|
|
6688
7450
|
{}
|
|
6689
7451
|
],
|
|
6690
7452
|
"tags": [
|
|
@@ -6750,6 +7512,9 @@ export const OPENAPI_SCHEMA = {
|
|
|
6750
7512
|
}
|
|
6751
7513
|
},
|
|
6752
7514
|
"security": [
|
|
7515
|
+
{
|
|
7516
|
+
"jwtAuth": []
|
|
7517
|
+
},
|
|
6753
7518
|
{}
|
|
6754
7519
|
],
|
|
6755
7520
|
"tags": [
|
|
@@ -6784,7 +7549,12 @@ export const OPENAPI_SCHEMA = {
|
|
|
6784
7549
|
"description": ""
|
|
6785
7550
|
}
|
|
6786
7551
|
},
|
|
6787
|
-
"
|
|
7552
|
+
"security": [
|
|
7553
|
+
{
|
|
7554
|
+
"jwtAuth": []
|
|
7555
|
+
}
|
|
7556
|
+
],
|
|
7557
|
+
"summary": "Get current user profile",
|
|
6788
7558
|
"tags": [
|
|
6789
7559
|
"User Profile"
|
|
6790
7560
|
],
|
|
@@ -6846,6 +7616,11 @@ export const OPENAPI_SCHEMA = {
|
|
|
6846
7616
|
"description": ""
|
|
6847
7617
|
}
|
|
6848
7618
|
},
|
|
7619
|
+
"security": [
|
|
7620
|
+
{
|
|
7621
|
+
"jwtAuth": []
|
|
7622
|
+
}
|
|
7623
|
+
],
|
|
6849
7624
|
"summary": "Upload user avatar",
|
|
6850
7625
|
"tags": [
|
|
6851
7626
|
"User Profile"
|
|
@@ -6920,6 +7695,11 @@ export const OPENAPI_SCHEMA = {
|
|
|
6920
7695
|
"description": ""
|
|
6921
7696
|
}
|
|
6922
7697
|
},
|
|
7698
|
+
"security": [
|
|
7699
|
+
{
|
|
7700
|
+
"jwtAuth": []
|
|
7701
|
+
}
|
|
7702
|
+
],
|
|
6923
7703
|
"summary": "Partial update user profile",
|
|
6924
7704
|
"tags": [
|
|
6925
7705
|
"User Profile"
|
|
@@ -6992,6 +7772,11 @@ export const OPENAPI_SCHEMA = {
|
|
|
6992
7772
|
"description": ""
|
|
6993
7773
|
}
|
|
6994
7774
|
},
|
|
7775
|
+
"security": [
|
|
7776
|
+
{
|
|
7777
|
+
"jwtAuth": []
|
|
7778
|
+
}
|
|
7779
|
+
],
|
|
6995
7780
|
"summary": "Partial update user profile",
|
|
6996
7781
|
"tags": [
|
|
6997
7782
|
"User Profile"
|
|
@@ -7066,6 +7851,11 @@ export const OPENAPI_SCHEMA = {
|
|
|
7066
7851
|
"description": ""
|
|
7067
7852
|
}
|
|
7068
7853
|
},
|
|
7854
|
+
"security": [
|
|
7855
|
+
{
|
|
7856
|
+
"jwtAuth": []
|
|
7857
|
+
}
|
|
7858
|
+
],
|
|
7069
7859
|
"summary": "Update user profile",
|
|
7070
7860
|
"tags": [
|
|
7071
7861
|
"User Profile"
|
|
@@ -7138,6 +7928,11 @@ export const OPENAPI_SCHEMA = {
|
|
|
7138
7928
|
"description": ""
|
|
7139
7929
|
}
|
|
7140
7930
|
},
|
|
7931
|
+
"security": [
|
|
7932
|
+
{
|
|
7933
|
+
"jwtAuth": []
|
|
7934
|
+
}
|
|
7935
|
+
],
|
|
7141
7936
|
"summary": "Update user profile",
|
|
7142
7937
|
"tags": [
|
|
7143
7938
|
"User Profile"
|
|
@@ -7189,48 +7984,20 @@ export const OPENAPI_SCHEMA = {
|
|
|
7189
7984
|
},
|
|
7190
7985
|
"/cfg/centrifugo/admin/api/monitor/channels/": {
|
|
7191
7986
|
"get": {
|
|
7192
|
-
"description": "
|
|
7987
|
+
"description": "Get statistics per channel.",
|
|
7193
7988
|
"operationId": "cfg_centrifugo_admin_api_monitor_channels_retrieve",
|
|
7194
|
-
"parameters": [
|
|
7195
|
-
{
|
|
7196
|
-
"description": "Statistics period in hours (default: 24)",
|
|
7197
|
-
"in": "query",
|
|
7198
|
-
"name": "hours",
|
|
7199
|
-
"schema": {
|
|
7200
|
-
"type": "integer"
|
|
7201
|
-
}
|
|
7202
|
-
}
|
|
7203
|
-
],
|
|
7204
7989
|
"responses": {
|
|
7205
7990
|
"200": {
|
|
7206
|
-
"
|
|
7207
|
-
"application/json": {
|
|
7208
|
-
"schema": {
|
|
7209
|
-
"$ref": "#/components/schemas/ChannelList"
|
|
7210
|
-
}
|
|
7211
|
-
}
|
|
7212
|
-
},
|
|
7213
|
-
"description": ""
|
|
7214
|
-
},
|
|
7215
|
-
"400": {
|
|
7216
|
-
"content": {
|
|
7217
|
-
"application/json": {
|
|
7218
|
-
"schema": {
|
|
7219
|
-
"description": "Invalid parameters"
|
|
7220
|
-
}
|
|
7221
|
-
}
|
|
7222
|
-
},
|
|
7223
|
-
"description": ""
|
|
7991
|
+
"description": "No response body"
|
|
7224
7992
|
}
|
|
7225
7993
|
},
|
|
7226
7994
|
"security": [
|
|
7227
7995
|
{
|
|
7228
|
-
"
|
|
7996
|
+
"jwtAuth": []
|
|
7229
7997
|
}
|
|
7230
7998
|
],
|
|
7231
|
-
"summary": "Get channel statistics",
|
|
7232
7999
|
"tags": [
|
|
7233
|
-
"
|
|
8000
|
+
"centrifugo"
|
|
7234
8001
|
],
|
|
7235
8002
|
"x-async-capable": false
|
|
7236
8003
|
}
|
|
@@ -7263,7 +8030,7 @@ export const OPENAPI_SCHEMA = {
|
|
|
7263
8030
|
},
|
|
7264
8031
|
"security": [
|
|
7265
8032
|
{
|
|
7266
|
-
"
|
|
8033
|
+
"jwtAuth": []
|
|
7267
8034
|
}
|
|
7268
8035
|
],
|
|
7269
8036
|
"summary": "Get Centrifugo health status",
|
|
@@ -7311,7 +8078,7 @@ export const OPENAPI_SCHEMA = {
|
|
|
7311
8078
|
},
|
|
7312
8079
|
"security": [
|
|
7313
8080
|
{
|
|
7314
|
-
"
|
|
8081
|
+
"jwtAuth": []
|
|
7315
8082
|
}
|
|
7316
8083
|
],
|
|
7317
8084
|
"summary": "Get overview statistics",
|
|
@@ -7341,6 +8108,22 @@ export const OPENAPI_SCHEMA = {
|
|
|
7341
8108
|
"schema": {
|
|
7342
8109
|
"type": "integer"
|
|
7343
8110
|
}
|
|
8111
|
+
},
|
|
8112
|
+
{
|
|
8113
|
+
"description": "Offset for pagination (default: 0)",
|
|
8114
|
+
"in": "query",
|
|
8115
|
+
"name": "offset",
|
|
8116
|
+
"schema": {
|
|
8117
|
+
"type": "integer"
|
|
8118
|
+
}
|
|
8119
|
+
},
|
|
8120
|
+
{
|
|
8121
|
+
"description": "Filter by status (success, failed, timeout, pending, partial)",
|
|
8122
|
+
"in": "query",
|
|
8123
|
+
"name": "status",
|
|
8124
|
+
"schema": {
|
|
8125
|
+
"type": "string"
|
|
8126
|
+
}
|
|
7344
8127
|
}
|
|
7345
8128
|
],
|
|
7346
8129
|
"responses": {
|
|
@@ -7367,7 +8150,7 @@ export const OPENAPI_SCHEMA = {
|
|
|
7367
8150
|
},
|
|
7368
8151
|
"security": [
|
|
7369
8152
|
{
|
|
7370
|
-
"
|
|
8153
|
+
"jwtAuth": []
|
|
7371
8154
|
}
|
|
7372
8155
|
],
|
|
7373
8156
|
"summary": "Get recent publishes",
|
|
@@ -7377,6 +8160,62 @@ export const OPENAPI_SCHEMA = {
|
|
|
7377
8160
|
"x-async-capable": false
|
|
7378
8161
|
}
|
|
7379
8162
|
},
|
|
8163
|
+
"/cfg/centrifugo/admin/api/monitor/timeline/": {
|
|
8164
|
+
"get": {
|
|
8165
|
+
"description": "Returns statistics grouped by channel.",
|
|
8166
|
+
"operationId": "cfg_centrifugo_admin_api_monitor_timeline_retrieve",
|
|
8167
|
+
"parameters": [
|
|
8168
|
+
{
|
|
8169
|
+
"description": "Statistics period in hours (default: 24)",
|
|
8170
|
+
"in": "query",
|
|
8171
|
+
"name": "hours",
|
|
8172
|
+
"schema": {
|
|
8173
|
+
"type": "integer"
|
|
8174
|
+
}
|
|
8175
|
+
},
|
|
8176
|
+
{
|
|
8177
|
+
"description": "Time interval: \u0027hour\u0027 or \u0027day\u0027 (default: hour)",
|
|
8178
|
+
"in": "query",
|
|
8179
|
+
"name": "interval",
|
|
8180
|
+
"schema": {
|
|
8181
|
+
"type": "string"
|
|
8182
|
+
}
|
|
8183
|
+
}
|
|
8184
|
+
],
|
|
8185
|
+
"responses": {
|
|
8186
|
+
"200": {
|
|
8187
|
+
"content": {
|
|
8188
|
+
"application/json": {
|
|
8189
|
+
"schema": {
|
|
8190
|
+
"$ref": "#/components/schemas/ChannelList"
|
|
8191
|
+
}
|
|
8192
|
+
}
|
|
8193
|
+
},
|
|
8194
|
+
"description": ""
|
|
8195
|
+
},
|
|
8196
|
+
"400": {
|
|
8197
|
+
"content": {
|
|
8198
|
+
"application/json": {
|
|
8199
|
+
"schema": {
|
|
8200
|
+
"description": "Invalid parameters"
|
|
8201
|
+
}
|
|
8202
|
+
}
|
|
8203
|
+
},
|
|
8204
|
+
"description": ""
|
|
8205
|
+
}
|
|
8206
|
+
},
|
|
8207
|
+
"security": [
|
|
8208
|
+
{
|
|
8209
|
+
"jwtAuth": []
|
|
8210
|
+
}
|
|
8211
|
+
],
|
|
8212
|
+
"summary": "Get channel statistics",
|
|
8213
|
+
"tags": [
|
|
8214
|
+
"Centrifugo Monitoring"
|
|
8215
|
+
],
|
|
8216
|
+
"x-async-capable": false
|
|
8217
|
+
}
|
|
8218
|
+
},
|
|
7380
8219
|
"/cfg/centrifugo/admin/api/server/auth/token/": {
|
|
7381
8220
|
"post": {
|
|
7382
8221
|
"description": "Returns JWT token and config for WebSocket connection to Centrifugo.",
|
|
@@ -7431,7 +8270,7 @@ export const OPENAPI_SCHEMA = {
|
|
|
7431
8270
|
},
|
|
7432
8271
|
"security": [
|
|
7433
8272
|
{
|
|
7434
|
-
"
|
|
8273
|
+
"jwtAuth": []
|
|
7435
8274
|
}
|
|
7436
8275
|
],
|
|
7437
8276
|
"summary": "Get connection token for dashboard",
|
|
@@ -7488,7 +8327,7 @@ export const OPENAPI_SCHEMA = {
|
|
|
7488
8327
|
},
|
|
7489
8328
|
"security": [
|
|
7490
8329
|
{
|
|
7491
|
-
"
|
|
8330
|
+
"jwtAuth": []
|
|
7492
8331
|
}
|
|
7493
8332
|
],
|
|
7494
8333
|
"summary": "List active channels",
|
|
@@ -7546,7 +8385,7 @@ export const OPENAPI_SCHEMA = {
|
|
|
7546
8385
|
},
|
|
7547
8386
|
"security": [
|
|
7548
8387
|
{
|
|
7549
|
-
"
|
|
8388
|
+
"jwtAuth": []
|
|
7550
8389
|
}
|
|
7551
8390
|
],
|
|
7552
8391
|
"summary": "Get channel history",
|
|
@@ -7584,7 +8423,7 @@ export const OPENAPI_SCHEMA = {
|
|
|
7584
8423
|
},
|
|
7585
8424
|
"security": [
|
|
7586
8425
|
{
|
|
7587
|
-
"
|
|
8426
|
+
"jwtAuth": []
|
|
7588
8427
|
}
|
|
7589
8428
|
],
|
|
7590
8429
|
"summary": "Get Centrifugo server info",
|
|
@@ -7642,7 +8481,7 @@ export const OPENAPI_SCHEMA = {
|
|
|
7642
8481
|
},
|
|
7643
8482
|
"security": [
|
|
7644
8483
|
{
|
|
7645
|
-
"
|
|
8484
|
+
"jwtAuth": []
|
|
7646
8485
|
}
|
|
7647
8486
|
],
|
|
7648
8487
|
"summary": "Get channel presence statistics",
|
|
@@ -7700,7 +8539,7 @@ export const OPENAPI_SCHEMA = {
|
|
|
7700
8539
|
},
|
|
7701
8540
|
"security": [
|
|
7702
8541
|
{
|
|
7703
|
-
"
|
|
8542
|
+
"jwtAuth": []
|
|
7704
8543
|
}
|
|
7705
8544
|
],
|
|
7706
8545
|
"summary": "Get channel presence",
|
|
@@ -7768,7 +8607,7 @@ export const OPENAPI_SCHEMA = {
|
|
|
7768
8607
|
},
|
|
7769
8608
|
"security": [
|
|
7770
8609
|
{
|
|
7771
|
-
"
|
|
8610
|
+
"jwtAuth": []
|
|
7772
8611
|
}
|
|
7773
8612
|
],
|
|
7774
8613
|
"summary": "Generate connection token",
|
|
@@ -7836,7 +8675,7 @@ export const OPENAPI_SCHEMA = {
|
|
|
7836
8675
|
},
|
|
7837
8676
|
"security": [
|
|
7838
8677
|
{
|
|
7839
|
-
"
|
|
8678
|
+
"jwtAuth": []
|
|
7840
8679
|
}
|
|
7841
8680
|
],
|
|
7842
8681
|
"summary": "Publish test message",
|
|
@@ -7904,7 +8743,7 @@ export const OPENAPI_SCHEMA = {
|
|
|
7904
8743
|
},
|
|
7905
8744
|
"security": [
|
|
7906
8745
|
{
|
|
7907
|
-
"
|
|
8746
|
+
"jwtAuth": []
|
|
7908
8747
|
}
|
|
7909
8748
|
],
|
|
7910
8749
|
"summary": "Publish with database logging",
|
|
@@ -7972,7 +8811,7 @@ export const OPENAPI_SCHEMA = {
|
|
|
7972
8811
|
},
|
|
7973
8812
|
"security": [
|
|
7974
8813
|
{
|
|
7975
|
-
"
|
|
8814
|
+
"jwtAuth": []
|
|
7976
8815
|
}
|
|
7977
8816
|
],
|
|
7978
8817
|
"summary": "Send manual ACK",
|
|
@@ -7984,48 +8823,20 @@ export const OPENAPI_SCHEMA = {
|
|
|
7984
8823
|
},
|
|
7985
8824
|
"/cfg/centrifugo/monitor/channels/": {
|
|
7986
8825
|
"get": {
|
|
7987
|
-
"description": "
|
|
8826
|
+
"description": "Get statistics per channel.",
|
|
7988
8827
|
"operationId": "cfg_centrifugo_monitor_channels_retrieve",
|
|
7989
|
-
"parameters": [
|
|
7990
|
-
{
|
|
7991
|
-
"description": "Statistics period in hours (default: 24)",
|
|
7992
|
-
"in": "query",
|
|
7993
|
-
"name": "hours",
|
|
7994
|
-
"schema": {
|
|
7995
|
-
"type": "integer"
|
|
7996
|
-
}
|
|
7997
|
-
}
|
|
7998
|
-
],
|
|
7999
8828
|
"responses": {
|
|
8000
8829
|
"200": {
|
|
8001
|
-
"
|
|
8002
|
-
"application/json": {
|
|
8003
|
-
"schema": {
|
|
8004
|
-
"$ref": "#/components/schemas/ChannelList"
|
|
8005
|
-
}
|
|
8006
|
-
}
|
|
8007
|
-
},
|
|
8008
|
-
"description": ""
|
|
8009
|
-
},
|
|
8010
|
-
"400": {
|
|
8011
|
-
"content": {
|
|
8012
|
-
"application/json": {
|
|
8013
|
-
"schema": {
|
|
8014
|
-
"description": "Invalid parameters"
|
|
8015
|
-
}
|
|
8016
|
-
}
|
|
8017
|
-
},
|
|
8018
|
-
"description": ""
|
|
8830
|
+
"description": "No response body"
|
|
8019
8831
|
}
|
|
8020
8832
|
},
|
|
8021
8833
|
"security": [
|
|
8022
8834
|
{
|
|
8023
|
-
"
|
|
8835
|
+
"jwtAuth": []
|
|
8024
8836
|
}
|
|
8025
8837
|
],
|
|
8026
|
-
"summary": "Get channel statistics",
|
|
8027
8838
|
"tags": [
|
|
8028
|
-
"
|
|
8839
|
+
"centrifugo"
|
|
8029
8840
|
],
|
|
8030
8841
|
"x-async-capable": false
|
|
8031
8842
|
}
|
|
@@ -8058,7 +8869,7 @@ export const OPENAPI_SCHEMA = {
|
|
|
8058
8869
|
},
|
|
8059
8870
|
"security": [
|
|
8060
8871
|
{
|
|
8061
|
-
"
|
|
8872
|
+
"jwtAuth": []
|
|
8062
8873
|
}
|
|
8063
8874
|
],
|
|
8064
8875
|
"summary": "Get Centrifugo health status",
|
|
@@ -8106,7 +8917,7 @@ export const OPENAPI_SCHEMA = {
|
|
|
8106
8917
|
},
|
|
8107
8918
|
"security": [
|
|
8108
8919
|
{
|
|
8109
|
-
"
|
|
8920
|
+
"jwtAuth": []
|
|
8110
8921
|
}
|
|
8111
8922
|
],
|
|
8112
8923
|
"summary": "Get overview statistics",
|
|
@@ -8136,6 +8947,22 @@ export const OPENAPI_SCHEMA = {
|
|
|
8136
8947
|
"schema": {
|
|
8137
8948
|
"type": "integer"
|
|
8138
8949
|
}
|
|
8950
|
+
},
|
|
8951
|
+
{
|
|
8952
|
+
"description": "Offset for pagination (default: 0)",
|
|
8953
|
+
"in": "query",
|
|
8954
|
+
"name": "offset",
|
|
8955
|
+
"schema": {
|
|
8956
|
+
"type": "integer"
|
|
8957
|
+
}
|
|
8958
|
+
},
|
|
8959
|
+
{
|
|
8960
|
+
"description": "Filter by status (success, failed, timeout, pending, partial)",
|
|
8961
|
+
"in": "query",
|
|
8962
|
+
"name": "status",
|
|
8963
|
+
"schema": {
|
|
8964
|
+
"type": "string"
|
|
8965
|
+
}
|
|
8139
8966
|
}
|
|
8140
8967
|
],
|
|
8141
8968
|
"responses": {
|
|
@@ -8162,7 +8989,7 @@ export const OPENAPI_SCHEMA = {
|
|
|
8162
8989
|
},
|
|
8163
8990
|
"security": [
|
|
8164
8991
|
{
|
|
8165
|
-
"
|
|
8992
|
+
"jwtAuth": []
|
|
8166
8993
|
}
|
|
8167
8994
|
],
|
|
8168
8995
|
"summary": "Get recent publishes",
|
|
@@ -8172,6 +8999,62 @@ export const OPENAPI_SCHEMA = {
|
|
|
8172
8999
|
"x-async-capable": false
|
|
8173
9000
|
}
|
|
8174
9001
|
},
|
|
9002
|
+
"/cfg/centrifugo/monitor/timeline/": {
|
|
9003
|
+
"get": {
|
|
9004
|
+
"description": "Returns statistics grouped by channel.",
|
|
9005
|
+
"operationId": "cfg_centrifugo_monitor_timeline_retrieve",
|
|
9006
|
+
"parameters": [
|
|
9007
|
+
{
|
|
9008
|
+
"description": "Statistics period in hours (default: 24)",
|
|
9009
|
+
"in": "query",
|
|
9010
|
+
"name": "hours",
|
|
9011
|
+
"schema": {
|
|
9012
|
+
"type": "integer"
|
|
9013
|
+
}
|
|
9014
|
+
},
|
|
9015
|
+
{
|
|
9016
|
+
"description": "Time interval: \u0027hour\u0027 or \u0027day\u0027 (default: hour)",
|
|
9017
|
+
"in": "query",
|
|
9018
|
+
"name": "interval",
|
|
9019
|
+
"schema": {
|
|
9020
|
+
"type": "string"
|
|
9021
|
+
}
|
|
9022
|
+
}
|
|
9023
|
+
],
|
|
9024
|
+
"responses": {
|
|
9025
|
+
"200": {
|
|
9026
|
+
"content": {
|
|
9027
|
+
"application/json": {
|
|
9028
|
+
"schema": {
|
|
9029
|
+
"$ref": "#/components/schemas/ChannelList"
|
|
9030
|
+
}
|
|
9031
|
+
}
|
|
9032
|
+
},
|
|
9033
|
+
"description": ""
|
|
9034
|
+
},
|
|
9035
|
+
"400": {
|
|
9036
|
+
"content": {
|
|
9037
|
+
"application/json": {
|
|
9038
|
+
"schema": {
|
|
9039
|
+
"description": "Invalid parameters"
|
|
9040
|
+
}
|
|
9041
|
+
}
|
|
9042
|
+
},
|
|
9043
|
+
"description": ""
|
|
9044
|
+
}
|
|
9045
|
+
},
|
|
9046
|
+
"security": [
|
|
9047
|
+
{
|
|
9048
|
+
"jwtAuth": []
|
|
9049
|
+
}
|
|
9050
|
+
],
|
|
9051
|
+
"summary": "Get channel statistics",
|
|
9052
|
+
"tags": [
|
|
9053
|
+
"Centrifugo Monitoring"
|
|
9054
|
+
],
|
|
9055
|
+
"x-async-capable": false
|
|
9056
|
+
}
|
|
9057
|
+
},
|
|
8175
9058
|
"/cfg/centrifugo/server/auth/token/": {
|
|
8176
9059
|
"post": {
|
|
8177
9060
|
"description": "Returns JWT token and config for WebSocket connection to Centrifugo.",
|
|
@@ -8226,7 +9109,7 @@ export const OPENAPI_SCHEMA = {
|
|
|
8226
9109
|
},
|
|
8227
9110
|
"security": [
|
|
8228
9111
|
{
|
|
8229
|
-
"
|
|
9112
|
+
"jwtAuth": []
|
|
8230
9113
|
}
|
|
8231
9114
|
],
|
|
8232
9115
|
"summary": "Get connection token for dashboard",
|
|
@@ -8283,7 +9166,7 @@ export const OPENAPI_SCHEMA = {
|
|
|
8283
9166
|
},
|
|
8284
9167
|
"security": [
|
|
8285
9168
|
{
|
|
8286
|
-
"
|
|
9169
|
+
"jwtAuth": []
|
|
8287
9170
|
}
|
|
8288
9171
|
],
|
|
8289
9172
|
"summary": "List active channels",
|
|
@@ -8341,7 +9224,7 @@ export const OPENAPI_SCHEMA = {
|
|
|
8341
9224
|
},
|
|
8342
9225
|
"security": [
|
|
8343
9226
|
{
|
|
8344
|
-
"
|
|
9227
|
+
"jwtAuth": []
|
|
8345
9228
|
}
|
|
8346
9229
|
],
|
|
8347
9230
|
"summary": "Get channel history",
|
|
@@ -8379,7 +9262,7 @@ export const OPENAPI_SCHEMA = {
|
|
|
8379
9262
|
},
|
|
8380
9263
|
"security": [
|
|
8381
9264
|
{
|
|
8382
|
-
"
|
|
9265
|
+
"jwtAuth": []
|
|
8383
9266
|
}
|
|
8384
9267
|
],
|
|
8385
9268
|
"summary": "Get Centrifugo server info",
|
|
@@ -8437,7 +9320,7 @@ export const OPENAPI_SCHEMA = {
|
|
|
8437
9320
|
},
|
|
8438
9321
|
"security": [
|
|
8439
9322
|
{
|
|
8440
|
-
"
|
|
9323
|
+
"jwtAuth": []
|
|
8441
9324
|
}
|
|
8442
9325
|
],
|
|
8443
9326
|
"summary": "Get channel presence statistics",
|
|
@@ -8495,7 +9378,7 @@ export const OPENAPI_SCHEMA = {
|
|
|
8495
9378
|
},
|
|
8496
9379
|
"security": [
|
|
8497
9380
|
{
|
|
8498
|
-
"
|
|
9381
|
+
"jwtAuth": []
|
|
8499
9382
|
}
|
|
8500
9383
|
],
|
|
8501
9384
|
"summary": "Get channel presence",
|
|
@@ -8563,7 +9446,7 @@ export const OPENAPI_SCHEMA = {
|
|
|
8563
9446
|
},
|
|
8564
9447
|
"security": [
|
|
8565
9448
|
{
|
|
8566
|
-
"
|
|
9449
|
+
"jwtAuth": []
|
|
8567
9450
|
}
|
|
8568
9451
|
],
|
|
8569
9452
|
"summary": "Generate connection token",
|
|
@@ -8631,7 +9514,7 @@ export const OPENAPI_SCHEMA = {
|
|
|
8631
9514
|
},
|
|
8632
9515
|
"security": [
|
|
8633
9516
|
{
|
|
8634
|
-
"
|
|
9517
|
+
"jwtAuth": []
|
|
8635
9518
|
}
|
|
8636
9519
|
],
|
|
8637
9520
|
"summary": "Publish test message",
|
|
@@ -8680,17 +9563,561 @@ export const OPENAPI_SCHEMA = {
|
|
|
8680
9563
|
"content": {
|
|
8681
9564
|
"application/json": {
|
|
8682
9565
|
"schema": {
|
|
8683
|
-
"description": "Invalid request"
|
|
9566
|
+
"description": "Invalid request"
|
|
9567
|
+
}
|
|
9568
|
+
}
|
|
9569
|
+
},
|
|
9570
|
+
"description": ""
|
|
9571
|
+
},
|
|
9572
|
+
"500": {
|
|
9573
|
+
"content": {
|
|
9574
|
+
"application/json": {
|
|
9575
|
+
"schema": {
|
|
9576
|
+
"description": "Server error"
|
|
9577
|
+
}
|
|
9578
|
+
}
|
|
9579
|
+
},
|
|
9580
|
+
"description": ""
|
|
9581
|
+
}
|
|
9582
|
+
},
|
|
9583
|
+
"security": [
|
|
9584
|
+
{
|
|
9585
|
+
"jwtAuth": []
|
|
9586
|
+
}
|
|
9587
|
+
],
|
|
9588
|
+
"summary": "Publish with database logging",
|
|
9589
|
+
"tags": [
|
|
9590
|
+
"Centrifugo Testing"
|
|
9591
|
+
],
|
|
9592
|
+
"x-async-capable": false
|
|
9593
|
+
}
|
|
9594
|
+
},
|
|
9595
|
+
"/cfg/centrifugo/testing/send-ack/": {
|
|
9596
|
+
"post": {
|
|
9597
|
+
"description": "Manually send ACK for a message to the wrapper. Pass message_id in request body.",
|
|
9598
|
+
"operationId": "cfg_centrifugo_testing_send_ack_create",
|
|
9599
|
+
"requestBody": {
|
|
9600
|
+
"content": {
|
|
9601
|
+
"application/json": {
|
|
9602
|
+
"schema": {
|
|
9603
|
+
"$ref": "#/components/schemas/ManualAckRequestRequest"
|
|
9604
|
+
}
|
|
9605
|
+
},
|
|
9606
|
+
"application/x-www-form-urlencoded": {
|
|
9607
|
+
"schema": {
|
|
9608
|
+
"$ref": "#/components/schemas/ManualAckRequestRequest"
|
|
9609
|
+
}
|
|
9610
|
+
},
|
|
9611
|
+
"multipart/form-data": {
|
|
9612
|
+
"schema": {
|
|
9613
|
+
"$ref": "#/components/schemas/ManualAckRequestRequest"
|
|
9614
|
+
}
|
|
9615
|
+
}
|
|
9616
|
+
},
|
|
9617
|
+
"required": true
|
|
9618
|
+
},
|
|
9619
|
+
"responses": {
|
|
9620
|
+
"200": {
|
|
9621
|
+
"content": {
|
|
9622
|
+
"application/json": {
|
|
9623
|
+
"schema": {
|
|
9624
|
+
"$ref": "#/components/schemas/ManualAckResponse"
|
|
9625
|
+
}
|
|
9626
|
+
}
|
|
9627
|
+
},
|
|
9628
|
+
"description": ""
|
|
9629
|
+
},
|
|
9630
|
+
"400": {
|
|
9631
|
+
"content": {
|
|
9632
|
+
"application/json": {
|
|
9633
|
+
"schema": {
|
|
9634
|
+
"description": "Invalid request"
|
|
9635
|
+
}
|
|
9636
|
+
}
|
|
9637
|
+
},
|
|
9638
|
+
"description": ""
|
|
9639
|
+
},
|
|
9640
|
+
"500": {
|
|
9641
|
+
"content": {
|
|
9642
|
+
"application/json": {
|
|
9643
|
+
"schema": {
|
|
9644
|
+
"description": "Server error"
|
|
9645
|
+
}
|
|
9646
|
+
}
|
|
9647
|
+
},
|
|
9648
|
+
"description": ""
|
|
9649
|
+
}
|
|
9650
|
+
},
|
|
9651
|
+
"security": [
|
|
9652
|
+
{
|
|
9653
|
+
"jwtAuth": []
|
|
9654
|
+
}
|
|
9655
|
+
],
|
|
9656
|
+
"summary": "Send manual ACK",
|
|
9657
|
+
"tags": [
|
|
9658
|
+
"Centrifugo Testing"
|
|
9659
|
+
],
|
|
9660
|
+
"x-async-capable": false
|
|
9661
|
+
}
|
|
9662
|
+
},
|
|
9663
|
+
"/cfg/dashboard/api/activity/actions/": {
|
|
9664
|
+
"get": {
|
|
9665
|
+
"description": "Retrieve quick action buttons for dashboard",
|
|
9666
|
+
"operationId": "cfg_dashboard_api_activity_actions_list",
|
|
9667
|
+
"responses": {
|
|
9668
|
+
"200": {
|
|
9669
|
+
"content": {
|
|
9670
|
+
"application/json": {
|
|
9671
|
+
"schema": {
|
|
9672
|
+
"items": {
|
|
9673
|
+
"$ref": "#/components/schemas/QuickAction"
|
|
9674
|
+
},
|
|
9675
|
+
"type": "array"
|
|
9676
|
+
}
|
|
9677
|
+
}
|
|
9678
|
+
},
|
|
9679
|
+
"description": ""
|
|
9680
|
+
}
|
|
9681
|
+
},
|
|
9682
|
+
"security": [
|
|
9683
|
+
{
|
|
9684
|
+
"cookieAuth": []
|
|
9685
|
+
},
|
|
9686
|
+
{
|
|
9687
|
+
"basicAuth": []
|
|
9688
|
+
}
|
|
9689
|
+
],
|
|
9690
|
+
"summary": "Get quick actions",
|
|
9691
|
+
"tags": [
|
|
9692
|
+
"Dashboard - Activity"
|
|
9693
|
+
],
|
|
9694
|
+
"x-async-capable": false
|
|
9695
|
+
}
|
|
9696
|
+
},
|
|
9697
|
+
"/cfg/dashboard/api/activity/recent/": {
|
|
9698
|
+
"get": {
|
|
9699
|
+
"description": "Retrieve recent system activity entries",
|
|
9700
|
+
"operationId": "cfg_dashboard_api_activity_recent_list",
|
|
9701
|
+
"parameters": [
|
|
9702
|
+
{
|
|
9703
|
+
"description": "Maximum number of entries to return",
|
|
9704
|
+
"in": "query",
|
|
9705
|
+
"name": "limit",
|
|
9706
|
+
"schema": {
|
|
9707
|
+
"default": 10,
|
|
9708
|
+
"type": "integer"
|
|
9709
|
+
}
|
|
9710
|
+
}
|
|
9711
|
+
],
|
|
9712
|
+
"responses": {
|
|
9713
|
+
"200": {
|
|
9714
|
+
"content": {
|
|
9715
|
+
"application/json": {
|
|
9716
|
+
"schema": {
|
|
9717
|
+
"items": {
|
|
9718
|
+
"$ref": "#/components/schemas/ActivityEntry"
|
|
9719
|
+
},
|
|
9720
|
+
"type": "array"
|
|
9721
|
+
}
|
|
9722
|
+
}
|
|
9723
|
+
},
|
|
9724
|
+
"description": ""
|
|
9725
|
+
}
|
|
9726
|
+
},
|
|
9727
|
+
"security": [
|
|
9728
|
+
{
|
|
9729
|
+
"cookieAuth": []
|
|
9730
|
+
},
|
|
9731
|
+
{
|
|
9732
|
+
"basicAuth": []
|
|
9733
|
+
}
|
|
9734
|
+
],
|
|
9735
|
+
"summary": "Get recent activity",
|
|
9736
|
+
"tags": [
|
|
9737
|
+
"Dashboard - Activity"
|
|
9738
|
+
],
|
|
9739
|
+
"x-async-capable": false
|
|
9740
|
+
}
|
|
9741
|
+
},
|
|
9742
|
+
"/cfg/dashboard/api/charts/activity/": {
|
|
9743
|
+
"get": {
|
|
9744
|
+
"description": "Retrieve user activity data for chart visualization",
|
|
9745
|
+
"operationId": "cfg_dashboard_api_charts_activity_retrieve",
|
|
9746
|
+
"parameters": [
|
|
9747
|
+
{
|
|
9748
|
+
"description": "Number of days to include",
|
|
9749
|
+
"in": "query",
|
|
9750
|
+
"name": "days",
|
|
9751
|
+
"schema": {
|
|
9752
|
+
"default": 7,
|
|
9753
|
+
"type": "integer"
|
|
9754
|
+
}
|
|
9755
|
+
}
|
|
9756
|
+
],
|
|
9757
|
+
"responses": {
|
|
9758
|
+
"200": {
|
|
9759
|
+
"content": {
|
|
9760
|
+
"application/json": {
|
|
9761
|
+
"schema": {
|
|
9762
|
+
"$ref": "#/components/schemas/ChartData"
|
|
9763
|
+
}
|
|
9764
|
+
}
|
|
9765
|
+
},
|
|
9766
|
+
"description": ""
|
|
9767
|
+
}
|
|
9768
|
+
},
|
|
9769
|
+
"security": [
|
|
9770
|
+
{
|
|
9771
|
+
"cookieAuth": []
|
|
9772
|
+
},
|
|
9773
|
+
{
|
|
9774
|
+
"basicAuth": []
|
|
9775
|
+
}
|
|
9776
|
+
],
|
|
9777
|
+
"summary": "Get user activity chart",
|
|
9778
|
+
"tags": [
|
|
9779
|
+
"Dashboard - Charts"
|
|
9780
|
+
],
|
|
9781
|
+
"x-async-capable": false
|
|
9782
|
+
}
|
|
9783
|
+
},
|
|
9784
|
+
"/cfg/dashboard/api/charts/recent-users/": {
|
|
9785
|
+
"get": {
|
|
9786
|
+
"description": "Retrieve list of recently registered users",
|
|
9787
|
+
"operationId": "cfg_dashboard_api_charts_recent_users_list",
|
|
9788
|
+
"parameters": [
|
|
9789
|
+
{
|
|
9790
|
+
"description": "Maximum number of users to return",
|
|
9791
|
+
"in": "query",
|
|
9792
|
+
"name": "limit",
|
|
9793
|
+
"schema": {
|
|
9794
|
+
"default": 10,
|
|
9795
|
+
"type": "integer"
|
|
9796
|
+
}
|
|
9797
|
+
}
|
|
9798
|
+
],
|
|
9799
|
+
"responses": {
|
|
9800
|
+
"200": {
|
|
9801
|
+
"content": {
|
|
9802
|
+
"application/json": {
|
|
9803
|
+
"schema": {
|
|
9804
|
+
"items": {
|
|
9805
|
+
"$ref": "#/components/schemas/RecentUser"
|
|
9806
|
+
},
|
|
9807
|
+
"type": "array"
|
|
9808
|
+
}
|
|
9809
|
+
}
|
|
9810
|
+
},
|
|
9811
|
+
"description": ""
|
|
9812
|
+
}
|
|
9813
|
+
},
|
|
9814
|
+
"security": [
|
|
9815
|
+
{
|
|
9816
|
+
"cookieAuth": []
|
|
9817
|
+
},
|
|
9818
|
+
{
|
|
9819
|
+
"basicAuth": []
|
|
9820
|
+
}
|
|
9821
|
+
],
|
|
9822
|
+
"summary": "Get recent users",
|
|
9823
|
+
"tags": [
|
|
9824
|
+
"Dashboard - Charts"
|
|
9825
|
+
],
|
|
9826
|
+
"x-async-capable": false
|
|
9827
|
+
}
|
|
9828
|
+
},
|
|
9829
|
+
"/cfg/dashboard/api/charts/registrations/": {
|
|
9830
|
+
"get": {
|
|
9831
|
+
"description": "Retrieve user registration data for chart visualization",
|
|
9832
|
+
"operationId": "cfg_dashboard_api_charts_registrations_retrieve",
|
|
9833
|
+
"parameters": [
|
|
9834
|
+
{
|
|
9835
|
+
"description": "Number of days to include",
|
|
9836
|
+
"in": "query",
|
|
9837
|
+
"name": "days",
|
|
9838
|
+
"schema": {
|
|
9839
|
+
"default": 7,
|
|
9840
|
+
"type": "integer"
|
|
9841
|
+
}
|
|
9842
|
+
}
|
|
9843
|
+
],
|
|
9844
|
+
"responses": {
|
|
9845
|
+
"200": {
|
|
9846
|
+
"content": {
|
|
9847
|
+
"application/json": {
|
|
9848
|
+
"schema": {
|
|
9849
|
+
"$ref": "#/components/schemas/ChartData"
|
|
9850
|
+
}
|
|
9851
|
+
}
|
|
9852
|
+
},
|
|
9853
|
+
"description": ""
|
|
9854
|
+
}
|
|
9855
|
+
},
|
|
9856
|
+
"security": [
|
|
9857
|
+
{
|
|
9858
|
+
"cookieAuth": []
|
|
9859
|
+
},
|
|
9860
|
+
{
|
|
9861
|
+
"basicAuth": []
|
|
9862
|
+
}
|
|
9863
|
+
],
|
|
9864
|
+
"summary": "Get user registration chart",
|
|
9865
|
+
"tags": [
|
|
9866
|
+
"Dashboard - Charts"
|
|
9867
|
+
],
|
|
9868
|
+
"x-async-capable": false
|
|
9869
|
+
}
|
|
9870
|
+
},
|
|
9871
|
+
"/cfg/dashboard/api/charts/tracker/": {
|
|
9872
|
+
"get": {
|
|
9873
|
+
"description": "Retrieve activity tracker data (GitHub-style contribution graph)",
|
|
9874
|
+
"operationId": "cfg_dashboard_api_charts_tracker_list",
|
|
9875
|
+
"parameters": [
|
|
9876
|
+
{
|
|
9877
|
+
"description": "Number of weeks to include",
|
|
9878
|
+
"in": "query",
|
|
9879
|
+
"name": "weeks",
|
|
9880
|
+
"schema": {
|
|
9881
|
+
"default": 52,
|
|
9882
|
+
"type": "integer"
|
|
9883
|
+
}
|
|
9884
|
+
}
|
|
9885
|
+
],
|
|
9886
|
+
"responses": {
|
|
9887
|
+
"200": {
|
|
9888
|
+
"content": {
|
|
9889
|
+
"application/json": {
|
|
9890
|
+
"schema": {
|
|
9891
|
+
"items": {
|
|
9892
|
+
"$ref": "#/components/schemas/ActivityTrackerDay"
|
|
9893
|
+
},
|
|
9894
|
+
"type": "array"
|
|
9895
|
+
}
|
|
9896
|
+
}
|
|
9897
|
+
},
|
|
9898
|
+
"description": ""
|
|
9899
|
+
}
|
|
9900
|
+
},
|
|
9901
|
+
"security": [
|
|
9902
|
+
{
|
|
9903
|
+
"cookieAuth": []
|
|
9904
|
+
},
|
|
9905
|
+
{
|
|
9906
|
+
"basicAuth": []
|
|
9907
|
+
}
|
|
9908
|
+
],
|
|
9909
|
+
"summary": "Get activity tracker",
|
|
9910
|
+
"tags": [
|
|
9911
|
+
"Dashboard - Charts"
|
|
9912
|
+
],
|
|
9913
|
+
"x-async-capable": false
|
|
9914
|
+
}
|
|
9915
|
+
},
|
|
9916
|
+
"/cfg/dashboard/api/commands/": {
|
|
9917
|
+
"get": {
|
|
9918
|
+
"description": "Retrieve all available Django management commands",
|
|
9919
|
+
"operationId": "cfg_dashboard_api_commands_list",
|
|
9920
|
+
"responses": {
|
|
9921
|
+
"200": {
|
|
9922
|
+
"content": {
|
|
9923
|
+
"application/json": {
|
|
9924
|
+
"schema": {
|
|
9925
|
+
"items": {
|
|
9926
|
+
"$ref": "#/components/schemas/Command"
|
|
9927
|
+
},
|
|
9928
|
+
"type": "array"
|
|
9929
|
+
}
|
|
9930
|
+
}
|
|
9931
|
+
},
|
|
9932
|
+
"description": ""
|
|
9933
|
+
}
|
|
9934
|
+
},
|
|
9935
|
+
"security": [
|
|
9936
|
+
{
|
|
9937
|
+
"cookieAuth": []
|
|
9938
|
+
},
|
|
9939
|
+
{
|
|
9940
|
+
"basicAuth": []
|
|
9941
|
+
}
|
|
9942
|
+
],
|
|
9943
|
+
"summary": "Get all commands",
|
|
9944
|
+
"tags": [
|
|
9945
|
+
"Dashboard - Commands"
|
|
9946
|
+
],
|
|
9947
|
+
"x-async-capable": false
|
|
9948
|
+
}
|
|
9949
|
+
},
|
|
9950
|
+
"/cfg/dashboard/api/commands/summary/": {
|
|
9951
|
+
"get": {
|
|
9952
|
+
"description": "Retrieve commands summary with statistics and categorization",
|
|
9953
|
+
"operationId": "cfg_dashboard_api_commands_summary_retrieve",
|
|
9954
|
+
"responses": {
|
|
9955
|
+
"200": {
|
|
9956
|
+
"content": {
|
|
9957
|
+
"application/json": {
|
|
9958
|
+
"schema": {
|
|
9959
|
+
"$ref": "#/components/schemas/CommandsSummary"
|
|
9960
|
+
}
|
|
9961
|
+
}
|
|
9962
|
+
},
|
|
9963
|
+
"description": ""
|
|
9964
|
+
}
|
|
9965
|
+
},
|
|
9966
|
+
"security": [
|
|
9967
|
+
{
|
|
9968
|
+
"cookieAuth": []
|
|
9969
|
+
},
|
|
9970
|
+
{
|
|
9971
|
+
"basicAuth": []
|
|
9972
|
+
}
|
|
9973
|
+
],
|
|
9974
|
+
"summary": "Get commands summary",
|
|
9975
|
+
"tags": [
|
|
9976
|
+
"Dashboard - Commands"
|
|
9977
|
+
],
|
|
9978
|
+
"x-async-capable": false
|
|
9979
|
+
}
|
|
9980
|
+
},
|
|
9981
|
+
"/cfg/dashboard/api/overview/overview/": {
|
|
9982
|
+
"get": {
|
|
9983
|
+
"description": "Retrieve complete dashboard data including stats, health, actions, and metrics",
|
|
9984
|
+
"operationId": "cfg_dashboard_api_overview_overview_retrieve",
|
|
9985
|
+
"responses": {
|
|
9986
|
+
"200": {
|
|
9987
|
+
"content": {
|
|
9988
|
+
"application/json": {
|
|
9989
|
+
"schema": {
|
|
9990
|
+
"$ref": "#/components/schemas/DashboardOverview"
|
|
9991
|
+
}
|
|
9992
|
+
}
|
|
9993
|
+
},
|
|
9994
|
+
"description": ""
|
|
9995
|
+
}
|
|
9996
|
+
},
|
|
9997
|
+
"security": [
|
|
9998
|
+
{
|
|
9999
|
+
"cookieAuth": []
|
|
10000
|
+
},
|
|
10001
|
+
{
|
|
10002
|
+
"basicAuth": []
|
|
10003
|
+
}
|
|
10004
|
+
],
|
|
10005
|
+
"summary": "Get dashboard overview",
|
|
10006
|
+
"tags": [
|
|
10007
|
+
"Dashboard - Overview"
|
|
10008
|
+
],
|
|
10009
|
+
"x-async-capable": false
|
|
10010
|
+
}
|
|
10011
|
+
},
|
|
10012
|
+
"/cfg/dashboard/api/statistics/apps/": {
|
|
10013
|
+
"get": {
|
|
10014
|
+
"description": "Retrieve statistics for all enabled django-cfg applications",
|
|
10015
|
+
"operationId": "cfg_dashboard_api_statistics_apps_list",
|
|
10016
|
+
"responses": {
|
|
10017
|
+
"200": {
|
|
10018
|
+
"content": {
|
|
10019
|
+
"application/json": {
|
|
10020
|
+
"schema": {
|
|
10021
|
+
"items": {
|
|
10022
|
+
"$ref": "#/components/schemas/AppStatistics"
|
|
10023
|
+
},
|
|
10024
|
+
"type": "array"
|
|
10025
|
+
}
|
|
10026
|
+
}
|
|
10027
|
+
},
|
|
10028
|
+
"description": ""
|
|
10029
|
+
}
|
|
10030
|
+
},
|
|
10031
|
+
"security": [
|
|
10032
|
+
{
|
|
10033
|
+
"cookieAuth": []
|
|
10034
|
+
},
|
|
10035
|
+
{
|
|
10036
|
+
"basicAuth": []
|
|
10037
|
+
}
|
|
10038
|
+
],
|
|
10039
|
+
"summary": "Get application statistics",
|
|
10040
|
+
"tags": [
|
|
10041
|
+
"Dashboard - Statistics"
|
|
10042
|
+
],
|
|
10043
|
+
"x-async-capable": false
|
|
10044
|
+
}
|
|
10045
|
+
},
|
|
10046
|
+
"/cfg/dashboard/api/statistics/cards/": {
|
|
10047
|
+
"get": {
|
|
10048
|
+
"description": "Retrieve dashboard statistics cards with key metrics",
|
|
10049
|
+
"operationId": "cfg_dashboard_api_statistics_cards_list",
|
|
10050
|
+
"responses": {
|
|
10051
|
+
"200": {
|
|
10052
|
+
"content": {
|
|
10053
|
+
"application/json": {
|
|
10054
|
+
"schema": {
|
|
10055
|
+
"items": {
|
|
10056
|
+
"$ref": "#/components/schemas/StatCard"
|
|
10057
|
+
},
|
|
10058
|
+
"type": "array"
|
|
10059
|
+
}
|
|
10060
|
+
}
|
|
10061
|
+
},
|
|
10062
|
+
"description": ""
|
|
10063
|
+
}
|
|
10064
|
+
},
|
|
10065
|
+
"security": [
|
|
10066
|
+
{
|
|
10067
|
+
"cookieAuth": []
|
|
10068
|
+
},
|
|
10069
|
+
{
|
|
10070
|
+
"basicAuth": []
|
|
10071
|
+
}
|
|
10072
|
+
],
|
|
10073
|
+
"summary": "Get statistics cards",
|
|
10074
|
+
"tags": [
|
|
10075
|
+
"Dashboard - Statistics"
|
|
10076
|
+
],
|
|
10077
|
+
"x-async-capable": false
|
|
10078
|
+
}
|
|
10079
|
+
},
|
|
10080
|
+
"/cfg/dashboard/api/statistics/users/": {
|
|
10081
|
+
"get": {
|
|
10082
|
+
"description": "Retrieve user-related statistics",
|
|
10083
|
+
"operationId": "cfg_dashboard_api_statistics_users_retrieve",
|
|
10084
|
+
"responses": {
|
|
10085
|
+
"200": {
|
|
10086
|
+
"content": {
|
|
10087
|
+
"application/json": {
|
|
10088
|
+
"schema": {
|
|
10089
|
+
"$ref": "#/components/schemas/UserStatistics"
|
|
8684
10090
|
}
|
|
8685
10091
|
}
|
|
8686
10092
|
},
|
|
8687
10093
|
"description": ""
|
|
10094
|
+
}
|
|
10095
|
+
},
|
|
10096
|
+
"security": [
|
|
10097
|
+
{
|
|
10098
|
+
"cookieAuth": []
|
|
8688
10099
|
},
|
|
8689
|
-
|
|
10100
|
+
{
|
|
10101
|
+
"basicAuth": []
|
|
10102
|
+
}
|
|
10103
|
+
],
|
|
10104
|
+
"summary": "Get user statistics",
|
|
10105
|
+
"tags": [
|
|
10106
|
+
"Dashboard - Statistics"
|
|
10107
|
+
],
|
|
10108
|
+
"x-async-capable": false
|
|
10109
|
+
}
|
|
10110
|
+
},
|
|
10111
|
+
"/cfg/dashboard/api/system/health/": {
|
|
10112
|
+
"get": {
|
|
10113
|
+
"description": "Retrieve overall system health including all component checks",
|
|
10114
|
+
"operationId": "cfg_dashboard_api_system_health_retrieve",
|
|
10115
|
+
"responses": {
|
|
10116
|
+
"200": {
|
|
8690
10117
|
"content": {
|
|
8691
10118
|
"application/json": {
|
|
8692
10119
|
"schema": {
|
|
8693
|
-
"
|
|
10120
|
+
"$ref": "#/components/schemas/SystemHealth"
|
|
8694
10121
|
}
|
|
8695
10122
|
}
|
|
8696
10123
|
},
|
|
@@ -8700,65 +10127,93 @@ export const OPENAPI_SCHEMA = {
|
|
|
8700
10127
|
"security": [
|
|
8701
10128
|
{
|
|
8702
10129
|
"cookieAuth": []
|
|
10130
|
+
},
|
|
10131
|
+
{
|
|
10132
|
+
"basicAuth": []
|
|
8703
10133
|
}
|
|
8704
10134
|
],
|
|
8705
|
-
"summary": "
|
|
10135
|
+
"summary": "Get system health status",
|
|
8706
10136
|
"tags": [
|
|
8707
|
-
"
|
|
10137
|
+
"Dashboard - System"
|
|
8708
10138
|
],
|
|
8709
10139
|
"x-async-capable": false
|
|
8710
10140
|
}
|
|
8711
10141
|
},
|
|
8712
|
-
"/cfg/
|
|
8713
|
-
"
|
|
8714
|
-
"description": "
|
|
8715
|
-
"operationId": "
|
|
8716
|
-
"requestBody": {
|
|
8717
|
-
"content": {
|
|
8718
|
-
"application/json": {
|
|
8719
|
-
"schema": {
|
|
8720
|
-
"$ref": "#/components/schemas/ManualAckRequestRequest"
|
|
8721
|
-
}
|
|
8722
|
-
},
|
|
8723
|
-
"application/x-www-form-urlencoded": {
|
|
8724
|
-
"schema": {
|
|
8725
|
-
"$ref": "#/components/schemas/ManualAckRequestRequest"
|
|
8726
|
-
}
|
|
8727
|
-
},
|
|
8728
|
-
"multipart/form-data": {
|
|
8729
|
-
"schema": {
|
|
8730
|
-
"$ref": "#/components/schemas/ManualAckRequestRequest"
|
|
8731
|
-
}
|
|
8732
|
-
}
|
|
8733
|
-
},
|
|
8734
|
-
"required": true
|
|
8735
|
-
},
|
|
10142
|
+
"/cfg/dashboard/api/system/metrics/": {
|
|
10143
|
+
"get": {
|
|
10144
|
+
"description": "Retrieve system performance metrics (CPU, memory, disk, etc.)",
|
|
10145
|
+
"operationId": "cfg_dashboard_api_system_metrics_retrieve",
|
|
8736
10146
|
"responses": {
|
|
8737
10147
|
"200": {
|
|
8738
10148
|
"content": {
|
|
8739
10149
|
"application/json": {
|
|
8740
10150
|
"schema": {
|
|
8741
|
-
"$ref": "#/components/schemas/
|
|
10151
|
+
"$ref": "#/components/schemas/SystemMetrics"
|
|
8742
10152
|
}
|
|
8743
10153
|
}
|
|
8744
10154
|
},
|
|
8745
10155
|
"description": ""
|
|
10156
|
+
}
|
|
10157
|
+
},
|
|
10158
|
+
"security": [
|
|
10159
|
+
{
|
|
10160
|
+
"cookieAuth": []
|
|
8746
10161
|
},
|
|
8747
|
-
|
|
10162
|
+
{
|
|
10163
|
+
"basicAuth": []
|
|
10164
|
+
}
|
|
10165
|
+
],
|
|
10166
|
+
"summary": "Get system metrics",
|
|
10167
|
+
"tags": [
|
|
10168
|
+
"Dashboard - System"
|
|
10169
|
+
],
|
|
10170
|
+
"x-async-capable": false
|
|
10171
|
+
}
|
|
10172
|
+
},
|
|
10173
|
+
"/cfg/dashboard/api/zones/": {
|
|
10174
|
+
"get": {
|
|
10175
|
+
"description": "Retrieve all OpenAPI zones/groups with their configuration",
|
|
10176
|
+
"operationId": "cfg_dashboard_api_zones_list",
|
|
10177
|
+
"responses": {
|
|
10178
|
+
"200": {
|
|
8748
10179
|
"content": {
|
|
8749
10180
|
"application/json": {
|
|
8750
10181
|
"schema": {
|
|
8751
|
-
"
|
|
10182
|
+
"items": {
|
|
10183
|
+
"$ref": "#/components/schemas/APIZone"
|
|
10184
|
+
},
|
|
10185
|
+
"type": "array"
|
|
8752
10186
|
}
|
|
8753
10187
|
}
|
|
8754
10188
|
},
|
|
8755
10189
|
"description": ""
|
|
10190
|
+
}
|
|
10191
|
+
},
|
|
10192
|
+
"security": [
|
|
10193
|
+
{
|
|
10194
|
+
"cookieAuth": []
|
|
8756
10195
|
},
|
|
8757
|
-
|
|
10196
|
+
{
|
|
10197
|
+
"basicAuth": []
|
|
10198
|
+
}
|
|
10199
|
+
],
|
|
10200
|
+
"summary": "Get all API zones",
|
|
10201
|
+
"tags": [
|
|
10202
|
+
"Dashboard - API Zones"
|
|
10203
|
+
],
|
|
10204
|
+
"x-async-capable": false
|
|
10205
|
+
}
|
|
10206
|
+
},
|
|
10207
|
+
"/cfg/dashboard/api/zones/summary/": {
|
|
10208
|
+
"get": {
|
|
10209
|
+
"description": "Retrieve zones summary with statistics",
|
|
10210
|
+
"operationId": "cfg_dashboard_api_zones_summary_retrieve",
|
|
10211
|
+
"responses": {
|
|
10212
|
+
"200": {
|
|
8758
10213
|
"content": {
|
|
8759
10214
|
"application/json": {
|
|
8760
10215
|
"schema": {
|
|
8761
|
-
"
|
|
10216
|
+
"$ref": "#/components/schemas/APIZonesSummary"
|
|
8762
10217
|
}
|
|
8763
10218
|
}
|
|
8764
10219
|
},
|
|
@@ -8768,11 +10223,14 @@ export const OPENAPI_SCHEMA = {
|
|
|
8768
10223
|
"security": [
|
|
8769
10224
|
{
|
|
8770
10225
|
"cookieAuth": []
|
|
10226
|
+
},
|
|
10227
|
+
{
|
|
10228
|
+
"basicAuth": []
|
|
8771
10229
|
}
|
|
8772
10230
|
],
|
|
8773
|
-
"summary": "
|
|
10231
|
+
"summary": "Get zones summary",
|
|
8774
10232
|
"tags": [
|
|
8775
|
-
"
|
|
10233
|
+
"Dashboard - API Zones"
|
|
8776
10234
|
],
|
|
8777
10235
|
"x-async-capable": false
|
|
8778
10236
|
}
|
|
@@ -8794,6 +10252,58 @@ export const OPENAPI_SCHEMA = {
|
|
|
8794
10252
|
}
|
|
8795
10253
|
},
|
|
8796
10254
|
"security": [
|
|
10255
|
+
{
|
|
10256
|
+
"jwtAuth": []
|
|
10257
|
+
},
|
|
10258
|
+
{}
|
|
10259
|
+
],
|
|
10260
|
+
"tags": [
|
|
10261
|
+
"endpoints"
|
|
10262
|
+
],
|
|
10263
|
+
"x-async-capable": false
|
|
10264
|
+
}
|
|
10265
|
+
},
|
|
10266
|
+
"/cfg/endpoints/urls/": {
|
|
10267
|
+
"get": {
|
|
10268
|
+
"description": "Return all registered URLs.",
|
|
10269
|
+
"operationId": "cfg_endpoints_urls_retrieve",
|
|
10270
|
+
"responses": {
|
|
10271
|
+
"200": {
|
|
10272
|
+
"content": {
|
|
10273
|
+
"application/json": {
|
|
10274
|
+
"schema": {
|
|
10275
|
+
"$ref": "#/components/schemas/URLsList"
|
|
10276
|
+
}
|
|
10277
|
+
}
|
|
10278
|
+
},
|
|
10279
|
+
"description": ""
|
|
10280
|
+
}
|
|
10281
|
+
},
|
|
10282
|
+
"security": [
|
|
10283
|
+
{
|
|
10284
|
+
"jwtAuth": []
|
|
10285
|
+
},
|
|
10286
|
+
{}
|
|
10287
|
+
],
|
|
10288
|
+
"tags": [
|
|
10289
|
+
"endpoints"
|
|
10290
|
+
],
|
|
10291
|
+
"x-async-capable": false
|
|
10292
|
+
}
|
|
10293
|
+
},
|
|
10294
|
+
"/cfg/endpoints/urls/compact/": {
|
|
10295
|
+
"get": {
|
|
10296
|
+
"description": "Return compact URL list.",
|
|
10297
|
+
"operationId": "cfg_endpoints_urls_compact_retrieve",
|
|
10298
|
+
"responses": {
|
|
10299
|
+
"200": {
|
|
10300
|
+
"description": "No response body"
|
|
10301
|
+
}
|
|
10302
|
+
},
|
|
10303
|
+
"security": [
|
|
10304
|
+
{
|
|
10305
|
+
"jwtAuth": []
|
|
10306
|
+
},
|
|
8797
10307
|
{}
|
|
8798
10308
|
],
|
|
8799
10309
|
"tags": [
|
|
@@ -8819,6 +10329,9 @@ export const OPENAPI_SCHEMA = {
|
|
|
8819
10329
|
}
|
|
8820
10330
|
},
|
|
8821
10331
|
"security": [
|
|
10332
|
+
{
|
|
10333
|
+
"jwtAuth": []
|
|
10334
|
+
},
|
|
8822
10335
|
{}
|
|
8823
10336
|
],
|
|
8824
10337
|
"tags": [
|
|
@@ -8844,6 +10357,9 @@ export const OPENAPI_SCHEMA = {
|
|
|
8844
10357
|
}
|
|
8845
10358
|
},
|
|
8846
10359
|
"security": [
|
|
10360
|
+
{
|
|
10361
|
+
"jwtAuth": []
|
|
10362
|
+
},
|
|
8847
10363
|
{}
|
|
8848
10364
|
],
|
|
8849
10365
|
"tags": [
|
|
@@ -8888,6 +10404,11 @@ export const OPENAPI_SCHEMA = {
|
|
|
8888
10404
|
"description": ""
|
|
8889
10405
|
}
|
|
8890
10406
|
},
|
|
10407
|
+
"security": [
|
|
10408
|
+
{
|
|
10409
|
+
"jwtAuth": []
|
|
10410
|
+
}
|
|
10411
|
+
],
|
|
8891
10412
|
"tags": [
|
|
8892
10413
|
"knowbase"
|
|
8893
10414
|
],
|
|
@@ -8928,6 +10449,11 @@ export const OPENAPI_SCHEMA = {
|
|
|
8928
10449
|
"description": ""
|
|
8929
10450
|
}
|
|
8930
10451
|
},
|
|
10452
|
+
"security": [
|
|
10453
|
+
{
|
|
10454
|
+
"jwtAuth": []
|
|
10455
|
+
}
|
|
10456
|
+
],
|
|
8931
10457
|
"tags": [
|
|
8932
10458
|
"knowbase"
|
|
8933
10459
|
],
|
|
@@ -8990,6 +10516,11 @@ export const OPENAPI_SCHEMA = {
|
|
|
8990
10516
|
"description": ""
|
|
8991
10517
|
}
|
|
8992
10518
|
},
|
|
10519
|
+
"security": [
|
|
10520
|
+
{
|
|
10521
|
+
"jwtAuth": []
|
|
10522
|
+
}
|
|
10523
|
+
],
|
|
8993
10524
|
"summary": "Process chat query with RAG",
|
|
8994
10525
|
"tags": [
|
|
8995
10526
|
"knowbase"
|
|
@@ -9018,6 +10549,11 @@ export const OPENAPI_SCHEMA = {
|
|
|
9018
10549
|
"description": "No response body"
|
|
9019
10550
|
}
|
|
9020
10551
|
},
|
|
10552
|
+
"security": [
|
|
10553
|
+
{
|
|
10554
|
+
"jwtAuth": []
|
|
10555
|
+
}
|
|
10556
|
+
],
|
|
9021
10557
|
"tags": [
|
|
9022
10558
|
"knowbase"
|
|
9023
10559
|
],
|
|
@@ -9050,6 +10586,11 @@ export const OPENAPI_SCHEMA = {
|
|
|
9050
10586
|
"description": ""
|
|
9051
10587
|
}
|
|
9052
10588
|
},
|
|
10589
|
+
"security": [
|
|
10590
|
+
{
|
|
10591
|
+
"jwtAuth": []
|
|
10592
|
+
}
|
|
10593
|
+
],
|
|
9053
10594
|
"tags": [
|
|
9054
10595
|
"knowbase"
|
|
9055
10596
|
],
|
|
@@ -9101,6 +10642,11 @@ export const OPENAPI_SCHEMA = {
|
|
|
9101
10642
|
"description": ""
|
|
9102
10643
|
}
|
|
9103
10644
|
},
|
|
10645
|
+
"security": [
|
|
10646
|
+
{
|
|
10647
|
+
"jwtAuth": []
|
|
10648
|
+
}
|
|
10649
|
+
],
|
|
9104
10650
|
"tags": [
|
|
9105
10651
|
"knowbase"
|
|
9106
10652
|
],
|
|
@@ -9153,6 +10699,11 @@ export const OPENAPI_SCHEMA = {
|
|
|
9153
10699
|
"description": ""
|
|
9154
10700
|
}
|
|
9155
10701
|
},
|
|
10702
|
+
"security": [
|
|
10703
|
+
{
|
|
10704
|
+
"jwtAuth": []
|
|
10705
|
+
}
|
|
10706
|
+
],
|
|
9156
10707
|
"tags": [
|
|
9157
10708
|
"knowbase"
|
|
9158
10709
|
],
|
|
@@ -9187,6 +10738,11 @@ export const OPENAPI_SCHEMA = {
|
|
|
9187
10738
|
"description": ""
|
|
9188
10739
|
}
|
|
9189
10740
|
},
|
|
10741
|
+
"security": [
|
|
10742
|
+
{
|
|
10743
|
+
"jwtAuth": []
|
|
10744
|
+
}
|
|
10745
|
+
],
|
|
9190
10746
|
"summary": "Get chat history",
|
|
9191
10747
|
"tags": [
|
|
9192
10748
|
"knowbase"
|
|
@@ -9238,6 +10794,11 @@ export const OPENAPI_SCHEMA = {
|
|
|
9238
10794
|
"description": ""
|
|
9239
10795
|
}
|
|
9240
10796
|
},
|
|
10797
|
+
"security": [
|
|
10798
|
+
{
|
|
10799
|
+
"jwtAuth": []
|
|
10800
|
+
}
|
|
10801
|
+
],
|
|
9241
10802
|
"summary": "List user documents",
|
|
9242
10803
|
"tags": [
|
|
9243
10804
|
"knowbase"
|
|
@@ -9308,6 +10869,11 @@ export const OPENAPI_SCHEMA = {
|
|
|
9308
10869
|
"description": "Rate limit exceeded"
|
|
9309
10870
|
}
|
|
9310
10871
|
},
|
|
10872
|
+
"security": [
|
|
10873
|
+
{
|
|
10874
|
+
"jwtAuth": []
|
|
10875
|
+
}
|
|
10876
|
+
],
|
|
9311
10877
|
"summary": "Upload new document",
|
|
9312
10878
|
"tags": [
|
|
9313
10879
|
"knowbase"
|
|
@@ -9331,6 +10897,11 @@ export const OPENAPI_SCHEMA = {
|
|
|
9331
10897
|
"description": ""
|
|
9332
10898
|
}
|
|
9333
10899
|
},
|
|
10900
|
+
"security": [
|
|
10901
|
+
{
|
|
10902
|
+
"jwtAuth": []
|
|
10903
|
+
}
|
|
10904
|
+
],
|
|
9334
10905
|
"summary": "Get processing statistics",
|
|
9335
10906
|
"tags": [
|
|
9336
10907
|
"knowbase"
|
|
@@ -9362,6 +10933,11 @@ export const OPENAPI_SCHEMA = {
|
|
|
9362
10933
|
"description": "Document not found"
|
|
9363
10934
|
}
|
|
9364
10935
|
},
|
|
10936
|
+
"security": [
|
|
10937
|
+
{
|
|
10938
|
+
"jwtAuth": []
|
|
10939
|
+
}
|
|
10940
|
+
],
|
|
9365
10941
|
"summary": "Delete document",
|
|
9366
10942
|
"tags": [
|
|
9367
10943
|
"knowbase"
|
|
@@ -9398,6 +10974,11 @@ export const OPENAPI_SCHEMA = {
|
|
|
9398
10974
|
"description": "Document not found"
|
|
9399
10975
|
}
|
|
9400
10976
|
},
|
|
10977
|
+
"security": [
|
|
10978
|
+
{
|
|
10979
|
+
"jwtAuth": []
|
|
10980
|
+
}
|
|
10981
|
+
],
|
|
9401
10982
|
"summary": "Get document details",
|
|
9402
10983
|
"tags": [
|
|
9403
10984
|
"knowbase"
|
|
@@ -9450,6 +11031,11 @@ export const OPENAPI_SCHEMA = {
|
|
|
9450
11031
|
"description": ""
|
|
9451
11032
|
}
|
|
9452
11033
|
},
|
|
11034
|
+
"security": [
|
|
11035
|
+
{
|
|
11036
|
+
"jwtAuth": []
|
|
11037
|
+
}
|
|
11038
|
+
],
|
|
9453
11039
|
"tags": [
|
|
9454
11040
|
"knowbase"
|
|
9455
11041
|
],
|
|
@@ -9502,6 +11088,11 @@ export const OPENAPI_SCHEMA = {
|
|
|
9502
11088
|
"description": ""
|
|
9503
11089
|
}
|
|
9504
11090
|
},
|
|
11091
|
+
"security": [
|
|
11092
|
+
{
|
|
11093
|
+
"jwtAuth": []
|
|
11094
|
+
}
|
|
11095
|
+
],
|
|
9505
11096
|
"tags": [
|
|
9506
11097
|
"knowbase"
|
|
9507
11098
|
],
|
|
@@ -9556,6 +11147,11 @@ export const OPENAPI_SCHEMA = {
|
|
|
9556
11147
|
"description": ""
|
|
9557
11148
|
}
|
|
9558
11149
|
},
|
|
11150
|
+
"security": [
|
|
11151
|
+
{
|
|
11152
|
+
"jwtAuth": []
|
|
11153
|
+
}
|
|
11154
|
+
],
|
|
9559
11155
|
"summary": "Reprocess document",
|
|
9560
11156
|
"tags": [
|
|
9561
11157
|
"knowbase"
|
|
@@ -9591,6 +11187,11 @@ export const OPENAPI_SCHEMA = {
|
|
|
9591
11187
|
"description": ""
|
|
9592
11188
|
}
|
|
9593
11189
|
},
|
|
11190
|
+
"security": [
|
|
11191
|
+
{
|
|
11192
|
+
"jwtAuth": []
|
|
11193
|
+
}
|
|
11194
|
+
],
|
|
9594
11195
|
"summary": "Get document processing status",
|
|
9595
11196
|
"tags": [
|
|
9596
11197
|
"knowbase"
|
|
@@ -9634,6 +11235,11 @@ export const OPENAPI_SCHEMA = {
|
|
|
9634
11235
|
"description": ""
|
|
9635
11236
|
}
|
|
9636
11237
|
},
|
|
11238
|
+
"security": [
|
|
11239
|
+
{
|
|
11240
|
+
"jwtAuth": []
|
|
11241
|
+
}
|
|
11242
|
+
],
|
|
9637
11243
|
"summary": "List user chat sessions",
|
|
9638
11244
|
"tags": [
|
|
9639
11245
|
"knowbase"
|
|
@@ -9674,6 +11280,11 @@ export const OPENAPI_SCHEMA = {
|
|
|
9674
11280
|
"description": ""
|
|
9675
11281
|
}
|
|
9676
11282
|
},
|
|
11283
|
+
"security": [
|
|
11284
|
+
{
|
|
11285
|
+
"jwtAuth": []
|
|
11286
|
+
}
|
|
11287
|
+
],
|
|
9677
11288
|
"summary": "Create new chat session",
|
|
9678
11289
|
"tags": [
|
|
9679
11290
|
"knowbase"
|
|
@@ -9702,6 +11313,11 @@ export const OPENAPI_SCHEMA = {
|
|
|
9702
11313
|
"description": "No response body"
|
|
9703
11314
|
}
|
|
9704
11315
|
},
|
|
11316
|
+
"security": [
|
|
11317
|
+
{
|
|
11318
|
+
"jwtAuth": []
|
|
11319
|
+
}
|
|
11320
|
+
],
|
|
9705
11321
|
"tags": [
|
|
9706
11322
|
"knowbase"
|
|
9707
11323
|
],
|
|
@@ -9734,6 +11350,11 @@ export const OPENAPI_SCHEMA = {
|
|
|
9734
11350
|
"description": ""
|
|
9735
11351
|
}
|
|
9736
11352
|
},
|
|
11353
|
+
"security": [
|
|
11354
|
+
{
|
|
11355
|
+
"jwtAuth": []
|
|
11356
|
+
}
|
|
11357
|
+
],
|
|
9737
11358
|
"tags": [
|
|
9738
11359
|
"knowbase"
|
|
9739
11360
|
],
|
|
@@ -9785,6 +11406,11 @@ export const OPENAPI_SCHEMA = {
|
|
|
9785
11406
|
"description": ""
|
|
9786
11407
|
}
|
|
9787
11408
|
},
|
|
11409
|
+
"security": [
|
|
11410
|
+
{
|
|
11411
|
+
"jwtAuth": []
|
|
11412
|
+
}
|
|
11413
|
+
],
|
|
9788
11414
|
"tags": [
|
|
9789
11415
|
"knowbase"
|
|
9790
11416
|
],
|
|
@@ -9836,6 +11462,11 @@ export const OPENAPI_SCHEMA = {
|
|
|
9836
11462
|
"description": ""
|
|
9837
11463
|
}
|
|
9838
11464
|
},
|
|
11465
|
+
"security": [
|
|
11466
|
+
{
|
|
11467
|
+
"jwtAuth": []
|
|
11468
|
+
}
|
|
11469
|
+
],
|
|
9839
11470
|
"tags": [
|
|
9840
11471
|
"knowbase"
|
|
9841
11472
|
],
|
|
@@ -9889,6 +11520,11 @@ export const OPENAPI_SCHEMA = {
|
|
|
9889
11520
|
"description": ""
|
|
9890
11521
|
}
|
|
9891
11522
|
},
|
|
11523
|
+
"security": [
|
|
11524
|
+
{
|
|
11525
|
+
"jwtAuth": []
|
|
11526
|
+
}
|
|
11527
|
+
],
|
|
9892
11528
|
"summary": "Activate chat session",
|
|
9893
11529
|
"tags": [
|
|
9894
11530
|
"knowbase"
|
|
@@ -9943,6 +11579,11 @@ export const OPENAPI_SCHEMA = {
|
|
|
9943
11579
|
"description": ""
|
|
9944
11580
|
}
|
|
9945
11581
|
},
|
|
11582
|
+
"security": [
|
|
11583
|
+
{
|
|
11584
|
+
"jwtAuth": []
|
|
11585
|
+
}
|
|
11586
|
+
],
|
|
9946
11587
|
"summary": "Archive chat session",
|
|
9947
11588
|
"tags": [
|
|
9948
11589
|
"knowbase"
|
|
@@ -9987,6 +11628,9 @@ export const OPENAPI_SCHEMA = {
|
|
|
9987
11628
|
}
|
|
9988
11629
|
},
|
|
9989
11630
|
"security": [
|
|
11631
|
+
{
|
|
11632
|
+
"jwtAuth": []
|
|
11633
|
+
},
|
|
9990
11634
|
{}
|
|
9991
11635
|
],
|
|
9992
11636
|
"summary": "List public categories",
|
|
@@ -10028,6 +11672,9 @@ export const OPENAPI_SCHEMA = {
|
|
|
10028
11672
|
}
|
|
10029
11673
|
},
|
|
10030
11674
|
"security": [
|
|
11675
|
+
{
|
|
11676
|
+
"jwtAuth": []
|
|
11677
|
+
},
|
|
10031
11678
|
{}
|
|
10032
11679
|
],
|
|
10033
11680
|
"summary": "Get public category details",
|
|
@@ -10090,6 +11737,9 @@ export const OPENAPI_SCHEMA = {
|
|
|
10090
11737
|
}
|
|
10091
11738
|
},
|
|
10092
11739
|
"security": [
|
|
11740
|
+
{
|
|
11741
|
+
"jwtAuth": []
|
|
11742
|
+
},
|
|
10093
11743
|
{}
|
|
10094
11744
|
],
|
|
10095
11745
|
"summary": "List public documents",
|
|
@@ -10131,6 +11781,9 @@ export const OPENAPI_SCHEMA = {
|
|
|
10131
11781
|
}
|
|
10132
11782
|
},
|
|
10133
11783
|
"security": [
|
|
11784
|
+
{
|
|
11785
|
+
"jwtAuth": []
|
|
11786
|
+
},
|
|
10134
11787
|
{}
|
|
10135
11788
|
],
|
|
10136
11789
|
"summary": "Get public document details",
|
|
@@ -10176,6 +11829,11 @@ export const OPENAPI_SCHEMA = {
|
|
|
10176
11829
|
"description": ""
|
|
10177
11830
|
}
|
|
10178
11831
|
},
|
|
11832
|
+
"security": [
|
|
11833
|
+
{
|
|
11834
|
+
"jwtAuth": []
|
|
11835
|
+
}
|
|
11836
|
+
],
|
|
10179
11837
|
"tags": [
|
|
10180
11838
|
"knowbase"
|
|
10181
11839
|
],
|
|
@@ -10238,6 +11896,11 @@ export const OPENAPI_SCHEMA = {
|
|
|
10238
11896
|
"description": "Rate limit exceeded"
|
|
10239
11897
|
}
|
|
10240
11898
|
},
|
|
11899
|
+
"security": [
|
|
11900
|
+
{
|
|
11901
|
+
"jwtAuth": []
|
|
11902
|
+
}
|
|
11903
|
+
],
|
|
10241
11904
|
"summary": "Upload and process archive",
|
|
10242
11905
|
"tags": [
|
|
10243
11906
|
"knowbase"
|
|
@@ -10276,6 +11939,11 @@ export const OPENAPI_SCHEMA = {
|
|
|
10276
11939
|
"description": ""
|
|
10277
11940
|
}
|
|
10278
11941
|
},
|
|
11942
|
+
"security": [
|
|
11943
|
+
{
|
|
11944
|
+
"jwtAuth": []
|
|
11945
|
+
}
|
|
11946
|
+
],
|
|
10279
11947
|
"summary": "Re-vectorize chunks",
|
|
10280
11948
|
"tags": [
|
|
10281
11949
|
"knowbase"
|
|
@@ -10299,6 +11967,11 @@ export const OPENAPI_SCHEMA = {
|
|
|
10299
11967
|
"description": ""
|
|
10300
11968
|
}
|
|
10301
11969
|
},
|
|
11970
|
+
"security": [
|
|
11971
|
+
{
|
|
11972
|
+
"jwtAuth": []
|
|
11973
|
+
}
|
|
11974
|
+
],
|
|
10302
11975
|
"summary": "Get archive statistics",
|
|
10303
11976
|
"tags": [
|
|
10304
11977
|
"knowbase"
|
|
@@ -10322,6 +11995,11 @@ export const OPENAPI_SCHEMA = {
|
|
|
10322
11995
|
"description": ""
|
|
10323
11996
|
}
|
|
10324
11997
|
},
|
|
11998
|
+
"security": [
|
|
11999
|
+
{
|
|
12000
|
+
"jwtAuth": []
|
|
12001
|
+
}
|
|
12002
|
+
],
|
|
10325
12003
|
"summary": "Get vectorization statistics",
|
|
10326
12004
|
"tags": [
|
|
10327
12005
|
"knowbase"
|
|
@@ -10350,6 +12028,11 @@ export const OPENAPI_SCHEMA = {
|
|
|
10350
12028
|
"description": "No response body"
|
|
10351
12029
|
}
|
|
10352
12030
|
},
|
|
12031
|
+
"security": [
|
|
12032
|
+
{
|
|
12033
|
+
"jwtAuth": []
|
|
12034
|
+
}
|
|
12035
|
+
],
|
|
10353
12036
|
"tags": [
|
|
10354
12037
|
"knowbase"
|
|
10355
12038
|
],
|
|
@@ -10382,6 +12065,11 @@ export const OPENAPI_SCHEMA = {
|
|
|
10382
12065
|
"description": ""
|
|
10383
12066
|
}
|
|
10384
12067
|
},
|
|
12068
|
+
"security": [
|
|
12069
|
+
{
|
|
12070
|
+
"jwtAuth": []
|
|
12071
|
+
}
|
|
12072
|
+
],
|
|
10385
12073
|
"tags": [
|
|
10386
12074
|
"knowbase"
|
|
10387
12075
|
],
|
|
@@ -10428,6 +12116,11 @@ export const OPENAPI_SCHEMA = {
|
|
|
10428
12116
|
"description": ""
|
|
10429
12117
|
}
|
|
10430
12118
|
},
|
|
12119
|
+
"security": [
|
|
12120
|
+
{
|
|
12121
|
+
"jwtAuth": []
|
|
12122
|
+
}
|
|
12123
|
+
],
|
|
10431
12124
|
"tags": [
|
|
10432
12125
|
"knowbase"
|
|
10433
12126
|
],
|
|
@@ -10475,6 +12168,11 @@ export const OPENAPI_SCHEMA = {
|
|
|
10475
12168
|
"description": ""
|
|
10476
12169
|
}
|
|
10477
12170
|
},
|
|
12171
|
+
"security": [
|
|
12172
|
+
{
|
|
12173
|
+
"jwtAuth": []
|
|
12174
|
+
}
|
|
12175
|
+
],
|
|
10478
12176
|
"tags": [
|
|
10479
12177
|
"knowbase"
|
|
10480
12178
|
],
|
|
@@ -10509,6 +12207,11 @@ export const OPENAPI_SCHEMA = {
|
|
|
10509
12207
|
"description": ""
|
|
10510
12208
|
}
|
|
10511
12209
|
},
|
|
12210
|
+
"security": [
|
|
12211
|
+
{
|
|
12212
|
+
"jwtAuth": []
|
|
12213
|
+
}
|
|
12214
|
+
],
|
|
10512
12215
|
"summary": "Get archive file tree",
|
|
10513
12216
|
"tags": [
|
|
10514
12217
|
"knowbase"
|
|
@@ -10562,6 +12265,11 @@ export const OPENAPI_SCHEMA = {
|
|
|
10562
12265
|
"description": ""
|
|
10563
12266
|
}
|
|
10564
12267
|
},
|
|
12268
|
+
"security": [
|
|
12269
|
+
{
|
|
12270
|
+
"jwtAuth": []
|
|
12271
|
+
}
|
|
12272
|
+
],
|
|
10565
12273
|
"summary": "Get archive items",
|
|
10566
12274
|
"tags": [
|
|
10567
12275
|
"knowbase"
|
|
@@ -10630,6 +12338,11 @@ export const OPENAPI_SCHEMA = {
|
|
|
10630
12338
|
"description": ""
|
|
10631
12339
|
}
|
|
10632
12340
|
},
|
|
12341
|
+
"security": [
|
|
12342
|
+
{
|
|
12343
|
+
"jwtAuth": []
|
|
12344
|
+
}
|
|
12345
|
+
],
|
|
10633
12346
|
"summary": "Search archive chunks",
|
|
10634
12347
|
"tags": [
|
|
10635
12348
|
"knowbase"
|
|
@@ -10673,6 +12386,11 @@ export const OPENAPI_SCHEMA = {
|
|
|
10673
12386
|
"description": ""
|
|
10674
12387
|
}
|
|
10675
12388
|
},
|
|
12389
|
+
"security": [
|
|
12390
|
+
{
|
|
12391
|
+
"jwtAuth": []
|
|
12392
|
+
}
|
|
12393
|
+
],
|
|
10676
12394
|
"tags": [
|
|
10677
12395
|
"knowbase"
|
|
10678
12396
|
],
|
|
@@ -10713,6 +12431,11 @@ export const OPENAPI_SCHEMA = {
|
|
|
10713
12431
|
"description": ""
|
|
10714
12432
|
}
|
|
10715
12433
|
},
|
|
12434
|
+
"security": [
|
|
12435
|
+
{
|
|
12436
|
+
"jwtAuth": []
|
|
12437
|
+
}
|
|
12438
|
+
],
|
|
10716
12439
|
"tags": [
|
|
10717
12440
|
"knowbase"
|
|
10718
12441
|
],
|
|
@@ -10740,6 +12463,11 @@ export const OPENAPI_SCHEMA = {
|
|
|
10740
12463
|
"description": "No response body"
|
|
10741
12464
|
}
|
|
10742
12465
|
},
|
|
12466
|
+
"security": [
|
|
12467
|
+
{
|
|
12468
|
+
"jwtAuth": []
|
|
12469
|
+
}
|
|
12470
|
+
],
|
|
10743
12471
|
"tags": [
|
|
10744
12472
|
"knowbase"
|
|
10745
12473
|
],
|
|
@@ -10772,6 +12500,11 @@ export const OPENAPI_SCHEMA = {
|
|
|
10772
12500
|
"description": ""
|
|
10773
12501
|
}
|
|
10774
12502
|
},
|
|
12503
|
+
"security": [
|
|
12504
|
+
{
|
|
12505
|
+
"jwtAuth": []
|
|
12506
|
+
}
|
|
12507
|
+
],
|
|
10775
12508
|
"tags": [
|
|
10776
12509
|
"knowbase"
|
|
10777
12510
|
],
|
|
@@ -10823,6 +12556,11 @@ export const OPENAPI_SCHEMA = {
|
|
|
10823
12556
|
"description": ""
|
|
10824
12557
|
}
|
|
10825
12558
|
},
|
|
12559
|
+
"security": [
|
|
12560
|
+
{
|
|
12561
|
+
"jwtAuth": []
|
|
12562
|
+
}
|
|
12563
|
+
],
|
|
10826
12564
|
"tags": [
|
|
10827
12565
|
"knowbase"
|
|
10828
12566
|
],
|
|
@@ -10875,6 +12613,11 @@ export const OPENAPI_SCHEMA = {
|
|
|
10875
12613
|
"description": ""
|
|
10876
12614
|
}
|
|
10877
12615
|
},
|
|
12616
|
+
"security": [
|
|
12617
|
+
{
|
|
12618
|
+
"jwtAuth": []
|
|
12619
|
+
}
|
|
12620
|
+
],
|
|
10878
12621
|
"tags": [
|
|
10879
12622
|
"knowbase"
|
|
10880
12623
|
],
|
|
@@ -10909,6 +12652,11 @@ export const OPENAPI_SCHEMA = {
|
|
|
10909
12652
|
"description": ""
|
|
10910
12653
|
}
|
|
10911
12654
|
},
|
|
12655
|
+
"security": [
|
|
12656
|
+
{
|
|
12657
|
+
"jwtAuth": []
|
|
12658
|
+
}
|
|
12659
|
+
],
|
|
10912
12660
|
"summary": "Get chunk context",
|
|
10913
12661
|
"tags": [
|
|
10914
12662
|
"knowbase"
|
|
@@ -10964,6 +12712,11 @@ export const OPENAPI_SCHEMA = {
|
|
|
10964
12712
|
"description": ""
|
|
10965
12713
|
}
|
|
10966
12714
|
},
|
|
12715
|
+
"security": [
|
|
12716
|
+
{
|
|
12717
|
+
"jwtAuth": []
|
|
12718
|
+
}
|
|
12719
|
+
],
|
|
10967
12720
|
"summary": "Vectorize chunk",
|
|
10968
12721
|
"tags": [
|
|
10969
12722
|
"knowbase"
|
|
@@ -11007,6 +12760,11 @@ export const OPENAPI_SCHEMA = {
|
|
|
11007
12760
|
"description": ""
|
|
11008
12761
|
}
|
|
11009
12762
|
},
|
|
12763
|
+
"security": [
|
|
12764
|
+
{
|
|
12765
|
+
"jwtAuth": []
|
|
12766
|
+
}
|
|
12767
|
+
],
|
|
11010
12768
|
"tags": [
|
|
11011
12769
|
"knowbase"
|
|
11012
12770
|
],
|
|
@@ -11047,6 +12805,11 @@ export const OPENAPI_SCHEMA = {
|
|
|
11047
12805
|
"description": ""
|
|
11048
12806
|
}
|
|
11049
12807
|
},
|
|
12808
|
+
"security": [
|
|
12809
|
+
{
|
|
12810
|
+
"jwtAuth": []
|
|
12811
|
+
}
|
|
12812
|
+
],
|
|
11050
12813
|
"tags": [
|
|
11051
12814
|
"knowbase"
|
|
11052
12815
|
],
|
|
@@ -11074,6 +12837,11 @@ export const OPENAPI_SCHEMA = {
|
|
|
11074
12837
|
"description": "No response body"
|
|
11075
12838
|
}
|
|
11076
12839
|
},
|
|
12840
|
+
"security": [
|
|
12841
|
+
{
|
|
12842
|
+
"jwtAuth": []
|
|
12843
|
+
}
|
|
12844
|
+
],
|
|
11077
12845
|
"tags": [
|
|
11078
12846
|
"knowbase"
|
|
11079
12847
|
],
|
|
@@ -11106,6 +12874,11 @@ export const OPENAPI_SCHEMA = {
|
|
|
11106
12874
|
"description": ""
|
|
11107
12875
|
}
|
|
11108
12876
|
},
|
|
12877
|
+
"security": [
|
|
12878
|
+
{
|
|
12879
|
+
"jwtAuth": []
|
|
12880
|
+
}
|
|
12881
|
+
],
|
|
11109
12882
|
"tags": [
|
|
11110
12883
|
"knowbase"
|
|
11111
12884
|
],
|
|
@@ -11157,6 +12930,11 @@ export const OPENAPI_SCHEMA = {
|
|
|
11157
12930
|
"description": ""
|
|
11158
12931
|
}
|
|
11159
12932
|
},
|
|
12933
|
+
"security": [
|
|
12934
|
+
{
|
|
12935
|
+
"jwtAuth": []
|
|
12936
|
+
}
|
|
12937
|
+
],
|
|
11160
12938
|
"tags": [
|
|
11161
12939
|
"knowbase"
|
|
11162
12940
|
],
|
|
@@ -11209,6 +12987,11 @@ export const OPENAPI_SCHEMA = {
|
|
|
11209
12987
|
"description": ""
|
|
11210
12988
|
}
|
|
11211
12989
|
},
|
|
12990
|
+
"security": [
|
|
12991
|
+
{
|
|
12992
|
+
"jwtAuth": []
|
|
12993
|
+
}
|
|
12994
|
+
],
|
|
11212
12995
|
"tags": [
|
|
11213
12996
|
"knowbase"
|
|
11214
12997
|
],
|
|
@@ -11261,6 +13044,11 @@ export const OPENAPI_SCHEMA = {
|
|
|
11261
13044
|
"description": ""
|
|
11262
13045
|
}
|
|
11263
13046
|
},
|
|
13047
|
+
"security": [
|
|
13048
|
+
{
|
|
13049
|
+
"jwtAuth": []
|
|
13050
|
+
}
|
|
13051
|
+
],
|
|
11264
13052
|
"summary": "Get item chunks",
|
|
11265
13053
|
"tags": [
|
|
11266
13054
|
"knowbase"
|
|
@@ -11296,6 +13084,11 @@ export const OPENAPI_SCHEMA = {
|
|
|
11296
13084
|
"description": ""
|
|
11297
13085
|
}
|
|
11298
13086
|
},
|
|
13087
|
+
"security": [
|
|
13088
|
+
{
|
|
13089
|
+
"jwtAuth": []
|
|
13090
|
+
}
|
|
13091
|
+
],
|
|
11299
13092
|
"summary": "Get item content",
|
|
11300
13093
|
"tags": [
|
|
11301
13094
|
"knowbase"
|
|
@@ -11340,6 +13133,9 @@ export const OPENAPI_SCHEMA = {
|
|
|
11340
13133
|
}
|
|
11341
13134
|
},
|
|
11342
13135
|
"security": [
|
|
13136
|
+
{
|
|
13137
|
+
"jwtAuth": []
|
|
13138
|
+
},
|
|
11343
13139
|
{}
|
|
11344
13140
|
],
|
|
11345
13141
|
"tags": [
|
|
@@ -11383,6 +13179,9 @@ export const OPENAPI_SCHEMA = {
|
|
|
11383
13179
|
}
|
|
11384
13180
|
},
|
|
11385
13181
|
"security": [
|
|
13182
|
+
{
|
|
13183
|
+
"jwtAuth": []
|
|
13184
|
+
},
|
|
11386
13185
|
{}
|
|
11387
13186
|
],
|
|
11388
13187
|
"tags": [
|
|
@@ -11454,6 +13253,9 @@ export const OPENAPI_SCHEMA = {
|
|
|
11454
13253
|
}
|
|
11455
13254
|
},
|
|
11456
13255
|
"security": [
|
|
13256
|
+
{
|
|
13257
|
+
"jwtAuth": []
|
|
13258
|
+
},
|
|
11457
13259
|
{}
|
|
11458
13260
|
],
|
|
11459
13261
|
"summary": "Submit Lead Form",
|
|
@@ -11484,6 +13286,9 @@ export const OPENAPI_SCHEMA = {
|
|
|
11484
13286
|
}
|
|
11485
13287
|
},
|
|
11486
13288
|
"security": [
|
|
13289
|
+
{
|
|
13290
|
+
"jwtAuth": []
|
|
13291
|
+
},
|
|
11487
13292
|
{}
|
|
11488
13293
|
],
|
|
11489
13294
|
"tags": [
|
|
@@ -11518,6 +13323,9 @@ export const OPENAPI_SCHEMA = {
|
|
|
11518
13323
|
}
|
|
11519
13324
|
},
|
|
11520
13325
|
"security": [
|
|
13326
|
+
{
|
|
13327
|
+
"jwtAuth": []
|
|
13328
|
+
},
|
|
11521
13329
|
{}
|
|
11522
13330
|
],
|
|
11523
13331
|
"tags": [
|
|
@@ -11571,6 +13379,9 @@ export const OPENAPI_SCHEMA = {
|
|
|
11571
13379
|
}
|
|
11572
13380
|
},
|
|
11573
13381
|
"security": [
|
|
13382
|
+
{
|
|
13383
|
+
"jwtAuth": []
|
|
13384
|
+
},
|
|
11574
13385
|
{}
|
|
11575
13386
|
],
|
|
11576
13387
|
"tags": [
|
|
@@ -11625,6 +13436,9 @@ export const OPENAPI_SCHEMA = {
|
|
|
11625
13436
|
}
|
|
11626
13437
|
},
|
|
11627
13438
|
"security": [
|
|
13439
|
+
{
|
|
13440
|
+
"jwtAuth": []
|
|
13441
|
+
},
|
|
11628
13442
|
{}
|
|
11629
13443
|
],
|
|
11630
13444
|
"tags": [
|
|
@@ -11679,6 +13493,11 @@ export const OPENAPI_SCHEMA = {
|
|
|
11679
13493
|
"description": ""
|
|
11680
13494
|
}
|
|
11681
13495
|
},
|
|
13496
|
+
"security": [
|
|
13497
|
+
{
|
|
13498
|
+
"jwtAuth": []
|
|
13499
|
+
}
|
|
13500
|
+
],
|
|
11682
13501
|
"summary": "Send Bulk Email",
|
|
11683
13502
|
"tags": [
|
|
11684
13503
|
"Bulk Email"
|
|
@@ -11722,6 +13541,11 @@ export const OPENAPI_SCHEMA = {
|
|
|
11722
13541
|
"description": ""
|
|
11723
13542
|
}
|
|
11724
13543
|
},
|
|
13544
|
+
"security": [
|
|
13545
|
+
{
|
|
13546
|
+
"jwtAuth": []
|
|
13547
|
+
}
|
|
13548
|
+
],
|
|
11725
13549
|
"summary": "List Newsletter Campaigns",
|
|
11726
13550
|
"tags": [
|
|
11727
13551
|
"Campaigns"
|
|
@@ -11763,6 +13587,11 @@ export const OPENAPI_SCHEMA = {
|
|
|
11763
13587
|
"description": ""
|
|
11764
13588
|
}
|
|
11765
13589
|
},
|
|
13590
|
+
"security": [
|
|
13591
|
+
{
|
|
13592
|
+
"jwtAuth": []
|
|
13593
|
+
}
|
|
13594
|
+
],
|
|
11766
13595
|
"summary": "Create Newsletter Campaign",
|
|
11767
13596
|
"tags": [
|
|
11768
13597
|
"Campaigns"
|
|
@@ -11826,6 +13655,11 @@ export const OPENAPI_SCHEMA = {
|
|
|
11826
13655
|
"description": ""
|
|
11827
13656
|
}
|
|
11828
13657
|
},
|
|
13658
|
+
"security": [
|
|
13659
|
+
{
|
|
13660
|
+
"jwtAuth": []
|
|
13661
|
+
}
|
|
13662
|
+
],
|
|
11829
13663
|
"summary": "Send Newsletter Campaign",
|
|
11830
13664
|
"tags": [
|
|
11831
13665
|
"Campaigns"
|
|
@@ -11852,6 +13686,11 @@ export const OPENAPI_SCHEMA = {
|
|
|
11852
13686
|
"description": "No response body"
|
|
11853
13687
|
}
|
|
11854
13688
|
},
|
|
13689
|
+
"security": [
|
|
13690
|
+
{
|
|
13691
|
+
"jwtAuth": []
|
|
13692
|
+
}
|
|
13693
|
+
],
|
|
11855
13694
|
"summary": "Delete Campaign",
|
|
11856
13695
|
"tags": [
|
|
11857
13696
|
"Campaigns"
|
|
@@ -11883,6 +13722,11 @@ export const OPENAPI_SCHEMA = {
|
|
|
11883
13722
|
"description": ""
|
|
11884
13723
|
}
|
|
11885
13724
|
},
|
|
13725
|
+
"security": [
|
|
13726
|
+
{
|
|
13727
|
+
"jwtAuth": []
|
|
13728
|
+
}
|
|
13729
|
+
],
|
|
11886
13730
|
"summary": "Get Campaign Details",
|
|
11887
13731
|
"tags": [
|
|
11888
13732
|
"Campaigns"
|
|
@@ -11933,6 +13777,11 @@ export const OPENAPI_SCHEMA = {
|
|
|
11933
13777
|
"description": ""
|
|
11934
13778
|
}
|
|
11935
13779
|
},
|
|
13780
|
+
"security": [
|
|
13781
|
+
{
|
|
13782
|
+
"jwtAuth": []
|
|
13783
|
+
}
|
|
13784
|
+
],
|
|
11936
13785
|
"tags": [
|
|
11937
13786
|
"newsletter"
|
|
11938
13787
|
],
|
|
@@ -11983,6 +13832,11 @@ export const OPENAPI_SCHEMA = {
|
|
|
11983
13832
|
"description": ""
|
|
11984
13833
|
}
|
|
11985
13834
|
},
|
|
13835
|
+
"security": [
|
|
13836
|
+
{
|
|
13837
|
+
"jwtAuth": []
|
|
13838
|
+
}
|
|
13839
|
+
],
|
|
11986
13840
|
"summary": "Update Campaign",
|
|
11987
13841
|
"tags": [
|
|
11988
13842
|
"Campaigns"
|
|
@@ -12026,6 +13880,11 @@ export const OPENAPI_SCHEMA = {
|
|
|
12026
13880
|
"description": ""
|
|
12027
13881
|
}
|
|
12028
13882
|
},
|
|
13883
|
+
"security": [
|
|
13884
|
+
{
|
|
13885
|
+
"jwtAuth": []
|
|
13886
|
+
}
|
|
13887
|
+
],
|
|
12029
13888
|
"summary": "List Email Logs",
|
|
12030
13889
|
"tags": [
|
|
12031
13890
|
"Logs"
|
|
@@ -12070,6 +13929,9 @@ export const OPENAPI_SCHEMA = {
|
|
|
12070
13929
|
}
|
|
12071
13930
|
},
|
|
12072
13931
|
"security": [
|
|
13932
|
+
{
|
|
13933
|
+
"jwtAuth": []
|
|
13934
|
+
},
|
|
12073
13935
|
{}
|
|
12074
13936
|
],
|
|
12075
13937
|
"summary": "List Active Newsletters",
|
|
@@ -12106,6 +13968,9 @@ export const OPENAPI_SCHEMA = {
|
|
|
12106
13968
|
}
|
|
12107
13969
|
},
|
|
12108
13970
|
"security": [
|
|
13971
|
+
{
|
|
13972
|
+
"jwtAuth": []
|
|
13973
|
+
},
|
|
12109
13974
|
{}
|
|
12110
13975
|
],
|
|
12111
13976
|
"summary": "Get Newsletter Details",
|
|
@@ -12172,6 +14037,9 @@ export const OPENAPI_SCHEMA = {
|
|
|
12172
14037
|
}
|
|
12173
14038
|
},
|
|
12174
14039
|
"security": [
|
|
14040
|
+
{
|
|
14041
|
+
"jwtAuth": []
|
|
14042
|
+
},
|
|
12175
14043
|
{}
|
|
12176
14044
|
],
|
|
12177
14045
|
"summary": "Subscribe to Newsletter",
|
|
@@ -12217,6 +14085,11 @@ export const OPENAPI_SCHEMA = {
|
|
|
12217
14085
|
"description": ""
|
|
12218
14086
|
}
|
|
12219
14087
|
},
|
|
14088
|
+
"security": [
|
|
14089
|
+
{
|
|
14090
|
+
"jwtAuth": []
|
|
14091
|
+
}
|
|
14092
|
+
],
|
|
12220
14093
|
"summary": "List User Subscriptions",
|
|
12221
14094
|
"tags": [
|
|
12222
14095
|
"Subscriptions"
|
|
@@ -12271,6 +14144,9 @@ export const OPENAPI_SCHEMA = {
|
|
|
12271
14144
|
}
|
|
12272
14145
|
},
|
|
12273
14146
|
"security": [
|
|
14147
|
+
{
|
|
14148
|
+
"jwtAuth": []
|
|
14149
|
+
},
|
|
12274
14150
|
{}
|
|
12275
14151
|
],
|
|
12276
14152
|
"summary": "Test Email Sending",
|
|
@@ -12316,6 +14192,9 @@ export const OPENAPI_SCHEMA = {
|
|
|
12316
14192
|
}
|
|
12317
14193
|
},
|
|
12318
14194
|
"security": [
|
|
14195
|
+
{
|
|
14196
|
+
"jwtAuth": []
|
|
14197
|
+
},
|
|
12319
14198
|
{}
|
|
12320
14199
|
],
|
|
12321
14200
|
"tags": [
|
|
@@ -12369,6 +14248,9 @@ export const OPENAPI_SCHEMA = {
|
|
|
12369
14248
|
}
|
|
12370
14249
|
},
|
|
12371
14250
|
"security": [
|
|
14251
|
+
{
|
|
14252
|
+
"jwtAuth": []
|
|
14253
|
+
},
|
|
12372
14254
|
{}
|
|
12373
14255
|
],
|
|
12374
14256
|
"summary": "Unsubscribe from Newsletter",
|
|
@@ -12413,6 +14295,9 @@ export const OPENAPI_SCHEMA = {
|
|
|
12413
14295
|
}
|
|
12414
14296
|
},
|
|
12415
14297
|
"security": [
|
|
14298
|
+
{
|
|
14299
|
+
"jwtAuth": []
|
|
14300
|
+
},
|
|
12416
14301
|
{}
|
|
12417
14302
|
],
|
|
12418
14303
|
"tags": [
|
|
@@ -12437,6 +14322,11 @@ export const OPENAPI_SCHEMA = {
|
|
|
12437
14322
|
"description": ""
|
|
12438
14323
|
}
|
|
12439
14324
|
},
|
|
14325
|
+
"security": [
|
|
14326
|
+
{
|
|
14327
|
+
"jwtAuth": []
|
|
14328
|
+
}
|
|
14329
|
+
],
|
|
12440
14330
|
"summary": "Get user balance",
|
|
12441
14331
|
"tags": [
|
|
12442
14332
|
"payments"
|
|
@@ -12463,6 +14353,11 @@ export const OPENAPI_SCHEMA = {
|
|
|
12463
14353
|
"description": ""
|
|
12464
14354
|
}
|
|
12465
14355
|
},
|
|
14356
|
+
"security": [
|
|
14357
|
+
{
|
|
14358
|
+
"jwtAuth": []
|
|
14359
|
+
}
|
|
14360
|
+
],
|
|
12466
14361
|
"summary": "Get available currencies",
|
|
12467
14362
|
"tags": [
|
|
12468
14363
|
"payments"
|
|
@@ -12506,6 +14401,11 @@ export const OPENAPI_SCHEMA = {
|
|
|
12506
14401
|
"description": ""
|
|
12507
14402
|
}
|
|
12508
14403
|
},
|
|
14404
|
+
"security": [
|
|
14405
|
+
{
|
|
14406
|
+
"jwtAuth": []
|
|
14407
|
+
}
|
|
14408
|
+
],
|
|
12509
14409
|
"tags": [
|
|
12510
14410
|
"payments"
|
|
12511
14411
|
],
|
|
@@ -12528,6 +14428,11 @@ export const OPENAPI_SCHEMA = {
|
|
|
12528
14428
|
"description": ""
|
|
12529
14429
|
}
|
|
12530
14430
|
},
|
|
14431
|
+
"security": [
|
|
14432
|
+
{
|
|
14433
|
+
"jwtAuth": []
|
|
14434
|
+
}
|
|
14435
|
+
],
|
|
12531
14436
|
"tags": [
|
|
12532
14437
|
"payments"
|
|
12533
14438
|
],
|
|
@@ -12560,6 +14465,11 @@ export const OPENAPI_SCHEMA = {
|
|
|
12560
14465
|
"description": ""
|
|
12561
14466
|
}
|
|
12562
14467
|
},
|
|
14468
|
+
"security": [
|
|
14469
|
+
{
|
|
14470
|
+
"jwtAuth": []
|
|
14471
|
+
}
|
|
14472
|
+
],
|
|
12563
14473
|
"tags": [
|
|
12564
14474
|
"payments"
|
|
12565
14475
|
],
|
|
@@ -12592,6 +14502,11 @@ export const OPENAPI_SCHEMA = {
|
|
|
12592
14502
|
"description": ""
|
|
12593
14503
|
}
|
|
12594
14504
|
},
|
|
14505
|
+
"security": [
|
|
14506
|
+
{
|
|
14507
|
+
"jwtAuth": []
|
|
14508
|
+
}
|
|
14509
|
+
],
|
|
12595
14510
|
"tags": [
|
|
12596
14511
|
"payments"
|
|
12597
14512
|
],
|
|
@@ -12624,6 +14539,11 @@ export const OPENAPI_SCHEMA = {
|
|
|
12624
14539
|
"description": ""
|
|
12625
14540
|
}
|
|
12626
14541
|
},
|
|
14542
|
+
"security": [
|
|
14543
|
+
{
|
|
14544
|
+
"jwtAuth": []
|
|
14545
|
+
}
|
|
14546
|
+
],
|
|
12627
14547
|
"tags": [
|
|
12628
14548
|
"payments"
|
|
12629
14549
|
],
|
|
@@ -12675,6 +14595,11 @@ export const OPENAPI_SCHEMA = {
|
|
|
12675
14595
|
"description": ""
|
|
12676
14596
|
}
|
|
12677
14597
|
},
|
|
14598
|
+
"security": [
|
|
14599
|
+
{
|
|
14600
|
+
"jwtAuth": []
|
|
14601
|
+
}
|
|
14602
|
+
],
|
|
12678
14603
|
"summary": "Get user transactions",
|
|
12679
14604
|
"tags": [
|
|
12680
14605
|
"payments"
|
|
@@ -12718,6 +14643,11 @@ export const OPENAPI_SCHEMA = {
|
|
|
12718
14643
|
"description": ""
|
|
12719
14644
|
}
|
|
12720
14645
|
},
|
|
14646
|
+
"security": [
|
|
14647
|
+
{
|
|
14648
|
+
"jwtAuth": []
|
|
14649
|
+
}
|
|
14650
|
+
],
|
|
12721
14651
|
"tags": [
|
|
12722
14652
|
"support"
|
|
12723
14653
|
],
|
|
@@ -12758,6 +14688,11 @@ export const OPENAPI_SCHEMA = {
|
|
|
12758
14688
|
"description": ""
|
|
12759
14689
|
}
|
|
12760
14690
|
},
|
|
14691
|
+
"security": [
|
|
14692
|
+
{
|
|
14693
|
+
"jwtAuth": []
|
|
14694
|
+
}
|
|
14695
|
+
],
|
|
12761
14696
|
"tags": [
|
|
12762
14697
|
"support"
|
|
12763
14698
|
],
|
|
@@ -12810,6 +14745,11 @@ export const OPENAPI_SCHEMA = {
|
|
|
12810
14745
|
"description": ""
|
|
12811
14746
|
}
|
|
12812
14747
|
},
|
|
14748
|
+
"security": [
|
|
14749
|
+
{
|
|
14750
|
+
"jwtAuth": []
|
|
14751
|
+
}
|
|
14752
|
+
],
|
|
12813
14753
|
"tags": [
|
|
12814
14754
|
"support"
|
|
12815
14755
|
],
|
|
@@ -12862,6 +14802,11 @@ export const OPENAPI_SCHEMA = {
|
|
|
12862
14802
|
"description": ""
|
|
12863
14803
|
}
|
|
12864
14804
|
},
|
|
14805
|
+
"security": [
|
|
14806
|
+
{
|
|
14807
|
+
"jwtAuth": []
|
|
14808
|
+
}
|
|
14809
|
+
],
|
|
12865
14810
|
"tags": [
|
|
12866
14811
|
"support"
|
|
12867
14812
|
],
|
|
@@ -12899,6 +14844,11 @@ export const OPENAPI_SCHEMA = {
|
|
|
12899
14844
|
"description": "No response body"
|
|
12900
14845
|
}
|
|
12901
14846
|
},
|
|
14847
|
+
"security": [
|
|
14848
|
+
{
|
|
14849
|
+
"jwtAuth": []
|
|
14850
|
+
}
|
|
14851
|
+
],
|
|
12902
14852
|
"tags": [
|
|
12903
14853
|
"support"
|
|
12904
14854
|
],
|
|
@@ -12941,6 +14891,11 @@ export const OPENAPI_SCHEMA = {
|
|
|
12941
14891
|
"description": ""
|
|
12942
14892
|
}
|
|
12943
14893
|
},
|
|
14894
|
+
"security": [
|
|
14895
|
+
{
|
|
14896
|
+
"jwtAuth": []
|
|
14897
|
+
}
|
|
14898
|
+
],
|
|
12944
14899
|
"tags": [
|
|
12945
14900
|
"support"
|
|
12946
14901
|
],
|
|
@@ -13002,6 +14957,11 @@ export const OPENAPI_SCHEMA = {
|
|
|
13002
14957
|
"description": ""
|
|
13003
14958
|
}
|
|
13004
14959
|
},
|
|
14960
|
+
"security": [
|
|
14961
|
+
{
|
|
14962
|
+
"jwtAuth": []
|
|
14963
|
+
}
|
|
14964
|
+
],
|
|
13005
14965
|
"tags": [
|
|
13006
14966
|
"support"
|
|
13007
14967
|
],
|
|
@@ -13064,6 +15024,11 @@ export const OPENAPI_SCHEMA = {
|
|
|
13064
15024
|
"description": ""
|
|
13065
15025
|
}
|
|
13066
15026
|
},
|
|
15027
|
+
"security": [
|
|
15028
|
+
{
|
|
15029
|
+
"jwtAuth": []
|
|
15030
|
+
}
|
|
15031
|
+
],
|
|
13067
15032
|
"tags": [
|
|
13068
15033
|
"support"
|
|
13069
15034
|
],
|
|
@@ -13091,6 +15056,11 @@ export const OPENAPI_SCHEMA = {
|
|
|
13091
15056
|
"description": "No response body"
|
|
13092
15057
|
}
|
|
13093
15058
|
},
|
|
15059
|
+
"security": [
|
|
15060
|
+
{
|
|
15061
|
+
"jwtAuth": []
|
|
15062
|
+
}
|
|
15063
|
+
],
|
|
13094
15064
|
"tags": [
|
|
13095
15065
|
"support"
|
|
13096
15066
|
],
|
|
@@ -13123,6 +15093,11 @@ export const OPENAPI_SCHEMA = {
|
|
|
13123
15093
|
"description": ""
|
|
13124
15094
|
}
|
|
13125
15095
|
},
|
|
15096
|
+
"security": [
|
|
15097
|
+
{
|
|
15098
|
+
"jwtAuth": []
|
|
15099
|
+
}
|
|
15100
|
+
],
|
|
13126
15101
|
"tags": [
|
|
13127
15102
|
"support"
|
|
13128
15103
|
],
|
|
@@ -13174,6 +15149,11 @@ export const OPENAPI_SCHEMA = {
|
|
|
13174
15149
|
"description": ""
|
|
13175
15150
|
}
|
|
13176
15151
|
},
|
|
15152
|
+
"security": [
|
|
15153
|
+
{
|
|
15154
|
+
"jwtAuth": []
|
|
15155
|
+
}
|
|
15156
|
+
],
|
|
13177
15157
|
"tags": [
|
|
13178
15158
|
"support"
|
|
13179
15159
|
],
|
|
@@ -13226,6 +15206,11 @@ export const OPENAPI_SCHEMA = {
|
|
|
13226
15206
|
"description": ""
|
|
13227
15207
|
}
|
|
13228
15208
|
},
|
|
15209
|
+
"security": [
|
|
15210
|
+
{
|
|
15211
|
+
"jwtAuth": []
|
|
15212
|
+
}
|
|
15213
|
+
],
|
|
13229
15214
|
"tags": [
|
|
13230
15215
|
"support"
|
|
13231
15216
|
],
|