@djangocfg/api 1.2.34 → 1.2.36
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 +3739 -3676
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +564 -295
- package/dist/index.d.ts +564 -295
- package/dist/index.mjs +3675 -3611
- package/dist/index.mjs.map +1 -1
- package/package.json +2 -2
- package/src/cfg/contexts/LeadsContext.tsx +11 -0
- package/src/cfg/contexts/NewsletterContext.tsx +19 -0
- package/src/cfg/contexts/SupportContext.tsx +3 -3
- package/src/cfg/contexts/index.ts +22 -2
- package/src/cfg/contexts/knowbase/DocumentsContext.tsx +4 -4
- package/src/cfg/contexts/knowbase/SessionsContext.tsx +2 -2
- package/src/cfg/contexts/payments/PaymentsContext.tsx +2 -2
- package/src/cfg/generated/_utils/fetchers/cfg__centrifugo__centrifugo_monitoring.ts +68 -3
- package/src/cfg/generated/_utils/fetchers/cfg__grpc__grpc_testing.ts +7 -7
- package/src/cfg/generated/_utils/fetchers/index.ts +0 -1
- package/src/cfg/generated/_utils/hooks/cfg__centrifugo__centrifugo_monitoring.ts +18 -3
- package/src/cfg/generated/_utils/hooks/cfg__grpc__grpc_testing.ts +5 -5
- package/src/cfg/generated/_utils/hooks/index.ts +0 -1
- package/src/cfg/generated/_utils/schemas/APIZonesSummary.schema.ts +1 -1
- package/src/cfg/generated/_utils/schemas/AppStatisticsData.schema.ts +2 -0
- package/src/cfg/generated/_utils/schemas/ArchiveItemChunk.schema.ts +1 -1
- package/src/cfg/generated/_utils/schemas/ArchiveItemChunkDetail.schema.ts +2 -2
- package/src/cfg/generated/_utils/schemas/ArchiveItemDetail.schema.ts +1 -1
- package/src/cfg/generated/_utils/schemas/ArchiveSearchResult.schema.ts +3 -3
- package/src/cfg/generated/_utils/schemas/ChannelList.schema.ts +2 -2
- package/src/cfg/generated/_utils/schemas/{ChannelStatsSerializer.schema.ts → ChannelStats.schema.ts} +4 -4
- package/src/cfg/generated/_utils/schemas/ChatMessage.schema.ts +1 -1
- package/src/cfg/generated/_utils/schemas/CommandCategory.schema.ts +21 -0
- package/src/cfg/generated/_utils/schemas/CommandExecuteRequestRequest.schema.ts +1 -1
- package/src/cfg/generated/_utils/schemas/CommandsSummary.schema.ts +2 -1
- package/src/cfg/generated/_utils/schemas/DjangoConfig.schema.ts +2 -1
- package/src/cfg/generated/_utils/schemas/Document.schema.ts +1 -1
- package/src/cfg/generated/_utils/schemas/DocumentArchiveDetail.schema.ts +2 -2
- package/src/cfg/generated/_utils/schemas/DocumentCreateRequest.schema.ts +1 -1
- package/src/cfg/generated/_utils/schemas/DocumentProcessingStatus.schema.ts +1 -1
- package/src/cfg/generated/_utils/schemas/DocumentRequest.schema.ts +1 -1
- package/src/cfg/generated/_utils/schemas/GRPCCallRequestRequest.schema.ts +2 -2
- package/src/cfg/generated/_utils/schemas/GRPCCallResponse.schema.ts +1 -1
- package/src/cfg/generated/_utils/schemas/GRPCExample.schema.ts +3 -3
- package/src/cfg/generated/_utils/schemas/JobDetail.schema.ts +2 -2
- package/src/cfg/generated/_utils/schemas/LeadSubmission.schema.ts +1 -1
- package/src/cfg/generated/_utils/schemas/LeadSubmissionError.schema.ts +1 -1
- package/src/cfg/generated/_utils/schemas/LeadSubmissionRequest.schema.ts +1 -1
- package/src/cfg/generated/_utils/schemas/ModelStatistics.schema.ts +23 -0
- package/src/cfg/generated/_utils/schemas/PaginatedGRPCTestLogList.schema.ts +24 -0
- package/src/cfg/generated/_utils/schemas/PatchedDocumentRequest.schema.ts +1 -1
- package/src/cfg/generated/_utils/schemas/PatchedLeadSubmissionRequest.schema.ts +1 -1
- package/src/cfg/generated/_utils/schemas/Publish.schema.ts +1 -1
- package/src/cfg/generated/_utils/schemas/RQConfig.schema.ts +2 -1
- package/src/cfg/generated/_utils/schemas/RQSchedule.schema.ts +1 -1
- package/src/cfg/generated/_utils/schemas/RedisQueueConfig.schema.ts +1 -1
- package/src/cfg/generated/_utils/schemas/RunDemoRequestRequest.schema.ts +1 -1
- package/src/cfg/generated/_utils/schemas/ScheduleCreateRequest.schema.ts +1 -1
- package/src/cfg/generated/_utils/schemas/ScheduleInfo.schema.ts +27 -0
- package/src/cfg/generated/_utils/schemas/ScheduledJob.schema.ts +1 -1
- package/src/cfg/generated/_utils/schemas/TestScenario.schema.ts +1 -1
- package/src/cfg/generated/_utils/schemas/TimelineItem.schema.ts +23 -0
- package/src/cfg/generated/_utils/schemas/TimelineResponse.schema.ts +22 -0
- package/src/cfg/generated/_utils/schemas/index.ts +7 -1
- package/src/cfg/generated/cfg__centrifugo__centrifugo_admin_api/models.ts +1 -1
- package/src/cfg/generated/cfg__centrifugo__centrifugo_monitoring/client.ts +27 -6
- package/src/cfg/generated/cfg__centrifugo__centrifugo_monitoring/models.ts +45 -21
- package/src/cfg/generated/cfg__dashboard__dashboard_api_zones/models.ts +1 -1
- package/src/cfg/generated/cfg__dashboard__dashboard_commands/models.ts +15 -2
- package/src/cfg/generated/cfg__dashboard__dashboard_config/models.ts +17 -16
- package/src/cfg/generated/cfg__dashboard__dashboard_overview/models.ts +20 -0
- package/src/cfg/generated/cfg__grpc__grpc_api_keys/models.ts +1 -1
- package/src/cfg/generated/cfg__grpc__grpc_testing/client.ts +4 -4
- package/src/cfg/generated/cfg__grpc__grpc_testing/models.ts +48 -23
- package/src/cfg/generated/cfg__knowbase/models.ts +15 -15
- package/src/cfg/generated/cfg__leads/models.ts +3 -3
- package/src/cfg/generated/cfg__leads__lead_submission/models.ts +2 -2
- package/src/cfg/generated/cfg__rq__rq_jobs/models.ts +5 -5
- package/src/cfg/generated/cfg__rq__rq_monitoring/models.ts +19 -2
- package/src/cfg/generated/cfg__rq__rq_queues/models.ts +1 -1
- package/src/cfg/generated/cfg__rq__rq_schedules/models.ts +7 -7
- package/src/cfg/generated/cfg__rq__rq_testing/models.ts +4 -4
- package/src/cfg/generated/client.ts +0 -3
- package/src/cfg/generated/index.ts +0 -5
- package/src/cfg/generated/schema.json +403 -181
- package/src/cfg/generated/_utils/fetchers/cfg__centrifugo.ts +0 -99
- package/src/cfg/generated/_utils/hooks/cfg__centrifugo.ts +0 -35
- package/src/cfg/generated/cfg__centrifugo/client.ts +0 -22
- package/src/cfg/generated/cfg__centrifugo/index.ts +0 -2
- package/src/cfg/generated/cfg__centrifugo/models.ts +0 -19
|
@@ -684,9 +684,20 @@
|
|
|
684
684
|
"/cfg/centrifugo/monitor/channels/": {
|
|
685
685
|
"get": {
|
|
686
686
|
"operationId": "cfg_centrifugo_monitor_channels_retrieve",
|
|
687
|
-
"description": "
|
|
687
|
+
"description": "Returns statistics grouped by channel.",
|
|
688
|
+
"summary": "Get channel statistics",
|
|
689
|
+
"parameters": [
|
|
690
|
+
{
|
|
691
|
+
"in": "query",
|
|
692
|
+
"name": "hours",
|
|
693
|
+
"schema": {
|
|
694
|
+
"type": "integer"
|
|
695
|
+
},
|
|
696
|
+
"description": "Statistics period in hours (default: 24)"
|
|
697
|
+
}
|
|
698
|
+
],
|
|
688
699
|
"tags": [
|
|
689
|
-
"
|
|
700
|
+
"Centrifugo Monitoring"
|
|
690
701
|
],
|
|
691
702
|
"security": [
|
|
692
703
|
{
|
|
@@ -704,7 +715,17 @@
|
|
|
704
715
|
"content": {
|
|
705
716
|
"application/json": {
|
|
706
717
|
"schema": {
|
|
707
|
-
"$ref": "#/components/schemas/
|
|
718
|
+
"$ref": "#/components/schemas/ChannelList"
|
|
719
|
+
}
|
|
720
|
+
}
|
|
721
|
+
},
|
|
722
|
+
"description": ""
|
|
723
|
+
},
|
|
724
|
+
"400": {
|
|
725
|
+
"content": {
|
|
726
|
+
"application/json": {
|
|
727
|
+
"schema": {
|
|
728
|
+
"description": "Invalid parameters"
|
|
708
729
|
}
|
|
709
730
|
}
|
|
710
731
|
},
|
|
@@ -893,8 +914,8 @@
|
|
|
893
914
|
"/cfg/centrifugo/monitor/timeline/": {
|
|
894
915
|
"get": {
|
|
895
916
|
"operationId": "cfg_centrifugo_monitor_timeline_retrieve",
|
|
896
|
-
"description": "Returns
|
|
897
|
-
"summary": "Get
|
|
917
|
+
"description": "Returns hourly or daily breakdown of publish counts for charts.",
|
|
918
|
+
"summary": "Get publish timeline",
|
|
898
919
|
"parameters": [
|
|
899
920
|
{
|
|
900
921
|
"in": "query",
|
|
@@ -902,7 +923,7 @@
|
|
|
902
923
|
"schema": {
|
|
903
924
|
"type": "integer"
|
|
904
925
|
},
|
|
905
|
-
"description": "
|
|
926
|
+
"description": "Time period in hours (default: 24)"
|
|
906
927
|
},
|
|
907
928
|
{
|
|
908
929
|
"in": "query",
|
|
@@ -932,7 +953,7 @@
|
|
|
932
953
|
"content": {
|
|
933
954
|
"application/json": {
|
|
934
955
|
"schema": {
|
|
935
|
-
"$ref": "#/components/schemas/
|
|
956
|
+
"$ref": "#/components/schemas/TimelineResponse"
|
|
936
957
|
}
|
|
937
958
|
}
|
|
938
959
|
},
|
|
@@ -3800,7 +3821,7 @@
|
|
|
3800
3821
|
},
|
|
3801
3822
|
"/cfg/grpc/test/logs/": {
|
|
3802
3823
|
"get": {
|
|
3803
|
-
"operationId": "
|
|
3824
|
+
"operationId": "cfg_grpc_test_logs_list",
|
|
3804
3825
|
"description": "Returns logs from test gRPC calls. Uses standard DRF pagination.",
|
|
3805
3826
|
"summary": "Get test logs",
|
|
3806
3827
|
"parameters": [
|
|
@@ -3812,6 +3833,24 @@
|
|
|
3812
3833
|
},
|
|
3813
3834
|
"description": "Filter by method name"
|
|
3814
3835
|
},
|
|
3836
|
+
{
|
|
3837
|
+
"name": "page",
|
|
3838
|
+
"required": false,
|
|
3839
|
+
"in": "query",
|
|
3840
|
+
"description": "A page number within the paginated result set.",
|
|
3841
|
+
"schema": {
|
|
3842
|
+
"type": "integer"
|
|
3843
|
+
}
|
|
3844
|
+
},
|
|
3845
|
+
{
|
|
3846
|
+
"name": "page_size",
|
|
3847
|
+
"required": false,
|
|
3848
|
+
"in": "query",
|
|
3849
|
+
"description": "Number of results to return per page.",
|
|
3850
|
+
"schema": {
|
|
3851
|
+
"type": "integer"
|
|
3852
|
+
}
|
|
3853
|
+
},
|
|
3815
3854
|
{
|
|
3816
3855
|
"in": "query",
|
|
3817
3856
|
"name": "service",
|
|
@@ -3848,7 +3887,7 @@
|
|
|
3848
3887
|
"content": {
|
|
3849
3888
|
"application/json": {
|
|
3850
3889
|
"schema": {
|
|
3851
|
-
"$ref": "#/components/schemas/
|
|
3890
|
+
"$ref": "#/components/schemas/PaginatedGRPCTestLogList"
|
|
3852
3891
|
}
|
|
3853
3892
|
}
|
|
3854
3893
|
},
|
|
@@ -11010,6 +11049,13 @@
|
|
|
11010
11049
|
"type": "string",
|
|
11011
11050
|
"description": "Human-readable app name"
|
|
11012
11051
|
},
|
|
11052
|
+
"models": {
|
|
11053
|
+
"type": "array",
|
|
11054
|
+
"items": {
|
|
11055
|
+
"$ref": "#/components/schemas/ModelStatistics"
|
|
11056
|
+
},
|
|
11057
|
+
"description": "List of model statistics"
|
|
11058
|
+
},
|
|
11013
11059
|
"total_records": {
|
|
11014
11060
|
"type": "integer",
|
|
11015
11061
|
"description": "Total records count"
|
|
@@ -11021,6 +11067,7 @@
|
|
|
11021
11067
|
},
|
|
11022
11068
|
"required": [
|
|
11023
11069
|
"model_count",
|
|
11070
|
+
"models",
|
|
11024
11071
|
"name",
|
|
11025
11072
|
"total_records"
|
|
11026
11073
|
]
|
|
@@ -11749,17 +11796,23 @@
|
|
|
11749
11796
|
},
|
|
11750
11797
|
"ipware_meta_precedence_order": {
|
|
11751
11798
|
"type": "array",
|
|
11752
|
-
"items": {
|
|
11799
|
+
"items": {
|
|
11800
|
+
"type": "string"
|
|
11801
|
+
},
|
|
11753
11802
|
"nullable": true
|
|
11754
11803
|
},
|
|
11755
11804
|
"allowed_ips": {
|
|
11756
11805
|
"type": "array",
|
|
11757
|
-
"items": {
|
|
11806
|
+
"items": {
|
|
11807
|
+
"type": "string"
|
|
11808
|
+
},
|
|
11758
11809
|
"nullable": true
|
|
11759
11810
|
},
|
|
11760
11811
|
"denied_ips": {
|
|
11761
11812
|
"type": "array",
|
|
11762
|
-
"items": {
|
|
11813
|
+
"items": {
|
|
11814
|
+
"type": "string"
|
|
11815
|
+
},
|
|
11763
11816
|
"nullable": true
|
|
11764
11817
|
},
|
|
11765
11818
|
"cache_name": {
|
|
@@ -12347,61 +12400,55 @@
|
|
|
12347
12400
|
"type": "object"
|
|
12348
12401
|
},
|
|
12349
12402
|
"CentrifugoOverviewStats": {
|
|
12403
|
+
"type": "object",
|
|
12350
12404
|
"description": "Overview statistics for Centrifugo publishes.",
|
|
12351
12405
|
"properties": {
|
|
12352
12406
|
"total": {
|
|
12353
|
-
"
|
|
12354
|
-
"
|
|
12355
|
-
"type": "integer"
|
|
12407
|
+
"type": "integer",
|
|
12408
|
+
"description": "Total publishes in period"
|
|
12356
12409
|
},
|
|
12357
12410
|
"successful": {
|
|
12358
|
-
"
|
|
12359
|
-
"
|
|
12360
|
-
"type": "integer"
|
|
12411
|
+
"type": "integer",
|
|
12412
|
+
"description": "Successful publishes"
|
|
12361
12413
|
},
|
|
12362
12414
|
"failed": {
|
|
12363
|
-
"
|
|
12364
|
-
"
|
|
12365
|
-
"type": "integer"
|
|
12415
|
+
"type": "integer",
|
|
12416
|
+
"description": "Failed publishes"
|
|
12366
12417
|
},
|
|
12367
12418
|
"timeout": {
|
|
12368
|
-
"
|
|
12369
|
-
"
|
|
12370
|
-
"type": "integer"
|
|
12419
|
+
"type": "integer",
|
|
12420
|
+
"description": "Timeout publishes"
|
|
12371
12421
|
},
|
|
12372
12422
|
"success_rate": {
|
|
12373
|
-
"
|
|
12374
|
-
"
|
|
12375
|
-
"
|
|
12423
|
+
"type": "number",
|
|
12424
|
+
"format": "double",
|
|
12425
|
+
"description": "Success rate percentage"
|
|
12376
12426
|
},
|
|
12377
12427
|
"avg_duration_ms": {
|
|
12378
|
-
"
|
|
12379
|
-
"
|
|
12380
|
-
"
|
|
12428
|
+
"type": "number",
|
|
12429
|
+
"format": "double",
|
|
12430
|
+
"description": "Average duration in milliseconds"
|
|
12381
12431
|
},
|
|
12382
12432
|
"avg_acks_received": {
|
|
12383
|
-
"
|
|
12384
|
-
"
|
|
12385
|
-
"
|
|
12433
|
+
"type": "number",
|
|
12434
|
+
"format": "double",
|
|
12435
|
+
"description": "Average ACKs received"
|
|
12386
12436
|
},
|
|
12387
12437
|
"period_hours": {
|
|
12388
|
-
"
|
|
12389
|
-
"
|
|
12390
|
-
"type": "integer"
|
|
12438
|
+
"type": "integer",
|
|
12439
|
+
"description": "Statistics period in hours"
|
|
12391
12440
|
}
|
|
12392
12441
|
},
|
|
12393
12442
|
"required": [
|
|
12394
|
-
"
|
|
12395
|
-
"
|
|
12443
|
+
"avg_acks_received",
|
|
12444
|
+
"avg_duration_ms",
|
|
12396
12445
|
"failed",
|
|
12397
|
-
"
|
|
12446
|
+
"period_hours",
|
|
12398
12447
|
"success_rate",
|
|
12399
|
-
"
|
|
12400
|
-
"
|
|
12401
|
-
"
|
|
12402
|
-
]
|
|
12403
|
-
"title": "CentrifugoOverviewStatsSerializer",
|
|
12404
|
-
"type": "object"
|
|
12448
|
+
"successful",
|
|
12449
|
+
"timeout",
|
|
12450
|
+
"total"
|
|
12451
|
+
]
|
|
12405
12452
|
},
|
|
12406
12453
|
"CentrifugoPresenceRequestRequest": {
|
|
12407
12454
|
"description": "Request to get channel presence.",
|
|
@@ -12660,86 +12707,71 @@
|
|
|
12660
12707
|
]
|
|
12661
12708
|
},
|
|
12662
12709
|
"ChannelList": {
|
|
12710
|
+
"type": "object",
|
|
12663
12711
|
"description": "List of channel statistics.",
|
|
12664
12712
|
"properties": {
|
|
12665
12713
|
"channels": {
|
|
12666
|
-
"
|
|
12714
|
+
"type": "array",
|
|
12667
12715
|
"items": {
|
|
12668
|
-
"$ref": "#/components/schemas/
|
|
12716
|
+
"$ref": "#/components/schemas/ChannelStats"
|
|
12669
12717
|
},
|
|
12670
|
-
"
|
|
12671
|
-
"type": "array"
|
|
12718
|
+
"description": "Channel statistics"
|
|
12672
12719
|
},
|
|
12673
12720
|
"total_channels": {
|
|
12674
|
-
"
|
|
12675
|
-
"
|
|
12676
|
-
"type": "integer"
|
|
12721
|
+
"type": "integer",
|
|
12722
|
+
"description": "Total number of channels"
|
|
12677
12723
|
}
|
|
12678
12724
|
},
|
|
12679
12725
|
"required": [
|
|
12680
12726
|
"channels",
|
|
12681
12727
|
"total_channels"
|
|
12682
|
-
]
|
|
12683
|
-
"title": "ChannelListSerializer",
|
|
12684
|
-
"type": "object"
|
|
12728
|
+
]
|
|
12685
12729
|
},
|
|
12686
|
-
"
|
|
12730
|
+
"ChannelStats": {
|
|
12731
|
+
"type": "object",
|
|
12687
12732
|
"description": "Statistics per channel.",
|
|
12688
12733
|
"properties": {
|
|
12689
12734
|
"channel": {
|
|
12690
|
-
"
|
|
12691
|
-
"
|
|
12692
|
-
"type": "string"
|
|
12735
|
+
"type": "string",
|
|
12736
|
+
"description": "Channel name"
|
|
12693
12737
|
},
|
|
12694
12738
|
"total": {
|
|
12695
|
-
"
|
|
12696
|
-
"
|
|
12697
|
-
"type": "integer"
|
|
12739
|
+
"type": "integer",
|
|
12740
|
+
"description": "Total publishes to this channel"
|
|
12698
12741
|
},
|
|
12699
12742
|
"successful": {
|
|
12700
|
-
"
|
|
12701
|
-
"
|
|
12702
|
-
"type": "integer"
|
|
12743
|
+
"type": "integer",
|
|
12744
|
+
"description": "Successful publishes"
|
|
12703
12745
|
},
|
|
12704
12746
|
"failed": {
|
|
12705
|
-
"
|
|
12706
|
-
"
|
|
12707
|
-
"type": "integer"
|
|
12747
|
+
"type": "integer",
|
|
12748
|
+
"description": "Failed publishes"
|
|
12708
12749
|
},
|
|
12709
12750
|
"avg_duration_ms": {
|
|
12710
|
-
"
|
|
12711
|
-
"
|
|
12712
|
-
"
|
|
12751
|
+
"type": "number",
|
|
12752
|
+
"format": "double",
|
|
12753
|
+
"description": "Average duration"
|
|
12713
12754
|
},
|
|
12714
12755
|
"avg_acks": {
|
|
12715
|
-
"
|
|
12716
|
-
"
|
|
12717
|
-
"
|
|
12756
|
+
"type": "number",
|
|
12757
|
+
"format": "double",
|
|
12758
|
+
"description": "Average ACKs received"
|
|
12718
12759
|
},
|
|
12719
12760
|
"last_activity_at": {
|
|
12720
|
-
"
|
|
12721
|
-
|
|
12722
|
-
|
|
12723
|
-
},
|
|
12724
|
-
{
|
|
12725
|
-
"type": "null"
|
|
12726
|
-
}
|
|
12727
|
-
],
|
|
12728
|
-
"default": null,
|
|
12729
|
-
"description": "Last activity timestamp (ISO format)",
|
|
12730
|
-
"title": "Last Activity At"
|
|
12761
|
+
"type": "string",
|
|
12762
|
+
"nullable": true,
|
|
12763
|
+
"description": "Last activity timestamp (ISO format)"
|
|
12731
12764
|
}
|
|
12732
12765
|
},
|
|
12733
12766
|
"required": [
|
|
12767
|
+
"avg_acks",
|
|
12768
|
+
"avg_duration_ms",
|
|
12734
12769
|
"channel",
|
|
12735
|
-
"total",
|
|
12736
|
-
"successful",
|
|
12737
12770
|
"failed",
|
|
12738
|
-
"
|
|
12739
|
-
"
|
|
12740
|
-
|
|
12741
|
-
|
|
12742
|
-
"type": "object"
|
|
12771
|
+
"last_activity_at",
|
|
12772
|
+
"successful",
|
|
12773
|
+
"total"
|
|
12774
|
+
]
|
|
12743
12775
|
},
|
|
12744
12776
|
"ChartData": {
|
|
12745
12777
|
"type": "object",
|
|
@@ -13255,6 +13287,27 @@
|
|
|
13255
13287
|
"name"
|
|
13256
13288
|
]
|
|
13257
13289
|
},
|
|
13290
|
+
"CommandCategory": {
|
|
13291
|
+
"type": "object",
|
|
13292
|
+
"description": "Category with commands.",
|
|
13293
|
+
"properties": {
|
|
13294
|
+
"category": {
|
|
13295
|
+
"type": "string",
|
|
13296
|
+
"description": "Category name"
|
|
13297
|
+
},
|
|
13298
|
+
"commands": {
|
|
13299
|
+
"type": "array",
|
|
13300
|
+
"items": {
|
|
13301
|
+
"$ref": "#/components/schemas/Command"
|
|
13302
|
+
},
|
|
13303
|
+
"description": "Commands in this category"
|
|
13304
|
+
}
|
|
13305
|
+
},
|
|
13306
|
+
"required": [
|
|
13307
|
+
"category",
|
|
13308
|
+
"commands"
|
|
13309
|
+
]
|
|
13310
|
+
},
|
|
13258
13311
|
"CommandExecuteRequestRequest": {
|
|
13259
13312
|
"type": "object",
|
|
13260
13313
|
"description": "Request serializer for command execution.",
|
|
@@ -13339,8 +13392,11 @@
|
|
|
13339
13392
|
}
|
|
13340
13393
|
},
|
|
13341
13394
|
"categorized": {
|
|
13342
|
-
"type": "
|
|
13343
|
-
"
|
|
13395
|
+
"type": "array",
|
|
13396
|
+
"items": {
|
|
13397
|
+
"$ref": "#/components/schemas/CommandCategory"
|
|
13398
|
+
},
|
|
13399
|
+
"description": "Commands grouped by category"
|
|
13344
13400
|
}
|
|
13345
13401
|
},
|
|
13346
13402
|
"required": [
|
|
@@ -13365,8 +13421,6 @@
|
|
|
13365
13421
|
"description": "User's DjangoConfig settings"
|
|
13366
13422
|
},
|
|
13367
13423
|
"django_settings": {
|
|
13368
|
-
"type": "object",
|
|
13369
|
-
"additionalProperties": {},
|
|
13370
13424
|
"description": "Complete Django settings (sanitized, contains mixed types)"
|
|
13371
13425
|
},
|
|
13372
13426
|
"_validation": {
|
|
@@ -13425,10 +13479,7 @@
|
|
|
13425
13479
|
},
|
|
13426
13480
|
"type_mismatches": {
|
|
13427
13481
|
"type": "array",
|
|
13428
|
-
"items": {
|
|
13429
|
-
"type": "object",
|
|
13430
|
-
"additionalProperties": {}
|
|
13431
|
-
},
|
|
13482
|
+
"items": {},
|
|
13432
13483
|
"description": "Fields with type mismatches"
|
|
13433
13484
|
},
|
|
13434
13485
|
"total_config_fields": {
|
|
@@ -13490,13 +13541,9 @@
|
|
|
13490
13541
|
"description": "Django-Constance dynamic settings configuration.",
|
|
13491
13542
|
"properties": {
|
|
13492
13543
|
"config": {
|
|
13493
|
-
"type": "object",
|
|
13494
|
-
"additionalProperties": {},
|
|
13495
13544
|
"nullable": true
|
|
13496
13545
|
},
|
|
13497
13546
|
"config_fieldsets": {
|
|
13498
|
-
"type": "object",
|
|
13499
|
-
"additionalProperties": {},
|
|
13500
13547
|
"nullable": true
|
|
13501
13548
|
},
|
|
13502
13549
|
"backend": {
|
|
@@ -13512,8 +13559,6 @@
|
|
|
13512
13559
|
"nullable": true
|
|
13513
13560
|
},
|
|
13514
13561
|
"additional_config": {
|
|
13515
|
-
"type": "object",
|
|
13516
|
-
"additionalProperties": {},
|
|
13517
13562
|
"nullable": true
|
|
13518
13563
|
}
|
|
13519
13564
|
}
|
|
@@ -13771,18 +13816,20 @@
|
|
|
13771
13816
|
"nullable": true
|
|
13772
13817
|
},
|
|
13773
13818
|
"options": {
|
|
13774
|
-
"type": "object",
|
|
13775
|
-
"additionalProperties": {},
|
|
13776
13819
|
"nullable": true
|
|
13777
13820
|
},
|
|
13778
13821
|
"apps": {
|
|
13779
13822
|
"type": "array",
|
|
13780
|
-
"items": {
|
|
13823
|
+
"items": {
|
|
13824
|
+
"type": "string"
|
|
13825
|
+
},
|
|
13781
13826
|
"nullable": true
|
|
13782
13827
|
},
|
|
13783
13828
|
"operations": {
|
|
13784
13829
|
"type": "array",
|
|
13785
|
-
"items": {
|
|
13830
|
+
"items": {
|
|
13831
|
+
"type": "string"
|
|
13832
|
+
},
|
|
13786
13833
|
"nullable": true
|
|
13787
13834
|
},
|
|
13788
13835
|
"migrate_to": {
|
|
@@ -13863,6 +13910,10 @@
|
|
|
13863
13910
|
"type": "boolean",
|
|
13864
13911
|
"nullable": true
|
|
13865
13912
|
},
|
|
13913
|
+
"enable_pool_cleanup": {
|
|
13914
|
+
"type": "boolean",
|
|
13915
|
+
"nullable": true
|
|
13916
|
+
},
|
|
13866
13917
|
"site_url": {
|
|
13867
13918
|
"type": "string",
|
|
13868
13919
|
"nullable": true
|
|
@@ -13893,7 +13944,9 @@
|
|
|
13893
13944
|
},
|
|
13894
13945
|
"project_apps": {
|
|
13895
13946
|
"type": "array",
|
|
13896
|
-
"items": {
|
|
13947
|
+
"items": {
|
|
13948
|
+
"type": "string"
|
|
13949
|
+
},
|
|
13897
13950
|
"nullable": true
|
|
13898
13951
|
},
|
|
13899
13952
|
"databases": {
|
|
@@ -13917,7 +13970,9 @@
|
|
|
13917
13970
|
},
|
|
13918
13971
|
"security_domains": {
|
|
13919
13972
|
"type": "array",
|
|
13920
|
-
"items": {
|
|
13973
|
+
"items": {
|
|
13974
|
+
"type": "string"
|
|
13975
|
+
},
|
|
13921
13976
|
"nullable": true
|
|
13922
13977
|
},
|
|
13923
13978
|
"ssl_redirect": {
|
|
@@ -13926,7 +13981,9 @@
|
|
|
13926
13981
|
},
|
|
13927
13982
|
"cors_allow_headers": {
|
|
13928
13983
|
"type": "array",
|
|
13929
|
-
"items": {
|
|
13984
|
+
"items": {
|
|
13985
|
+
"type": "string"
|
|
13986
|
+
},
|
|
13930
13987
|
"nullable": true
|
|
13931
13988
|
},
|
|
13932
13989
|
"email": {
|
|
@@ -14018,12 +14075,9 @@
|
|
|
14018
14075
|
"nullable": true
|
|
14019
14076
|
},
|
|
14020
14077
|
"crypto_fields": {
|
|
14021
|
-
"type": "object",
|
|
14022
|
-
"additionalProperties": {},
|
|
14023
14078
|
"nullable": true
|
|
14024
14079
|
},
|
|
14025
14080
|
"unfold": {
|
|
14026
|
-
"type": "string",
|
|
14027
14081
|
"nullable": true
|
|
14028
14082
|
},
|
|
14029
14083
|
"tailwind_app_name": {
|
|
@@ -14035,18 +14089,16 @@
|
|
|
14035
14089
|
"nullable": true
|
|
14036
14090
|
},
|
|
14037
14091
|
"limits": {
|
|
14038
|
-
"type": "object",
|
|
14039
|
-
"additionalProperties": {},
|
|
14040
14092
|
"nullable": true
|
|
14041
14093
|
},
|
|
14042
14094
|
"api_keys": {
|
|
14043
|
-
"type": "object",
|
|
14044
|
-
"additionalProperties": {},
|
|
14045
14095
|
"nullable": true
|
|
14046
14096
|
},
|
|
14047
14097
|
"custom_middleware": {
|
|
14048
14098
|
"type": "array",
|
|
14049
|
-
"items": {
|
|
14099
|
+
"items": {
|
|
14100
|
+
"type": "string"
|
|
14101
|
+
},
|
|
14050
14102
|
"nullable": true
|
|
14051
14103
|
},
|
|
14052
14104
|
"nextjs_admin": {
|
|
@@ -14059,7 +14111,9 @@
|
|
|
14059
14111
|
},
|
|
14060
14112
|
"admin_emails": {
|
|
14061
14113
|
"type": "array",
|
|
14062
|
-
"items": {
|
|
14114
|
+
"items": {
|
|
14115
|
+
"type": "string"
|
|
14116
|
+
},
|
|
14063
14117
|
"nullable": true
|
|
14064
14118
|
},
|
|
14065
14119
|
"constance": {
|
|
@@ -14110,7 +14164,9 @@
|
|
|
14110
14164
|
},
|
|
14111
14165
|
"exception_handlers": {
|
|
14112
14166
|
"type": "array",
|
|
14113
|
-
"items": {
|
|
14167
|
+
"items": {
|
|
14168
|
+
"type": "string"
|
|
14169
|
+
},
|
|
14114
14170
|
"nullable": true
|
|
14115
14171
|
},
|
|
14116
14172
|
"api_token": {
|
|
@@ -15439,7 +15495,9 @@
|
|
|
15439
15495
|
},
|
|
15440
15496
|
"interceptors": {
|
|
15441
15497
|
"type": "array",
|
|
15442
|
-
"items": {
|
|
15498
|
+
"items": {
|
|
15499
|
+
"type": "string"
|
|
15500
|
+
},
|
|
15443
15501
|
"nullable": true
|
|
15444
15502
|
}
|
|
15445
15503
|
}
|
|
@@ -16002,37 +16060,32 @@
|
|
|
16002
16060
|
]
|
|
16003
16061
|
},
|
|
16004
16062
|
"HealthCheck": {
|
|
16063
|
+
"type": "object",
|
|
16005
16064
|
"description": "Health check response.",
|
|
16006
16065
|
"properties": {
|
|
16007
16066
|
"status": {
|
|
16008
|
-
"
|
|
16009
|
-
"
|
|
16010
|
-
"type": "string"
|
|
16067
|
+
"type": "string",
|
|
16068
|
+
"description": "Health status: healthy or unhealthy"
|
|
16011
16069
|
},
|
|
16012
16070
|
"wrapper_url": {
|
|
16013
|
-
"
|
|
16014
|
-
"
|
|
16015
|
-
"type": "string"
|
|
16071
|
+
"type": "string",
|
|
16072
|
+
"description": "Configured wrapper URL"
|
|
16016
16073
|
},
|
|
16017
16074
|
"has_api_key": {
|
|
16018
|
-
"
|
|
16019
|
-
"
|
|
16020
|
-
"type": "boolean"
|
|
16075
|
+
"type": "boolean",
|
|
16076
|
+
"description": "Whether API key is configured"
|
|
16021
16077
|
},
|
|
16022
16078
|
"timestamp": {
|
|
16023
|
-
"
|
|
16024
|
-
"
|
|
16025
|
-
"type": "string"
|
|
16079
|
+
"type": "string",
|
|
16080
|
+
"description": "Current timestamp"
|
|
16026
16081
|
}
|
|
16027
16082
|
},
|
|
16028
16083
|
"required": [
|
|
16029
|
-
"status",
|
|
16030
|
-
"wrapper_url",
|
|
16031
16084
|
"has_api_key",
|
|
16032
|
-
"
|
|
16033
|
-
|
|
16034
|
-
|
|
16035
|
-
|
|
16085
|
+
"status",
|
|
16086
|
+
"timestamp",
|
|
16087
|
+
"wrapper_url"
|
|
16088
|
+
]
|
|
16036
16089
|
},
|
|
16037
16090
|
"JWTConfig": {
|
|
16038
16091
|
"type": "object",
|
|
@@ -16095,11 +16148,9 @@
|
|
|
16095
16148
|
"args": {
|
|
16096
16149
|
"type": "array",
|
|
16097
16150
|
"items": {},
|
|
16098
|
-
"description": "Function arguments"
|
|
16151
|
+
"description": "Function arguments (array of any JSON values)"
|
|
16099
16152
|
},
|
|
16100
16153
|
"kwargs": {
|
|
16101
|
-
"type": "object",
|
|
16102
|
-
"additionalProperties": {},
|
|
16103
16154
|
"description": "Function keyword arguments"
|
|
16104
16155
|
},
|
|
16105
16156
|
"created_at": {
|
|
@@ -16163,8 +16214,6 @@
|
|
|
16163
16214
|
"description": "Exception info if failed"
|
|
16164
16215
|
},
|
|
16165
16216
|
"meta": {
|
|
16166
|
-
"type": "object",
|
|
16167
|
-
"additionalProperties": {},
|
|
16168
16217
|
"description": "Job metadata"
|
|
16169
16218
|
},
|
|
16170
16219
|
"dependency_ids": {
|
|
@@ -16723,6 +16772,39 @@
|
|
|
16723
16772
|
"stats"
|
|
16724
16773
|
]
|
|
16725
16774
|
},
|
|
16775
|
+
"ModelStatistics": {
|
|
16776
|
+
"type": "object",
|
|
16777
|
+
"description": "Serializer for individual model statistics.",
|
|
16778
|
+
"properties": {
|
|
16779
|
+
"model_name": {
|
|
16780
|
+
"type": "string",
|
|
16781
|
+
"description": "Model name (key)"
|
|
16782
|
+
},
|
|
16783
|
+
"name": {
|
|
16784
|
+
"type": "string",
|
|
16785
|
+
"description": "Model verbose name"
|
|
16786
|
+
},
|
|
16787
|
+
"count": {
|
|
16788
|
+
"type": "integer",
|
|
16789
|
+
"description": "Number of records in this model"
|
|
16790
|
+
},
|
|
16791
|
+
"fields_count": {
|
|
16792
|
+
"type": "integer",
|
|
16793
|
+
"description": "Number of fields in model"
|
|
16794
|
+
},
|
|
16795
|
+
"admin_url": {
|
|
16796
|
+
"type": "string",
|
|
16797
|
+
"description": "Django admin URL name"
|
|
16798
|
+
}
|
|
16799
|
+
},
|
|
16800
|
+
"required": [
|
|
16801
|
+
"admin_url",
|
|
16802
|
+
"count",
|
|
16803
|
+
"fields_count",
|
|
16804
|
+
"model_name",
|
|
16805
|
+
"name"
|
|
16806
|
+
]
|
|
16807
|
+
},
|
|
16726
16808
|
"Newsletter": {
|
|
16727
16809
|
"type": "object",
|
|
16728
16810
|
"description": "Serializer for Newsletter model.",
|
|
@@ -16986,7 +17068,9 @@
|
|
|
16986
17068
|
},
|
|
16987
17069
|
"basic_auth": {
|
|
16988
17070
|
"type": "array",
|
|
16989
|
-
"items": {
|
|
17071
|
+
"items": {
|
|
17072
|
+
"type": "string"
|
|
17073
|
+
},
|
|
16990
17074
|
"nullable": true
|
|
16991
17075
|
},
|
|
16992
17076
|
"compression": {
|
|
@@ -17135,18 +17219,16 @@
|
|
|
17135
17219
|
"nullable": true
|
|
17136
17220
|
},
|
|
17137
17221
|
"additional_properties": {
|
|
17138
|
-
"type": "object",
|
|
17139
|
-
"additionalProperties": {},
|
|
17140
17222
|
"nullable": true
|
|
17141
17223
|
},
|
|
17142
17224
|
"templates": {
|
|
17143
17225
|
"type": "array",
|
|
17144
|
-
"items": {
|
|
17226
|
+
"items": {
|
|
17227
|
+
"type": "string"
|
|
17228
|
+
},
|
|
17145
17229
|
"nullable": true
|
|
17146
17230
|
},
|
|
17147
17231
|
"global_properties": {
|
|
17148
|
-
"type": "object",
|
|
17149
|
-
"additionalProperties": {},
|
|
17150
17232
|
"nullable": true
|
|
17151
17233
|
}
|
|
17152
17234
|
}
|
|
@@ -17718,6 +17800,69 @@
|
|
|
17718
17800
|
}
|
|
17719
17801
|
}
|
|
17720
17802
|
},
|
|
17803
|
+
"PaginatedGRPCTestLogList": {
|
|
17804
|
+
"type": "object",
|
|
17805
|
+
"required": [
|
|
17806
|
+
"count",
|
|
17807
|
+
"page",
|
|
17808
|
+
"pages",
|
|
17809
|
+
"page_size",
|
|
17810
|
+
"has_next",
|
|
17811
|
+
"has_previous",
|
|
17812
|
+
"results"
|
|
17813
|
+
],
|
|
17814
|
+
"properties": {
|
|
17815
|
+
"count": {
|
|
17816
|
+
"type": "integer",
|
|
17817
|
+
"description": "Total number of items across all pages",
|
|
17818
|
+
"example": 150
|
|
17819
|
+
},
|
|
17820
|
+
"page": {
|
|
17821
|
+
"type": "integer",
|
|
17822
|
+
"description": "Current page number (1-based)",
|
|
17823
|
+
"example": 2
|
|
17824
|
+
},
|
|
17825
|
+
"pages": {
|
|
17826
|
+
"type": "integer",
|
|
17827
|
+
"description": "Total number of pages",
|
|
17828
|
+
"example": 15
|
|
17829
|
+
},
|
|
17830
|
+
"page_size": {
|
|
17831
|
+
"type": "integer",
|
|
17832
|
+
"description": "Number of items per page",
|
|
17833
|
+
"example": 10
|
|
17834
|
+
},
|
|
17835
|
+
"has_next": {
|
|
17836
|
+
"type": "boolean",
|
|
17837
|
+
"description": "Whether there is a next page",
|
|
17838
|
+
"example": true
|
|
17839
|
+
},
|
|
17840
|
+
"has_previous": {
|
|
17841
|
+
"type": "boolean",
|
|
17842
|
+
"description": "Whether there is a previous page",
|
|
17843
|
+
"example": true
|
|
17844
|
+
},
|
|
17845
|
+
"next_page": {
|
|
17846
|
+
"type": "integer",
|
|
17847
|
+
"nullable": true,
|
|
17848
|
+
"description": "Next page number (null if no next page)",
|
|
17849
|
+
"example": 3
|
|
17850
|
+
},
|
|
17851
|
+
"previous_page": {
|
|
17852
|
+
"type": "integer",
|
|
17853
|
+
"nullable": true,
|
|
17854
|
+
"description": "Previous page number (null if no previous page)",
|
|
17855
|
+
"example": 1
|
|
17856
|
+
},
|
|
17857
|
+
"results": {
|
|
17858
|
+
"type": "array",
|
|
17859
|
+
"items": {
|
|
17860
|
+
"$ref": "#/components/schemas/GRPCTestLog"
|
|
17861
|
+
},
|
|
17862
|
+
"description": "Array of items for current page"
|
|
17863
|
+
}
|
|
17864
|
+
}
|
|
17865
|
+
},
|
|
17721
17866
|
"PaginatedJobListList": {
|
|
17722
17867
|
"type": "object",
|
|
17723
17868
|
"required": [
|
|
@@ -19531,7 +19676,8 @@
|
|
|
19531
19676
|
"type": "integer"
|
|
19532
19677
|
},
|
|
19533
19678
|
"acks_expected": {
|
|
19534
|
-
"type": "integer"
|
|
19679
|
+
"type": "integer",
|
|
19680
|
+
"nullable": true
|
|
19535
19681
|
},
|
|
19536
19682
|
"duration_ms": {
|
|
19537
19683
|
"type": "number",
|
|
@@ -19712,8 +19858,6 @@
|
|
|
19712
19858
|
"description": "Timestamp of oldest job in queue"
|
|
19713
19859
|
},
|
|
19714
19860
|
"connection_kwargs": {
|
|
19715
|
-
"type": "object",
|
|
19716
|
-
"additionalProperties": {},
|
|
19717
19861
|
"description": "Redis connection parameters"
|
|
19718
19862
|
},
|
|
19719
19863
|
"is_async": {
|
|
@@ -19860,8 +20004,6 @@
|
|
|
19860
20004
|
"description": "RQ enabled status"
|
|
19861
20005
|
},
|
|
19862
20006
|
"queues": {
|
|
19863
|
-
"type": "object",
|
|
19864
|
-
"additionalProperties": {},
|
|
19865
20007
|
"description": "Configured queues"
|
|
19866
20008
|
},
|
|
19867
20009
|
"async_mode": {
|
|
@@ -19886,7 +20028,9 @@
|
|
|
19886
20028
|
},
|
|
19887
20029
|
"schedules": {
|
|
19888
20030
|
"type": "array",
|
|
19889
|
-
"items": {
|
|
20031
|
+
"items": {
|
|
20032
|
+
"$ref": "#/components/schemas/ScheduleInfo"
|
|
20033
|
+
},
|
|
19890
20034
|
"description": "Scheduled tasks from django-cfg config"
|
|
19891
20035
|
}
|
|
19892
20036
|
},
|
|
@@ -19912,8 +20056,6 @@
|
|
|
19912
20056
|
"nullable": true
|
|
19913
20057
|
},
|
|
19914
20058
|
"kwargs": {
|
|
19915
|
-
"type": "object",
|
|
19916
|
-
"additionalProperties": {},
|
|
19917
20059
|
"nullable": true
|
|
19918
20060
|
},
|
|
19919
20061
|
"args": {
|
|
@@ -19922,8 +20064,6 @@
|
|
|
19922
20064
|
"nullable": true
|
|
19923
20065
|
},
|
|
19924
20066
|
"meta": {
|
|
19925
|
-
"type": "object",
|
|
19926
|
-
"additionalProperties": {},
|
|
19927
20067
|
"nullable": true
|
|
19928
20068
|
},
|
|
19929
20069
|
"repeat": {
|
|
@@ -20128,8 +20268,6 @@
|
|
|
20128
20268
|
"nullable": true
|
|
20129
20269
|
},
|
|
20130
20270
|
"sentinels": {
|
|
20131
|
-
"type": "array",
|
|
20132
|
-
"items": {},
|
|
20133
20271
|
"nullable": true
|
|
20134
20272
|
},
|
|
20135
20273
|
"master_name": {
|
|
@@ -20336,11 +20474,9 @@
|
|
|
20336
20474
|
"args": {
|
|
20337
20475
|
"type": "array",
|
|
20338
20476
|
"items": {},
|
|
20339
|
-
"description": "Task arguments"
|
|
20477
|
+
"description": "Task arguments (array of any JSON values)"
|
|
20340
20478
|
},
|
|
20341
20479
|
"kwargs": {
|
|
20342
|
-
"type": "object",
|
|
20343
|
-
"additionalProperties": {},
|
|
20344
20480
|
"description": "Task keyword arguments"
|
|
20345
20481
|
},
|
|
20346
20482
|
"timeout": {
|
|
@@ -20393,11 +20529,9 @@
|
|
|
20393
20529
|
"args": {
|
|
20394
20530
|
"type": "array",
|
|
20395
20531
|
"items": {},
|
|
20396
|
-
"description": "Function arguments"
|
|
20532
|
+
"description": "Function arguments (array of any JSON values)"
|
|
20397
20533
|
},
|
|
20398
20534
|
"kwargs": {
|
|
20399
|
-
"type": "object",
|
|
20400
|
-
"additionalProperties": {},
|
|
20401
20535
|
"description": "Function keyword arguments"
|
|
20402
20536
|
},
|
|
20403
20537
|
"queue_name": {
|
|
@@ -20451,6 +20585,51 @@
|
|
|
20451
20585
|
"func"
|
|
20452
20586
|
]
|
|
20453
20587
|
},
|
|
20588
|
+
"ScheduleInfo": {
|
|
20589
|
+
"type": "object",
|
|
20590
|
+
"description": "Schedule information in config response.",
|
|
20591
|
+
"properties": {
|
|
20592
|
+
"func": {
|
|
20593
|
+
"type": "string"
|
|
20594
|
+
},
|
|
20595
|
+
"queue": {
|
|
20596
|
+
"type": "string"
|
|
20597
|
+
},
|
|
20598
|
+
"cron": {
|
|
20599
|
+
"type": "string",
|
|
20600
|
+
"nullable": true
|
|
20601
|
+
},
|
|
20602
|
+
"interval": {
|
|
20603
|
+
"type": "integer",
|
|
20604
|
+
"nullable": true
|
|
20605
|
+
},
|
|
20606
|
+
"scheduled_time": {
|
|
20607
|
+
"type": "string",
|
|
20608
|
+
"format": "date-time",
|
|
20609
|
+
"nullable": true
|
|
20610
|
+
},
|
|
20611
|
+
"description": {
|
|
20612
|
+
"type": "string",
|
|
20613
|
+
"nullable": true
|
|
20614
|
+
},
|
|
20615
|
+
"timeout": {
|
|
20616
|
+
"type": "integer",
|
|
20617
|
+
"nullable": true
|
|
20618
|
+
},
|
|
20619
|
+
"result_ttl": {
|
|
20620
|
+
"type": "integer",
|
|
20621
|
+
"nullable": true
|
|
20622
|
+
},
|
|
20623
|
+
"repeat": {
|
|
20624
|
+
"type": "integer",
|
|
20625
|
+
"nullable": true
|
|
20626
|
+
}
|
|
20627
|
+
},
|
|
20628
|
+
"required": [
|
|
20629
|
+
"func",
|
|
20630
|
+
"queue"
|
|
20631
|
+
]
|
|
20632
|
+
},
|
|
20454
20633
|
"ScheduledJob": {
|
|
20455
20634
|
"type": "object",
|
|
20456
20635
|
"description": "Serializer for scheduled job information.",
|
|
@@ -20466,11 +20645,9 @@
|
|
|
20466
20645
|
"args": {
|
|
20467
20646
|
"type": "array",
|
|
20468
20647
|
"items": {},
|
|
20469
|
-
"description": "Function arguments"
|
|
20648
|
+
"description": "Function arguments (array of any JSON values)"
|
|
20470
20649
|
},
|
|
20471
20650
|
"kwargs": {
|
|
20472
|
-
"type": "object",
|
|
20473
|
-
"additionalProperties": {},
|
|
20474
20651
|
"description": "Function keyword arguments"
|
|
20475
20652
|
},
|
|
20476
20653
|
"queue_name": {
|
|
@@ -20520,8 +20697,6 @@
|
|
|
20520
20697
|
"description": "Job creation time"
|
|
20521
20698
|
},
|
|
20522
20699
|
"meta": {
|
|
20523
|
-
"type": "object",
|
|
20524
|
-
"additionalProperties": {},
|
|
20525
20700
|
"description": "Job metadata"
|
|
20526
20701
|
}
|
|
20527
20702
|
},
|
|
@@ -21382,11 +21557,9 @@
|
|
|
21382
21557
|
"default_args": {
|
|
21383
21558
|
"type": "array",
|
|
21384
21559
|
"items": {},
|
|
21385
|
-
"description": "Default arguments"
|
|
21560
|
+
"description": "Default arguments (array of any JSON values)"
|
|
21386
21561
|
},
|
|
21387
21562
|
"default_kwargs": {
|
|
21388
|
-
"type": "object",
|
|
21389
|
-
"additionalProperties": {},
|
|
21390
21563
|
"description": "Default keyword arguments"
|
|
21391
21564
|
},
|
|
21392
21565
|
"estimated_duration": {
|
|
@@ -21427,8 +21600,6 @@
|
|
|
21427
21600
|
"description": "Number of items affected"
|
|
21428
21601
|
},
|
|
21429
21602
|
"metadata": {
|
|
21430
|
-
"type": "object",
|
|
21431
|
-
"additionalProperties": {},
|
|
21432
21603
|
"description": "Additional metadata"
|
|
21433
21604
|
}
|
|
21434
21605
|
},
|
|
@@ -21512,6 +21683,57 @@
|
|
|
21512
21683
|
"user"
|
|
21513
21684
|
]
|
|
21514
21685
|
},
|
|
21686
|
+
"TimelineItem": {
|
|
21687
|
+
"type": "object",
|
|
21688
|
+
"description": "Single timeline data point for DRF.",
|
|
21689
|
+
"properties": {
|
|
21690
|
+
"timestamp": {
|
|
21691
|
+
"type": "string"
|
|
21692
|
+
},
|
|
21693
|
+
"count": {
|
|
21694
|
+
"type": "integer"
|
|
21695
|
+
},
|
|
21696
|
+
"successful": {
|
|
21697
|
+
"type": "integer"
|
|
21698
|
+
},
|
|
21699
|
+
"failed": {
|
|
21700
|
+
"type": "integer"
|
|
21701
|
+
},
|
|
21702
|
+
"timeout": {
|
|
21703
|
+
"type": "integer"
|
|
21704
|
+
}
|
|
21705
|
+
},
|
|
21706
|
+
"required": [
|
|
21707
|
+
"count",
|
|
21708
|
+
"failed",
|
|
21709
|
+
"successful",
|
|
21710
|
+
"timeout",
|
|
21711
|
+
"timestamp"
|
|
21712
|
+
]
|
|
21713
|
+
},
|
|
21714
|
+
"TimelineResponse": {
|
|
21715
|
+
"type": "object",
|
|
21716
|
+
"description": "Timeline response with hourly/daily breakdown for DRF.",
|
|
21717
|
+
"properties": {
|
|
21718
|
+
"timeline": {
|
|
21719
|
+
"type": "array",
|
|
21720
|
+
"items": {
|
|
21721
|
+
"$ref": "#/components/schemas/TimelineItem"
|
|
21722
|
+
}
|
|
21723
|
+
},
|
|
21724
|
+
"period_hours": {
|
|
21725
|
+
"type": "integer"
|
|
21726
|
+
},
|
|
21727
|
+
"interval": {
|
|
21728
|
+
"type": "string"
|
|
21729
|
+
}
|
|
21730
|
+
},
|
|
21731
|
+
"required": [
|
|
21732
|
+
"interval",
|
|
21733
|
+
"period_hours",
|
|
21734
|
+
"timeline"
|
|
21735
|
+
]
|
|
21736
|
+
},
|
|
21515
21737
|
"TokenRefresh": {
|
|
21516
21738
|
"type": "object",
|
|
21517
21739
|
"properties": {
|