@djangocfg/api 1.2.6 → 1.2.7

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (82) hide show
  1. package/dist/index.cjs +2577 -1573
  2. package/dist/index.cjs.map +1 -1
  3. package/dist/index.d.cts +2141 -820
  4. package/dist/index.d.ts +2141 -820
  5. package/dist/index.mjs +2487 -1497
  6. package/dist/index.mjs.map +1 -1
  7. package/package.json +2 -2
  8. package/src/cfg/generated/_utils/fetchers/cfg__accounts.ts +2 -3
  9. package/src/cfg/generated/_utils/fetchers/cfg__accounts__auth.ts +1 -2
  10. package/src/cfg/generated/_utils/fetchers/cfg__accounts__user_profile.ts +6 -7
  11. package/src/cfg/generated/_utils/fetchers/cfg__centrifugo.ts +2 -3
  12. package/src/cfg/generated/_utils/fetchers/cfg__centrifugo__centrifugo_admin_api.ts +12 -13
  13. package/src/cfg/generated/_utils/fetchers/cfg__centrifugo__centrifugo_monitoring.ts +8 -9
  14. package/src/cfg/generated/_utils/fetchers/cfg__centrifugo__centrifugo_testing.ts +8 -9
  15. package/src/cfg/generated/_utils/fetchers/cfg__dashboard__dashboard_activity.ts +61 -0
  16. package/src/cfg/generated/_utils/fetchers/cfg__dashboard__dashboard_api_zones.ts +62 -0
  17. package/src/cfg/generated/_utils/fetchers/cfg__dashboard__dashboard_charts.ts +90 -0
  18. package/src/cfg/generated/_utils/fetchers/cfg__dashboard__dashboard_commands.ts +62 -0
  19. package/src/cfg/generated/_utils/fetchers/cfg__dashboard__dashboard_overview.ts +48 -0
  20. package/src/cfg/generated/_utils/fetchers/cfg__dashboard__dashboard_statistics.ts +76 -0
  21. package/src/cfg/generated/_utils/fetchers/cfg__dashboard__dashboard_system.ts +63 -0
  22. package/src/cfg/generated/_utils/fetchers/cfg__endpoints.ts +3 -4
  23. package/src/cfg/generated/_utils/fetchers/cfg__health.ts +2 -3
  24. package/src/cfg/generated/_utils/fetchers/cfg__knowbase.ts +57 -58
  25. package/src/cfg/generated/_utils/fetchers/cfg__leads.ts +6 -7
  26. package/src/cfg/generated/_utils/fetchers/cfg__leads__lead_submission.ts +1 -2
  27. package/src/cfg/generated/_utils/fetchers/cfg__newsletter.ts +3 -4
  28. package/src/cfg/generated/_utils/fetchers/cfg__newsletter__bulk_email.ts +1 -2
  29. package/src/cfg/generated/_utils/fetchers/cfg__newsletter__campaigns.ts +6 -7
  30. package/src/cfg/generated/_utils/fetchers/cfg__newsletter__logs.ts +1 -2
  31. package/src/cfg/generated/_utils/fetchers/cfg__newsletter__newsletters.ts +2 -3
  32. package/src/cfg/generated/_utils/fetchers/cfg__newsletter__subscriptions.ts +3 -4
  33. package/src/cfg/generated/_utils/fetchers/cfg__newsletter__testing.ts +1 -2
  34. package/src/cfg/generated/_utils/fetchers/cfg__payments.ts +8 -9
  35. package/src/cfg/generated/_utils/fetchers/cfg__support.ts +12 -13
  36. package/src/cfg/generated/_utils/fetchers/cfg__tasks.ts +10 -11
  37. package/src/cfg/generated/_utils/fetchers/index.ts +7 -1
  38. package/src/cfg/generated/_utils/hooks/cfg__dashboard__dashboard_activity.ts +49 -0
  39. package/src/cfg/generated/_utils/hooks/cfg__dashboard__dashboard_api_zones.ts +50 -0
  40. package/src/cfg/generated/_utils/hooks/cfg__dashboard__dashboard_charts.ts +78 -0
  41. package/src/cfg/generated/_utils/hooks/cfg__dashboard__dashboard_commands.ts +50 -0
  42. package/src/cfg/generated/_utils/hooks/cfg__dashboard__dashboard_overview.ts +36 -0
  43. package/src/cfg/generated/_utils/hooks/cfg__dashboard__dashboard_statistics.ts +64 -0
  44. package/src/cfg/generated/_utils/hooks/cfg__dashboard__dashboard_system.ts +51 -0
  45. package/src/cfg/generated/_utils/hooks/index.ts +7 -1
  46. package/src/cfg/generated/_utils/schemas/APIZone.schema.ts +27 -0
  47. package/src/cfg/generated/_utils/schemas/APIZonesSummary.schema.ts +21 -0
  48. package/src/cfg/generated/_utils/schemas/ActivityTrackerDay.schema.ts +23 -0
  49. package/src/cfg/generated/_utils/schemas/ChartData.schema.ts +21 -0
  50. package/src/cfg/generated/_utils/schemas/ChartDataset.schema.ts +24 -0
  51. package/src/cfg/generated/_utils/schemas/Command.schema.ts +23 -0
  52. package/src/cfg/generated/_utils/schemas/CommandsSummary.schema.ts +25 -0
  53. package/src/cfg/generated/_utils/schemas/RecentUser.schema.ts +26 -0
  54. package/src/cfg/generated/_utils/schemas/index.ts +8 -0
  55. package/src/cfg/generated/cfg__dashboard__dashboard_activity/client.ts +45 -0
  56. package/src/cfg/generated/cfg__dashboard__dashboard_activity/models.ts +0 -0
  57. package/src/cfg/generated/cfg__dashboard__dashboard_api_zones/client.ts +34 -0
  58. package/src/cfg/generated/cfg__dashboard__dashboard_api_zones/index.ts +2 -0
  59. package/src/cfg/generated/cfg__dashboard__dashboard_api_zones/models.ts +27 -0
  60. package/src/cfg/generated/cfg__dashboard__dashboard_charts/client.ts +98 -0
  61. package/src/cfg/generated/cfg__dashboard__dashboard_charts/index.ts +2 -0
  62. package/src/cfg/generated/cfg__dashboard__dashboard_charts/models.ts +24 -0
  63. package/src/cfg/generated/cfg__dashboard__dashboard_commands/client.ts +34 -0
  64. package/src/cfg/generated/cfg__dashboard__dashboard_commands/index.ts +2 -0
  65. package/src/cfg/generated/cfg__dashboard__dashboard_commands/models.ts +27 -0
  66. package/src/cfg/generated/cfg__dashboard__dashboard_overview/client.ts +25 -0
  67. package/src/cfg/generated/cfg__dashboard__dashboard_overview/index.ts +2 -0
  68. package/src/cfg/generated/cfg__dashboard__dashboard_overview/models.ts +23 -0
  69. package/src/cfg/generated/cfg__dashboard__dashboard_statistics/client.ts +44 -0
  70. package/src/cfg/generated/cfg__dashboard__dashboard_statistics/index.ts +2 -0
  71. package/src/cfg/generated/cfg__dashboard__dashboard_statistics/models.ts +16 -0
  72. package/src/cfg/generated/cfg__dashboard__dashboard_system/client.ts +34 -0
  73. package/src/cfg/generated/cfg__dashboard__dashboard_system/index.ts +2 -0
  74. package/src/cfg/generated/{cfg__dashboard → cfg__dashboard__dashboard_system}/models.ts +0 -39
  75. package/src/cfg/generated/client.ts +32 -12
  76. package/src/cfg/generated/http.ts +8 -3
  77. package/src/cfg/generated/index.ts +35 -5
  78. package/src/cfg/generated/schema.ts +574 -8
  79. package/src/cfg/generated/_utils/fetchers/cfg__dashboard.ts +0 -150
  80. package/src/cfg/generated/_utils/hooks/cfg__dashboard.ts +0 -137
  81. package/src/cfg/generated/cfg__dashboard/client.ts +0 -106
  82. /package/src/cfg/generated/{cfg__dashboard → cfg__dashboard__dashboard_activity}/index.ts +0 -0
@@ -61,6 +61,73 @@ export const OPENAPI_SCHEMA = {
61
61
  ],
62
62
  "type": "object"
63
63
  },
64
+ "APIZone": {
65
+ "description": "OpenAPI zone/group serializer.",
66
+ "properties": {
67
+ "api_url": {
68
+ "type": "string"
69
+ },
70
+ "app_count": {
71
+ "type": "integer"
72
+ },
73
+ "apps": {
74
+ "items": {
75
+ "type": "string"
76
+ },
77
+ "type": "array"
78
+ },
79
+ "description": {
80
+ "type": "string"
81
+ },
82
+ "endpoint_count": {
83
+ "type": "integer"
84
+ },
85
+ "name": {
86
+ "type": "string"
87
+ },
88
+ "schema_url": {
89
+ "type": "string"
90
+ },
91
+ "status": {
92
+ "type": "string"
93
+ },
94
+ "title": {
95
+ "type": "string"
96
+ }
97
+ },
98
+ "required": [
99
+ "api_url",
100
+ "app_count",
101
+ "apps",
102
+ "description",
103
+ "endpoint_count",
104
+ "name",
105
+ "schema_url",
106
+ "status",
107
+ "title"
108
+ ],
109
+ "type": "object"
110
+ },
111
+ "APIZonesSummary": {
112
+ "description": "API zones summary serializer.",
113
+ "properties": {
114
+ "summary": {
115
+ "additionalProperties": {},
116
+ "type": "object"
117
+ },
118
+ "zones": {
119
+ "items": {
120
+ "$ref": "#/components/schemas/APIZone"
121
+ },
122
+ "type": "array"
123
+ }
124
+ },
125
+ "required": [
126
+ "summary",
127
+ "zones"
128
+ ],
129
+ "type": "object"
130
+ },
64
131
  "ActivityEntry": {
65
132
  "description": "Serializer for recent activity entries.",
66
133
  "properties": {
@@ -104,6 +171,35 @@ export const OPENAPI_SCHEMA = {
104
171
  ],
105
172
  "type": "object"
106
173
  },
174
+ "ActivityTrackerDay": {
175
+ "description": "Activity tracker single day serializer.",
176
+ "properties": {
177
+ "color": {
178
+ "type": "string"
179
+ },
180
+ "count": {
181
+ "type": "integer"
182
+ },
183
+ "date": {
184
+ "format": "date",
185
+ "type": "string"
186
+ },
187
+ "level": {
188
+ "type": "integer"
189
+ },
190
+ "tooltip": {
191
+ "type": "string"
192
+ }
193
+ },
194
+ "required": [
195
+ "color",
196
+ "count",
197
+ "date",
198
+ "level",
199
+ "tooltip"
200
+ ],
201
+ "type": "object"
202
+ },
107
203
  "AppStatistics": {
108
204
  "description": "Serializer for application-specific statistics.",
109
205
  "properties": {
@@ -1648,6 +1744,63 @@ export const OPENAPI_SCHEMA = {
1648
1744
  "title": "ChannelStatsSerializer",
1649
1745
  "type": "object"
1650
1746
  },
1747
+ "ChartData": {
1748
+ "description": "Chart.js data structure serializer.",
1749
+ "properties": {
1750
+ "datasets": {
1751
+ "items": {
1752
+ "$ref": "#/components/schemas/ChartDataset"
1753
+ },
1754
+ "type": "array"
1755
+ },
1756
+ "labels": {
1757
+ "items": {
1758
+ "type": "string"
1759
+ },
1760
+ "type": "array"
1761
+ }
1762
+ },
1763
+ "required": [
1764
+ "datasets",
1765
+ "labels"
1766
+ ],
1767
+ "type": "object"
1768
+ },
1769
+ "ChartDataset": {
1770
+ "description": "Chart.js dataset serializer.",
1771
+ "properties": {
1772
+ "backgroundColor": {
1773
+ "type": "string"
1774
+ },
1775
+ "borderColor": {
1776
+ "type": "string"
1777
+ },
1778
+ "data": {
1779
+ "items": {
1780
+ "type": "integer"
1781
+ },
1782
+ "type": "array"
1783
+ },
1784
+ "fill": {
1785
+ "type": "boolean"
1786
+ },
1787
+ "label": {
1788
+ "type": "string"
1789
+ },
1790
+ "tension": {
1791
+ "format": "double",
1792
+ "type": "number"
1793
+ }
1794
+ },
1795
+ "required": [
1796
+ "backgroundColor",
1797
+ "borderColor",
1798
+ "data",
1799
+ "label",
1800
+ "tension"
1801
+ ],
1802
+ "type": "object"
1803
+ },
1651
1804
  "ChatHistory": {
1652
1805
  "description": "Chat history response serializer.",
1653
1806
  "properties": {
@@ -2056,6 +2209,73 @@ export const OPENAPI_SCHEMA = {
2056
2209
  ],
2057
2210
  "type": "object"
2058
2211
  },
2212
+ "Command": {
2213
+ "description": "Django management command serializer.",
2214
+ "properties": {
2215
+ "app": {
2216
+ "type": "string"
2217
+ },
2218
+ "help": {
2219
+ "type": "string"
2220
+ },
2221
+ "is_core": {
2222
+ "type": "boolean"
2223
+ },
2224
+ "is_custom": {
2225
+ "type": "boolean"
2226
+ },
2227
+ "name": {
2228
+ "type": "string"
2229
+ }
2230
+ },
2231
+ "required": [
2232
+ "app",
2233
+ "help",
2234
+ "is_core",
2235
+ "is_custom",
2236
+ "name"
2237
+ ],
2238
+ "type": "object"
2239
+ },
2240
+ "CommandsSummary": {
2241
+ "description": "Commands summary serializer.",
2242
+ "properties": {
2243
+ "categories": {
2244
+ "items": {
2245
+ "type": "string"
2246
+ },
2247
+ "type": "array"
2248
+ },
2249
+ "categorized": {
2250
+ "additionalProperties": {},
2251
+ "type": "object"
2252
+ },
2253
+ "commands": {
2254
+ "items": {
2255
+ "$ref": "#/components/schemas/Command"
2256
+ },
2257
+ "type": "array"
2258
+ },
2259
+ "core_commands": {
2260
+ "type": "integer"
2261
+ },
2262
+ "custom_commands": {
2263
+ "type": "integer"
2264
+ },
2265
+ "total_commands": {
2266
+ "type": "integer"
2267
+ }
2268
+ },
2269
+ "required": [
2270
+ "categories",
2271
+ "categorized",
2272
+ "commands",
2273
+ "core_commands",
2274
+ "custom_commands",
2275
+ "total_commands"
2276
+ ],
2277
+ "type": "object"
2278
+ },
2059
2279
  "ConnectionTokenRequestRequest": {
2060
2280
  "description": "Request model for connection token generation.",
2061
2281
  "properties": {
@@ -6105,6 +6325,48 @@ export const OPENAPI_SCHEMA = {
6105
6325
  "title": "RecentPublishesSerializer",
6106
6326
  "type": "object"
6107
6327
  },
6328
+ "RecentUser": {
6329
+ "description": "Recent user serializer.",
6330
+ "properties": {
6331
+ "date_joined": {
6332
+ "type": "string"
6333
+ },
6334
+ "email": {
6335
+ "format": "email",
6336
+ "type": "string"
6337
+ },
6338
+ "id": {
6339
+ "type": "integer"
6340
+ },
6341
+ "is_active": {
6342
+ "type": "boolean"
6343
+ },
6344
+ "is_staff": {
6345
+ "type": "boolean"
6346
+ },
6347
+ "is_superuser": {
6348
+ "type": "boolean"
6349
+ },
6350
+ "last_login": {
6351
+ "nullable": true,
6352
+ "type": "string"
6353
+ },
6354
+ "username": {
6355
+ "type": "string"
6356
+ }
6357
+ },
6358
+ "required": [
6359
+ "date_joined",
6360
+ "email",
6361
+ "id",
6362
+ "is_active",
6363
+ "is_staff",
6364
+ "is_superuser",
6365
+ "last_login",
6366
+ "username"
6367
+ ],
6368
+ "type": "object"
6369
+ },
6108
6370
  "SendCampaignRequest": {
6109
6371
  "description": "Simple serializer for sending campaign.",
6110
6372
  "properties": {
@@ -9427,7 +9689,7 @@ export const OPENAPI_SCHEMA = {
9427
9689
  ],
9428
9690
  "summary": "Get quick actions",
9429
9691
  "tags": [
9430
- "dashboard"
9692
+ "Dashboard - Activity"
9431
9693
  ],
9432
9694
  "x-async-capable": false
9433
9695
  }
@@ -9472,7 +9734,246 @@ export const OPENAPI_SCHEMA = {
9472
9734
  ],
9473
9735
  "summary": "Get recent activity",
9474
9736
  "tags": [
9475
- "dashboard"
9737
+ "Dashboard - Activity"
9738
+ ],
9739
+ "x-async-capable": false
9740
+ }
9741
+ },
9742
+ "/cfg/dashboard/api/charts/activity/": {
9743
+ "get": {
9744
+ "description": "Retrieve user activity data for chart visualization",
9745
+ "operationId": "cfg_dashboard_api_charts_activity_retrieve",
9746
+ "parameters": [
9747
+ {
9748
+ "description": "Number of days to include",
9749
+ "in": "query",
9750
+ "name": "days",
9751
+ "schema": {
9752
+ "default": 7,
9753
+ "type": "integer"
9754
+ }
9755
+ }
9756
+ ],
9757
+ "responses": {
9758
+ "200": {
9759
+ "content": {
9760
+ "application/json": {
9761
+ "schema": {
9762
+ "$ref": "#/components/schemas/ChartData"
9763
+ }
9764
+ }
9765
+ },
9766
+ "description": ""
9767
+ }
9768
+ },
9769
+ "security": [
9770
+ {
9771
+ "cookieAuth": []
9772
+ },
9773
+ {
9774
+ "basicAuth": []
9775
+ }
9776
+ ],
9777
+ "summary": "Get user activity chart",
9778
+ "tags": [
9779
+ "Dashboard - Charts"
9780
+ ],
9781
+ "x-async-capable": false
9782
+ }
9783
+ },
9784
+ "/cfg/dashboard/api/charts/recent-users/": {
9785
+ "get": {
9786
+ "description": "Retrieve list of recently registered users",
9787
+ "operationId": "cfg_dashboard_api_charts_recent_users_list",
9788
+ "parameters": [
9789
+ {
9790
+ "description": "Maximum number of users to return",
9791
+ "in": "query",
9792
+ "name": "limit",
9793
+ "schema": {
9794
+ "default": 10,
9795
+ "type": "integer"
9796
+ }
9797
+ }
9798
+ ],
9799
+ "responses": {
9800
+ "200": {
9801
+ "content": {
9802
+ "application/json": {
9803
+ "schema": {
9804
+ "items": {
9805
+ "$ref": "#/components/schemas/RecentUser"
9806
+ },
9807
+ "type": "array"
9808
+ }
9809
+ }
9810
+ },
9811
+ "description": ""
9812
+ }
9813
+ },
9814
+ "security": [
9815
+ {
9816
+ "cookieAuth": []
9817
+ },
9818
+ {
9819
+ "basicAuth": []
9820
+ }
9821
+ ],
9822
+ "summary": "Get recent users",
9823
+ "tags": [
9824
+ "Dashboard - Charts"
9825
+ ],
9826
+ "x-async-capable": false
9827
+ }
9828
+ },
9829
+ "/cfg/dashboard/api/charts/registrations/": {
9830
+ "get": {
9831
+ "description": "Retrieve user registration data for chart visualization",
9832
+ "operationId": "cfg_dashboard_api_charts_registrations_retrieve",
9833
+ "parameters": [
9834
+ {
9835
+ "description": "Number of days to include",
9836
+ "in": "query",
9837
+ "name": "days",
9838
+ "schema": {
9839
+ "default": 7,
9840
+ "type": "integer"
9841
+ }
9842
+ }
9843
+ ],
9844
+ "responses": {
9845
+ "200": {
9846
+ "content": {
9847
+ "application/json": {
9848
+ "schema": {
9849
+ "$ref": "#/components/schemas/ChartData"
9850
+ }
9851
+ }
9852
+ },
9853
+ "description": ""
9854
+ }
9855
+ },
9856
+ "security": [
9857
+ {
9858
+ "cookieAuth": []
9859
+ },
9860
+ {
9861
+ "basicAuth": []
9862
+ }
9863
+ ],
9864
+ "summary": "Get user registration chart",
9865
+ "tags": [
9866
+ "Dashboard - Charts"
9867
+ ],
9868
+ "x-async-capable": false
9869
+ }
9870
+ },
9871
+ "/cfg/dashboard/api/charts/tracker/": {
9872
+ "get": {
9873
+ "description": "Retrieve activity tracker data (GitHub-style contribution graph)",
9874
+ "operationId": "cfg_dashboard_api_charts_tracker_list",
9875
+ "parameters": [
9876
+ {
9877
+ "description": "Number of weeks to include",
9878
+ "in": "query",
9879
+ "name": "weeks",
9880
+ "schema": {
9881
+ "default": 52,
9882
+ "type": "integer"
9883
+ }
9884
+ }
9885
+ ],
9886
+ "responses": {
9887
+ "200": {
9888
+ "content": {
9889
+ "application/json": {
9890
+ "schema": {
9891
+ "items": {
9892
+ "$ref": "#/components/schemas/ActivityTrackerDay"
9893
+ },
9894
+ "type": "array"
9895
+ }
9896
+ }
9897
+ },
9898
+ "description": ""
9899
+ }
9900
+ },
9901
+ "security": [
9902
+ {
9903
+ "cookieAuth": []
9904
+ },
9905
+ {
9906
+ "basicAuth": []
9907
+ }
9908
+ ],
9909
+ "summary": "Get activity tracker",
9910
+ "tags": [
9911
+ "Dashboard - Charts"
9912
+ ],
9913
+ "x-async-capable": false
9914
+ }
9915
+ },
9916
+ "/cfg/dashboard/api/commands/": {
9917
+ "get": {
9918
+ "description": "Retrieve all available Django management commands",
9919
+ "operationId": "cfg_dashboard_api_commands_list",
9920
+ "responses": {
9921
+ "200": {
9922
+ "content": {
9923
+ "application/json": {
9924
+ "schema": {
9925
+ "items": {
9926
+ "$ref": "#/components/schemas/Command"
9927
+ },
9928
+ "type": "array"
9929
+ }
9930
+ }
9931
+ },
9932
+ "description": ""
9933
+ }
9934
+ },
9935
+ "security": [
9936
+ {
9937
+ "cookieAuth": []
9938
+ },
9939
+ {
9940
+ "basicAuth": []
9941
+ }
9942
+ ],
9943
+ "summary": "Get all commands",
9944
+ "tags": [
9945
+ "Dashboard - Commands"
9946
+ ],
9947
+ "x-async-capable": false
9948
+ }
9949
+ },
9950
+ "/cfg/dashboard/api/commands/summary/": {
9951
+ "get": {
9952
+ "description": "Retrieve commands summary with statistics and categorization",
9953
+ "operationId": "cfg_dashboard_api_commands_summary_retrieve",
9954
+ "responses": {
9955
+ "200": {
9956
+ "content": {
9957
+ "application/json": {
9958
+ "schema": {
9959
+ "$ref": "#/components/schemas/CommandsSummary"
9960
+ }
9961
+ }
9962
+ },
9963
+ "description": ""
9964
+ }
9965
+ },
9966
+ "security": [
9967
+ {
9968
+ "cookieAuth": []
9969
+ },
9970
+ {
9971
+ "basicAuth": []
9972
+ }
9973
+ ],
9974
+ "summary": "Get commands summary",
9975
+ "tags": [
9976
+ "Dashboard - Commands"
9476
9977
  ],
9477
9978
  "x-async-capable": false
9478
9979
  }
@@ -9503,7 +10004,7 @@ export const OPENAPI_SCHEMA = {
9503
10004
  ],
9504
10005
  "summary": "Get dashboard overview",
9505
10006
  "tags": [
9506
- "dashboard"
10007
+ "Dashboard - Overview"
9507
10008
  ],
9508
10009
  "x-async-capable": false
9509
10010
  }
@@ -9537,7 +10038,7 @@ export const OPENAPI_SCHEMA = {
9537
10038
  ],
9538
10039
  "summary": "Get application statistics",
9539
10040
  "tags": [
9540
- "dashboard"
10041
+ "Dashboard - Statistics"
9541
10042
  ],
9542
10043
  "x-async-capable": false
9543
10044
  }
@@ -9571,7 +10072,7 @@ export const OPENAPI_SCHEMA = {
9571
10072
  ],
9572
10073
  "summary": "Get statistics cards",
9573
10074
  "tags": [
9574
- "dashboard"
10075
+ "Dashboard - Statistics"
9575
10076
  ],
9576
10077
  "x-async-capable": false
9577
10078
  }
@@ -9602,7 +10103,7 @@ export const OPENAPI_SCHEMA = {
9602
10103
  ],
9603
10104
  "summary": "Get user statistics",
9604
10105
  "tags": [
9605
- "dashboard"
10106
+ "Dashboard - Statistics"
9606
10107
  ],
9607
10108
  "x-async-capable": false
9608
10109
  }
@@ -9633,7 +10134,7 @@ export const OPENAPI_SCHEMA = {
9633
10134
  ],
9634
10135
  "summary": "Get system health status",
9635
10136
  "tags": [
9636
- "dashboard"
10137
+ "Dashboard - System"
9637
10138
  ],
9638
10139
  "x-async-capable": false
9639
10140
  }
@@ -9664,7 +10165,72 @@ export const OPENAPI_SCHEMA = {
9664
10165
  ],
9665
10166
  "summary": "Get system metrics",
9666
10167
  "tags": [
9667
- "dashboard"
10168
+ "Dashboard - System"
10169
+ ],
10170
+ "x-async-capable": false
10171
+ }
10172
+ },
10173
+ "/cfg/dashboard/api/zones/": {
10174
+ "get": {
10175
+ "description": "Retrieve all OpenAPI zones/groups with their configuration",
10176
+ "operationId": "cfg_dashboard_api_zones_list",
10177
+ "responses": {
10178
+ "200": {
10179
+ "content": {
10180
+ "application/json": {
10181
+ "schema": {
10182
+ "items": {
10183
+ "$ref": "#/components/schemas/APIZone"
10184
+ },
10185
+ "type": "array"
10186
+ }
10187
+ }
10188
+ },
10189
+ "description": ""
10190
+ }
10191
+ },
10192
+ "security": [
10193
+ {
10194
+ "cookieAuth": []
10195
+ },
10196
+ {
10197
+ "basicAuth": []
10198
+ }
10199
+ ],
10200
+ "summary": "Get all API zones",
10201
+ "tags": [
10202
+ "Dashboard - API Zones"
10203
+ ],
10204
+ "x-async-capable": false
10205
+ }
10206
+ },
10207
+ "/cfg/dashboard/api/zones/summary/": {
10208
+ "get": {
10209
+ "description": "Retrieve zones summary with statistics",
10210
+ "operationId": "cfg_dashboard_api_zones_summary_retrieve",
10211
+ "responses": {
10212
+ "200": {
10213
+ "content": {
10214
+ "application/json": {
10215
+ "schema": {
10216
+ "$ref": "#/components/schemas/APIZonesSummary"
10217
+ }
10218
+ }
10219
+ },
10220
+ "description": ""
10221
+ }
10222
+ },
10223
+ "security": [
10224
+ {
10225
+ "cookieAuth": []
10226
+ },
10227
+ {
10228
+ "basicAuth": []
10229
+ }
10230
+ ],
10231
+ "summary": "Get zones summary",
10232
+ "tags": [
10233
+ "Dashboard - API Zones"
9668
10234
  ],
9669
10235
  "x-async-capable": false
9670
10236
  }