@djangocfg/api 1.2.2 → 1.2.4
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 +2658 -1264
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +2332 -496
- package/dist/index.d.ts +2332 -496
- package/dist/index.mjs +2633 -1259
- package/dist/index.mjs.map +1 -1
- package/package.json +2 -2
- package/src/cfg/generated/_utils/fetchers/cfg__ipc__ipcrpc_monitoring.ts +179 -0
- package/src/cfg/generated/_utils/fetchers/cfg__ipc__ipcrpc_testing.ts +151 -0
- package/src/cfg/generated/_utils/fetchers/index.ts +2 -0
- package/src/cfg/generated/_utils/hooks/cfg__ipc__ipcrpc_monitoring.ts +166 -0
- package/src/cfg/generated/_utils/hooks/cfg__ipc__ipcrpc_testing.ts +162 -0
- package/src/cfg/generated/_utils/hooks/index.ts +2 -0
- package/src/cfg/generated/_utils/schemas/LoadTestRequestRequest.schema.ts +22 -0
- package/src/cfg/generated/_utils/schemas/LoadTestResponse.schema.ts +21 -0
- package/src/cfg/generated/_utils/schemas/LoadTestStatus.schema.ts +27 -0
- package/src/cfg/generated/_utils/schemas/MethodStat.schema.ts +25 -0
- package/src/cfg/generated/_utils/schemas/MethodStats.schema.ts +22 -0
- package/src/cfg/generated/_utils/schemas/NotificationStats.schema.ts +25 -0
- package/src/cfg/generated/_utils/schemas/OverviewStats.schema.ts +29 -0
- package/src/cfg/generated/_utils/schemas/RPCRequest.schema.ts +25 -0
- package/src/cfg/generated/_utils/schemas/RecentRequests.schema.ts +22 -0
- package/src/cfg/generated/_utils/schemas/TestRPCRequestRequest.schema.ts +21 -0
- package/src/cfg/generated/_utils/schemas/TestRPCResponse.schema.ts +23 -0
- package/src/cfg/generated/_utils/schemas/index.ts +11 -0
- package/src/cfg/generated/cfg__ipc__ipcrpc_monitoring/client.ts +136 -0
- package/src/cfg/generated/cfg__ipc__ipcrpc_monitoring/index.ts +2 -0
- package/src/cfg/generated/cfg__ipc__ipcrpc_monitoring/models.ts +144 -0
- package/src/cfg/generated/cfg__ipc__ipcrpc_testing/client.ts +96 -0
- package/src/cfg/generated/cfg__ipc__ipcrpc_testing/index.ts +2 -0
- package/src/cfg/generated/cfg__ipc__ipcrpc_testing/models.ts +88 -0
- package/src/cfg/generated/client.ts +6 -0
- package/src/cfg/generated/index.ts +10 -0
- package/src/cfg/generated/schema.ts +1352 -587
|
@@ -2579,6 +2579,117 @@ export const OPENAPI_SCHEMA = {
|
|
|
2579
2579
|
],
|
|
2580
2580
|
"type": "object"
|
|
2581
2581
|
},
|
|
2582
|
+
"LoadTestRequestRequest": {
|
|
2583
|
+
"description": "Serializer for load test request input.",
|
|
2584
|
+
"properties": {
|
|
2585
|
+
"concurrency": {
|
|
2586
|
+
"description": "Number of concurrent requests",
|
|
2587
|
+
"maximum": 100,
|
|
2588
|
+
"minimum": 1,
|
|
2589
|
+
"type": "integer"
|
|
2590
|
+
},
|
|
2591
|
+
"method": {
|
|
2592
|
+
"description": "RPC method to test",
|
|
2593
|
+
"minLength": 1,
|
|
2594
|
+
"type": "string"
|
|
2595
|
+
},
|
|
2596
|
+
"params": {
|
|
2597
|
+
"description": "Parameters template for RPC calls"
|
|
2598
|
+
},
|
|
2599
|
+
"total_requests": {
|
|
2600
|
+
"description": "Total number of requests to send",
|
|
2601
|
+
"maximum": 10000,
|
|
2602
|
+
"minimum": 1,
|
|
2603
|
+
"type": "integer"
|
|
2604
|
+
}
|
|
2605
|
+
},
|
|
2606
|
+
"required": [
|
|
2607
|
+
"concurrency",
|
|
2608
|
+
"method",
|
|
2609
|
+
"total_requests"
|
|
2610
|
+
],
|
|
2611
|
+
"type": "object"
|
|
2612
|
+
},
|
|
2613
|
+
"LoadTestResponse": {
|
|
2614
|
+
"description": "Serializer for load test response.",
|
|
2615
|
+
"properties": {
|
|
2616
|
+
"message": {
|
|
2617
|
+
"description": "Status message",
|
|
2618
|
+
"type": "string"
|
|
2619
|
+
},
|
|
2620
|
+
"started": {
|
|
2621
|
+
"description": "Whether test was started successfully",
|
|
2622
|
+
"type": "boolean"
|
|
2623
|
+
},
|
|
2624
|
+
"test_id": {
|
|
2625
|
+
"description": "Unique test ID",
|
|
2626
|
+
"type": "string"
|
|
2627
|
+
}
|
|
2628
|
+
},
|
|
2629
|
+
"required": [
|
|
2630
|
+
"message",
|
|
2631
|
+
"started",
|
|
2632
|
+
"test_id"
|
|
2633
|
+
],
|
|
2634
|
+
"type": "object"
|
|
2635
|
+
},
|
|
2636
|
+
"LoadTestStatus": {
|
|
2637
|
+
"description": "Serializer for load test status.",
|
|
2638
|
+
"properties": {
|
|
2639
|
+
"avg_duration_ms": {
|
|
2640
|
+
"description": "Average duration in milliseconds",
|
|
2641
|
+
"format": "double",
|
|
2642
|
+
"type": "number"
|
|
2643
|
+
},
|
|
2644
|
+
"elapsed_time": {
|
|
2645
|
+
"description": "Total elapsed time in seconds",
|
|
2646
|
+
"format": "double",
|
|
2647
|
+
"type": "number"
|
|
2648
|
+
},
|
|
2649
|
+
"failed_count": {
|
|
2650
|
+
"description": "Number of failed requests",
|
|
2651
|
+
"type": "integer"
|
|
2652
|
+
},
|
|
2653
|
+
"progress": {
|
|
2654
|
+
"description": "Number of completed requests",
|
|
2655
|
+
"type": "integer"
|
|
2656
|
+
},
|
|
2657
|
+
"rps": {
|
|
2658
|
+
"description": "Requests per second",
|
|
2659
|
+
"format": "double",
|
|
2660
|
+
"type": "number"
|
|
2661
|
+
},
|
|
2662
|
+
"running": {
|
|
2663
|
+
"description": "Whether test is currently running",
|
|
2664
|
+
"type": "boolean"
|
|
2665
|
+
},
|
|
2666
|
+
"success_count": {
|
|
2667
|
+
"description": "Number of successful requests",
|
|
2668
|
+
"type": "integer"
|
|
2669
|
+
},
|
|
2670
|
+
"test_id": {
|
|
2671
|
+
"description": "Unique test ID",
|
|
2672
|
+
"nullable": true,
|
|
2673
|
+
"type": "string"
|
|
2674
|
+
},
|
|
2675
|
+
"total": {
|
|
2676
|
+
"description": "Total number of requests",
|
|
2677
|
+
"type": "integer"
|
|
2678
|
+
}
|
|
2679
|
+
},
|
|
2680
|
+
"required": [
|
|
2681
|
+
"avg_duration_ms",
|
|
2682
|
+
"elapsed_time",
|
|
2683
|
+
"failed_count",
|
|
2684
|
+
"progress",
|
|
2685
|
+
"rps",
|
|
2686
|
+
"running",
|
|
2687
|
+
"success_count",
|
|
2688
|
+
"test_id",
|
|
2689
|
+
"total"
|
|
2690
|
+
],
|
|
2691
|
+
"type": "object"
|
|
2692
|
+
},
|
|
2582
2693
|
"Message": {
|
|
2583
2694
|
"properties": {
|
|
2584
2695
|
"created_at": {
|
|
@@ -2658,6 +2769,77 @@ export const OPENAPI_SCHEMA = {
|
|
|
2658
2769
|
],
|
|
2659
2770
|
"type": "object"
|
|
2660
2771
|
},
|
|
2772
|
+
"MethodStat": {
|
|
2773
|
+
"description": "Serializer for individual method statistics.",
|
|
2774
|
+
"properties": {
|
|
2775
|
+
"avg_time": {
|
|
2776
|
+
"description": "Average execution time (alternative field)",
|
|
2777
|
+
"format": "double",
|
|
2778
|
+
"type": "number"
|
|
2779
|
+
},
|
|
2780
|
+
"avg_time_ms": {
|
|
2781
|
+
"description": "Average execution time in milliseconds",
|
|
2782
|
+
"format": "double",
|
|
2783
|
+
"type": "number"
|
|
2784
|
+
},
|
|
2785
|
+
"count": {
|
|
2786
|
+
"description": "Number of calls",
|
|
2787
|
+
"type": "integer"
|
|
2788
|
+
},
|
|
2789
|
+
"last_called": {
|
|
2790
|
+
"description": "ISO timestamp of last call",
|
|
2791
|
+
"nullable": true,
|
|
2792
|
+
"type": "string"
|
|
2793
|
+
},
|
|
2794
|
+
"method": {
|
|
2795
|
+
"description": "RPC method name",
|
|
2796
|
+
"type": "string"
|
|
2797
|
+
},
|
|
2798
|
+
"percentage": {
|
|
2799
|
+
"description": "Percentage of total calls",
|
|
2800
|
+
"format": "double",
|
|
2801
|
+
"type": "number"
|
|
2802
|
+
},
|
|
2803
|
+
"success_rate": {
|
|
2804
|
+
"default": 100.0,
|
|
2805
|
+
"description": "Success rate percentage",
|
|
2806
|
+
"format": "double",
|
|
2807
|
+
"type": "number"
|
|
2808
|
+
}
|
|
2809
|
+
},
|
|
2810
|
+
"required": [
|
|
2811
|
+
"count",
|
|
2812
|
+
"method",
|
|
2813
|
+
"percentage"
|
|
2814
|
+
],
|
|
2815
|
+
"type": "object"
|
|
2816
|
+
},
|
|
2817
|
+
"MethodStats": {
|
|
2818
|
+
"description": "Serializer for method statistics response.",
|
|
2819
|
+
"properties": {
|
|
2820
|
+
"count": {
|
|
2821
|
+
"description": "Total number of methods",
|
|
2822
|
+
"type": "integer"
|
|
2823
|
+
},
|
|
2824
|
+
"methods": {
|
|
2825
|
+
"description": "List of method statistics",
|
|
2826
|
+
"items": {
|
|
2827
|
+
"$ref": "#/components/schemas/MethodStat"
|
|
2828
|
+
},
|
|
2829
|
+
"type": "array"
|
|
2830
|
+
},
|
|
2831
|
+
"total_calls": {
|
|
2832
|
+
"description": "Total calls across all methods",
|
|
2833
|
+
"type": "integer"
|
|
2834
|
+
}
|
|
2835
|
+
},
|
|
2836
|
+
"required": [
|
|
2837
|
+
"count",
|
|
2838
|
+
"methods",
|
|
2839
|
+
"total_calls"
|
|
2840
|
+
],
|
|
2841
|
+
"type": "object"
|
|
2842
|
+
},
|
|
2661
2843
|
"Newsletter": {
|
|
2662
2844
|
"description": "Serializer for Newsletter model.",
|
|
2663
2845
|
"properties": {
|
|
@@ -2889,6 +3071,49 @@ export const OPENAPI_SCHEMA = {
|
|
|
2889
3071
|
],
|
|
2890
3072
|
"type": "object"
|
|
2891
3073
|
},
|
|
3074
|
+
"NotificationStats": {
|
|
3075
|
+
"description": "Serializer for notification statistics.",
|
|
3076
|
+
"properties": {
|
|
3077
|
+
"by_type": {
|
|
3078
|
+
"additionalProperties": {},
|
|
3079
|
+
"description": "Breakdown by notification type",
|
|
3080
|
+
"type": "object"
|
|
3081
|
+
},
|
|
3082
|
+
"delivery_rate": {
|
|
3083
|
+
"description": "Delivery success rate percentage",
|
|
3084
|
+
"format": "double",
|
|
3085
|
+
"type": "number"
|
|
3086
|
+
},
|
|
3087
|
+
"error": {
|
|
3088
|
+
"description": "Error message if any",
|
|
3089
|
+
"nullable": true,
|
|
3090
|
+
"type": "string"
|
|
3091
|
+
},
|
|
3092
|
+
"last_sent": {
|
|
3093
|
+
"description": "ISO timestamp of last notification",
|
|
3094
|
+
"nullable": true,
|
|
3095
|
+
"type": "string"
|
|
3096
|
+
},
|
|
3097
|
+
"recent": {
|
|
3098
|
+
"description": "Recent notifications",
|
|
3099
|
+
"items": {},
|
|
3100
|
+
"type": "array"
|
|
3101
|
+
},
|
|
3102
|
+
"timestamp": {
|
|
3103
|
+
"description": "ISO timestamp of the stats",
|
|
3104
|
+
"type": "string"
|
|
3105
|
+
},
|
|
3106
|
+
"total_sent": {
|
|
3107
|
+
"description": "Total notifications sent",
|
|
3108
|
+
"type": "integer"
|
|
3109
|
+
}
|
|
3110
|
+
},
|
|
3111
|
+
"required": [
|
|
3112
|
+
"delivery_rate",
|
|
3113
|
+
"total_sent"
|
|
3114
|
+
],
|
|
3115
|
+
"type": "object"
|
|
3116
|
+
},
|
|
2892
3117
|
"OTPErrorResponse": {
|
|
2893
3118
|
"description": "Error response for OTP operations.",
|
|
2894
3119
|
"properties": {
|
|
@@ -3004,6 +3229,73 @@ export const OPENAPI_SCHEMA = {
|
|
|
3004
3229
|
],
|
|
3005
3230
|
"type": "object"
|
|
3006
3231
|
},
|
|
3232
|
+
"OverviewStats": {
|
|
3233
|
+
"description": "Serializer for overview statistics.",
|
|
3234
|
+
"properties": {
|
|
3235
|
+
"active_methods": {
|
|
3236
|
+
"description": "List of active RPC methods",
|
|
3237
|
+
"items": {
|
|
3238
|
+
"type": "string"
|
|
3239
|
+
},
|
|
3240
|
+
"type": "array"
|
|
3241
|
+
},
|
|
3242
|
+
"avg_response_time_ms": {
|
|
3243
|
+
"description": "Average response time in milliseconds",
|
|
3244
|
+
"format": "double",
|
|
3245
|
+
"type": "number"
|
|
3246
|
+
},
|
|
3247
|
+
"error": {
|
|
3248
|
+
"description": "Error message if any",
|
|
3249
|
+
"nullable": true,
|
|
3250
|
+
"type": "string"
|
|
3251
|
+
},
|
|
3252
|
+
"error_rate": {
|
|
3253
|
+
"default": 0.0,
|
|
3254
|
+
"description": "Error rate percentage",
|
|
3255
|
+
"format": "double",
|
|
3256
|
+
"type": "number"
|
|
3257
|
+
},
|
|
3258
|
+
"method_counts": {
|
|
3259
|
+
"additionalProperties": {},
|
|
3260
|
+
"description": "Count of requests per method",
|
|
3261
|
+
"type": "object"
|
|
3262
|
+
},
|
|
3263
|
+
"redis_connected": {
|
|
3264
|
+
"description": "Whether Redis is connected",
|
|
3265
|
+
"type": "boolean"
|
|
3266
|
+
},
|
|
3267
|
+
"success_rate": {
|
|
3268
|
+
"description": "Success rate percentage",
|
|
3269
|
+
"format": "double",
|
|
3270
|
+
"type": "number"
|
|
3271
|
+
},
|
|
3272
|
+
"timestamp": {
|
|
3273
|
+
"description": "ISO timestamp of the stats",
|
|
3274
|
+
"type": "string"
|
|
3275
|
+
},
|
|
3276
|
+
"top_method": {
|
|
3277
|
+
"description": "Most frequently called method",
|
|
3278
|
+
"nullable": true,
|
|
3279
|
+
"type": "string"
|
|
3280
|
+
},
|
|
3281
|
+
"total_requests_hour": {
|
|
3282
|
+
"default": 0,
|
|
3283
|
+
"description": "Total requests in the last hour",
|
|
3284
|
+
"type": "integer"
|
|
3285
|
+
},
|
|
3286
|
+
"total_requests_today": {
|
|
3287
|
+
"description": "Total requests processed today",
|
|
3288
|
+
"type": "integer"
|
|
3289
|
+
}
|
|
3290
|
+
},
|
|
3291
|
+
"required": [
|
|
3292
|
+
"active_methods",
|
|
3293
|
+
"avg_response_time_ms",
|
|
3294
|
+
"success_rate",
|
|
3295
|
+
"total_requests_today"
|
|
3296
|
+
],
|
|
3297
|
+
"type": "object"
|
|
3298
|
+
},
|
|
3007
3299
|
"PaginatedArchiveItemChunkList": {
|
|
3008
3300
|
"properties": {
|
|
3009
3301
|
"count": {
|
|
@@ -4922,6 +5214,75 @@ export const OPENAPI_SCHEMA = {
|
|
|
4922
5214
|
],
|
|
4923
5215
|
"type": "object"
|
|
4924
5216
|
},
|
|
5217
|
+
"RPCRequest": {
|
|
5218
|
+
"description": "Serializer for individual RPC request.",
|
|
5219
|
+
"properties": {
|
|
5220
|
+
"correlation_id": {
|
|
5221
|
+
"description": "Correlation ID for tracking",
|
|
5222
|
+
"nullable": true,
|
|
5223
|
+
"type": "string"
|
|
5224
|
+
},
|
|
5225
|
+
"id": {
|
|
5226
|
+
"description": "Stream entry ID",
|
|
5227
|
+
"type": "string"
|
|
5228
|
+
},
|
|
5229
|
+
"method": {
|
|
5230
|
+
"description": "RPC method name",
|
|
5231
|
+
"nullable": true,
|
|
5232
|
+
"type": "string"
|
|
5233
|
+
},
|
|
5234
|
+
"params": {
|
|
5235
|
+
"additionalProperties": {},
|
|
5236
|
+
"description": "Request parameters",
|
|
5237
|
+
"nullable": true,
|
|
5238
|
+
"type": "object"
|
|
5239
|
+
},
|
|
5240
|
+
"request_id": {
|
|
5241
|
+
"description": "Unique request ID",
|
|
5242
|
+
"type": "string"
|
|
5243
|
+
},
|
|
5244
|
+
"source": {
|
|
5245
|
+
"description": "Source of the request",
|
|
5246
|
+
"nullable": true,
|
|
5247
|
+
"type": "string"
|
|
5248
|
+
},
|
|
5249
|
+
"timestamp": {
|
|
5250
|
+
"description": "ISO timestamp of the request",
|
|
5251
|
+
"type": "string"
|
|
5252
|
+
}
|
|
5253
|
+
},
|
|
5254
|
+
"required": [
|
|
5255
|
+
"method",
|
|
5256
|
+
"timestamp"
|
|
5257
|
+
],
|
|
5258
|
+
"type": "object"
|
|
5259
|
+
},
|
|
5260
|
+
"RecentRequests": {
|
|
5261
|
+
"description": "Serializer for recent requests response.",
|
|
5262
|
+
"properties": {
|
|
5263
|
+
"count": {
|
|
5264
|
+
"description": "Number of requests returned",
|
|
5265
|
+
"type": "integer"
|
|
5266
|
+
},
|
|
5267
|
+
"requests": {
|
|
5268
|
+
"description": "List of recent RPC requests",
|
|
5269
|
+
"items": {
|
|
5270
|
+
"$ref": "#/components/schemas/RPCRequest"
|
|
5271
|
+
},
|
|
5272
|
+
"type": "array"
|
|
5273
|
+
},
|
|
5274
|
+
"total_available": {
|
|
5275
|
+
"description": "Total number of requests available",
|
|
5276
|
+
"type": "integer"
|
|
5277
|
+
}
|
|
5278
|
+
},
|
|
5279
|
+
"required": [
|
|
5280
|
+
"count",
|
|
5281
|
+
"requests",
|
|
5282
|
+
"total_available"
|
|
5283
|
+
],
|
|
5284
|
+
"type": "object"
|
|
5285
|
+
},
|
|
4925
5286
|
"SendCampaignRequest": {
|
|
4926
5287
|
"description": "Simple serializer for sending campaign.",
|
|
4927
5288
|
"properties": {
|
|
@@ -5117,6 +5478,64 @@ export const OPENAPI_SCHEMA = {
|
|
|
5117
5478
|
],
|
|
5118
5479
|
"type": "object"
|
|
5119
5480
|
},
|
|
5481
|
+
"TestRPCRequestRequest": {
|
|
5482
|
+
"description": "Serializer for test RPC request input.",
|
|
5483
|
+
"properties": {
|
|
5484
|
+
"method": {
|
|
5485
|
+
"description": "RPC method to call",
|
|
5486
|
+
"minLength": 1,
|
|
5487
|
+
"type": "string"
|
|
5488
|
+
},
|
|
5489
|
+
"params": {
|
|
5490
|
+
"description": "Parameters for the RPC call"
|
|
5491
|
+
},
|
|
5492
|
+
"timeout": {
|
|
5493
|
+
"default": 10,
|
|
5494
|
+
"description": "Timeout in seconds",
|
|
5495
|
+
"maximum": 60,
|
|
5496
|
+
"minimum": 1,
|
|
5497
|
+
"type": "integer"
|
|
5498
|
+
}
|
|
5499
|
+
},
|
|
5500
|
+
"required": [
|
|
5501
|
+
"method",
|
|
5502
|
+
"params"
|
|
5503
|
+
],
|
|
5504
|
+
"type": "object"
|
|
5505
|
+
},
|
|
5506
|
+
"TestRPCResponse": {
|
|
5507
|
+
"description": "Serializer for test RPC response.",
|
|
5508
|
+
"properties": {
|
|
5509
|
+
"correlation_id": {
|
|
5510
|
+
"description": "Correlation ID for tracking",
|
|
5511
|
+
"type": "string"
|
|
5512
|
+
},
|
|
5513
|
+
"duration_ms": {
|
|
5514
|
+
"description": "Call duration in milliseconds",
|
|
5515
|
+
"format": "double",
|
|
5516
|
+
"type": "number"
|
|
5517
|
+
},
|
|
5518
|
+
"error": {
|
|
5519
|
+
"description": "Error message if failed",
|
|
5520
|
+
"nullable": true,
|
|
5521
|
+
"type": "string"
|
|
5522
|
+
},
|
|
5523
|
+
"response": {
|
|
5524
|
+
"description": "Response data from RPC call",
|
|
5525
|
+
"nullable": true
|
|
5526
|
+
},
|
|
5527
|
+
"success": {
|
|
5528
|
+
"description": "Whether the call was successful",
|
|
5529
|
+
"type": "boolean"
|
|
5530
|
+
}
|
|
5531
|
+
},
|
|
5532
|
+
"required": [
|
|
5533
|
+
"correlation_id",
|
|
5534
|
+
"duration_ms",
|
|
5535
|
+
"success"
|
|
5536
|
+
],
|
|
5537
|
+
"type": "object"
|
|
5538
|
+
},
|
|
5120
5539
|
"Ticket": {
|
|
5121
5540
|
"properties": {
|
|
5122
5541
|
"created_at": {
|
|
@@ -5615,11 +6034,6 @@ export const OPENAPI_SCHEMA = {
|
|
|
5615
6034
|
"in": "cookie",
|
|
5616
6035
|
"name": "sessionid",
|
|
5617
6036
|
"type": "apiKey"
|
|
5618
|
-
},
|
|
5619
|
-
"jwtAuth": {
|
|
5620
|
-
"bearerFormat": "JWT",
|
|
5621
|
-
"scheme": "bearer",
|
|
5622
|
-
"type": "http"
|
|
5623
6037
|
}
|
|
5624
6038
|
}
|
|
5625
6039
|
},
|
|
@@ -5636,7 +6050,8 @@ export const OPENAPI_SCHEMA = {
|
|
|
5636
6050
|
"django_cfg_leads",
|
|
5637
6051
|
"django_cfg_agents",
|
|
5638
6052
|
"tasks",
|
|
5639
|
-
"payments"
|
|
6053
|
+
"payments",
|
|
6054
|
+
"django_cfg_ipc"
|
|
5640
6055
|
],
|
|
5641
6056
|
"generator": "django-client",
|
|
5642
6057
|
"generator_version": "1.0.0",
|
|
@@ -5702,9 +6117,6 @@ export const OPENAPI_SCHEMA = {
|
|
|
5702
6117
|
}
|
|
5703
6118
|
},
|
|
5704
6119
|
"security": [
|
|
5705
|
-
{
|
|
5706
|
-
"jwtAuth": []
|
|
5707
|
-
},
|
|
5708
6120
|
{}
|
|
5709
6121
|
],
|
|
5710
6122
|
"tags": [
|
|
@@ -5770,9 +6182,6 @@ export const OPENAPI_SCHEMA = {
|
|
|
5770
6182
|
}
|
|
5771
6183
|
},
|
|
5772
6184
|
"security": [
|
|
5773
|
-
{
|
|
5774
|
-
"jwtAuth": []
|
|
5775
|
-
},
|
|
5776
6185
|
{}
|
|
5777
6186
|
],
|
|
5778
6187
|
"tags": [
|
|
@@ -5807,11 +6216,6 @@ export const OPENAPI_SCHEMA = {
|
|
|
5807
6216
|
"description": ""
|
|
5808
6217
|
}
|
|
5809
6218
|
},
|
|
5810
|
-
"security": [
|
|
5811
|
-
{
|
|
5812
|
-
"jwtAuth": []
|
|
5813
|
-
}
|
|
5814
|
-
],
|
|
5815
6219
|
"summary": "Get current user profile",
|
|
5816
6220
|
"tags": [
|
|
5817
6221
|
"User Profile"
|
|
@@ -5874,11 +6278,6 @@ export const OPENAPI_SCHEMA = {
|
|
|
5874
6278
|
"description": ""
|
|
5875
6279
|
}
|
|
5876
6280
|
},
|
|
5877
|
-
"security": [
|
|
5878
|
-
{
|
|
5879
|
-
"jwtAuth": []
|
|
5880
|
-
}
|
|
5881
|
-
],
|
|
5882
6281
|
"summary": "Upload user avatar",
|
|
5883
6282
|
"tags": [
|
|
5884
6283
|
"User Profile"
|
|
@@ -5953,11 +6352,6 @@ export const OPENAPI_SCHEMA = {
|
|
|
5953
6352
|
"description": ""
|
|
5954
6353
|
}
|
|
5955
6354
|
},
|
|
5956
|
-
"security": [
|
|
5957
|
-
{
|
|
5958
|
-
"jwtAuth": []
|
|
5959
|
-
}
|
|
5960
|
-
],
|
|
5961
6355
|
"summary": "Partial update user profile",
|
|
5962
6356
|
"tags": [
|
|
5963
6357
|
"User Profile"
|
|
@@ -6030,11 +6424,6 @@ export const OPENAPI_SCHEMA = {
|
|
|
6030
6424
|
"description": ""
|
|
6031
6425
|
}
|
|
6032
6426
|
},
|
|
6033
|
-
"security": [
|
|
6034
|
-
{
|
|
6035
|
-
"jwtAuth": []
|
|
6036
|
-
}
|
|
6037
|
-
],
|
|
6038
6427
|
"summary": "Partial update user profile",
|
|
6039
6428
|
"tags": [
|
|
6040
6429
|
"User Profile"
|
|
@@ -6102,7 +6491,833 @@ export const OPENAPI_SCHEMA = {
|
|
|
6102
6491
|
"content": {
|
|
6103
6492
|
"application/json": {
|
|
6104
6493
|
"schema": {
|
|
6105
|
-
"description": "Authentication credentials were not provided."
|
|
6494
|
+
"description": "Authentication credentials were not provided."
|
|
6495
|
+
}
|
|
6496
|
+
}
|
|
6497
|
+
},
|
|
6498
|
+
"description": ""
|
|
6499
|
+
}
|
|
6500
|
+
},
|
|
6501
|
+
"summary": "Update user profile",
|
|
6502
|
+
"tags": [
|
|
6503
|
+
"User Profile"
|
|
6504
|
+
],
|
|
6505
|
+
"x-async-capable": false
|
|
6506
|
+
},
|
|
6507
|
+
"put": {
|
|
6508
|
+
"description": "Update the current authenticated user\u0027s profile information.",
|
|
6509
|
+
"operationId": "cfg_accounts_profile_update_update",
|
|
6510
|
+
"requestBody": {
|
|
6511
|
+
"content": {
|
|
6512
|
+
"application/json": {
|
|
6513
|
+
"examples": {
|
|
6514
|
+
"ValidProfileUpdate": {
|
|
6515
|
+
"summary": "Valid Profile Update",
|
|
6516
|
+
"value": {
|
|
6517
|
+
"company": "Tech Corp",
|
|
6518
|
+
"first_name": "John",
|
|
6519
|
+
"last_name": "Doe",
|
|
6520
|
+
"phone": "+1 (555) 123-4567",
|
|
6521
|
+
"position": "Software Engineer"
|
|
6522
|
+
}
|
|
6523
|
+
}
|
|
6524
|
+
},
|
|
6525
|
+
"schema": {
|
|
6526
|
+
"$ref": "#/components/schemas/UserProfileUpdateRequest"
|
|
6527
|
+
}
|
|
6528
|
+
},
|
|
6529
|
+
"application/x-www-form-urlencoded": {
|
|
6530
|
+
"schema": {
|
|
6531
|
+
"$ref": "#/components/schemas/UserProfileUpdateRequest"
|
|
6532
|
+
}
|
|
6533
|
+
},
|
|
6534
|
+
"multipart/form-data": {
|
|
6535
|
+
"schema": {
|
|
6536
|
+
"$ref": "#/components/schemas/UserProfileUpdateRequest"
|
|
6537
|
+
}
|
|
6538
|
+
}
|
|
6539
|
+
}
|
|
6540
|
+
},
|
|
6541
|
+
"responses": {
|
|
6542
|
+
"200": {
|
|
6543
|
+
"content": {
|
|
6544
|
+
"application/json": {
|
|
6545
|
+
"schema": {
|
|
6546
|
+
"$ref": "#/components/schemas/User"
|
|
6547
|
+
}
|
|
6548
|
+
}
|
|
6549
|
+
},
|
|
6550
|
+
"description": ""
|
|
6551
|
+
},
|
|
6552
|
+
"400": {
|
|
6553
|
+
"content": {
|
|
6554
|
+
"application/json": {
|
|
6555
|
+
"schema": {
|
|
6556
|
+
"description": "Invalid data provided."
|
|
6557
|
+
}
|
|
6558
|
+
}
|
|
6559
|
+
},
|
|
6560
|
+
"description": ""
|
|
6561
|
+
},
|
|
6562
|
+
"401": {
|
|
6563
|
+
"content": {
|
|
6564
|
+
"application/json": {
|
|
6565
|
+
"schema": {
|
|
6566
|
+
"description": "Authentication credentials were not provided."
|
|
6567
|
+
}
|
|
6568
|
+
}
|
|
6569
|
+
},
|
|
6570
|
+
"description": ""
|
|
6571
|
+
}
|
|
6572
|
+
},
|
|
6573
|
+
"summary": "Update user profile",
|
|
6574
|
+
"tags": [
|
|
6575
|
+
"User Profile"
|
|
6576
|
+
],
|
|
6577
|
+
"x-async-capable": false
|
|
6578
|
+
}
|
|
6579
|
+
},
|
|
6580
|
+
"/cfg/accounts/token/refresh/": {
|
|
6581
|
+
"post": {
|
|
6582
|
+
"description": "Refresh JWT token.",
|
|
6583
|
+
"operationId": "cfg_accounts_token_refresh_create",
|
|
6584
|
+
"requestBody": {
|
|
6585
|
+
"content": {
|
|
6586
|
+
"application/json": {
|
|
6587
|
+
"schema": {
|
|
6588
|
+
"$ref": "#/components/schemas/TokenRefreshRequest"
|
|
6589
|
+
}
|
|
6590
|
+
},
|
|
6591
|
+
"application/x-www-form-urlencoded": {
|
|
6592
|
+
"schema": {
|
|
6593
|
+
"$ref": "#/components/schemas/TokenRefreshRequest"
|
|
6594
|
+
}
|
|
6595
|
+
},
|
|
6596
|
+
"multipart/form-data": {
|
|
6597
|
+
"schema": {
|
|
6598
|
+
"$ref": "#/components/schemas/TokenRefreshRequest"
|
|
6599
|
+
}
|
|
6600
|
+
}
|
|
6601
|
+
},
|
|
6602
|
+
"required": true
|
|
6603
|
+
},
|
|
6604
|
+
"responses": {
|
|
6605
|
+
"200": {
|
|
6606
|
+
"content": {
|
|
6607
|
+
"application/json": {
|
|
6608
|
+
"schema": {
|
|
6609
|
+
"$ref": "#/components/schemas/TokenRefresh"
|
|
6610
|
+
}
|
|
6611
|
+
}
|
|
6612
|
+
},
|
|
6613
|
+
"description": ""
|
|
6614
|
+
}
|
|
6615
|
+
},
|
|
6616
|
+
"tags": [
|
|
6617
|
+
"Auth"
|
|
6618
|
+
],
|
|
6619
|
+
"x-async-capable": false
|
|
6620
|
+
}
|
|
6621
|
+
},
|
|
6622
|
+
"/cfg/endpoints/drf/": {
|
|
6623
|
+
"get": {
|
|
6624
|
+
"description": "Return endpoints status data.",
|
|
6625
|
+
"operationId": "cfg_endpoints_drf_retrieve",
|
|
6626
|
+
"responses": {
|
|
6627
|
+
"200": {
|
|
6628
|
+
"content": {
|
|
6629
|
+
"application/json": {
|
|
6630
|
+
"schema": {
|
|
6631
|
+
"$ref": "#/components/schemas/EndpointsStatus"
|
|
6632
|
+
}
|
|
6633
|
+
}
|
|
6634
|
+
},
|
|
6635
|
+
"description": ""
|
|
6636
|
+
}
|
|
6637
|
+
},
|
|
6638
|
+
"security": [
|
|
6639
|
+
{}
|
|
6640
|
+
],
|
|
6641
|
+
"tags": [
|
|
6642
|
+
"endpoints"
|
|
6643
|
+
],
|
|
6644
|
+
"x-async-capable": false
|
|
6645
|
+
}
|
|
6646
|
+
},
|
|
6647
|
+
"/cfg/health/drf/": {
|
|
6648
|
+
"get": {
|
|
6649
|
+
"description": "Return comprehensive health check data.",
|
|
6650
|
+
"operationId": "cfg_health_drf_retrieve",
|
|
6651
|
+
"responses": {
|
|
6652
|
+
"200": {
|
|
6653
|
+
"content": {
|
|
6654
|
+
"application/json": {
|
|
6655
|
+
"schema": {
|
|
6656
|
+
"$ref": "#/components/schemas/HealthCheck"
|
|
6657
|
+
}
|
|
6658
|
+
}
|
|
6659
|
+
},
|
|
6660
|
+
"description": ""
|
|
6661
|
+
}
|
|
6662
|
+
},
|
|
6663
|
+
"security": [
|
|
6664
|
+
{}
|
|
6665
|
+
],
|
|
6666
|
+
"tags": [
|
|
6667
|
+
"health"
|
|
6668
|
+
],
|
|
6669
|
+
"x-async-capable": false
|
|
6670
|
+
}
|
|
6671
|
+
},
|
|
6672
|
+
"/cfg/health/drf/quick/": {
|
|
6673
|
+
"get": {
|
|
6674
|
+
"description": "Return minimal health status.",
|
|
6675
|
+
"operationId": "cfg_health_drf_quick_retrieve",
|
|
6676
|
+
"responses": {
|
|
6677
|
+
"200": {
|
|
6678
|
+
"content": {
|
|
6679
|
+
"application/json": {
|
|
6680
|
+
"schema": {
|
|
6681
|
+
"$ref": "#/components/schemas/QuickHealth"
|
|
6682
|
+
}
|
|
6683
|
+
}
|
|
6684
|
+
},
|
|
6685
|
+
"description": ""
|
|
6686
|
+
}
|
|
6687
|
+
},
|
|
6688
|
+
"security": [
|
|
6689
|
+
{}
|
|
6690
|
+
],
|
|
6691
|
+
"tags": [
|
|
6692
|
+
"health"
|
|
6693
|
+
],
|
|
6694
|
+
"x-async-capable": false
|
|
6695
|
+
}
|
|
6696
|
+
},
|
|
6697
|
+
"/cfg/ipc/admin/api/monitor/health/": {
|
|
6698
|
+
"get": {
|
|
6699
|
+
"description": "Returns the current health status of the RPC monitoring system.",
|
|
6700
|
+
"operationId": "cfg_ipc_admin_api_monitor_health_retrieve",
|
|
6701
|
+
"responses": {
|
|
6702
|
+
"200": {
|
|
6703
|
+
"content": {
|
|
6704
|
+
"application/json": {
|
|
6705
|
+
"schema": {
|
|
6706
|
+
"$ref": "#/components/schemas/HealthCheck"
|
|
6707
|
+
}
|
|
6708
|
+
}
|
|
6709
|
+
},
|
|
6710
|
+
"description": ""
|
|
6711
|
+
},
|
|
6712
|
+
"503": {
|
|
6713
|
+
"content": {
|
|
6714
|
+
"application/json": {
|
|
6715
|
+
"schema": {
|
|
6716
|
+
"description": "Service unavailable"
|
|
6717
|
+
}
|
|
6718
|
+
}
|
|
6719
|
+
},
|
|
6720
|
+
"description": ""
|
|
6721
|
+
}
|
|
6722
|
+
},
|
|
6723
|
+
"security": [
|
|
6724
|
+
{
|
|
6725
|
+
"cookieAuth": []
|
|
6726
|
+
}
|
|
6727
|
+
],
|
|
6728
|
+
"summary": "Get RPC health status",
|
|
6729
|
+
"tags": [
|
|
6730
|
+
"IPC/RPC Monitoring"
|
|
6731
|
+
],
|
|
6732
|
+
"x-async-capable": false
|
|
6733
|
+
}
|
|
6734
|
+
},
|
|
6735
|
+
"/cfg/ipc/admin/api/monitor/methods/": {
|
|
6736
|
+
"get": {
|
|
6737
|
+
"description": "Returns statistics grouped by RPC method.",
|
|
6738
|
+
"operationId": "cfg_ipc_admin_api_monitor_methods_retrieve",
|
|
6739
|
+
"responses": {
|
|
6740
|
+
"200": {
|
|
6741
|
+
"content": {
|
|
6742
|
+
"application/json": {
|
|
6743
|
+
"schema": {
|
|
6744
|
+
"$ref": "#/components/schemas/MethodStats"
|
|
6745
|
+
}
|
|
6746
|
+
}
|
|
6747
|
+
},
|
|
6748
|
+
"description": ""
|
|
6749
|
+
},
|
|
6750
|
+
"503": {
|
|
6751
|
+
"content": {
|
|
6752
|
+
"application/json": {
|
|
6753
|
+
"schema": {
|
|
6754
|
+
"description": "Service unavailable"
|
|
6755
|
+
}
|
|
6756
|
+
}
|
|
6757
|
+
},
|
|
6758
|
+
"description": ""
|
|
6759
|
+
}
|
|
6760
|
+
},
|
|
6761
|
+
"security": [
|
|
6762
|
+
{
|
|
6763
|
+
"cookieAuth": []
|
|
6764
|
+
}
|
|
6765
|
+
],
|
|
6766
|
+
"summary": "Get method statistics",
|
|
6767
|
+
"tags": [
|
|
6768
|
+
"IPC/RPC Monitoring"
|
|
6769
|
+
],
|
|
6770
|
+
"x-async-capable": false
|
|
6771
|
+
}
|
|
6772
|
+
},
|
|
6773
|
+
"/cfg/ipc/admin/api/monitor/notifications/": {
|
|
6774
|
+
"get": {
|
|
6775
|
+
"description": "Returns statistics about RPC notifications.",
|
|
6776
|
+
"operationId": "cfg_ipc_admin_api_monitor_notifications_retrieve",
|
|
6777
|
+
"responses": {
|
|
6778
|
+
"200": {
|
|
6779
|
+
"content": {
|
|
6780
|
+
"application/json": {
|
|
6781
|
+
"schema": {
|
|
6782
|
+
"$ref": "#/components/schemas/NotificationStats"
|
|
6783
|
+
}
|
|
6784
|
+
}
|
|
6785
|
+
},
|
|
6786
|
+
"description": ""
|
|
6787
|
+
},
|
|
6788
|
+
"503": {
|
|
6789
|
+
"content": {
|
|
6790
|
+
"application/json": {
|
|
6791
|
+
"schema": {
|
|
6792
|
+
"description": "Service unavailable"
|
|
6793
|
+
}
|
|
6794
|
+
}
|
|
6795
|
+
},
|
|
6796
|
+
"description": ""
|
|
6797
|
+
}
|
|
6798
|
+
},
|
|
6799
|
+
"security": [
|
|
6800
|
+
{
|
|
6801
|
+
"cookieAuth": []
|
|
6802
|
+
}
|
|
6803
|
+
],
|
|
6804
|
+
"summary": "Get notification statistics",
|
|
6805
|
+
"tags": [
|
|
6806
|
+
"IPC/RPC Monitoring"
|
|
6807
|
+
],
|
|
6808
|
+
"x-async-capable": false
|
|
6809
|
+
}
|
|
6810
|
+
},
|
|
6811
|
+
"/cfg/ipc/admin/api/monitor/overview/": {
|
|
6812
|
+
"get": {
|
|
6813
|
+
"description": "Returns overview statistics for RPC monitoring.",
|
|
6814
|
+
"operationId": "cfg_ipc_admin_api_monitor_overview_retrieve",
|
|
6815
|
+
"responses": {
|
|
6816
|
+
"200": {
|
|
6817
|
+
"content": {
|
|
6818
|
+
"application/json": {
|
|
6819
|
+
"schema": {
|
|
6820
|
+
"$ref": "#/components/schemas/OverviewStats"
|
|
6821
|
+
}
|
|
6822
|
+
}
|
|
6823
|
+
},
|
|
6824
|
+
"description": ""
|
|
6825
|
+
},
|
|
6826
|
+
"503": {
|
|
6827
|
+
"content": {
|
|
6828
|
+
"application/json": {
|
|
6829
|
+
"schema": {
|
|
6830
|
+
"description": "Service unavailable"
|
|
6831
|
+
}
|
|
6832
|
+
}
|
|
6833
|
+
},
|
|
6834
|
+
"description": ""
|
|
6835
|
+
}
|
|
6836
|
+
},
|
|
6837
|
+
"security": [
|
|
6838
|
+
{
|
|
6839
|
+
"cookieAuth": []
|
|
6840
|
+
}
|
|
6841
|
+
],
|
|
6842
|
+
"summary": "Get overview statistics",
|
|
6843
|
+
"tags": [
|
|
6844
|
+
"IPC/RPC Monitoring"
|
|
6845
|
+
],
|
|
6846
|
+
"x-async-capable": false
|
|
6847
|
+
}
|
|
6848
|
+
},
|
|
6849
|
+
"/cfg/ipc/admin/api/monitor/requests/": {
|
|
6850
|
+
"get": {
|
|
6851
|
+
"description": "Returns a list of recent RPC requests with their details.",
|
|
6852
|
+
"operationId": "cfg_ipc_admin_api_monitor_requests_retrieve",
|
|
6853
|
+
"parameters": [
|
|
6854
|
+
{
|
|
6855
|
+
"description": "Number of requests to return (default: 50, max: 200)",
|
|
6856
|
+
"in": "query",
|
|
6857
|
+
"name": "count",
|
|
6858
|
+
"schema": {
|
|
6859
|
+
"type": "integer"
|
|
6860
|
+
}
|
|
6861
|
+
}
|
|
6862
|
+
],
|
|
6863
|
+
"responses": {
|
|
6864
|
+
"200": {
|
|
6865
|
+
"content": {
|
|
6866
|
+
"application/json": {
|
|
6867
|
+
"schema": {
|
|
6868
|
+
"$ref": "#/components/schemas/RecentRequests"
|
|
6869
|
+
}
|
|
6870
|
+
}
|
|
6871
|
+
},
|
|
6872
|
+
"description": ""
|
|
6873
|
+
},
|
|
6874
|
+
"400": {
|
|
6875
|
+
"content": {
|
|
6876
|
+
"application/json": {
|
|
6877
|
+
"schema": {
|
|
6878
|
+
"description": "Invalid parameters"
|
|
6879
|
+
}
|
|
6880
|
+
}
|
|
6881
|
+
},
|
|
6882
|
+
"description": ""
|
|
6883
|
+
},
|
|
6884
|
+
"503": {
|
|
6885
|
+
"content": {
|
|
6886
|
+
"application/json": {
|
|
6887
|
+
"schema": {
|
|
6888
|
+
"description": "Service unavailable"
|
|
6889
|
+
}
|
|
6890
|
+
}
|
|
6891
|
+
},
|
|
6892
|
+
"description": ""
|
|
6893
|
+
}
|
|
6894
|
+
},
|
|
6895
|
+
"security": [
|
|
6896
|
+
{
|
|
6897
|
+
"cookieAuth": []
|
|
6898
|
+
}
|
|
6899
|
+
],
|
|
6900
|
+
"summary": "Get recent RPC requests",
|
|
6901
|
+
"tags": [
|
|
6902
|
+
"IPC/RPC Monitoring"
|
|
6903
|
+
],
|
|
6904
|
+
"x-async-capable": false
|
|
6905
|
+
}
|
|
6906
|
+
},
|
|
6907
|
+
"/cfg/ipc/admin/api/test/load/start/": {
|
|
6908
|
+
"post": {
|
|
6909
|
+
"description": "Start a load test by sending multiple concurrent RPC requests.",
|
|
6910
|
+
"operationId": "cfg_ipc_admin_api_test_load_start_create",
|
|
6911
|
+
"requestBody": {
|
|
6912
|
+
"content": {
|
|
6913
|
+
"application/json": {
|
|
6914
|
+
"schema": {
|
|
6915
|
+
"$ref": "#/components/schemas/LoadTestRequestRequest"
|
|
6916
|
+
}
|
|
6917
|
+
},
|
|
6918
|
+
"application/x-www-form-urlencoded": {
|
|
6919
|
+
"schema": {
|
|
6920
|
+
"$ref": "#/components/schemas/LoadTestRequestRequest"
|
|
6921
|
+
}
|
|
6922
|
+
},
|
|
6923
|
+
"multipart/form-data": {
|
|
6924
|
+
"schema": {
|
|
6925
|
+
"$ref": "#/components/schemas/LoadTestRequestRequest"
|
|
6926
|
+
}
|
|
6927
|
+
}
|
|
6928
|
+
},
|
|
6929
|
+
"required": true
|
|
6930
|
+
},
|
|
6931
|
+
"responses": {
|
|
6932
|
+
"200": {
|
|
6933
|
+
"content": {
|
|
6934
|
+
"application/json": {
|
|
6935
|
+
"schema": {
|
|
6936
|
+
"$ref": "#/components/schemas/LoadTestResponse"
|
|
6937
|
+
}
|
|
6938
|
+
}
|
|
6939
|
+
},
|
|
6940
|
+
"description": ""
|
|
6941
|
+
},
|
|
6942
|
+
"400": {
|
|
6943
|
+
"content": {
|
|
6944
|
+
"application/json": {
|
|
6945
|
+
"schema": {
|
|
6946
|
+
"description": "Invalid parameters"
|
|
6947
|
+
}
|
|
6948
|
+
}
|
|
6949
|
+
},
|
|
6950
|
+
"description": ""
|
|
6951
|
+
},
|
|
6952
|
+
"409": {
|
|
6953
|
+
"content": {
|
|
6954
|
+
"application/json": {
|
|
6955
|
+
"schema": {
|
|
6956
|
+
"description": "Load test already running"
|
|
6957
|
+
}
|
|
6958
|
+
}
|
|
6959
|
+
},
|
|
6960
|
+
"description": ""
|
|
6961
|
+
}
|
|
6962
|
+
},
|
|
6963
|
+
"security": [
|
|
6964
|
+
{
|
|
6965
|
+
"cookieAuth": []
|
|
6966
|
+
}
|
|
6967
|
+
],
|
|
6968
|
+
"summary": "Start load test",
|
|
6969
|
+
"tags": [
|
|
6970
|
+
"IPC/RPC Testing"
|
|
6971
|
+
],
|
|
6972
|
+
"x-async-capable": false
|
|
6973
|
+
}
|
|
6974
|
+
},
|
|
6975
|
+
"/cfg/ipc/admin/api/test/load/status/": {
|
|
6976
|
+
"get": {
|
|
6977
|
+
"description": "Get current status of running or completed load test.",
|
|
6978
|
+
"operationId": "cfg_ipc_admin_api_test_load_status_retrieve",
|
|
6979
|
+
"responses": {
|
|
6980
|
+
"200": {
|
|
6981
|
+
"content": {
|
|
6982
|
+
"application/json": {
|
|
6983
|
+
"schema": {
|
|
6984
|
+
"$ref": "#/components/schemas/LoadTestStatus"
|
|
6985
|
+
}
|
|
6986
|
+
}
|
|
6987
|
+
},
|
|
6988
|
+
"description": ""
|
|
6989
|
+
}
|
|
6990
|
+
},
|
|
6991
|
+
"security": [
|
|
6992
|
+
{
|
|
6993
|
+
"cookieAuth": []
|
|
6994
|
+
}
|
|
6995
|
+
],
|
|
6996
|
+
"summary": "Get load test status",
|
|
6997
|
+
"tags": [
|
|
6998
|
+
"IPC/RPC Testing"
|
|
6999
|
+
],
|
|
7000
|
+
"x-async-capable": false
|
|
7001
|
+
}
|
|
7002
|
+
},
|
|
7003
|
+
"/cfg/ipc/admin/api/test/load/stop/": {
|
|
7004
|
+
"post": {
|
|
7005
|
+
"description": "Stop currently running load test.",
|
|
7006
|
+
"operationId": "cfg_ipc_admin_api_test_load_stop_create",
|
|
7007
|
+
"requestBody": {
|
|
7008
|
+
"content": {
|
|
7009
|
+
"application/json": {
|
|
7010
|
+
"schema": {
|
|
7011
|
+
"$ref": "#/components/schemas/TestRPCRequestRequest"
|
|
7012
|
+
}
|
|
7013
|
+
},
|
|
7014
|
+
"application/x-www-form-urlencoded": {
|
|
7015
|
+
"schema": {
|
|
7016
|
+
"$ref": "#/components/schemas/TestRPCRequestRequest"
|
|
7017
|
+
}
|
|
7018
|
+
},
|
|
7019
|
+
"multipart/form-data": {
|
|
7020
|
+
"schema": {
|
|
7021
|
+
"$ref": "#/components/schemas/TestRPCRequestRequest"
|
|
7022
|
+
}
|
|
7023
|
+
}
|
|
7024
|
+
},
|
|
7025
|
+
"required": true
|
|
7026
|
+
},
|
|
7027
|
+
"responses": {
|
|
7028
|
+
"200": {
|
|
7029
|
+
"content": {
|
|
7030
|
+
"application/json": {
|
|
7031
|
+
"schema": {
|
|
7032
|
+
"description": "Load test stopped"
|
|
7033
|
+
}
|
|
7034
|
+
}
|
|
7035
|
+
},
|
|
7036
|
+
"description": ""
|
|
7037
|
+
},
|
|
7038
|
+
"400": {
|
|
7039
|
+
"content": {
|
|
7040
|
+
"application/json": {
|
|
7041
|
+
"schema": {
|
|
7042
|
+
"description": "No load test running"
|
|
7043
|
+
}
|
|
7044
|
+
}
|
|
7045
|
+
},
|
|
7046
|
+
"description": ""
|
|
7047
|
+
}
|
|
7048
|
+
},
|
|
7049
|
+
"security": [
|
|
7050
|
+
{
|
|
7051
|
+
"cookieAuth": []
|
|
7052
|
+
}
|
|
7053
|
+
],
|
|
7054
|
+
"summary": "Stop load test",
|
|
7055
|
+
"tags": [
|
|
7056
|
+
"IPC/RPC Testing"
|
|
7057
|
+
],
|
|
7058
|
+
"x-async-capable": false
|
|
7059
|
+
}
|
|
7060
|
+
},
|
|
7061
|
+
"/cfg/ipc/admin/api/test/send/": {
|
|
7062
|
+
"post": {
|
|
7063
|
+
"description": "Send a single RPC request for testing purposes and measure response time.",
|
|
7064
|
+
"operationId": "cfg_ipc_admin_api_test_send_create",
|
|
7065
|
+
"requestBody": {
|
|
7066
|
+
"content": {
|
|
7067
|
+
"application/json": {
|
|
7068
|
+
"schema": {
|
|
7069
|
+
"$ref": "#/components/schemas/TestRPCRequestRequest"
|
|
7070
|
+
}
|
|
7071
|
+
},
|
|
7072
|
+
"application/x-www-form-urlencoded": {
|
|
7073
|
+
"schema": {
|
|
7074
|
+
"$ref": "#/components/schemas/TestRPCRequestRequest"
|
|
7075
|
+
}
|
|
7076
|
+
},
|
|
7077
|
+
"multipart/form-data": {
|
|
7078
|
+
"schema": {
|
|
7079
|
+
"$ref": "#/components/schemas/TestRPCRequestRequest"
|
|
7080
|
+
}
|
|
7081
|
+
}
|
|
7082
|
+
},
|
|
7083
|
+
"required": true
|
|
7084
|
+
},
|
|
7085
|
+
"responses": {
|
|
7086
|
+
"200": {
|
|
7087
|
+
"content": {
|
|
7088
|
+
"application/json": {
|
|
7089
|
+
"schema": {
|
|
7090
|
+
"$ref": "#/components/schemas/TestRPCResponse"
|
|
7091
|
+
}
|
|
7092
|
+
}
|
|
7093
|
+
},
|
|
7094
|
+
"description": ""
|
|
7095
|
+
},
|
|
7096
|
+
"400": {
|
|
7097
|
+
"content": {
|
|
7098
|
+
"application/json": {
|
|
7099
|
+
"schema": {
|
|
7100
|
+
"description": "Invalid parameters"
|
|
7101
|
+
}
|
|
7102
|
+
}
|
|
7103
|
+
},
|
|
7104
|
+
"description": ""
|
|
7105
|
+
},
|
|
7106
|
+
"500": {
|
|
7107
|
+
"content": {
|
|
7108
|
+
"application/json": {
|
|
7109
|
+
"schema": {
|
|
7110
|
+
"description": "RPC call failed"
|
|
7111
|
+
}
|
|
7112
|
+
}
|
|
7113
|
+
},
|
|
7114
|
+
"description": ""
|
|
7115
|
+
}
|
|
7116
|
+
},
|
|
7117
|
+
"security": [
|
|
7118
|
+
{
|
|
7119
|
+
"cookieAuth": []
|
|
7120
|
+
}
|
|
7121
|
+
],
|
|
7122
|
+
"summary": "Send test RPC request",
|
|
7123
|
+
"tags": [
|
|
7124
|
+
"IPC/RPC Testing"
|
|
7125
|
+
],
|
|
7126
|
+
"x-async-capable": false
|
|
7127
|
+
}
|
|
7128
|
+
},
|
|
7129
|
+
"/cfg/ipc/monitor/health/": {
|
|
7130
|
+
"get": {
|
|
7131
|
+
"description": "Returns the current health status of the RPC monitoring system.",
|
|
7132
|
+
"operationId": "cfg_ipc_monitor_health_retrieve",
|
|
7133
|
+
"responses": {
|
|
7134
|
+
"200": {
|
|
7135
|
+
"content": {
|
|
7136
|
+
"application/json": {
|
|
7137
|
+
"schema": {
|
|
7138
|
+
"$ref": "#/components/schemas/HealthCheck"
|
|
7139
|
+
}
|
|
7140
|
+
}
|
|
7141
|
+
},
|
|
7142
|
+
"description": ""
|
|
7143
|
+
},
|
|
7144
|
+
"503": {
|
|
7145
|
+
"content": {
|
|
7146
|
+
"application/json": {
|
|
7147
|
+
"schema": {
|
|
7148
|
+
"description": "Service unavailable"
|
|
7149
|
+
}
|
|
7150
|
+
}
|
|
7151
|
+
},
|
|
7152
|
+
"description": ""
|
|
7153
|
+
}
|
|
7154
|
+
},
|
|
7155
|
+
"security": [
|
|
7156
|
+
{
|
|
7157
|
+
"cookieAuth": []
|
|
7158
|
+
}
|
|
7159
|
+
],
|
|
7160
|
+
"summary": "Get RPC health status",
|
|
7161
|
+
"tags": [
|
|
7162
|
+
"IPC/RPC Monitoring"
|
|
7163
|
+
],
|
|
7164
|
+
"x-async-capable": false
|
|
7165
|
+
}
|
|
7166
|
+
},
|
|
7167
|
+
"/cfg/ipc/monitor/methods/": {
|
|
7168
|
+
"get": {
|
|
7169
|
+
"description": "Returns statistics grouped by RPC method.",
|
|
7170
|
+
"operationId": "cfg_ipc_monitor_methods_retrieve",
|
|
7171
|
+
"responses": {
|
|
7172
|
+
"200": {
|
|
7173
|
+
"content": {
|
|
7174
|
+
"application/json": {
|
|
7175
|
+
"schema": {
|
|
7176
|
+
"$ref": "#/components/schemas/MethodStats"
|
|
7177
|
+
}
|
|
7178
|
+
}
|
|
7179
|
+
},
|
|
7180
|
+
"description": ""
|
|
7181
|
+
},
|
|
7182
|
+
"503": {
|
|
7183
|
+
"content": {
|
|
7184
|
+
"application/json": {
|
|
7185
|
+
"schema": {
|
|
7186
|
+
"description": "Service unavailable"
|
|
7187
|
+
}
|
|
7188
|
+
}
|
|
7189
|
+
},
|
|
7190
|
+
"description": ""
|
|
7191
|
+
}
|
|
7192
|
+
},
|
|
7193
|
+
"security": [
|
|
7194
|
+
{
|
|
7195
|
+
"cookieAuth": []
|
|
7196
|
+
}
|
|
7197
|
+
],
|
|
7198
|
+
"summary": "Get method statistics",
|
|
7199
|
+
"tags": [
|
|
7200
|
+
"IPC/RPC Monitoring"
|
|
7201
|
+
],
|
|
7202
|
+
"x-async-capable": false
|
|
7203
|
+
}
|
|
7204
|
+
},
|
|
7205
|
+
"/cfg/ipc/monitor/notifications/": {
|
|
7206
|
+
"get": {
|
|
7207
|
+
"description": "Returns statistics about RPC notifications.",
|
|
7208
|
+
"operationId": "cfg_ipc_monitor_notifications_retrieve",
|
|
7209
|
+
"responses": {
|
|
7210
|
+
"200": {
|
|
7211
|
+
"content": {
|
|
7212
|
+
"application/json": {
|
|
7213
|
+
"schema": {
|
|
7214
|
+
"$ref": "#/components/schemas/NotificationStats"
|
|
7215
|
+
}
|
|
7216
|
+
}
|
|
7217
|
+
},
|
|
7218
|
+
"description": ""
|
|
7219
|
+
},
|
|
7220
|
+
"503": {
|
|
7221
|
+
"content": {
|
|
7222
|
+
"application/json": {
|
|
7223
|
+
"schema": {
|
|
7224
|
+
"description": "Service unavailable"
|
|
7225
|
+
}
|
|
7226
|
+
}
|
|
7227
|
+
},
|
|
7228
|
+
"description": ""
|
|
7229
|
+
}
|
|
7230
|
+
},
|
|
7231
|
+
"security": [
|
|
7232
|
+
{
|
|
7233
|
+
"cookieAuth": []
|
|
7234
|
+
}
|
|
7235
|
+
],
|
|
7236
|
+
"summary": "Get notification statistics",
|
|
7237
|
+
"tags": [
|
|
7238
|
+
"IPC/RPC Monitoring"
|
|
7239
|
+
],
|
|
7240
|
+
"x-async-capable": false
|
|
7241
|
+
}
|
|
7242
|
+
},
|
|
7243
|
+
"/cfg/ipc/monitor/overview/": {
|
|
7244
|
+
"get": {
|
|
7245
|
+
"description": "Returns overview statistics for RPC monitoring.",
|
|
7246
|
+
"operationId": "cfg_ipc_monitor_overview_retrieve",
|
|
7247
|
+
"responses": {
|
|
7248
|
+
"200": {
|
|
7249
|
+
"content": {
|
|
7250
|
+
"application/json": {
|
|
7251
|
+
"schema": {
|
|
7252
|
+
"$ref": "#/components/schemas/OverviewStats"
|
|
7253
|
+
}
|
|
7254
|
+
}
|
|
7255
|
+
},
|
|
7256
|
+
"description": ""
|
|
7257
|
+
},
|
|
7258
|
+
"503": {
|
|
7259
|
+
"content": {
|
|
7260
|
+
"application/json": {
|
|
7261
|
+
"schema": {
|
|
7262
|
+
"description": "Service unavailable"
|
|
7263
|
+
}
|
|
7264
|
+
}
|
|
7265
|
+
},
|
|
7266
|
+
"description": ""
|
|
7267
|
+
}
|
|
7268
|
+
},
|
|
7269
|
+
"security": [
|
|
7270
|
+
{
|
|
7271
|
+
"cookieAuth": []
|
|
7272
|
+
}
|
|
7273
|
+
],
|
|
7274
|
+
"summary": "Get overview statistics",
|
|
7275
|
+
"tags": [
|
|
7276
|
+
"IPC/RPC Monitoring"
|
|
7277
|
+
],
|
|
7278
|
+
"x-async-capable": false
|
|
7279
|
+
}
|
|
7280
|
+
},
|
|
7281
|
+
"/cfg/ipc/monitor/requests/": {
|
|
7282
|
+
"get": {
|
|
7283
|
+
"description": "Returns a list of recent RPC requests with their details.",
|
|
7284
|
+
"operationId": "cfg_ipc_monitor_requests_retrieve",
|
|
7285
|
+
"parameters": [
|
|
7286
|
+
{
|
|
7287
|
+
"description": "Number of requests to return (default: 50, max: 200)",
|
|
7288
|
+
"in": "query",
|
|
7289
|
+
"name": "count",
|
|
7290
|
+
"schema": {
|
|
7291
|
+
"type": "integer"
|
|
7292
|
+
}
|
|
7293
|
+
}
|
|
7294
|
+
],
|
|
7295
|
+
"responses": {
|
|
7296
|
+
"200": {
|
|
7297
|
+
"content": {
|
|
7298
|
+
"application/json": {
|
|
7299
|
+
"schema": {
|
|
7300
|
+
"$ref": "#/components/schemas/RecentRequests"
|
|
7301
|
+
}
|
|
7302
|
+
}
|
|
7303
|
+
},
|
|
7304
|
+
"description": ""
|
|
7305
|
+
},
|
|
7306
|
+
"400": {
|
|
7307
|
+
"content": {
|
|
7308
|
+
"application/json": {
|
|
7309
|
+
"schema": {
|
|
7310
|
+
"description": "Invalid parameters"
|
|
7311
|
+
}
|
|
7312
|
+
}
|
|
7313
|
+
},
|
|
7314
|
+
"description": ""
|
|
7315
|
+
},
|
|
7316
|
+
"503": {
|
|
7317
|
+
"content": {
|
|
7318
|
+
"application/json": {
|
|
7319
|
+
"schema": {
|
|
7320
|
+
"description": "Service unavailable"
|
|
6106
7321
|
}
|
|
6107
7322
|
}
|
|
6108
7323
|
},
|
|
@@ -6111,55 +7326,46 @@ export const OPENAPI_SCHEMA = {
|
|
|
6111
7326
|
},
|
|
6112
7327
|
"security": [
|
|
6113
7328
|
{
|
|
6114
|
-
"
|
|
7329
|
+
"cookieAuth": []
|
|
6115
7330
|
}
|
|
6116
7331
|
],
|
|
6117
|
-
"summary": "
|
|
7332
|
+
"summary": "Get recent RPC requests",
|
|
6118
7333
|
"tags": [
|
|
6119
|
-
"
|
|
7334
|
+
"IPC/RPC Monitoring"
|
|
6120
7335
|
],
|
|
6121
7336
|
"x-async-capable": false
|
|
6122
|
-
}
|
|
6123
|
-
|
|
6124
|
-
|
|
6125
|
-
|
|
7337
|
+
}
|
|
7338
|
+
},
|
|
7339
|
+
"/cfg/ipc/test/load/start/": {
|
|
7340
|
+
"post": {
|
|
7341
|
+
"description": "Start a load test by sending multiple concurrent RPC requests.",
|
|
7342
|
+
"operationId": "cfg_ipc_test_load_start_create",
|
|
6126
7343
|
"requestBody": {
|
|
6127
7344
|
"content": {
|
|
6128
7345
|
"application/json": {
|
|
6129
|
-
"examples": {
|
|
6130
|
-
"ValidProfileUpdate": {
|
|
6131
|
-
"summary": "Valid Profile Update",
|
|
6132
|
-
"value": {
|
|
6133
|
-
"company": "Tech Corp",
|
|
6134
|
-
"first_name": "John",
|
|
6135
|
-
"last_name": "Doe",
|
|
6136
|
-
"phone": "+1 (555) 123-4567",
|
|
6137
|
-
"position": "Software Engineer"
|
|
6138
|
-
}
|
|
6139
|
-
}
|
|
6140
|
-
},
|
|
6141
7346
|
"schema": {
|
|
6142
|
-
"$ref": "#/components/schemas/
|
|
7347
|
+
"$ref": "#/components/schemas/LoadTestRequestRequest"
|
|
6143
7348
|
}
|
|
6144
7349
|
},
|
|
6145
7350
|
"application/x-www-form-urlencoded": {
|
|
6146
7351
|
"schema": {
|
|
6147
|
-
"$ref": "#/components/schemas/
|
|
7352
|
+
"$ref": "#/components/schemas/LoadTestRequestRequest"
|
|
6148
7353
|
}
|
|
6149
7354
|
},
|
|
6150
7355
|
"multipart/form-data": {
|
|
6151
7356
|
"schema": {
|
|
6152
|
-
"$ref": "#/components/schemas/
|
|
7357
|
+
"$ref": "#/components/schemas/LoadTestRequestRequest"
|
|
6153
7358
|
}
|
|
6154
7359
|
}
|
|
6155
|
-
}
|
|
7360
|
+
},
|
|
7361
|
+
"required": true
|
|
6156
7362
|
},
|
|
6157
7363
|
"responses": {
|
|
6158
7364
|
"200": {
|
|
6159
7365
|
"content": {
|
|
6160
7366
|
"application/json": {
|
|
6161
7367
|
"schema": {
|
|
6162
|
-
"$ref": "#/components/schemas/
|
|
7368
|
+
"$ref": "#/components/schemas/LoadTestResponse"
|
|
6163
7369
|
}
|
|
6164
7370
|
}
|
|
6165
7371
|
},
|
|
@@ -6169,17 +7375,17 @@ export const OPENAPI_SCHEMA = {
|
|
|
6169
7375
|
"content": {
|
|
6170
7376
|
"application/json": {
|
|
6171
7377
|
"schema": {
|
|
6172
|
-
"description": "Invalid
|
|
7378
|
+
"description": "Invalid parameters"
|
|
6173
7379
|
}
|
|
6174
7380
|
}
|
|
6175
7381
|
},
|
|
6176
7382
|
"description": ""
|
|
6177
7383
|
},
|
|
6178
|
-
"
|
|
7384
|
+
"409": {
|
|
6179
7385
|
"content": {
|
|
6180
7386
|
"application/json": {
|
|
6181
7387
|
"schema": {
|
|
6182
|
-
"description": "
|
|
7388
|
+
"description": "Load test already running"
|
|
6183
7389
|
}
|
|
6184
7390
|
}
|
|
6185
7391
|
},
|
|
@@ -6188,35 +7394,63 @@ export const OPENAPI_SCHEMA = {
|
|
|
6188
7394
|
},
|
|
6189
7395
|
"security": [
|
|
6190
7396
|
{
|
|
6191
|
-
"
|
|
7397
|
+
"cookieAuth": []
|
|
6192
7398
|
}
|
|
6193
7399
|
],
|
|
6194
|
-
"summary": "
|
|
7400
|
+
"summary": "Start load test",
|
|
6195
7401
|
"tags": [
|
|
6196
|
-
"
|
|
7402
|
+
"IPC/RPC Testing"
|
|
6197
7403
|
],
|
|
6198
7404
|
"x-async-capable": false
|
|
6199
7405
|
}
|
|
6200
7406
|
},
|
|
6201
|
-
"/cfg/
|
|
7407
|
+
"/cfg/ipc/test/load/status/": {
|
|
7408
|
+
"get": {
|
|
7409
|
+
"description": "Get current status of running or completed load test.",
|
|
7410
|
+
"operationId": "cfg_ipc_test_load_status_retrieve",
|
|
7411
|
+
"responses": {
|
|
7412
|
+
"200": {
|
|
7413
|
+
"content": {
|
|
7414
|
+
"application/json": {
|
|
7415
|
+
"schema": {
|
|
7416
|
+
"$ref": "#/components/schemas/LoadTestStatus"
|
|
7417
|
+
}
|
|
7418
|
+
}
|
|
7419
|
+
},
|
|
7420
|
+
"description": ""
|
|
7421
|
+
}
|
|
7422
|
+
},
|
|
7423
|
+
"security": [
|
|
7424
|
+
{
|
|
7425
|
+
"cookieAuth": []
|
|
7426
|
+
}
|
|
7427
|
+
],
|
|
7428
|
+
"summary": "Get load test status",
|
|
7429
|
+
"tags": [
|
|
7430
|
+
"IPC/RPC Testing"
|
|
7431
|
+
],
|
|
7432
|
+
"x-async-capable": false
|
|
7433
|
+
}
|
|
7434
|
+
},
|
|
7435
|
+
"/cfg/ipc/test/load/stop/": {
|
|
6202
7436
|
"post": {
|
|
6203
|
-
"description": "
|
|
6204
|
-
"operationId": "
|
|
7437
|
+
"description": "Stop currently running load test.",
|
|
7438
|
+
"operationId": "cfg_ipc_test_load_stop_create",
|
|
6205
7439
|
"requestBody": {
|
|
6206
7440
|
"content": {
|
|
6207
7441
|
"application/json": {
|
|
6208
7442
|
"schema": {
|
|
6209
|
-
"$ref": "#/components/schemas/
|
|
7443
|
+
"$ref": "#/components/schemas/TestRPCRequestRequest"
|
|
6210
7444
|
}
|
|
6211
7445
|
},
|
|
6212
7446
|
"application/x-www-form-urlencoded": {
|
|
6213
7447
|
"schema": {
|
|
6214
|
-
"$ref": "#/components/schemas/
|
|
7448
|
+
"$ref": "#/components/schemas/TestRPCRequestRequest"
|
|
6215
7449
|
}
|
|
6216
7450
|
},
|
|
6217
7451
|
"multipart/form-data": {
|
|
6218
7452
|
"schema": {
|
|
6219
|
-
"$ref": "#/components/schemas/
|
|
7453
|
+
"$ref": "#/components/schemas/TestRPCRequestRequest"
|
|
6220
7454
|
}
|
|
6221
7455
|
}
|
|
6222
7456
|
},
|
|
@@ -6227,29 +7461,17 @@ export const OPENAPI_SCHEMA = {
|
|
|
6227
7461
|
"content": {
|
|
6228
7462
|
"application/json": {
|
|
6229
7463
|
"schema": {
|
|
6230
|
-
"
|
|
7464
|
+
"description": "Load test stopped"
|
|
6231
7465
|
}
|
|
6232
7466
|
}
|
|
6233
7467
|
},
|
|
6234
7468
|
"description": ""
|
|
6235
|
-
}
|
|
6236
|
-
|
|
6237
|
-
"tags": [
|
|
6238
|
-
"Auth"
|
|
6239
|
-
],
|
|
6240
|
-
"x-async-capable": false
|
|
6241
|
-
}
|
|
6242
|
-
},
|
|
6243
|
-
"/cfg/endpoints/drf/": {
|
|
6244
|
-
"get": {
|
|
6245
|
-
"description": "Return endpoints status data.",
|
|
6246
|
-
"operationId": "cfg_endpoints_drf_retrieve",
|
|
6247
|
-
"responses": {
|
|
6248
|
-
"200": {
|
|
7469
|
+
},
|
|
7470
|
+
"400": {
|
|
6249
7471
|
"content": {
|
|
6250
7472
|
"application/json": {
|
|
6251
7473
|
"schema": {
|
|
6252
|
-
"
|
|
7474
|
+
"description": "No load test running"
|
|
6253
7475
|
}
|
|
6254
7476
|
}
|
|
6255
7477
|
},
|
|
@@ -6258,54 +7480,66 @@ export const OPENAPI_SCHEMA = {
|
|
|
6258
7480
|
},
|
|
6259
7481
|
"security": [
|
|
6260
7482
|
{
|
|
6261
|
-
"
|
|
6262
|
-
}
|
|
6263
|
-
{}
|
|
7483
|
+
"cookieAuth": []
|
|
7484
|
+
}
|
|
6264
7485
|
],
|
|
7486
|
+
"summary": "Stop load test",
|
|
6265
7487
|
"tags": [
|
|
6266
|
-
"
|
|
7488
|
+
"IPC/RPC Testing"
|
|
6267
7489
|
],
|
|
6268
7490
|
"x-async-capable": false
|
|
6269
7491
|
}
|
|
6270
7492
|
},
|
|
6271
|
-
"/cfg/
|
|
6272
|
-
"
|
|
6273
|
-
"description": "
|
|
6274
|
-
"operationId": "
|
|
7493
|
+
"/cfg/ipc/test/send/": {
|
|
7494
|
+
"post": {
|
|
7495
|
+
"description": "Send a single RPC request for testing purposes and measure response time.",
|
|
7496
|
+
"operationId": "cfg_ipc_test_send_create",
|
|
7497
|
+
"requestBody": {
|
|
7498
|
+
"content": {
|
|
7499
|
+
"application/json": {
|
|
7500
|
+
"schema": {
|
|
7501
|
+
"$ref": "#/components/schemas/TestRPCRequestRequest"
|
|
7502
|
+
}
|
|
7503
|
+
},
|
|
7504
|
+
"application/x-www-form-urlencoded": {
|
|
7505
|
+
"schema": {
|
|
7506
|
+
"$ref": "#/components/schemas/TestRPCRequestRequest"
|
|
7507
|
+
}
|
|
7508
|
+
},
|
|
7509
|
+
"multipart/form-data": {
|
|
7510
|
+
"schema": {
|
|
7511
|
+
"$ref": "#/components/schemas/TestRPCRequestRequest"
|
|
7512
|
+
}
|
|
7513
|
+
}
|
|
7514
|
+
},
|
|
7515
|
+
"required": true
|
|
7516
|
+
},
|
|
6275
7517
|
"responses": {
|
|
6276
7518
|
"200": {
|
|
6277
7519
|
"content": {
|
|
6278
7520
|
"application/json": {
|
|
6279
7521
|
"schema": {
|
|
6280
|
-
"$ref": "#/components/schemas/
|
|
7522
|
+
"$ref": "#/components/schemas/TestRPCResponse"
|
|
6281
7523
|
}
|
|
6282
7524
|
}
|
|
6283
7525
|
},
|
|
6284
7526
|
"description": ""
|
|
6285
|
-
}
|
|
6286
|
-
},
|
|
6287
|
-
"security": [
|
|
6288
|
-
{
|
|
6289
|
-
"jwtAuth": []
|
|
6290
7527
|
},
|
|
6291
|
-
{
|
|
6292
|
-
],
|
|
6293
|
-
"tags": [
|
|
6294
|
-
"health"
|
|
6295
|
-
],
|
|
6296
|
-
"x-async-capable": false
|
|
6297
|
-
}
|
|
6298
|
-
},
|
|
6299
|
-
"/cfg/health/drf/quick/": {
|
|
6300
|
-
"get": {
|
|
6301
|
-
"description": "Return minimal health status.",
|
|
6302
|
-
"operationId": "cfg_health_drf_quick_retrieve",
|
|
6303
|
-
"responses": {
|
|
6304
|
-
"200": {
|
|
7528
|
+
"400": {
|
|
6305
7529
|
"content": {
|
|
6306
7530
|
"application/json": {
|
|
6307
7531
|
"schema": {
|
|
6308
|
-
"
|
|
7532
|
+
"description": "Invalid parameters"
|
|
7533
|
+
}
|
|
7534
|
+
}
|
|
7535
|
+
},
|
|
7536
|
+
"description": ""
|
|
7537
|
+
},
|
|
7538
|
+
"500": {
|
|
7539
|
+
"content": {
|
|
7540
|
+
"application/json": {
|
|
7541
|
+
"schema": {
|
|
7542
|
+
"description": "RPC call failed"
|
|
6309
7543
|
}
|
|
6310
7544
|
}
|
|
6311
7545
|
},
|
|
@@ -6314,12 +7548,12 @@ export const OPENAPI_SCHEMA = {
|
|
|
6314
7548
|
},
|
|
6315
7549
|
"security": [
|
|
6316
7550
|
{
|
|
6317
|
-
"
|
|
6318
|
-
}
|
|
6319
|
-
{}
|
|
7551
|
+
"cookieAuth": []
|
|
7552
|
+
}
|
|
6320
7553
|
],
|
|
7554
|
+
"summary": "Send test RPC request",
|
|
6321
7555
|
"tags": [
|
|
6322
|
-
"
|
|
7556
|
+
"IPC/RPC Testing"
|
|
6323
7557
|
],
|
|
6324
7558
|
"x-async-capable": false
|
|
6325
7559
|
}
|
|
@@ -6360,11 +7594,6 @@ export const OPENAPI_SCHEMA = {
|
|
|
6360
7594
|
"description": ""
|
|
6361
7595
|
}
|
|
6362
7596
|
},
|
|
6363
|
-
"security": [
|
|
6364
|
-
{
|
|
6365
|
-
"jwtAuth": []
|
|
6366
|
-
}
|
|
6367
|
-
],
|
|
6368
7597
|
"tags": [
|
|
6369
7598
|
"knowbase"
|
|
6370
7599
|
],
|
|
@@ -6405,11 +7634,6 @@ export const OPENAPI_SCHEMA = {
|
|
|
6405
7634
|
"description": ""
|
|
6406
7635
|
}
|
|
6407
7636
|
},
|
|
6408
|
-
"security": [
|
|
6409
|
-
{
|
|
6410
|
-
"jwtAuth": []
|
|
6411
|
-
}
|
|
6412
|
-
],
|
|
6413
7637
|
"tags": [
|
|
6414
7638
|
"knowbase"
|
|
6415
7639
|
],
|
|
@@ -6472,11 +7696,6 @@ export const OPENAPI_SCHEMA = {
|
|
|
6472
7696
|
"description": ""
|
|
6473
7697
|
}
|
|
6474
7698
|
},
|
|
6475
|
-
"security": [
|
|
6476
|
-
{
|
|
6477
|
-
"jwtAuth": []
|
|
6478
|
-
}
|
|
6479
|
-
],
|
|
6480
7699
|
"summary": "Process chat query with RAG",
|
|
6481
7700
|
"tags": [
|
|
6482
7701
|
"knowbase"
|
|
@@ -6505,11 +7724,6 @@ export const OPENAPI_SCHEMA = {
|
|
|
6505
7724
|
"description": "No response body"
|
|
6506
7725
|
}
|
|
6507
7726
|
},
|
|
6508
|
-
"security": [
|
|
6509
|
-
{
|
|
6510
|
-
"jwtAuth": []
|
|
6511
|
-
}
|
|
6512
|
-
],
|
|
6513
7727
|
"tags": [
|
|
6514
7728
|
"knowbase"
|
|
6515
7729
|
],
|
|
@@ -6542,11 +7756,6 @@ export const OPENAPI_SCHEMA = {
|
|
|
6542
7756
|
"description": ""
|
|
6543
7757
|
}
|
|
6544
7758
|
},
|
|
6545
|
-
"security": [
|
|
6546
|
-
{
|
|
6547
|
-
"jwtAuth": []
|
|
6548
|
-
}
|
|
6549
|
-
],
|
|
6550
7759
|
"tags": [
|
|
6551
7760
|
"knowbase"
|
|
6552
7761
|
],
|
|
@@ -6598,11 +7807,6 @@ export const OPENAPI_SCHEMA = {
|
|
|
6598
7807
|
"description": ""
|
|
6599
7808
|
}
|
|
6600
7809
|
},
|
|
6601
|
-
"security": [
|
|
6602
|
-
{
|
|
6603
|
-
"jwtAuth": []
|
|
6604
|
-
}
|
|
6605
|
-
],
|
|
6606
7810
|
"tags": [
|
|
6607
7811
|
"knowbase"
|
|
6608
7812
|
],
|
|
@@ -6655,11 +7859,6 @@ export const OPENAPI_SCHEMA = {
|
|
|
6655
7859
|
"description": ""
|
|
6656
7860
|
}
|
|
6657
7861
|
},
|
|
6658
|
-
"security": [
|
|
6659
|
-
{
|
|
6660
|
-
"jwtAuth": []
|
|
6661
|
-
}
|
|
6662
|
-
],
|
|
6663
7862
|
"tags": [
|
|
6664
7863
|
"knowbase"
|
|
6665
7864
|
],
|
|
@@ -6694,11 +7893,6 @@ export const OPENAPI_SCHEMA = {
|
|
|
6694
7893
|
"description": ""
|
|
6695
7894
|
}
|
|
6696
7895
|
},
|
|
6697
|
-
"security": [
|
|
6698
|
-
{
|
|
6699
|
-
"jwtAuth": []
|
|
6700
|
-
}
|
|
6701
|
-
],
|
|
6702
7896
|
"summary": "Get chat history",
|
|
6703
7897
|
"tags": [
|
|
6704
7898
|
"knowbase"
|
|
@@ -6750,11 +7944,6 @@ export const OPENAPI_SCHEMA = {
|
|
|
6750
7944
|
"description": ""
|
|
6751
7945
|
}
|
|
6752
7946
|
},
|
|
6753
|
-
"security": [
|
|
6754
|
-
{
|
|
6755
|
-
"jwtAuth": []
|
|
6756
|
-
}
|
|
6757
|
-
],
|
|
6758
7947
|
"summary": "List user documents",
|
|
6759
7948
|
"tags": [
|
|
6760
7949
|
"knowbase"
|
|
@@ -6825,11 +8014,6 @@ export const OPENAPI_SCHEMA = {
|
|
|
6825
8014
|
"description": "Rate limit exceeded"
|
|
6826
8015
|
}
|
|
6827
8016
|
},
|
|
6828
|
-
"security": [
|
|
6829
|
-
{
|
|
6830
|
-
"jwtAuth": []
|
|
6831
|
-
}
|
|
6832
|
-
],
|
|
6833
8017
|
"summary": "Upload new document",
|
|
6834
8018
|
"tags": [
|
|
6835
8019
|
"knowbase"
|
|
@@ -6853,11 +8037,6 @@ export const OPENAPI_SCHEMA = {
|
|
|
6853
8037
|
"description": ""
|
|
6854
8038
|
}
|
|
6855
8039
|
},
|
|
6856
|
-
"security": [
|
|
6857
|
-
{
|
|
6858
|
-
"jwtAuth": []
|
|
6859
|
-
}
|
|
6860
|
-
],
|
|
6861
8040
|
"summary": "Get processing statistics",
|
|
6862
8041
|
"tags": [
|
|
6863
8042
|
"knowbase"
|
|
@@ -6889,11 +8068,6 @@ export const OPENAPI_SCHEMA = {
|
|
|
6889
8068
|
"description": "Document not found"
|
|
6890
8069
|
}
|
|
6891
8070
|
},
|
|
6892
|
-
"security": [
|
|
6893
|
-
{
|
|
6894
|
-
"jwtAuth": []
|
|
6895
|
-
}
|
|
6896
|
-
],
|
|
6897
8071
|
"summary": "Delete document",
|
|
6898
8072
|
"tags": [
|
|
6899
8073
|
"knowbase"
|
|
@@ -6930,11 +8104,6 @@ export const OPENAPI_SCHEMA = {
|
|
|
6930
8104
|
"description": "Document not found"
|
|
6931
8105
|
}
|
|
6932
8106
|
},
|
|
6933
|
-
"security": [
|
|
6934
|
-
{
|
|
6935
|
-
"jwtAuth": []
|
|
6936
|
-
}
|
|
6937
|
-
],
|
|
6938
8107
|
"summary": "Get document details",
|
|
6939
8108
|
"tags": [
|
|
6940
8109
|
"knowbase"
|
|
@@ -6987,11 +8156,6 @@ export const OPENAPI_SCHEMA = {
|
|
|
6987
8156
|
"description": ""
|
|
6988
8157
|
}
|
|
6989
8158
|
},
|
|
6990
|
-
"security": [
|
|
6991
|
-
{
|
|
6992
|
-
"jwtAuth": []
|
|
6993
|
-
}
|
|
6994
|
-
],
|
|
6995
8159
|
"tags": [
|
|
6996
8160
|
"knowbase"
|
|
6997
8161
|
],
|
|
@@ -7044,11 +8208,6 @@ export const OPENAPI_SCHEMA = {
|
|
|
7044
8208
|
"description": ""
|
|
7045
8209
|
}
|
|
7046
8210
|
},
|
|
7047
|
-
"security": [
|
|
7048
|
-
{
|
|
7049
|
-
"jwtAuth": []
|
|
7050
|
-
}
|
|
7051
|
-
],
|
|
7052
8211
|
"tags": [
|
|
7053
8212
|
"knowbase"
|
|
7054
8213
|
],
|
|
@@ -7103,11 +8262,6 @@ export const OPENAPI_SCHEMA = {
|
|
|
7103
8262
|
"description": ""
|
|
7104
8263
|
}
|
|
7105
8264
|
},
|
|
7106
|
-
"security": [
|
|
7107
|
-
{
|
|
7108
|
-
"jwtAuth": []
|
|
7109
|
-
}
|
|
7110
|
-
],
|
|
7111
8265
|
"summary": "Reprocess document",
|
|
7112
8266
|
"tags": [
|
|
7113
8267
|
"knowbase"
|
|
@@ -7143,11 +8297,6 @@ export const OPENAPI_SCHEMA = {
|
|
|
7143
8297
|
"description": ""
|
|
7144
8298
|
}
|
|
7145
8299
|
},
|
|
7146
|
-
"security": [
|
|
7147
|
-
{
|
|
7148
|
-
"jwtAuth": []
|
|
7149
|
-
}
|
|
7150
|
-
],
|
|
7151
8300
|
"summary": "Get document processing status",
|
|
7152
8301
|
"tags": [
|
|
7153
8302
|
"knowbase"
|
|
@@ -7191,11 +8340,6 @@ export const OPENAPI_SCHEMA = {
|
|
|
7191
8340
|
"description": ""
|
|
7192
8341
|
}
|
|
7193
8342
|
},
|
|
7194
|
-
"security": [
|
|
7195
|
-
{
|
|
7196
|
-
"jwtAuth": []
|
|
7197
|
-
}
|
|
7198
|
-
],
|
|
7199
8343
|
"summary": "List user chat sessions",
|
|
7200
8344
|
"tags": [
|
|
7201
8345
|
"knowbase"
|
|
@@ -7236,11 +8380,6 @@ export const OPENAPI_SCHEMA = {
|
|
|
7236
8380
|
"description": ""
|
|
7237
8381
|
}
|
|
7238
8382
|
},
|
|
7239
|
-
"security": [
|
|
7240
|
-
{
|
|
7241
|
-
"jwtAuth": []
|
|
7242
|
-
}
|
|
7243
|
-
],
|
|
7244
8383
|
"summary": "Create new chat session",
|
|
7245
8384
|
"tags": [
|
|
7246
8385
|
"knowbase"
|
|
@@ -7269,11 +8408,6 @@ export const OPENAPI_SCHEMA = {
|
|
|
7269
8408
|
"description": "No response body"
|
|
7270
8409
|
}
|
|
7271
8410
|
},
|
|
7272
|
-
"security": [
|
|
7273
|
-
{
|
|
7274
|
-
"jwtAuth": []
|
|
7275
|
-
}
|
|
7276
|
-
],
|
|
7277
8411
|
"tags": [
|
|
7278
8412
|
"knowbase"
|
|
7279
8413
|
],
|
|
@@ -7306,11 +8440,6 @@ export const OPENAPI_SCHEMA = {
|
|
|
7306
8440
|
"description": ""
|
|
7307
8441
|
}
|
|
7308
8442
|
},
|
|
7309
|
-
"security": [
|
|
7310
|
-
{
|
|
7311
|
-
"jwtAuth": []
|
|
7312
|
-
}
|
|
7313
|
-
],
|
|
7314
8443
|
"tags": [
|
|
7315
8444
|
"knowbase"
|
|
7316
8445
|
],
|
|
@@ -7362,11 +8491,6 @@ export const OPENAPI_SCHEMA = {
|
|
|
7362
8491
|
"description": ""
|
|
7363
8492
|
}
|
|
7364
8493
|
},
|
|
7365
|
-
"security": [
|
|
7366
|
-
{
|
|
7367
|
-
"jwtAuth": []
|
|
7368
|
-
}
|
|
7369
|
-
],
|
|
7370
8494
|
"tags": [
|
|
7371
8495
|
"knowbase"
|
|
7372
8496
|
],
|
|
@@ -7418,11 +8542,6 @@ export const OPENAPI_SCHEMA = {
|
|
|
7418
8542
|
"description": ""
|
|
7419
8543
|
}
|
|
7420
8544
|
},
|
|
7421
|
-
"security": [
|
|
7422
|
-
{
|
|
7423
|
-
"jwtAuth": []
|
|
7424
|
-
}
|
|
7425
|
-
],
|
|
7426
8545
|
"tags": [
|
|
7427
8546
|
"knowbase"
|
|
7428
8547
|
],
|
|
@@ -7476,11 +8595,6 @@ export const OPENAPI_SCHEMA = {
|
|
|
7476
8595
|
"description": ""
|
|
7477
8596
|
}
|
|
7478
8597
|
},
|
|
7479
|
-
"security": [
|
|
7480
|
-
{
|
|
7481
|
-
"jwtAuth": []
|
|
7482
|
-
}
|
|
7483
|
-
],
|
|
7484
8598
|
"summary": "Activate chat session",
|
|
7485
8599
|
"tags": [
|
|
7486
8600
|
"knowbase"
|
|
@@ -7535,11 +8649,6 @@ export const OPENAPI_SCHEMA = {
|
|
|
7535
8649
|
"description": ""
|
|
7536
8650
|
}
|
|
7537
8651
|
},
|
|
7538
|
-
"security": [
|
|
7539
|
-
{
|
|
7540
|
-
"jwtAuth": []
|
|
7541
|
-
}
|
|
7542
|
-
],
|
|
7543
8652
|
"summary": "Archive chat session",
|
|
7544
8653
|
"tags": [
|
|
7545
8654
|
"knowbase"
|
|
@@ -7584,9 +8693,6 @@ export const OPENAPI_SCHEMA = {
|
|
|
7584
8693
|
}
|
|
7585
8694
|
},
|
|
7586
8695
|
"security": [
|
|
7587
|
-
{
|
|
7588
|
-
"jwtAuth": []
|
|
7589
|
-
},
|
|
7590
8696
|
{}
|
|
7591
8697
|
],
|
|
7592
8698
|
"summary": "List public categories",
|
|
@@ -7628,9 +8734,6 @@ export const OPENAPI_SCHEMA = {
|
|
|
7628
8734
|
}
|
|
7629
8735
|
},
|
|
7630
8736
|
"security": [
|
|
7631
|
-
{
|
|
7632
|
-
"jwtAuth": []
|
|
7633
|
-
},
|
|
7634
8737
|
{}
|
|
7635
8738
|
],
|
|
7636
8739
|
"summary": "Get public category details",
|
|
@@ -7693,9 +8796,6 @@ export const OPENAPI_SCHEMA = {
|
|
|
7693
8796
|
}
|
|
7694
8797
|
},
|
|
7695
8798
|
"security": [
|
|
7696
|
-
{
|
|
7697
|
-
"jwtAuth": []
|
|
7698
|
-
},
|
|
7699
8799
|
{}
|
|
7700
8800
|
],
|
|
7701
8801
|
"summary": "List public documents",
|
|
@@ -7737,9 +8837,6 @@ export const OPENAPI_SCHEMA = {
|
|
|
7737
8837
|
}
|
|
7738
8838
|
},
|
|
7739
8839
|
"security": [
|
|
7740
|
-
{
|
|
7741
|
-
"jwtAuth": []
|
|
7742
|
-
},
|
|
7743
8840
|
{}
|
|
7744
8841
|
],
|
|
7745
8842
|
"summary": "Get public document details",
|
|
@@ -7785,11 +8882,6 @@ export const OPENAPI_SCHEMA = {
|
|
|
7785
8882
|
"description": ""
|
|
7786
8883
|
}
|
|
7787
8884
|
},
|
|
7788
|
-
"security": [
|
|
7789
|
-
{
|
|
7790
|
-
"jwtAuth": []
|
|
7791
|
-
}
|
|
7792
|
-
],
|
|
7793
8885
|
"tags": [
|
|
7794
8886
|
"knowbase"
|
|
7795
8887
|
],
|
|
@@ -7852,11 +8944,6 @@ export const OPENAPI_SCHEMA = {
|
|
|
7852
8944
|
"description": "Rate limit exceeded"
|
|
7853
8945
|
}
|
|
7854
8946
|
},
|
|
7855
|
-
"security": [
|
|
7856
|
-
{
|
|
7857
|
-
"jwtAuth": []
|
|
7858
|
-
}
|
|
7859
|
-
],
|
|
7860
8947
|
"summary": "Upload and process archive",
|
|
7861
8948
|
"tags": [
|
|
7862
8949
|
"knowbase"
|
|
@@ -7895,11 +8982,6 @@ export const OPENAPI_SCHEMA = {
|
|
|
7895
8982
|
"description": ""
|
|
7896
8983
|
}
|
|
7897
8984
|
},
|
|
7898
|
-
"security": [
|
|
7899
|
-
{
|
|
7900
|
-
"jwtAuth": []
|
|
7901
|
-
}
|
|
7902
|
-
],
|
|
7903
8985
|
"summary": "Re-vectorize chunks",
|
|
7904
8986
|
"tags": [
|
|
7905
8987
|
"knowbase"
|
|
@@ -7923,11 +9005,6 @@ export const OPENAPI_SCHEMA = {
|
|
|
7923
9005
|
"description": ""
|
|
7924
9006
|
}
|
|
7925
9007
|
},
|
|
7926
|
-
"security": [
|
|
7927
|
-
{
|
|
7928
|
-
"jwtAuth": []
|
|
7929
|
-
}
|
|
7930
|
-
],
|
|
7931
9008
|
"summary": "Get archive statistics",
|
|
7932
9009
|
"tags": [
|
|
7933
9010
|
"knowbase"
|
|
@@ -7951,11 +9028,6 @@ export const OPENAPI_SCHEMA = {
|
|
|
7951
9028
|
"description": ""
|
|
7952
9029
|
}
|
|
7953
9030
|
},
|
|
7954
|
-
"security": [
|
|
7955
|
-
{
|
|
7956
|
-
"jwtAuth": []
|
|
7957
|
-
}
|
|
7958
|
-
],
|
|
7959
9031
|
"summary": "Get vectorization statistics",
|
|
7960
9032
|
"tags": [
|
|
7961
9033
|
"knowbase"
|
|
@@ -7984,11 +9056,6 @@ export const OPENAPI_SCHEMA = {
|
|
|
7984
9056
|
"description": "No response body"
|
|
7985
9057
|
}
|
|
7986
9058
|
},
|
|
7987
|
-
"security": [
|
|
7988
|
-
{
|
|
7989
|
-
"jwtAuth": []
|
|
7990
|
-
}
|
|
7991
|
-
],
|
|
7992
9059
|
"tags": [
|
|
7993
9060
|
"knowbase"
|
|
7994
9061
|
],
|
|
@@ -8021,11 +9088,6 @@ export const OPENAPI_SCHEMA = {
|
|
|
8021
9088
|
"description": ""
|
|
8022
9089
|
}
|
|
8023
9090
|
},
|
|
8024
|
-
"security": [
|
|
8025
|
-
{
|
|
8026
|
-
"jwtAuth": []
|
|
8027
|
-
}
|
|
8028
|
-
],
|
|
8029
9091
|
"tags": [
|
|
8030
9092
|
"knowbase"
|
|
8031
9093
|
],
|
|
@@ -8072,11 +9134,6 @@ export const OPENAPI_SCHEMA = {
|
|
|
8072
9134
|
"description": ""
|
|
8073
9135
|
}
|
|
8074
9136
|
},
|
|
8075
|
-
"security": [
|
|
8076
|
-
{
|
|
8077
|
-
"jwtAuth": []
|
|
8078
|
-
}
|
|
8079
|
-
],
|
|
8080
9137
|
"tags": [
|
|
8081
9138
|
"knowbase"
|
|
8082
9139
|
],
|
|
@@ -8124,11 +9181,6 @@ export const OPENAPI_SCHEMA = {
|
|
|
8124
9181
|
"description": ""
|
|
8125
9182
|
}
|
|
8126
9183
|
},
|
|
8127
|
-
"security": [
|
|
8128
|
-
{
|
|
8129
|
-
"jwtAuth": []
|
|
8130
|
-
}
|
|
8131
|
-
],
|
|
8132
9184
|
"tags": [
|
|
8133
9185
|
"knowbase"
|
|
8134
9186
|
],
|
|
@@ -8163,11 +9215,6 @@ export const OPENAPI_SCHEMA = {
|
|
|
8163
9215
|
"description": ""
|
|
8164
9216
|
}
|
|
8165
9217
|
},
|
|
8166
|
-
"security": [
|
|
8167
|
-
{
|
|
8168
|
-
"jwtAuth": []
|
|
8169
|
-
}
|
|
8170
|
-
],
|
|
8171
9218
|
"summary": "Get archive file tree",
|
|
8172
9219
|
"tags": [
|
|
8173
9220
|
"knowbase"
|
|
@@ -8221,11 +9268,6 @@ export const OPENAPI_SCHEMA = {
|
|
|
8221
9268
|
"description": ""
|
|
8222
9269
|
}
|
|
8223
9270
|
},
|
|
8224
|
-
"security": [
|
|
8225
|
-
{
|
|
8226
|
-
"jwtAuth": []
|
|
8227
|
-
}
|
|
8228
|
-
],
|
|
8229
9271
|
"summary": "Get archive items",
|
|
8230
9272
|
"tags": [
|
|
8231
9273
|
"knowbase"
|
|
@@ -8294,11 +9336,6 @@ export const OPENAPI_SCHEMA = {
|
|
|
8294
9336
|
"description": ""
|
|
8295
9337
|
}
|
|
8296
9338
|
},
|
|
8297
|
-
"security": [
|
|
8298
|
-
{
|
|
8299
|
-
"jwtAuth": []
|
|
8300
|
-
}
|
|
8301
|
-
],
|
|
8302
9339
|
"summary": "Search archive chunks",
|
|
8303
9340
|
"tags": [
|
|
8304
9341
|
"knowbase"
|
|
@@ -8342,11 +9379,6 @@ export const OPENAPI_SCHEMA = {
|
|
|
8342
9379
|
"description": ""
|
|
8343
9380
|
}
|
|
8344
9381
|
},
|
|
8345
|
-
"security": [
|
|
8346
|
-
{
|
|
8347
|
-
"jwtAuth": []
|
|
8348
|
-
}
|
|
8349
|
-
],
|
|
8350
9382
|
"tags": [
|
|
8351
9383
|
"knowbase"
|
|
8352
9384
|
],
|
|
@@ -8387,11 +9419,6 @@ export const OPENAPI_SCHEMA = {
|
|
|
8387
9419
|
"description": ""
|
|
8388
9420
|
}
|
|
8389
9421
|
},
|
|
8390
|
-
"security": [
|
|
8391
|
-
{
|
|
8392
|
-
"jwtAuth": []
|
|
8393
|
-
}
|
|
8394
|
-
],
|
|
8395
9422
|
"tags": [
|
|
8396
9423
|
"knowbase"
|
|
8397
9424
|
],
|
|
@@ -8419,11 +9446,6 @@ export const OPENAPI_SCHEMA = {
|
|
|
8419
9446
|
"description": "No response body"
|
|
8420
9447
|
}
|
|
8421
9448
|
},
|
|
8422
|
-
"security": [
|
|
8423
|
-
{
|
|
8424
|
-
"jwtAuth": []
|
|
8425
|
-
}
|
|
8426
|
-
],
|
|
8427
9449
|
"tags": [
|
|
8428
9450
|
"knowbase"
|
|
8429
9451
|
],
|
|
@@ -8456,11 +9478,6 @@ export const OPENAPI_SCHEMA = {
|
|
|
8456
9478
|
"description": ""
|
|
8457
9479
|
}
|
|
8458
9480
|
},
|
|
8459
|
-
"security": [
|
|
8460
|
-
{
|
|
8461
|
-
"jwtAuth": []
|
|
8462
|
-
}
|
|
8463
|
-
],
|
|
8464
9481
|
"tags": [
|
|
8465
9482
|
"knowbase"
|
|
8466
9483
|
],
|
|
@@ -8512,11 +9529,6 @@ export const OPENAPI_SCHEMA = {
|
|
|
8512
9529
|
"description": ""
|
|
8513
9530
|
}
|
|
8514
9531
|
},
|
|
8515
|
-
"security": [
|
|
8516
|
-
{
|
|
8517
|
-
"jwtAuth": []
|
|
8518
|
-
}
|
|
8519
|
-
],
|
|
8520
9532
|
"tags": [
|
|
8521
9533
|
"knowbase"
|
|
8522
9534
|
],
|
|
@@ -8569,11 +9581,6 @@ export const OPENAPI_SCHEMA = {
|
|
|
8569
9581
|
"description": ""
|
|
8570
9582
|
}
|
|
8571
9583
|
},
|
|
8572
|
-
"security": [
|
|
8573
|
-
{
|
|
8574
|
-
"jwtAuth": []
|
|
8575
|
-
}
|
|
8576
|
-
],
|
|
8577
9584
|
"tags": [
|
|
8578
9585
|
"knowbase"
|
|
8579
9586
|
],
|
|
@@ -8608,11 +9615,6 @@ export const OPENAPI_SCHEMA = {
|
|
|
8608
9615
|
"description": ""
|
|
8609
9616
|
}
|
|
8610
9617
|
},
|
|
8611
|
-
"security": [
|
|
8612
|
-
{
|
|
8613
|
-
"jwtAuth": []
|
|
8614
|
-
}
|
|
8615
|
-
],
|
|
8616
9618
|
"summary": "Get chunk context",
|
|
8617
9619
|
"tags": [
|
|
8618
9620
|
"knowbase"
|
|
@@ -8668,11 +9670,6 @@ export const OPENAPI_SCHEMA = {
|
|
|
8668
9670
|
"description": ""
|
|
8669
9671
|
}
|
|
8670
9672
|
},
|
|
8671
|
-
"security": [
|
|
8672
|
-
{
|
|
8673
|
-
"jwtAuth": []
|
|
8674
|
-
}
|
|
8675
|
-
],
|
|
8676
9673
|
"summary": "Vectorize chunk",
|
|
8677
9674
|
"tags": [
|
|
8678
9675
|
"knowbase"
|
|
@@ -8716,11 +9713,6 @@ export const OPENAPI_SCHEMA = {
|
|
|
8716
9713
|
"description": ""
|
|
8717
9714
|
}
|
|
8718
9715
|
},
|
|
8719
|
-
"security": [
|
|
8720
|
-
{
|
|
8721
|
-
"jwtAuth": []
|
|
8722
|
-
}
|
|
8723
|
-
],
|
|
8724
9716
|
"tags": [
|
|
8725
9717
|
"knowbase"
|
|
8726
9718
|
],
|
|
@@ -8761,11 +9753,6 @@ export const OPENAPI_SCHEMA = {
|
|
|
8761
9753
|
"description": ""
|
|
8762
9754
|
}
|
|
8763
9755
|
},
|
|
8764
|
-
"security": [
|
|
8765
|
-
{
|
|
8766
|
-
"jwtAuth": []
|
|
8767
|
-
}
|
|
8768
|
-
],
|
|
8769
9756
|
"tags": [
|
|
8770
9757
|
"knowbase"
|
|
8771
9758
|
],
|
|
@@ -8793,11 +9780,6 @@ export const OPENAPI_SCHEMA = {
|
|
|
8793
9780
|
"description": "No response body"
|
|
8794
9781
|
}
|
|
8795
9782
|
},
|
|
8796
|
-
"security": [
|
|
8797
|
-
{
|
|
8798
|
-
"jwtAuth": []
|
|
8799
|
-
}
|
|
8800
|
-
],
|
|
8801
9783
|
"tags": [
|
|
8802
9784
|
"knowbase"
|
|
8803
9785
|
],
|
|
@@ -8830,11 +9812,6 @@ export const OPENAPI_SCHEMA = {
|
|
|
8830
9812
|
"description": ""
|
|
8831
9813
|
}
|
|
8832
9814
|
},
|
|
8833
|
-
"security": [
|
|
8834
|
-
{
|
|
8835
|
-
"jwtAuth": []
|
|
8836
|
-
}
|
|
8837
|
-
],
|
|
8838
9815
|
"tags": [
|
|
8839
9816
|
"knowbase"
|
|
8840
9817
|
],
|
|
@@ -8886,11 +9863,6 @@ export const OPENAPI_SCHEMA = {
|
|
|
8886
9863
|
"description": ""
|
|
8887
9864
|
}
|
|
8888
9865
|
},
|
|
8889
|
-
"security": [
|
|
8890
|
-
{
|
|
8891
|
-
"jwtAuth": []
|
|
8892
|
-
}
|
|
8893
|
-
],
|
|
8894
9866
|
"tags": [
|
|
8895
9867
|
"knowbase"
|
|
8896
9868
|
],
|
|
@@ -8943,11 +9915,6 @@ export const OPENAPI_SCHEMA = {
|
|
|
8943
9915
|
"description": ""
|
|
8944
9916
|
}
|
|
8945
9917
|
},
|
|
8946
|
-
"security": [
|
|
8947
|
-
{
|
|
8948
|
-
"jwtAuth": []
|
|
8949
|
-
}
|
|
8950
|
-
],
|
|
8951
9918
|
"tags": [
|
|
8952
9919
|
"knowbase"
|
|
8953
9920
|
],
|
|
@@ -9000,11 +9967,6 @@ export const OPENAPI_SCHEMA = {
|
|
|
9000
9967
|
"description": ""
|
|
9001
9968
|
}
|
|
9002
9969
|
},
|
|
9003
|
-
"security": [
|
|
9004
|
-
{
|
|
9005
|
-
"jwtAuth": []
|
|
9006
|
-
}
|
|
9007
|
-
],
|
|
9008
9970
|
"summary": "Get item chunks",
|
|
9009
9971
|
"tags": [
|
|
9010
9972
|
"knowbase"
|
|
@@ -9040,11 +10002,6 @@ export const OPENAPI_SCHEMA = {
|
|
|
9040
10002
|
"description": ""
|
|
9041
10003
|
}
|
|
9042
10004
|
},
|
|
9043
|
-
"security": [
|
|
9044
|
-
{
|
|
9045
|
-
"jwtAuth": []
|
|
9046
|
-
}
|
|
9047
|
-
],
|
|
9048
10005
|
"summary": "Get item content",
|
|
9049
10006
|
"tags": [
|
|
9050
10007
|
"knowbase"
|
|
@@ -9089,9 +10046,6 @@ export const OPENAPI_SCHEMA = {
|
|
|
9089
10046
|
}
|
|
9090
10047
|
},
|
|
9091
10048
|
"security": [
|
|
9092
|
-
{
|
|
9093
|
-
"jwtAuth": []
|
|
9094
|
-
},
|
|
9095
10049
|
{}
|
|
9096
10050
|
],
|
|
9097
10051
|
"tags": [
|
|
@@ -9135,9 +10089,6 @@ export const OPENAPI_SCHEMA = {
|
|
|
9135
10089
|
}
|
|
9136
10090
|
},
|
|
9137
10091
|
"security": [
|
|
9138
|
-
{
|
|
9139
|
-
"jwtAuth": []
|
|
9140
|
-
},
|
|
9141
10092
|
{}
|
|
9142
10093
|
],
|
|
9143
10094
|
"tags": [
|
|
@@ -9209,9 +10160,6 @@ export const OPENAPI_SCHEMA = {
|
|
|
9209
10160
|
}
|
|
9210
10161
|
},
|
|
9211
10162
|
"security": [
|
|
9212
|
-
{
|
|
9213
|
-
"jwtAuth": []
|
|
9214
|
-
},
|
|
9215
10163
|
{}
|
|
9216
10164
|
],
|
|
9217
10165
|
"summary": "Submit Lead Form",
|
|
@@ -9242,9 +10190,6 @@ export const OPENAPI_SCHEMA = {
|
|
|
9242
10190
|
}
|
|
9243
10191
|
},
|
|
9244
10192
|
"security": [
|
|
9245
|
-
{
|
|
9246
|
-
"jwtAuth": []
|
|
9247
|
-
},
|
|
9248
10193
|
{}
|
|
9249
10194
|
],
|
|
9250
10195
|
"tags": [
|
|
@@ -9279,9 +10224,6 @@ export const OPENAPI_SCHEMA = {
|
|
|
9279
10224
|
}
|
|
9280
10225
|
},
|
|
9281
10226
|
"security": [
|
|
9282
|
-
{
|
|
9283
|
-
"jwtAuth": []
|
|
9284
|
-
},
|
|
9285
10227
|
{}
|
|
9286
10228
|
],
|
|
9287
10229
|
"tags": [
|
|
@@ -9335,9 +10277,6 @@ export const OPENAPI_SCHEMA = {
|
|
|
9335
10277
|
}
|
|
9336
10278
|
},
|
|
9337
10279
|
"security": [
|
|
9338
|
-
{
|
|
9339
|
-
"jwtAuth": []
|
|
9340
|
-
},
|
|
9341
10280
|
{}
|
|
9342
10281
|
],
|
|
9343
10282
|
"tags": [
|
|
@@ -9392,9 +10331,6 @@ export const OPENAPI_SCHEMA = {
|
|
|
9392
10331
|
}
|
|
9393
10332
|
},
|
|
9394
10333
|
"security": [
|
|
9395
|
-
{
|
|
9396
|
-
"jwtAuth": []
|
|
9397
|
-
},
|
|
9398
10334
|
{}
|
|
9399
10335
|
],
|
|
9400
10336
|
"tags": [
|
|
@@ -9449,11 +10385,6 @@ export const OPENAPI_SCHEMA = {
|
|
|
9449
10385
|
"description": ""
|
|
9450
10386
|
}
|
|
9451
10387
|
},
|
|
9452
|
-
"security": [
|
|
9453
|
-
{
|
|
9454
|
-
"jwtAuth": []
|
|
9455
|
-
}
|
|
9456
|
-
],
|
|
9457
10388
|
"summary": "Send Bulk Email",
|
|
9458
10389
|
"tags": [
|
|
9459
10390
|
"Bulk Email"
|
|
@@ -9497,11 +10428,6 @@ export const OPENAPI_SCHEMA = {
|
|
|
9497
10428
|
"description": ""
|
|
9498
10429
|
}
|
|
9499
10430
|
},
|
|
9500
|
-
"security": [
|
|
9501
|
-
{
|
|
9502
|
-
"jwtAuth": []
|
|
9503
|
-
}
|
|
9504
|
-
],
|
|
9505
10431
|
"summary": "List Newsletter Campaigns",
|
|
9506
10432
|
"tags": [
|
|
9507
10433
|
"Campaigns"
|
|
@@ -9543,11 +10469,6 @@ export const OPENAPI_SCHEMA = {
|
|
|
9543
10469
|
"description": ""
|
|
9544
10470
|
}
|
|
9545
10471
|
},
|
|
9546
|
-
"security": [
|
|
9547
|
-
{
|
|
9548
|
-
"jwtAuth": []
|
|
9549
|
-
}
|
|
9550
|
-
],
|
|
9551
10472
|
"summary": "Create Newsletter Campaign",
|
|
9552
10473
|
"tags": [
|
|
9553
10474
|
"Campaigns"
|
|
@@ -9611,11 +10532,6 @@ export const OPENAPI_SCHEMA = {
|
|
|
9611
10532
|
"description": ""
|
|
9612
10533
|
}
|
|
9613
10534
|
},
|
|
9614
|
-
"security": [
|
|
9615
|
-
{
|
|
9616
|
-
"jwtAuth": []
|
|
9617
|
-
}
|
|
9618
|
-
],
|
|
9619
10535
|
"summary": "Send Newsletter Campaign",
|
|
9620
10536
|
"tags": [
|
|
9621
10537
|
"Campaigns"
|
|
@@ -9642,11 +10558,6 @@ export const OPENAPI_SCHEMA = {
|
|
|
9642
10558
|
"description": "No response body"
|
|
9643
10559
|
}
|
|
9644
10560
|
},
|
|
9645
|
-
"security": [
|
|
9646
|
-
{
|
|
9647
|
-
"jwtAuth": []
|
|
9648
|
-
}
|
|
9649
|
-
],
|
|
9650
10561
|
"summary": "Delete Campaign",
|
|
9651
10562
|
"tags": [
|
|
9652
10563
|
"Campaigns"
|
|
@@ -9678,11 +10589,6 @@ export const OPENAPI_SCHEMA = {
|
|
|
9678
10589
|
"description": ""
|
|
9679
10590
|
}
|
|
9680
10591
|
},
|
|
9681
|
-
"security": [
|
|
9682
|
-
{
|
|
9683
|
-
"jwtAuth": []
|
|
9684
|
-
}
|
|
9685
|
-
],
|
|
9686
10592
|
"summary": "Get Campaign Details",
|
|
9687
10593
|
"tags": [
|
|
9688
10594
|
"Campaigns"
|
|
@@ -9733,11 +10639,6 @@ export const OPENAPI_SCHEMA = {
|
|
|
9733
10639
|
"description": ""
|
|
9734
10640
|
}
|
|
9735
10641
|
},
|
|
9736
|
-
"security": [
|
|
9737
|
-
{
|
|
9738
|
-
"jwtAuth": []
|
|
9739
|
-
}
|
|
9740
|
-
],
|
|
9741
10642
|
"tags": [
|
|
9742
10643
|
"newsletter"
|
|
9743
10644
|
],
|
|
@@ -9788,11 +10689,6 @@ export const OPENAPI_SCHEMA = {
|
|
|
9788
10689
|
"description": ""
|
|
9789
10690
|
}
|
|
9790
10691
|
},
|
|
9791
|
-
"security": [
|
|
9792
|
-
{
|
|
9793
|
-
"jwtAuth": []
|
|
9794
|
-
}
|
|
9795
|
-
],
|
|
9796
10692
|
"summary": "Update Campaign",
|
|
9797
10693
|
"tags": [
|
|
9798
10694
|
"Campaigns"
|
|
@@ -9836,11 +10732,6 @@ export const OPENAPI_SCHEMA = {
|
|
|
9836
10732
|
"description": ""
|
|
9837
10733
|
}
|
|
9838
10734
|
},
|
|
9839
|
-
"security": [
|
|
9840
|
-
{
|
|
9841
|
-
"jwtAuth": []
|
|
9842
|
-
}
|
|
9843
|
-
],
|
|
9844
10735
|
"summary": "List Email Logs",
|
|
9845
10736
|
"tags": [
|
|
9846
10737
|
"Logs"
|
|
@@ -9885,9 +10776,6 @@ export const OPENAPI_SCHEMA = {
|
|
|
9885
10776
|
}
|
|
9886
10777
|
},
|
|
9887
10778
|
"security": [
|
|
9888
|
-
{
|
|
9889
|
-
"jwtAuth": []
|
|
9890
|
-
},
|
|
9891
10779
|
{}
|
|
9892
10780
|
],
|
|
9893
10781
|
"summary": "List Active Newsletters",
|
|
@@ -9924,9 +10812,6 @@ export const OPENAPI_SCHEMA = {
|
|
|
9924
10812
|
}
|
|
9925
10813
|
},
|
|
9926
10814
|
"security": [
|
|
9927
|
-
{
|
|
9928
|
-
"jwtAuth": []
|
|
9929
|
-
},
|
|
9930
10815
|
{}
|
|
9931
10816
|
],
|
|
9932
10817
|
"summary": "Get Newsletter Details",
|
|
@@ -9993,9 +10878,6 @@ export const OPENAPI_SCHEMA = {
|
|
|
9993
10878
|
}
|
|
9994
10879
|
},
|
|
9995
10880
|
"security": [
|
|
9996
|
-
{
|
|
9997
|
-
"jwtAuth": []
|
|
9998
|
-
},
|
|
9999
10881
|
{}
|
|
10000
10882
|
],
|
|
10001
10883
|
"summary": "Subscribe to Newsletter",
|
|
@@ -10041,11 +10923,6 @@ export const OPENAPI_SCHEMA = {
|
|
|
10041
10923
|
"description": ""
|
|
10042
10924
|
}
|
|
10043
10925
|
},
|
|
10044
|
-
"security": [
|
|
10045
|
-
{
|
|
10046
|
-
"jwtAuth": []
|
|
10047
|
-
}
|
|
10048
|
-
],
|
|
10049
10926
|
"summary": "List User Subscriptions",
|
|
10050
10927
|
"tags": [
|
|
10051
10928
|
"Subscriptions"
|
|
@@ -10100,9 +10977,6 @@ export const OPENAPI_SCHEMA = {
|
|
|
10100
10977
|
}
|
|
10101
10978
|
},
|
|
10102
10979
|
"security": [
|
|
10103
|
-
{
|
|
10104
|
-
"jwtAuth": []
|
|
10105
|
-
},
|
|
10106
10980
|
{}
|
|
10107
10981
|
],
|
|
10108
10982
|
"summary": "Test Email Sending",
|
|
@@ -10148,9 +11022,6 @@ export const OPENAPI_SCHEMA = {
|
|
|
10148
11022
|
}
|
|
10149
11023
|
},
|
|
10150
11024
|
"security": [
|
|
10151
|
-
{
|
|
10152
|
-
"jwtAuth": []
|
|
10153
|
-
},
|
|
10154
11025
|
{}
|
|
10155
11026
|
],
|
|
10156
11027
|
"tags": [
|
|
@@ -10204,9 +11075,6 @@ export const OPENAPI_SCHEMA = {
|
|
|
10204
11075
|
}
|
|
10205
11076
|
},
|
|
10206
11077
|
"security": [
|
|
10207
|
-
{
|
|
10208
|
-
"jwtAuth": []
|
|
10209
|
-
},
|
|
10210
11078
|
{}
|
|
10211
11079
|
],
|
|
10212
11080
|
"summary": "Unsubscribe from Newsletter",
|
|
@@ -10251,9 +11119,6 @@ export const OPENAPI_SCHEMA = {
|
|
|
10251
11119
|
}
|
|
10252
11120
|
},
|
|
10253
11121
|
"security": [
|
|
10254
|
-
{
|
|
10255
|
-
"jwtAuth": []
|
|
10256
|
-
},
|
|
10257
11122
|
{}
|
|
10258
11123
|
],
|
|
10259
11124
|
"tags": [
|
|
@@ -10278,11 +11143,6 @@ export const OPENAPI_SCHEMA = {
|
|
|
10278
11143
|
"description": ""
|
|
10279
11144
|
}
|
|
10280
11145
|
},
|
|
10281
|
-
"security": [
|
|
10282
|
-
{
|
|
10283
|
-
"jwtAuth": []
|
|
10284
|
-
}
|
|
10285
|
-
],
|
|
10286
11146
|
"summary": "Get user balance",
|
|
10287
11147
|
"tags": [
|
|
10288
11148
|
"payments"
|
|
@@ -10309,11 +11169,6 @@ export const OPENAPI_SCHEMA = {
|
|
|
10309
11169
|
"description": ""
|
|
10310
11170
|
}
|
|
10311
11171
|
},
|
|
10312
|
-
"security": [
|
|
10313
|
-
{
|
|
10314
|
-
"jwtAuth": []
|
|
10315
|
-
}
|
|
10316
|
-
],
|
|
10317
11172
|
"summary": "Get available currencies",
|
|
10318
11173
|
"tags": [
|
|
10319
11174
|
"payments"
|
|
@@ -10357,11 +11212,6 @@ export const OPENAPI_SCHEMA = {
|
|
|
10357
11212
|
"description": ""
|
|
10358
11213
|
}
|
|
10359
11214
|
},
|
|
10360
|
-
"security": [
|
|
10361
|
-
{
|
|
10362
|
-
"jwtAuth": []
|
|
10363
|
-
}
|
|
10364
|
-
],
|
|
10365
11215
|
"tags": [
|
|
10366
11216
|
"payments"
|
|
10367
11217
|
],
|
|
@@ -10384,11 +11234,6 @@ export const OPENAPI_SCHEMA = {
|
|
|
10384
11234
|
"description": ""
|
|
10385
11235
|
}
|
|
10386
11236
|
},
|
|
10387
|
-
"security": [
|
|
10388
|
-
{
|
|
10389
|
-
"jwtAuth": []
|
|
10390
|
-
}
|
|
10391
|
-
],
|
|
10392
11237
|
"tags": [
|
|
10393
11238
|
"payments"
|
|
10394
11239
|
],
|
|
@@ -10421,11 +11266,6 @@ export const OPENAPI_SCHEMA = {
|
|
|
10421
11266
|
"description": ""
|
|
10422
11267
|
}
|
|
10423
11268
|
},
|
|
10424
|
-
"security": [
|
|
10425
|
-
{
|
|
10426
|
-
"jwtAuth": []
|
|
10427
|
-
}
|
|
10428
|
-
],
|
|
10429
11269
|
"tags": [
|
|
10430
11270
|
"payments"
|
|
10431
11271
|
],
|
|
@@ -10458,11 +11298,6 @@ export const OPENAPI_SCHEMA = {
|
|
|
10458
11298
|
"description": ""
|
|
10459
11299
|
}
|
|
10460
11300
|
},
|
|
10461
|
-
"security": [
|
|
10462
|
-
{
|
|
10463
|
-
"jwtAuth": []
|
|
10464
|
-
}
|
|
10465
|
-
],
|
|
10466
11301
|
"tags": [
|
|
10467
11302
|
"payments"
|
|
10468
11303
|
],
|
|
@@ -10495,11 +11330,6 @@ export const OPENAPI_SCHEMA = {
|
|
|
10495
11330
|
"description": ""
|
|
10496
11331
|
}
|
|
10497
11332
|
},
|
|
10498
|
-
"security": [
|
|
10499
|
-
{
|
|
10500
|
-
"jwtAuth": []
|
|
10501
|
-
}
|
|
10502
|
-
],
|
|
10503
11333
|
"tags": [
|
|
10504
11334
|
"payments"
|
|
10505
11335
|
],
|
|
@@ -10551,11 +11381,6 @@ export const OPENAPI_SCHEMA = {
|
|
|
10551
11381
|
"description": ""
|
|
10552
11382
|
}
|
|
10553
11383
|
},
|
|
10554
|
-
"security": [
|
|
10555
|
-
{
|
|
10556
|
-
"jwtAuth": []
|
|
10557
|
-
}
|
|
10558
|
-
],
|
|
10559
11384
|
"summary": "Get user transactions",
|
|
10560
11385
|
"tags": [
|
|
10561
11386
|
"payments"
|
|
@@ -10599,11 +11424,6 @@ export const OPENAPI_SCHEMA = {
|
|
|
10599
11424
|
"description": ""
|
|
10600
11425
|
}
|
|
10601
11426
|
},
|
|
10602
|
-
"security": [
|
|
10603
|
-
{
|
|
10604
|
-
"jwtAuth": []
|
|
10605
|
-
}
|
|
10606
|
-
],
|
|
10607
11427
|
"tags": [
|
|
10608
11428
|
"support"
|
|
10609
11429
|
],
|
|
@@ -10644,11 +11464,6 @@ export const OPENAPI_SCHEMA = {
|
|
|
10644
11464
|
"description": ""
|
|
10645
11465
|
}
|
|
10646
11466
|
},
|
|
10647
|
-
"security": [
|
|
10648
|
-
{
|
|
10649
|
-
"jwtAuth": []
|
|
10650
|
-
}
|
|
10651
|
-
],
|
|
10652
11467
|
"tags": [
|
|
10653
11468
|
"support"
|
|
10654
11469
|
],
|
|
@@ -10701,11 +11516,6 @@ export const OPENAPI_SCHEMA = {
|
|
|
10701
11516
|
"description": ""
|
|
10702
11517
|
}
|
|
10703
11518
|
},
|
|
10704
|
-
"security": [
|
|
10705
|
-
{
|
|
10706
|
-
"jwtAuth": []
|
|
10707
|
-
}
|
|
10708
|
-
],
|
|
10709
11519
|
"tags": [
|
|
10710
11520
|
"support"
|
|
10711
11521
|
],
|
|
@@ -10758,11 +11568,6 @@ export const OPENAPI_SCHEMA = {
|
|
|
10758
11568
|
"description": ""
|
|
10759
11569
|
}
|
|
10760
11570
|
},
|
|
10761
|
-
"security": [
|
|
10762
|
-
{
|
|
10763
|
-
"jwtAuth": []
|
|
10764
|
-
}
|
|
10765
|
-
],
|
|
10766
11571
|
"tags": [
|
|
10767
11572
|
"support"
|
|
10768
11573
|
],
|
|
@@ -10800,11 +11605,6 @@ export const OPENAPI_SCHEMA = {
|
|
|
10800
11605
|
"description": "No response body"
|
|
10801
11606
|
}
|
|
10802
11607
|
},
|
|
10803
|
-
"security": [
|
|
10804
|
-
{
|
|
10805
|
-
"jwtAuth": []
|
|
10806
|
-
}
|
|
10807
|
-
],
|
|
10808
11608
|
"tags": [
|
|
10809
11609
|
"support"
|
|
10810
11610
|
],
|
|
@@ -10847,11 +11647,6 @@ export const OPENAPI_SCHEMA = {
|
|
|
10847
11647
|
"description": ""
|
|
10848
11648
|
}
|
|
10849
11649
|
},
|
|
10850
|
-
"security": [
|
|
10851
|
-
{
|
|
10852
|
-
"jwtAuth": []
|
|
10853
|
-
}
|
|
10854
|
-
],
|
|
10855
11650
|
"tags": [
|
|
10856
11651
|
"support"
|
|
10857
11652
|
],
|
|
@@ -10913,11 +11708,6 @@ export const OPENAPI_SCHEMA = {
|
|
|
10913
11708
|
"description": ""
|
|
10914
11709
|
}
|
|
10915
11710
|
},
|
|
10916
|
-
"security": [
|
|
10917
|
-
{
|
|
10918
|
-
"jwtAuth": []
|
|
10919
|
-
}
|
|
10920
|
-
],
|
|
10921
11711
|
"tags": [
|
|
10922
11712
|
"support"
|
|
10923
11713
|
],
|
|
@@ -10980,11 +11770,6 @@ export const OPENAPI_SCHEMA = {
|
|
|
10980
11770
|
"description": ""
|
|
10981
11771
|
}
|
|
10982
11772
|
},
|
|
10983
|
-
"security": [
|
|
10984
|
-
{
|
|
10985
|
-
"jwtAuth": []
|
|
10986
|
-
}
|
|
10987
|
-
],
|
|
10988
11773
|
"tags": [
|
|
10989
11774
|
"support"
|
|
10990
11775
|
],
|
|
@@ -11012,11 +11797,6 @@ export const OPENAPI_SCHEMA = {
|
|
|
11012
11797
|
"description": "No response body"
|
|
11013
11798
|
}
|
|
11014
11799
|
},
|
|
11015
|
-
"security": [
|
|
11016
|
-
{
|
|
11017
|
-
"jwtAuth": []
|
|
11018
|
-
}
|
|
11019
|
-
],
|
|
11020
11800
|
"tags": [
|
|
11021
11801
|
"support"
|
|
11022
11802
|
],
|
|
@@ -11049,11 +11829,6 @@ export const OPENAPI_SCHEMA = {
|
|
|
11049
11829
|
"description": ""
|
|
11050
11830
|
}
|
|
11051
11831
|
},
|
|
11052
|
-
"security": [
|
|
11053
|
-
{
|
|
11054
|
-
"jwtAuth": []
|
|
11055
|
-
}
|
|
11056
|
-
],
|
|
11057
11832
|
"tags": [
|
|
11058
11833
|
"support"
|
|
11059
11834
|
],
|
|
@@ -11105,11 +11880,6 @@ export const OPENAPI_SCHEMA = {
|
|
|
11105
11880
|
"description": ""
|
|
11106
11881
|
}
|
|
11107
11882
|
},
|
|
11108
|
-
"security": [
|
|
11109
|
-
{
|
|
11110
|
-
"jwtAuth": []
|
|
11111
|
-
}
|
|
11112
|
-
],
|
|
11113
11883
|
"tags": [
|
|
11114
11884
|
"support"
|
|
11115
11885
|
],
|
|
@@ -11162,11 +11932,6 @@ export const OPENAPI_SCHEMA = {
|
|
|
11162
11932
|
"description": ""
|
|
11163
11933
|
}
|
|
11164
11934
|
},
|
|
11165
|
-
"security": [
|
|
11166
|
-
{
|
|
11167
|
-
"jwtAuth": []
|
|
11168
|
-
}
|
|
11169
|
-
],
|
|
11170
11935
|
"tags": [
|
|
11171
11936
|
"support"
|
|
11172
11937
|
],
|