@djangocfg/api 1.2.17 → 1.2.18
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 +1893 -1113
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +1616 -289
- package/dist/index.d.ts +1616 -289
- package/dist/index.mjs +1826 -1051
- package/dist/index.mjs.map +1 -1
- package/package.json +2 -2
- package/src/cfg/generated/_utils/fetchers/cfg__dashboard.ts +89 -0
- package/src/cfg/generated/_utils/fetchers/cfg__tasks.ts +9 -7
- package/src/cfg/generated/_utils/fetchers/index.ts +1 -0
- package/src/cfg/generated/_utils/hooks/cfg__dashboard.ts +77 -0
- package/src/cfg/generated/_utils/hooks/cfg__tasks.ts +9 -7
- package/src/cfg/generated/_utils/hooks/index.ts +1 -0
- package/src/cfg/generated/_utils/schemas/DashboardOverview.schema.ts +16 -8
- package/src/cfg/generated/_utils/schemas/TaskLogOverview.schema.ts +43 -0
- package/src/cfg/generated/_utils/schemas/TaskLogTimeline.schema.ts +28 -0
- package/src/cfg/generated/_utils/schemas/TaskLogTimelineItem.schema.ts +28 -0
- package/src/cfg/generated/_utils/schemas/TasksByQueue.schema.ts +24 -0
- package/src/cfg/generated/_utils/schemas/TasksByStatus.schema.ts +24 -0
- package/src/cfg/generated/_utils/schemas/index.ts +5 -0
- package/src/cfg/generated/cfg__dashboard/client.ts +48 -0
- package/src/cfg/generated/cfg__dashboard/index.ts +2 -0
- package/src/cfg/generated/cfg__dashboard/models.ts +0 -0
- package/src/cfg/generated/cfg__dashboard__dashboard_overview/models.ts +179 -9
- package/src/cfg/generated/cfg__support/client.ts +30 -12
- package/src/cfg/generated/cfg__tasks/client.ts +38 -31
- package/src/cfg/generated/cfg__tasks/models.ts +82 -0
- package/src/cfg/generated/client.ts +3 -0
- package/src/cfg/generated/index.ts +5 -0
- package/src/cfg/generated/schema.ts +656 -49
|
@@ -2407,53 +2407,63 @@ export const OPENAPI_SCHEMA = {
|
|
|
2407
2407
|
"type": "object"
|
|
2408
2408
|
},
|
|
2409
2409
|
"DashboardOverview": {
|
|
2410
|
-
"description": "Main serializer for dashboard overview endpoint.\nUses
|
|
2410
|
+
"description": "Main serializer for dashboard overview endpoint.\nUses typed serializers for proper OpenAPI schema generation.",
|
|
2411
2411
|
"properties": {
|
|
2412
|
+
"app_statistics": {
|
|
2413
|
+
"description": "Application statistics",
|
|
2414
|
+
"items": {
|
|
2415
|
+
"$ref": "#/components/schemas/AppStatistics"
|
|
2416
|
+
},
|
|
2417
|
+
"type": "array"
|
|
2418
|
+
},
|
|
2412
2419
|
"quick_actions": {
|
|
2413
2420
|
"description": "Quick action buttons",
|
|
2414
2421
|
"items": {
|
|
2415
|
-
"
|
|
2416
|
-
"type": "object"
|
|
2422
|
+
"$ref": "#/components/schemas/QuickAction"
|
|
2417
2423
|
},
|
|
2418
2424
|
"type": "array"
|
|
2419
2425
|
},
|
|
2420
2426
|
"recent_activity": {
|
|
2421
2427
|
"description": "Recent activity entries",
|
|
2422
2428
|
"items": {
|
|
2423
|
-
"
|
|
2424
|
-
"type": "object"
|
|
2429
|
+
"$ref": "#/components/schemas/ActivityEntry"
|
|
2425
2430
|
},
|
|
2426
2431
|
"type": "array"
|
|
2427
2432
|
},
|
|
2428
2433
|
"stat_cards": {
|
|
2429
2434
|
"description": "Dashboard statistics cards",
|
|
2430
2435
|
"items": {
|
|
2431
|
-
"
|
|
2432
|
-
"type": "object"
|
|
2436
|
+
"$ref": "#/components/schemas/StatCard"
|
|
2433
2437
|
},
|
|
2434
2438
|
"type": "array"
|
|
2435
2439
|
},
|
|
2436
2440
|
"system_health": {
|
|
2437
|
-
"
|
|
2438
|
-
|
|
2439
|
-
|
|
2440
|
-
|
|
2441
|
-
|
|
2442
|
-
"
|
|
2441
|
+
"allOf": [
|
|
2442
|
+
{
|
|
2443
|
+
"$ref": "#/components/schemas/SystemHealth"
|
|
2444
|
+
}
|
|
2445
|
+
],
|
|
2446
|
+
"description": "System health status"
|
|
2443
2447
|
},
|
|
2444
2448
|
"system_metrics": {
|
|
2445
|
-
"
|
|
2446
|
-
|
|
2447
|
-
|
|
2449
|
+
"allOf": [
|
|
2450
|
+
{
|
|
2451
|
+
"$ref": "#/components/schemas/SystemMetrics"
|
|
2452
|
+
}
|
|
2453
|
+
],
|
|
2454
|
+
"description": "System performance metrics"
|
|
2448
2455
|
},
|
|
2449
2456
|
"timestamp": {
|
|
2450
2457
|
"description": "Data timestamp (ISO format)",
|
|
2451
2458
|
"type": "string"
|
|
2452
2459
|
},
|
|
2453
2460
|
"user_statistics": {
|
|
2454
|
-
"
|
|
2455
|
-
|
|
2456
|
-
|
|
2461
|
+
"allOf": [
|
|
2462
|
+
{
|
|
2463
|
+
"$ref": "#/components/schemas/UserStatistics"
|
|
2464
|
+
}
|
|
2465
|
+
],
|
|
2466
|
+
"description": "User statistics"
|
|
2457
2467
|
}
|
|
2458
2468
|
},
|
|
2459
2469
|
"required": [
|
|
@@ -7059,6 +7069,48 @@ export const OPENAPI_SCHEMA = {
|
|
|
7059
7069
|
],
|
|
7060
7070
|
"type": "object"
|
|
7061
7071
|
},
|
|
7072
|
+
"TaskLogOverview": {
|
|
7073
|
+
"description": "Overview of task system with proper structure.\n\nProvides high-level statistics about the entire task system:\n- Total tasks count (all-time)\n- Active queues list\n- Recent failures (last 24h)\n- Tasks distribution by queue (as array)\n- Tasks distribution by status (as array)\n\nUsed by /cfg/tasks/logs/overview/ endpoint.",
|
|
7074
|
+
"properties": {
|
|
7075
|
+
"active_queues": {
|
|
7076
|
+
"description": "List of active queue names",
|
|
7077
|
+
"items": {
|
|
7078
|
+
"type": "string"
|
|
7079
|
+
},
|
|
7080
|
+
"type": "array"
|
|
7081
|
+
},
|
|
7082
|
+
"recent_failures": {
|
|
7083
|
+
"description": "Failed tasks in last 24 hours",
|
|
7084
|
+
"type": "integer"
|
|
7085
|
+
},
|
|
7086
|
+
"tasks_by_queue": {
|
|
7087
|
+
"description": "Tasks grouped by queue name",
|
|
7088
|
+
"items": {
|
|
7089
|
+
"$ref": "#/components/schemas/TasksByQueue"
|
|
7090
|
+
},
|
|
7091
|
+
"type": "array"
|
|
7092
|
+
},
|
|
7093
|
+
"tasks_by_status": {
|
|
7094
|
+
"description": "Tasks grouped by status",
|
|
7095
|
+
"items": {
|
|
7096
|
+
"$ref": "#/components/schemas/TasksByStatus"
|
|
7097
|
+
},
|
|
7098
|
+
"type": "array"
|
|
7099
|
+
},
|
|
7100
|
+
"total_tasks": {
|
|
7101
|
+
"description": "Total number of tasks all-time",
|
|
7102
|
+
"type": "integer"
|
|
7103
|
+
}
|
|
7104
|
+
},
|
|
7105
|
+
"required": [
|
|
7106
|
+
"active_queues",
|
|
7107
|
+
"recent_failures",
|
|
7108
|
+
"tasks_by_queue",
|
|
7109
|
+
"tasks_by_status",
|
|
7110
|
+
"total_tasks"
|
|
7111
|
+
],
|
|
7112
|
+
"type": "object"
|
|
7113
|
+
},
|
|
7062
7114
|
"TaskLogStats": {
|
|
7063
7115
|
"description": "Statistics serializer for task metrics.\n\nNot tied to a model - used for aggregated data.",
|
|
7064
7116
|
"properties": {
|
|
@@ -7108,6 +7160,106 @@ export const OPENAPI_SCHEMA = {
|
|
|
7108
7160
|
],
|
|
7109
7161
|
"type": "object"
|
|
7110
7162
|
},
|
|
7163
|
+
"TaskLogTimeline": {
|
|
7164
|
+
"description": "Timeline response wrapper.\n\nReturns timeline data as array of time-bucketed statistics.\nUsed by /cfg/tasks/logs/timeline/ endpoint.",
|
|
7165
|
+
"properties": {
|
|
7166
|
+
"data": {
|
|
7167
|
+
"description": "Timeline data points",
|
|
7168
|
+
"items": {
|
|
7169
|
+
"$ref": "#/components/schemas/TaskLogTimelineItem"
|
|
7170
|
+
},
|
|
7171
|
+
"type": "array"
|
|
7172
|
+
},
|
|
7173
|
+
"interval": {
|
|
7174
|
+
"description": "Time bucket interval (hour/day)",
|
|
7175
|
+
"type": "string"
|
|
7176
|
+
},
|
|
7177
|
+
"period_hours": {
|
|
7178
|
+
"description": "Time period covered in hours",
|
|
7179
|
+
"type": "integer"
|
|
7180
|
+
}
|
|
7181
|
+
},
|
|
7182
|
+
"required": [
|
|
7183
|
+
"data",
|
|
7184
|
+
"interval",
|
|
7185
|
+
"period_hours"
|
|
7186
|
+
],
|
|
7187
|
+
"type": "object"
|
|
7188
|
+
},
|
|
7189
|
+
"TaskLogTimelineItem": {
|
|
7190
|
+
"description": "Single timeline data point.\n\nRepresents aggregated task statistics for a specific time period.",
|
|
7191
|
+
"properties": {
|
|
7192
|
+
"avg_duration_ms": {
|
|
7193
|
+
"description": "Average duration in milliseconds",
|
|
7194
|
+
"format": "double",
|
|
7195
|
+
"type": "number"
|
|
7196
|
+
},
|
|
7197
|
+
"failed": {
|
|
7198
|
+
"description": "Failed tasks",
|
|
7199
|
+
"type": "integer"
|
|
7200
|
+
},
|
|
7201
|
+
"in_progress": {
|
|
7202
|
+
"description": "Tasks currently in progress",
|
|
7203
|
+
"type": "integer"
|
|
7204
|
+
},
|
|
7205
|
+
"successful": {
|
|
7206
|
+
"description": "Successful tasks",
|
|
7207
|
+
"type": "integer"
|
|
7208
|
+
},
|
|
7209
|
+
"timestamp": {
|
|
7210
|
+
"description": "Time bucket start",
|
|
7211
|
+
"format": "date-time",
|
|
7212
|
+
"type": "string"
|
|
7213
|
+
},
|
|
7214
|
+
"total": {
|
|
7215
|
+
"description": "Total tasks in this period",
|
|
7216
|
+
"type": "integer"
|
|
7217
|
+
}
|
|
7218
|
+
},
|
|
7219
|
+
"required": [
|
|
7220
|
+
"failed",
|
|
7221
|
+
"successful",
|
|
7222
|
+
"timestamp",
|
|
7223
|
+
"total"
|
|
7224
|
+
],
|
|
7225
|
+
"type": "object"
|
|
7226
|
+
},
|
|
7227
|
+
"TasksByQueue": {
|
|
7228
|
+
"description": "Tasks count by queue.\n\nUsed in overview endpoint for tasks_by_queue list.",
|
|
7229
|
+
"properties": {
|
|
7230
|
+
"count": {
|
|
7231
|
+
"description": "Number of tasks in this queue",
|
|
7232
|
+
"type": "integer"
|
|
7233
|
+
},
|
|
7234
|
+
"queue_name": {
|
|
7235
|
+
"description": "Queue name",
|
|
7236
|
+
"type": "string"
|
|
7237
|
+
}
|
|
7238
|
+
},
|
|
7239
|
+
"required": [
|
|
7240
|
+
"count",
|
|
7241
|
+
"queue_name"
|
|
7242
|
+
],
|
|
7243
|
+
"type": "object"
|
|
7244
|
+
},
|
|
7245
|
+
"TasksByStatus": {
|
|
7246
|
+
"description": "Tasks count by status.\n\nUsed in overview endpoint for tasks_by_status list.",
|
|
7247
|
+
"properties": {
|
|
7248
|
+
"count": {
|
|
7249
|
+
"description": "Number of tasks with this status",
|
|
7250
|
+
"type": "integer"
|
|
7251
|
+
},
|
|
7252
|
+
"status": {
|
|
7253
|
+
"description": "Task status",
|
|
7254
|
+
"type": "string"
|
|
7255
|
+
}
|
|
7256
|
+
},
|
|
7257
|
+
"required": [
|
|
7258
|
+
"count",
|
|
7259
|
+
"status"
|
|
7260
|
+
],
|
|
7261
|
+
"type": "object"
|
|
7262
|
+
},
|
|
7111
7263
|
"TestEmailRequest": {
|
|
7112
7264
|
"description": "Simple serializer for test email.",
|
|
7113
7265
|
"properties": {
|
|
@@ -7880,6 +8032,9 @@ export const OPENAPI_SCHEMA = {
|
|
|
7880
8032
|
"security": [
|
|
7881
8033
|
{
|
|
7882
8034
|
"jwtAuth": []
|
|
8035
|
+
},
|
|
8036
|
+
{
|
|
8037
|
+
"cookieAuth": []
|
|
7883
8038
|
}
|
|
7884
8039
|
],
|
|
7885
8040
|
"summary": "Get current user profile",
|
|
@@ -8026,6 +8181,9 @@ export const OPENAPI_SCHEMA = {
|
|
|
8026
8181
|
"security": [
|
|
8027
8182
|
{
|
|
8028
8183
|
"jwtAuth": []
|
|
8184
|
+
},
|
|
8185
|
+
{
|
|
8186
|
+
"cookieAuth": []
|
|
8029
8187
|
}
|
|
8030
8188
|
],
|
|
8031
8189
|
"summary": "Partial update user profile",
|
|
@@ -8103,6 +8261,9 @@ export const OPENAPI_SCHEMA = {
|
|
|
8103
8261
|
"security": [
|
|
8104
8262
|
{
|
|
8105
8263
|
"jwtAuth": []
|
|
8264
|
+
},
|
|
8265
|
+
{
|
|
8266
|
+
"cookieAuth": []
|
|
8106
8267
|
}
|
|
8107
8268
|
],
|
|
8108
8269
|
"summary": "Partial update user profile",
|
|
@@ -8182,6 +8343,9 @@ export const OPENAPI_SCHEMA = {
|
|
|
8182
8343
|
"security": [
|
|
8183
8344
|
{
|
|
8184
8345
|
"jwtAuth": []
|
|
8346
|
+
},
|
|
8347
|
+
{
|
|
8348
|
+
"cookieAuth": []
|
|
8185
8349
|
}
|
|
8186
8350
|
],
|
|
8187
8351
|
"summary": "Update user profile",
|
|
@@ -8259,6 +8423,9 @@ export const OPENAPI_SCHEMA = {
|
|
|
8259
8423
|
"security": [
|
|
8260
8424
|
{
|
|
8261
8425
|
"jwtAuth": []
|
|
8426
|
+
},
|
|
8427
|
+
{
|
|
8428
|
+
"cookieAuth": []
|
|
8262
8429
|
}
|
|
8263
8430
|
],
|
|
8264
8431
|
"summary": "Update user profile",
|
|
@@ -8322,6 +8489,12 @@ export const OPENAPI_SCHEMA = {
|
|
|
8322
8489
|
"security": [
|
|
8323
8490
|
{
|
|
8324
8491
|
"jwtAuth": []
|
|
8492
|
+
},
|
|
8493
|
+
{
|
|
8494
|
+
"cookieAuth": []
|
|
8495
|
+
},
|
|
8496
|
+
{
|
|
8497
|
+
"basicAuth": []
|
|
8325
8498
|
}
|
|
8326
8499
|
],
|
|
8327
8500
|
"tags": [
|
|
@@ -8359,6 +8532,12 @@ export const OPENAPI_SCHEMA = {
|
|
|
8359
8532
|
"security": [
|
|
8360
8533
|
{
|
|
8361
8534
|
"jwtAuth": []
|
|
8535
|
+
},
|
|
8536
|
+
{
|
|
8537
|
+
"cookieAuth": []
|
|
8538
|
+
},
|
|
8539
|
+
{
|
|
8540
|
+
"basicAuth": []
|
|
8362
8541
|
}
|
|
8363
8542
|
],
|
|
8364
8543
|
"summary": "Get Centrifugo health status",
|
|
@@ -8407,6 +8586,12 @@ export const OPENAPI_SCHEMA = {
|
|
|
8407
8586
|
"security": [
|
|
8408
8587
|
{
|
|
8409
8588
|
"jwtAuth": []
|
|
8589
|
+
},
|
|
8590
|
+
{
|
|
8591
|
+
"cookieAuth": []
|
|
8592
|
+
},
|
|
8593
|
+
{
|
|
8594
|
+
"basicAuth": []
|
|
8410
8595
|
}
|
|
8411
8596
|
],
|
|
8412
8597
|
"summary": "Get overview statistics",
|
|
@@ -8479,6 +8664,12 @@ export const OPENAPI_SCHEMA = {
|
|
|
8479
8664
|
"security": [
|
|
8480
8665
|
{
|
|
8481
8666
|
"jwtAuth": []
|
|
8667
|
+
},
|
|
8668
|
+
{
|
|
8669
|
+
"cookieAuth": []
|
|
8670
|
+
},
|
|
8671
|
+
{
|
|
8672
|
+
"basicAuth": []
|
|
8482
8673
|
}
|
|
8483
8674
|
],
|
|
8484
8675
|
"summary": "Get recent publishes",
|
|
@@ -8535,6 +8726,12 @@ export const OPENAPI_SCHEMA = {
|
|
|
8535
8726
|
"security": [
|
|
8536
8727
|
{
|
|
8537
8728
|
"jwtAuth": []
|
|
8729
|
+
},
|
|
8730
|
+
{
|
|
8731
|
+
"cookieAuth": []
|
|
8732
|
+
},
|
|
8733
|
+
{
|
|
8734
|
+
"basicAuth": []
|
|
8538
8735
|
}
|
|
8539
8736
|
],
|
|
8540
8737
|
"summary": "Get channel statistics",
|
|
@@ -8599,6 +8796,12 @@ export const OPENAPI_SCHEMA = {
|
|
|
8599
8796
|
"security": [
|
|
8600
8797
|
{
|
|
8601
8798
|
"jwtAuth": []
|
|
8799
|
+
},
|
|
8800
|
+
{
|
|
8801
|
+
"cookieAuth": []
|
|
8802
|
+
},
|
|
8803
|
+
{
|
|
8804
|
+
"basicAuth": []
|
|
8602
8805
|
}
|
|
8603
8806
|
],
|
|
8604
8807
|
"summary": "Get connection token for dashboard",
|
|
@@ -8656,6 +8859,12 @@ export const OPENAPI_SCHEMA = {
|
|
|
8656
8859
|
"security": [
|
|
8657
8860
|
{
|
|
8658
8861
|
"jwtAuth": []
|
|
8862
|
+
},
|
|
8863
|
+
{
|
|
8864
|
+
"cookieAuth": []
|
|
8865
|
+
},
|
|
8866
|
+
{
|
|
8867
|
+
"basicAuth": []
|
|
8659
8868
|
}
|
|
8660
8869
|
],
|
|
8661
8870
|
"summary": "List active channels",
|
|
@@ -8714,6 +8923,12 @@ export const OPENAPI_SCHEMA = {
|
|
|
8714
8923
|
"security": [
|
|
8715
8924
|
{
|
|
8716
8925
|
"jwtAuth": []
|
|
8926
|
+
},
|
|
8927
|
+
{
|
|
8928
|
+
"cookieAuth": []
|
|
8929
|
+
},
|
|
8930
|
+
{
|
|
8931
|
+
"basicAuth": []
|
|
8717
8932
|
}
|
|
8718
8933
|
],
|
|
8719
8934
|
"summary": "Get channel history",
|
|
@@ -8752,6 +8967,12 @@ export const OPENAPI_SCHEMA = {
|
|
|
8752
8967
|
"security": [
|
|
8753
8968
|
{
|
|
8754
8969
|
"jwtAuth": []
|
|
8970
|
+
},
|
|
8971
|
+
{
|
|
8972
|
+
"cookieAuth": []
|
|
8973
|
+
},
|
|
8974
|
+
{
|
|
8975
|
+
"basicAuth": []
|
|
8755
8976
|
}
|
|
8756
8977
|
],
|
|
8757
8978
|
"summary": "Get Centrifugo server info",
|
|
@@ -8810,6 +9031,12 @@ export const OPENAPI_SCHEMA = {
|
|
|
8810
9031
|
"security": [
|
|
8811
9032
|
{
|
|
8812
9033
|
"jwtAuth": []
|
|
9034
|
+
},
|
|
9035
|
+
{
|
|
9036
|
+
"cookieAuth": []
|
|
9037
|
+
},
|
|
9038
|
+
{
|
|
9039
|
+
"basicAuth": []
|
|
8813
9040
|
}
|
|
8814
9041
|
],
|
|
8815
9042
|
"summary": "Get channel presence statistics",
|
|
@@ -8868,6 +9095,12 @@ export const OPENAPI_SCHEMA = {
|
|
|
8868
9095
|
"security": [
|
|
8869
9096
|
{
|
|
8870
9097
|
"jwtAuth": []
|
|
9098
|
+
},
|
|
9099
|
+
{
|
|
9100
|
+
"cookieAuth": []
|
|
9101
|
+
},
|
|
9102
|
+
{
|
|
9103
|
+
"basicAuth": []
|
|
8871
9104
|
}
|
|
8872
9105
|
],
|
|
8873
9106
|
"summary": "Get channel presence",
|
|
@@ -8936,6 +9169,12 @@ export const OPENAPI_SCHEMA = {
|
|
|
8936
9169
|
"security": [
|
|
8937
9170
|
{
|
|
8938
9171
|
"jwtAuth": []
|
|
9172
|
+
},
|
|
9173
|
+
{
|
|
9174
|
+
"cookieAuth": []
|
|
9175
|
+
},
|
|
9176
|
+
{
|
|
9177
|
+
"basicAuth": []
|
|
8939
9178
|
}
|
|
8940
9179
|
],
|
|
8941
9180
|
"summary": "Generate connection token",
|
|
@@ -9004,6 +9243,12 @@ export const OPENAPI_SCHEMA = {
|
|
|
9004
9243
|
"security": [
|
|
9005
9244
|
{
|
|
9006
9245
|
"jwtAuth": []
|
|
9246
|
+
},
|
|
9247
|
+
{
|
|
9248
|
+
"cookieAuth": []
|
|
9249
|
+
},
|
|
9250
|
+
{
|
|
9251
|
+
"basicAuth": []
|
|
9007
9252
|
}
|
|
9008
9253
|
],
|
|
9009
9254
|
"summary": "Publish test message",
|
|
@@ -9072,6 +9317,12 @@ export const OPENAPI_SCHEMA = {
|
|
|
9072
9317
|
"security": [
|
|
9073
9318
|
{
|
|
9074
9319
|
"jwtAuth": []
|
|
9320
|
+
},
|
|
9321
|
+
{
|
|
9322
|
+
"cookieAuth": []
|
|
9323
|
+
},
|
|
9324
|
+
{
|
|
9325
|
+
"basicAuth": []
|
|
9075
9326
|
}
|
|
9076
9327
|
],
|
|
9077
9328
|
"summary": "Publish with database logging",
|
|
@@ -9140,6 +9391,12 @@ export const OPENAPI_SCHEMA = {
|
|
|
9140
9391
|
"security": [
|
|
9141
9392
|
{
|
|
9142
9393
|
"jwtAuth": []
|
|
9394
|
+
},
|
|
9395
|
+
{
|
|
9396
|
+
"cookieAuth": []
|
|
9397
|
+
},
|
|
9398
|
+
{
|
|
9399
|
+
"basicAuth": []
|
|
9143
9400
|
}
|
|
9144
9401
|
],
|
|
9145
9402
|
"summary": "Send manual ACK",
|
|
@@ -9169,6 +9426,9 @@ export const OPENAPI_SCHEMA = {
|
|
|
9169
9426
|
}
|
|
9170
9427
|
},
|
|
9171
9428
|
"security": [
|
|
9429
|
+
{
|
|
9430
|
+
"jwtAuth": []
|
|
9431
|
+
},
|
|
9172
9432
|
{
|
|
9173
9433
|
"cookieAuth": []
|
|
9174
9434
|
},
|
|
@@ -9214,6 +9474,9 @@ export const OPENAPI_SCHEMA = {
|
|
|
9214
9474
|
}
|
|
9215
9475
|
},
|
|
9216
9476
|
"security": [
|
|
9477
|
+
{
|
|
9478
|
+
"jwtAuth": []
|
|
9479
|
+
},
|
|
9217
9480
|
{
|
|
9218
9481
|
"cookieAuth": []
|
|
9219
9482
|
},
|
|
@@ -9256,6 +9519,9 @@ export const OPENAPI_SCHEMA = {
|
|
|
9256
9519
|
}
|
|
9257
9520
|
},
|
|
9258
9521
|
"security": [
|
|
9522
|
+
{
|
|
9523
|
+
"jwtAuth": []
|
|
9524
|
+
},
|
|
9259
9525
|
{
|
|
9260
9526
|
"cookieAuth": []
|
|
9261
9527
|
},
|
|
@@ -9301,6 +9567,9 @@ export const OPENAPI_SCHEMA = {
|
|
|
9301
9567
|
}
|
|
9302
9568
|
},
|
|
9303
9569
|
"security": [
|
|
9570
|
+
{
|
|
9571
|
+
"jwtAuth": []
|
|
9572
|
+
},
|
|
9304
9573
|
{
|
|
9305
9574
|
"cookieAuth": []
|
|
9306
9575
|
},
|
|
@@ -9343,6 +9612,9 @@ export const OPENAPI_SCHEMA = {
|
|
|
9343
9612
|
}
|
|
9344
9613
|
},
|
|
9345
9614
|
"security": [
|
|
9615
|
+
{
|
|
9616
|
+
"jwtAuth": []
|
|
9617
|
+
},
|
|
9346
9618
|
{
|
|
9347
9619
|
"cookieAuth": []
|
|
9348
9620
|
},
|
|
@@ -9388,6 +9660,9 @@ export const OPENAPI_SCHEMA = {
|
|
|
9388
9660
|
}
|
|
9389
9661
|
},
|
|
9390
9662
|
"security": [
|
|
9663
|
+
{
|
|
9664
|
+
"jwtAuth": []
|
|
9665
|
+
},
|
|
9391
9666
|
{
|
|
9392
9667
|
"cookieAuth": []
|
|
9393
9668
|
},
|
|
@@ -9591,13 +9866,93 @@ export const OPENAPI_SCHEMA = {
|
|
|
9591
9866
|
"x-async-capable": false
|
|
9592
9867
|
}
|
|
9593
9868
|
},
|
|
9594
|
-
"/cfg/dashboard/api/
|
|
9869
|
+
"/cfg/dashboard/api/django_q2/": {
|
|
9595
9870
|
"get": {
|
|
9596
|
-
"description": "
|
|
9597
|
-
"operationId": "
|
|
9871
|
+
"description": "Get complete Django-Q2 summary.\n\nGET /api/django_q2/\nReturns status, schedules, and recent tasks.",
|
|
9872
|
+
"operationId": "cfg_dashboard_api_django_q2_retrieve",
|
|
9598
9873
|
"responses": {
|
|
9599
9874
|
"200": {
|
|
9600
|
-
"
|
|
9875
|
+
"description": "No response body"
|
|
9876
|
+
}
|
|
9877
|
+
},
|
|
9878
|
+
"security": [
|
|
9879
|
+
{
|
|
9880
|
+
"jwtAuth": []
|
|
9881
|
+
}
|
|
9882
|
+
],
|
|
9883
|
+
"tags": [
|
|
9884
|
+
"dashboard"
|
|
9885
|
+
],
|
|
9886
|
+
"x-async-capable": false
|
|
9887
|
+
}
|
|
9888
|
+
},
|
|
9889
|
+
"/cfg/dashboard/api/django_q2/schedules/": {
|
|
9890
|
+
"get": {
|
|
9891
|
+
"description": "Get all scheduled tasks.\n\nGET /api/django_q2/schedules/",
|
|
9892
|
+
"operationId": "cfg_dashboard_api_django_q2_schedules_retrieve",
|
|
9893
|
+
"responses": {
|
|
9894
|
+
"200": {
|
|
9895
|
+
"description": "No response body"
|
|
9896
|
+
}
|
|
9897
|
+
},
|
|
9898
|
+
"security": [
|
|
9899
|
+
{
|
|
9900
|
+
"jwtAuth": []
|
|
9901
|
+
}
|
|
9902
|
+
],
|
|
9903
|
+
"tags": [
|
|
9904
|
+
"dashboard"
|
|
9905
|
+
],
|
|
9906
|
+
"x-async-capable": false
|
|
9907
|
+
}
|
|
9908
|
+
},
|
|
9909
|
+
"/cfg/dashboard/api/django_q2/status/": {
|
|
9910
|
+
"get": {
|
|
9911
|
+
"description": "Get Django-Q2 cluster status.\n\nGET /api/django_q2/status/",
|
|
9912
|
+
"operationId": "cfg_dashboard_api_django_q2_status_retrieve",
|
|
9913
|
+
"responses": {
|
|
9914
|
+
"200": {
|
|
9915
|
+
"description": "No response body"
|
|
9916
|
+
}
|
|
9917
|
+
},
|
|
9918
|
+
"security": [
|
|
9919
|
+
{
|
|
9920
|
+
"jwtAuth": []
|
|
9921
|
+
}
|
|
9922
|
+
],
|
|
9923
|
+
"tags": [
|
|
9924
|
+
"dashboard"
|
|
9925
|
+
],
|
|
9926
|
+
"x-async-capable": false
|
|
9927
|
+
}
|
|
9928
|
+
},
|
|
9929
|
+
"/cfg/dashboard/api/django_q2/tasks/": {
|
|
9930
|
+
"get": {
|
|
9931
|
+
"description": "Get recent task executions.\n\nGET /api/django_q2/tasks/\nQuery params:\n - limit: Number of tasks to return (default: 20)",
|
|
9932
|
+
"operationId": "cfg_dashboard_api_django_q2_tasks_retrieve",
|
|
9933
|
+
"responses": {
|
|
9934
|
+
"200": {
|
|
9935
|
+
"description": "No response body"
|
|
9936
|
+
}
|
|
9937
|
+
},
|
|
9938
|
+
"security": [
|
|
9939
|
+
{
|
|
9940
|
+
"jwtAuth": []
|
|
9941
|
+
}
|
|
9942
|
+
],
|
|
9943
|
+
"tags": [
|
|
9944
|
+
"dashboard"
|
|
9945
|
+
],
|
|
9946
|
+
"x-async-capable": false
|
|
9947
|
+
}
|
|
9948
|
+
},
|
|
9949
|
+
"/cfg/dashboard/api/overview/overview/": {
|
|
9950
|
+
"get": {
|
|
9951
|
+
"description": "Retrieve complete dashboard data including stats, health, actions, and metrics",
|
|
9952
|
+
"operationId": "cfg_dashboard_api_overview_overview_retrieve",
|
|
9953
|
+
"responses": {
|
|
9954
|
+
"200": {
|
|
9955
|
+
"content": {
|
|
9601
9956
|
"application/json": {
|
|
9602
9957
|
"schema": {
|
|
9603
9958
|
"$ref": "#/components/schemas/DashboardOverview"
|
|
@@ -9608,6 +9963,9 @@ export const OPENAPI_SCHEMA = {
|
|
|
9608
9963
|
}
|
|
9609
9964
|
},
|
|
9610
9965
|
"security": [
|
|
9966
|
+
{
|
|
9967
|
+
"jwtAuth": []
|
|
9968
|
+
},
|
|
9611
9969
|
{
|
|
9612
9970
|
"cookieAuth": []
|
|
9613
9971
|
},
|
|
@@ -9642,6 +10000,9 @@ export const OPENAPI_SCHEMA = {
|
|
|
9642
10000
|
}
|
|
9643
10001
|
},
|
|
9644
10002
|
"security": [
|
|
10003
|
+
{
|
|
10004
|
+
"jwtAuth": []
|
|
10005
|
+
},
|
|
9645
10006
|
{
|
|
9646
10007
|
"cookieAuth": []
|
|
9647
10008
|
},
|
|
@@ -9676,6 +10037,9 @@ export const OPENAPI_SCHEMA = {
|
|
|
9676
10037
|
}
|
|
9677
10038
|
},
|
|
9678
10039
|
"security": [
|
|
10040
|
+
{
|
|
10041
|
+
"jwtAuth": []
|
|
10042
|
+
},
|
|
9679
10043
|
{
|
|
9680
10044
|
"cookieAuth": []
|
|
9681
10045
|
},
|
|
@@ -9707,6 +10071,9 @@ export const OPENAPI_SCHEMA = {
|
|
|
9707
10071
|
}
|
|
9708
10072
|
},
|
|
9709
10073
|
"security": [
|
|
10074
|
+
{
|
|
10075
|
+
"jwtAuth": []
|
|
10076
|
+
},
|
|
9710
10077
|
{
|
|
9711
10078
|
"cookieAuth": []
|
|
9712
10079
|
},
|
|
@@ -9738,6 +10105,9 @@ export const OPENAPI_SCHEMA = {
|
|
|
9738
10105
|
}
|
|
9739
10106
|
},
|
|
9740
10107
|
"security": [
|
|
10108
|
+
{
|
|
10109
|
+
"jwtAuth": []
|
|
10110
|
+
},
|
|
9741
10111
|
{
|
|
9742
10112
|
"cookieAuth": []
|
|
9743
10113
|
},
|
|
@@ -9769,6 +10139,9 @@ export const OPENAPI_SCHEMA = {
|
|
|
9769
10139
|
}
|
|
9770
10140
|
},
|
|
9771
10141
|
"security": [
|
|
10142
|
+
{
|
|
10143
|
+
"jwtAuth": []
|
|
10144
|
+
},
|
|
9772
10145
|
{
|
|
9773
10146
|
"cookieAuth": []
|
|
9774
10147
|
},
|
|
@@ -9803,6 +10176,9 @@ export const OPENAPI_SCHEMA = {
|
|
|
9803
10176
|
}
|
|
9804
10177
|
},
|
|
9805
10178
|
"security": [
|
|
10179
|
+
{
|
|
10180
|
+
"jwtAuth": []
|
|
10181
|
+
},
|
|
9806
10182
|
{
|
|
9807
10183
|
"cookieAuth": []
|
|
9808
10184
|
},
|
|
@@ -9834,6 +10210,9 @@ export const OPENAPI_SCHEMA = {
|
|
|
9834
10210
|
}
|
|
9835
10211
|
},
|
|
9836
10212
|
"security": [
|
|
10213
|
+
{
|
|
10214
|
+
"jwtAuth": []
|
|
10215
|
+
},
|
|
9837
10216
|
{
|
|
9838
10217
|
"cookieAuth": []
|
|
9839
10218
|
},
|
|
@@ -10020,6 +10399,9 @@ export const OPENAPI_SCHEMA = {
|
|
|
10020
10399
|
"security": [
|
|
10021
10400
|
{
|
|
10022
10401
|
"jwtAuth": []
|
|
10402
|
+
},
|
|
10403
|
+
{
|
|
10404
|
+
"cookieAuth": []
|
|
10023
10405
|
}
|
|
10024
10406
|
],
|
|
10025
10407
|
"tags": [
|
|
@@ -10065,6 +10447,9 @@ export const OPENAPI_SCHEMA = {
|
|
|
10065
10447
|
"security": [
|
|
10066
10448
|
{
|
|
10067
10449
|
"jwtAuth": []
|
|
10450
|
+
},
|
|
10451
|
+
{
|
|
10452
|
+
"cookieAuth": []
|
|
10068
10453
|
}
|
|
10069
10454
|
],
|
|
10070
10455
|
"tags": [
|
|
@@ -10132,6 +10517,9 @@ export const OPENAPI_SCHEMA = {
|
|
|
10132
10517
|
"security": [
|
|
10133
10518
|
{
|
|
10134
10519
|
"jwtAuth": []
|
|
10520
|
+
},
|
|
10521
|
+
{
|
|
10522
|
+
"cookieAuth": []
|
|
10135
10523
|
}
|
|
10136
10524
|
],
|
|
10137
10525
|
"summary": "Process chat query with RAG",
|
|
@@ -10165,6 +10553,9 @@ export const OPENAPI_SCHEMA = {
|
|
|
10165
10553
|
"security": [
|
|
10166
10554
|
{
|
|
10167
10555
|
"jwtAuth": []
|
|
10556
|
+
},
|
|
10557
|
+
{
|
|
10558
|
+
"cookieAuth": []
|
|
10168
10559
|
}
|
|
10169
10560
|
],
|
|
10170
10561
|
"tags": [
|
|
@@ -10202,6 +10593,9 @@ export const OPENAPI_SCHEMA = {
|
|
|
10202
10593
|
"security": [
|
|
10203
10594
|
{
|
|
10204
10595
|
"jwtAuth": []
|
|
10596
|
+
},
|
|
10597
|
+
{
|
|
10598
|
+
"cookieAuth": []
|
|
10205
10599
|
}
|
|
10206
10600
|
],
|
|
10207
10601
|
"tags": [
|
|
@@ -10258,6 +10652,9 @@ export const OPENAPI_SCHEMA = {
|
|
|
10258
10652
|
"security": [
|
|
10259
10653
|
{
|
|
10260
10654
|
"jwtAuth": []
|
|
10655
|
+
},
|
|
10656
|
+
{
|
|
10657
|
+
"cookieAuth": []
|
|
10261
10658
|
}
|
|
10262
10659
|
],
|
|
10263
10660
|
"tags": [
|
|
@@ -10315,6 +10712,9 @@ export const OPENAPI_SCHEMA = {
|
|
|
10315
10712
|
"security": [
|
|
10316
10713
|
{
|
|
10317
10714
|
"jwtAuth": []
|
|
10715
|
+
},
|
|
10716
|
+
{
|
|
10717
|
+
"cookieAuth": []
|
|
10318
10718
|
}
|
|
10319
10719
|
],
|
|
10320
10720
|
"tags": [
|
|
@@ -10354,6 +10754,9 @@ export const OPENAPI_SCHEMA = {
|
|
|
10354
10754
|
"security": [
|
|
10355
10755
|
{
|
|
10356
10756
|
"jwtAuth": []
|
|
10757
|
+
},
|
|
10758
|
+
{
|
|
10759
|
+
"cookieAuth": []
|
|
10357
10760
|
}
|
|
10358
10761
|
],
|
|
10359
10762
|
"summary": "Get chat history",
|
|
@@ -10410,6 +10813,9 @@ export const OPENAPI_SCHEMA = {
|
|
|
10410
10813
|
"security": [
|
|
10411
10814
|
{
|
|
10412
10815
|
"jwtAuth": []
|
|
10816
|
+
},
|
|
10817
|
+
{
|
|
10818
|
+
"cookieAuth": []
|
|
10413
10819
|
}
|
|
10414
10820
|
],
|
|
10415
10821
|
"summary": "List user documents",
|
|
@@ -10485,6 +10891,9 @@ export const OPENAPI_SCHEMA = {
|
|
|
10485
10891
|
"security": [
|
|
10486
10892
|
{
|
|
10487
10893
|
"jwtAuth": []
|
|
10894
|
+
},
|
|
10895
|
+
{
|
|
10896
|
+
"cookieAuth": []
|
|
10488
10897
|
}
|
|
10489
10898
|
],
|
|
10490
10899
|
"summary": "Upload new document",
|
|
@@ -10513,6 +10922,9 @@ export const OPENAPI_SCHEMA = {
|
|
|
10513
10922
|
"security": [
|
|
10514
10923
|
{
|
|
10515
10924
|
"jwtAuth": []
|
|
10925
|
+
},
|
|
10926
|
+
{
|
|
10927
|
+
"cookieAuth": []
|
|
10516
10928
|
}
|
|
10517
10929
|
],
|
|
10518
10930
|
"summary": "Get processing statistics",
|
|
@@ -10549,6 +10961,9 @@ export const OPENAPI_SCHEMA = {
|
|
|
10549
10961
|
"security": [
|
|
10550
10962
|
{
|
|
10551
10963
|
"jwtAuth": []
|
|
10964
|
+
},
|
|
10965
|
+
{
|
|
10966
|
+
"cookieAuth": []
|
|
10552
10967
|
}
|
|
10553
10968
|
],
|
|
10554
10969
|
"summary": "Delete document",
|
|
@@ -10590,6 +11005,9 @@ export const OPENAPI_SCHEMA = {
|
|
|
10590
11005
|
"security": [
|
|
10591
11006
|
{
|
|
10592
11007
|
"jwtAuth": []
|
|
11008
|
+
},
|
|
11009
|
+
{
|
|
11010
|
+
"cookieAuth": []
|
|
10593
11011
|
}
|
|
10594
11012
|
],
|
|
10595
11013
|
"summary": "Get document details",
|
|
@@ -10647,6 +11065,9 @@ export const OPENAPI_SCHEMA = {
|
|
|
10647
11065
|
"security": [
|
|
10648
11066
|
{
|
|
10649
11067
|
"jwtAuth": []
|
|
11068
|
+
},
|
|
11069
|
+
{
|
|
11070
|
+
"cookieAuth": []
|
|
10650
11071
|
}
|
|
10651
11072
|
],
|
|
10652
11073
|
"tags": [
|
|
@@ -10704,6 +11125,9 @@ export const OPENAPI_SCHEMA = {
|
|
|
10704
11125
|
"security": [
|
|
10705
11126
|
{
|
|
10706
11127
|
"jwtAuth": []
|
|
11128
|
+
},
|
|
11129
|
+
{
|
|
11130
|
+
"cookieAuth": []
|
|
10707
11131
|
}
|
|
10708
11132
|
],
|
|
10709
11133
|
"tags": [
|
|
@@ -10763,6 +11187,9 @@ export const OPENAPI_SCHEMA = {
|
|
|
10763
11187
|
"security": [
|
|
10764
11188
|
{
|
|
10765
11189
|
"jwtAuth": []
|
|
11190
|
+
},
|
|
11191
|
+
{
|
|
11192
|
+
"cookieAuth": []
|
|
10766
11193
|
}
|
|
10767
11194
|
],
|
|
10768
11195
|
"summary": "Reprocess document",
|
|
@@ -10803,6 +11230,9 @@ export const OPENAPI_SCHEMA = {
|
|
|
10803
11230
|
"security": [
|
|
10804
11231
|
{
|
|
10805
11232
|
"jwtAuth": []
|
|
11233
|
+
},
|
|
11234
|
+
{
|
|
11235
|
+
"cookieAuth": []
|
|
10806
11236
|
}
|
|
10807
11237
|
],
|
|
10808
11238
|
"summary": "Get document processing status",
|
|
@@ -10851,6 +11281,9 @@ export const OPENAPI_SCHEMA = {
|
|
|
10851
11281
|
"security": [
|
|
10852
11282
|
{
|
|
10853
11283
|
"jwtAuth": []
|
|
11284
|
+
},
|
|
11285
|
+
{
|
|
11286
|
+
"cookieAuth": []
|
|
10854
11287
|
}
|
|
10855
11288
|
],
|
|
10856
11289
|
"summary": "List user chat sessions",
|
|
@@ -10896,6 +11329,9 @@ export const OPENAPI_SCHEMA = {
|
|
|
10896
11329
|
"security": [
|
|
10897
11330
|
{
|
|
10898
11331
|
"jwtAuth": []
|
|
11332
|
+
},
|
|
11333
|
+
{
|
|
11334
|
+
"cookieAuth": []
|
|
10899
11335
|
}
|
|
10900
11336
|
],
|
|
10901
11337
|
"summary": "Create new chat session",
|
|
@@ -10929,6 +11365,9 @@ export const OPENAPI_SCHEMA = {
|
|
|
10929
11365
|
"security": [
|
|
10930
11366
|
{
|
|
10931
11367
|
"jwtAuth": []
|
|
11368
|
+
},
|
|
11369
|
+
{
|
|
11370
|
+
"cookieAuth": []
|
|
10932
11371
|
}
|
|
10933
11372
|
],
|
|
10934
11373
|
"tags": [
|
|
@@ -10966,6 +11405,9 @@ export const OPENAPI_SCHEMA = {
|
|
|
10966
11405
|
"security": [
|
|
10967
11406
|
{
|
|
10968
11407
|
"jwtAuth": []
|
|
11408
|
+
},
|
|
11409
|
+
{
|
|
11410
|
+
"cookieAuth": []
|
|
10969
11411
|
}
|
|
10970
11412
|
],
|
|
10971
11413
|
"tags": [
|
|
@@ -11022,6 +11464,9 @@ export const OPENAPI_SCHEMA = {
|
|
|
11022
11464
|
"security": [
|
|
11023
11465
|
{
|
|
11024
11466
|
"jwtAuth": []
|
|
11467
|
+
},
|
|
11468
|
+
{
|
|
11469
|
+
"cookieAuth": []
|
|
11025
11470
|
}
|
|
11026
11471
|
],
|
|
11027
11472
|
"tags": [
|
|
@@ -11078,6 +11523,9 @@ export const OPENAPI_SCHEMA = {
|
|
|
11078
11523
|
"security": [
|
|
11079
11524
|
{
|
|
11080
11525
|
"jwtAuth": []
|
|
11526
|
+
},
|
|
11527
|
+
{
|
|
11528
|
+
"cookieAuth": []
|
|
11081
11529
|
}
|
|
11082
11530
|
],
|
|
11083
11531
|
"tags": [
|
|
@@ -11136,6 +11584,9 @@ export const OPENAPI_SCHEMA = {
|
|
|
11136
11584
|
"security": [
|
|
11137
11585
|
{
|
|
11138
11586
|
"jwtAuth": []
|
|
11587
|
+
},
|
|
11588
|
+
{
|
|
11589
|
+
"cookieAuth": []
|
|
11139
11590
|
}
|
|
11140
11591
|
],
|
|
11141
11592
|
"summary": "Activate chat session",
|
|
@@ -11195,6 +11646,9 @@ export const OPENAPI_SCHEMA = {
|
|
|
11195
11646
|
"security": [
|
|
11196
11647
|
{
|
|
11197
11648
|
"jwtAuth": []
|
|
11649
|
+
},
|
|
11650
|
+
{
|
|
11651
|
+
"cookieAuth": []
|
|
11198
11652
|
}
|
|
11199
11653
|
],
|
|
11200
11654
|
"summary": "Archive chat session",
|
|
@@ -11445,6 +11899,9 @@ export const OPENAPI_SCHEMA = {
|
|
|
11445
11899
|
"security": [
|
|
11446
11900
|
{
|
|
11447
11901
|
"jwtAuth": []
|
|
11902
|
+
},
|
|
11903
|
+
{
|
|
11904
|
+
"cookieAuth": []
|
|
11448
11905
|
}
|
|
11449
11906
|
],
|
|
11450
11907
|
"tags": [
|
|
@@ -11512,6 +11969,9 @@ export const OPENAPI_SCHEMA = {
|
|
|
11512
11969
|
"security": [
|
|
11513
11970
|
{
|
|
11514
11971
|
"jwtAuth": []
|
|
11972
|
+
},
|
|
11973
|
+
{
|
|
11974
|
+
"cookieAuth": []
|
|
11515
11975
|
}
|
|
11516
11976
|
],
|
|
11517
11977
|
"summary": "Upload and process archive",
|
|
@@ -11555,6 +12015,9 @@ export const OPENAPI_SCHEMA = {
|
|
|
11555
12015
|
"security": [
|
|
11556
12016
|
{
|
|
11557
12017
|
"jwtAuth": []
|
|
12018
|
+
},
|
|
12019
|
+
{
|
|
12020
|
+
"cookieAuth": []
|
|
11558
12021
|
}
|
|
11559
12022
|
],
|
|
11560
12023
|
"summary": "Re-vectorize chunks",
|
|
@@ -11583,6 +12046,9 @@ export const OPENAPI_SCHEMA = {
|
|
|
11583
12046
|
"security": [
|
|
11584
12047
|
{
|
|
11585
12048
|
"jwtAuth": []
|
|
12049
|
+
},
|
|
12050
|
+
{
|
|
12051
|
+
"cookieAuth": []
|
|
11586
12052
|
}
|
|
11587
12053
|
],
|
|
11588
12054
|
"summary": "Get archive statistics",
|
|
@@ -11611,6 +12077,9 @@ export const OPENAPI_SCHEMA = {
|
|
|
11611
12077
|
"security": [
|
|
11612
12078
|
{
|
|
11613
12079
|
"jwtAuth": []
|
|
12080
|
+
},
|
|
12081
|
+
{
|
|
12082
|
+
"cookieAuth": []
|
|
11614
12083
|
}
|
|
11615
12084
|
],
|
|
11616
12085
|
"summary": "Get vectorization statistics",
|
|
@@ -11644,6 +12113,9 @@ export const OPENAPI_SCHEMA = {
|
|
|
11644
12113
|
"security": [
|
|
11645
12114
|
{
|
|
11646
12115
|
"jwtAuth": []
|
|
12116
|
+
},
|
|
12117
|
+
{
|
|
12118
|
+
"cookieAuth": []
|
|
11647
12119
|
}
|
|
11648
12120
|
],
|
|
11649
12121
|
"tags": [
|
|
@@ -11681,6 +12153,9 @@ export const OPENAPI_SCHEMA = {
|
|
|
11681
12153
|
"security": [
|
|
11682
12154
|
{
|
|
11683
12155
|
"jwtAuth": []
|
|
12156
|
+
},
|
|
12157
|
+
{
|
|
12158
|
+
"cookieAuth": []
|
|
11684
12159
|
}
|
|
11685
12160
|
],
|
|
11686
12161
|
"tags": [
|
|
@@ -11732,6 +12207,9 @@ export const OPENAPI_SCHEMA = {
|
|
|
11732
12207
|
"security": [
|
|
11733
12208
|
{
|
|
11734
12209
|
"jwtAuth": []
|
|
12210
|
+
},
|
|
12211
|
+
{
|
|
12212
|
+
"cookieAuth": []
|
|
11735
12213
|
}
|
|
11736
12214
|
],
|
|
11737
12215
|
"tags": [
|
|
@@ -11784,6 +12262,9 @@ export const OPENAPI_SCHEMA = {
|
|
|
11784
12262
|
"security": [
|
|
11785
12263
|
{
|
|
11786
12264
|
"jwtAuth": []
|
|
12265
|
+
},
|
|
12266
|
+
{
|
|
12267
|
+
"cookieAuth": []
|
|
11787
12268
|
}
|
|
11788
12269
|
],
|
|
11789
12270
|
"tags": [
|
|
@@ -11823,6 +12304,9 @@ export const OPENAPI_SCHEMA = {
|
|
|
11823
12304
|
"security": [
|
|
11824
12305
|
{
|
|
11825
12306
|
"jwtAuth": []
|
|
12307
|
+
},
|
|
12308
|
+
{
|
|
12309
|
+
"cookieAuth": []
|
|
11826
12310
|
}
|
|
11827
12311
|
],
|
|
11828
12312
|
"summary": "Get archive file tree",
|
|
@@ -11881,6 +12365,9 @@ export const OPENAPI_SCHEMA = {
|
|
|
11881
12365
|
"security": [
|
|
11882
12366
|
{
|
|
11883
12367
|
"jwtAuth": []
|
|
12368
|
+
},
|
|
12369
|
+
{
|
|
12370
|
+
"cookieAuth": []
|
|
11884
12371
|
}
|
|
11885
12372
|
],
|
|
11886
12373
|
"summary": "Get archive items",
|
|
@@ -11954,6 +12441,9 @@ export const OPENAPI_SCHEMA = {
|
|
|
11954
12441
|
"security": [
|
|
11955
12442
|
{
|
|
11956
12443
|
"jwtAuth": []
|
|
12444
|
+
},
|
|
12445
|
+
{
|
|
12446
|
+
"cookieAuth": []
|
|
11957
12447
|
}
|
|
11958
12448
|
],
|
|
11959
12449
|
"summary": "Search archive chunks",
|
|
@@ -12002,6 +12492,9 @@ export const OPENAPI_SCHEMA = {
|
|
|
12002
12492
|
"security": [
|
|
12003
12493
|
{
|
|
12004
12494
|
"jwtAuth": []
|
|
12495
|
+
},
|
|
12496
|
+
{
|
|
12497
|
+
"cookieAuth": []
|
|
12005
12498
|
}
|
|
12006
12499
|
],
|
|
12007
12500
|
"tags": [
|
|
@@ -12047,6 +12540,9 @@ export const OPENAPI_SCHEMA = {
|
|
|
12047
12540
|
"security": [
|
|
12048
12541
|
{
|
|
12049
12542
|
"jwtAuth": []
|
|
12543
|
+
},
|
|
12544
|
+
{
|
|
12545
|
+
"cookieAuth": []
|
|
12050
12546
|
}
|
|
12051
12547
|
],
|
|
12052
12548
|
"tags": [
|
|
@@ -12079,6 +12575,9 @@ export const OPENAPI_SCHEMA = {
|
|
|
12079
12575
|
"security": [
|
|
12080
12576
|
{
|
|
12081
12577
|
"jwtAuth": []
|
|
12578
|
+
},
|
|
12579
|
+
{
|
|
12580
|
+
"cookieAuth": []
|
|
12082
12581
|
}
|
|
12083
12582
|
],
|
|
12084
12583
|
"tags": [
|
|
@@ -12116,6 +12615,9 @@ export const OPENAPI_SCHEMA = {
|
|
|
12116
12615
|
"security": [
|
|
12117
12616
|
{
|
|
12118
12617
|
"jwtAuth": []
|
|
12618
|
+
},
|
|
12619
|
+
{
|
|
12620
|
+
"cookieAuth": []
|
|
12119
12621
|
}
|
|
12120
12622
|
],
|
|
12121
12623
|
"tags": [
|
|
@@ -12172,6 +12674,9 @@ export const OPENAPI_SCHEMA = {
|
|
|
12172
12674
|
"security": [
|
|
12173
12675
|
{
|
|
12174
12676
|
"jwtAuth": []
|
|
12677
|
+
},
|
|
12678
|
+
{
|
|
12679
|
+
"cookieAuth": []
|
|
12175
12680
|
}
|
|
12176
12681
|
],
|
|
12177
12682
|
"tags": [
|
|
@@ -12229,6 +12734,9 @@ export const OPENAPI_SCHEMA = {
|
|
|
12229
12734
|
"security": [
|
|
12230
12735
|
{
|
|
12231
12736
|
"jwtAuth": []
|
|
12737
|
+
},
|
|
12738
|
+
{
|
|
12739
|
+
"cookieAuth": []
|
|
12232
12740
|
}
|
|
12233
12741
|
],
|
|
12234
12742
|
"tags": [
|
|
@@ -12268,6 +12776,9 @@ export const OPENAPI_SCHEMA = {
|
|
|
12268
12776
|
"security": [
|
|
12269
12777
|
{
|
|
12270
12778
|
"jwtAuth": []
|
|
12779
|
+
},
|
|
12780
|
+
{
|
|
12781
|
+
"cookieAuth": []
|
|
12271
12782
|
}
|
|
12272
12783
|
],
|
|
12273
12784
|
"summary": "Get chunk context",
|
|
@@ -12328,6 +12839,9 @@ export const OPENAPI_SCHEMA = {
|
|
|
12328
12839
|
"security": [
|
|
12329
12840
|
{
|
|
12330
12841
|
"jwtAuth": []
|
|
12842
|
+
},
|
|
12843
|
+
{
|
|
12844
|
+
"cookieAuth": []
|
|
12331
12845
|
}
|
|
12332
12846
|
],
|
|
12333
12847
|
"summary": "Vectorize chunk",
|
|
@@ -12376,6 +12890,9 @@ export const OPENAPI_SCHEMA = {
|
|
|
12376
12890
|
"security": [
|
|
12377
12891
|
{
|
|
12378
12892
|
"jwtAuth": []
|
|
12893
|
+
},
|
|
12894
|
+
{
|
|
12895
|
+
"cookieAuth": []
|
|
12379
12896
|
}
|
|
12380
12897
|
],
|
|
12381
12898
|
"tags": [
|
|
@@ -12421,6 +12938,9 @@ export const OPENAPI_SCHEMA = {
|
|
|
12421
12938
|
"security": [
|
|
12422
12939
|
{
|
|
12423
12940
|
"jwtAuth": []
|
|
12941
|
+
},
|
|
12942
|
+
{
|
|
12943
|
+
"cookieAuth": []
|
|
12424
12944
|
}
|
|
12425
12945
|
],
|
|
12426
12946
|
"tags": [
|
|
@@ -12453,6 +12973,9 @@ export const OPENAPI_SCHEMA = {
|
|
|
12453
12973
|
"security": [
|
|
12454
12974
|
{
|
|
12455
12975
|
"jwtAuth": []
|
|
12976
|
+
},
|
|
12977
|
+
{
|
|
12978
|
+
"cookieAuth": []
|
|
12456
12979
|
}
|
|
12457
12980
|
],
|
|
12458
12981
|
"tags": [
|
|
@@ -12490,6 +13013,9 @@ export const OPENAPI_SCHEMA = {
|
|
|
12490
13013
|
"security": [
|
|
12491
13014
|
{
|
|
12492
13015
|
"jwtAuth": []
|
|
13016
|
+
},
|
|
13017
|
+
{
|
|
13018
|
+
"cookieAuth": []
|
|
12493
13019
|
}
|
|
12494
13020
|
],
|
|
12495
13021
|
"tags": [
|
|
@@ -12546,6 +13072,9 @@ export const OPENAPI_SCHEMA = {
|
|
|
12546
13072
|
"security": [
|
|
12547
13073
|
{
|
|
12548
13074
|
"jwtAuth": []
|
|
13075
|
+
},
|
|
13076
|
+
{
|
|
13077
|
+
"cookieAuth": []
|
|
12549
13078
|
}
|
|
12550
13079
|
],
|
|
12551
13080
|
"tags": [
|
|
@@ -12603,6 +13132,9 @@ export const OPENAPI_SCHEMA = {
|
|
|
12603
13132
|
"security": [
|
|
12604
13133
|
{
|
|
12605
13134
|
"jwtAuth": []
|
|
13135
|
+
},
|
|
13136
|
+
{
|
|
13137
|
+
"cookieAuth": []
|
|
12606
13138
|
}
|
|
12607
13139
|
],
|
|
12608
13140
|
"tags": [
|
|
@@ -12660,6 +13192,9 @@ export const OPENAPI_SCHEMA = {
|
|
|
12660
13192
|
"security": [
|
|
12661
13193
|
{
|
|
12662
13194
|
"jwtAuth": []
|
|
13195
|
+
},
|
|
13196
|
+
{
|
|
13197
|
+
"cookieAuth": []
|
|
12663
13198
|
}
|
|
12664
13199
|
],
|
|
12665
13200
|
"summary": "Get item chunks",
|
|
@@ -12700,6 +13235,9 @@ export const OPENAPI_SCHEMA = {
|
|
|
12700
13235
|
"security": [
|
|
12701
13236
|
{
|
|
12702
13237
|
"jwtAuth": []
|
|
13238
|
+
},
|
|
13239
|
+
{
|
|
13240
|
+
"cookieAuth": []
|
|
12703
13241
|
}
|
|
12704
13242
|
],
|
|
12705
13243
|
"summary": "Get item content",
|
|
@@ -14222,7 +14760,7 @@ export const OPENAPI_SCHEMA = {
|
|
|
14222
14760
|
},
|
|
14223
14761
|
"/cfg/support/tickets/": {
|
|
14224
14762
|
"get": {
|
|
14225
|
-
"description": "ViewSet for managing support tickets.",
|
|
14763
|
+
"description": "ViewSet for managing support tickets.\n\nRequires authenticated user (JWT or Session).\nStaff users can see all tickets, regular users see only their own.",
|
|
14226
14764
|
"operationId": "cfg_support_tickets_list",
|
|
14227
14765
|
"parameters": [
|
|
14228
14766
|
{
|
|
@@ -14259,6 +14797,9 @@ export const OPENAPI_SCHEMA = {
|
|
|
14259
14797
|
"security": [
|
|
14260
14798
|
{
|
|
14261
14799
|
"jwtAuth": []
|
|
14800
|
+
},
|
|
14801
|
+
{
|
|
14802
|
+
"cookieAuth": []
|
|
14262
14803
|
}
|
|
14263
14804
|
],
|
|
14264
14805
|
"tags": [
|
|
@@ -14267,7 +14808,7 @@ export const OPENAPI_SCHEMA = {
|
|
|
14267
14808
|
"x-async-capable": false
|
|
14268
14809
|
},
|
|
14269
14810
|
"post": {
|
|
14270
|
-
"description": "ViewSet for managing support tickets.",
|
|
14811
|
+
"description": "ViewSet for managing support tickets.\n\nRequires authenticated user (JWT or Session).\nStaff users can see all tickets, regular users see only their own.",
|
|
14271
14812
|
"operationId": "cfg_support_tickets_create",
|
|
14272
14813
|
"requestBody": {
|
|
14273
14814
|
"content": {
|
|
@@ -14304,6 +14845,9 @@ export const OPENAPI_SCHEMA = {
|
|
|
14304
14845
|
"security": [
|
|
14305
14846
|
{
|
|
14306
14847
|
"jwtAuth": []
|
|
14848
|
+
},
|
|
14849
|
+
{
|
|
14850
|
+
"cookieAuth": []
|
|
14307
14851
|
}
|
|
14308
14852
|
],
|
|
14309
14853
|
"tags": [
|
|
@@ -14314,7 +14858,7 @@ export const OPENAPI_SCHEMA = {
|
|
|
14314
14858
|
},
|
|
14315
14859
|
"/cfg/support/tickets/{ticket_uuid}/messages/": {
|
|
14316
14860
|
"get": {
|
|
14317
|
-
"description": "ViewSet for managing support messages.",
|
|
14861
|
+
"description": "ViewSet for managing support messages.\n\nRequires authenticated user (JWT or Session).\nUsers can only access messages for their own tickets.",
|
|
14318
14862
|
"operationId": "cfg_support_tickets_messages_list",
|
|
14319
14863
|
"parameters": [
|
|
14320
14864
|
{
|
|
@@ -14361,6 +14905,9 @@ export const OPENAPI_SCHEMA = {
|
|
|
14361
14905
|
"security": [
|
|
14362
14906
|
{
|
|
14363
14907
|
"jwtAuth": []
|
|
14908
|
+
},
|
|
14909
|
+
{
|
|
14910
|
+
"cookieAuth": []
|
|
14364
14911
|
}
|
|
14365
14912
|
],
|
|
14366
14913
|
"tags": [
|
|
@@ -14369,7 +14916,7 @@ export const OPENAPI_SCHEMA = {
|
|
|
14369
14916
|
"x-async-capable": false
|
|
14370
14917
|
},
|
|
14371
14918
|
"post": {
|
|
14372
|
-
"description": "ViewSet for managing support messages.",
|
|
14919
|
+
"description": "ViewSet for managing support messages.\n\nRequires authenticated user (JWT or Session).\nUsers can only access messages for their own tickets.",
|
|
14373
14920
|
"operationId": "cfg_support_tickets_messages_create",
|
|
14374
14921
|
"parameters": [
|
|
14375
14922
|
{
|
|
@@ -14418,6 +14965,9 @@ export const OPENAPI_SCHEMA = {
|
|
|
14418
14965
|
"security": [
|
|
14419
14966
|
{
|
|
14420
14967
|
"jwtAuth": []
|
|
14968
|
+
},
|
|
14969
|
+
{
|
|
14970
|
+
"cookieAuth": []
|
|
14421
14971
|
}
|
|
14422
14972
|
],
|
|
14423
14973
|
"tags": [
|
|
@@ -14428,7 +14978,7 @@ export const OPENAPI_SCHEMA = {
|
|
|
14428
14978
|
},
|
|
14429
14979
|
"/cfg/support/tickets/{ticket_uuid}/messages/{uuid}/": {
|
|
14430
14980
|
"delete": {
|
|
14431
|
-
"description": "ViewSet for managing support messages.",
|
|
14981
|
+
"description": "ViewSet for managing support messages.\n\nRequires authenticated user (JWT or Session).\nUsers can only access messages for their own tickets.",
|
|
14432
14982
|
"operationId": "cfg_support_tickets_messages_destroy",
|
|
14433
14983
|
"parameters": [
|
|
14434
14984
|
{
|
|
@@ -14460,6 +15010,9 @@ export const OPENAPI_SCHEMA = {
|
|
|
14460
15010
|
"security": [
|
|
14461
15011
|
{
|
|
14462
15012
|
"jwtAuth": []
|
|
15013
|
+
},
|
|
15014
|
+
{
|
|
15015
|
+
"cookieAuth": []
|
|
14463
15016
|
}
|
|
14464
15017
|
],
|
|
14465
15018
|
"tags": [
|
|
@@ -14468,7 +15021,7 @@ export const OPENAPI_SCHEMA = {
|
|
|
14468
15021
|
"x-async-capable": false
|
|
14469
15022
|
},
|
|
14470
15023
|
"get": {
|
|
14471
|
-
"description": "ViewSet for managing support messages.",
|
|
15024
|
+
"description": "ViewSet for managing support messages.\n\nRequires authenticated user (JWT or Session).\nUsers can only access messages for their own tickets.",
|
|
14472
15025
|
"operationId": "cfg_support_tickets_messages_retrieve",
|
|
14473
15026
|
"parameters": [
|
|
14474
15027
|
{
|
|
@@ -14507,6 +15060,9 @@ export const OPENAPI_SCHEMA = {
|
|
|
14507
15060
|
"security": [
|
|
14508
15061
|
{
|
|
14509
15062
|
"jwtAuth": []
|
|
15063
|
+
},
|
|
15064
|
+
{
|
|
15065
|
+
"cookieAuth": []
|
|
14510
15066
|
}
|
|
14511
15067
|
],
|
|
14512
15068
|
"tags": [
|
|
@@ -14515,7 +15071,7 @@ export const OPENAPI_SCHEMA = {
|
|
|
14515
15071
|
"x-async-capable": false
|
|
14516
15072
|
},
|
|
14517
15073
|
"patch": {
|
|
14518
|
-
"description": "ViewSet for managing support messages.",
|
|
15074
|
+
"description": "ViewSet for managing support messages.\n\nRequires authenticated user (JWT or Session).\nUsers can only access messages for their own tickets.",
|
|
14519
15075
|
"operationId": "cfg_support_tickets_messages_partial_update",
|
|
14520
15076
|
"parameters": [
|
|
14521
15077
|
{
|
|
@@ -14573,6 +15129,9 @@ export const OPENAPI_SCHEMA = {
|
|
|
14573
15129
|
"security": [
|
|
14574
15130
|
{
|
|
14575
15131
|
"jwtAuth": []
|
|
15132
|
+
},
|
|
15133
|
+
{
|
|
15134
|
+
"cookieAuth": []
|
|
14576
15135
|
}
|
|
14577
15136
|
],
|
|
14578
15137
|
"tags": [
|
|
@@ -14581,7 +15140,7 @@ export const OPENAPI_SCHEMA = {
|
|
|
14581
15140
|
"x-async-capable": false
|
|
14582
15141
|
},
|
|
14583
15142
|
"put": {
|
|
14584
|
-
"description": "ViewSet for managing support messages.",
|
|
15143
|
+
"description": "ViewSet for managing support messages.\n\nRequires authenticated user (JWT or Session).\nUsers can only access messages for their own tickets.",
|
|
14585
15144
|
"operationId": "cfg_support_tickets_messages_update",
|
|
14586
15145
|
"parameters": [
|
|
14587
15146
|
{
|
|
@@ -14640,6 +15199,9 @@ export const OPENAPI_SCHEMA = {
|
|
|
14640
15199
|
"security": [
|
|
14641
15200
|
{
|
|
14642
15201
|
"jwtAuth": []
|
|
15202
|
+
},
|
|
15203
|
+
{
|
|
15204
|
+
"cookieAuth": []
|
|
14643
15205
|
}
|
|
14644
15206
|
],
|
|
14645
15207
|
"tags": [
|
|
@@ -14650,7 +15212,7 @@ export const OPENAPI_SCHEMA = {
|
|
|
14650
15212
|
},
|
|
14651
15213
|
"/cfg/support/tickets/{uuid}/": {
|
|
14652
15214
|
"delete": {
|
|
14653
|
-
"description": "ViewSet for managing support tickets.",
|
|
15215
|
+
"description": "ViewSet for managing support tickets.\n\nRequires authenticated user (JWT or Session).\nStaff users can see all tickets, regular users see only their own.",
|
|
14654
15216
|
"operationId": "cfg_support_tickets_destroy",
|
|
14655
15217
|
"parameters": [
|
|
14656
15218
|
{
|
|
@@ -14672,6 +15234,9 @@ export const OPENAPI_SCHEMA = {
|
|
|
14672
15234
|
"security": [
|
|
14673
15235
|
{
|
|
14674
15236
|
"jwtAuth": []
|
|
15237
|
+
},
|
|
15238
|
+
{
|
|
15239
|
+
"cookieAuth": []
|
|
14675
15240
|
}
|
|
14676
15241
|
],
|
|
14677
15242
|
"tags": [
|
|
@@ -14680,7 +15245,7 @@ export const OPENAPI_SCHEMA = {
|
|
|
14680
15245
|
"x-async-capable": false
|
|
14681
15246
|
},
|
|
14682
15247
|
"get": {
|
|
14683
|
-
"description": "ViewSet for managing support tickets.",
|
|
15248
|
+
"description": "ViewSet for managing support tickets.\n\nRequires authenticated user (JWT or Session).\nStaff users can see all tickets, regular users see only their own.",
|
|
14684
15249
|
"operationId": "cfg_support_tickets_retrieve",
|
|
14685
15250
|
"parameters": [
|
|
14686
15251
|
{
|
|
@@ -14709,6 +15274,9 @@ export const OPENAPI_SCHEMA = {
|
|
|
14709
15274
|
"security": [
|
|
14710
15275
|
{
|
|
14711
15276
|
"jwtAuth": []
|
|
15277
|
+
},
|
|
15278
|
+
{
|
|
15279
|
+
"cookieAuth": []
|
|
14712
15280
|
}
|
|
14713
15281
|
],
|
|
14714
15282
|
"tags": [
|
|
@@ -14717,7 +15285,7 @@ export const OPENAPI_SCHEMA = {
|
|
|
14717
15285
|
"x-async-capable": false
|
|
14718
15286
|
},
|
|
14719
15287
|
"patch": {
|
|
14720
|
-
"description": "ViewSet for managing support tickets.",
|
|
15288
|
+
"description": "ViewSet for managing support tickets.\n\nRequires authenticated user (JWT or Session).\nStaff users can see all tickets, regular users see only their own.",
|
|
14721
15289
|
"operationId": "cfg_support_tickets_partial_update",
|
|
14722
15290
|
"parameters": [
|
|
14723
15291
|
{
|
|
@@ -14765,6 +15333,9 @@ export const OPENAPI_SCHEMA = {
|
|
|
14765
15333
|
"security": [
|
|
14766
15334
|
{
|
|
14767
15335
|
"jwtAuth": []
|
|
15336
|
+
},
|
|
15337
|
+
{
|
|
15338
|
+
"cookieAuth": []
|
|
14768
15339
|
}
|
|
14769
15340
|
],
|
|
14770
15341
|
"tags": [
|
|
@@ -14773,7 +15344,7 @@ export const OPENAPI_SCHEMA = {
|
|
|
14773
15344
|
"x-async-capable": false
|
|
14774
15345
|
},
|
|
14775
15346
|
"put": {
|
|
14776
|
-
"description": "ViewSet for managing support tickets.",
|
|
15347
|
+
"description": "ViewSet for managing support tickets.\n\nRequires authenticated user (JWT or Session).\nStaff users can see all tickets, regular users see only their own.",
|
|
14777
15348
|
"operationId": "cfg_support_tickets_update",
|
|
14778
15349
|
"parameters": [
|
|
14779
15350
|
{
|
|
@@ -14822,6 +15393,9 @@ export const OPENAPI_SCHEMA = {
|
|
|
14822
15393
|
"security": [
|
|
14823
15394
|
{
|
|
14824
15395
|
"jwtAuth": []
|
|
15396
|
+
},
|
|
15397
|
+
{
|
|
15398
|
+
"cookieAuth": []
|
|
14825
15399
|
}
|
|
14826
15400
|
],
|
|
14827
15401
|
"tags": [
|
|
@@ -14832,7 +15406,7 @@ export const OPENAPI_SCHEMA = {
|
|
|
14832
15406
|
},
|
|
14833
15407
|
"/cfg/tasks/logs/": {
|
|
14834
15408
|
"get": {
|
|
14835
|
-
"description": "ViewSet for TaskLog monitoring.\n\nProvides read-only access to task execution logs with filtering,\nsearching, and statistics.\n\nEndpoints:\n GET /api/tasks/logs/ - List all task logs\n GET /api/tasks/logs/{id}/ - Get task log details\n GET /api/tasks/logs/stats/ - Get aggregated statistics\n GET /api/tasks/logs/timeline/ - Get task execution timeline\n GET /api/tasks/logs/overview/ - Get summary overview",
|
|
15409
|
+
"description": "Complete ViewSet for TaskLog monitoring.\n\nProvides read-only access to task execution logs with filtering,\nsearching, and statistics.\n\nEndpoints:\n GET /api/tasks/logs/ - List all task logs\n GET /api/tasks/logs/{id}/ - Get task log details\n GET /api/tasks/logs/{id}/related/ - Get related task logs\n GET /api/tasks/logs/stats/ - Get aggregated statistics\n GET /api/tasks/logs/timeline/ - Get task execution timeline\n GET /api/tasks/logs/overview/ - Get summary overview\n\nMixins:\n - TaskLogStatsMixin: Aggregated statistics\n - TaskLogTimelineMixin: Time-series data\n - TaskLogOverviewMixin: High-level summary\n - TaskLogRelatedMixin: Related task lookup\n - TaskLogBaseViewSet: Base CRUD operations",
|
|
14836
15410
|
"operationId": "cfg_tasks_logs_list",
|
|
14837
15411
|
"parameters": [
|
|
14838
15412
|
{
|
|
@@ -15123,7 +15697,12 @@ export const OPENAPI_SCHEMA = {
|
|
|
15123
15697
|
{
|
|
15124
15698
|
"jwtAuth": []
|
|
15125
15699
|
},
|
|
15126
|
-
{
|
|
15700
|
+
{
|
|
15701
|
+
"cookieAuth": []
|
|
15702
|
+
},
|
|
15703
|
+
{
|
|
15704
|
+
"basicAuth": []
|
|
15705
|
+
}
|
|
15127
15706
|
],
|
|
15128
15707
|
"tags": [
|
|
15129
15708
|
"tasks"
|
|
@@ -15133,14 +15712,14 @@ export const OPENAPI_SCHEMA = {
|
|
|
15133
15712
|
},
|
|
15134
15713
|
"/cfg/tasks/logs/overview/": {
|
|
15135
15714
|
"get": {
|
|
15136
|
-
"description": "Get
|
|
15715
|
+
"description": "Get high-level summary statistics for the entire task system",
|
|
15137
15716
|
"operationId": "cfg_tasks_logs_overview_retrieve",
|
|
15138
15717
|
"responses": {
|
|
15139
15718
|
"200": {
|
|
15140
15719
|
"content": {
|
|
15141
15720
|
"application/json": {
|
|
15142
15721
|
"schema": {
|
|
15143
|
-
"$ref": "#/components/schemas/
|
|
15722
|
+
"$ref": "#/components/schemas/TaskLogOverview"
|
|
15144
15723
|
}
|
|
15145
15724
|
}
|
|
15146
15725
|
},
|
|
@@ -15151,8 +15730,14 @@ export const OPENAPI_SCHEMA = {
|
|
|
15151
15730
|
{
|
|
15152
15731
|
"jwtAuth": []
|
|
15153
15732
|
},
|
|
15154
|
-
{
|
|
15733
|
+
{
|
|
15734
|
+
"cookieAuth": []
|
|
15735
|
+
},
|
|
15736
|
+
{
|
|
15737
|
+
"basicAuth": []
|
|
15738
|
+
}
|
|
15155
15739
|
],
|
|
15740
|
+
"summary": "Task System Overview",
|
|
15156
15741
|
"tags": [
|
|
15157
15742
|
"tasks"
|
|
15158
15743
|
],
|
|
@@ -15161,7 +15746,7 @@ export const OPENAPI_SCHEMA = {
|
|
|
15161
15746
|
},
|
|
15162
15747
|
"/cfg/tasks/logs/stats/": {
|
|
15163
15748
|
"get": {
|
|
15164
|
-
"description": "Get aggregated
|
|
15749
|
+
"description": "Get aggregated statistics about task execution (success/failure rates, duration)",
|
|
15165
15750
|
"operationId": "cfg_tasks_logs_stats_retrieve",
|
|
15166
15751
|
"responses": {
|
|
15167
15752
|
"200": {
|
|
@@ -15179,8 +15764,14 @@ export const OPENAPI_SCHEMA = {
|
|
|
15179
15764
|
{
|
|
15180
15765
|
"jwtAuth": []
|
|
15181
15766
|
},
|
|
15182
|
-
{
|
|
15767
|
+
{
|
|
15768
|
+
"cookieAuth": []
|
|
15769
|
+
},
|
|
15770
|
+
{
|
|
15771
|
+
"basicAuth": []
|
|
15772
|
+
}
|
|
15183
15773
|
],
|
|
15774
|
+
"summary": "Task Execution Statistics",
|
|
15184
15775
|
"tags": [
|
|
15185
15776
|
"tasks"
|
|
15186
15777
|
],
|
|
@@ -15189,14 +15780,14 @@ export const OPENAPI_SCHEMA = {
|
|
|
15189
15780
|
},
|
|
15190
15781
|
"/cfg/tasks/logs/timeline/": {
|
|
15191
15782
|
"get": {
|
|
15192
|
-
"description": "Get
|
|
15783
|
+
"description": "Get time-series data of task executions grouped by time intervals",
|
|
15193
15784
|
"operationId": "cfg_tasks_logs_timeline_retrieve",
|
|
15194
15785
|
"responses": {
|
|
15195
15786
|
"200": {
|
|
15196
15787
|
"content": {
|
|
15197
15788
|
"application/json": {
|
|
15198
15789
|
"schema": {
|
|
15199
|
-
"$ref": "#/components/schemas/
|
|
15790
|
+
"$ref": "#/components/schemas/TaskLogTimeline"
|
|
15200
15791
|
}
|
|
15201
15792
|
}
|
|
15202
15793
|
},
|
|
@@ -15207,8 +15798,14 @@ export const OPENAPI_SCHEMA = {
|
|
|
15207
15798
|
{
|
|
15208
15799
|
"jwtAuth": []
|
|
15209
15800
|
},
|
|
15210
|
-
{
|
|
15801
|
+
{
|
|
15802
|
+
"cookieAuth": []
|
|
15803
|
+
},
|
|
15804
|
+
{
|
|
15805
|
+
"basicAuth": []
|
|
15806
|
+
}
|
|
15211
15807
|
],
|
|
15808
|
+
"summary": "Task Execution Timeline",
|
|
15212
15809
|
"tags": [
|
|
15213
15810
|
"tasks"
|
|
15214
15811
|
],
|
|
@@ -15217,7 +15814,7 @@ export const OPENAPI_SCHEMA = {
|
|
|
15217
15814
|
},
|
|
15218
15815
|
"/cfg/tasks/logs/{id}/": {
|
|
15219
15816
|
"get": {
|
|
15220
|
-
"description": "ViewSet for TaskLog monitoring.\n\nProvides read-only access to task execution logs with filtering,\nsearching, and statistics.\n\nEndpoints:\n GET /api/tasks/logs/ - List all task logs\n GET /api/tasks/logs/{id}/ - Get task log details\n GET /api/tasks/logs/stats/ - Get aggregated statistics\n GET /api/tasks/logs/timeline/ - Get task execution timeline\n GET /api/tasks/logs/overview/ - Get summary overview",
|
|
15817
|
+
"description": "Complete ViewSet for TaskLog monitoring.\n\nProvides read-only access to task execution logs with filtering,\nsearching, and statistics.\n\nEndpoints:\n GET /api/tasks/logs/ - List all task logs\n GET /api/tasks/logs/{id}/ - Get task log details\n GET /api/tasks/logs/{id}/related/ - Get related task logs\n GET /api/tasks/logs/stats/ - Get aggregated statistics\n GET /api/tasks/logs/timeline/ - Get task execution timeline\n GET /api/tasks/logs/overview/ - Get summary overview\n\nMixins:\n - TaskLogStatsMixin: Aggregated statistics\n - TaskLogTimelineMixin: Time-series data\n - TaskLogOverviewMixin: High-level summary\n - TaskLogRelatedMixin: Related task lookup\n - TaskLogBaseViewSet: Base CRUD operations",
|
|
15221
15818
|
"operationId": "cfg_tasks_logs_retrieve",
|
|
15222
15819
|
"parameters": [
|
|
15223
15820
|
{
|
|
@@ -15246,7 +15843,12 @@ export const OPENAPI_SCHEMA = {
|
|
|
15246
15843
|
{
|
|
15247
15844
|
"jwtAuth": []
|
|
15248
15845
|
},
|
|
15249
|
-
{
|
|
15846
|
+
{
|
|
15847
|
+
"cookieAuth": []
|
|
15848
|
+
},
|
|
15849
|
+
{
|
|
15850
|
+
"basicAuth": []
|
|
15851
|
+
}
|
|
15250
15852
|
],
|
|
15251
15853
|
"tags": [
|
|
15252
15854
|
"tasks"
|
|
@@ -15256,7 +15858,7 @@ export const OPENAPI_SCHEMA = {
|
|
|
15256
15858
|
},
|
|
15257
15859
|
"/cfg/tasks/logs/{id}/related/": {
|
|
15258
15860
|
"get": {
|
|
15259
|
-
"description": "Get related task logs (same job_id or task_name).\n\nReturns tasks that share the same job_id or are retries of the same task
|
|
15861
|
+
"description": "Get related task logs (same job_id or task_name).\n\nReturns tasks that share the same job_id or are retries of the same task.\n\nReturns:\n Array of related TaskLog objects (up to 10 most recent)",
|
|
15260
15862
|
"operationId": "cfg_tasks_logs_related_retrieve",
|
|
15261
15863
|
"parameters": [
|
|
15262
15864
|
{
|
|
@@ -15285,7 +15887,12 @@ export const OPENAPI_SCHEMA = {
|
|
|
15285
15887
|
{
|
|
15286
15888
|
"jwtAuth": []
|
|
15287
15889
|
},
|
|
15288
|
-
{
|
|
15890
|
+
{
|
|
15891
|
+
"cookieAuth": []
|
|
15892
|
+
},
|
|
15893
|
+
{
|
|
15894
|
+
"basicAuth": []
|
|
15895
|
+
}
|
|
15289
15896
|
],
|
|
15290
15897
|
"tags": [
|
|
15291
15898
|
"tasks"
|