@bodhiapp/ts-client 0.1.29 → 0.1.31
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/openapi-typescript/openapi-schema.d.ts +347 -336
- package/dist/openapi-typescript/openapi-schema.ts +347 -336
- package/dist/types/types.gen.d.ts +335 -329
- package/dist/types/types.gen.ts +336 -330
- package/package.json +1 -1
|
@@ -1531,28 +1531,17 @@ export interface components {
|
|
|
1531
1531
|
*/
|
|
1532
1532
|
client_id: string;
|
|
1533
1533
|
};
|
|
1534
|
-
/** @example {
|
|
1535
|
-
* "error": {
|
|
1536
|
-
* "code": "validation_error",
|
|
1537
|
-
* "message": "Validation failed: name is required",
|
|
1538
|
-
* "param": "name",
|
|
1539
|
-
* "type": "invalid_request_error"
|
|
1540
|
-
* }
|
|
1541
|
-
* } */
|
|
1542
|
-
BodhiApiError: {
|
|
1543
|
-
/** @description Error details following OpenAI API error format */
|
|
1544
|
-
error: components["schemas"]["BodhiErrorBody"];
|
|
1545
|
-
};
|
|
1546
1534
|
/** @example {
|
|
1547
1535
|
* "code": "validation_error",
|
|
1548
1536
|
* "message": "Validation failed: name is required",
|
|
1549
|
-
* "param": {
|
|
1537
|
+
* "param": "{\"field\":\"name\",\"value\":\"invalid\"}",
|
|
1538
|
+
* "params": {
|
|
1550
1539
|
* "field": "name",
|
|
1551
1540
|
* "value": "invalid"
|
|
1552
1541
|
* },
|
|
1553
1542
|
* "type": "invalid_request_error"
|
|
1554
1543
|
* } */
|
|
1555
|
-
|
|
1544
|
+
BodhiError: {
|
|
1556
1545
|
/**
|
|
1557
1546
|
* @description Human-readable error message describing what went wrong
|
|
1558
1547
|
* @example Validation failed: name is required
|
|
@@ -1575,9 +1564,31 @@ export interface components {
|
|
|
1575
1564
|
* "value": "invalid"
|
|
1576
1565
|
* }
|
|
1577
1566
|
*/
|
|
1578
|
-
|
|
1567
|
+
params?: {
|
|
1579
1568
|
[key: string]: string;
|
|
1580
1569
|
} | null;
|
|
1570
|
+
/**
|
|
1571
|
+
* @description JSON-encoded form of `params`. Superset field so clients that speak the
|
|
1572
|
+
* OpenAI `Error` shape (where `param` is a String) can still read it.
|
|
1573
|
+
* Populated automatically from `params` by `BodhiError::new`.
|
|
1574
|
+
* @example {"field":"name","value":"invalid"}
|
|
1575
|
+
*/
|
|
1576
|
+
param?: string | null;
|
|
1577
|
+
};
|
|
1578
|
+
/** @example {
|
|
1579
|
+
* "error": {
|
|
1580
|
+
* "code": "validation_error",
|
|
1581
|
+
* "message": "Validation failed: name is required",
|
|
1582
|
+
* "param": "{\"field\":\"name\"}",
|
|
1583
|
+
* "params": {
|
|
1584
|
+
* "field": "name"
|
|
1585
|
+
* },
|
|
1586
|
+
* "type": "invalid_request_error"
|
|
1587
|
+
* }
|
|
1588
|
+
* } */
|
|
1589
|
+
BodhiErrorResponse: {
|
|
1590
|
+
/** @description Error details following Bodhi API error format */
|
|
1591
|
+
error: components["schemas"]["BodhiError"];
|
|
1581
1592
|
};
|
|
1582
1593
|
/** @description Whether a single capability is supported by the model. */
|
|
1583
1594
|
CapabilitySupport: {
|
|
@@ -2714,7 +2725,7 @@ export interface operations {
|
|
|
2714
2725
|
[name: string]: unknown;
|
|
2715
2726
|
};
|
|
2716
2727
|
content: {
|
|
2717
|
-
"application/json": components["schemas"]["
|
|
2728
|
+
"application/json": components["schemas"]["BodhiErrorResponse"];
|
|
2718
2729
|
};
|
|
2719
2730
|
};
|
|
2720
2731
|
/** @description Not authenticated */
|
|
@@ -2723,7 +2734,7 @@ export interface operations {
|
|
|
2723
2734
|
[name: string]: unknown;
|
|
2724
2735
|
};
|
|
2725
2736
|
content: {
|
|
2726
|
-
"application/json": components["schemas"]["
|
|
2737
|
+
"application/json": components["schemas"]["BodhiErrorResponse"];
|
|
2727
2738
|
};
|
|
2728
2739
|
};
|
|
2729
2740
|
/** @description Insufficient permissions */
|
|
@@ -2732,7 +2743,7 @@ export interface operations {
|
|
|
2732
2743
|
[name: string]: unknown;
|
|
2733
2744
|
};
|
|
2734
2745
|
content: {
|
|
2735
|
-
"application/json": components["schemas"]["
|
|
2746
|
+
"application/json": components["schemas"]["BodhiErrorResponse"];
|
|
2736
2747
|
};
|
|
2737
2748
|
};
|
|
2738
2749
|
/** @description Internal server error */
|
|
@@ -2741,7 +2752,7 @@ export interface operations {
|
|
|
2741
2752
|
[name: string]: unknown;
|
|
2742
2753
|
};
|
|
2743
2754
|
content: {
|
|
2744
|
-
"application/json": components["schemas"]["
|
|
2755
|
+
"application/json": components["schemas"]["BodhiErrorResponse"];
|
|
2745
2756
|
};
|
|
2746
2757
|
};
|
|
2747
2758
|
};
|
|
@@ -2779,7 +2790,7 @@ export interface operations {
|
|
|
2779
2790
|
[name: string]: unknown;
|
|
2780
2791
|
};
|
|
2781
2792
|
content: {
|
|
2782
|
-
"application/json": components["schemas"]["
|
|
2793
|
+
"application/json": components["schemas"]["BodhiErrorResponse"];
|
|
2783
2794
|
};
|
|
2784
2795
|
};
|
|
2785
2796
|
/** @description Not authenticated */
|
|
@@ -2788,7 +2799,7 @@ export interface operations {
|
|
|
2788
2799
|
[name: string]: unknown;
|
|
2789
2800
|
};
|
|
2790
2801
|
content: {
|
|
2791
|
-
"application/json": components["schemas"]["
|
|
2802
|
+
"application/json": components["schemas"]["BodhiErrorResponse"];
|
|
2792
2803
|
};
|
|
2793
2804
|
};
|
|
2794
2805
|
/** @description Insufficient permissions */
|
|
@@ -2797,7 +2808,7 @@ export interface operations {
|
|
|
2797
2808
|
[name: string]: unknown;
|
|
2798
2809
|
};
|
|
2799
2810
|
content: {
|
|
2800
|
-
"application/json": components["schemas"]["
|
|
2811
|
+
"application/json": components["schemas"]["BodhiErrorResponse"];
|
|
2801
2812
|
};
|
|
2802
2813
|
};
|
|
2803
2814
|
/** @description Internal server error */
|
|
@@ -2806,7 +2817,7 @@ export interface operations {
|
|
|
2806
2817
|
[name: string]: unknown;
|
|
2807
2818
|
};
|
|
2808
2819
|
content: {
|
|
2809
|
-
"application/json": components["schemas"]["
|
|
2820
|
+
"application/json": components["schemas"]["BodhiErrorResponse"];
|
|
2810
2821
|
};
|
|
2811
2822
|
};
|
|
2812
2823
|
};
|
|
@@ -2843,7 +2854,7 @@ export interface operations {
|
|
|
2843
2854
|
[name: string]: unknown;
|
|
2844
2855
|
};
|
|
2845
2856
|
content: {
|
|
2846
|
-
"application/json": components["schemas"]["
|
|
2857
|
+
"application/json": components["schemas"]["BodhiErrorResponse"];
|
|
2847
2858
|
};
|
|
2848
2859
|
};
|
|
2849
2860
|
/** @description Not authenticated */
|
|
@@ -2852,7 +2863,7 @@ export interface operations {
|
|
|
2852
2863
|
[name: string]: unknown;
|
|
2853
2864
|
};
|
|
2854
2865
|
content: {
|
|
2855
|
-
"application/json": components["schemas"]["
|
|
2866
|
+
"application/json": components["schemas"]["BodhiErrorResponse"];
|
|
2856
2867
|
};
|
|
2857
2868
|
};
|
|
2858
2869
|
/** @description Insufficient permissions */
|
|
@@ -2861,7 +2872,7 @@ export interface operations {
|
|
|
2861
2872
|
[name: string]: unknown;
|
|
2862
2873
|
};
|
|
2863
2874
|
content: {
|
|
2864
|
-
"application/json": components["schemas"]["
|
|
2875
|
+
"application/json": components["schemas"]["BodhiErrorResponse"];
|
|
2865
2876
|
};
|
|
2866
2877
|
};
|
|
2867
2878
|
/** @description Not found */
|
|
@@ -2870,7 +2881,7 @@ export interface operations {
|
|
|
2870
2881
|
[name: string]: unknown;
|
|
2871
2882
|
};
|
|
2872
2883
|
content: {
|
|
2873
|
-
"application/json": components["schemas"]["
|
|
2884
|
+
"application/json": components["schemas"]["BodhiErrorResponse"];
|
|
2874
2885
|
};
|
|
2875
2886
|
};
|
|
2876
2887
|
/** @description Already processed */
|
|
@@ -2879,7 +2890,7 @@ export interface operations {
|
|
|
2879
2890
|
[name: string]: unknown;
|
|
2880
2891
|
};
|
|
2881
2892
|
content: {
|
|
2882
|
-
"application/json": components["schemas"]["
|
|
2893
|
+
"application/json": components["schemas"]["BodhiErrorResponse"];
|
|
2883
2894
|
};
|
|
2884
2895
|
};
|
|
2885
2896
|
/** @description Internal server error */
|
|
@@ -2888,7 +2899,7 @@ export interface operations {
|
|
|
2888
2899
|
[name: string]: unknown;
|
|
2889
2900
|
};
|
|
2890
2901
|
content: {
|
|
2891
|
-
"application/json": components["schemas"]["
|
|
2902
|
+
"application/json": components["schemas"]["BodhiErrorResponse"];
|
|
2892
2903
|
};
|
|
2893
2904
|
};
|
|
2894
2905
|
};
|
|
@@ -2923,7 +2934,7 @@ export interface operations {
|
|
|
2923
2934
|
[name: string]: unknown;
|
|
2924
2935
|
};
|
|
2925
2936
|
content: {
|
|
2926
|
-
"application/json": components["schemas"]["
|
|
2937
|
+
"application/json": components["schemas"]["BodhiErrorResponse"];
|
|
2927
2938
|
};
|
|
2928
2939
|
};
|
|
2929
2940
|
/** @description Not authenticated */
|
|
@@ -2932,7 +2943,7 @@ export interface operations {
|
|
|
2932
2943
|
[name: string]: unknown;
|
|
2933
2944
|
};
|
|
2934
2945
|
content: {
|
|
2935
|
-
"application/json": components["schemas"]["
|
|
2946
|
+
"application/json": components["schemas"]["BodhiErrorResponse"];
|
|
2936
2947
|
};
|
|
2937
2948
|
};
|
|
2938
2949
|
/** @description Insufficient permissions */
|
|
@@ -2941,7 +2952,7 @@ export interface operations {
|
|
|
2941
2952
|
[name: string]: unknown;
|
|
2942
2953
|
};
|
|
2943
2954
|
content: {
|
|
2944
|
-
"application/json": components["schemas"]["
|
|
2955
|
+
"application/json": components["schemas"]["BodhiErrorResponse"];
|
|
2945
2956
|
};
|
|
2946
2957
|
};
|
|
2947
2958
|
/** @description Request not found */
|
|
@@ -2950,7 +2961,7 @@ export interface operations {
|
|
|
2950
2961
|
[name: string]: unknown;
|
|
2951
2962
|
};
|
|
2952
2963
|
content: {
|
|
2953
|
-
"application/json": components["schemas"]["
|
|
2964
|
+
"application/json": components["schemas"]["BodhiErrorResponse"];
|
|
2954
2965
|
};
|
|
2955
2966
|
};
|
|
2956
2967
|
/** @description Internal server error */
|
|
@@ -2959,7 +2970,7 @@ export interface operations {
|
|
|
2959
2970
|
[name: string]: unknown;
|
|
2960
2971
|
};
|
|
2961
2972
|
content: {
|
|
2962
|
-
"application/json": components["schemas"]["
|
|
2973
|
+
"application/json": components["schemas"]["BodhiErrorResponse"];
|
|
2963
2974
|
};
|
|
2964
2975
|
};
|
|
2965
2976
|
};
|
|
@@ -2991,7 +3002,7 @@ export interface operations {
|
|
|
2991
3002
|
[name: string]: unknown;
|
|
2992
3003
|
};
|
|
2993
3004
|
content: {
|
|
2994
|
-
"application/json": components["schemas"]["
|
|
3005
|
+
"application/json": components["schemas"]["BodhiErrorResponse"];
|
|
2995
3006
|
};
|
|
2996
3007
|
};
|
|
2997
3008
|
/** @description Not authenticated */
|
|
@@ -3000,7 +3011,7 @@ export interface operations {
|
|
|
3000
3011
|
[name: string]: unknown;
|
|
3001
3012
|
};
|
|
3002
3013
|
content: {
|
|
3003
|
-
"application/json": components["schemas"]["
|
|
3014
|
+
"application/json": components["schemas"]["BodhiErrorResponse"];
|
|
3004
3015
|
};
|
|
3005
3016
|
};
|
|
3006
3017
|
/** @description Insufficient permissions */
|
|
@@ -3009,7 +3020,7 @@ export interface operations {
|
|
|
3009
3020
|
[name: string]: unknown;
|
|
3010
3021
|
};
|
|
3011
3022
|
content: {
|
|
3012
|
-
"application/json": components["schemas"]["
|
|
3023
|
+
"application/json": components["schemas"]["BodhiErrorResponse"];
|
|
3013
3024
|
};
|
|
3014
3025
|
};
|
|
3015
3026
|
/** @description Not found */
|
|
@@ -3018,7 +3029,7 @@ export interface operations {
|
|
|
3018
3029
|
[name: string]: unknown;
|
|
3019
3030
|
};
|
|
3020
3031
|
content: {
|
|
3021
|
-
"application/json": components["schemas"]["
|
|
3032
|
+
"application/json": components["schemas"]["BodhiErrorResponse"];
|
|
3022
3033
|
};
|
|
3023
3034
|
};
|
|
3024
3035
|
/** @description Already processed */
|
|
@@ -3027,7 +3038,7 @@ export interface operations {
|
|
|
3027
3038
|
[name: string]: unknown;
|
|
3028
3039
|
};
|
|
3029
3040
|
content: {
|
|
3030
|
-
"application/json": components["schemas"]["
|
|
3041
|
+
"application/json": components["schemas"]["BodhiErrorResponse"];
|
|
3031
3042
|
};
|
|
3032
3043
|
};
|
|
3033
3044
|
/** @description Internal server error */
|
|
@@ -3036,7 +3047,7 @@ export interface operations {
|
|
|
3036
3047
|
[name: string]: unknown;
|
|
3037
3048
|
};
|
|
3038
3049
|
content: {
|
|
3039
|
-
"application/json": components["schemas"]["
|
|
3050
|
+
"application/json": components["schemas"]["BodhiErrorResponse"];
|
|
3040
3051
|
};
|
|
3041
3052
|
};
|
|
3042
3053
|
};
|
|
@@ -3066,7 +3077,7 @@ export interface operations {
|
|
|
3066
3077
|
[name: string]: unknown;
|
|
3067
3078
|
};
|
|
3068
3079
|
content: {
|
|
3069
|
-
"application/json": components["schemas"]["
|
|
3080
|
+
"application/json": components["schemas"]["BodhiErrorResponse"];
|
|
3070
3081
|
};
|
|
3071
3082
|
};
|
|
3072
3083
|
/** @description Not authenticated */
|
|
@@ -3075,7 +3086,7 @@ export interface operations {
|
|
|
3075
3086
|
[name: string]: unknown;
|
|
3076
3087
|
};
|
|
3077
3088
|
content: {
|
|
3078
|
-
"application/json": components["schemas"]["
|
|
3089
|
+
"application/json": components["schemas"]["BodhiErrorResponse"];
|
|
3079
3090
|
};
|
|
3080
3091
|
};
|
|
3081
3092
|
/** @description Insufficient permissions */
|
|
@@ -3084,7 +3095,7 @@ export interface operations {
|
|
|
3084
3095
|
[name: string]: unknown;
|
|
3085
3096
|
};
|
|
3086
3097
|
content: {
|
|
3087
|
-
"application/json": components["schemas"]["
|
|
3098
|
+
"application/json": components["schemas"]["BodhiErrorResponse"];
|
|
3088
3099
|
};
|
|
3089
3100
|
};
|
|
3090
3101
|
/** @description Request not found */
|
|
@@ -3093,7 +3104,7 @@ export interface operations {
|
|
|
3093
3104
|
[name: string]: unknown;
|
|
3094
3105
|
};
|
|
3095
3106
|
content: {
|
|
3096
|
-
"application/json": components["schemas"]["
|
|
3107
|
+
"application/json": components["schemas"]["BodhiErrorResponse"];
|
|
3097
3108
|
};
|
|
3098
3109
|
};
|
|
3099
3110
|
/** @description Internal server error */
|
|
@@ -3102,7 +3113,7 @@ export interface operations {
|
|
|
3102
3113
|
[name: string]: unknown;
|
|
3103
3114
|
};
|
|
3104
3115
|
content: {
|
|
3105
|
-
"application/json": components["schemas"]["
|
|
3116
|
+
"application/json": components["schemas"]["BodhiErrorResponse"];
|
|
3106
3117
|
};
|
|
3107
3118
|
};
|
|
3108
3119
|
};
|
|
@@ -3134,7 +3145,7 @@ export interface operations {
|
|
|
3134
3145
|
[name: string]: unknown;
|
|
3135
3146
|
};
|
|
3136
3147
|
content: {
|
|
3137
|
-
"application/json": components["schemas"]["
|
|
3148
|
+
"application/json": components["schemas"]["BodhiErrorResponse"];
|
|
3138
3149
|
};
|
|
3139
3150
|
};
|
|
3140
3151
|
/** @description Not authenticated */
|
|
@@ -3143,7 +3154,7 @@ export interface operations {
|
|
|
3143
3154
|
[name: string]: unknown;
|
|
3144
3155
|
};
|
|
3145
3156
|
content: {
|
|
3146
|
-
"application/json": components["schemas"]["
|
|
3157
|
+
"application/json": components["schemas"]["BodhiErrorResponse"];
|
|
3147
3158
|
};
|
|
3148
3159
|
};
|
|
3149
3160
|
/** @description Insufficient permissions */
|
|
@@ -3152,7 +3163,7 @@ export interface operations {
|
|
|
3152
3163
|
[name: string]: unknown;
|
|
3153
3164
|
};
|
|
3154
3165
|
content: {
|
|
3155
|
-
"application/json": components["schemas"]["
|
|
3166
|
+
"application/json": components["schemas"]["BodhiErrorResponse"];
|
|
3156
3167
|
};
|
|
3157
3168
|
};
|
|
3158
3169
|
/** @description Not found */
|
|
@@ -3161,7 +3172,7 @@ export interface operations {
|
|
|
3161
3172
|
[name: string]: unknown;
|
|
3162
3173
|
};
|
|
3163
3174
|
content: {
|
|
3164
|
-
"application/json": components["schemas"]["
|
|
3175
|
+
"application/json": components["schemas"]["BodhiErrorResponse"];
|
|
3165
3176
|
};
|
|
3166
3177
|
};
|
|
3167
3178
|
/** @description Request expired */
|
|
@@ -3170,7 +3181,7 @@ export interface operations {
|
|
|
3170
3181
|
[name: string]: unknown;
|
|
3171
3182
|
};
|
|
3172
3183
|
content: {
|
|
3173
|
-
"application/json": components["schemas"]["
|
|
3184
|
+
"application/json": components["schemas"]["BodhiErrorResponse"];
|
|
3174
3185
|
};
|
|
3175
3186
|
};
|
|
3176
3187
|
/** @description Internal server error */
|
|
@@ -3179,7 +3190,7 @@ export interface operations {
|
|
|
3179
3190
|
[name: string]: unknown;
|
|
3180
3191
|
};
|
|
3181
3192
|
content: {
|
|
3182
|
-
"application/json": components["schemas"]["
|
|
3193
|
+
"application/json": components["schemas"]["BodhiErrorResponse"];
|
|
3183
3194
|
};
|
|
3184
3195
|
};
|
|
3185
3196
|
};
|
|
@@ -3214,7 +3225,7 @@ export interface operations {
|
|
|
3214
3225
|
[name: string]: unknown;
|
|
3215
3226
|
};
|
|
3216
3227
|
content: {
|
|
3217
|
-
"application/json": components["schemas"]["
|
|
3228
|
+
"application/json": components["schemas"]["BodhiErrorResponse"];
|
|
3218
3229
|
};
|
|
3219
3230
|
};
|
|
3220
3231
|
/** @description Not authenticated */
|
|
@@ -3223,7 +3234,7 @@ export interface operations {
|
|
|
3223
3234
|
[name: string]: unknown;
|
|
3224
3235
|
};
|
|
3225
3236
|
content: {
|
|
3226
|
-
"application/json": components["schemas"]["
|
|
3237
|
+
"application/json": components["schemas"]["BodhiErrorResponse"];
|
|
3227
3238
|
};
|
|
3228
3239
|
};
|
|
3229
3240
|
/** @description Insufficient permissions */
|
|
@@ -3232,7 +3243,7 @@ export interface operations {
|
|
|
3232
3243
|
[name: string]: unknown;
|
|
3233
3244
|
};
|
|
3234
3245
|
content: {
|
|
3235
|
-
"application/json": components["schemas"]["
|
|
3246
|
+
"application/json": components["schemas"]["BodhiErrorResponse"];
|
|
3236
3247
|
};
|
|
3237
3248
|
};
|
|
3238
3249
|
/** @description Not found or app_client_id mismatch */
|
|
@@ -3241,7 +3252,7 @@ export interface operations {
|
|
|
3241
3252
|
[name: string]: unknown;
|
|
3242
3253
|
};
|
|
3243
3254
|
content: {
|
|
3244
|
-
"application/json": components["schemas"]["
|
|
3255
|
+
"application/json": components["schemas"]["BodhiErrorResponse"];
|
|
3245
3256
|
};
|
|
3246
3257
|
};
|
|
3247
3258
|
/** @description Internal server error */
|
|
@@ -3250,7 +3261,7 @@ export interface operations {
|
|
|
3250
3261
|
[name: string]: unknown;
|
|
3251
3262
|
};
|
|
3252
3263
|
content: {
|
|
3253
|
-
"application/json": components["schemas"]["
|
|
3264
|
+
"application/json": components["schemas"]["BodhiErrorResponse"];
|
|
3254
3265
|
};
|
|
3255
3266
|
};
|
|
3256
3267
|
};
|
|
@@ -3279,7 +3290,7 @@ export interface operations {
|
|
|
3279
3290
|
[name: string]: unknown;
|
|
3280
3291
|
};
|
|
3281
3292
|
content: {
|
|
3282
|
-
"application/json": components["schemas"]["
|
|
3293
|
+
"application/json": components["schemas"]["BodhiErrorResponse"];
|
|
3283
3294
|
};
|
|
3284
3295
|
};
|
|
3285
3296
|
/** @description Not authenticated */
|
|
@@ -3288,7 +3299,7 @@ export interface operations {
|
|
|
3288
3299
|
[name: string]: unknown;
|
|
3289
3300
|
};
|
|
3290
3301
|
content: {
|
|
3291
|
-
"application/json": components["schemas"]["
|
|
3302
|
+
"application/json": components["schemas"]["BodhiErrorResponse"];
|
|
3292
3303
|
};
|
|
3293
3304
|
};
|
|
3294
3305
|
/** @description Insufficient permissions */
|
|
@@ -3297,7 +3308,7 @@ export interface operations {
|
|
|
3297
3308
|
[name: string]: unknown;
|
|
3298
3309
|
};
|
|
3299
3310
|
content: {
|
|
3300
|
-
"application/json": components["schemas"]["
|
|
3311
|
+
"application/json": components["schemas"]["BodhiErrorResponse"];
|
|
3301
3312
|
};
|
|
3302
3313
|
};
|
|
3303
3314
|
/** @description Internal server error */
|
|
@@ -3306,7 +3317,7 @@ export interface operations {
|
|
|
3306
3317
|
[name: string]: unknown;
|
|
3307
3318
|
};
|
|
3308
3319
|
content: {
|
|
3309
|
-
"application/json": components["schemas"]["
|
|
3320
|
+
"application/json": components["schemas"]["BodhiErrorResponse"];
|
|
3310
3321
|
};
|
|
3311
3322
|
};
|
|
3312
3323
|
};
|
|
@@ -3338,7 +3349,7 @@ export interface operations {
|
|
|
3338
3349
|
[name: string]: unknown;
|
|
3339
3350
|
};
|
|
3340
3351
|
content: {
|
|
3341
|
-
"application/json": components["schemas"]["
|
|
3352
|
+
"application/json": components["schemas"]["BodhiErrorResponse"];
|
|
3342
3353
|
};
|
|
3343
3354
|
};
|
|
3344
3355
|
/** @description Not authenticated */
|
|
@@ -3347,7 +3358,7 @@ export interface operations {
|
|
|
3347
3358
|
[name: string]: unknown;
|
|
3348
3359
|
};
|
|
3349
3360
|
content: {
|
|
3350
|
-
"application/json": components["schemas"]["
|
|
3361
|
+
"application/json": components["schemas"]["BodhiErrorResponse"];
|
|
3351
3362
|
};
|
|
3352
3363
|
};
|
|
3353
3364
|
/** @description Insufficient permissions */
|
|
@@ -3356,7 +3367,7 @@ export interface operations {
|
|
|
3356
3367
|
[name: string]: unknown;
|
|
3357
3368
|
};
|
|
3358
3369
|
content: {
|
|
3359
|
-
"application/json": components["schemas"]["
|
|
3370
|
+
"application/json": components["schemas"]["BodhiErrorResponse"];
|
|
3360
3371
|
};
|
|
3361
3372
|
};
|
|
3362
3373
|
/** @description MCP not found */
|
|
@@ -3372,7 +3383,7 @@ export interface operations {
|
|
|
3372
3383
|
[name: string]: unknown;
|
|
3373
3384
|
};
|
|
3374
3385
|
content: {
|
|
3375
|
-
"application/json": components["schemas"]["
|
|
3386
|
+
"application/json": components["schemas"]["BodhiErrorResponse"];
|
|
3376
3387
|
};
|
|
3377
3388
|
};
|
|
3378
3389
|
};
|
|
@@ -3402,7 +3413,7 @@ export interface operations {
|
|
|
3402
3413
|
[name: string]: unknown;
|
|
3403
3414
|
};
|
|
3404
3415
|
content: {
|
|
3405
|
-
"application/json": components["schemas"]["
|
|
3416
|
+
"application/json": components["schemas"]["BodhiErrorResponse"];
|
|
3406
3417
|
};
|
|
3407
3418
|
};
|
|
3408
3419
|
/** @description Not authenticated */
|
|
@@ -3411,7 +3422,7 @@ export interface operations {
|
|
|
3411
3422
|
[name: string]: unknown;
|
|
3412
3423
|
};
|
|
3413
3424
|
content: {
|
|
3414
|
-
"application/json": components["schemas"]["
|
|
3425
|
+
"application/json": components["schemas"]["BodhiErrorResponse"];
|
|
3415
3426
|
};
|
|
3416
3427
|
};
|
|
3417
3428
|
/** @description Insufficient permissions */
|
|
@@ -3420,7 +3431,7 @@ export interface operations {
|
|
|
3420
3431
|
[name: string]: unknown;
|
|
3421
3432
|
};
|
|
3422
3433
|
content: {
|
|
3423
|
-
"application/json": components["schemas"]["
|
|
3434
|
+
"application/json": components["schemas"]["BodhiErrorResponse"];
|
|
3424
3435
|
};
|
|
3425
3436
|
};
|
|
3426
3437
|
/** @description Internal server error */
|
|
@@ -3429,7 +3440,7 @@ export interface operations {
|
|
|
3429
3440
|
[name: string]: unknown;
|
|
3430
3441
|
};
|
|
3431
3442
|
content: {
|
|
3432
|
-
"application/json": components["schemas"]["
|
|
3443
|
+
"application/json": components["schemas"]["BodhiErrorResponse"];
|
|
3433
3444
|
};
|
|
3434
3445
|
};
|
|
3435
3446
|
};
|
|
@@ -3463,7 +3474,7 @@ export interface operations {
|
|
|
3463
3474
|
[name: string]: unknown;
|
|
3464
3475
|
};
|
|
3465
3476
|
content: {
|
|
3466
|
-
"application/json": components["schemas"]["
|
|
3477
|
+
"application/json": components["schemas"]["BodhiErrorResponse"];
|
|
3467
3478
|
};
|
|
3468
3479
|
};
|
|
3469
3480
|
/** @description Not authenticated */
|
|
@@ -3472,7 +3483,7 @@ export interface operations {
|
|
|
3472
3483
|
[name: string]: unknown;
|
|
3473
3484
|
};
|
|
3474
3485
|
content: {
|
|
3475
|
-
"application/json": components["schemas"]["
|
|
3486
|
+
"application/json": components["schemas"]["BodhiErrorResponse"];
|
|
3476
3487
|
};
|
|
3477
3488
|
};
|
|
3478
3489
|
/** @description Insufficient permissions */
|
|
@@ -3481,7 +3492,7 @@ export interface operations {
|
|
|
3481
3492
|
[name: string]: unknown;
|
|
3482
3493
|
};
|
|
3483
3494
|
content: {
|
|
3484
|
-
"application/json": components["schemas"]["
|
|
3495
|
+
"application/json": components["schemas"]["BodhiErrorResponse"];
|
|
3485
3496
|
};
|
|
3486
3497
|
};
|
|
3487
3498
|
/** @description App client not found */
|
|
@@ -3490,7 +3501,7 @@ export interface operations {
|
|
|
3490
3501
|
[name: string]: unknown;
|
|
3491
3502
|
};
|
|
3492
3503
|
content: {
|
|
3493
|
-
"application/json": components["schemas"]["
|
|
3504
|
+
"application/json": components["schemas"]["BodhiErrorResponse"];
|
|
3494
3505
|
};
|
|
3495
3506
|
};
|
|
3496
3507
|
/** @description Internal server error */
|
|
@@ -3499,7 +3510,7 @@ export interface operations {
|
|
|
3499
3510
|
[name: string]: unknown;
|
|
3500
3511
|
};
|
|
3501
3512
|
content: {
|
|
3502
|
-
"application/json": components["schemas"]["
|
|
3513
|
+
"application/json": components["schemas"]["BodhiErrorResponse"];
|
|
3503
3514
|
};
|
|
3504
3515
|
};
|
|
3505
3516
|
};
|
|
@@ -3540,7 +3551,7 @@ export interface operations {
|
|
|
3540
3551
|
[name: string]: unknown;
|
|
3541
3552
|
};
|
|
3542
3553
|
content: {
|
|
3543
|
-
"application/json": components["schemas"]["
|
|
3554
|
+
"application/json": components["schemas"]["BodhiErrorResponse"];
|
|
3544
3555
|
};
|
|
3545
3556
|
};
|
|
3546
3557
|
/** @description Not authenticated */
|
|
@@ -3549,7 +3560,7 @@ export interface operations {
|
|
|
3549
3560
|
[name: string]: unknown;
|
|
3550
3561
|
};
|
|
3551
3562
|
content: {
|
|
3552
|
-
"application/json": components["schemas"]["
|
|
3563
|
+
"application/json": components["schemas"]["BodhiErrorResponse"];
|
|
3553
3564
|
};
|
|
3554
3565
|
};
|
|
3555
3566
|
/** @description Insufficient permissions */
|
|
@@ -3558,7 +3569,7 @@ export interface operations {
|
|
|
3558
3569
|
[name: string]: unknown;
|
|
3559
3570
|
};
|
|
3560
3571
|
content: {
|
|
3561
|
-
"application/json": components["schemas"]["
|
|
3572
|
+
"application/json": components["schemas"]["BodhiErrorResponse"];
|
|
3562
3573
|
};
|
|
3563
3574
|
};
|
|
3564
3575
|
/** @description OAuth error, invalid request parameters, or state mismatch */
|
|
@@ -3574,7 +3585,7 @@ export interface operations {
|
|
|
3574
3585
|
* "type": "invalid_request_error"
|
|
3575
3586
|
* }
|
|
3576
3587
|
* } */
|
|
3577
|
-
"application/json": components["schemas"]["
|
|
3588
|
+
"application/json": components["schemas"]["BodhiErrorResponse"];
|
|
3578
3589
|
};
|
|
3579
3590
|
};
|
|
3580
3591
|
/** @description Internal server error */
|
|
@@ -3583,7 +3594,7 @@ export interface operations {
|
|
|
3583
3594
|
[name: string]: unknown;
|
|
3584
3595
|
};
|
|
3585
3596
|
content: {
|
|
3586
|
-
"application/json": components["schemas"]["
|
|
3597
|
+
"application/json": components["schemas"]["BodhiErrorResponse"];
|
|
3587
3598
|
};
|
|
3588
3599
|
};
|
|
3589
3600
|
};
|
|
@@ -3617,7 +3628,7 @@ export interface operations {
|
|
|
3617
3628
|
[name: string]: unknown;
|
|
3618
3629
|
};
|
|
3619
3630
|
content: {
|
|
3620
|
-
"application/json": components["schemas"]["
|
|
3631
|
+
"application/json": components["schemas"]["BodhiErrorResponse"];
|
|
3621
3632
|
};
|
|
3622
3633
|
};
|
|
3623
3634
|
/** @description Not authenticated */
|
|
@@ -3626,7 +3637,7 @@ export interface operations {
|
|
|
3626
3637
|
[name: string]: unknown;
|
|
3627
3638
|
};
|
|
3628
3639
|
content: {
|
|
3629
|
-
"application/json": components["schemas"]["
|
|
3640
|
+
"application/json": components["schemas"]["BodhiErrorResponse"];
|
|
3630
3641
|
};
|
|
3631
3642
|
};
|
|
3632
3643
|
/** @description Insufficient permissions */
|
|
@@ -3635,7 +3646,7 @@ export interface operations {
|
|
|
3635
3646
|
[name: string]: unknown;
|
|
3636
3647
|
};
|
|
3637
3648
|
content: {
|
|
3638
|
-
"application/json": components["schemas"]["
|
|
3649
|
+
"application/json": components["schemas"]["BodhiErrorResponse"];
|
|
3639
3650
|
};
|
|
3640
3651
|
};
|
|
3641
3652
|
/** @description Internal server error */
|
|
@@ -3644,7 +3655,7 @@ export interface operations {
|
|
|
3644
3655
|
[name: string]: unknown;
|
|
3645
3656
|
};
|
|
3646
3657
|
content: {
|
|
3647
|
-
"application/json": components["schemas"]["
|
|
3658
|
+
"application/json": components["schemas"]["BodhiErrorResponse"];
|
|
3648
3659
|
};
|
|
3649
3660
|
};
|
|
3650
3661
|
};
|
|
@@ -3686,7 +3697,7 @@ export interface operations {
|
|
|
3686
3697
|
[name: string]: unknown;
|
|
3687
3698
|
};
|
|
3688
3699
|
content: {
|
|
3689
|
-
"application/json": components["schemas"]["
|
|
3700
|
+
"application/json": components["schemas"]["BodhiErrorResponse"];
|
|
3690
3701
|
};
|
|
3691
3702
|
};
|
|
3692
3703
|
/** @description Not authenticated */
|
|
@@ -3695,7 +3706,7 @@ export interface operations {
|
|
|
3695
3706
|
[name: string]: unknown;
|
|
3696
3707
|
};
|
|
3697
3708
|
content: {
|
|
3698
|
-
"application/json": components["schemas"]["
|
|
3709
|
+
"application/json": components["schemas"]["BodhiErrorResponse"];
|
|
3699
3710
|
};
|
|
3700
3711
|
};
|
|
3701
3712
|
/** @description Insufficient permissions */
|
|
@@ -3704,7 +3715,7 @@ export interface operations {
|
|
|
3704
3715
|
[name: string]: unknown;
|
|
3705
3716
|
};
|
|
3706
3717
|
content: {
|
|
3707
|
-
"application/json": components["schemas"]["
|
|
3718
|
+
"application/json": components["schemas"]["BodhiErrorResponse"];
|
|
3708
3719
|
};
|
|
3709
3720
|
};
|
|
3710
3721
|
/** @description Internal server error */
|
|
@@ -3713,7 +3724,7 @@ export interface operations {
|
|
|
3713
3724
|
[name: string]: unknown;
|
|
3714
3725
|
};
|
|
3715
3726
|
content: {
|
|
3716
|
-
"application/json": components["schemas"]["
|
|
3727
|
+
"application/json": components["schemas"]["BodhiErrorResponse"];
|
|
3717
3728
|
};
|
|
3718
3729
|
};
|
|
3719
3730
|
};
|
|
@@ -3762,7 +3773,7 @@ export interface operations {
|
|
|
3762
3773
|
[name: string]: unknown;
|
|
3763
3774
|
};
|
|
3764
3775
|
content: {
|
|
3765
|
-
"application/json": components["schemas"]["
|
|
3776
|
+
"application/json": components["schemas"]["BodhiErrorResponse"];
|
|
3766
3777
|
};
|
|
3767
3778
|
};
|
|
3768
3779
|
/** @description Not authenticated */
|
|
@@ -3771,7 +3782,7 @@ export interface operations {
|
|
|
3771
3782
|
[name: string]: unknown;
|
|
3772
3783
|
};
|
|
3773
3784
|
content: {
|
|
3774
|
-
"application/json": components["schemas"]["
|
|
3785
|
+
"application/json": components["schemas"]["BodhiErrorResponse"];
|
|
3775
3786
|
};
|
|
3776
3787
|
};
|
|
3777
3788
|
/** @description Insufficient permissions */
|
|
@@ -3780,7 +3791,7 @@ export interface operations {
|
|
|
3780
3791
|
[name: string]: unknown;
|
|
3781
3792
|
};
|
|
3782
3793
|
content: {
|
|
3783
|
-
"application/json": components["schemas"]["
|
|
3794
|
+
"application/json": components["schemas"]["BodhiErrorResponse"];
|
|
3784
3795
|
};
|
|
3785
3796
|
};
|
|
3786
3797
|
/** @description Internal server error */
|
|
@@ -3789,7 +3800,7 @@ export interface operations {
|
|
|
3789
3800
|
[name: string]: unknown;
|
|
3790
3801
|
};
|
|
3791
3802
|
content: {
|
|
3792
|
-
"application/json": components["schemas"]["
|
|
3803
|
+
"application/json": components["schemas"]["BodhiErrorResponse"];
|
|
3793
3804
|
};
|
|
3794
3805
|
};
|
|
3795
3806
|
};
|
|
@@ -3826,7 +3837,7 @@ export interface operations {
|
|
|
3826
3837
|
[name: string]: unknown;
|
|
3827
3838
|
};
|
|
3828
3839
|
content: {
|
|
3829
|
-
"application/json": components["schemas"]["
|
|
3840
|
+
"application/json": components["schemas"]["BodhiErrorResponse"];
|
|
3830
3841
|
};
|
|
3831
3842
|
};
|
|
3832
3843
|
/** @description Internal server error */
|
|
@@ -3835,7 +3846,7 @@ export interface operations {
|
|
|
3835
3846
|
[name: string]: unknown;
|
|
3836
3847
|
};
|
|
3837
3848
|
content: {
|
|
3838
|
-
"application/json": components["schemas"]["
|
|
3849
|
+
"application/json": components["schemas"]["BodhiErrorResponse"];
|
|
3839
3850
|
};
|
|
3840
3851
|
};
|
|
3841
3852
|
};
|
|
@@ -3867,7 +3878,7 @@ export interface operations {
|
|
|
3867
3878
|
[name: string]: unknown;
|
|
3868
3879
|
};
|
|
3869
3880
|
content: {
|
|
3870
|
-
"application/json": components["schemas"]["
|
|
3881
|
+
"application/json": components["schemas"]["BodhiErrorResponse"];
|
|
3871
3882
|
};
|
|
3872
3883
|
};
|
|
3873
3884
|
/** @description Not authenticated */
|
|
@@ -3876,7 +3887,7 @@ export interface operations {
|
|
|
3876
3887
|
[name: string]: unknown;
|
|
3877
3888
|
};
|
|
3878
3889
|
content: {
|
|
3879
|
-
"application/json": components["schemas"]["
|
|
3890
|
+
"application/json": components["schemas"]["BodhiErrorResponse"];
|
|
3880
3891
|
};
|
|
3881
3892
|
};
|
|
3882
3893
|
/** @description Insufficient permissions */
|
|
@@ -3885,7 +3896,7 @@ export interface operations {
|
|
|
3885
3896
|
[name: string]: unknown;
|
|
3886
3897
|
};
|
|
3887
3898
|
content: {
|
|
3888
|
-
"application/json": components["schemas"]["
|
|
3899
|
+
"application/json": components["schemas"]["BodhiErrorResponse"];
|
|
3889
3900
|
};
|
|
3890
3901
|
};
|
|
3891
3902
|
/** @description Internal server error */
|
|
@@ -3894,7 +3905,7 @@ export interface operations {
|
|
|
3894
3905
|
[name: string]: unknown;
|
|
3895
3906
|
};
|
|
3896
3907
|
content: {
|
|
3897
|
-
"application/json": components["schemas"]["
|
|
3908
|
+
"application/json": components["schemas"]["BodhiErrorResponse"];
|
|
3898
3909
|
};
|
|
3899
3910
|
};
|
|
3900
3911
|
};
|
|
@@ -3923,7 +3934,7 @@ export interface operations {
|
|
|
3923
3934
|
[name: string]: unknown;
|
|
3924
3935
|
};
|
|
3925
3936
|
content: {
|
|
3926
|
-
"application/json": components["schemas"]["
|
|
3937
|
+
"application/json": components["schemas"]["BodhiErrorResponse"];
|
|
3927
3938
|
};
|
|
3928
3939
|
};
|
|
3929
3940
|
/** @description Not authenticated */
|
|
@@ -3932,7 +3943,7 @@ export interface operations {
|
|
|
3932
3943
|
[name: string]: unknown;
|
|
3933
3944
|
};
|
|
3934
3945
|
content: {
|
|
3935
|
-
"application/json": components["schemas"]["
|
|
3946
|
+
"application/json": components["schemas"]["BodhiErrorResponse"];
|
|
3936
3947
|
};
|
|
3937
3948
|
};
|
|
3938
3949
|
/** @description Insufficient permissions */
|
|
@@ -3941,7 +3952,7 @@ export interface operations {
|
|
|
3941
3952
|
[name: string]: unknown;
|
|
3942
3953
|
};
|
|
3943
3954
|
content: {
|
|
3944
|
-
"application/json": components["schemas"]["
|
|
3955
|
+
"application/json": components["schemas"]["BodhiErrorResponse"];
|
|
3945
3956
|
};
|
|
3946
3957
|
};
|
|
3947
3958
|
/** @description Internal server error */
|
|
@@ -3950,7 +3961,7 @@ export interface operations {
|
|
|
3950
3961
|
[name: string]: unknown;
|
|
3951
3962
|
};
|
|
3952
3963
|
content: {
|
|
3953
|
-
"application/json": components["schemas"]["
|
|
3964
|
+
"application/json": components["schemas"]["BodhiErrorResponse"];
|
|
3954
3965
|
};
|
|
3955
3966
|
};
|
|
3956
3967
|
};
|
|
@@ -3983,7 +3994,7 @@ export interface operations {
|
|
|
3983
3994
|
[name: string]: unknown;
|
|
3984
3995
|
};
|
|
3985
3996
|
content: {
|
|
3986
|
-
"application/json": components["schemas"]["
|
|
3997
|
+
"application/json": components["schemas"]["BodhiErrorResponse"];
|
|
3987
3998
|
};
|
|
3988
3999
|
};
|
|
3989
4000
|
/** @description Not authenticated */
|
|
@@ -3992,7 +4003,7 @@ export interface operations {
|
|
|
3992
4003
|
[name: string]: unknown;
|
|
3993
4004
|
};
|
|
3994
4005
|
content: {
|
|
3995
|
-
"application/json": components["schemas"]["
|
|
4006
|
+
"application/json": components["schemas"]["BodhiErrorResponse"];
|
|
3996
4007
|
};
|
|
3997
4008
|
};
|
|
3998
4009
|
/** @description Insufficient permissions */
|
|
@@ -4001,7 +4012,7 @@ export interface operations {
|
|
|
4001
4012
|
[name: string]: unknown;
|
|
4002
4013
|
};
|
|
4003
4014
|
content: {
|
|
4004
|
-
"application/json": components["schemas"]["
|
|
4015
|
+
"application/json": components["schemas"]["BodhiErrorResponse"];
|
|
4005
4016
|
};
|
|
4006
4017
|
};
|
|
4007
4018
|
/** @description Internal server error */
|
|
@@ -4010,7 +4021,7 @@ export interface operations {
|
|
|
4010
4021
|
[name: string]: unknown;
|
|
4011
4022
|
};
|
|
4012
4023
|
content: {
|
|
4013
|
-
"application/json": components["schemas"]["
|
|
4024
|
+
"application/json": components["schemas"]["BodhiErrorResponse"];
|
|
4014
4025
|
};
|
|
4015
4026
|
};
|
|
4016
4027
|
};
|
|
@@ -4041,7 +4052,7 @@ export interface operations {
|
|
|
4041
4052
|
[name: string]: unknown;
|
|
4042
4053
|
};
|
|
4043
4054
|
content: {
|
|
4044
|
-
"application/json": components["schemas"]["
|
|
4055
|
+
"application/json": components["schemas"]["BodhiErrorResponse"];
|
|
4045
4056
|
};
|
|
4046
4057
|
};
|
|
4047
4058
|
/** @description Not authenticated */
|
|
@@ -4050,7 +4061,7 @@ export interface operations {
|
|
|
4050
4061
|
[name: string]: unknown;
|
|
4051
4062
|
};
|
|
4052
4063
|
content: {
|
|
4053
|
-
"application/json": components["schemas"]["
|
|
4064
|
+
"application/json": components["schemas"]["BodhiErrorResponse"];
|
|
4054
4065
|
};
|
|
4055
4066
|
};
|
|
4056
4067
|
/** @description Insufficient permissions */
|
|
@@ -4059,7 +4070,7 @@ export interface operations {
|
|
|
4059
4070
|
[name: string]: unknown;
|
|
4060
4071
|
};
|
|
4061
4072
|
content: {
|
|
4062
|
-
"application/json": components["schemas"]["
|
|
4073
|
+
"application/json": components["schemas"]["BodhiErrorResponse"];
|
|
4063
4074
|
};
|
|
4064
4075
|
};
|
|
4065
4076
|
/** @description Internal server error */
|
|
@@ -4068,7 +4079,7 @@ export interface operations {
|
|
|
4068
4079
|
[name: string]: unknown;
|
|
4069
4080
|
};
|
|
4070
4081
|
content: {
|
|
4071
|
-
"application/json": components["schemas"]["
|
|
4082
|
+
"application/json": components["schemas"]["BodhiErrorResponse"];
|
|
4072
4083
|
};
|
|
4073
4084
|
};
|
|
4074
4085
|
};
|
|
@@ -4101,7 +4112,7 @@ export interface operations {
|
|
|
4101
4112
|
[name: string]: unknown;
|
|
4102
4113
|
};
|
|
4103
4114
|
content: {
|
|
4104
|
-
"application/json": components["schemas"]["
|
|
4115
|
+
"application/json": components["schemas"]["BodhiErrorResponse"];
|
|
4105
4116
|
};
|
|
4106
4117
|
};
|
|
4107
4118
|
/** @description Not authenticated */
|
|
@@ -4110,7 +4121,7 @@ export interface operations {
|
|
|
4110
4121
|
[name: string]: unknown;
|
|
4111
4122
|
};
|
|
4112
4123
|
content: {
|
|
4113
|
-
"application/json": components["schemas"]["
|
|
4124
|
+
"application/json": components["schemas"]["BodhiErrorResponse"];
|
|
4114
4125
|
};
|
|
4115
4126
|
};
|
|
4116
4127
|
/** @description Insufficient permissions */
|
|
@@ -4119,7 +4130,7 @@ export interface operations {
|
|
|
4119
4130
|
[name: string]: unknown;
|
|
4120
4131
|
};
|
|
4121
4132
|
content: {
|
|
4122
|
-
"application/json": components["schemas"]["
|
|
4133
|
+
"application/json": components["schemas"]["BodhiErrorResponse"];
|
|
4123
4134
|
};
|
|
4124
4135
|
};
|
|
4125
4136
|
/** @description Internal server error */
|
|
@@ -4128,7 +4139,7 @@ export interface operations {
|
|
|
4128
4139
|
[name: string]: unknown;
|
|
4129
4140
|
};
|
|
4130
4141
|
content: {
|
|
4131
|
-
"application/json": components["schemas"]["
|
|
4142
|
+
"application/json": components["schemas"]["BodhiErrorResponse"];
|
|
4132
4143
|
};
|
|
4133
4144
|
};
|
|
4134
4145
|
};
|
|
@@ -4160,7 +4171,7 @@ export interface operations {
|
|
|
4160
4171
|
[name: string]: unknown;
|
|
4161
4172
|
};
|
|
4162
4173
|
content: {
|
|
4163
|
-
"application/json": components["schemas"]["
|
|
4174
|
+
"application/json": components["schemas"]["BodhiErrorResponse"];
|
|
4164
4175
|
};
|
|
4165
4176
|
};
|
|
4166
4177
|
/** @description Not authenticated */
|
|
@@ -4169,7 +4180,7 @@ export interface operations {
|
|
|
4169
4180
|
[name: string]: unknown;
|
|
4170
4181
|
};
|
|
4171
4182
|
content: {
|
|
4172
|
-
"application/json": components["schemas"]["
|
|
4183
|
+
"application/json": components["schemas"]["BodhiErrorResponse"];
|
|
4173
4184
|
};
|
|
4174
4185
|
};
|
|
4175
4186
|
/** @description Insufficient permissions */
|
|
@@ -4178,7 +4189,7 @@ export interface operations {
|
|
|
4178
4189
|
[name: string]: unknown;
|
|
4179
4190
|
};
|
|
4180
4191
|
content: {
|
|
4181
|
-
"application/json": components["schemas"]["
|
|
4192
|
+
"application/json": components["schemas"]["BodhiErrorResponse"];
|
|
4182
4193
|
};
|
|
4183
4194
|
};
|
|
4184
4195
|
/** @description Not found */
|
|
@@ -4194,7 +4205,7 @@ export interface operations {
|
|
|
4194
4205
|
[name: string]: unknown;
|
|
4195
4206
|
};
|
|
4196
4207
|
content: {
|
|
4197
|
-
"application/json": components["schemas"]["
|
|
4208
|
+
"application/json": components["schemas"]["BodhiErrorResponse"];
|
|
4198
4209
|
};
|
|
4199
4210
|
};
|
|
4200
4211
|
};
|
|
@@ -4224,7 +4235,7 @@ export interface operations {
|
|
|
4224
4235
|
[name: string]: unknown;
|
|
4225
4236
|
};
|
|
4226
4237
|
content: {
|
|
4227
|
-
"application/json": components["schemas"]["
|
|
4238
|
+
"application/json": components["schemas"]["BodhiErrorResponse"];
|
|
4228
4239
|
};
|
|
4229
4240
|
};
|
|
4230
4241
|
/** @description Not authenticated */
|
|
@@ -4233,7 +4244,7 @@ export interface operations {
|
|
|
4233
4244
|
[name: string]: unknown;
|
|
4234
4245
|
};
|
|
4235
4246
|
content: {
|
|
4236
|
-
"application/json": components["schemas"]["
|
|
4247
|
+
"application/json": components["schemas"]["BodhiErrorResponse"];
|
|
4237
4248
|
};
|
|
4238
4249
|
};
|
|
4239
4250
|
/** @description Insufficient permissions */
|
|
@@ -4242,7 +4253,7 @@ export interface operations {
|
|
|
4242
4253
|
[name: string]: unknown;
|
|
4243
4254
|
};
|
|
4244
4255
|
content: {
|
|
4245
|
-
"application/json": components["schemas"]["
|
|
4256
|
+
"application/json": components["schemas"]["BodhiErrorResponse"];
|
|
4246
4257
|
};
|
|
4247
4258
|
};
|
|
4248
4259
|
/** @description Not found */
|
|
@@ -4258,7 +4269,7 @@ export interface operations {
|
|
|
4258
4269
|
[name: string]: unknown;
|
|
4259
4270
|
};
|
|
4260
4271
|
content: {
|
|
4261
|
-
"application/json": components["schemas"]["
|
|
4272
|
+
"application/json": components["schemas"]["BodhiErrorResponse"];
|
|
4262
4273
|
};
|
|
4263
4274
|
};
|
|
4264
4275
|
};
|
|
@@ -4294,7 +4305,7 @@ export interface operations {
|
|
|
4294
4305
|
[name: string]: unknown;
|
|
4295
4306
|
};
|
|
4296
4307
|
content: {
|
|
4297
|
-
"application/json": components["schemas"]["
|
|
4308
|
+
"application/json": components["schemas"]["BodhiErrorResponse"];
|
|
4298
4309
|
};
|
|
4299
4310
|
};
|
|
4300
4311
|
/** @description Not authenticated */
|
|
@@ -4303,7 +4314,7 @@ export interface operations {
|
|
|
4303
4314
|
[name: string]: unknown;
|
|
4304
4315
|
};
|
|
4305
4316
|
content: {
|
|
4306
|
-
"application/json": components["schemas"]["
|
|
4317
|
+
"application/json": components["schemas"]["BodhiErrorResponse"];
|
|
4307
4318
|
};
|
|
4308
4319
|
};
|
|
4309
4320
|
/** @description Insufficient permissions */
|
|
@@ -4312,7 +4323,7 @@ export interface operations {
|
|
|
4312
4323
|
[name: string]: unknown;
|
|
4313
4324
|
};
|
|
4314
4325
|
content: {
|
|
4315
|
-
"application/json": components["schemas"]["
|
|
4326
|
+
"application/json": components["schemas"]["BodhiErrorResponse"];
|
|
4316
4327
|
};
|
|
4317
4328
|
};
|
|
4318
4329
|
/** @description Auth config not found */
|
|
@@ -4328,7 +4339,7 @@ export interface operations {
|
|
|
4328
4339
|
[name: string]: unknown;
|
|
4329
4340
|
};
|
|
4330
4341
|
content: {
|
|
4331
|
-
"application/json": components["schemas"]["
|
|
4342
|
+
"application/json": components["schemas"]["BodhiErrorResponse"];
|
|
4332
4343
|
};
|
|
4333
4344
|
};
|
|
4334
4345
|
};
|
|
@@ -4364,7 +4375,7 @@ export interface operations {
|
|
|
4364
4375
|
[name: string]: unknown;
|
|
4365
4376
|
};
|
|
4366
4377
|
content: {
|
|
4367
|
-
"application/json": components["schemas"]["
|
|
4378
|
+
"application/json": components["schemas"]["BodhiErrorResponse"];
|
|
4368
4379
|
};
|
|
4369
4380
|
};
|
|
4370
4381
|
/** @description Not authenticated */
|
|
@@ -4373,7 +4384,7 @@ export interface operations {
|
|
|
4373
4384
|
[name: string]: unknown;
|
|
4374
4385
|
};
|
|
4375
4386
|
content: {
|
|
4376
|
-
"application/json": components["schemas"]["
|
|
4387
|
+
"application/json": components["schemas"]["BodhiErrorResponse"];
|
|
4377
4388
|
};
|
|
4378
4389
|
};
|
|
4379
4390
|
/** @description Insufficient permissions */
|
|
@@ -4382,7 +4393,7 @@ export interface operations {
|
|
|
4382
4393
|
[name: string]: unknown;
|
|
4383
4394
|
};
|
|
4384
4395
|
content: {
|
|
4385
|
-
"application/json": components["schemas"]["
|
|
4396
|
+
"application/json": components["schemas"]["BodhiErrorResponse"];
|
|
4386
4397
|
};
|
|
4387
4398
|
};
|
|
4388
4399
|
/** @description Auth config not found */
|
|
@@ -4398,7 +4409,7 @@ export interface operations {
|
|
|
4398
4409
|
[name: string]: unknown;
|
|
4399
4410
|
};
|
|
4400
4411
|
content: {
|
|
4401
|
-
"application/json": components["schemas"]["
|
|
4412
|
+
"application/json": components["schemas"]["BodhiErrorResponse"];
|
|
4402
4413
|
};
|
|
4403
4414
|
};
|
|
4404
4415
|
};
|
|
@@ -4430,7 +4441,7 @@ export interface operations {
|
|
|
4430
4441
|
[name: string]: unknown;
|
|
4431
4442
|
};
|
|
4432
4443
|
content: {
|
|
4433
|
-
"application/json": components["schemas"]["
|
|
4444
|
+
"application/json": components["schemas"]["BodhiErrorResponse"];
|
|
4434
4445
|
};
|
|
4435
4446
|
};
|
|
4436
4447
|
/** @description Not authenticated */
|
|
@@ -4439,7 +4450,7 @@ export interface operations {
|
|
|
4439
4450
|
[name: string]: unknown;
|
|
4440
4451
|
};
|
|
4441
4452
|
content: {
|
|
4442
|
-
"application/json": components["schemas"]["
|
|
4453
|
+
"application/json": components["schemas"]["BodhiErrorResponse"];
|
|
4443
4454
|
};
|
|
4444
4455
|
};
|
|
4445
4456
|
/** @description Insufficient permissions */
|
|
@@ -4448,7 +4459,7 @@ export interface operations {
|
|
|
4448
4459
|
[name: string]: unknown;
|
|
4449
4460
|
};
|
|
4450
4461
|
content: {
|
|
4451
|
-
"application/json": components["schemas"]["
|
|
4462
|
+
"application/json": components["schemas"]["BodhiErrorResponse"];
|
|
4452
4463
|
};
|
|
4453
4464
|
};
|
|
4454
4465
|
/** @description Not found */
|
|
@@ -4464,7 +4475,7 @@ export interface operations {
|
|
|
4464
4475
|
[name: string]: unknown;
|
|
4465
4476
|
};
|
|
4466
4477
|
content: {
|
|
4467
|
-
"application/json": components["schemas"]["
|
|
4478
|
+
"application/json": components["schemas"]["BodhiErrorResponse"];
|
|
4468
4479
|
};
|
|
4469
4480
|
};
|
|
4470
4481
|
};
|
|
@@ -4494,7 +4505,7 @@ export interface operations {
|
|
|
4494
4505
|
[name: string]: unknown;
|
|
4495
4506
|
};
|
|
4496
4507
|
content: {
|
|
4497
|
-
"application/json": components["schemas"]["
|
|
4508
|
+
"application/json": components["schemas"]["BodhiErrorResponse"];
|
|
4498
4509
|
};
|
|
4499
4510
|
};
|
|
4500
4511
|
/** @description Not authenticated */
|
|
@@ -4503,7 +4514,7 @@ export interface operations {
|
|
|
4503
4514
|
[name: string]: unknown;
|
|
4504
4515
|
};
|
|
4505
4516
|
content: {
|
|
4506
|
-
"application/json": components["schemas"]["
|
|
4517
|
+
"application/json": components["schemas"]["BodhiErrorResponse"];
|
|
4507
4518
|
};
|
|
4508
4519
|
};
|
|
4509
4520
|
/** @description Insufficient permissions */
|
|
@@ -4512,7 +4523,7 @@ export interface operations {
|
|
|
4512
4523
|
[name: string]: unknown;
|
|
4513
4524
|
};
|
|
4514
4525
|
content: {
|
|
4515
|
-
"application/json": components["schemas"]["
|
|
4526
|
+
"application/json": components["schemas"]["BodhiErrorResponse"];
|
|
4516
4527
|
};
|
|
4517
4528
|
};
|
|
4518
4529
|
/** @description Not found */
|
|
@@ -4528,7 +4539,7 @@ export interface operations {
|
|
|
4528
4539
|
[name: string]: unknown;
|
|
4529
4540
|
};
|
|
4530
4541
|
content: {
|
|
4531
|
-
"application/json": components["schemas"]["
|
|
4542
|
+
"application/json": components["schemas"]["BodhiErrorResponse"];
|
|
4532
4543
|
};
|
|
4533
4544
|
};
|
|
4534
4545
|
};
|
|
@@ -4561,7 +4572,7 @@ export interface operations {
|
|
|
4561
4572
|
[name: string]: unknown;
|
|
4562
4573
|
};
|
|
4563
4574
|
content: {
|
|
4564
|
-
"application/json": components["schemas"]["
|
|
4575
|
+
"application/json": components["schemas"]["BodhiErrorResponse"];
|
|
4565
4576
|
};
|
|
4566
4577
|
};
|
|
4567
4578
|
/** @description Not authenticated */
|
|
@@ -4570,7 +4581,7 @@ export interface operations {
|
|
|
4570
4581
|
[name: string]: unknown;
|
|
4571
4582
|
};
|
|
4572
4583
|
content: {
|
|
4573
|
-
"application/json": components["schemas"]["
|
|
4584
|
+
"application/json": components["schemas"]["BodhiErrorResponse"];
|
|
4574
4585
|
};
|
|
4575
4586
|
};
|
|
4576
4587
|
/** @description Insufficient permissions */
|
|
@@ -4579,7 +4590,7 @@ export interface operations {
|
|
|
4579
4590
|
[name: string]: unknown;
|
|
4580
4591
|
};
|
|
4581
4592
|
content: {
|
|
4582
|
-
"application/json": components["schemas"]["
|
|
4593
|
+
"application/json": components["schemas"]["BodhiErrorResponse"];
|
|
4583
4594
|
};
|
|
4584
4595
|
};
|
|
4585
4596
|
/** @description Internal server error */
|
|
@@ -4588,7 +4599,7 @@ export interface operations {
|
|
|
4588
4599
|
[name: string]: unknown;
|
|
4589
4600
|
};
|
|
4590
4601
|
content: {
|
|
4591
|
-
"application/json": components["schemas"]["
|
|
4602
|
+
"application/json": components["schemas"]["BodhiErrorResponse"];
|
|
4592
4603
|
};
|
|
4593
4604
|
};
|
|
4594
4605
|
};
|
|
@@ -4621,7 +4632,7 @@ export interface operations {
|
|
|
4621
4632
|
[name: string]: unknown;
|
|
4622
4633
|
};
|
|
4623
4634
|
content: {
|
|
4624
|
-
"application/json": components["schemas"]["
|
|
4635
|
+
"application/json": components["schemas"]["BodhiErrorResponse"];
|
|
4625
4636
|
};
|
|
4626
4637
|
};
|
|
4627
4638
|
/** @description Not authenticated */
|
|
@@ -4630,7 +4641,7 @@ export interface operations {
|
|
|
4630
4641
|
[name: string]: unknown;
|
|
4631
4642
|
};
|
|
4632
4643
|
content: {
|
|
4633
|
-
"application/json": components["schemas"]["
|
|
4644
|
+
"application/json": components["schemas"]["BodhiErrorResponse"];
|
|
4634
4645
|
};
|
|
4635
4646
|
};
|
|
4636
4647
|
/** @description Insufficient permissions */
|
|
@@ -4639,7 +4650,7 @@ export interface operations {
|
|
|
4639
4650
|
[name: string]: unknown;
|
|
4640
4651
|
};
|
|
4641
4652
|
content: {
|
|
4642
|
-
"application/json": components["schemas"]["
|
|
4653
|
+
"application/json": components["schemas"]["BodhiErrorResponse"];
|
|
4643
4654
|
};
|
|
4644
4655
|
};
|
|
4645
4656
|
/** @description Internal server error */
|
|
@@ -4648,7 +4659,7 @@ export interface operations {
|
|
|
4648
4659
|
[name: string]: unknown;
|
|
4649
4660
|
};
|
|
4650
4661
|
content: {
|
|
4651
|
-
"application/json": components["schemas"]["
|
|
4662
|
+
"application/json": components["schemas"]["BodhiErrorResponse"];
|
|
4652
4663
|
};
|
|
4653
4664
|
};
|
|
4654
4665
|
};
|
|
@@ -4681,7 +4692,7 @@ export interface operations {
|
|
|
4681
4692
|
[name: string]: unknown;
|
|
4682
4693
|
};
|
|
4683
4694
|
content: {
|
|
4684
|
-
"application/json": components["schemas"]["
|
|
4695
|
+
"application/json": components["schemas"]["BodhiErrorResponse"];
|
|
4685
4696
|
};
|
|
4686
4697
|
};
|
|
4687
4698
|
/** @description Not authenticated */
|
|
@@ -4690,7 +4701,7 @@ export interface operations {
|
|
|
4690
4701
|
[name: string]: unknown;
|
|
4691
4702
|
};
|
|
4692
4703
|
content: {
|
|
4693
|
-
"application/json": components["schemas"]["
|
|
4704
|
+
"application/json": components["schemas"]["BodhiErrorResponse"];
|
|
4694
4705
|
};
|
|
4695
4706
|
};
|
|
4696
4707
|
/** @description Insufficient permissions */
|
|
@@ -4699,7 +4710,7 @@ export interface operations {
|
|
|
4699
4710
|
[name: string]: unknown;
|
|
4700
4711
|
};
|
|
4701
4712
|
content: {
|
|
4702
|
-
"application/json": components["schemas"]["
|
|
4713
|
+
"application/json": components["schemas"]["BodhiErrorResponse"];
|
|
4703
4714
|
};
|
|
4704
4715
|
};
|
|
4705
4716
|
/** @description Internal server error */
|
|
@@ -4708,7 +4719,7 @@ export interface operations {
|
|
|
4708
4719
|
[name: string]: unknown;
|
|
4709
4720
|
};
|
|
4710
4721
|
content: {
|
|
4711
|
-
"application/json": components["schemas"]["
|
|
4722
|
+
"application/json": components["schemas"]["BodhiErrorResponse"];
|
|
4712
4723
|
};
|
|
4713
4724
|
};
|
|
4714
4725
|
};
|
|
@@ -4740,7 +4751,7 @@ export interface operations {
|
|
|
4740
4751
|
[name: string]: unknown;
|
|
4741
4752
|
};
|
|
4742
4753
|
content: {
|
|
4743
|
-
"application/json": components["schemas"]["
|
|
4754
|
+
"application/json": components["schemas"]["BodhiErrorResponse"];
|
|
4744
4755
|
};
|
|
4745
4756
|
};
|
|
4746
4757
|
/** @description Not authenticated */
|
|
@@ -4749,7 +4760,7 @@ export interface operations {
|
|
|
4749
4760
|
[name: string]: unknown;
|
|
4750
4761
|
};
|
|
4751
4762
|
content: {
|
|
4752
|
-
"application/json": components["schemas"]["
|
|
4763
|
+
"application/json": components["schemas"]["BodhiErrorResponse"];
|
|
4753
4764
|
};
|
|
4754
4765
|
};
|
|
4755
4766
|
/** @description Insufficient permissions */
|
|
@@ -4758,7 +4769,7 @@ export interface operations {
|
|
|
4758
4769
|
[name: string]: unknown;
|
|
4759
4770
|
};
|
|
4760
4771
|
content: {
|
|
4761
|
-
"application/json": components["schemas"]["
|
|
4772
|
+
"application/json": components["schemas"]["BodhiErrorResponse"];
|
|
4762
4773
|
};
|
|
4763
4774
|
};
|
|
4764
4775
|
/** @description Internal server error */
|
|
@@ -4767,7 +4778,7 @@ export interface operations {
|
|
|
4767
4778
|
[name: string]: unknown;
|
|
4768
4779
|
};
|
|
4769
4780
|
content: {
|
|
4770
|
-
"application/json": components["schemas"]["
|
|
4781
|
+
"application/json": components["schemas"]["BodhiErrorResponse"];
|
|
4771
4782
|
};
|
|
4772
4783
|
};
|
|
4773
4784
|
};
|
|
@@ -4800,7 +4811,7 @@ export interface operations {
|
|
|
4800
4811
|
[name: string]: unknown;
|
|
4801
4812
|
};
|
|
4802
4813
|
content: {
|
|
4803
|
-
"application/json": components["schemas"]["
|
|
4814
|
+
"application/json": components["schemas"]["BodhiErrorResponse"];
|
|
4804
4815
|
};
|
|
4805
4816
|
};
|
|
4806
4817
|
/** @description Not authenticated */
|
|
@@ -4809,7 +4820,7 @@ export interface operations {
|
|
|
4809
4820
|
[name: string]: unknown;
|
|
4810
4821
|
};
|
|
4811
4822
|
content: {
|
|
4812
|
-
"application/json": components["schemas"]["
|
|
4823
|
+
"application/json": components["schemas"]["BodhiErrorResponse"];
|
|
4813
4824
|
};
|
|
4814
4825
|
};
|
|
4815
4826
|
/** @description Insufficient permissions */
|
|
@@ -4818,7 +4829,7 @@ export interface operations {
|
|
|
4818
4829
|
[name: string]: unknown;
|
|
4819
4830
|
};
|
|
4820
4831
|
content: {
|
|
4821
|
-
"application/json": components["schemas"]["
|
|
4832
|
+
"application/json": components["schemas"]["BodhiErrorResponse"];
|
|
4822
4833
|
};
|
|
4823
4834
|
};
|
|
4824
4835
|
/** @description URL already exists */
|
|
@@ -4834,7 +4845,7 @@ export interface operations {
|
|
|
4834
4845
|
[name: string]: unknown;
|
|
4835
4846
|
};
|
|
4836
4847
|
content: {
|
|
4837
|
-
"application/json": components["schemas"]["
|
|
4848
|
+
"application/json": components["schemas"]["BodhiErrorResponse"];
|
|
4838
4849
|
};
|
|
4839
4850
|
};
|
|
4840
4851
|
};
|
|
@@ -4866,7 +4877,7 @@ export interface operations {
|
|
|
4866
4877
|
[name: string]: unknown;
|
|
4867
4878
|
};
|
|
4868
4879
|
content: {
|
|
4869
|
-
"application/json": components["schemas"]["
|
|
4880
|
+
"application/json": components["schemas"]["BodhiErrorResponse"];
|
|
4870
4881
|
};
|
|
4871
4882
|
};
|
|
4872
4883
|
/** @description Not authenticated */
|
|
@@ -4875,7 +4886,7 @@ export interface operations {
|
|
|
4875
4886
|
[name: string]: unknown;
|
|
4876
4887
|
};
|
|
4877
4888
|
content: {
|
|
4878
|
-
"application/json": components["schemas"]["
|
|
4889
|
+
"application/json": components["schemas"]["BodhiErrorResponse"];
|
|
4879
4890
|
};
|
|
4880
4891
|
};
|
|
4881
4892
|
/** @description Insufficient permissions */
|
|
@@ -4884,7 +4895,7 @@ export interface operations {
|
|
|
4884
4895
|
[name: string]: unknown;
|
|
4885
4896
|
};
|
|
4886
4897
|
content: {
|
|
4887
|
-
"application/json": components["schemas"]["
|
|
4898
|
+
"application/json": components["schemas"]["BodhiErrorResponse"];
|
|
4888
4899
|
};
|
|
4889
4900
|
};
|
|
4890
4901
|
/** @description Not found */
|
|
@@ -4900,7 +4911,7 @@ export interface operations {
|
|
|
4900
4911
|
[name: string]: unknown;
|
|
4901
4912
|
};
|
|
4902
4913
|
content: {
|
|
4903
|
-
"application/json": components["schemas"]["
|
|
4914
|
+
"application/json": components["schemas"]["BodhiErrorResponse"];
|
|
4904
4915
|
};
|
|
4905
4916
|
};
|
|
4906
4917
|
};
|
|
@@ -4936,7 +4947,7 @@ export interface operations {
|
|
|
4936
4947
|
[name: string]: unknown;
|
|
4937
4948
|
};
|
|
4938
4949
|
content: {
|
|
4939
|
-
"application/json": components["schemas"]["
|
|
4950
|
+
"application/json": components["schemas"]["BodhiErrorResponse"];
|
|
4940
4951
|
};
|
|
4941
4952
|
};
|
|
4942
4953
|
/** @description Not authenticated */
|
|
@@ -4945,7 +4956,7 @@ export interface operations {
|
|
|
4945
4956
|
[name: string]: unknown;
|
|
4946
4957
|
};
|
|
4947
4958
|
content: {
|
|
4948
|
-
"application/json": components["schemas"]["
|
|
4959
|
+
"application/json": components["schemas"]["BodhiErrorResponse"];
|
|
4949
4960
|
};
|
|
4950
4961
|
};
|
|
4951
4962
|
/** @description Insufficient permissions */
|
|
@@ -4954,7 +4965,7 @@ export interface operations {
|
|
|
4954
4965
|
[name: string]: unknown;
|
|
4955
4966
|
};
|
|
4956
4967
|
content: {
|
|
4957
|
-
"application/json": components["schemas"]["
|
|
4968
|
+
"application/json": components["schemas"]["BodhiErrorResponse"];
|
|
4958
4969
|
};
|
|
4959
4970
|
};
|
|
4960
4971
|
/** @description Not found */
|
|
@@ -4977,7 +4988,7 @@ export interface operations {
|
|
|
4977
4988
|
[name: string]: unknown;
|
|
4978
4989
|
};
|
|
4979
4990
|
content: {
|
|
4980
|
-
"application/json": components["schemas"]["
|
|
4991
|
+
"application/json": components["schemas"]["BodhiErrorResponse"];
|
|
4981
4992
|
};
|
|
4982
4993
|
};
|
|
4983
4994
|
};
|
|
@@ -5009,7 +5020,7 @@ export interface operations {
|
|
|
5009
5020
|
[name: string]: unknown;
|
|
5010
5021
|
};
|
|
5011
5022
|
content: {
|
|
5012
|
-
"application/json": components["schemas"]["
|
|
5023
|
+
"application/json": components["schemas"]["BodhiErrorResponse"];
|
|
5013
5024
|
};
|
|
5014
5025
|
};
|
|
5015
5026
|
/** @description Not authenticated */
|
|
@@ -5018,7 +5029,7 @@ export interface operations {
|
|
|
5018
5029
|
[name: string]: unknown;
|
|
5019
5030
|
};
|
|
5020
5031
|
content: {
|
|
5021
|
-
"application/json": components["schemas"]["
|
|
5032
|
+
"application/json": components["schemas"]["BodhiErrorResponse"];
|
|
5022
5033
|
};
|
|
5023
5034
|
};
|
|
5024
5035
|
/** @description Insufficient permissions */
|
|
@@ -5027,7 +5038,7 @@ export interface operations {
|
|
|
5027
5038
|
[name: string]: unknown;
|
|
5028
5039
|
};
|
|
5029
5040
|
content: {
|
|
5030
|
-
"application/json": components["schemas"]["
|
|
5041
|
+
"application/json": components["schemas"]["BodhiErrorResponse"];
|
|
5031
5042
|
};
|
|
5032
5043
|
};
|
|
5033
5044
|
/** @description MCP not found */
|
|
@@ -5043,7 +5054,7 @@ export interface operations {
|
|
|
5043
5054
|
[name: string]: unknown;
|
|
5044
5055
|
};
|
|
5045
5056
|
content: {
|
|
5046
|
-
"application/json": components["schemas"]["
|
|
5057
|
+
"application/json": components["schemas"]["BodhiErrorResponse"];
|
|
5047
5058
|
};
|
|
5048
5059
|
};
|
|
5049
5060
|
};
|
|
@@ -5079,7 +5090,7 @@ export interface operations {
|
|
|
5079
5090
|
[name: string]: unknown;
|
|
5080
5091
|
};
|
|
5081
5092
|
content: {
|
|
5082
|
-
"application/json": components["schemas"]["
|
|
5093
|
+
"application/json": components["schemas"]["BodhiErrorResponse"];
|
|
5083
5094
|
};
|
|
5084
5095
|
};
|
|
5085
5096
|
/** @description Not authenticated */
|
|
@@ -5088,7 +5099,7 @@ export interface operations {
|
|
|
5088
5099
|
[name: string]: unknown;
|
|
5089
5100
|
};
|
|
5090
5101
|
content: {
|
|
5091
|
-
"application/json": components["schemas"]["
|
|
5102
|
+
"application/json": components["schemas"]["BodhiErrorResponse"];
|
|
5092
5103
|
};
|
|
5093
5104
|
};
|
|
5094
5105
|
/** @description Insufficient permissions */
|
|
@@ -5097,7 +5108,7 @@ export interface operations {
|
|
|
5097
5108
|
[name: string]: unknown;
|
|
5098
5109
|
};
|
|
5099
5110
|
content: {
|
|
5100
|
-
"application/json": components["schemas"]["
|
|
5111
|
+
"application/json": components["schemas"]["BodhiErrorResponse"];
|
|
5101
5112
|
};
|
|
5102
5113
|
};
|
|
5103
5114
|
/** @description MCP not found */
|
|
@@ -5113,7 +5124,7 @@ export interface operations {
|
|
|
5113
5124
|
[name: string]: unknown;
|
|
5114
5125
|
};
|
|
5115
5126
|
content: {
|
|
5116
|
-
"application/json": components["schemas"]["
|
|
5127
|
+
"application/json": components["schemas"]["BodhiErrorResponse"];
|
|
5117
5128
|
};
|
|
5118
5129
|
};
|
|
5119
5130
|
};
|
|
@@ -5143,7 +5154,7 @@ export interface operations {
|
|
|
5143
5154
|
[name: string]: unknown;
|
|
5144
5155
|
};
|
|
5145
5156
|
content: {
|
|
5146
|
-
"application/json": components["schemas"]["
|
|
5157
|
+
"application/json": components["schemas"]["BodhiErrorResponse"];
|
|
5147
5158
|
};
|
|
5148
5159
|
};
|
|
5149
5160
|
/** @description Not authenticated */
|
|
@@ -5152,7 +5163,7 @@ export interface operations {
|
|
|
5152
5163
|
[name: string]: unknown;
|
|
5153
5164
|
};
|
|
5154
5165
|
content: {
|
|
5155
|
-
"application/json": components["schemas"]["
|
|
5166
|
+
"application/json": components["schemas"]["BodhiErrorResponse"];
|
|
5156
5167
|
};
|
|
5157
5168
|
};
|
|
5158
5169
|
/** @description Insufficient permissions */
|
|
@@ -5161,7 +5172,7 @@ export interface operations {
|
|
|
5161
5172
|
[name: string]: unknown;
|
|
5162
5173
|
};
|
|
5163
5174
|
content: {
|
|
5164
|
-
"application/json": components["schemas"]["
|
|
5175
|
+
"application/json": components["schemas"]["BodhiErrorResponse"];
|
|
5165
5176
|
};
|
|
5166
5177
|
};
|
|
5167
5178
|
/** @description MCP not found */
|
|
@@ -5177,7 +5188,7 @@ export interface operations {
|
|
|
5177
5188
|
[name: string]: unknown;
|
|
5178
5189
|
};
|
|
5179
5190
|
content: {
|
|
5180
|
-
"application/json": components["schemas"]["
|
|
5191
|
+
"application/json": components["schemas"]["BodhiErrorResponse"];
|
|
5181
5192
|
};
|
|
5182
5193
|
};
|
|
5183
5194
|
};
|
|
@@ -5256,7 +5267,7 @@ export interface operations {
|
|
|
5256
5267
|
[name: string]: unknown;
|
|
5257
5268
|
};
|
|
5258
5269
|
content: {
|
|
5259
|
-
"application/json": components["schemas"]["
|
|
5270
|
+
"application/json": components["schemas"]["BodhiErrorResponse"];
|
|
5260
5271
|
};
|
|
5261
5272
|
};
|
|
5262
5273
|
/** @description Not authenticated */
|
|
@@ -5265,7 +5276,7 @@ export interface operations {
|
|
|
5265
5276
|
[name: string]: unknown;
|
|
5266
5277
|
};
|
|
5267
5278
|
content: {
|
|
5268
|
-
"application/json": components["schemas"]["
|
|
5279
|
+
"application/json": components["schemas"]["BodhiErrorResponse"];
|
|
5269
5280
|
};
|
|
5270
5281
|
};
|
|
5271
5282
|
/** @description Insufficient permissions */
|
|
@@ -5274,7 +5285,7 @@ export interface operations {
|
|
|
5274
5285
|
[name: string]: unknown;
|
|
5275
5286
|
};
|
|
5276
5287
|
content: {
|
|
5277
|
-
"application/json": components["schemas"]["
|
|
5288
|
+
"application/json": components["schemas"]["BodhiErrorResponse"];
|
|
5278
5289
|
};
|
|
5279
5290
|
};
|
|
5280
5291
|
/** @description Internal server error */
|
|
@@ -5283,7 +5294,7 @@ export interface operations {
|
|
|
5283
5294
|
[name: string]: unknown;
|
|
5284
5295
|
};
|
|
5285
5296
|
content: {
|
|
5286
|
-
"application/json": components["schemas"]["
|
|
5297
|
+
"application/json": components["schemas"]["BodhiErrorResponse"];
|
|
5287
5298
|
};
|
|
5288
5299
|
};
|
|
5289
5300
|
};
|
|
@@ -5316,7 +5327,7 @@ export interface operations {
|
|
|
5316
5327
|
[name: string]: unknown;
|
|
5317
5328
|
};
|
|
5318
5329
|
content: {
|
|
5319
|
-
"application/json": components["schemas"]["
|
|
5330
|
+
"application/json": components["schemas"]["BodhiErrorResponse"];
|
|
5320
5331
|
};
|
|
5321
5332
|
};
|
|
5322
5333
|
/** @description Not authenticated */
|
|
@@ -5325,7 +5336,7 @@ export interface operations {
|
|
|
5325
5336
|
[name: string]: unknown;
|
|
5326
5337
|
};
|
|
5327
5338
|
content: {
|
|
5328
|
-
"application/json": components["schemas"]["
|
|
5339
|
+
"application/json": components["schemas"]["BodhiErrorResponse"];
|
|
5329
5340
|
};
|
|
5330
5341
|
};
|
|
5331
5342
|
/** @description Insufficient permissions */
|
|
@@ -5334,7 +5345,7 @@ export interface operations {
|
|
|
5334
5345
|
[name: string]: unknown;
|
|
5335
5346
|
};
|
|
5336
5347
|
content: {
|
|
5337
|
-
"application/json": components["schemas"]["
|
|
5348
|
+
"application/json": components["schemas"]["BodhiErrorResponse"];
|
|
5338
5349
|
};
|
|
5339
5350
|
};
|
|
5340
5351
|
/** @description Internal server error */
|
|
@@ -5343,7 +5354,7 @@ export interface operations {
|
|
|
5343
5354
|
[name: string]: unknown;
|
|
5344
5355
|
};
|
|
5345
5356
|
content: {
|
|
5346
|
-
"application/json": components["schemas"]["
|
|
5357
|
+
"application/json": components["schemas"]["BodhiErrorResponse"];
|
|
5347
5358
|
};
|
|
5348
5359
|
};
|
|
5349
5360
|
};
|
|
@@ -5379,7 +5390,7 @@ export interface operations {
|
|
|
5379
5390
|
[name: string]: unknown;
|
|
5380
5391
|
};
|
|
5381
5392
|
content: {
|
|
5382
|
-
"application/json": components["schemas"]["
|
|
5393
|
+
"application/json": components["schemas"]["BodhiErrorResponse"];
|
|
5383
5394
|
};
|
|
5384
5395
|
};
|
|
5385
5396
|
/** @description Not authenticated */
|
|
@@ -5388,7 +5399,7 @@ export interface operations {
|
|
|
5388
5399
|
[name: string]: unknown;
|
|
5389
5400
|
};
|
|
5390
5401
|
content: {
|
|
5391
|
-
"application/json": components["schemas"]["
|
|
5402
|
+
"application/json": components["schemas"]["BodhiErrorResponse"];
|
|
5392
5403
|
};
|
|
5393
5404
|
};
|
|
5394
5405
|
/** @description Insufficient permissions */
|
|
@@ -5397,7 +5408,7 @@ export interface operations {
|
|
|
5397
5408
|
[name: string]: unknown;
|
|
5398
5409
|
};
|
|
5399
5410
|
content: {
|
|
5400
|
-
"application/json": components["schemas"]["
|
|
5411
|
+
"application/json": components["schemas"]["BodhiErrorResponse"];
|
|
5401
5412
|
};
|
|
5402
5413
|
};
|
|
5403
5414
|
/** @description Internal server error */
|
|
@@ -5406,7 +5417,7 @@ export interface operations {
|
|
|
5406
5417
|
[name: string]: unknown;
|
|
5407
5418
|
};
|
|
5408
5419
|
content: {
|
|
5409
|
-
"application/json": components["schemas"]["
|
|
5420
|
+
"application/json": components["schemas"]["BodhiErrorResponse"];
|
|
5410
5421
|
};
|
|
5411
5422
|
};
|
|
5412
5423
|
};
|
|
@@ -5436,7 +5447,7 @@ export interface operations {
|
|
|
5436
5447
|
[name: string]: unknown;
|
|
5437
5448
|
};
|
|
5438
5449
|
content: {
|
|
5439
|
-
"application/json": components["schemas"]["
|
|
5450
|
+
"application/json": components["schemas"]["BodhiErrorResponse"];
|
|
5440
5451
|
};
|
|
5441
5452
|
};
|
|
5442
5453
|
/** @description Not authenticated */
|
|
@@ -5445,7 +5456,7 @@ export interface operations {
|
|
|
5445
5456
|
[name: string]: unknown;
|
|
5446
5457
|
};
|
|
5447
5458
|
content: {
|
|
5448
|
-
"application/json": components["schemas"]["
|
|
5459
|
+
"application/json": components["schemas"]["BodhiErrorResponse"];
|
|
5449
5460
|
};
|
|
5450
5461
|
};
|
|
5451
5462
|
/** @description Insufficient permissions */
|
|
@@ -5454,7 +5465,7 @@ export interface operations {
|
|
|
5454
5465
|
[name: string]: unknown;
|
|
5455
5466
|
};
|
|
5456
5467
|
content: {
|
|
5457
|
-
"application/json": components["schemas"]["
|
|
5468
|
+
"application/json": components["schemas"]["BodhiErrorResponse"];
|
|
5458
5469
|
};
|
|
5459
5470
|
};
|
|
5460
5471
|
/** @description Alias not found */
|
|
@@ -5470,7 +5481,7 @@ export interface operations {
|
|
|
5470
5481
|
[name: string]: unknown;
|
|
5471
5482
|
};
|
|
5472
5483
|
content: {
|
|
5473
|
-
"application/json": components["schemas"]["
|
|
5484
|
+
"application/json": components["schemas"]["BodhiErrorResponse"];
|
|
5474
5485
|
};
|
|
5475
5486
|
};
|
|
5476
5487
|
};
|
|
@@ -5506,7 +5517,7 @@ export interface operations {
|
|
|
5506
5517
|
[name: string]: unknown;
|
|
5507
5518
|
};
|
|
5508
5519
|
content: {
|
|
5509
|
-
"application/json": components["schemas"]["
|
|
5520
|
+
"application/json": components["schemas"]["BodhiErrorResponse"];
|
|
5510
5521
|
};
|
|
5511
5522
|
};
|
|
5512
5523
|
/** @description Not authenticated */
|
|
@@ -5515,7 +5526,7 @@ export interface operations {
|
|
|
5515
5526
|
[name: string]: unknown;
|
|
5516
5527
|
};
|
|
5517
5528
|
content: {
|
|
5518
|
-
"application/json": components["schemas"]["
|
|
5529
|
+
"application/json": components["schemas"]["BodhiErrorResponse"];
|
|
5519
5530
|
};
|
|
5520
5531
|
};
|
|
5521
5532
|
/** @description Insufficient permissions */
|
|
@@ -5524,7 +5535,7 @@ export interface operations {
|
|
|
5524
5535
|
[name: string]: unknown;
|
|
5525
5536
|
};
|
|
5526
5537
|
content: {
|
|
5527
|
-
"application/json": components["schemas"]["
|
|
5538
|
+
"application/json": components["schemas"]["BodhiErrorResponse"];
|
|
5528
5539
|
};
|
|
5529
5540
|
};
|
|
5530
5541
|
/** @description Source alias not found */
|
|
@@ -5540,7 +5551,7 @@ export interface operations {
|
|
|
5540
5551
|
[name: string]: unknown;
|
|
5541
5552
|
};
|
|
5542
5553
|
content: {
|
|
5543
|
-
"application/json": components["schemas"]["
|
|
5554
|
+
"application/json": components["schemas"]["BodhiErrorResponse"];
|
|
5544
5555
|
};
|
|
5545
5556
|
};
|
|
5546
5557
|
};
|
|
@@ -5573,7 +5584,7 @@ export interface operations {
|
|
|
5573
5584
|
[name: string]: unknown;
|
|
5574
5585
|
};
|
|
5575
5586
|
content: {
|
|
5576
|
-
"application/json": components["schemas"]["
|
|
5587
|
+
"application/json": components["schemas"]["BodhiErrorResponse"];
|
|
5577
5588
|
};
|
|
5578
5589
|
};
|
|
5579
5590
|
/** @description Not authenticated */
|
|
@@ -5582,7 +5593,7 @@ export interface operations {
|
|
|
5582
5593
|
[name: string]: unknown;
|
|
5583
5594
|
};
|
|
5584
5595
|
content: {
|
|
5585
|
-
"application/json": components["schemas"]["
|
|
5596
|
+
"application/json": components["schemas"]["BodhiErrorResponse"];
|
|
5586
5597
|
};
|
|
5587
5598
|
};
|
|
5588
5599
|
/** @description Insufficient permissions */
|
|
@@ -5591,7 +5602,7 @@ export interface operations {
|
|
|
5591
5602
|
[name: string]: unknown;
|
|
5592
5603
|
};
|
|
5593
5604
|
content: {
|
|
5594
|
-
"application/json": components["schemas"]["
|
|
5605
|
+
"application/json": components["schemas"]["BodhiErrorResponse"];
|
|
5595
5606
|
};
|
|
5596
5607
|
};
|
|
5597
5608
|
/** @description Alias already exists */
|
|
@@ -5600,7 +5611,7 @@ export interface operations {
|
|
|
5600
5611
|
[name: string]: unknown;
|
|
5601
5612
|
};
|
|
5602
5613
|
content: {
|
|
5603
|
-
"application/json": components["schemas"]["
|
|
5614
|
+
"application/json": components["schemas"]["BodhiErrorResponse"];
|
|
5604
5615
|
};
|
|
5605
5616
|
};
|
|
5606
5617
|
/** @description Internal server error */
|
|
@@ -5609,7 +5620,7 @@ export interface operations {
|
|
|
5609
5620
|
[name: string]: unknown;
|
|
5610
5621
|
};
|
|
5611
5622
|
content: {
|
|
5612
|
-
"application/json": components["schemas"]["
|
|
5623
|
+
"application/json": components["schemas"]["BodhiErrorResponse"];
|
|
5613
5624
|
};
|
|
5614
5625
|
};
|
|
5615
5626
|
};
|
|
@@ -5642,7 +5653,7 @@ export interface operations {
|
|
|
5642
5653
|
[name: string]: unknown;
|
|
5643
5654
|
};
|
|
5644
5655
|
content: {
|
|
5645
|
-
"application/json": components["schemas"]["
|
|
5656
|
+
"application/json": components["schemas"]["BodhiErrorResponse"];
|
|
5646
5657
|
};
|
|
5647
5658
|
};
|
|
5648
5659
|
/** @description Not authenticated */
|
|
@@ -5651,7 +5662,7 @@ export interface operations {
|
|
|
5651
5662
|
[name: string]: unknown;
|
|
5652
5663
|
};
|
|
5653
5664
|
content: {
|
|
5654
|
-
"application/json": components["schemas"]["
|
|
5665
|
+
"application/json": components["schemas"]["BodhiErrorResponse"];
|
|
5655
5666
|
};
|
|
5656
5667
|
};
|
|
5657
5668
|
/** @description Insufficient permissions */
|
|
@@ -5660,7 +5671,7 @@ export interface operations {
|
|
|
5660
5671
|
[name: string]: unknown;
|
|
5661
5672
|
};
|
|
5662
5673
|
content: {
|
|
5663
|
-
"application/json": components["schemas"]["
|
|
5674
|
+
"application/json": components["schemas"]["BodhiErrorResponse"];
|
|
5664
5675
|
};
|
|
5665
5676
|
};
|
|
5666
5677
|
/** @description Internal server error */
|
|
@@ -5669,7 +5680,7 @@ export interface operations {
|
|
|
5669
5680
|
[name: string]: unknown;
|
|
5670
5681
|
};
|
|
5671
5682
|
content: {
|
|
5672
|
-
"application/json": components["schemas"]["
|
|
5683
|
+
"application/json": components["schemas"]["BodhiErrorResponse"];
|
|
5673
5684
|
};
|
|
5674
5685
|
};
|
|
5675
5686
|
};
|
|
@@ -5707,7 +5718,7 @@ export interface operations {
|
|
|
5707
5718
|
[name: string]: unknown;
|
|
5708
5719
|
};
|
|
5709
5720
|
content: {
|
|
5710
|
-
"application/json": components["schemas"]["
|
|
5721
|
+
"application/json": components["schemas"]["BodhiErrorResponse"];
|
|
5711
5722
|
};
|
|
5712
5723
|
};
|
|
5713
5724
|
/** @description Not authenticated */
|
|
@@ -5716,7 +5727,7 @@ export interface operations {
|
|
|
5716
5727
|
[name: string]: unknown;
|
|
5717
5728
|
};
|
|
5718
5729
|
content: {
|
|
5719
|
-
"application/json": components["schemas"]["
|
|
5730
|
+
"application/json": components["schemas"]["BodhiErrorResponse"];
|
|
5720
5731
|
};
|
|
5721
5732
|
};
|
|
5722
5733
|
/** @description Insufficient permissions */
|
|
@@ -5725,7 +5736,7 @@ export interface operations {
|
|
|
5725
5736
|
[name: string]: unknown;
|
|
5726
5737
|
};
|
|
5727
5738
|
content: {
|
|
5728
|
-
"application/json": components["schemas"]["
|
|
5739
|
+
"application/json": components["schemas"]["BodhiErrorResponse"];
|
|
5729
5740
|
};
|
|
5730
5741
|
};
|
|
5731
5742
|
/** @description Internal server error */
|
|
@@ -5734,7 +5745,7 @@ export interface operations {
|
|
|
5734
5745
|
[name: string]: unknown;
|
|
5735
5746
|
};
|
|
5736
5747
|
content: {
|
|
5737
|
-
"application/json": components["schemas"]["
|
|
5748
|
+
"application/json": components["schemas"]["BodhiErrorResponse"];
|
|
5738
5749
|
};
|
|
5739
5750
|
};
|
|
5740
5751
|
};
|
|
@@ -5767,7 +5778,7 @@ export interface operations {
|
|
|
5767
5778
|
[name: string]: unknown;
|
|
5768
5779
|
};
|
|
5769
5780
|
content: {
|
|
5770
|
-
"application/json": components["schemas"]["
|
|
5781
|
+
"application/json": components["schemas"]["BodhiErrorResponse"];
|
|
5771
5782
|
};
|
|
5772
5783
|
};
|
|
5773
5784
|
/** @description Not authenticated */
|
|
@@ -5776,7 +5787,7 @@ export interface operations {
|
|
|
5776
5787
|
[name: string]: unknown;
|
|
5777
5788
|
};
|
|
5778
5789
|
content: {
|
|
5779
|
-
"application/json": components["schemas"]["
|
|
5790
|
+
"application/json": components["schemas"]["BodhiErrorResponse"];
|
|
5780
5791
|
};
|
|
5781
5792
|
};
|
|
5782
5793
|
/** @description Insufficient permissions */
|
|
@@ -5785,7 +5796,7 @@ export interface operations {
|
|
|
5785
5796
|
[name: string]: unknown;
|
|
5786
5797
|
};
|
|
5787
5798
|
content: {
|
|
5788
|
-
"application/json": components["schemas"]["
|
|
5799
|
+
"application/json": components["schemas"]["BodhiErrorResponse"];
|
|
5789
5800
|
};
|
|
5790
5801
|
};
|
|
5791
5802
|
/** @description Internal server error */
|
|
@@ -5794,7 +5805,7 @@ export interface operations {
|
|
|
5794
5805
|
[name: string]: unknown;
|
|
5795
5806
|
};
|
|
5796
5807
|
content: {
|
|
5797
|
-
"application/json": components["schemas"]["
|
|
5808
|
+
"application/json": components["schemas"]["BodhiErrorResponse"];
|
|
5798
5809
|
};
|
|
5799
5810
|
};
|
|
5800
5811
|
};
|
|
@@ -5838,7 +5849,7 @@ export interface operations {
|
|
|
5838
5849
|
[name: string]: unknown;
|
|
5839
5850
|
};
|
|
5840
5851
|
content: {
|
|
5841
|
-
"application/json": components["schemas"]["
|
|
5852
|
+
"application/json": components["schemas"]["BodhiErrorResponse"];
|
|
5842
5853
|
};
|
|
5843
5854
|
};
|
|
5844
5855
|
/** @description Not authenticated */
|
|
@@ -5847,7 +5858,7 @@ export interface operations {
|
|
|
5847
5858
|
[name: string]: unknown;
|
|
5848
5859
|
};
|
|
5849
5860
|
content: {
|
|
5850
|
-
"application/json": components["schemas"]["
|
|
5861
|
+
"application/json": components["schemas"]["BodhiErrorResponse"];
|
|
5851
5862
|
};
|
|
5852
5863
|
};
|
|
5853
5864
|
/** @description Insufficient permissions */
|
|
@@ -5856,7 +5867,7 @@ export interface operations {
|
|
|
5856
5867
|
[name: string]: unknown;
|
|
5857
5868
|
};
|
|
5858
5869
|
content: {
|
|
5859
|
-
"application/json": components["schemas"]["
|
|
5870
|
+
"application/json": components["schemas"]["BodhiErrorResponse"];
|
|
5860
5871
|
};
|
|
5861
5872
|
};
|
|
5862
5873
|
/** @description API model with specified ID not found */
|
|
@@ -5872,7 +5883,7 @@ export interface operations {
|
|
|
5872
5883
|
* "type": "not_found_error"
|
|
5873
5884
|
* }
|
|
5874
5885
|
* } */
|
|
5875
|
-
"application/json": components["schemas"]["
|
|
5886
|
+
"application/json": components["schemas"]["BodhiErrorResponse"];
|
|
5876
5887
|
};
|
|
5877
5888
|
};
|
|
5878
5889
|
/** @description Internal server error */
|
|
@@ -5881,7 +5892,7 @@ export interface operations {
|
|
|
5881
5892
|
[name: string]: unknown;
|
|
5882
5893
|
};
|
|
5883
5894
|
content: {
|
|
5884
|
-
"application/json": components["schemas"]["
|
|
5895
|
+
"application/json": components["schemas"]["BodhiErrorResponse"];
|
|
5885
5896
|
};
|
|
5886
5897
|
};
|
|
5887
5898
|
};
|
|
@@ -5917,7 +5928,7 @@ export interface operations {
|
|
|
5917
5928
|
[name: string]: unknown;
|
|
5918
5929
|
};
|
|
5919
5930
|
content: {
|
|
5920
|
-
"application/json": components["schemas"]["
|
|
5931
|
+
"application/json": components["schemas"]["BodhiErrorResponse"];
|
|
5921
5932
|
};
|
|
5922
5933
|
};
|
|
5923
5934
|
/** @description Not authenticated */
|
|
@@ -5926,7 +5937,7 @@ export interface operations {
|
|
|
5926
5937
|
[name: string]: unknown;
|
|
5927
5938
|
};
|
|
5928
5939
|
content: {
|
|
5929
|
-
"application/json": components["schemas"]["
|
|
5940
|
+
"application/json": components["schemas"]["BodhiErrorResponse"];
|
|
5930
5941
|
};
|
|
5931
5942
|
};
|
|
5932
5943
|
/** @description Insufficient permissions */
|
|
@@ -5935,7 +5946,7 @@ export interface operations {
|
|
|
5935
5946
|
[name: string]: unknown;
|
|
5936
5947
|
};
|
|
5937
5948
|
content: {
|
|
5938
|
-
"application/json": components["schemas"]["
|
|
5949
|
+
"application/json": components["schemas"]["BodhiErrorResponse"];
|
|
5939
5950
|
};
|
|
5940
5951
|
};
|
|
5941
5952
|
/** @description API model not found */
|
|
@@ -5944,7 +5955,7 @@ export interface operations {
|
|
|
5944
5955
|
[name: string]: unknown;
|
|
5945
5956
|
};
|
|
5946
5957
|
content: {
|
|
5947
|
-
"application/json": components["schemas"]["
|
|
5958
|
+
"application/json": components["schemas"]["BodhiErrorResponse"];
|
|
5948
5959
|
};
|
|
5949
5960
|
};
|
|
5950
5961
|
/** @description Internal server error */
|
|
@@ -5953,7 +5964,7 @@ export interface operations {
|
|
|
5953
5964
|
[name: string]: unknown;
|
|
5954
5965
|
};
|
|
5955
5966
|
content: {
|
|
5956
|
-
"application/json": components["schemas"]["
|
|
5967
|
+
"application/json": components["schemas"]["BodhiErrorResponse"];
|
|
5957
5968
|
};
|
|
5958
5969
|
};
|
|
5959
5970
|
};
|
|
@@ -5983,7 +5994,7 @@ export interface operations {
|
|
|
5983
5994
|
[name: string]: unknown;
|
|
5984
5995
|
};
|
|
5985
5996
|
content: {
|
|
5986
|
-
"application/json": components["schemas"]["
|
|
5997
|
+
"application/json": components["schemas"]["BodhiErrorResponse"];
|
|
5987
5998
|
};
|
|
5988
5999
|
};
|
|
5989
6000
|
/** @description Not authenticated */
|
|
@@ -5992,7 +6003,7 @@ export interface operations {
|
|
|
5992
6003
|
[name: string]: unknown;
|
|
5993
6004
|
};
|
|
5994
6005
|
content: {
|
|
5995
|
-
"application/json": components["schemas"]["
|
|
6006
|
+
"application/json": components["schemas"]["BodhiErrorResponse"];
|
|
5996
6007
|
};
|
|
5997
6008
|
};
|
|
5998
6009
|
/** @description Insufficient permissions */
|
|
@@ -6001,7 +6012,7 @@ export interface operations {
|
|
|
6001
6012
|
[name: string]: unknown;
|
|
6002
6013
|
};
|
|
6003
6014
|
content: {
|
|
6004
|
-
"application/json": components["schemas"]["
|
|
6015
|
+
"application/json": components["schemas"]["BodhiErrorResponse"];
|
|
6005
6016
|
};
|
|
6006
6017
|
};
|
|
6007
6018
|
/** @description API model not found */
|
|
@@ -6010,7 +6021,7 @@ export interface operations {
|
|
|
6010
6021
|
[name: string]: unknown;
|
|
6011
6022
|
};
|
|
6012
6023
|
content: {
|
|
6013
|
-
"application/json": components["schemas"]["
|
|
6024
|
+
"application/json": components["schemas"]["BodhiErrorResponse"];
|
|
6014
6025
|
};
|
|
6015
6026
|
};
|
|
6016
6027
|
/** @description Internal server error */
|
|
@@ -6019,7 +6030,7 @@ export interface operations {
|
|
|
6019
6030
|
[name: string]: unknown;
|
|
6020
6031
|
};
|
|
6021
6032
|
content: {
|
|
6022
|
-
"application/json": components["schemas"]["
|
|
6033
|
+
"application/json": components["schemas"]["BodhiErrorResponse"];
|
|
6023
6034
|
};
|
|
6024
6035
|
};
|
|
6025
6036
|
};
|
|
@@ -6069,7 +6080,7 @@ export interface operations {
|
|
|
6069
6080
|
[name: string]: unknown;
|
|
6070
6081
|
};
|
|
6071
6082
|
content: {
|
|
6072
|
-
"application/json": components["schemas"]["
|
|
6083
|
+
"application/json": components["schemas"]["BodhiErrorResponse"];
|
|
6073
6084
|
};
|
|
6074
6085
|
};
|
|
6075
6086
|
/** @description Not authenticated */
|
|
@@ -6078,7 +6089,7 @@ export interface operations {
|
|
|
6078
6089
|
[name: string]: unknown;
|
|
6079
6090
|
};
|
|
6080
6091
|
content: {
|
|
6081
|
-
"application/json": components["schemas"]["
|
|
6092
|
+
"application/json": components["schemas"]["BodhiErrorResponse"];
|
|
6082
6093
|
};
|
|
6083
6094
|
};
|
|
6084
6095
|
/** @description Insufficient permissions */
|
|
@@ -6087,7 +6098,7 @@ export interface operations {
|
|
|
6087
6098
|
[name: string]: unknown;
|
|
6088
6099
|
};
|
|
6089
6100
|
content: {
|
|
6090
|
-
"application/json": components["schemas"]["
|
|
6101
|
+
"application/json": components["schemas"]["BodhiErrorResponse"];
|
|
6091
6102
|
};
|
|
6092
6103
|
};
|
|
6093
6104
|
/** @description API model not found */
|
|
@@ -6103,7 +6114,7 @@ export interface operations {
|
|
|
6103
6114
|
[name: string]: unknown;
|
|
6104
6115
|
};
|
|
6105
6116
|
content: {
|
|
6106
|
-
"application/json": components["schemas"]["
|
|
6117
|
+
"application/json": components["schemas"]["BodhiErrorResponse"];
|
|
6107
6118
|
};
|
|
6108
6119
|
};
|
|
6109
6120
|
};
|
|
@@ -6154,7 +6165,7 @@ export interface operations {
|
|
|
6154
6165
|
[name: string]: unknown;
|
|
6155
6166
|
};
|
|
6156
6167
|
content: {
|
|
6157
|
-
"application/json": components["schemas"]["
|
|
6168
|
+
"application/json": components["schemas"]["BodhiErrorResponse"];
|
|
6158
6169
|
};
|
|
6159
6170
|
};
|
|
6160
6171
|
/** @description Not authenticated */
|
|
@@ -6163,7 +6174,7 @@ export interface operations {
|
|
|
6163
6174
|
[name: string]: unknown;
|
|
6164
6175
|
};
|
|
6165
6176
|
content: {
|
|
6166
|
-
"application/json": components["schemas"]["
|
|
6177
|
+
"application/json": components["schemas"]["BodhiErrorResponse"];
|
|
6167
6178
|
};
|
|
6168
6179
|
};
|
|
6169
6180
|
/** @description Insufficient permissions */
|
|
@@ -6172,7 +6183,7 @@ export interface operations {
|
|
|
6172
6183
|
[name: string]: unknown;
|
|
6173
6184
|
};
|
|
6174
6185
|
content: {
|
|
6175
|
-
"application/json": components["schemas"]["
|
|
6186
|
+
"application/json": components["schemas"]["BodhiErrorResponse"];
|
|
6176
6187
|
};
|
|
6177
6188
|
};
|
|
6178
6189
|
/** @description Internal server error */
|
|
@@ -6181,7 +6192,7 @@ export interface operations {
|
|
|
6181
6192
|
[name: string]: unknown;
|
|
6182
6193
|
};
|
|
6183
6194
|
content: {
|
|
6184
|
-
"application/json": components["schemas"]["
|
|
6195
|
+
"application/json": components["schemas"]["BodhiErrorResponse"];
|
|
6185
6196
|
};
|
|
6186
6197
|
};
|
|
6187
6198
|
};
|
|
@@ -6235,7 +6246,7 @@ export interface operations {
|
|
|
6235
6246
|
[name: string]: unknown;
|
|
6236
6247
|
};
|
|
6237
6248
|
content: {
|
|
6238
|
-
"application/json": components["schemas"]["
|
|
6249
|
+
"application/json": components["schemas"]["BodhiErrorResponse"];
|
|
6239
6250
|
};
|
|
6240
6251
|
};
|
|
6241
6252
|
/** @description Not authenticated */
|
|
@@ -6244,7 +6255,7 @@ export interface operations {
|
|
|
6244
6255
|
[name: string]: unknown;
|
|
6245
6256
|
};
|
|
6246
6257
|
content: {
|
|
6247
|
-
"application/json": components["schemas"]["
|
|
6258
|
+
"application/json": components["schemas"]["BodhiErrorResponse"];
|
|
6248
6259
|
};
|
|
6249
6260
|
};
|
|
6250
6261
|
/** @description Insufficient permissions */
|
|
@@ -6253,7 +6264,7 @@ export interface operations {
|
|
|
6253
6264
|
[name: string]: unknown;
|
|
6254
6265
|
};
|
|
6255
6266
|
content: {
|
|
6256
|
-
"application/json": components["schemas"]["
|
|
6267
|
+
"application/json": components["schemas"]["BodhiErrorResponse"];
|
|
6257
6268
|
};
|
|
6258
6269
|
};
|
|
6259
6270
|
/** @description Internal server error */
|
|
@@ -6262,7 +6273,7 @@ export interface operations {
|
|
|
6262
6273
|
[name: string]: unknown;
|
|
6263
6274
|
};
|
|
6264
6275
|
content: {
|
|
6265
|
-
"application/json": components["schemas"]["
|
|
6276
|
+
"application/json": components["schemas"]["BodhiErrorResponse"];
|
|
6266
6277
|
};
|
|
6267
6278
|
};
|
|
6268
6279
|
};
|
|
@@ -6327,7 +6338,7 @@ export interface operations {
|
|
|
6327
6338
|
[name: string]: unknown;
|
|
6328
6339
|
};
|
|
6329
6340
|
content: {
|
|
6330
|
-
"application/json": components["schemas"]["
|
|
6341
|
+
"application/json": components["schemas"]["BodhiErrorResponse"];
|
|
6331
6342
|
};
|
|
6332
6343
|
};
|
|
6333
6344
|
/** @description Not authenticated */
|
|
@@ -6336,7 +6347,7 @@ export interface operations {
|
|
|
6336
6347
|
[name: string]: unknown;
|
|
6337
6348
|
};
|
|
6338
6349
|
content: {
|
|
6339
|
-
"application/json": components["schemas"]["
|
|
6350
|
+
"application/json": components["schemas"]["BodhiErrorResponse"];
|
|
6340
6351
|
};
|
|
6341
6352
|
};
|
|
6342
6353
|
/** @description Insufficient permissions */
|
|
@@ -6345,7 +6356,7 @@ export interface operations {
|
|
|
6345
6356
|
[name: string]: unknown;
|
|
6346
6357
|
};
|
|
6347
6358
|
content: {
|
|
6348
|
-
"application/json": components["schemas"]["
|
|
6359
|
+
"application/json": components["schemas"]["BodhiErrorResponse"];
|
|
6349
6360
|
};
|
|
6350
6361
|
};
|
|
6351
6362
|
/** @description Internal server error */
|
|
@@ -6354,7 +6365,7 @@ export interface operations {
|
|
|
6354
6365
|
[name: string]: unknown;
|
|
6355
6366
|
};
|
|
6356
6367
|
content: {
|
|
6357
|
-
"application/json": components["schemas"]["
|
|
6368
|
+
"application/json": components["schemas"]["BodhiErrorResponse"];
|
|
6358
6369
|
};
|
|
6359
6370
|
};
|
|
6360
6371
|
};
|
|
@@ -6398,7 +6409,7 @@ export interface operations {
|
|
|
6398
6409
|
[name: string]: unknown;
|
|
6399
6410
|
};
|
|
6400
6411
|
content: {
|
|
6401
|
-
"application/json": components["schemas"]["
|
|
6412
|
+
"application/json": components["schemas"]["BodhiErrorResponse"];
|
|
6402
6413
|
};
|
|
6403
6414
|
};
|
|
6404
6415
|
/** @description Not authenticated */
|
|
@@ -6407,7 +6418,7 @@ export interface operations {
|
|
|
6407
6418
|
[name: string]: unknown;
|
|
6408
6419
|
};
|
|
6409
6420
|
content: {
|
|
6410
|
-
"application/json": components["schemas"]["
|
|
6421
|
+
"application/json": components["schemas"]["BodhiErrorResponse"];
|
|
6411
6422
|
};
|
|
6412
6423
|
};
|
|
6413
6424
|
/** @description Insufficient permissions */
|
|
@@ -6416,7 +6427,7 @@ export interface operations {
|
|
|
6416
6427
|
[name: string]: unknown;
|
|
6417
6428
|
};
|
|
6418
6429
|
content: {
|
|
6419
|
-
"application/json": components["schemas"]["
|
|
6430
|
+
"application/json": components["schemas"]["BodhiErrorResponse"];
|
|
6420
6431
|
};
|
|
6421
6432
|
};
|
|
6422
6433
|
/** @description Download request not found */
|
|
@@ -6432,7 +6443,7 @@ export interface operations {
|
|
|
6432
6443
|
* "type": "not_found_error"
|
|
6433
6444
|
* }
|
|
6434
6445
|
* } */
|
|
6435
|
-
"application/json": components["schemas"]["
|
|
6446
|
+
"application/json": components["schemas"]["BodhiErrorResponse"];
|
|
6436
6447
|
};
|
|
6437
6448
|
};
|
|
6438
6449
|
/** @description Internal server error */
|
|
@@ -6441,7 +6452,7 @@ export interface operations {
|
|
|
6441
6452
|
[name: string]: unknown;
|
|
6442
6453
|
};
|
|
6443
6454
|
content: {
|
|
6444
|
-
"application/json": components["schemas"]["
|
|
6455
|
+
"application/json": components["schemas"]["BodhiErrorResponse"];
|
|
6445
6456
|
};
|
|
6446
6457
|
};
|
|
6447
6458
|
};
|
|
@@ -6487,7 +6498,7 @@ export interface operations {
|
|
|
6487
6498
|
[name: string]: unknown;
|
|
6488
6499
|
};
|
|
6489
6500
|
content: {
|
|
6490
|
-
"application/json": components["schemas"]["
|
|
6501
|
+
"application/json": components["schemas"]["BodhiErrorResponse"];
|
|
6491
6502
|
};
|
|
6492
6503
|
};
|
|
6493
6504
|
/** @description Not authenticated */
|
|
@@ -6496,7 +6507,7 @@ export interface operations {
|
|
|
6496
6507
|
[name: string]: unknown;
|
|
6497
6508
|
};
|
|
6498
6509
|
content: {
|
|
6499
|
-
"application/json": components["schemas"]["
|
|
6510
|
+
"application/json": components["schemas"]["BodhiErrorResponse"];
|
|
6500
6511
|
};
|
|
6501
6512
|
};
|
|
6502
6513
|
/** @description Insufficient permissions */
|
|
@@ -6505,7 +6516,7 @@ export interface operations {
|
|
|
6505
6516
|
[name: string]: unknown;
|
|
6506
6517
|
};
|
|
6507
6518
|
content: {
|
|
6508
|
-
"application/json": components["schemas"]["
|
|
6519
|
+
"application/json": components["schemas"]["BodhiErrorResponse"];
|
|
6509
6520
|
};
|
|
6510
6521
|
};
|
|
6511
6522
|
/** @description Model alias not found for specified repo/filename/snapshot */
|
|
@@ -6521,7 +6532,7 @@ export interface operations {
|
|
|
6521
6532
|
[name: string]: unknown;
|
|
6522
6533
|
};
|
|
6523
6534
|
content: {
|
|
6524
|
-
"application/json": components["schemas"]["
|
|
6535
|
+
"application/json": components["schemas"]["BodhiErrorResponse"];
|
|
6525
6536
|
};
|
|
6526
6537
|
};
|
|
6527
6538
|
};
|
|
@@ -6553,7 +6564,7 @@ export interface operations {
|
|
|
6553
6564
|
[name: string]: unknown;
|
|
6554
6565
|
};
|
|
6555
6566
|
content: {
|
|
6556
|
-
"application/json": components["schemas"]["
|
|
6567
|
+
"application/json": components["schemas"]["BodhiErrorResponse"];
|
|
6557
6568
|
};
|
|
6558
6569
|
};
|
|
6559
6570
|
/** @description Not authenticated */
|
|
@@ -6562,7 +6573,7 @@ export interface operations {
|
|
|
6562
6573
|
[name: string]: unknown;
|
|
6563
6574
|
};
|
|
6564
6575
|
content: {
|
|
6565
|
-
"application/json": components["schemas"]["
|
|
6576
|
+
"application/json": components["schemas"]["BodhiErrorResponse"];
|
|
6566
6577
|
};
|
|
6567
6578
|
};
|
|
6568
6579
|
/** @description Insufficient permissions */
|
|
@@ -6571,7 +6582,7 @@ export interface operations {
|
|
|
6571
6582
|
[name: string]: unknown;
|
|
6572
6583
|
};
|
|
6573
6584
|
content: {
|
|
6574
|
-
"application/json": components["schemas"]["
|
|
6585
|
+
"application/json": components["schemas"]["BodhiErrorResponse"];
|
|
6575
6586
|
};
|
|
6576
6587
|
};
|
|
6577
6588
|
/** @description Alias not found */
|
|
@@ -6587,7 +6598,7 @@ export interface operations {
|
|
|
6587
6598
|
* "type": "not_found_error"
|
|
6588
6599
|
* }
|
|
6589
6600
|
* } */
|
|
6590
|
-
"application/json": components["schemas"]["
|
|
6601
|
+
"application/json": components["schemas"]["BodhiErrorResponse"];
|
|
6591
6602
|
};
|
|
6592
6603
|
};
|
|
6593
6604
|
/** @description Internal server error */
|
|
@@ -6596,7 +6607,7 @@ export interface operations {
|
|
|
6596
6607
|
[name: string]: unknown;
|
|
6597
6608
|
};
|
|
6598
6609
|
content: {
|
|
6599
|
-
"application/json": components["schemas"]["
|
|
6610
|
+
"application/json": components["schemas"]["BodhiErrorResponse"];
|
|
6600
6611
|
};
|
|
6601
6612
|
};
|
|
6602
6613
|
};
|
|
@@ -6628,7 +6639,7 @@ export interface operations {
|
|
|
6628
6639
|
[name: string]: unknown;
|
|
6629
6640
|
};
|
|
6630
6641
|
content: {
|
|
6631
|
-
"application/json": components["schemas"]["
|
|
6642
|
+
"application/json": components["schemas"]["BodhiErrorResponse"];
|
|
6632
6643
|
};
|
|
6633
6644
|
};
|
|
6634
6645
|
/** @description Not authenticated */
|
|
@@ -6637,7 +6648,7 @@ export interface operations {
|
|
|
6637
6648
|
[name: string]: unknown;
|
|
6638
6649
|
};
|
|
6639
6650
|
content: {
|
|
6640
|
-
"application/json": components["schemas"]["
|
|
6651
|
+
"application/json": components["schemas"]["BodhiErrorResponse"];
|
|
6641
6652
|
};
|
|
6642
6653
|
};
|
|
6643
6654
|
/** @description Insufficient permissions */
|
|
@@ -6646,7 +6657,7 @@ export interface operations {
|
|
|
6646
6657
|
[name: string]: unknown;
|
|
6647
6658
|
};
|
|
6648
6659
|
content: {
|
|
6649
|
-
"application/json": components["schemas"]["
|
|
6660
|
+
"application/json": components["schemas"]["BodhiErrorResponse"];
|
|
6650
6661
|
};
|
|
6651
6662
|
};
|
|
6652
6663
|
/** @description Internal server error */
|
|
@@ -6655,7 +6666,7 @@ export interface operations {
|
|
|
6655
6666
|
[name: string]: unknown;
|
|
6656
6667
|
};
|
|
6657
6668
|
content: {
|
|
6658
|
-
"application/json": components["schemas"]["
|
|
6669
|
+
"application/json": components["schemas"]["BodhiErrorResponse"];
|
|
6659
6670
|
};
|
|
6660
6671
|
};
|
|
6661
6672
|
};
|
|
@@ -6713,7 +6724,7 @@ export interface operations {
|
|
|
6713
6724
|
[name: string]: unknown;
|
|
6714
6725
|
};
|
|
6715
6726
|
content: {
|
|
6716
|
-
"application/json": components["schemas"]["
|
|
6727
|
+
"application/json": components["schemas"]["BodhiErrorResponse"];
|
|
6717
6728
|
};
|
|
6718
6729
|
};
|
|
6719
6730
|
/** @description Not authenticated */
|
|
@@ -6722,7 +6733,7 @@ export interface operations {
|
|
|
6722
6733
|
[name: string]: unknown;
|
|
6723
6734
|
};
|
|
6724
6735
|
content: {
|
|
6725
|
-
"application/json": components["schemas"]["
|
|
6736
|
+
"application/json": components["schemas"]["BodhiErrorResponse"];
|
|
6726
6737
|
};
|
|
6727
6738
|
};
|
|
6728
6739
|
/** @description Insufficient permissions */
|
|
@@ -6731,7 +6742,7 @@ export interface operations {
|
|
|
6731
6742
|
[name: string]: unknown;
|
|
6732
6743
|
};
|
|
6733
6744
|
content: {
|
|
6734
|
-
"application/json": components["schemas"]["
|
|
6745
|
+
"application/json": components["schemas"]["BodhiErrorResponse"];
|
|
6735
6746
|
};
|
|
6736
6747
|
};
|
|
6737
6748
|
/** @description Internal server error */
|
|
@@ -6740,7 +6751,7 @@ export interface operations {
|
|
|
6740
6751
|
[name: string]: unknown;
|
|
6741
6752
|
};
|
|
6742
6753
|
content: {
|
|
6743
|
-
"application/json": components["schemas"]["
|
|
6754
|
+
"application/json": components["schemas"]["BodhiErrorResponse"];
|
|
6744
6755
|
};
|
|
6745
6756
|
};
|
|
6746
6757
|
};
|
|
@@ -6802,7 +6813,7 @@ export interface operations {
|
|
|
6802
6813
|
[name: string]: unknown;
|
|
6803
6814
|
};
|
|
6804
6815
|
content: {
|
|
6805
|
-
"application/json": components["schemas"]["
|
|
6816
|
+
"application/json": components["schemas"]["BodhiErrorResponse"];
|
|
6806
6817
|
};
|
|
6807
6818
|
};
|
|
6808
6819
|
/** @description Not authenticated */
|
|
@@ -6811,7 +6822,7 @@ export interface operations {
|
|
|
6811
6822
|
[name: string]: unknown;
|
|
6812
6823
|
};
|
|
6813
6824
|
content: {
|
|
6814
|
-
"application/json": components["schemas"]["
|
|
6825
|
+
"application/json": components["schemas"]["BodhiErrorResponse"];
|
|
6815
6826
|
};
|
|
6816
6827
|
};
|
|
6817
6828
|
/** @description Insufficient permissions */
|
|
@@ -6820,7 +6831,7 @@ export interface operations {
|
|
|
6820
6831
|
[name: string]: unknown;
|
|
6821
6832
|
};
|
|
6822
6833
|
content: {
|
|
6823
|
-
"application/json": components["schemas"]["
|
|
6834
|
+
"application/json": components["schemas"]["BodhiErrorResponse"];
|
|
6824
6835
|
};
|
|
6825
6836
|
};
|
|
6826
6837
|
/** @description Setting not found */
|
|
@@ -6836,7 +6847,7 @@ export interface operations {
|
|
|
6836
6847
|
* "type": "not_found_error"
|
|
6837
6848
|
* }
|
|
6838
6849
|
* } */
|
|
6839
|
-
"application/json": components["schemas"]["
|
|
6850
|
+
"application/json": components["schemas"]["BodhiErrorResponse"];
|
|
6840
6851
|
};
|
|
6841
6852
|
};
|
|
6842
6853
|
/** @description Internal server error */
|
|
@@ -6845,7 +6856,7 @@ export interface operations {
|
|
|
6845
6856
|
[name: string]: unknown;
|
|
6846
6857
|
};
|
|
6847
6858
|
content: {
|
|
6848
|
-
"application/json": components["schemas"]["
|
|
6859
|
+
"application/json": components["schemas"]["BodhiErrorResponse"];
|
|
6849
6860
|
};
|
|
6850
6861
|
};
|
|
6851
6862
|
};
|
|
@@ -6896,7 +6907,7 @@ export interface operations {
|
|
|
6896
6907
|
[name: string]: unknown;
|
|
6897
6908
|
};
|
|
6898
6909
|
content: {
|
|
6899
|
-
"application/json": components["schemas"]["
|
|
6910
|
+
"application/json": components["schemas"]["BodhiErrorResponse"];
|
|
6900
6911
|
};
|
|
6901
6912
|
};
|
|
6902
6913
|
/** @description Not authenticated */
|
|
@@ -6905,7 +6916,7 @@ export interface operations {
|
|
|
6905
6916
|
[name: string]: unknown;
|
|
6906
6917
|
};
|
|
6907
6918
|
content: {
|
|
6908
|
-
"application/json": components["schemas"]["
|
|
6919
|
+
"application/json": components["schemas"]["BodhiErrorResponse"];
|
|
6909
6920
|
};
|
|
6910
6921
|
};
|
|
6911
6922
|
/** @description Insufficient permissions */
|
|
@@ -6914,7 +6925,7 @@ export interface operations {
|
|
|
6914
6925
|
[name: string]: unknown;
|
|
6915
6926
|
};
|
|
6916
6927
|
content: {
|
|
6917
|
-
"application/json": components["schemas"]["
|
|
6928
|
+
"application/json": components["schemas"]["BodhiErrorResponse"];
|
|
6918
6929
|
};
|
|
6919
6930
|
};
|
|
6920
6931
|
/** @description Setting not found */
|
|
@@ -6930,7 +6941,7 @@ export interface operations {
|
|
|
6930
6941
|
* "type": "not_found_error"
|
|
6931
6942
|
* }
|
|
6932
6943
|
* } */
|
|
6933
|
-
"application/json": components["schemas"]["
|
|
6944
|
+
"application/json": components["schemas"]["BodhiErrorResponse"];
|
|
6934
6945
|
};
|
|
6935
6946
|
};
|
|
6936
6947
|
/** @description Internal server error */
|
|
@@ -6939,7 +6950,7 @@ export interface operations {
|
|
|
6939
6950
|
[name: string]: unknown;
|
|
6940
6951
|
};
|
|
6941
6952
|
content: {
|
|
6942
|
-
"application/json": components["schemas"]["
|
|
6953
|
+
"application/json": components["schemas"]["BodhiErrorResponse"];
|
|
6943
6954
|
};
|
|
6944
6955
|
};
|
|
6945
6956
|
};
|
|
@@ -6980,7 +6991,7 @@ export interface operations {
|
|
|
6980
6991
|
[name: string]: unknown;
|
|
6981
6992
|
};
|
|
6982
6993
|
content: {
|
|
6983
|
-
"application/json": components["schemas"]["
|
|
6994
|
+
"application/json": components["schemas"]["BodhiErrorResponse"];
|
|
6984
6995
|
};
|
|
6985
6996
|
};
|
|
6986
6997
|
/** @description Internal server error */
|
|
@@ -6989,7 +7000,7 @@ export interface operations {
|
|
|
6989
7000
|
[name: string]: unknown;
|
|
6990
7001
|
};
|
|
6991
7002
|
content: {
|
|
6992
|
-
"application/json": components["schemas"]["
|
|
7003
|
+
"application/json": components["schemas"]["BodhiErrorResponse"];
|
|
6993
7004
|
};
|
|
6994
7005
|
};
|
|
6995
7006
|
};
|
|
@@ -7018,7 +7029,7 @@ export interface operations {
|
|
|
7018
7029
|
[name: string]: unknown;
|
|
7019
7030
|
};
|
|
7020
7031
|
content: {
|
|
7021
|
-
"application/json": components["schemas"]["
|
|
7032
|
+
"application/json": components["schemas"]["BodhiErrorResponse"];
|
|
7022
7033
|
};
|
|
7023
7034
|
};
|
|
7024
7035
|
/** @description Not authenticated */
|
|
@@ -7027,7 +7038,7 @@ export interface operations {
|
|
|
7027
7038
|
[name: string]: unknown;
|
|
7028
7039
|
};
|
|
7029
7040
|
content: {
|
|
7030
|
-
"application/json": components["schemas"]["
|
|
7041
|
+
"application/json": components["schemas"]["BodhiErrorResponse"];
|
|
7031
7042
|
};
|
|
7032
7043
|
};
|
|
7033
7044
|
/** @description Insufficient permissions */
|
|
@@ -7036,7 +7047,7 @@ export interface operations {
|
|
|
7036
7047
|
[name: string]: unknown;
|
|
7037
7048
|
};
|
|
7038
7049
|
content: {
|
|
7039
|
-
"application/json": components["schemas"]["
|
|
7050
|
+
"application/json": components["schemas"]["BodhiErrorResponse"];
|
|
7040
7051
|
};
|
|
7041
7052
|
};
|
|
7042
7053
|
/** @description Internal server error */
|
|
@@ -7045,7 +7056,7 @@ export interface operations {
|
|
|
7045
7056
|
[name: string]: unknown;
|
|
7046
7057
|
};
|
|
7047
7058
|
content: {
|
|
7048
|
-
"application/json": components["schemas"]["
|
|
7059
|
+
"application/json": components["schemas"]["BodhiErrorResponse"];
|
|
7049
7060
|
};
|
|
7050
7061
|
};
|
|
7051
7062
|
};
|
|
@@ -7079,7 +7090,7 @@ export interface operations {
|
|
|
7079
7090
|
[name: string]: unknown;
|
|
7080
7091
|
};
|
|
7081
7092
|
content: {
|
|
7082
|
-
"application/json": components["schemas"]["
|
|
7093
|
+
"application/json": components["schemas"]["BodhiErrorResponse"];
|
|
7083
7094
|
};
|
|
7084
7095
|
};
|
|
7085
7096
|
/** @description Not authenticated */
|
|
@@ -7088,7 +7099,7 @@ export interface operations {
|
|
|
7088
7099
|
[name: string]: unknown;
|
|
7089
7100
|
};
|
|
7090
7101
|
content: {
|
|
7091
|
-
"application/json": components["schemas"]["
|
|
7102
|
+
"application/json": components["schemas"]["BodhiErrorResponse"];
|
|
7092
7103
|
};
|
|
7093
7104
|
};
|
|
7094
7105
|
/** @description Insufficient permissions */
|
|
@@ -7097,7 +7108,7 @@ export interface operations {
|
|
|
7097
7108
|
[name: string]: unknown;
|
|
7098
7109
|
};
|
|
7099
7110
|
content: {
|
|
7100
|
-
"application/json": components["schemas"]["
|
|
7111
|
+
"application/json": components["schemas"]["BodhiErrorResponse"];
|
|
7101
7112
|
};
|
|
7102
7113
|
};
|
|
7103
7114
|
/** @description Internal server error */
|
|
@@ -7106,7 +7117,7 @@ export interface operations {
|
|
|
7106
7117
|
[name: string]: unknown;
|
|
7107
7118
|
};
|
|
7108
7119
|
content: {
|
|
7109
|
-
"application/json": components["schemas"]["
|
|
7120
|
+
"application/json": components["schemas"]["BodhiErrorResponse"];
|
|
7110
7121
|
};
|
|
7111
7122
|
};
|
|
7112
7123
|
};
|
|
@@ -7136,7 +7147,7 @@ export interface operations {
|
|
|
7136
7147
|
[name: string]: unknown;
|
|
7137
7148
|
};
|
|
7138
7149
|
content: {
|
|
7139
|
-
"application/json": components["schemas"]["
|
|
7150
|
+
"application/json": components["schemas"]["BodhiErrorResponse"];
|
|
7140
7151
|
};
|
|
7141
7152
|
};
|
|
7142
7153
|
/** @description Not authenticated */
|
|
@@ -7145,7 +7156,7 @@ export interface operations {
|
|
|
7145
7156
|
[name: string]: unknown;
|
|
7146
7157
|
};
|
|
7147
7158
|
content: {
|
|
7148
|
-
"application/json": components["schemas"]["
|
|
7159
|
+
"application/json": components["schemas"]["BodhiErrorResponse"];
|
|
7149
7160
|
};
|
|
7150
7161
|
};
|
|
7151
7162
|
/** @description Insufficient permissions */
|
|
@@ -7154,7 +7165,7 @@ export interface operations {
|
|
|
7154
7165
|
[name: string]: unknown;
|
|
7155
7166
|
};
|
|
7156
7167
|
content: {
|
|
7157
|
-
"application/json": components["schemas"]["
|
|
7168
|
+
"application/json": components["schemas"]["BodhiErrorResponse"];
|
|
7158
7169
|
};
|
|
7159
7170
|
};
|
|
7160
7171
|
/** @description Internal server error */
|
|
@@ -7163,7 +7174,7 @@ export interface operations {
|
|
|
7163
7174
|
[name: string]: unknown;
|
|
7164
7175
|
};
|
|
7165
7176
|
content: {
|
|
7166
|
-
"application/json": components["schemas"]["
|
|
7177
|
+
"application/json": components["schemas"]["BodhiErrorResponse"];
|
|
7167
7178
|
};
|
|
7168
7179
|
};
|
|
7169
7180
|
};
|
|
@@ -7226,7 +7237,7 @@ export interface operations {
|
|
|
7226
7237
|
[name: string]: unknown;
|
|
7227
7238
|
};
|
|
7228
7239
|
content: {
|
|
7229
|
-
"application/json": components["schemas"]["
|
|
7240
|
+
"application/json": components["schemas"]["BodhiErrorResponse"];
|
|
7230
7241
|
};
|
|
7231
7242
|
};
|
|
7232
7243
|
/** @description Not authenticated */
|
|
@@ -7235,7 +7246,7 @@ export interface operations {
|
|
|
7235
7246
|
[name: string]: unknown;
|
|
7236
7247
|
};
|
|
7237
7248
|
content: {
|
|
7238
|
-
"application/json": components["schemas"]["
|
|
7249
|
+
"application/json": components["schemas"]["BodhiErrorResponse"];
|
|
7239
7250
|
};
|
|
7240
7251
|
};
|
|
7241
7252
|
/** @description Insufficient permissions */
|
|
@@ -7244,7 +7255,7 @@ export interface operations {
|
|
|
7244
7255
|
[name: string]: unknown;
|
|
7245
7256
|
};
|
|
7246
7257
|
content: {
|
|
7247
|
-
"application/json": components["schemas"]["
|
|
7258
|
+
"application/json": components["schemas"]["BodhiErrorResponse"];
|
|
7248
7259
|
};
|
|
7249
7260
|
};
|
|
7250
7261
|
/** @description Internal server error */
|
|
@@ -7253,7 +7264,7 @@ export interface operations {
|
|
|
7253
7264
|
[name: string]: unknown;
|
|
7254
7265
|
};
|
|
7255
7266
|
content: {
|
|
7256
|
-
"application/json": components["schemas"]["
|
|
7267
|
+
"application/json": components["schemas"]["BodhiErrorResponse"];
|
|
7257
7268
|
};
|
|
7258
7269
|
};
|
|
7259
7270
|
};
|
|
@@ -7296,7 +7307,7 @@ export interface operations {
|
|
|
7296
7307
|
[name: string]: unknown;
|
|
7297
7308
|
};
|
|
7298
7309
|
content: {
|
|
7299
|
-
"application/json": components["schemas"]["
|
|
7310
|
+
"application/json": components["schemas"]["BodhiErrorResponse"];
|
|
7300
7311
|
};
|
|
7301
7312
|
};
|
|
7302
7313
|
/** @description Not authenticated */
|
|
@@ -7305,7 +7316,7 @@ export interface operations {
|
|
|
7305
7316
|
[name: string]: unknown;
|
|
7306
7317
|
};
|
|
7307
7318
|
content: {
|
|
7308
|
-
"application/json": components["schemas"]["
|
|
7319
|
+
"application/json": components["schemas"]["BodhiErrorResponse"];
|
|
7309
7320
|
};
|
|
7310
7321
|
};
|
|
7311
7322
|
/** @description Insufficient permissions */
|
|
@@ -7314,7 +7325,7 @@ export interface operations {
|
|
|
7314
7325
|
[name: string]: unknown;
|
|
7315
7326
|
};
|
|
7316
7327
|
content: {
|
|
7317
|
-
"application/json": components["schemas"]["
|
|
7328
|
+
"application/json": components["schemas"]["BodhiErrorResponse"];
|
|
7318
7329
|
};
|
|
7319
7330
|
};
|
|
7320
7331
|
/** @description Internal server error */
|
|
@@ -7323,7 +7334,7 @@ export interface operations {
|
|
|
7323
7334
|
[name: string]: unknown;
|
|
7324
7335
|
};
|
|
7325
7336
|
content: {
|
|
7326
|
-
"application/json": components["schemas"]["
|
|
7337
|
+
"application/json": components["schemas"]["BodhiErrorResponse"];
|
|
7327
7338
|
};
|
|
7328
7339
|
};
|
|
7329
7340
|
};
|
|
@@ -7376,7 +7387,7 @@ export interface operations {
|
|
|
7376
7387
|
[name: string]: unknown;
|
|
7377
7388
|
};
|
|
7378
7389
|
content: {
|
|
7379
|
-
"application/json": components["schemas"]["
|
|
7390
|
+
"application/json": components["schemas"]["BodhiErrorResponse"];
|
|
7380
7391
|
};
|
|
7381
7392
|
};
|
|
7382
7393
|
/** @description Not authenticated */
|
|
@@ -7385,7 +7396,7 @@ export interface operations {
|
|
|
7385
7396
|
[name: string]: unknown;
|
|
7386
7397
|
};
|
|
7387
7398
|
content: {
|
|
7388
|
-
"application/json": components["schemas"]["
|
|
7399
|
+
"application/json": components["schemas"]["BodhiErrorResponse"];
|
|
7389
7400
|
};
|
|
7390
7401
|
};
|
|
7391
7402
|
/** @description Insufficient permissions */
|
|
@@ -7394,7 +7405,7 @@ export interface operations {
|
|
|
7394
7405
|
[name: string]: unknown;
|
|
7395
7406
|
};
|
|
7396
7407
|
content: {
|
|
7397
|
-
"application/json": components["schemas"]["
|
|
7408
|
+
"application/json": components["schemas"]["BodhiErrorResponse"];
|
|
7398
7409
|
};
|
|
7399
7410
|
};
|
|
7400
7411
|
/** @description Token not found */
|
|
@@ -7410,7 +7421,7 @@ export interface operations {
|
|
|
7410
7421
|
* "type": "not_found_error"
|
|
7411
7422
|
* }
|
|
7412
7423
|
* } */
|
|
7413
|
-
"application/json": components["schemas"]["
|
|
7424
|
+
"application/json": components["schemas"]["BodhiErrorResponse"];
|
|
7414
7425
|
};
|
|
7415
7426
|
};
|
|
7416
7427
|
/** @description Internal server error */
|
|
@@ -7419,7 +7430,7 @@ export interface operations {
|
|
|
7419
7430
|
[name: string]: unknown;
|
|
7420
7431
|
};
|
|
7421
7432
|
content: {
|
|
7422
|
-
"application/json": components["schemas"]["
|
|
7433
|
+
"application/json": components["schemas"]["BodhiErrorResponse"];
|
|
7423
7434
|
};
|
|
7424
7435
|
};
|
|
7425
7436
|
};
|
|
@@ -7448,7 +7459,7 @@ export interface operations {
|
|
|
7448
7459
|
[name: string]: unknown;
|
|
7449
7460
|
};
|
|
7450
7461
|
content: {
|
|
7451
|
-
"application/json": components["schemas"]["
|
|
7462
|
+
"application/json": components["schemas"]["BodhiErrorResponse"];
|
|
7452
7463
|
};
|
|
7453
7464
|
};
|
|
7454
7465
|
/** @description Not authenticated */
|
|
@@ -7457,7 +7468,7 @@ export interface operations {
|
|
|
7457
7468
|
[name: string]: unknown;
|
|
7458
7469
|
};
|
|
7459
7470
|
content: {
|
|
7460
|
-
"application/json": components["schemas"]["
|
|
7471
|
+
"application/json": components["schemas"]["BodhiErrorResponse"];
|
|
7461
7472
|
};
|
|
7462
7473
|
};
|
|
7463
7474
|
/** @description Insufficient permissions */
|
|
@@ -7466,7 +7477,7 @@ export interface operations {
|
|
|
7466
7477
|
[name: string]: unknown;
|
|
7467
7478
|
};
|
|
7468
7479
|
content: {
|
|
7469
|
-
"application/json": components["schemas"]["
|
|
7480
|
+
"application/json": components["schemas"]["BodhiErrorResponse"];
|
|
7470
7481
|
};
|
|
7471
7482
|
};
|
|
7472
7483
|
/** @description Internal server error */
|
|
@@ -7475,7 +7486,7 @@ export interface operations {
|
|
|
7475
7486
|
[name: string]: unknown;
|
|
7476
7487
|
};
|
|
7477
7488
|
content: {
|
|
7478
|
-
"application/json": components["schemas"]["
|
|
7489
|
+
"application/json": components["schemas"]["BodhiErrorResponse"];
|
|
7479
7490
|
};
|
|
7480
7491
|
};
|
|
7481
7492
|
};
|
|
@@ -7502,7 +7513,7 @@ export interface operations {
|
|
|
7502
7513
|
[name: string]: unknown;
|
|
7503
7514
|
};
|
|
7504
7515
|
content: {
|
|
7505
|
-
"application/json": components["schemas"]["
|
|
7516
|
+
"application/json": components["schemas"]["BodhiErrorResponse"];
|
|
7506
7517
|
};
|
|
7507
7518
|
};
|
|
7508
7519
|
/** @description Not authenticated */
|
|
@@ -7511,7 +7522,7 @@ export interface operations {
|
|
|
7511
7522
|
[name: string]: unknown;
|
|
7512
7523
|
};
|
|
7513
7524
|
content: {
|
|
7514
|
-
"application/json": components["schemas"]["
|
|
7525
|
+
"application/json": components["schemas"]["BodhiErrorResponse"];
|
|
7515
7526
|
};
|
|
7516
7527
|
};
|
|
7517
7528
|
/** @description Insufficient permissions */
|
|
@@ -7520,7 +7531,7 @@ export interface operations {
|
|
|
7520
7531
|
[name: string]: unknown;
|
|
7521
7532
|
};
|
|
7522
7533
|
content: {
|
|
7523
|
-
"application/json": components["schemas"]["
|
|
7534
|
+
"application/json": components["schemas"]["BodhiErrorResponse"];
|
|
7524
7535
|
};
|
|
7525
7536
|
};
|
|
7526
7537
|
/** @description Pending request already exists */
|
|
@@ -7529,7 +7540,7 @@ export interface operations {
|
|
|
7529
7540
|
[name: string]: unknown;
|
|
7530
7541
|
};
|
|
7531
7542
|
content: {
|
|
7532
|
-
"application/json": components["schemas"]["
|
|
7543
|
+
"application/json": components["schemas"]["BodhiErrorResponse"];
|
|
7533
7544
|
};
|
|
7534
7545
|
};
|
|
7535
7546
|
/** @description User already has role */
|
|
@@ -7538,7 +7549,7 @@ export interface operations {
|
|
|
7538
7549
|
[name: string]: unknown;
|
|
7539
7550
|
};
|
|
7540
7551
|
content: {
|
|
7541
|
-
"application/json": components["schemas"]["
|
|
7552
|
+
"application/json": components["schemas"]["BodhiErrorResponse"];
|
|
7542
7553
|
};
|
|
7543
7554
|
};
|
|
7544
7555
|
/** @description Internal server error */
|
|
@@ -7547,7 +7558,7 @@ export interface operations {
|
|
|
7547
7558
|
[name: string]: unknown;
|
|
7548
7559
|
};
|
|
7549
7560
|
content: {
|
|
7550
|
-
"application/json": components["schemas"]["
|
|
7561
|
+
"application/json": components["schemas"]["BodhiErrorResponse"];
|
|
7551
7562
|
};
|
|
7552
7563
|
};
|
|
7553
7564
|
};
|
|
@@ -7576,7 +7587,7 @@ export interface operations {
|
|
|
7576
7587
|
[name: string]: unknown;
|
|
7577
7588
|
};
|
|
7578
7589
|
content: {
|
|
7579
|
-
"application/json": components["schemas"]["
|
|
7590
|
+
"application/json": components["schemas"]["BodhiErrorResponse"];
|
|
7580
7591
|
};
|
|
7581
7592
|
};
|
|
7582
7593
|
/** @description Not authenticated */
|
|
@@ -7585,7 +7596,7 @@ export interface operations {
|
|
|
7585
7596
|
[name: string]: unknown;
|
|
7586
7597
|
};
|
|
7587
7598
|
content: {
|
|
7588
|
-
"application/json": components["schemas"]["
|
|
7599
|
+
"application/json": components["schemas"]["BodhiErrorResponse"];
|
|
7589
7600
|
};
|
|
7590
7601
|
};
|
|
7591
7602
|
/** @description Insufficient permissions */
|
|
@@ -7594,7 +7605,7 @@ export interface operations {
|
|
|
7594
7605
|
[name: string]: unknown;
|
|
7595
7606
|
};
|
|
7596
7607
|
content: {
|
|
7597
|
-
"application/json": components["schemas"]["
|
|
7608
|
+
"application/json": components["schemas"]["BodhiErrorResponse"];
|
|
7598
7609
|
};
|
|
7599
7610
|
};
|
|
7600
7611
|
/** @description Request not found */
|
|
@@ -7603,7 +7614,7 @@ export interface operations {
|
|
|
7603
7614
|
[name: string]: unknown;
|
|
7604
7615
|
};
|
|
7605
7616
|
content: {
|
|
7606
|
-
"application/json": components["schemas"]["
|
|
7617
|
+
"application/json": components["schemas"]["BodhiErrorResponse"];
|
|
7607
7618
|
};
|
|
7608
7619
|
};
|
|
7609
7620
|
/** @description Internal server error */
|
|
@@ -7612,7 +7623,7 @@ export interface operations {
|
|
|
7612
7623
|
[name: string]: unknown;
|
|
7613
7624
|
};
|
|
7614
7625
|
content: {
|
|
7615
|
-
"application/json": components["schemas"]["
|
|
7626
|
+
"application/json": components["schemas"]["BodhiErrorResponse"];
|
|
7616
7627
|
};
|
|
7617
7628
|
};
|
|
7618
7629
|
};
|
|
@@ -7652,7 +7663,7 @@ export interface operations {
|
|
|
7652
7663
|
[name: string]: unknown;
|
|
7653
7664
|
};
|
|
7654
7665
|
content: {
|
|
7655
|
-
"application/json": components["schemas"]["
|
|
7666
|
+
"application/json": components["schemas"]["BodhiErrorResponse"];
|
|
7656
7667
|
};
|
|
7657
7668
|
};
|
|
7658
7669
|
/** @description Not authenticated */
|
|
@@ -7661,7 +7672,7 @@ export interface operations {
|
|
|
7661
7672
|
[name: string]: unknown;
|
|
7662
7673
|
};
|
|
7663
7674
|
content: {
|
|
7664
|
-
"application/json": components["schemas"]["
|
|
7675
|
+
"application/json": components["schemas"]["BodhiErrorResponse"];
|
|
7665
7676
|
};
|
|
7666
7677
|
};
|
|
7667
7678
|
/** @description Insufficient permissions */
|
|
@@ -7670,7 +7681,7 @@ export interface operations {
|
|
|
7670
7681
|
[name: string]: unknown;
|
|
7671
7682
|
};
|
|
7672
7683
|
content: {
|
|
7673
|
-
"application/json": components["schemas"]["
|
|
7684
|
+
"application/json": components["schemas"]["BodhiErrorResponse"];
|
|
7674
7685
|
};
|
|
7675
7686
|
};
|
|
7676
7687
|
/** @description Internal server error */
|
|
@@ -7679,7 +7690,7 @@ export interface operations {
|
|
|
7679
7690
|
[name: string]: unknown;
|
|
7680
7691
|
};
|
|
7681
7692
|
content: {
|
|
7682
|
-
"application/json": components["schemas"]["
|
|
7693
|
+
"application/json": components["schemas"]["BodhiErrorResponse"];
|
|
7683
7694
|
};
|
|
7684
7695
|
};
|
|
7685
7696
|
};
|
|
@@ -7709,7 +7720,7 @@ export interface operations {
|
|
|
7709
7720
|
[name: string]: unknown;
|
|
7710
7721
|
};
|
|
7711
7722
|
content: {
|
|
7712
|
-
"application/json": components["schemas"]["
|
|
7723
|
+
"application/json": components["schemas"]["BodhiErrorResponse"];
|
|
7713
7724
|
};
|
|
7714
7725
|
};
|
|
7715
7726
|
/** @description Not authenticated */
|
|
@@ -7718,7 +7729,7 @@ export interface operations {
|
|
|
7718
7729
|
[name: string]: unknown;
|
|
7719
7730
|
};
|
|
7720
7731
|
content: {
|
|
7721
|
-
"application/json": components["schemas"]["
|
|
7732
|
+
"application/json": components["schemas"]["BodhiErrorResponse"];
|
|
7722
7733
|
};
|
|
7723
7734
|
};
|
|
7724
7735
|
/** @description Insufficient permissions */
|
|
@@ -7727,7 +7738,7 @@ export interface operations {
|
|
|
7727
7738
|
[name: string]: unknown;
|
|
7728
7739
|
};
|
|
7729
7740
|
content: {
|
|
7730
|
-
"application/json": components["schemas"]["
|
|
7741
|
+
"application/json": components["schemas"]["BodhiErrorResponse"];
|
|
7731
7742
|
};
|
|
7732
7743
|
};
|
|
7733
7744
|
/** @description User not found */
|
|
@@ -7736,7 +7747,7 @@ export interface operations {
|
|
|
7736
7747
|
[name: string]: unknown;
|
|
7737
7748
|
};
|
|
7738
7749
|
content: {
|
|
7739
|
-
"application/json": components["schemas"]["
|
|
7750
|
+
"application/json": components["schemas"]["BodhiErrorResponse"];
|
|
7740
7751
|
};
|
|
7741
7752
|
};
|
|
7742
7753
|
/** @description Internal server error */
|
|
@@ -7745,7 +7756,7 @@ export interface operations {
|
|
|
7745
7756
|
[name: string]: unknown;
|
|
7746
7757
|
};
|
|
7747
7758
|
content: {
|
|
7748
|
-
"application/json": components["schemas"]["
|
|
7759
|
+
"application/json": components["schemas"]["BodhiErrorResponse"];
|
|
7749
7760
|
};
|
|
7750
7761
|
};
|
|
7751
7762
|
};
|
|
@@ -7779,7 +7790,7 @@ export interface operations {
|
|
|
7779
7790
|
[name: string]: unknown;
|
|
7780
7791
|
};
|
|
7781
7792
|
content: {
|
|
7782
|
-
"application/json": components["schemas"]["
|
|
7793
|
+
"application/json": components["schemas"]["BodhiErrorResponse"];
|
|
7783
7794
|
};
|
|
7784
7795
|
};
|
|
7785
7796
|
/** @description Not authenticated */
|
|
@@ -7788,7 +7799,7 @@ export interface operations {
|
|
|
7788
7799
|
[name: string]: unknown;
|
|
7789
7800
|
};
|
|
7790
7801
|
content: {
|
|
7791
|
-
"application/json": components["schemas"]["
|
|
7802
|
+
"application/json": components["schemas"]["BodhiErrorResponse"];
|
|
7792
7803
|
};
|
|
7793
7804
|
};
|
|
7794
7805
|
/** @description Insufficient permissions */
|
|
@@ -7797,7 +7808,7 @@ export interface operations {
|
|
|
7797
7808
|
[name: string]: unknown;
|
|
7798
7809
|
};
|
|
7799
7810
|
content: {
|
|
7800
|
-
"application/json": components["schemas"]["
|
|
7811
|
+
"application/json": components["schemas"]["BodhiErrorResponse"];
|
|
7801
7812
|
};
|
|
7802
7813
|
};
|
|
7803
7814
|
/** @description User not found */
|
|
@@ -7806,7 +7817,7 @@ export interface operations {
|
|
|
7806
7817
|
[name: string]: unknown;
|
|
7807
7818
|
};
|
|
7808
7819
|
content: {
|
|
7809
|
-
"application/json": components["schemas"]["
|
|
7820
|
+
"application/json": components["schemas"]["BodhiErrorResponse"];
|
|
7810
7821
|
};
|
|
7811
7822
|
};
|
|
7812
7823
|
/** @description Internal server error */
|
|
@@ -7815,7 +7826,7 @@ export interface operations {
|
|
|
7815
7826
|
[name: string]: unknown;
|
|
7816
7827
|
};
|
|
7817
7828
|
content: {
|
|
7818
|
-
"application/json": components["schemas"]["
|
|
7829
|
+
"application/json": components["schemas"]["BodhiErrorResponse"];
|
|
7819
7830
|
};
|
|
7820
7831
|
};
|
|
7821
7832
|
};
|
|
@@ -7847,7 +7858,7 @@ export interface operations {
|
|
|
7847
7858
|
[name: string]: unknown;
|
|
7848
7859
|
};
|
|
7849
7860
|
content: {
|
|
7850
|
-
"application/json": components["schemas"]["
|
|
7861
|
+
"application/json": components["schemas"]["BodhiErrorResponse"];
|
|
7851
7862
|
};
|
|
7852
7863
|
};
|
|
7853
7864
|
/** @description Internal server error */
|
|
@@ -7856,7 +7867,7 @@ export interface operations {
|
|
|
7856
7867
|
[name: string]: unknown;
|
|
7857
7868
|
};
|
|
7858
7869
|
content: {
|
|
7859
|
-
"application/json": components["schemas"]["
|
|
7870
|
+
"application/json": components["schemas"]["BodhiErrorResponse"];
|
|
7860
7871
|
};
|
|
7861
7872
|
};
|
|
7862
7873
|
};
|
|
@@ -7888,7 +7899,7 @@ export interface operations {
|
|
|
7888
7899
|
[name: string]: unknown;
|
|
7889
7900
|
};
|
|
7890
7901
|
content: {
|
|
7891
|
-
"application/json": components["schemas"]["
|
|
7902
|
+
"application/json": components["schemas"]["BodhiErrorResponse"];
|
|
7892
7903
|
};
|
|
7893
7904
|
};
|
|
7894
7905
|
/** @description Internal server error */
|
|
@@ -7897,7 +7908,7 @@ export interface operations {
|
|
|
7897
7908
|
[name: string]: unknown;
|
|
7898
7909
|
};
|
|
7899
7910
|
content: {
|
|
7900
|
-
"application/json": components["schemas"]["
|
|
7911
|
+
"application/json": components["schemas"]["BodhiErrorResponse"];
|
|
7901
7912
|
};
|
|
7902
7913
|
};
|
|
7903
7914
|
};
|