@bodhiapp/ts-client 0.1.28 → 0.1.30
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-oai.d.ts +60 -60
- package/dist/openapi-typescript/openapi-schema-oai.ts +60 -60
- package/dist/openapi-typescript/openapi-schema.d.ts +337 -335
- package/dist/openapi-typescript/openapi-schema.ts +337 -335
- package/dist/types/types.gen.d.ts +329 -329
- package/dist/types/types.gen.ts +330 -330
- package/dist/types-oai/types.gen.d.ts +64 -64
- package/dist/types-oai/types.gen.ts +66 -66
- package/package.json +1 -1
|
@@ -1531,18 +1531,6 @@ 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",
|
|
@@ -1552,7 +1540,7 @@ export interface components {
|
|
|
1552
1540
|
* },
|
|
1553
1541
|
* "type": "invalid_request_error"
|
|
1554
1542
|
* } */
|
|
1555
|
-
|
|
1543
|
+
BodhiError: {
|
|
1556
1544
|
/**
|
|
1557
1545
|
* @description Human-readable error message describing what went wrong
|
|
1558
1546
|
* @example Validation failed: name is required
|
|
@@ -1579,6 +1567,20 @@ export interface components {
|
|
|
1579
1567
|
[key: string]: string;
|
|
1580
1568
|
} | null;
|
|
1581
1569
|
};
|
|
1570
|
+
/** @example {
|
|
1571
|
+
* "error": {
|
|
1572
|
+
* "code": "validation_error",
|
|
1573
|
+
* "message": "Validation failed: name is required",
|
|
1574
|
+
* "param": {
|
|
1575
|
+
* "field": "name"
|
|
1576
|
+
* },
|
|
1577
|
+
* "type": "invalid_request_error"
|
|
1578
|
+
* }
|
|
1579
|
+
* } */
|
|
1580
|
+
BodhiErrorResponse: {
|
|
1581
|
+
/** @description Error details following Bodhi API error format */
|
|
1582
|
+
error: components["schemas"]["BodhiError"];
|
|
1583
|
+
};
|
|
1582
1584
|
/** @description Whether a single capability is supported by the model. */
|
|
1583
1585
|
CapabilitySupport: {
|
|
1584
1586
|
supported: boolean;
|
|
@@ -1782,7 +1784,7 @@ export interface components {
|
|
|
1782
1784
|
/** @description Gemini `Model` schema (see `openapi-gemini.json`). */
|
|
1783
1785
|
GeminiModel: {
|
|
1784
1786
|
name: string;
|
|
1785
|
-
version?: string;
|
|
1787
|
+
version?: string | null;
|
|
1786
1788
|
displayName?: string | null;
|
|
1787
1789
|
description?: string | null;
|
|
1788
1790
|
/** Format: int64 */
|
|
@@ -2714,7 +2716,7 @@ export interface operations {
|
|
|
2714
2716
|
[name: string]: unknown;
|
|
2715
2717
|
};
|
|
2716
2718
|
content: {
|
|
2717
|
-
"application/json": components["schemas"]["
|
|
2719
|
+
"application/json": components["schemas"]["BodhiErrorResponse"];
|
|
2718
2720
|
};
|
|
2719
2721
|
};
|
|
2720
2722
|
/** @description Not authenticated */
|
|
@@ -2723,7 +2725,7 @@ export interface operations {
|
|
|
2723
2725
|
[name: string]: unknown;
|
|
2724
2726
|
};
|
|
2725
2727
|
content: {
|
|
2726
|
-
"application/json": components["schemas"]["
|
|
2728
|
+
"application/json": components["schemas"]["BodhiErrorResponse"];
|
|
2727
2729
|
};
|
|
2728
2730
|
};
|
|
2729
2731
|
/** @description Insufficient permissions */
|
|
@@ -2732,7 +2734,7 @@ export interface operations {
|
|
|
2732
2734
|
[name: string]: unknown;
|
|
2733
2735
|
};
|
|
2734
2736
|
content: {
|
|
2735
|
-
"application/json": components["schemas"]["
|
|
2737
|
+
"application/json": components["schemas"]["BodhiErrorResponse"];
|
|
2736
2738
|
};
|
|
2737
2739
|
};
|
|
2738
2740
|
/** @description Internal server error */
|
|
@@ -2741,7 +2743,7 @@ export interface operations {
|
|
|
2741
2743
|
[name: string]: unknown;
|
|
2742
2744
|
};
|
|
2743
2745
|
content: {
|
|
2744
|
-
"application/json": components["schemas"]["
|
|
2746
|
+
"application/json": components["schemas"]["BodhiErrorResponse"];
|
|
2745
2747
|
};
|
|
2746
2748
|
};
|
|
2747
2749
|
};
|
|
@@ -2779,7 +2781,7 @@ export interface operations {
|
|
|
2779
2781
|
[name: string]: unknown;
|
|
2780
2782
|
};
|
|
2781
2783
|
content: {
|
|
2782
|
-
"application/json": components["schemas"]["
|
|
2784
|
+
"application/json": components["schemas"]["BodhiErrorResponse"];
|
|
2783
2785
|
};
|
|
2784
2786
|
};
|
|
2785
2787
|
/** @description Not authenticated */
|
|
@@ -2788,7 +2790,7 @@ export interface operations {
|
|
|
2788
2790
|
[name: string]: unknown;
|
|
2789
2791
|
};
|
|
2790
2792
|
content: {
|
|
2791
|
-
"application/json": components["schemas"]["
|
|
2793
|
+
"application/json": components["schemas"]["BodhiErrorResponse"];
|
|
2792
2794
|
};
|
|
2793
2795
|
};
|
|
2794
2796
|
/** @description Insufficient permissions */
|
|
@@ -2797,7 +2799,7 @@ export interface operations {
|
|
|
2797
2799
|
[name: string]: unknown;
|
|
2798
2800
|
};
|
|
2799
2801
|
content: {
|
|
2800
|
-
"application/json": components["schemas"]["
|
|
2802
|
+
"application/json": components["schemas"]["BodhiErrorResponse"];
|
|
2801
2803
|
};
|
|
2802
2804
|
};
|
|
2803
2805
|
/** @description Internal server error */
|
|
@@ -2806,7 +2808,7 @@ export interface operations {
|
|
|
2806
2808
|
[name: string]: unknown;
|
|
2807
2809
|
};
|
|
2808
2810
|
content: {
|
|
2809
|
-
"application/json": components["schemas"]["
|
|
2811
|
+
"application/json": components["schemas"]["BodhiErrorResponse"];
|
|
2810
2812
|
};
|
|
2811
2813
|
};
|
|
2812
2814
|
};
|
|
@@ -2843,7 +2845,7 @@ export interface operations {
|
|
|
2843
2845
|
[name: string]: unknown;
|
|
2844
2846
|
};
|
|
2845
2847
|
content: {
|
|
2846
|
-
"application/json": components["schemas"]["
|
|
2848
|
+
"application/json": components["schemas"]["BodhiErrorResponse"];
|
|
2847
2849
|
};
|
|
2848
2850
|
};
|
|
2849
2851
|
/** @description Not authenticated */
|
|
@@ -2852,7 +2854,7 @@ export interface operations {
|
|
|
2852
2854
|
[name: string]: unknown;
|
|
2853
2855
|
};
|
|
2854
2856
|
content: {
|
|
2855
|
-
"application/json": components["schemas"]["
|
|
2857
|
+
"application/json": components["schemas"]["BodhiErrorResponse"];
|
|
2856
2858
|
};
|
|
2857
2859
|
};
|
|
2858
2860
|
/** @description Insufficient permissions */
|
|
@@ -2861,7 +2863,7 @@ export interface operations {
|
|
|
2861
2863
|
[name: string]: unknown;
|
|
2862
2864
|
};
|
|
2863
2865
|
content: {
|
|
2864
|
-
"application/json": components["schemas"]["
|
|
2866
|
+
"application/json": components["schemas"]["BodhiErrorResponse"];
|
|
2865
2867
|
};
|
|
2866
2868
|
};
|
|
2867
2869
|
/** @description Not found */
|
|
@@ -2870,7 +2872,7 @@ export interface operations {
|
|
|
2870
2872
|
[name: string]: unknown;
|
|
2871
2873
|
};
|
|
2872
2874
|
content: {
|
|
2873
|
-
"application/json": components["schemas"]["
|
|
2875
|
+
"application/json": components["schemas"]["BodhiErrorResponse"];
|
|
2874
2876
|
};
|
|
2875
2877
|
};
|
|
2876
2878
|
/** @description Already processed */
|
|
@@ -2879,7 +2881,7 @@ export interface operations {
|
|
|
2879
2881
|
[name: string]: unknown;
|
|
2880
2882
|
};
|
|
2881
2883
|
content: {
|
|
2882
|
-
"application/json": components["schemas"]["
|
|
2884
|
+
"application/json": components["schemas"]["BodhiErrorResponse"];
|
|
2883
2885
|
};
|
|
2884
2886
|
};
|
|
2885
2887
|
/** @description Internal server error */
|
|
@@ -2888,7 +2890,7 @@ export interface operations {
|
|
|
2888
2890
|
[name: string]: unknown;
|
|
2889
2891
|
};
|
|
2890
2892
|
content: {
|
|
2891
|
-
"application/json": components["schemas"]["
|
|
2893
|
+
"application/json": components["schemas"]["BodhiErrorResponse"];
|
|
2892
2894
|
};
|
|
2893
2895
|
};
|
|
2894
2896
|
};
|
|
@@ -2923,7 +2925,7 @@ export interface operations {
|
|
|
2923
2925
|
[name: string]: unknown;
|
|
2924
2926
|
};
|
|
2925
2927
|
content: {
|
|
2926
|
-
"application/json": components["schemas"]["
|
|
2928
|
+
"application/json": components["schemas"]["BodhiErrorResponse"];
|
|
2927
2929
|
};
|
|
2928
2930
|
};
|
|
2929
2931
|
/** @description Not authenticated */
|
|
@@ -2932,7 +2934,7 @@ export interface operations {
|
|
|
2932
2934
|
[name: string]: unknown;
|
|
2933
2935
|
};
|
|
2934
2936
|
content: {
|
|
2935
|
-
"application/json": components["schemas"]["
|
|
2937
|
+
"application/json": components["schemas"]["BodhiErrorResponse"];
|
|
2936
2938
|
};
|
|
2937
2939
|
};
|
|
2938
2940
|
/** @description Insufficient permissions */
|
|
@@ -2941,7 +2943,7 @@ export interface operations {
|
|
|
2941
2943
|
[name: string]: unknown;
|
|
2942
2944
|
};
|
|
2943
2945
|
content: {
|
|
2944
|
-
"application/json": components["schemas"]["
|
|
2946
|
+
"application/json": components["schemas"]["BodhiErrorResponse"];
|
|
2945
2947
|
};
|
|
2946
2948
|
};
|
|
2947
2949
|
/** @description Request not found */
|
|
@@ -2950,7 +2952,7 @@ export interface operations {
|
|
|
2950
2952
|
[name: string]: unknown;
|
|
2951
2953
|
};
|
|
2952
2954
|
content: {
|
|
2953
|
-
"application/json": components["schemas"]["
|
|
2955
|
+
"application/json": components["schemas"]["BodhiErrorResponse"];
|
|
2954
2956
|
};
|
|
2955
2957
|
};
|
|
2956
2958
|
/** @description Internal server error */
|
|
@@ -2959,7 +2961,7 @@ export interface operations {
|
|
|
2959
2961
|
[name: string]: unknown;
|
|
2960
2962
|
};
|
|
2961
2963
|
content: {
|
|
2962
|
-
"application/json": components["schemas"]["
|
|
2964
|
+
"application/json": components["schemas"]["BodhiErrorResponse"];
|
|
2963
2965
|
};
|
|
2964
2966
|
};
|
|
2965
2967
|
};
|
|
@@ -2991,7 +2993,7 @@ export interface operations {
|
|
|
2991
2993
|
[name: string]: unknown;
|
|
2992
2994
|
};
|
|
2993
2995
|
content: {
|
|
2994
|
-
"application/json": components["schemas"]["
|
|
2996
|
+
"application/json": components["schemas"]["BodhiErrorResponse"];
|
|
2995
2997
|
};
|
|
2996
2998
|
};
|
|
2997
2999
|
/** @description Not authenticated */
|
|
@@ -3000,7 +3002,7 @@ export interface operations {
|
|
|
3000
3002
|
[name: string]: unknown;
|
|
3001
3003
|
};
|
|
3002
3004
|
content: {
|
|
3003
|
-
"application/json": components["schemas"]["
|
|
3005
|
+
"application/json": components["schemas"]["BodhiErrorResponse"];
|
|
3004
3006
|
};
|
|
3005
3007
|
};
|
|
3006
3008
|
/** @description Insufficient permissions */
|
|
@@ -3009,7 +3011,7 @@ export interface operations {
|
|
|
3009
3011
|
[name: string]: unknown;
|
|
3010
3012
|
};
|
|
3011
3013
|
content: {
|
|
3012
|
-
"application/json": components["schemas"]["
|
|
3014
|
+
"application/json": components["schemas"]["BodhiErrorResponse"];
|
|
3013
3015
|
};
|
|
3014
3016
|
};
|
|
3015
3017
|
/** @description Not found */
|
|
@@ -3018,7 +3020,7 @@ export interface operations {
|
|
|
3018
3020
|
[name: string]: unknown;
|
|
3019
3021
|
};
|
|
3020
3022
|
content: {
|
|
3021
|
-
"application/json": components["schemas"]["
|
|
3023
|
+
"application/json": components["schemas"]["BodhiErrorResponse"];
|
|
3022
3024
|
};
|
|
3023
3025
|
};
|
|
3024
3026
|
/** @description Already processed */
|
|
@@ -3027,7 +3029,7 @@ export interface operations {
|
|
|
3027
3029
|
[name: string]: unknown;
|
|
3028
3030
|
};
|
|
3029
3031
|
content: {
|
|
3030
|
-
"application/json": components["schemas"]["
|
|
3032
|
+
"application/json": components["schemas"]["BodhiErrorResponse"];
|
|
3031
3033
|
};
|
|
3032
3034
|
};
|
|
3033
3035
|
/** @description Internal server error */
|
|
@@ -3036,7 +3038,7 @@ export interface operations {
|
|
|
3036
3038
|
[name: string]: unknown;
|
|
3037
3039
|
};
|
|
3038
3040
|
content: {
|
|
3039
|
-
"application/json": components["schemas"]["
|
|
3041
|
+
"application/json": components["schemas"]["BodhiErrorResponse"];
|
|
3040
3042
|
};
|
|
3041
3043
|
};
|
|
3042
3044
|
};
|
|
@@ -3066,7 +3068,7 @@ export interface operations {
|
|
|
3066
3068
|
[name: string]: unknown;
|
|
3067
3069
|
};
|
|
3068
3070
|
content: {
|
|
3069
|
-
"application/json": components["schemas"]["
|
|
3071
|
+
"application/json": components["schemas"]["BodhiErrorResponse"];
|
|
3070
3072
|
};
|
|
3071
3073
|
};
|
|
3072
3074
|
/** @description Not authenticated */
|
|
@@ -3075,7 +3077,7 @@ export interface operations {
|
|
|
3075
3077
|
[name: string]: unknown;
|
|
3076
3078
|
};
|
|
3077
3079
|
content: {
|
|
3078
|
-
"application/json": components["schemas"]["
|
|
3080
|
+
"application/json": components["schemas"]["BodhiErrorResponse"];
|
|
3079
3081
|
};
|
|
3080
3082
|
};
|
|
3081
3083
|
/** @description Insufficient permissions */
|
|
@@ -3084,7 +3086,7 @@ export interface operations {
|
|
|
3084
3086
|
[name: string]: unknown;
|
|
3085
3087
|
};
|
|
3086
3088
|
content: {
|
|
3087
|
-
"application/json": components["schemas"]["
|
|
3089
|
+
"application/json": components["schemas"]["BodhiErrorResponse"];
|
|
3088
3090
|
};
|
|
3089
3091
|
};
|
|
3090
3092
|
/** @description Request not found */
|
|
@@ -3093,7 +3095,7 @@ export interface operations {
|
|
|
3093
3095
|
[name: string]: unknown;
|
|
3094
3096
|
};
|
|
3095
3097
|
content: {
|
|
3096
|
-
"application/json": components["schemas"]["
|
|
3098
|
+
"application/json": components["schemas"]["BodhiErrorResponse"];
|
|
3097
3099
|
};
|
|
3098
3100
|
};
|
|
3099
3101
|
/** @description Internal server error */
|
|
@@ -3102,7 +3104,7 @@ export interface operations {
|
|
|
3102
3104
|
[name: string]: unknown;
|
|
3103
3105
|
};
|
|
3104
3106
|
content: {
|
|
3105
|
-
"application/json": components["schemas"]["
|
|
3107
|
+
"application/json": components["schemas"]["BodhiErrorResponse"];
|
|
3106
3108
|
};
|
|
3107
3109
|
};
|
|
3108
3110
|
};
|
|
@@ -3134,7 +3136,7 @@ export interface operations {
|
|
|
3134
3136
|
[name: string]: unknown;
|
|
3135
3137
|
};
|
|
3136
3138
|
content: {
|
|
3137
|
-
"application/json": components["schemas"]["
|
|
3139
|
+
"application/json": components["schemas"]["BodhiErrorResponse"];
|
|
3138
3140
|
};
|
|
3139
3141
|
};
|
|
3140
3142
|
/** @description Not authenticated */
|
|
@@ -3143,7 +3145,7 @@ export interface operations {
|
|
|
3143
3145
|
[name: string]: unknown;
|
|
3144
3146
|
};
|
|
3145
3147
|
content: {
|
|
3146
|
-
"application/json": components["schemas"]["
|
|
3148
|
+
"application/json": components["schemas"]["BodhiErrorResponse"];
|
|
3147
3149
|
};
|
|
3148
3150
|
};
|
|
3149
3151
|
/** @description Insufficient permissions */
|
|
@@ -3152,7 +3154,7 @@ export interface operations {
|
|
|
3152
3154
|
[name: string]: unknown;
|
|
3153
3155
|
};
|
|
3154
3156
|
content: {
|
|
3155
|
-
"application/json": components["schemas"]["
|
|
3157
|
+
"application/json": components["schemas"]["BodhiErrorResponse"];
|
|
3156
3158
|
};
|
|
3157
3159
|
};
|
|
3158
3160
|
/** @description Not found */
|
|
@@ -3161,7 +3163,7 @@ export interface operations {
|
|
|
3161
3163
|
[name: string]: unknown;
|
|
3162
3164
|
};
|
|
3163
3165
|
content: {
|
|
3164
|
-
"application/json": components["schemas"]["
|
|
3166
|
+
"application/json": components["schemas"]["BodhiErrorResponse"];
|
|
3165
3167
|
};
|
|
3166
3168
|
};
|
|
3167
3169
|
/** @description Request expired */
|
|
@@ -3170,7 +3172,7 @@ export interface operations {
|
|
|
3170
3172
|
[name: string]: unknown;
|
|
3171
3173
|
};
|
|
3172
3174
|
content: {
|
|
3173
|
-
"application/json": components["schemas"]["
|
|
3175
|
+
"application/json": components["schemas"]["BodhiErrorResponse"];
|
|
3174
3176
|
};
|
|
3175
3177
|
};
|
|
3176
3178
|
/** @description Internal server error */
|
|
@@ -3179,7 +3181,7 @@ export interface operations {
|
|
|
3179
3181
|
[name: string]: unknown;
|
|
3180
3182
|
};
|
|
3181
3183
|
content: {
|
|
3182
|
-
"application/json": components["schemas"]["
|
|
3184
|
+
"application/json": components["schemas"]["BodhiErrorResponse"];
|
|
3183
3185
|
};
|
|
3184
3186
|
};
|
|
3185
3187
|
};
|
|
@@ -3214,7 +3216,7 @@ export interface operations {
|
|
|
3214
3216
|
[name: string]: unknown;
|
|
3215
3217
|
};
|
|
3216
3218
|
content: {
|
|
3217
|
-
"application/json": components["schemas"]["
|
|
3219
|
+
"application/json": components["schemas"]["BodhiErrorResponse"];
|
|
3218
3220
|
};
|
|
3219
3221
|
};
|
|
3220
3222
|
/** @description Not authenticated */
|
|
@@ -3223,7 +3225,7 @@ export interface operations {
|
|
|
3223
3225
|
[name: string]: unknown;
|
|
3224
3226
|
};
|
|
3225
3227
|
content: {
|
|
3226
|
-
"application/json": components["schemas"]["
|
|
3228
|
+
"application/json": components["schemas"]["BodhiErrorResponse"];
|
|
3227
3229
|
};
|
|
3228
3230
|
};
|
|
3229
3231
|
/** @description Insufficient permissions */
|
|
@@ -3232,7 +3234,7 @@ export interface operations {
|
|
|
3232
3234
|
[name: string]: unknown;
|
|
3233
3235
|
};
|
|
3234
3236
|
content: {
|
|
3235
|
-
"application/json": components["schemas"]["
|
|
3237
|
+
"application/json": components["schemas"]["BodhiErrorResponse"];
|
|
3236
3238
|
};
|
|
3237
3239
|
};
|
|
3238
3240
|
/** @description Not found or app_client_id mismatch */
|
|
@@ -3241,7 +3243,7 @@ export interface operations {
|
|
|
3241
3243
|
[name: string]: unknown;
|
|
3242
3244
|
};
|
|
3243
3245
|
content: {
|
|
3244
|
-
"application/json": components["schemas"]["
|
|
3246
|
+
"application/json": components["schemas"]["BodhiErrorResponse"];
|
|
3245
3247
|
};
|
|
3246
3248
|
};
|
|
3247
3249
|
/** @description Internal server error */
|
|
@@ -3250,7 +3252,7 @@ export interface operations {
|
|
|
3250
3252
|
[name: string]: unknown;
|
|
3251
3253
|
};
|
|
3252
3254
|
content: {
|
|
3253
|
-
"application/json": components["schemas"]["
|
|
3255
|
+
"application/json": components["schemas"]["BodhiErrorResponse"];
|
|
3254
3256
|
};
|
|
3255
3257
|
};
|
|
3256
3258
|
};
|
|
@@ -3279,7 +3281,7 @@ export interface operations {
|
|
|
3279
3281
|
[name: string]: unknown;
|
|
3280
3282
|
};
|
|
3281
3283
|
content: {
|
|
3282
|
-
"application/json": components["schemas"]["
|
|
3284
|
+
"application/json": components["schemas"]["BodhiErrorResponse"];
|
|
3283
3285
|
};
|
|
3284
3286
|
};
|
|
3285
3287
|
/** @description Not authenticated */
|
|
@@ -3288,7 +3290,7 @@ export interface operations {
|
|
|
3288
3290
|
[name: string]: unknown;
|
|
3289
3291
|
};
|
|
3290
3292
|
content: {
|
|
3291
|
-
"application/json": components["schemas"]["
|
|
3293
|
+
"application/json": components["schemas"]["BodhiErrorResponse"];
|
|
3292
3294
|
};
|
|
3293
3295
|
};
|
|
3294
3296
|
/** @description Insufficient permissions */
|
|
@@ -3297,7 +3299,7 @@ export interface operations {
|
|
|
3297
3299
|
[name: string]: unknown;
|
|
3298
3300
|
};
|
|
3299
3301
|
content: {
|
|
3300
|
-
"application/json": components["schemas"]["
|
|
3302
|
+
"application/json": components["schemas"]["BodhiErrorResponse"];
|
|
3301
3303
|
};
|
|
3302
3304
|
};
|
|
3303
3305
|
/** @description Internal server error */
|
|
@@ -3306,7 +3308,7 @@ export interface operations {
|
|
|
3306
3308
|
[name: string]: unknown;
|
|
3307
3309
|
};
|
|
3308
3310
|
content: {
|
|
3309
|
-
"application/json": components["schemas"]["
|
|
3311
|
+
"application/json": components["schemas"]["BodhiErrorResponse"];
|
|
3310
3312
|
};
|
|
3311
3313
|
};
|
|
3312
3314
|
};
|
|
@@ -3338,7 +3340,7 @@ export interface operations {
|
|
|
3338
3340
|
[name: string]: unknown;
|
|
3339
3341
|
};
|
|
3340
3342
|
content: {
|
|
3341
|
-
"application/json": components["schemas"]["
|
|
3343
|
+
"application/json": components["schemas"]["BodhiErrorResponse"];
|
|
3342
3344
|
};
|
|
3343
3345
|
};
|
|
3344
3346
|
/** @description Not authenticated */
|
|
@@ -3347,7 +3349,7 @@ export interface operations {
|
|
|
3347
3349
|
[name: string]: unknown;
|
|
3348
3350
|
};
|
|
3349
3351
|
content: {
|
|
3350
|
-
"application/json": components["schemas"]["
|
|
3352
|
+
"application/json": components["schemas"]["BodhiErrorResponse"];
|
|
3351
3353
|
};
|
|
3352
3354
|
};
|
|
3353
3355
|
/** @description Insufficient permissions */
|
|
@@ -3356,7 +3358,7 @@ export interface operations {
|
|
|
3356
3358
|
[name: string]: unknown;
|
|
3357
3359
|
};
|
|
3358
3360
|
content: {
|
|
3359
|
-
"application/json": components["schemas"]["
|
|
3361
|
+
"application/json": components["schemas"]["BodhiErrorResponse"];
|
|
3360
3362
|
};
|
|
3361
3363
|
};
|
|
3362
3364
|
/** @description MCP not found */
|
|
@@ -3372,7 +3374,7 @@ export interface operations {
|
|
|
3372
3374
|
[name: string]: unknown;
|
|
3373
3375
|
};
|
|
3374
3376
|
content: {
|
|
3375
|
-
"application/json": components["schemas"]["
|
|
3377
|
+
"application/json": components["schemas"]["BodhiErrorResponse"];
|
|
3376
3378
|
};
|
|
3377
3379
|
};
|
|
3378
3380
|
};
|
|
@@ -3402,7 +3404,7 @@ export interface operations {
|
|
|
3402
3404
|
[name: string]: unknown;
|
|
3403
3405
|
};
|
|
3404
3406
|
content: {
|
|
3405
|
-
"application/json": components["schemas"]["
|
|
3407
|
+
"application/json": components["schemas"]["BodhiErrorResponse"];
|
|
3406
3408
|
};
|
|
3407
3409
|
};
|
|
3408
3410
|
/** @description Not authenticated */
|
|
@@ -3411,7 +3413,7 @@ export interface operations {
|
|
|
3411
3413
|
[name: string]: unknown;
|
|
3412
3414
|
};
|
|
3413
3415
|
content: {
|
|
3414
|
-
"application/json": components["schemas"]["
|
|
3416
|
+
"application/json": components["schemas"]["BodhiErrorResponse"];
|
|
3415
3417
|
};
|
|
3416
3418
|
};
|
|
3417
3419
|
/** @description Insufficient permissions */
|
|
@@ -3420,7 +3422,7 @@ export interface operations {
|
|
|
3420
3422
|
[name: string]: unknown;
|
|
3421
3423
|
};
|
|
3422
3424
|
content: {
|
|
3423
|
-
"application/json": components["schemas"]["
|
|
3425
|
+
"application/json": components["schemas"]["BodhiErrorResponse"];
|
|
3424
3426
|
};
|
|
3425
3427
|
};
|
|
3426
3428
|
/** @description Internal server error */
|
|
@@ -3429,7 +3431,7 @@ export interface operations {
|
|
|
3429
3431
|
[name: string]: unknown;
|
|
3430
3432
|
};
|
|
3431
3433
|
content: {
|
|
3432
|
-
"application/json": components["schemas"]["
|
|
3434
|
+
"application/json": components["schemas"]["BodhiErrorResponse"];
|
|
3433
3435
|
};
|
|
3434
3436
|
};
|
|
3435
3437
|
};
|
|
@@ -3463,7 +3465,7 @@ export interface operations {
|
|
|
3463
3465
|
[name: string]: unknown;
|
|
3464
3466
|
};
|
|
3465
3467
|
content: {
|
|
3466
|
-
"application/json": components["schemas"]["
|
|
3468
|
+
"application/json": components["schemas"]["BodhiErrorResponse"];
|
|
3467
3469
|
};
|
|
3468
3470
|
};
|
|
3469
3471
|
/** @description Not authenticated */
|
|
@@ -3472,7 +3474,7 @@ export interface operations {
|
|
|
3472
3474
|
[name: string]: unknown;
|
|
3473
3475
|
};
|
|
3474
3476
|
content: {
|
|
3475
|
-
"application/json": components["schemas"]["
|
|
3477
|
+
"application/json": components["schemas"]["BodhiErrorResponse"];
|
|
3476
3478
|
};
|
|
3477
3479
|
};
|
|
3478
3480
|
/** @description Insufficient permissions */
|
|
@@ -3481,7 +3483,7 @@ export interface operations {
|
|
|
3481
3483
|
[name: string]: unknown;
|
|
3482
3484
|
};
|
|
3483
3485
|
content: {
|
|
3484
|
-
"application/json": components["schemas"]["
|
|
3486
|
+
"application/json": components["schemas"]["BodhiErrorResponse"];
|
|
3485
3487
|
};
|
|
3486
3488
|
};
|
|
3487
3489
|
/** @description App client not found */
|
|
@@ -3490,7 +3492,7 @@ export interface operations {
|
|
|
3490
3492
|
[name: string]: unknown;
|
|
3491
3493
|
};
|
|
3492
3494
|
content: {
|
|
3493
|
-
"application/json": components["schemas"]["
|
|
3495
|
+
"application/json": components["schemas"]["BodhiErrorResponse"];
|
|
3494
3496
|
};
|
|
3495
3497
|
};
|
|
3496
3498
|
/** @description Internal server error */
|
|
@@ -3499,7 +3501,7 @@ export interface operations {
|
|
|
3499
3501
|
[name: string]: unknown;
|
|
3500
3502
|
};
|
|
3501
3503
|
content: {
|
|
3502
|
-
"application/json": components["schemas"]["
|
|
3504
|
+
"application/json": components["schemas"]["BodhiErrorResponse"];
|
|
3503
3505
|
};
|
|
3504
3506
|
};
|
|
3505
3507
|
};
|
|
@@ -3540,7 +3542,7 @@ export interface operations {
|
|
|
3540
3542
|
[name: string]: unknown;
|
|
3541
3543
|
};
|
|
3542
3544
|
content: {
|
|
3543
|
-
"application/json": components["schemas"]["
|
|
3545
|
+
"application/json": components["schemas"]["BodhiErrorResponse"];
|
|
3544
3546
|
};
|
|
3545
3547
|
};
|
|
3546
3548
|
/** @description Not authenticated */
|
|
@@ -3549,7 +3551,7 @@ export interface operations {
|
|
|
3549
3551
|
[name: string]: unknown;
|
|
3550
3552
|
};
|
|
3551
3553
|
content: {
|
|
3552
|
-
"application/json": components["schemas"]["
|
|
3554
|
+
"application/json": components["schemas"]["BodhiErrorResponse"];
|
|
3553
3555
|
};
|
|
3554
3556
|
};
|
|
3555
3557
|
/** @description Insufficient permissions */
|
|
@@ -3558,7 +3560,7 @@ export interface operations {
|
|
|
3558
3560
|
[name: string]: unknown;
|
|
3559
3561
|
};
|
|
3560
3562
|
content: {
|
|
3561
|
-
"application/json": components["schemas"]["
|
|
3563
|
+
"application/json": components["schemas"]["BodhiErrorResponse"];
|
|
3562
3564
|
};
|
|
3563
3565
|
};
|
|
3564
3566
|
/** @description OAuth error, invalid request parameters, or state mismatch */
|
|
@@ -3574,7 +3576,7 @@ export interface operations {
|
|
|
3574
3576
|
* "type": "invalid_request_error"
|
|
3575
3577
|
* }
|
|
3576
3578
|
* } */
|
|
3577
|
-
"application/json": components["schemas"]["
|
|
3579
|
+
"application/json": components["schemas"]["BodhiErrorResponse"];
|
|
3578
3580
|
};
|
|
3579
3581
|
};
|
|
3580
3582
|
/** @description Internal server error */
|
|
@@ -3583,7 +3585,7 @@ export interface operations {
|
|
|
3583
3585
|
[name: string]: unknown;
|
|
3584
3586
|
};
|
|
3585
3587
|
content: {
|
|
3586
|
-
"application/json": components["schemas"]["
|
|
3588
|
+
"application/json": components["schemas"]["BodhiErrorResponse"];
|
|
3587
3589
|
};
|
|
3588
3590
|
};
|
|
3589
3591
|
};
|
|
@@ -3617,7 +3619,7 @@ export interface operations {
|
|
|
3617
3619
|
[name: string]: unknown;
|
|
3618
3620
|
};
|
|
3619
3621
|
content: {
|
|
3620
|
-
"application/json": components["schemas"]["
|
|
3622
|
+
"application/json": components["schemas"]["BodhiErrorResponse"];
|
|
3621
3623
|
};
|
|
3622
3624
|
};
|
|
3623
3625
|
/** @description Not authenticated */
|
|
@@ -3626,7 +3628,7 @@ export interface operations {
|
|
|
3626
3628
|
[name: string]: unknown;
|
|
3627
3629
|
};
|
|
3628
3630
|
content: {
|
|
3629
|
-
"application/json": components["schemas"]["
|
|
3631
|
+
"application/json": components["schemas"]["BodhiErrorResponse"];
|
|
3630
3632
|
};
|
|
3631
3633
|
};
|
|
3632
3634
|
/** @description Insufficient permissions */
|
|
@@ -3635,7 +3637,7 @@ export interface operations {
|
|
|
3635
3637
|
[name: string]: unknown;
|
|
3636
3638
|
};
|
|
3637
3639
|
content: {
|
|
3638
|
-
"application/json": components["schemas"]["
|
|
3640
|
+
"application/json": components["schemas"]["BodhiErrorResponse"];
|
|
3639
3641
|
};
|
|
3640
3642
|
};
|
|
3641
3643
|
/** @description Internal server error */
|
|
@@ -3644,7 +3646,7 @@ export interface operations {
|
|
|
3644
3646
|
[name: string]: unknown;
|
|
3645
3647
|
};
|
|
3646
3648
|
content: {
|
|
3647
|
-
"application/json": components["schemas"]["
|
|
3649
|
+
"application/json": components["schemas"]["BodhiErrorResponse"];
|
|
3648
3650
|
};
|
|
3649
3651
|
};
|
|
3650
3652
|
};
|
|
@@ -3686,7 +3688,7 @@ export interface operations {
|
|
|
3686
3688
|
[name: string]: unknown;
|
|
3687
3689
|
};
|
|
3688
3690
|
content: {
|
|
3689
|
-
"application/json": components["schemas"]["
|
|
3691
|
+
"application/json": components["schemas"]["BodhiErrorResponse"];
|
|
3690
3692
|
};
|
|
3691
3693
|
};
|
|
3692
3694
|
/** @description Not authenticated */
|
|
@@ -3695,7 +3697,7 @@ export interface operations {
|
|
|
3695
3697
|
[name: string]: unknown;
|
|
3696
3698
|
};
|
|
3697
3699
|
content: {
|
|
3698
|
-
"application/json": components["schemas"]["
|
|
3700
|
+
"application/json": components["schemas"]["BodhiErrorResponse"];
|
|
3699
3701
|
};
|
|
3700
3702
|
};
|
|
3701
3703
|
/** @description Insufficient permissions */
|
|
@@ -3704,7 +3706,7 @@ export interface operations {
|
|
|
3704
3706
|
[name: string]: unknown;
|
|
3705
3707
|
};
|
|
3706
3708
|
content: {
|
|
3707
|
-
"application/json": components["schemas"]["
|
|
3709
|
+
"application/json": components["schemas"]["BodhiErrorResponse"];
|
|
3708
3710
|
};
|
|
3709
3711
|
};
|
|
3710
3712
|
/** @description Internal server error */
|
|
@@ -3713,7 +3715,7 @@ export interface operations {
|
|
|
3713
3715
|
[name: string]: unknown;
|
|
3714
3716
|
};
|
|
3715
3717
|
content: {
|
|
3716
|
-
"application/json": components["schemas"]["
|
|
3718
|
+
"application/json": components["schemas"]["BodhiErrorResponse"];
|
|
3717
3719
|
};
|
|
3718
3720
|
};
|
|
3719
3721
|
};
|
|
@@ -3762,7 +3764,7 @@ export interface operations {
|
|
|
3762
3764
|
[name: string]: unknown;
|
|
3763
3765
|
};
|
|
3764
3766
|
content: {
|
|
3765
|
-
"application/json": components["schemas"]["
|
|
3767
|
+
"application/json": components["schemas"]["BodhiErrorResponse"];
|
|
3766
3768
|
};
|
|
3767
3769
|
};
|
|
3768
3770
|
/** @description Not authenticated */
|
|
@@ -3771,7 +3773,7 @@ export interface operations {
|
|
|
3771
3773
|
[name: string]: unknown;
|
|
3772
3774
|
};
|
|
3773
3775
|
content: {
|
|
3774
|
-
"application/json": components["schemas"]["
|
|
3776
|
+
"application/json": components["schemas"]["BodhiErrorResponse"];
|
|
3775
3777
|
};
|
|
3776
3778
|
};
|
|
3777
3779
|
/** @description Insufficient permissions */
|
|
@@ -3780,7 +3782,7 @@ export interface operations {
|
|
|
3780
3782
|
[name: string]: unknown;
|
|
3781
3783
|
};
|
|
3782
3784
|
content: {
|
|
3783
|
-
"application/json": components["schemas"]["
|
|
3785
|
+
"application/json": components["schemas"]["BodhiErrorResponse"];
|
|
3784
3786
|
};
|
|
3785
3787
|
};
|
|
3786
3788
|
/** @description Internal server error */
|
|
@@ -3789,7 +3791,7 @@ export interface operations {
|
|
|
3789
3791
|
[name: string]: unknown;
|
|
3790
3792
|
};
|
|
3791
3793
|
content: {
|
|
3792
|
-
"application/json": components["schemas"]["
|
|
3794
|
+
"application/json": components["schemas"]["BodhiErrorResponse"];
|
|
3793
3795
|
};
|
|
3794
3796
|
};
|
|
3795
3797
|
};
|
|
@@ -3826,7 +3828,7 @@ export interface operations {
|
|
|
3826
3828
|
[name: string]: unknown;
|
|
3827
3829
|
};
|
|
3828
3830
|
content: {
|
|
3829
|
-
"application/json": components["schemas"]["
|
|
3831
|
+
"application/json": components["schemas"]["BodhiErrorResponse"];
|
|
3830
3832
|
};
|
|
3831
3833
|
};
|
|
3832
3834
|
/** @description Internal server error */
|
|
@@ -3835,7 +3837,7 @@ export interface operations {
|
|
|
3835
3837
|
[name: string]: unknown;
|
|
3836
3838
|
};
|
|
3837
3839
|
content: {
|
|
3838
|
-
"application/json": components["schemas"]["
|
|
3840
|
+
"application/json": components["schemas"]["BodhiErrorResponse"];
|
|
3839
3841
|
};
|
|
3840
3842
|
};
|
|
3841
3843
|
};
|
|
@@ -3867,7 +3869,7 @@ export interface operations {
|
|
|
3867
3869
|
[name: string]: unknown;
|
|
3868
3870
|
};
|
|
3869
3871
|
content: {
|
|
3870
|
-
"application/json": components["schemas"]["
|
|
3872
|
+
"application/json": components["schemas"]["BodhiErrorResponse"];
|
|
3871
3873
|
};
|
|
3872
3874
|
};
|
|
3873
3875
|
/** @description Not authenticated */
|
|
@@ -3876,7 +3878,7 @@ export interface operations {
|
|
|
3876
3878
|
[name: string]: unknown;
|
|
3877
3879
|
};
|
|
3878
3880
|
content: {
|
|
3879
|
-
"application/json": components["schemas"]["
|
|
3881
|
+
"application/json": components["schemas"]["BodhiErrorResponse"];
|
|
3880
3882
|
};
|
|
3881
3883
|
};
|
|
3882
3884
|
/** @description Insufficient permissions */
|
|
@@ -3885,7 +3887,7 @@ export interface operations {
|
|
|
3885
3887
|
[name: string]: unknown;
|
|
3886
3888
|
};
|
|
3887
3889
|
content: {
|
|
3888
|
-
"application/json": components["schemas"]["
|
|
3890
|
+
"application/json": components["schemas"]["BodhiErrorResponse"];
|
|
3889
3891
|
};
|
|
3890
3892
|
};
|
|
3891
3893
|
/** @description Internal server error */
|
|
@@ -3894,7 +3896,7 @@ export interface operations {
|
|
|
3894
3896
|
[name: string]: unknown;
|
|
3895
3897
|
};
|
|
3896
3898
|
content: {
|
|
3897
|
-
"application/json": components["schemas"]["
|
|
3899
|
+
"application/json": components["schemas"]["BodhiErrorResponse"];
|
|
3898
3900
|
};
|
|
3899
3901
|
};
|
|
3900
3902
|
};
|
|
@@ -3923,7 +3925,7 @@ export interface operations {
|
|
|
3923
3925
|
[name: string]: unknown;
|
|
3924
3926
|
};
|
|
3925
3927
|
content: {
|
|
3926
|
-
"application/json": components["schemas"]["
|
|
3928
|
+
"application/json": components["schemas"]["BodhiErrorResponse"];
|
|
3927
3929
|
};
|
|
3928
3930
|
};
|
|
3929
3931
|
/** @description Not authenticated */
|
|
@@ -3932,7 +3934,7 @@ export interface operations {
|
|
|
3932
3934
|
[name: string]: unknown;
|
|
3933
3935
|
};
|
|
3934
3936
|
content: {
|
|
3935
|
-
"application/json": components["schemas"]["
|
|
3937
|
+
"application/json": components["schemas"]["BodhiErrorResponse"];
|
|
3936
3938
|
};
|
|
3937
3939
|
};
|
|
3938
3940
|
/** @description Insufficient permissions */
|
|
@@ -3941,7 +3943,7 @@ export interface operations {
|
|
|
3941
3943
|
[name: string]: unknown;
|
|
3942
3944
|
};
|
|
3943
3945
|
content: {
|
|
3944
|
-
"application/json": components["schemas"]["
|
|
3946
|
+
"application/json": components["schemas"]["BodhiErrorResponse"];
|
|
3945
3947
|
};
|
|
3946
3948
|
};
|
|
3947
3949
|
/** @description Internal server error */
|
|
@@ -3950,7 +3952,7 @@ export interface operations {
|
|
|
3950
3952
|
[name: string]: unknown;
|
|
3951
3953
|
};
|
|
3952
3954
|
content: {
|
|
3953
|
-
"application/json": components["schemas"]["
|
|
3955
|
+
"application/json": components["schemas"]["BodhiErrorResponse"];
|
|
3954
3956
|
};
|
|
3955
3957
|
};
|
|
3956
3958
|
};
|
|
@@ -3983,7 +3985,7 @@ export interface operations {
|
|
|
3983
3985
|
[name: string]: unknown;
|
|
3984
3986
|
};
|
|
3985
3987
|
content: {
|
|
3986
|
-
"application/json": components["schemas"]["
|
|
3988
|
+
"application/json": components["schemas"]["BodhiErrorResponse"];
|
|
3987
3989
|
};
|
|
3988
3990
|
};
|
|
3989
3991
|
/** @description Not authenticated */
|
|
@@ -3992,7 +3994,7 @@ export interface operations {
|
|
|
3992
3994
|
[name: string]: unknown;
|
|
3993
3995
|
};
|
|
3994
3996
|
content: {
|
|
3995
|
-
"application/json": components["schemas"]["
|
|
3997
|
+
"application/json": components["schemas"]["BodhiErrorResponse"];
|
|
3996
3998
|
};
|
|
3997
3999
|
};
|
|
3998
4000
|
/** @description Insufficient permissions */
|
|
@@ -4001,7 +4003,7 @@ export interface operations {
|
|
|
4001
4003
|
[name: string]: unknown;
|
|
4002
4004
|
};
|
|
4003
4005
|
content: {
|
|
4004
|
-
"application/json": components["schemas"]["
|
|
4006
|
+
"application/json": components["schemas"]["BodhiErrorResponse"];
|
|
4005
4007
|
};
|
|
4006
4008
|
};
|
|
4007
4009
|
/** @description Internal server error */
|
|
@@ -4010,7 +4012,7 @@ export interface operations {
|
|
|
4010
4012
|
[name: string]: unknown;
|
|
4011
4013
|
};
|
|
4012
4014
|
content: {
|
|
4013
|
-
"application/json": components["schemas"]["
|
|
4015
|
+
"application/json": components["schemas"]["BodhiErrorResponse"];
|
|
4014
4016
|
};
|
|
4015
4017
|
};
|
|
4016
4018
|
};
|
|
@@ -4041,7 +4043,7 @@ export interface operations {
|
|
|
4041
4043
|
[name: string]: unknown;
|
|
4042
4044
|
};
|
|
4043
4045
|
content: {
|
|
4044
|
-
"application/json": components["schemas"]["
|
|
4046
|
+
"application/json": components["schemas"]["BodhiErrorResponse"];
|
|
4045
4047
|
};
|
|
4046
4048
|
};
|
|
4047
4049
|
/** @description Not authenticated */
|
|
@@ -4050,7 +4052,7 @@ export interface operations {
|
|
|
4050
4052
|
[name: string]: unknown;
|
|
4051
4053
|
};
|
|
4052
4054
|
content: {
|
|
4053
|
-
"application/json": components["schemas"]["
|
|
4055
|
+
"application/json": components["schemas"]["BodhiErrorResponse"];
|
|
4054
4056
|
};
|
|
4055
4057
|
};
|
|
4056
4058
|
/** @description Insufficient permissions */
|
|
@@ -4059,7 +4061,7 @@ export interface operations {
|
|
|
4059
4061
|
[name: string]: unknown;
|
|
4060
4062
|
};
|
|
4061
4063
|
content: {
|
|
4062
|
-
"application/json": components["schemas"]["
|
|
4064
|
+
"application/json": components["schemas"]["BodhiErrorResponse"];
|
|
4063
4065
|
};
|
|
4064
4066
|
};
|
|
4065
4067
|
/** @description Internal server error */
|
|
@@ -4068,7 +4070,7 @@ export interface operations {
|
|
|
4068
4070
|
[name: string]: unknown;
|
|
4069
4071
|
};
|
|
4070
4072
|
content: {
|
|
4071
|
-
"application/json": components["schemas"]["
|
|
4073
|
+
"application/json": components["schemas"]["BodhiErrorResponse"];
|
|
4072
4074
|
};
|
|
4073
4075
|
};
|
|
4074
4076
|
};
|
|
@@ -4101,7 +4103,7 @@ export interface operations {
|
|
|
4101
4103
|
[name: string]: unknown;
|
|
4102
4104
|
};
|
|
4103
4105
|
content: {
|
|
4104
|
-
"application/json": components["schemas"]["
|
|
4106
|
+
"application/json": components["schemas"]["BodhiErrorResponse"];
|
|
4105
4107
|
};
|
|
4106
4108
|
};
|
|
4107
4109
|
/** @description Not authenticated */
|
|
@@ -4110,7 +4112,7 @@ export interface operations {
|
|
|
4110
4112
|
[name: string]: unknown;
|
|
4111
4113
|
};
|
|
4112
4114
|
content: {
|
|
4113
|
-
"application/json": components["schemas"]["
|
|
4115
|
+
"application/json": components["schemas"]["BodhiErrorResponse"];
|
|
4114
4116
|
};
|
|
4115
4117
|
};
|
|
4116
4118
|
/** @description Insufficient permissions */
|
|
@@ -4119,7 +4121,7 @@ export interface operations {
|
|
|
4119
4121
|
[name: string]: unknown;
|
|
4120
4122
|
};
|
|
4121
4123
|
content: {
|
|
4122
|
-
"application/json": components["schemas"]["
|
|
4124
|
+
"application/json": components["schemas"]["BodhiErrorResponse"];
|
|
4123
4125
|
};
|
|
4124
4126
|
};
|
|
4125
4127
|
/** @description Internal server error */
|
|
@@ -4128,7 +4130,7 @@ export interface operations {
|
|
|
4128
4130
|
[name: string]: unknown;
|
|
4129
4131
|
};
|
|
4130
4132
|
content: {
|
|
4131
|
-
"application/json": components["schemas"]["
|
|
4133
|
+
"application/json": components["schemas"]["BodhiErrorResponse"];
|
|
4132
4134
|
};
|
|
4133
4135
|
};
|
|
4134
4136
|
};
|
|
@@ -4160,7 +4162,7 @@ export interface operations {
|
|
|
4160
4162
|
[name: string]: unknown;
|
|
4161
4163
|
};
|
|
4162
4164
|
content: {
|
|
4163
|
-
"application/json": components["schemas"]["
|
|
4165
|
+
"application/json": components["schemas"]["BodhiErrorResponse"];
|
|
4164
4166
|
};
|
|
4165
4167
|
};
|
|
4166
4168
|
/** @description Not authenticated */
|
|
@@ -4169,7 +4171,7 @@ export interface operations {
|
|
|
4169
4171
|
[name: string]: unknown;
|
|
4170
4172
|
};
|
|
4171
4173
|
content: {
|
|
4172
|
-
"application/json": components["schemas"]["
|
|
4174
|
+
"application/json": components["schemas"]["BodhiErrorResponse"];
|
|
4173
4175
|
};
|
|
4174
4176
|
};
|
|
4175
4177
|
/** @description Insufficient permissions */
|
|
@@ -4178,7 +4180,7 @@ export interface operations {
|
|
|
4178
4180
|
[name: string]: unknown;
|
|
4179
4181
|
};
|
|
4180
4182
|
content: {
|
|
4181
|
-
"application/json": components["schemas"]["
|
|
4183
|
+
"application/json": components["schemas"]["BodhiErrorResponse"];
|
|
4182
4184
|
};
|
|
4183
4185
|
};
|
|
4184
4186
|
/** @description Not found */
|
|
@@ -4194,7 +4196,7 @@ export interface operations {
|
|
|
4194
4196
|
[name: string]: unknown;
|
|
4195
4197
|
};
|
|
4196
4198
|
content: {
|
|
4197
|
-
"application/json": components["schemas"]["
|
|
4199
|
+
"application/json": components["schemas"]["BodhiErrorResponse"];
|
|
4198
4200
|
};
|
|
4199
4201
|
};
|
|
4200
4202
|
};
|
|
@@ -4224,7 +4226,7 @@ export interface operations {
|
|
|
4224
4226
|
[name: string]: unknown;
|
|
4225
4227
|
};
|
|
4226
4228
|
content: {
|
|
4227
|
-
"application/json": components["schemas"]["
|
|
4229
|
+
"application/json": components["schemas"]["BodhiErrorResponse"];
|
|
4228
4230
|
};
|
|
4229
4231
|
};
|
|
4230
4232
|
/** @description Not authenticated */
|
|
@@ -4233,7 +4235,7 @@ export interface operations {
|
|
|
4233
4235
|
[name: string]: unknown;
|
|
4234
4236
|
};
|
|
4235
4237
|
content: {
|
|
4236
|
-
"application/json": components["schemas"]["
|
|
4238
|
+
"application/json": components["schemas"]["BodhiErrorResponse"];
|
|
4237
4239
|
};
|
|
4238
4240
|
};
|
|
4239
4241
|
/** @description Insufficient permissions */
|
|
@@ -4242,7 +4244,7 @@ export interface operations {
|
|
|
4242
4244
|
[name: string]: unknown;
|
|
4243
4245
|
};
|
|
4244
4246
|
content: {
|
|
4245
|
-
"application/json": components["schemas"]["
|
|
4247
|
+
"application/json": components["schemas"]["BodhiErrorResponse"];
|
|
4246
4248
|
};
|
|
4247
4249
|
};
|
|
4248
4250
|
/** @description Not found */
|
|
@@ -4258,7 +4260,7 @@ export interface operations {
|
|
|
4258
4260
|
[name: string]: unknown;
|
|
4259
4261
|
};
|
|
4260
4262
|
content: {
|
|
4261
|
-
"application/json": components["schemas"]["
|
|
4263
|
+
"application/json": components["schemas"]["BodhiErrorResponse"];
|
|
4262
4264
|
};
|
|
4263
4265
|
};
|
|
4264
4266
|
};
|
|
@@ -4294,7 +4296,7 @@ export interface operations {
|
|
|
4294
4296
|
[name: string]: unknown;
|
|
4295
4297
|
};
|
|
4296
4298
|
content: {
|
|
4297
|
-
"application/json": components["schemas"]["
|
|
4299
|
+
"application/json": components["schemas"]["BodhiErrorResponse"];
|
|
4298
4300
|
};
|
|
4299
4301
|
};
|
|
4300
4302
|
/** @description Not authenticated */
|
|
@@ -4303,7 +4305,7 @@ export interface operations {
|
|
|
4303
4305
|
[name: string]: unknown;
|
|
4304
4306
|
};
|
|
4305
4307
|
content: {
|
|
4306
|
-
"application/json": components["schemas"]["
|
|
4308
|
+
"application/json": components["schemas"]["BodhiErrorResponse"];
|
|
4307
4309
|
};
|
|
4308
4310
|
};
|
|
4309
4311
|
/** @description Insufficient permissions */
|
|
@@ -4312,7 +4314,7 @@ export interface operations {
|
|
|
4312
4314
|
[name: string]: unknown;
|
|
4313
4315
|
};
|
|
4314
4316
|
content: {
|
|
4315
|
-
"application/json": components["schemas"]["
|
|
4317
|
+
"application/json": components["schemas"]["BodhiErrorResponse"];
|
|
4316
4318
|
};
|
|
4317
4319
|
};
|
|
4318
4320
|
/** @description Auth config not found */
|
|
@@ -4328,7 +4330,7 @@ export interface operations {
|
|
|
4328
4330
|
[name: string]: unknown;
|
|
4329
4331
|
};
|
|
4330
4332
|
content: {
|
|
4331
|
-
"application/json": components["schemas"]["
|
|
4333
|
+
"application/json": components["schemas"]["BodhiErrorResponse"];
|
|
4332
4334
|
};
|
|
4333
4335
|
};
|
|
4334
4336
|
};
|
|
@@ -4364,7 +4366,7 @@ export interface operations {
|
|
|
4364
4366
|
[name: string]: unknown;
|
|
4365
4367
|
};
|
|
4366
4368
|
content: {
|
|
4367
|
-
"application/json": components["schemas"]["
|
|
4369
|
+
"application/json": components["schemas"]["BodhiErrorResponse"];
|
|
4368
4370
|
};
|
|
4369
4371
|
};
|
|
4370
4372
|
/** @description Not authenticated */
|
|
@@ -4373,7 +4375,7 @@ export interface operations {
|
|
|
4373
4375
|
[name: string]: unknown;
|
|
4374
4376
|
};
|
|
4375
4377
|
content: {
|
|
4376
|
-
"application/json": components["schemas"]["
|
|
4378
|
+
"application/json": components["schemas"]["BodhiErrorResponse"];
|
|
4377
4379
|
};
|
|
4378
4380
|
};
|
|
4379
4381
|
/** @description Insufficient permissions */
|
|
@@ -4382,7 +4384,7 @@ export interface operations {
|
|
|
4382
4384
|
[name: string]: unknown;
|
|
4383
4385
|
};
|
|
4384
4386
|
content: {
|
|
4385
|
-
"application/json": components["schemas"]["
|
|
4387
|
+
"application/json": components["schemas"]["BodhiErrorResponse"];
|
|
4386
4388
|
};
|
|
4387
4389
|
};
|
|
4388
4390
|
/** @description Auth config not found */
|
|
@@ -4398,7 +4400,7 @@ export interface operations {
|
|
|
4398
4400
|
[name: string]: unknown;
|
|
4399
4401
|
};
|
|
4400
4402
|
content: {
|
|
4401
|
-
"application/json": components["schemas"]["
|
|
4403
|
+
"application/json": components["schemas"]["BodhiErrorResponse"];
|
|
4402
4404
|
};
|
|
4403
4405
|
};
|
|
4404
4406
|
};
|
|
@@ -4430,7 +4432,7 @@ export interface operations {
|
|
|
4430
4432
|
[name: string]: unknown;
|
|
4431
4433
|
};
|
|
4432
4434
|
content: {
|
|
4433
|
-
"application/json": components["schemas"]["
|
|
4435
|
+
"application/json": components["schemas"]["BodhiErrorResponse"];
|
|
4434
4436
|
};
|
|
4435
4437
|
};
|
|
4436
4438
|
/** @description Not authenticated */
|
|
@@ -4439,7 +4441,7 @@ export interface operations {
|
|
|
4439
4441
|
[name: string]: unknown;
|
|
4440
4442
|
};
|
|
4441
4443
|
content: {
|
|
4442
|
-
"application/json": components["schemas"]["
|
|
4444
|
+
"application/json": components["schemas"]["BodhiErrorResponse"];
|
|
4443
4445
|
};
|
|
4444
4446
|
};
|
|
4445
4447
|
/** @description Insufficient permissions */
|
|
@@ -4448,7 +4450,7 @@ export interface operations {
|
|
|
4448
4450
|
[name: string]: unknown;
|
|
4449
4451
|
};
|
|
4450
4452
|
content: {
|
|
4451
|
-
"application/json": components["schemas"]["
|
|
4453
|
+
"application/json": components["schemas"]["BodhiErrorResponse"];
|
|
4452
4454
|
};
|
|
4453
4455
|
};
|
|
4454
4456
|
/** @description Not found */
|
|
@@ -4464,7 +4466,7 @@ export interface operations {
|
|
|
4464
4466
|
[name: string]: unknown;
|
|
4465
4467
|
};
|
|
4466
4468
|
content: {
|
|
4467
|
-
"application/json": components["schemas"]["
|
|
4469
|
+
"application/json": components["schemas"]["BodhiErrorResponse"];
|
|
4468
4470
|
};
|
|
4469
4471
|
};
|
|
4470
4472
|
};
|
|
@@ -4494,7 +4496,7 @@ export interface operations {
|
|
|
4494
4496
|
[name: string]: unknown;
|
|
4495
4497
|
};
|
|
4496
4498
|
content: {
|
|
4497
|
-
"application/json": components["schemas"]["
|
|
4499
|
+
"application/json": components["schemas"]["BodhiErrorResponse"];
|
|
4498
4500
|
};
|
|
4499
4501
|
};
|
|
4500
4502
|
/** @description Not authenticated */
|
|
@@ -4503,7 +4505,7 @@ export interface operations {
|
|
|
4503
4505
|
[name: string]: unknown;
|
|
4504
4506
|
};
|
|
4505
4507
|
content: {
|
|
4506
|
-
"application/json": components["schemas"]["
|
|
4508
|
+
"application/json": components["schemas"]["BodhiErrorResponse"];
|
|
4507
4509
|
};
|
|
4508
4510
|
};
|
|
4509
4511
|
/** @description Insufficient permissions */
|
|
@@ -4512,7 +4514,7 @@ export interface operations {
|
|
|
4512
4514
|
[name: string]: unknown;
|
|
4513
4515
|
};
|
|
4514
4516
|
content: {
|
|
4515
|
-
"application/json": components["schemas"]["
|
|
4517
|
+
"application/json": components["schemas"]["BodhiErrorResponse"];
|
|
4516
4518
|
};
|
|
4517
4519
|
};
|
|
4518
4520
|
/** @description Not found */
|
|
@@ -4528,7 +4530,7 @@ export interface operations {
|
|
|
4528
4530
|
[name: string]: unknown;
|
|
4529
4531
|
};
|
|
4530
4532
|
content: {
|
|
4531
|
-
"application/json": components["schemas"]["
|
|
4533
|
+
"application/json": components["schemas"]["BodhiErrorResponse"];
|
|
4532
4534
|
};
|
|
4533
4535
|
};
|
|
4534
4536
|
};
|
|
@@ -4561,7 +4563,7 @@ export interface operations {
|
|
|
4561
4563
|
[name: string]: unknown;
|
|
4562
4564
|
};
|
|
4563
4565
|
content: {
|
|
4564
|
-
"application/json": components["schemas"]["
|
|
4566
|
+
"application/json": components["schemas"]["BodhiErrorResponse"];
|
|
4565
4567
|
};
|
|
4566
4568
|
};
|
|
4567
4569
|
/** @description Not authenticated */
|
|
@@ -4570,7 +4572,7 @@ export interface operations {
|
|
|
4570
4572
|
[name: string]: unknown;
|
|
4571
4573
|
};
|
|
4572
4574
|
content: {
|
|
4573
|
-
"application/json": components["schemas"]["
|
|
4575
|
+
"application/json": components["schemas"]["BodhiErrorResponse"];
|
|
4574
4576
|
};
|
|
4575
4577
|
};
|
|
4576
4578
|
/** @description Insufficient permissions */
|
|
@@ -4579,7 +4581,7 @@ export interface operations {
|
|
|
4579
4581
|
[name: string]: unknown;
|
|
4580
4582
|
};
|
|
4581
4583
|
content: {
|
|
4582
|
-
"application/json": components["schemas"]["
|
|
4584
|
+
"application/json": components["schemas"]["BodhiErrorResponse"];
|
|
4583
4585
|
};
|
|
4584
4586
|
};
|
|
4585
4587
|
/** @description Internal server error */
|
|
@@ -4588,7 +4590,7 @@ export interface operations {
|
|
|
4588
4590
|
[name: string]: unknown;
|
|
4589
4591
|
};
|
|
4590
4592
|
content: {
|
|
4591
|
-
"application/json": components["schemas"]["
|
|
4593
|
+
"application/json": components["schemas"]["BodhiErrorResponse"];
|
|
4592
4594
|
};
|
|
4593
4595
|
};
|
|
4594
4596
|
};
|
|
@@ -4621,7 +4623,7 @@ export interface operations {
|
|
|
4621
4623
|
[name: string]: unknown;
|
|
4622
4624
|
};
|
|
4623
4625
|
content: {
|
|
4624
|
-
"application/json": components["schemas"]["
|
|
4626
|
+
"application/json": components["schemas"]["BodhiErrorResponse"];
|
|
4625
4627
|
};
|
|
4626
4628
|
};
|
|
4627
4629
|
/** @description Not authenticated */
|
|
@@ -4630,7 +4632,7 @@ export interface operations {
|
|
|
4630
4632
|
[name: string]: unknown;
|
|
4631
4633
|
};
|
|
4632
4634
|
content: {
|
|
4633
|
-
"application/json": components["schemas"]["
|
|
4635
|
+
"application/json": components["schemas"]["BodhiErrorResponse"];
|
|
4634
4636
|
};
|
|
4635
4637
|
};
|
|
4636
4638
|
/** @description Insufficient permissions */
|
|
@@ -4639,7 +4641,7 @@ export interface operations {
|
|
|
4639
4641
|
[name: string]: unknown;
|
|
4640
4642
|
};
|
|
4641
4643
|
content: {
|
|
4642
|
-
"application/json": components["schemas"]["
|
|
4644
|
+
"application/json": components["schemas"]["BodhiErrorResponse"];
|
|
4643
4645
|
};
|
|
4644
4646
|
};
|
|
4645
4647
|
/** @description Internal server error */
|
|
@@ -4648,7 +4650,7 @@ export interface operations {
|
|
|
4648
4650
|
[name: string]: unknown;
|
|
4649
4651
|
};
|
|
4650
4652
|
content: {
|
|
4651
|
-
"application/json": components["schemas"]["
|
|
4653
|
+
"application/json": components["schemas"]["BodhiErrorResponse"];
|
|
4652
4654
|
};
|
|
4653
4655
|
};
|
|
4654
4656
|
};
|
|
@@ -4681,7 +4683,7 @@ export interface operations {
|
|
|
4681
4683
|
[name: string]: unknown;
|
|
4682
4684
|
};
|
|
4683
4685
|
content: {
|
|
4684
|
-
"application/json": components["schemas"]["
|
|
4686
|
+
"application/json": components["schemas"]["BodhiErrorResponse"];
|
|
4685
4687
|
};
|
|
4686
4688
|
};
|
|
4687
4689
|
/** @description Not authenticated */
|
|
@@ -4690,7 +4692,7 @@ export interface operations {
|
|
|
4690
4692
|
[name: string]: unknown;
|
|
4691
4693
|
};
|
|
4692
4694
|
content: {
|
|
4693
|
-
"application/json": components["schemas"]["
|
|
4695
|
+
"application/json": components["schemas"]["BodhiErrorResponse"];
|
|
4694
4696
|
};
|
|
4695
4697
|
};
|
|
4696
4698
|
/** @description Insufficient permissions */
|
|
@@ -4699,7 +4701,7 @@ export interface operations {
|
|
|
4699
4701
|
[name: string]: unknown;
|
|
4700
4702
|
};
|
|
4701
4703
|
content: {
|
|
4702
|
-
"application/json": components["schemas"]["
|
|
4704
|
+
"application/json": components["schemas"]["BodhiErrorResponse"];
|
|
4703
4705
|
};
|
|
4704
4706
|
};
|
|
4705
4707
|
/** @description Internal server error */
|
|
@@ -4708,7 +4710,7 @@ export interface operations {
|
|
|
4708
4710
|
[name: string]: unknown;
|
|
4709
4711
|
};
|
|
4710
4712
|
content: {
|
|
4711
|
-
"application/json": components["schemas"]["
|
|
4713
|
+
"application/json": components["schemas"]["BodhiErrorResponse"];
|
|
4712
4714
|
};
|
|
4713
4715
|
};
|
|
4714
4716
|
};
|
|
@@ -4740,7 +4742,7 @@ export interface operations {
|
|
|
4740
4742
|
[name: string]: unknown;
|
|
4741
4743
|
};
|
|
4742
4744
|
content: {
|
|
4743
|
-
"application/json": components["schemas"]["
|
|
4745
|
+
"application/json": components["schemas"]["BodhiErrorResponse"];
|
|
4744
4746
|
};
|
|
4745
4747
|
};
|
|
4746
4748
|
/** @description Not authenticated */
|
|
@@ -4749,7 +4751,7 @@ export interface operations {
|
|
|
4749
4751
|
[name: string]: unknown;
|
|
4750
4752
|
};
|
|
4751
4753
|
content: {
|
|
4752
|
-
"application/json": components["schemas"]["
|
|
4754
|
+
"application/json": components["schemas"]["BodhiErrorResponse"];
|
|
4753
4755
|
};
|
|
4754
4756
|
};
|
|
4755
4757
|
/** @description Insufficient permissions */
|
|
@@ -4758,7 +4760,7 @@ export interface operations {
|
|
|
4758
4760
|
[name: string]: unknown;
|
|
4759
4761
|
};
|
|
4760
4762
|
content: {
|
|
4761
|
-
"application/json": components["schemas"]["
|
|
4763
|
+
"application/json": components["schemas"]["BodhiErrorResponse"];
|
|
4762
4764
|
};
|
|
4763
4765
|
};
|
|
4764
4766
|
/** @description Internal server error */
|
|
@@ -4767,7 +4769,7 @@ export interface operations {
|
|
|
4767
4769
|
[name: string]: unknown;
|
|
4768
4770
|
};
|
|
4769
4771
|
content: {
|
|
4770
|
-
"application/json": components["schemas"]["
|
|
4772
|
+
"application/json": components["schemas"]["BodhiErrorResponse"];
|
|
4771
4773
|
};
|
|
4772
4774
|
};
|
|
4773
4775
|
};
|
|
@@ -4800,7 +4802,7 @@ export interface operations {
|
|
|
4800
4802
|
[name: string]: unknown;
|
|
4801
4803
|
};
|
|
4802
4804
|
content: {
|
|
4803
|
-
"application/json": components["schemas"]["
|
|
4805
|
+
"application/json": components["schemas"]["BodhiErrorResponse"];
|
|
4804
4806
|
};
|
|
4805
4807
|
};
|
|
4806
4808
|
/** @description Not authenticated */
|
|
@@ -4809,7 +4811,7 @@ export interface operations {
|
|
|
4809
4811
|
[name: string]: unknown;
|
|
4810
4812
|
};
|
|
4811
4813
|
content: {
|
|
4812
|
-
"application/json": components["schemas"]["
|
|
4814
|
+
"application/json": components["schemas"]["BodhiErrorResponse"];
|
|
4813
4815
|
};
|
|
4814
4816
|
};
|
|
4815
4817
|
/** @description Insufficient permissions */
|
|
@@ -4818,7 +4820,7 @@ export interface operations {
|
|
|
4818
4820
|
[name: string]: unknown;
|
|
4819
4821
|
};
|
|
4820
4822
|
content: {
|
|
4821
|
-
"application/json": components["schemas"]["
|
|
4823
|
+
"application/json": components["schemas"]["BodhiErrorResponse"];
|
|
4822
4824
|
};
|
|
4823
4825
|
};
|
|
4824
4826
|
/** @description URL already exists */
|
|
@@ -4834,7 +4836,7 @@ export interface operations {
|
|
|
4834
4836
|
[name: string]: unknown;
|
|
4835
4837
|
};
|
|
4836
4838
|
content: {
|
|
4837
|
-
"application/json": components["schemas"]["
|
|
4839
|
+
"application/json": components["schemas"]["BodhiErrorResponse"];
|
|
4838
4840
|
};
|
|
4839
4841
|
};
|
|
4840
4842
|
};
|
|
@@ -4866,7 +4868,7 @@ export interface operations {
|
|
|
4866
4868
|
[name: string]: unknown;
|
|
4867
4869
|
};
|
|
4868
4870
|
content: {
|
|
4869
|
-
"application/json": components["schemas"]["
|
|
4871
|
+
"application/json": components["schemas"]["BodhiErrorResponse"];
|
|
4870
4872
|
};
|
|
4871
4873
|
};
|
|
4872
4874
|
/** @description Not authenticated */
|
|
@@ -4875,7 +4877,7 @@ export interface operations {
|
|
|
4875
4877
|
[name: string]: unknown;
|
|
4876
4878
|
};
|
|
4877
4879
|
content: {
|
|
4878
|
-
"application/json": components["schemas"]["
|
|
4880
|
+
"application/json": components["schemas"]["BodhiErrorResponse"];
|
|
4879
4881
|
};
|
|
4880
4882
|
};
|
|
4881
4883
|
/** @description Insufficient permissions */
|
|
@@ -4884,7 +4886,7 @@ export interface operations {
|
|
|
4884
4886
|
[name: string]: unknown;
|
|
4885
4887
|
};
|
|
4886
4888
|
content: {
|
|
4887
|
-
"application/json": components["schemas"]["
|
|
4889
|
+
"application/json": components["schemas"]["BodhiErrorResponse"];
|
|
4888
4890
|
};
|
|
4889
4891
|
};
|
|
4890
4892
|
/** @description Not found */
|
|
@@ -4900,7 +4902,7 @@ export interface operations {
|
|
|
4900
4902
|
[name: string]: unknown;
|
|
4901
4903
|
};
|
|
4902
4904
|
content: {
|
|
4903
|
-
"application/json": components["schemas"]["
|
|
4905
|
+
"application/json": components["schemas"]["BodhiErrorResponse"];
|
|
4904
4906
|
};
|
|
4905
4907
|
};
|
|
4906
4908
|
};
|
|
@@ -4936,7 +4938,7 @@ export interface operations {
|
|
|
4936
4938
|
[name: string]: unknown;
|
|
4937
4939
|
};
|
|
4938
4940
|
content: {
|
|
4939
|
-
"application/json": components["schemas"]["
|
|
4941
|
+
"application/json": components["schemas"]["BodhiErrorResponse"];
|
|
4940
4942
|
};
|
|
4941
4943
|
};
|
|
4942
4944
|
/** @description Not authenticated */
|
|
@@ -4945,7 +4947,7 @@ export interface operations {
|
|
|
4945
4947
|
[name: string]: unknown;
|
|
4946
4948
|
};
|
|
4947
4949
|
content: {
|
|
4948
|
-
"application/json": components["schemas"]["
|
|
4950
|
+
"application/json": components["schemas"]["BodhiErrorResponse"];
|
|
4949
4951
|
};
|
|
4950
4952
|
};
|
|
4951
4953
|
/** @description Insufficient permissions */
|
|
@@ -4954,7 +4956,7 @@ export interface operations {
|
|
|
4954
4956
|
[name: string]: unknown;
|
|
4955
4957
|
};
|
|
4956
4958
|
content: {
|
|
4957
|
-
"application/json": components["schemas"]["
|
|
4959
|
+
"application/json": components["schemas"]["BodhiErrorResponse"];
|
|
4958
4960
|
};
|
|
4959
4961
|
};
|
|
4960
4962
|
/** @description Not found */
|
|
@@ -4977,7 +4979,7 @@ export interface operations {
|
|
|
4977
4979
|
[name: string]: unknown;
|
|
4978
4980
|
};
|
|
4979
4981
|
content: {
|
|
4980
|
-
"application/json": components["schemas"]["
|
|
4982
|
+
"application/json": components["schemas"]["BodhiErrorResponse"];
|
|
4981
4983
|
};
|
|
4982
4984
|
};
|
|
4983
4985
|
};
|
|
@@ -5009,7 +5011,7 @@ export interface operations {
|
|
|
5009
5011
|
[name: string]: unknown;
|
|
5010
5012
|
};
|
|
5011
5013
|
content: {
|
|
5012
|
-
"application/json": components["schemas"]["
|
|
5014
|
+
"application/json": components["schemas"]["BodhiErrorResponse"];
|
|
5013
5015
|
};
|
|
5014
5016
|
};
|
|
5015
5017
|
/** @description Not authenticated */
|
|
@@ -5018,7 +5020,7 @@ export interface operations {
|
|
|
5018
5020
|
[name: string]: unknown;
|
|
5019
5021
|
};
|
|
5020
5022
|
content: {
|
|
5021
|
-
"application/json": components["schemas"]["
|
|
5023
|
+
"application/json": components["schemas"]["BodhiErrorResponse"];
|
|
5022
5024
|
};
|
|
5023
5025
|
};
|
|
5024
5026
|
/** @description Insufficient permissions */
|
|
@@ -5027,7 +5029,7 @@ export interface operations {
|
|
|
5027
5029
|
[name: string]: unknown;
|
|
5028
5030
|
};
|
|
5029
5031
|
content: {
|
|
5030
|
-
"application/json": components["schemas"]["
|
|
5032
|
+
"application/json": components["schemas"]["BodhiErrorResponse"];
|
|
5031
5033
|
};
|
|
5032
5034
|
};
|
|
5033
5035
|
/** @description MCP not found */
|
|
@@ -5043,7 +5045,7 @@ export interface operations {
|
|
|
5043
5045
|
[name: string]: unknown;
|
|
5044
5046
|
};
|
|
5045
5047
|
content: {
|
|
5046
|
-
"application/json": components["schemas"]["
|
|
5048
|
+
"application/json": components["schemas"]["BodhiErrorResponse"];
|
|
5047
5049
|
};
|
|
5048
5050
|
};
|
|
5049
5051
|
};
|
|
@@ -5079,7 +5081,7 @@ export interface operations {
|
|
|
5079
5081
|
[name: string]: unknown;
|
|
5080
5082
|
};
|
|
5081
5083
|
content: {
|
|
5082
|
-
"application/json": components["schemas"]["
|
|
5084
|
+
"application/json": components["schemas"]["BodhiErrorResponse"];
|
|
5083
5085
|
};
|
|
5084
5086
|
};
|
|
5085
5087
|
/** @description Not authenticated */
|
|
@@ -5088,7 +5090,7 @@ export interface operations {
|
|
|
5088
5090
|
[name: string]: unknown;
|
|
5089
5091
|
};
|
|
5090
5092
|
content: {
|
|
5091
|
-
"application/json": components["schemas"]["
|
|
5093
|
+
"application/json": components["schemas"]["BodhiErrorResponse"];
|
|
5092
5094
|
};
|
|
5093
5095
|
};
|
|
5094
5096
|
/** @description Insufficient permissions */
|
|
@@ -5097,7 +5099,7 @@ export interface operations {
|
|
|
5097
5099
|
[name: string]: unknown;
|
|
5098
5100
|
};
|
|
5099
5101
|
content: {
|
|
5100
|
-
"application/json": components["schemas"]["
|
|
5102
|
+
"application/json": components["schemas"]["BodhiErrorResponse"];
|
|
5101
5103
|
};
|
|
5102
5104
|
};
|
|
5103
5105
|
/** @description MCP not found */
|
|
@@ -5113,7 +5115,7 @@ export interface operations {
|
|
|
5113
5115
|
[name: string]: unknown;
|
|
5114
5116
|
};
|
|
5115
5117
|
content: {
|
|
5116
|
-
"application/json": components["schemas"]["
|
|
5118
|
+
"application/json": components["schemas"]["BodhiErrorResponse"];
|
|
5117
5119
|
};
|
|
5118
5120
|
};
|
|
5119
5121
|
};
|
|
@@ -5143,7 +5145,7 @@ export interface operations {
|
|
|
5143
5145
|
[name: string]: unknown;
|
|
5144
5146
|
};
|
|
5145
5147
|
content: {
|
|
5146
|
-
"application/json": components["schemas"]["
|
|
5148
|
+
"application/json": components["schemas"]["BodhiErrorResponse"];
|
|
5147
5149
|
};
|
|
5148
5150
|
};
|
|
5149
5151
|
/** @description Not authenticated */
|
|
@@ -5152,7 +5154,7 @@ export interface operations {
|
|
|
5152
5154
|
[name: string]: unknown;
|
|
5153
5155
|
};
|
|
5154
5156
|
content: {
|
|
5155
|
-
"application/json": components["schemas"]["
|
|
5157
|
+
"application/json": components["schemas"]["BodhiErrorResponse"];
|
|
5156
5158
|
};
|
|
5157
5159
|
};
|
|
5158
5160
|
/** @description Insufficient permissions */
|
|
@@ -5161,7 +5163,7 @@ export interface operations {
|
|
|
5161
5163
|
[name: string]: unknown;
|
|
5162
5164
|
};
|
|
5163
5165
|
content: {
|
|
5164
|
-
"application/json": components["schemas"]["
|
|
5166
|
+
"application/json": components["schemas"]["BodhiErrorResponse"];
|
|
5165
5167
|
};
|
|
5166
5168
|
};
|
|
5167
5169
|
/** @description MCP not found */
|
|
@@ -5177,7 +5179,7 @@ export interface operations {
|
|
|
5177
5179
|
[name: string]: unknown;
|
|
5178
5180
|
};
|
|
5179
5181
|
content: {
|
|
5180
|
-
"application/json": components["schemas"]["
|
|
5182
|
+
"application/json": components["schemas"]["BodhiErrorResponse"];
|
|
5181
5183
|
};
|
|
5182
5184
|
};
|
|
5183
5185
|
};
|
|
@@ -5256,7 +5258,7 @@ export interface operations {
|
|
|
5256
5258
|
[name: string]: unknown;
|
|
5257
5259
|
};
|
|
5258
5260
|
content: {
|
|
5259
|
-
"application/json": components["schemas"]["
|
|
5261
|
+
"application/json": components["schemas"]["BodhiErrorResponse"];
|
|
5260
5262
|
};
|
|
5261
5263
|
};
|
|
5262
5264
|
/** @description Not authenticated */
|
|
@@ -5265,7 +5267,7 @@ export interface operations {
|
|
|
5265
5267
|
[name: string]: unknown;
|
|
5266
5268
|
};
|
|
5267
5269
|
content: {
|
|
5268
|
-
"application/json": components["schemas"]["
|
|
5270
|
+
"application/json": components["schemas"]["BodhiErrorResponse"];
|
|
5269
5271
|
};
|
|
5270
5272
|
};
|
|
5271
5273
|
/** @description Insufficient permissions */
|
|
@@ -5274,7 +5276,7 @@ export interface operations {
|
|
|
5274
5276
|
[name: string]: unknown;
|
|
5275
5277
|
};
|
|
5276
5278
|
content: {
|
|
5277
|
-
"application/json": components["schemas"]["
|
|
5279
|
+
"application/json": components["schemas"]["BodhiErrorResponse"];
|
|
5278
5280
|
};
|
|
5279
5281
|
};
|
|
5280
5282
|
/** @description Internal server error */
|
|
@@ -5283,7 +5285,7 @@ export interface operations {
|
|
|
5283
5285
|
[name: string]: unknown;
|
|
5284
5286
|
};
|
|
5285
5287
|
content: {
|
|
5286
|
-
"application/json": components["schemas"]["
|
|
5288
|
+
"application/json": components["schemas"]["BodhiErrorResponse"];
|
|
5287
5289
|
};
|
|
5288
5290
|
};
|
|
5289
5291
|
};
|
|
@@ -5316,7 +5318,7 @@ export interface operations {
|
|
|
5316
5318
|
[name: string]: unknown;
|
|
5317
5319
|
};
|
|
5318
5320
|
content: {
|
|
5319
|
-
"application/json": components["schemas"]["
|
|
5321
|
+
"application/json": components["schemas"]["BodhiErrorResponse"];
|
|
5320
5322
|
};
|
|
5321
5323
|
};
|
|
5322
5324
|
/** @description Not authenticated */
|
|
@@ -5325,7 +5327,7 @@ export interface operations {
|
|
|
5325
5327
|
[name: string]: unknown;
|
|
5326
5328
|
};
|
|
5327
5329
|
content: {
|
|
5328
|
-
"application/json": components["schemas"]["
|
|
5330
|
+
"application/json": components["schemas"]["BodhiErrorResponse"];
|
|
5329
5331
|
};
|
|
5330
5332
|
};
|
|
5331
5333
|
/** @description Insufficient permissions */
|
|
@@ -5334,7 +5336,7 @@ export interface operations {
|
|
|
5334
5336
|
[name: string]: unknown;
|
|
5335
5337
|
};
|
|
5336
5338
|
content: {
|
|
5337
|
-
"application/json": components["schemas"]["
|
|
5339
|
+
"application/json": components["schemas"]["BodhiErrorResponse"];
|
|
5338
5340
|
};
|
|
5339
5341
|
};
|
|
5340
5342
|
/** @description Internal server error */
|
|
@@ -5343,7 +5345,7 @@ export interface operations {
|
|
|
5343
5345
|
[name: string]: unknown;
|
|
5344
5346
|
};
|
|
5345
5347
|
content: {
|
|
5346
|
-
"application/json": components["schemas"]["
|
|
5348
|
+
"application/json": components["schemas"]["BodhiErrorResponse"];
|
|
5347
5349
|
};
|
|
5348
5350
|
};
|
|
5349
5351
|
};
|
|
@@ -5379,7 +5381,7 @@ export interface operations {
|
|
|
5379
5381
|
[name: string]: unknown;
|
|
5380
5382
|
};
|
|
5381
5383
|
content: {
|
|
5382
|
-
"application/json": components["schemas"]["
|
|
5384
|
+
"application/json": components["schemas"]["BodhiErrorResponse"];
|
|
5383
5385
|
};
|
|
5384
5386
|
};
|
|
5385
5387
|
/** @description Not authenticated */
|
|
@@ -5388,7 +5390,7 @@ export interface operations {
|
|
|
5388
5390
|
[name: string]: unknown;
|
|
5389
5391
|
};
|
|
5390
5392
|
content: {
|
|
5391
|
-
"application/json": components["schemas"]["
|
|
5393
|
+
"application/json": components["schemas"]["BodhiErrorResponse"];
|
|
5392
5394
|
};
|
|
5393
5395
|
};
|
|
5394
5396
|
/** @description Insufficient permissions */
|
|
@@ -5397,7 +5399,7 @@ export interface operations {
|
|
|
5397
5399
|
[name: string]: unknown;
|
|
5398
5400
|
};
|
|
5399
5401
|
content: {
|
|
5400
|
-
"application/json": components["schemas"]["
|
|
5402
|
+
"application/json": components["schemas"]["BodhiErrorResponse"];
|
|
5401
5403
|
};
|
|
5402
5404
|
};
|
|
5403
5405
|
/** @description Internal server error */
|
|
@@ -5406,7 +5408,7 @@ export interface operations {
|
|
|
5406
5408
|
[name: string]: unknown;
|
|
5407
5409
|
};
|
|
5408
5410
|
content: {
|
|
5409
|
-
"application/json": components["schemas"]["
|
|
5411
|
+
"application/json": components["schemas"]["BodhiErrorResponse"];
|
|
5410
5412
|
};
|
|
5411
5413
|
};
|
|
5412
5414
|
};
|
|
@@ -5436,7 +5438,7 @@ export interface operations {
|
|
|
5436
5438
|
[name: string]: unknown;
|
|
5437
5439
|
};
|
|
5438
5440
|
content: {
|
|
5439
|
-
"application/json": components["schemas"]["
|
|
5441
|
+
"application/json": components["schemas"]["BodhiErrorResponse"];
|
|
5440
5442
|
};
|
|
5441
5443
|
};
|
|
5442
5444
|
/** @description Not authenticated */
|
|
@@ -5445,7 +5447,7 @@ export interface operations {
|
|
|
5445
5447
|
[name: string]: unknown;
|
|
5446
5448
|
};
|
|
5447
5449
|
content: {
|
|
5448
|
-
"application/json": components["schemas"]["
|
|
5450
|
+
"application/json": components["schemas"]["BodhiErrorResponse"];
|
|
5449
5451
|
};
|
|
5450
5452
|
};
|
|
5451
5453
|
/** @description Insufficient permissions */
|
|
@@ -5454,7 +5456,7 @@ export interface operations {
|
|
|
5454
5456
|
[name: string]: unknown;
|
|
5455
5457
|
};
|
|
5456
5458
|
content: {
|
|
5457
|
-
"application/json": components["schemas"]["
|
|
5459
|
+
"application/json": components["schemas"]["BodhiErrorResponse"];
|
|
5458
5460
|
};
|
|
5459
5461
|
};
|
|
5460
5462
|
/** @description Alias not found */
|
|
@@ -5470,7 +5472,7 @@ export interface operations {
|
|
|
5470
5472
|
[name: string]: unknown;
|
|
5471
5473
|
};
|
|
5472
5474
|
content: {
|
|
5473
|
-
"application/json": components["schemas"]["
|
|
5475
|
+
"application/json": components["schemas"]["BodhiErrorResponse"];
|
|
5474
5476
|
};
|
|
5475
5477
|
};
|
|
5476
5478
|
};
|
|
@@ -5506,7 +5508,7 @@ export interface operations {
|
|
|
5506
5508
|
[name: string]: unknown;
|
|
5507
5509
|
};
|
|
5508
5510
|
content: {
|
|
5509
|
-
"application/json": components["schemas"]["
|
|
5511
|
+
"application/json": components["schemas"]["BodhiErrorResponse"];
|
|
5510
5512
|
};
|
|
5511
5513
|
};
|
|
5512
5514
|
/** @description Not authenticated */
|
|
@@ -5515,7 +5517,7 @@ export interface operations {
|
|
|
5515
5517
|
[name: string]: unknown;
|
|
5516
5518
|
};
|
|
5517
5519
|
content: {
|
|
5518
|
-
"application/json": components["schemas"]["
|
|
5520
|
+
"application/json": components["schemas"]["BodhiErrorResponse"];
|
|
5519
5521
|
};
|
|
5520
5522
|
};
|
|
5521
5523
|
/** @description Insufficient permissions */
|
|
@@ -5524,7 +5526,7 @@ export interface operations {
|
|
|
5524
5526
|
[name: string]: unknown;
|
|
5525
5527
|
};
|
|
5526
5528
|
content: {
|
|
5527
|
-
"application/json": components["schemas"]["
|
|
5529
|
+
"application/json": components["schemas"]["BodhiErrorResponse"];
|
|
5528
5530
|
};
|
|
5529
5531
|
};
|
|
5530
5532
|
/** @description Source alias not found */
|
|
@@ -5540,7 +5542,7 @@ export interface operations {
|
|
|
5540
5542
|
[name: string]: unknown;
|
|
5541
5543
|
};
|
|
5542
5544
|
content: {
|
|
5543
|
-
"application/json": components["schemas"]["
|
|
5545
|
+
"application/json": components["schemas"]["BodhiErrorResponse"];
|
|
5544
5546
|
};
|
|
5545
5547
|
};
|
|
5546
5548
|
};
|
|
@@ -5573,7 +5575,7 @@ export interface operations {
|
|
|
5573
5575
|
[name: string]: unknown;
|
|
5574
5576
|
};
|
|
5575
5577
|
content: {
|
|
5576
|
-
"application/json": components["schemas"]["
|
|
5578
|
+
"application/json": components["schemas"]["BodhiErrorResponse"];
|
|
5577
5579
|
};
|
|
5578
5580
|
};
|
|
5579
5581
|
/** @description Not authenticated */
|
|
@@ -5582,7 +5584,7 @@ export interface operations {
|
|
|
5582
5584
|
[name: string]: unknown;
|
|
5583
5585
|
};
|
|
5584
5586
|
content: {
|
|
5585
|
-
"application/json": components["schemas"]["
|
|
5587
|
+
"application/json": components["schemas"]["BodhiErrorResponse"];
|
|
5586
5588
|
};
|
|
5587
5589
|
};
|
|
5588
5590
|
/** @description Insufficient permissions */
|
|
@@ -5591,7 +5593,7 @@ export interface operations {
|
|
|
5591
5593
|
[name: string]: unknown;
|
|
5592
5594
|
};
|
|
5593
5595
|
content: {
|
|
5594
|
-
"application/json": components["schemas"]["
|
|
5596
|
+
"application/json": components["schemas"]["BodhiErrorResponse"];
|
|
5595
5597
|
};
|
|
5596
5598
|
};
|
|
5597
5599
|
/** @description Alias already exists */
|
|
@@ -5600,7 +5602,7 @@ export interface operations {
|
|
|
5600
5602
|
[name: string]: unknown;
|
|
5601
5603
|
};
|
|
5602
5604
|
content: {
|
|
5603
|
-
"application/json": components["schemas"]["
|
|
5605
|
+
"application/json": components["schemas"]["BodhiErrorResponse"];
|
|
5604
5606
|
};
|
|
5605
5607
|
};
|
|
5606
5608
|
/** @description Internal server error */
|
|
@@ -5609,7 +5611,7 @@ export interface operations {
|
|
|
5609
5611
|
[name: string]: unknown;
|
|
5610
5612
|
};
|
|
5611
5613
|
content: {
|
|
5612
|
-
"application/json": components["schemas"]["
|
|
5614
|
+
"application/json": components["schemas"]["BodhiErrorResponse"];
|
|
5613
5615
|
};
|
|
5614
5616
|
};
|
|
5615
5617
|
};
|
|
@@ -5642,7 +5644,7 @@ export interface operations {
|
|
|
5642
5644
|
[name: string]: unknown;
|
|
5643
5645
|
};
|
|
5644
5646
|
content: {
|
|
5645
|
-
"application/json": components["schemas"]["
|
|
5647
|
+
"application/json": components["schemas"]["BodhiErrorResponse"];
|
|
5646
5648
|
};
|
|
5647
5649
|
};
|
|
5648
5650
|
/** @description Not authenticated */
|
|
@@ -5651,7 +5653,7 @@ export interface operations {
|
|
|
5651
5653
|
[name: string]: unknown;
|
|
5652
5654
|
};
|
|
5653
5655
|
content: {
|
|
5654
|
-
"application/json": components["schemas"]["
|
|
5656
|
+
"application/json": components["schemas"]["BodhiErrorResponse"];
|
|
5655
5657
|
};
|
|
5656
5658
|
};
|
|
5657
5659
|
/** @description Insufficient permissions */
|
|
@@ -5660,7 +5662,7 @@ export interface operations {
|
|
|
5660
5662
|
[name: string]: unknown;
|
|
5661
5663
|
};
|
|
5662
5664
|
content: {
|
|
5663
|
-
"application/json": components["schemas"]["
|
|
5665
|
+
"application/json": components["schemas"]["BodhiErrorResponse"];
|
|
5664
5666
|
};
|
|
5665
5667
|
};
|
|
5666
5668
|
/** @description Internal server error */
|
|
@@ -5669,7 +5671,7 @@ export interface operations {
|
|
|
5669
5671
|
[name: string]: unknown;
|
|
5670
5672
|
};
|
|
5671
5673
|
content: {
|
|
5672
|
-
"application/json": components["schemas"]["
|
|
5674
|
+
"application/json": components["schemas"]["BodhiErrorResponse"];
|
|
5673
5675
|
};
|
|
5674
5676
|
};
|
|
5675
5677
|
};
|
|
@@ -5707,7 +5709,7 @@ export interface operations {
|
|
|
5707
5709
|
[name: string]: unknown;
|
|
5708
5710
|
};
|
|
5709
5711
|
content: {
|
|
5710
|
-
"application/json": components["schemas"]["
|
|
5712
|
+
"application/json": components["schemas"]["BodhiErrorResponse"];
|
|
5711
5713
|
};
|
|
5712
5714
|
};
|
|
5713
5715
|
/** @description Not authenticated */
|
|
@@ -5716,7 +5718,7 @@ export interface operations {
|
|
|
5716
5718
|
[name: string]: unknown;
|
|
5717
5719
|
};
|
|
5718
5720
|
content: {
|
|
5719
|
-
"application/json": components["schemas"]["
|
|
5721
|
+
"application/json": components["schemas"]["BodhiErrorResponse"];
|
|
5720
5722
|
};
|
|
5721
5723
|
};
|
|
5722
5724
|
/** @description Insufficient permissions */
|
|
@@ -5725,7 +5727,7 @@ export interface operations {
|
|
|
5725
5727
|
[name: string]: unknown;
|
|
5726
5728
|
};
|
|
5727
5729
|
content: {
|
|
5728
|
-
"application/json": components["schemas"]["
|
|
5730
|
+
"application/json": components["schemas"]["BodhiErrorResponse"];
|
|
5729
5731
|
};
|
|
5730
5732
|
};
|
|
5731
5733
|
/** @description Internal server error */
|
|
@@ -5734,7 +5736,7 @@ export interface operations {
|
|
|
5734
5736
|
[name: string]: unknown;
|
|
5735
5737
|
};
|
|
5736
5738
|
content: {
|
|
5737
|
-
"application/json": components["schemas"]["
|
|
5739
|
+
"application/json": components["schemas"]["BodhiErrorResponse"];
|
|
5738
5740
|
};
|
|
5739
5741
|
};
|
|
5740
5742
|
};
|
|
@@ -5767,7 +5769,7 @@ export interface operations {
|
|
|
5767
5769
|
[name: string]: unknown;
|
|
5768
5770
|
};
|
|
5769
5771
|
content: {
|
|
5770
|
-
"application/json": components["schemas"]["
|
|
5772
|
+
"application/json": components["schemas"]["BodhiErrorResponse"];
|
|
5771
5773
|
};
|
|
5772
5774
|
};
|
|
5773
5775
|
/** @description Not authenticated */
|
|
@@ -5776,7 +5778,7 @@ export interface operations {
|
|
|
5776
5778
|
[name: string]: unknown;
|
|
5777
5779
|
};
|
|
5778
5780
|
content: {
|
|
5779
|
-
"application/json": components["schemas"]["
|
|
5781
|
+
"application/json": components["schemas"]["BodhiErrorResponse"];
|
|
5780
5782
|
};
|
|
5781
5783
|
};
|
|
5782
5784
|
/** @description Insufficient permissions */
|
|
@@ -5785,7 +5787,7 @@ export interface operations {
|
|
|
5785
5787
|
[name: string]: unknown;
|
|
5786
5788
|
};
|
|
5787
5789
|
content: {
|
|
5788
|
-
"application/json": components["schemas"]["
|
|
5790
|
+
"application/json": components["schemas"]["BodhiErrorResponse"];
|
|
5789
5791
|
};
|
|
5790
5792
|
};
|
|
5791
5793
|
/** @description Internal server error */
|
|
@@ -5794,7 +5796,7 @@ export interface operations {
|
|
|
5794
5796
|
[name: string]: unknown;
|
|
5795
5797
|
};
|
|
5796
5798
|
content: {
|
|
5797
|
-
"application/json": components["schemas"]["
|
|
5799
|
+
"application/json": components["schemas"]["BodhiErrorResponse"];
|
|
5798
5800
|
};
|
|
5799
5801
|
};
|
|
5800
5802
|
};
|
|
@@ -5838,7 +5840,7 @@ export interface operations {
|
|
|
5838
5840
|
[name: string]: unknown;
|
|
5839
5841
|
};
|
|
5840
5842
|
content: {
|
|
5841
|
-
"application/json": components["schemas"]["
|
|
5843
|
+
"application/json": components["schemas"]["BodhiErrorResponse"];
|
|
5842
5844
|
};
|
|
5843
5845
|
};
|
|
5844
5846
|
/** @description Not authenticated */
|
|
@@ -5847,7 +5849,7 @@ export interface operations {
|
|
|
5847
5849
|
[name: string]: unknown;
|
|
5848
5850
|
};
|
|
5849
5851
|
content: {
|
|
5850
|
-
"application/json": components["schemas"]["
|
|
5852
|
+
"application/json": components["schemas"]["BodhiErrorResponse"];
|
|
5851
5853
|
};
|
|
5852
5854
|
};
|
|
5853
5855
|
/** @description Insufficient permissions */
|
|
@@ -5856,7 +5858,7 @@ export interface operations {
|
|
|
5856
5858
|
[name: string]: unknown;
|
|
5857
5859
|
};
|
|
5858
5860
|
content: {
|
|
5859
|
-
"application/json": components["schemas"]["
|
|
5861
|
+
"application/json": components["schemas"]["BodhiErrorResponse"];
|
|
5860
5862
|
};
|
|
5861
5863
|
};
|
|
5862
5864
|
/** @description API model with specified ID not found */
|
|
@@ -5872,7 +5874,7 @@ export interface operations {
|
|
|
5872
5874
|
* "type": "not_found_error"
|
|
5873
5875
|
* }
|
|
5874
5876
|
* } */
|
|
5875
|
-
"application/json": components["schemas"]["
|
|
5877
|
+
"application/json": components["schemas"]["BodhiErrorResponse"];
|
|
5876
5878
|
};
|
|
5877
5879
|
};
|
|
5878
5880
|
/** @description Internal server error */
|
|
@@ -5881,7 +5883,7 @@ export interface operations {
|
|
|
5881
5883
|
[name: string]: unknown;
|
|
5882
5884
|
};
|
|
5883
5885
|
content: {
|
|
5884
|
-
"application/json": components["schemas"]["
|
|
5886
|
+
"application/json": components["schemas"]["BodhiErrorResponse"];
|
|
5885
5887
|
};
|
|
5886
5888
|
};
|
|
5887
5889
|
};
|
|
@@ -5917,7 +5919,7 @@ export interface operations {
|
|
|
5917
5919
|
[name: string]: unknown;
|
|
5918
5920
|
};
|
|
5919
5921
|
content: {
|
|
5920
|
-
"application/json": components["schemas"]["
|
|
5922
|
+
"application/json": components["schemas"]["BodhiErrorResponse"];
|
|
5921
5923
|
};
|
|
5922
5924
|
};
|
|
5923
5925
|
/** @description Not authenticated */
|
|
@@ -5926,7 +5928,7 @@ export interface operations {
|
|
|
5926
5928
|
[name: string]: unknown;
|
|
5927
5929
|
};
|
|
5928
5930
|
content: {
|
|
5929
|
-
"application/json": components["schemas"]["
|
|
5931
|
+
"application/json": components["schemas"]["BodhiErrorResponse"];
|
|
5930
5932
|
};
|
|
5931
5933
|
};
|
|
5932
5934
|
/** @description Insufficient permissions */
|
|
@@ -5935,7 +5937,7 @@ export interface operations {
|
|
|
5935
5937
|
[name: string]: unknown;
|
|
5936
5938
|
};
|
|
5937
5939
|
content: {
|
|
5938
|
-
"application/json": components["schemas"]["
|
|
5940
|
+
"application/json": components["schemas"]["BodhiErrorResponse"];
|
|
5939
5941
|
};
|
|
5940
5942
|
};
|
|
5941
5943
|
/** @description API model not found */
|
|
@@ -5944,7 +5946,7 @@ export interface operations {
|
|
|
5944
5946
|
[name: string]: unknown;
|
|
5945
5947
|
};
|
|
5946
5948
|
content: {
|
|
5947
|
-
"application/json": components["schemas"]["
|
|
5949
|
+
"application/json": components["schemas"]["BodhiErrorResponse"];
|
|
5948
5950
|
};
|
|
5949
5951
|
};
|
|
5950
5952
|
/** @description Internal server error */
|
|
@@ -5953,7 +5955,7 @@ export interface operations {
|
|
|
5953
5955
|
[name: string]: unknown;
|
|
5954
5956
|
};
|
|
5955
5957
|
content: {
|
|
5956
|
-
"application/json": components["schemas"]["
|
|
5958
|
+
"application/json": components["schemas"]["BodhiErrorResponse"];
|
|
5957
5959
|
};
|
|
5958
5960
|
};
|
|
5959
5961
|
};
|
|
@@ -5983,7 +5985,7 @@ export interface operations {
|
|
|
5983
5985
|
[name: string]: unknown;
|
|
5984
5986
|
};
|
|
5985
5987
|
content: {
|
|
5986
|
-
"application/json": components["schemas"]["
|
|
5988
|
+
"application/json": components["schemas"]["BodhiErrorResponse"];
|
|
5987
5989
|
};
|
|
5988
5990
|
};
|
|
5989
5991
|
/** @description Not authenticated */
|
|
@@ -5992,7 +5994,7 @@ export interface operations {
|
|
|
5992
5994
|
[name: string]: unknown;
|
|
5993
5995
|
};
|
|
5994
5996
|
content: {
|
|
5995
|
-
"application/json": components["schemas"]["
|
|
5997
|
+
"application/json": components["schemas"]["BodhiErrorResponse"];
|
|
5996
5998
|
};
|
|
5997
5999
|
};
|
|
5998
6000
|
/** @description Insufficient permissions */
|
|
@@ -6001,7 +6003,7 @@ export interface operations {
|
|
|
6001
6003
|
[name: string]: unknown;
|
|
6002
6004
|
};
|
|
6003
6005
|
content: {
|
|
6004
|
-
"application/json": components["schemas"]["
|
|
6006
|
+
"application/json": components["schemas"]["BodhiErrorResponse"];
|
|
6005
6007
|
};
|
|
6006
6008
|
};
|
|
6007
6009
|
/** @description API model not found */
|
|
@@ -6010,7 +6012,7 @@ export interface operations {
|
|
|
6010
6012
|
[name: string]: unknown;
|
|
6011
6013
|
};
|
|
6012
6014
|
content: {
|
|
6013
|
-
"application/json": components["schemas"]["
|
|
6015
|
+
"application/json": components["schemas"]["BodhiErrorResponse"];
|
|
6014
6016
|
};
|
|
6015
6017
|
};
|
|
6016
6018
|
/** @description Internal server error */
|
|
@@ -6019,7 +6021,7 @@ export interface operations {
|
|
|
6019
6021
|
[name: string]: unknown;
|
|
6020
6022
|
};
|
|
6021
6023
|
content: {
|
|
6022
|
-
"application/json": components["schemas"]["
|
|
6024
|
+
"application/json": components["schemas"]["BodhiErrorResponse"];
|
|
6023
6025
|
};
|
|
6024
6026
|
};
|
|
6025
6027
|
};
|
|
@@ -6069,7 +6071,7 @@ export interface operations {
|
|
|
6069
6071
|
[name: string]: unknown;
|
|
6070
6072
|
};
|
|
6071
6073
|
content: {
|
|
6072
|
-
"application/json": components["schemas"]["
|
|
6074
|
+
"application/json": components["schemas"]["BodhiErrorResponse"];
|
|
6073
6075
|
};
|
|
6074
6076
|
};
|
|
6075
6077
|
/** @description Not authenticated */
|
|
@@ -6078,7 +6080,7 @@ export interface operations {
|
|
|
6078
6080
|
[name: string]: unknown;
|
|
6079
6081
|
};
|
|
6080
6082
|
content: {
|
|
6081
|
-
"application/json": components["schemas"]["
|
|
6083
|
+
"application/json": components["schemas"]["BodhiErrorResponse"];
|
|
6082
6084
|
};
|
|
6083
6085
|
};
|
|
6084
6086
|
/** @description Insufficient permissions */
|
|
@@ -6087,7 +6089,7 @@ export interface operations {
|
|
|
6087
6089
|
[name: string]: unknown;
|
|
6088
6090
|
};
|
|
6089
6091
|
content: {
|
|
6090
|
-
"application/json": components["schemas"]["
|
|
6092
|
+
"application/json": components["schemas"]["BodhiErrorResponse"];
|
|
6091
6093
|
};
|
|
6092
6094
|
};
|
|
6093
6095
|
/** @description API model not found */
|
|
@@ -6103,7 +6105,7 @@ export interface operations {
|
|
|
6103
6105
|
[name: string]: unknown;
|
|
6104
6106
|
};
|
|
6105
6107
|
content: {
|
|
6106
|
-
"application/json": components["schemas"]["
|
|
6108
|
+
"application/json": components["schemas"]["BodhiErrorResponse"];
|
|
6107
6109
|
};
|
|
6108
6110
|
};
|
|
6109
6111
|
};
|
|
@@ -6154,7 +6156,7 @@ export interface operations {
|
|
|
6154
6156
|
[name: string]: unknown;
|
|
6155
6157
|
};
|
|
6156
6158
|
content: {
|
|
6157
|
-
"application/json": components["schemas"]["
|
|
6159
|
+
"application/json": components["schemas"]["BodhiErrorResponse"];
|
|
6158
6160
|
};
|
|
6159
6161
|
};
|
|
6160
6162
|
/** @description Not authenticated */
|
|
@@ -6163,7 +6165,7 @@ export interface operations {
|
|
|
6163
6165
|
[name: string]: unknown;
|
|
6164
6166
|
};
|
|
6165
6167
|
content: {
|
|
6166
|
-
"application/json": components["schemas"]["
|
|
6168
|
+
"application/json": components["schemas"]["BodhiErrorResponse"];
|
|
6167
6169
|
};
|
|
6168
6170
|
};
|
|
6169
6171
|
/** @description Insufficient permissions */
|
|
@@ -6172,7 +6174,7 @@ export interface operations {
|
|
|
6172
6174
|
[name: string]: unknown;
|
|
6173
6175
|
};
|
|
6174
6176
|
content: {
|
|
6175
|
-
"application/json": components["schemas"]["
|
|
6177
|
+
"application/json": components["schemas"]["BodhiErrorResponse"];
|
|
6176
6178
|
};
|
|
6177
6179
|
};
|
|
6178
6180
|
/** @description Internal server error */
|
|
@@ -6181,7 +6183,7 @@ export interface operations {
|
|
|
6181
6183
|
[name: string]: unknown;
|
|
6182
6184
|
};
|
|
6183
6185
|
content: {
|
|
6184
|
-
"application/json": components["schemas"]["
|
|
6186
|
+
"application/json": components["schemas"]["BodhiErrorResponse"];
|
|
6185
6187
|
};
|
|
6186
6188
|
};
|
|
6187
6189
|
};
|
|
@@ -6235,7 +6237,7 @@ export interface operations {
|
|
|
6235
6237
|
[name: string]: unknown;
|
|
6236
6238
|
};
|
|
6237
6239
|
content: {
|
|
6238
|
-
"application/json": components["schemas"]["
|
|
6240
|
+
"application/json": components["schemas"]["BodhiErrorResponse"];
|
|
6239
6241
|
};
|
|
6240
6242
|
};
|
|
6241
6243
|
/** @description Not authenticated */
|
|
@@ -6244,7 +6246,7 @@ export interface operations {
|
|
|
6244
6246
|
[name: string]: unknown;
|
|
6245
6247
|
};
|
|
6246
6248
|
content: {
|
|
6247
|
-
"application/json": components["schemas"]["
|
|
6249
|
+
"application/json": components["schemas"]["BodhiErrorResponse"];
|
|
6248
6250
|
};
|
|
6249
6251
|
};
|
|
6250
6252
|
/** @description Insufficient permissions */
|
|
@@ -6253,7 +6255,7 @@ export interface operations {
|
|
|
6253
6255
|
[name: string]: unknown;
|
|
6254
6256
|
};
|
|
6255
6257
|
content: {
|
|
6256
|
-
"application/json": components["schemas"]["
|
|
6258
|
+
"application/json": components["schemas"]["BodhiErrorResponse"];
|
|
6257
6259
|
};
|
|
6258
6260
|
};
|
|
6259
6261
|
/** @description Internal server error */
|
|
@@ -6262,7 +6264,7 @@ export interface operations {
|
|
|
6262
6264
|
[name: string]: unknown;
|
|
6263
6265
|
};
|
|
6264
6266
|
content: {
|
|
6265
|
-
"application/json": components["schemas"]["
|
|
6267
|
+
"application/json": components["schemas"]["BodhiErrorResponse"];
|
|
6266
6268
|
};
|
|
6267
6269
|
};
|
|
6268
6270
|
};
|
|
@@ -6327,7 +6329,7 @@ export interface operations {
|
|
|
6327
6329
|
[name: string]: unknown;
|
|
6328
6330
|
};
|
|
6329
6331
|
content: {
|
|
6330
|
-
"application/json": components["schemas"]["
|
|
6332
|
+
"application/json": components["schemas"]["BodhiErrorResponse"];
|
|
6331
6333
|
};
|
|
6332
6334
|
};
|
|
6333
6335
|
/** @description Not authenticated */
|
|
@@ -6336,7 +6338,7 @@ export interface operations {
|
|
|
6336
6338
|
[name: string]: unknown;
|
|
6337
6339
|
};
|
|
6338
6340
|
content: {
|
|
6339
|
-
"application/json": components["schemas"]["
|
|
6341
|
+
"application/json": components["schemas"]["BodhiErrorResponse"];
|
|
6340
6342
|
};
|
|
6341
6343
|
};
|
|
6342
6344
|
/** @description Insufficient permissions */
|
|
@@ -6345,7 +6347,7 @@ export interface operations {
|
|
|
6345
6347
|
[name: string]: unknown;
|
|
6346
6348
|
};
|
|
6347
6349
|
content: {
|
|
6348
|
-
"application/json": components["schemas"]["
|
|
6350
|
+
"application/json": components["schemas"]["BodhiErrorResponse"];
|
|
6349
6351
|
};
|
|
6350
6352
|
};
|
|
6351
6353
|
/** @description Internal server error */
|
|
@@ -6354,7 +6356,7 @@ export interface operations {
|
|
|
6354
6356
|
[name: string]: unknown;
|
|
6355
6357
|
};
|
|
6356
6358
|
content: {
|
|
6357
|
-
"application/json": components["schemas"]["
|
|
6359
|
+
"application/json": components["schemas"]["BodhiErrorResponse"];
|
|
6358
6360
|
};
|
|
6359
6361
|
};
|
|
6360
6362
|
};
|
|
@@ -6398,7 +6400,7 @@ export interface operations {
|
|
|
6398
6400
|
[name: string]: unknown;
|
|
6399
6401
|
};
|
|
6400
6402
|
content: {
|
|
6401
|
-
"application/json": components["schemas"]["
|
|
6403
|
+
"application/json": components["schemas"]["BodhiErrorResponse"];
|
|
6402
6404
|
};
|
|
6403
6405
|
};
|
|
6404
6406
|
/** @description Not authenticated */
|
|
@@ -6407,7 +6409,7 @@ export interface operations {
|
|
|
6407
6409
|
[name: string]: unknown;
|
|
6408
6410
|
};
|
|
6409
6411
|
content: {
|
|
6410
|
-
"application/json": components["schemas"]["
|
|
6412
|
+
"application/json": components["schemas"]["BodhiErrorResponse"];
|
|
6411
6413
|
};
|
|
6412
6414
|
};
|
|
6413
6415
|
/** @description Insufficient permissions */
|
|
@@ -6416,7 +6418,7 @@ export interface operations {
|
|
|
6416
6418
|
[name: string]: unknown;
|
|
6417
6419
|
};
|
|
6418
6420
|
content: {
|
|
6419
|
-
"application/json": components["schemas"]["
|
|
6421
|
+
"application/json": components["schemas"]["BodhiErrorResponse"];
|
|
6420
6422
|
};
|
|
6421
6423
|
};
|
|
6422
6424
|
/** @description Download request not found */
|
|
@@ -6432,7 +6434,7 @@ export interface operations {
|
|
|
6432
6434
|
* "type": "not_found_error"
|
|
6433
6435
|
* }
|
|
6434
6436
|
* } */
|
|
6435
|
-
"application/json": components["schemas"]["
|
|
6437
|
+
"application/json": components["schemas"]["BodhiErrorResponse"];
|
|
6436
6438
|
};
|
|
6437
6439
|
};
|
|
6438
6440
|
/** @description Internal server error */
|
|
@@ -6441,7 +6443,7 @@ export interface operations {
|
|
|
6441
6443
|
[name: string]: unknown;
|
|
6442
6444
|
};
|
|
6443
6445
|
content: {
|
|
6444
|
-
"application/json": components["schemas"]["
|
|
6446
|
+
"application/json": components["schemas"]["BodhiErrorResponse"];
|
|
6445
6447
|
};
|
|
6446
6448
|
};
|
|
6447
6449
|
};
|
|
@@ -6487,7 +6489,7 @@ export interface operations {
|
|
|
6487
6489
|
[name: string]: unknown;
|
|
6488
6490
|
};
|
|
6489
6491
|
content: {
|
|
6490
|
-
"application/json": components["schemas"]["
|
|
6492
|
+
"application/json": components["schemas"]["BodhiErrorResponse"];
|
|
6491
6493
|
};
|
|
6492
6494
|
};
|
|
6493
6495
|
/** @description Not authenticated */
|
|
@@ -6496,7 +6498,7 @@ export interface operations {
|
|
|
6496
6498
|
[name: string]: unknown;
|
|
6497
6499
|
};
|
|
6498
6500
|
content: {
|
|
6499
|
-
"application/json": components["schemas"]["
|
|
6501
|
+
"application/json": components["schemas"]["BodhiErrorResponse"];
|
|
6500
6502
|
};
|
|
6501
6503
|
};
|
|
6502
6504
|
/** @description Insufficient permissions */
|
|
@@ -6505,7 +6507,7 @@ export interface operations {
|
|
|
6505
6507
|
[name: string]: unknown;
|
|
6506
6508
|
};
|
|
6507
6509
|
content: {
|
|
6508
|
-
"application/json": components["schemas"]["
|
|
6510
|
+
"application/json": components["schemas"]["BodhiErrorResponse"];
|
|
6509
6511
|
};
|
|
6510
6512
|
};
|
|
6511
6513
|
/** @description Model alias not found for specified repo/filename/snapshot */
|
|
@@ -6521,7 +6523,7 @@ export interface operations {
|
|
|
6521
6523
|
[name: string]: unknown;
|
|
6522
6524
|
};
|
|
6523
6525
|
content: {
|
|
6524
|
-
"application/json": components["schemas"]["
|
|
6526
|
+
"application/json": components["schemas"]["BodhiErrorResponse"];
|
|
6525
6527
|
};
|
|
6526
6528
|
};
|
|
6527
6529
|
};
|
|
@@ -6553,7 +6555,7 @@ export interface operations {
|
|
|
6553
6555
|
[name: string]: unknown;
|
|
6554
6556
|
};
|
|
6555
6557
|
content: {
|
|
6556
|
-
"application/json": components["schemas"]["
|
|
6558
|
+
"application/json": components["schemas"]["BodhiErrorResponse"];
|
|
6557
6559
|
};
|
|
6558
6560
|
};
|
|
6559
6561
|
/** @description Not authenticated */
|
|
@@ -6562,7 +6564,7 @@ export interface operations {
|
|
|
6562
6564
|
[name: string]: unknown;
|
|
6563
6565
|
};
|
|
6564
6566
|
content: {
|
|
6565
|
-
"application/json": components["schemas"]["
|
|
6567
|
+
"application/json": components["schemas"]["BodhiErrorResponse"];
|
|
6566
6568
|
};
|
|
6567
6569
|
};
|
|
6568
6570
|
/** @description Insufficient permissions */
|
|
@@ -6571,7 +6573,7 @@ export interface operations {
|
|
|
6571
6573
|
[name: string]: unknown;
|
|
6572
6574
|
};
|
|
6573
6575
|
content: {
|
|
6574
|
-
"application/json": components["schemas"]["
|
|
6576
|
+
"application/json": components["schemas"]["BodhiErrorResponse"];
|
|
6575
6577
|
};
|
|
6576
6578
|
};
|
|
6577
6579
|
/** @description Alias not found */
|
|
@@ -6587,7 +6589,7 @@ export interface operations {
|
|
|
6587
6589
|
* "type": "not_found_error"
|
|
6588
6590
|
* }
|
|
6589
6591
|
* } */
|
|
6590
|
-
"application/json": components["schemas"]["
|
|
6592
|
+
"application/json": components["schemas"]["BodhiErrorResponse"];
|
|
6591
6593
|
};
|
|
6592
6594
|
};
|
|
6593
6595
|
/** @description Internal server error */
|
|
@@ -6596,7 +6598,7 @@ export interface operations {
|
|
|
6596
6598
|
[name: string]: unknown;
|
|
6597
6599
|
};
|
|
6598
6600
|
content: {
|
|
6599
|
-
"application/json": components["schemas"]["
|
|
6601
|
+
"application/json": components["schemas"]["BodhiErrorResponse"];
|
|
6600
6602
|
};
|
|
6601
6603
|
};
|
|
6602
6604
|
};
|
|
@@ -6628,7 +6630,7 @@ export interface operations {
|
|
|
6628
6630
|
[name: string]: unknown;
|
|
6629
6631
|
};
|
|
6630
6632
|
content: {
|
|
6631
|
-
"application/json": components["schemas"]["
|
|
6633
|
+
"application/json": components["schemas"]["BodhiErrorResponse"];
|
|
6632
6634
|
};
|
|
6633
6635
|
};
|
|
6634
6636
|
/** @description Not authenticated */
|
|
@@ -6637,7 +6639,7 @@ export interface operations {
|
|
|
6637
6639
|
[name: string]: unknown;
|
|
6638
6640
|
};
|
|
6639
6641
|
content: {
|
|
6640
|
-
"application/json": components["schemas"]["
|
|
6642
|
+
"application/json": components["schemas"]["BodhiErrorResponse"];
|
|
6641
6643
|
};
|
|
6642
6644
|
};
|
|
6643
6645
|
/** @description Insufficient permissions */
|
|
@@ -6646,7 +6648,7 @@ export interface operations {
|
|
|
6646
6648
|
[name: string]: unknown;
|
|
6647
6649
|
};
|
|
6648
6650
|
content: {
|
|
6649
|
-
"application/json": components["schemas"]["
|
|
6651
|
+
"application/json": components["schemas"]["BodhiErrorResponse"];
|
|
6650
6652
|
};
|
|
6651
6653
|
};
|
|
6652
6654
|
/** @description Internal server error */
|
|
@@ -6655,7 +6657,7 @@ export interface operations {
|
|
|
6655
6657
|
[name: string]: unknown;
|
|
6656
6658
|
};
|
|
6657
6659
|
content: {
|
|
6658
|
-
"application/json": components["schemas"]["
|
|
6660
|
+
"application/json": components["schemas"]["BodhiErrorResponse"];
|
|
6659
6661
|
};
|
|
6660
6662
|
};
|
|
6661
6663
|
};
|
|
@@ -6713,7 +6715,7 @@ export interface operations {
|
|
|
6713
6715
|
[name: string]: unknown;
|
|
6714
6716
|
};
|
|
6715
6717
|
content: {
|
|
6716
|
-
"application/json": components["schemas"]["
|
|
6718
|
+
"application/json": components["schemas"]["BodhiErrorResponse"];
|
|
6717
6719
|
};
|
|
6718
6720
|
};
|
|
6719
6721
|
/** @description Not authenticated */
|
|
@@ -6722,7 +6724,7 @@ export interface operations {
|
|
|
6722
6724
|
[name: string]: unknown;
|
|
6723
6725
|
};
|
|
6724
6726
|
content: {
|
|
6725
|
-
"application/json": components["schemas"]["
|
|
6727
|
+
"application/json": components["schemas"]["BodhiErrorResponse"];
|
|
6726
6728
|
};
|
|
6727
6729
|
};
|
|
6728
6730
|
/** @description Insufficient permissions */
|
|
@@ -6731,7 +6733,7 @@ export interface operations {
|
|
|
6731
6733
|
[name: string]: unknown;
|
|
6732
6734
|
};
|
|
6733
6735
|
content: {
|
|
6734
|
-
"application/json": components["schemas"]["
|
|
6736
|
+
"application/json": components["schemas"]["BodhiErrorResponse"];
|
|
6735
6737
|
};
|
|
6736
6738
|
};
|
|
6737
6739
|
/** @description Internal server error */
|
|
@@ -6740,7 +6742,7 @@ export interface operations {
|
|
|
6740
6742
|
[name: string]: unknown;
|
|
6741
6743
|
};
|
|
6742
6744
|
content: {
|
|
6743
|
-
"application/json": components["schemas"]["
|
|
6745
|
+
"application/json": components["schemas"]["BodhiErrorResponse"];
|
|
6744
6746
|
};
|
|
6745
6747
|
};
|
|
6746
6748
|
};
|
|
@@ -6802,7 +6804,7 @@ export interface operations {
|
|
|
6802
6804
|
[name: string]: unknown;
|
|
6803
6805
|
};
|
|
6804
6806
|
content: {
|
|
6805
|
-
"application/json": components["schemas"]["
|
|
6807
|
+
"application/json": components["schemas"]["BodhiErrorResponse"];
|
|
6806
6808
|
};
|
|
6807
6809
|
};
|
|
6808
6810
|
/** @description Not authenticated */
|
|
@@ -6811,7 +6813,7 @@ export interface operations {
|
|
|
6811
6813
|
[name: string]: unknown;
|
|
6812
6814
|
};
|
|
6813
6815
|
content: {
|
|
6814
|
-
"application/json": components["schemas"]["
|
|
6816
|
+
"application/json": components["schemas"]["BodhiErrorResponse"];
|
|
6815
6817
|
};
|
|
6816
6818
|
};
|
|
6817
6819
|
/** @description Insufficient permissions */
|
|
@@ -6820,7 +6822,7 @@ export interface operations {
|
|
|
6820
6822
|
[name: string]: unknown;
|
|
6821
6823
|
};
|
|
6822
6824
|
content: {
|
|
6823
|
-
"application/json": components["schemas"]["
|
|
6825
|
+
"application/json": components["schemas"]["BodhiErrorResponse"];
|
|
6824
6826
|
};
|
|
6825
6827
|
};
|
|
6826
6828
|
/** @description Setting not found */
|
|
@@ -6836,7 +6838,7 @@ export interface operations {
|
|
|
6836
6838
|
* "type": "not_found_error"
|
|
6837
6839
|
* }
|
|
6838
6840
|
* } */
|
|
6839
|
-
"application/json": components["schemas"]["
|
|
6841
|
+
"application/json": components["schemas"]["BodhiErrorResponse"];
|
|
6840
6842
|
};
|
|
6841
6843
|
};
|
|
6842
6844
|
/** @description Internal server error */
|
|
@@ -6845,7 +6847,7 @@ export interface operations {
|
|
|
6845
6847
|
[name: string]: unknown;
|
|
6846
6848
|
};
|
|
6847
6849
|
content: {
|
|
6848
|
-
"application/json": components["schemas"]["
|
|
6850
|
+
"application/json": components["schemas"]["BodhiErrorResponse"];
|
|
6849
6851
|
};
|
|
6850
6852
|
};
|
|
6851
6853
|
};
|
|
@@ -6896,7 +6898,7 @@ export interface operations {
|
|
|
6896
6898
|
[name: string]: unknown;
|
|
6897
6899
|
};
|
|
6898
6900
|
content: {
|
|
6899
|
-
"application/json": components["schemas"]["
|
|
6901
|
+
"application/json": components["schemas"]["BodhiErrorResponse"];
|
|
6900
6902
|
};
|
|
6901
6903
|
};
|
|
6902
6904
|
/** @description Not authenticated */
|
|
@@ -6905,7 +6907,7 @@ export interface operations {
|
|
|
6905
6907
|
[name: string]: unknown;
|
|
6906
6908
|
};
|
|
6907
6909
|
content: {
|
|
6908
|
-
"application/json": components["schemas"]["
|
|
6910
|
+
"application/json": components["schemas"]["BodhiErrorResponse"];
|
|
6909
6911
|
};
|
|
6910
6912
|
};
|
|
6911
6913
|
/** @description Insufficient permissions */
|
|
@@ -6914,7 +6916,7 @@ export interface operations {
|
|
|
6914
6916
|
[name: string]: unknown;
|
|
6915
6917
|
};
|
|
6916
6918
|
content: {
|
|
6917
|
-
"application/json": components["schemas"]["
|
|
6919
|
+
"application/json": components["schemas"]["BodhiErrorResponse"];
|
|
6918
6920
|
};
|
|
6919
6921
|
};
|
|
6920
6922
|
/** @description Setting not found */
|
|
@@ -6930,7 +6932,7 @@ export interface operations {
|
|
|
6930
6932
|
* "type": "not_found_error"
|
|
6931
6933
|
* }
|
|
6932
6934
|
* } */
|
|
6933
|
-
"application/json": components["schemas"]["
|
|
6935
|
+
"application/json": components["schemas"]["BodhiErrorResponse"];
|
|
6934
6936
|
};
|
|
6935
6937
|
};
|
|
6936
6938
|
/** @description Internal server error */
|
|
@@ -6939,7 +6941,7 @@ export interface operations {
|
|
|
6939
6941
|
[name: string]: unknown;
|
|
6940
6942
|
};
|
|
6941
6943
|
content: {
|
|
6942
|
-
"application/json": components["schemas"]["
|
|
6944
|
+
"application/json": components["schemas"]["BodhiErrorResponse"];
|
|
6943
6945
|
};
|
|
6944
6946
|
};
|
|
6945
6947
|
};
|
|
@@ -6980,7 +6982,7 @@ export interface operations {
|
|
|
6980
6982
|
[name: string]: unknown;
|
|
6981
6983
|
};
|
|
6982
6984
|
content: {
|
|
6983
|
-
"application/json": components["schemas"]["
|
|
6985
|
+
"application/json": components["schemas"]["BodhiErrorResponse"];
|
|
6984
6986
|
};
|
|
6985
6987
|
};
|
|
6986
6988
|
/** @description Internal server error */
|
|
@@ -6989,7 +6991,7 @@ export interface operations {
|
|
|
6989
6991
|
[name: string]: unknown;
|
|
6990
6992
|
};
|
|
6991
6993
|
content: {
|
|
6992
|
-
"application/json": components["schemas"]["
|
|
6994
|
+
"application/json": components["schemas"]["BodhiErrorResponse"];
|
|
6993
6995
|
};
|
|
6994
6996
|
};
|
|
6995
6997
|
};
|
|
@@ -7018,7 +7020,7 @@ export interface operations {
|
|
|
7018
7020
|
[name: string]: unknown;
|
|
7019
7021
|
};
|
|
7020
7022
|
content: {
|
|
7021
|
-
"application/json": components["schemas"]["
|
|
7023
|
+
"application/json": components["schemas"]["BodhiErrorResponse"];
|
|
7022
7024
|
};
|
|
7023
7025
|
};
|
|
7024
7026
|
/** @description Not authenticated */
|
|
@@ -7027,7 +7029,7 @@ export interface operations {
|
|
|
7027
7029
|
[name: string]: unknown;
|
|
7028
7030
|
};
|
|
7029
7031
|
content: {
|
|
7030
|
-
"application/json": components["schemas"]["
|
|
7032
|
+
"application/json": components["schemas"]["BodhiErrorResponse"];
|
|
7031
7033
|
};
|
|
7032
7034
|
};
|
|
7033
7035
|
/** @description Insufficient permissions */
|
|
@@ -7036,7 +7038,7 @@ export interface operations {
|
|
|
7036
7038
|
[name: string]: unknown;
|
|
7037
7039
|
};
|
|
7038
7040
|
content: {
|
|
7039
|
-
"application/json": components["schemas"]["
|
|
7041
|
+
"application/json": components["schemas"]["BodhiErrorResponse"];
|
|
7040
7042
|
};
|
|
7041
7043
|
};
|
|
7042
7044
|
/** @description Internal server error */
|
|
@@ -7045,7 +7047,7 @@ export interface operations {
|
|
|
7045
7047
|
[name: string]: unknown;
|
|
7046
7048
|
};
|
|
7047
7049
|
content: {
|
|
7048
|
-
"application/json": components["schemas"]["
|
|
7050
|
+
"application/json": components["schemas"]["BodhiErrorResponse"];
|
|
7049
7051
|
};
|
|
7050
7052
|
};
|
|
7051
7053
|
};
|
|
@@ -7079,7 +7081,7 @@ export interface operations {
|
|
|
7079
7081
|
[name: string]: unknown;
|
|
7080
7082
|
};
|
|
7081
7083
|
content: {
|
|
7082
|
-
"application/json": components["schemas"]["
|
|
7084
|
+
"application/json": components["schemas"]["BodhiErrorResponse"];
|
|
7083
7085
|
};
|
|
7084
7086
|
};
|
|
7085
7087
|
/** @description Not authenticated */
|
|
@@ -7088,7 +7090,7 @@ export interface operations {
|
|
|
7088
7090
|
[name: string]: unknown;
|
|
7089
7091
|
};
|
|
7090
7092
|
content: {
|
|
7091
|
-
"application/json": components["schemas"]["
|
|
7093
|
+
"application/json": components["schemas"]["BodhiErrorResponse"];
|
|
7092
7094
|
};
|
|
7093
7095
|
};
|
|
7094
7096
|
/** @description Insufficient permissions */
|
|
@@ -7097,7 +7099,7 @@ export interface operations {
|
|
|
7097
7099
|
[name: string]: unknown;
|
|
7098
7100
|
};
|
|
7099
7101
|
content: {
|
|
7100
|
-
"application/json": components["schemas"]["
|
|
7102
|
+
"application/json": components["schemas"]["BodhiErrorResponse"];
|
|
7101
7103
|
};
|
|
7102
7104
|
};
|
|
7103
7105
|
/** @description Internal server error */
|
|
@@ -7106,7 +7108,7 @@ export interface operations {
|
|
|
7106
7108
|
[name: string]: unknown;
|
|
7107
7109
|
};
|
|
7108
7110
|
content: {
|
|
7109
|
-
"application/json": components["schemas"]["
|
|
7111
|
+
"application/json": components["schemas"]["BodhiErrorResponse"];
|
|
7110
7112
|
};
|
|
7111
7113
|
};
|
|
7112
7114
|
};
|
|
@@ -7136,7 +7138,7 @@ export interface operations {
|
|
|
7136
7138
|
[name: string]: unknown;
|
|
7137
7139
|
};
|
|
7138
7140
|
content: {
|
|
7139
|
-
"application/json": components["schemas"]["
|
|
7141
|
+
"application/json": components["schemas"]["BodhiErrorResponse"];
|
|
7140
7142
|
};
|
|
7141
7143
|
};
|
|
7142
7144
|
/** @description Not authenticated */
|
|
@@ -7145,7 +7147,7 @@ export interface operations {
|
|
|
7145
7147
|
[name: string]: unknown;
|
|
7146
7148
|
};
|
|
7147
7149
|
content: {
|
|
7148
|
-
"application/json": components["schemas"]["
|
|
7150
|
+
"application/json": components["schemas"]["BodhiErrorResponse"];
|
|
7149
7151
|
};
|
|
7150
7152
|
};
|
|
7151
7153
|
/** @description Insufficient permissions */
|
|
@@ -7154,7 +7156,7 @@ export interface operations {
|
|
|
7154
7156
|
[name: string]: unknown;
|
|
7155
7157
|
};
|
|
7156
7158
|
content: {
|
|
7157
|
-
"application/json": components["schemas"]["
|
|
7159
|
+
"application/json": components["schemas"]["BodhiErrorResponse"];
|
|
7158
7160
|
};
|
|
7159
7161
|
};
|
|
7160
7162
|
/** @description Internal server error */
|
|
@@ -7163,7 +7165,7 @@ export interface operations {
|
|
|
7163
7165
|
[name: string]: unknown;
|
|
7164
7166
|
};
|
|
7165
7167
|
content: {
|
|
7166
|
-
"application/json": components["schemas"]["
|
|
7168
|
+
"application/json": components["schemas"]["BodhiErrorResponse"];
|
|
7167
7169
|
};
|
|
7168
7170
|
};
|
|
7169
7171
|
};
|
|
@@ -7226,7 +7228,7 @@ export interface operations {
|
|
|
7226
7228
|
[name: string]: unknown;
|
|
7227
7229
|
};
|
|
7228
7230
|
content: {
|
|
7229
|
-
"application/json": components["schemas"]["
|
|
7231
|
+
"application/json": components["schemas"]["BodhiErrorResponse"];
|
|
7230
7232
|
};
|
|
7231
7233
|
};
|
|
7232
7234
|
/** @description Not authenticated */
|
|
@@ -7235,7 +7237,7 @@ export interface operations {
|
|
|
7235
7237
|
[name: string]: unknown;
|
|
7236
7238
|
};
|
|
7237
7239
|
content: {
|
|
7238
|
-
"application/json": components["schemas"]["
|
|
7240
|
+
"application/json": components["schemas"]["BodhiErrorResponse"];
|
|
7239
7241
|
};
|
|
7240
7242
|
};
|
|
7241
7243
|
/** @description Insufficient permissions */
|
|
@@ -7244,7 +7246,7 @@ export interface operations {
|
|
|
7244
7246
|
[name: string]: unknown;
|
|
7245
7247
|
};
|
|
7246
7248
|
content: {
|
|
7247
|
-
"application/json": components["schemas"]["
|
|
7249
|
+
"application/json": components["schemas"]["BodhiErrorResponse"];
|
|
7248
7250
|
};
|
|
7249
7251
|
};
|
|
7250
7252
|
/** @description Internal server error */
|
|
@@ -7253,7 +7255,7 @@ export interface operations {
|
|
|
7253
7255
|
[name: string]: unknown;
|
|
7254
7256
|
};
|
|
7255
7257
|
content: {
|
|
7256
|
-
"application/json": components["schemas"]["
|
|
7258
|
+
"application/json": components["schemas"]["BodhiErrorResponse"];
|
|
7257
7259
|
};
|
|
7258
7260
|
};
|
|
7259
7261
|
};
|
|
@@ -7296,7 +7298,7 @@ export interface operations {
|
|
|
7296
7298
|
[name: string]: unknown;
|
|
7297
7299
|
};
|
|
7298
7300
|
content: {
|
|
7299
|
-
"application/json": components["schemas"]["
|
|
7301
|
+
"application/json": components["schemas"]["BodhiErrorResponse"];
|
|
7300
7302
|
};
|
|
7301
7303
|
};
|
|
7302
7304
|
/** @description Not authenticated */
|
|
@@ -7305,7 +7307,7 @@ export interface operations {
|
|
|
7305
7307
|
[name: string]: unknown;
|
|
7306
7308
|
};
|
|
7307
7309
|
content: {
|
|
7308
|
-
"application/json": components["schemas"]["
|
|
7310
|
+
"application/json": components["schemas"]["BodhiErrorResponse"];
|
|
7309
7311
|
};
|
|
7310
7312
|
};
|
|
7311
7313
|
/** @description Insufficient permissions */
|
|
@@ -7314,7 +7316,7 @@ export interface operations {
|
|
|
7314
7316
|
[name: string]: unknown;
|
|
7315
7317
|
};
|
|
7316
7318
|
content: {
|
|
7317
|
-
"application/json": components["schemas"]["
|
|
7319
|
+
"application/json": components["schemas"]["BodhiErrorResponse"];
|
|
7318
7320
|
};
|
|
7319
7321
|
};
|
|
7320
7322
|
/** @description Internal server error */
|
|
@@ -7323,7 +7325,7 @@ export interface operations {
|
|
|
7323
7325
|
[name: string]: unknown;
|
|
7324
7326
|
};
|
|
7325
7327
|
content: {
|
|
7326
|
-
"application/json": components["schemas"]["
|
|
7328
|
+
"application/json": components["schemas"]["BodhiErrorResponse"];
|
|
7327
7329
|
};
|
|
7328
7330
|
};
|
|
7329
7331
|
};
|
|
@@ -7376,7 +7378,7 @@ export interface operations {
|
|
|
7376
7378
|
[name: string]: unknown;
|
|
7377
7379
|
};
|
|
7378
7380
|
content: {
|
|
7379
|
-
"application/json": components["schemas"]["
|
|
7381
|
+
"application/json": components["schemas"]["BodhiErrorResponse"];
|
|
7380
7382
|
};
|
|
7381
7383
|
};
|
|
7382
7384
|
/** @description Not authenticated */
|
|
@@ -7385,7 +7387,7 @@ export interface operations {
|
|
|
7385
7387
|
[name: string]: unknown;
|
|
7386
7388
|
};
|
|
7387
7389
|
content: {
|
|
7388
|
-
"application/json": components["schemas"]["
|
|
7390
|
+
"application/json": components["schemas"]["BodhiErrorResponse"];
|
|
7389
7391
|
};
|
|
7390
7392
|
};
|
|
7391
7393
|
/** @description Insufficient permissions */
|
|
@@ -7394,7 +7396,7 @@ export interface operations {
|
|
|
7394
7396
|
[name: string]: unknown;
|
|
7395
7397
|
};
|
|
7396
7398
|
content: {
|
|
7397
|
-
"application/json": components["schemas"]["
|
|
7399
|
+
"application/json": components["schemas"]["BodhiErrorResponse"];
|
|
7398
7400
|
};
|
|
7399
7401
|
};
|
|
7400
7402
|
/** @description Token not found */
|
|
@@ -7410,7 +7412,7 @@ export interface operations {
|
|
|
7410
7412
|
* "type": "not_found_error"
|
|
7411
7413
|
* }
|
|
7412
7414
|
* } */
|
|
7413
|
-
"application/json": components["schemas"]["
|
|
7415
|
+
"application/json": components["schemas"]["BodhiErrorResponse"];
|
|
7414
7416
|
};
|
|
7415
7417
|
};
|
|
7416
7418
|
/** @description Internal server error */
|
|
@@ -7419,7 +7421,7 @@ export interface operations {
|
|
|
7419
7421
|
[name: string]: unknown;
|
|
7420
7422
|
};
|
|
7421
7423
|
content: {
|
|
7422
|
-
"application/json": components["schemas"]["
|
|
7424
|
+
"application/json": components["schemas"]["BodhiErrorResponse"];
|
|
7423
7425
|
};
|
|
7424
7426
|
};
|
|
7425
7427
|
};
|
|
@@ -7448,7 +7450,7 @@ export interface operations {
|
|
|
7448
7450
|
[name: string]: unknown;
|
|
7449
7451
|
};
|
|
7450
7452
|
content: {
|
|
7451
|
-
"application/json": components["schemas"]["
|
|
7453
|
+
"application/json": components["schemas"]["BodhiErrorResponse"];
|
|
7452
7454
|
};
|
|
7453
7455
|
};
|
|
7454
7456
|
/** @description Not authenticated */
|
|
@@ -7457,7 +7459,7 @@ export interface operations {
|
|
|
7457
7459
|
[name: string]: unknown;
|
|
7458
7460
|
};
|
|
7459
7461
|
content: {
|
|
7460
|
-
"application/json": components["schemas"]["
|
|
7462
|
+
"application/json": components["schemas"]["BodhiErrorResponse"];
|
|
7461
7463
|
};
|
|
7462
7464
|
};
|
|
7463
7465
|
/** @description Insufficient permissions */
|
|
@@ -7466,7 +7468,7 @@ export interface operations {
|
|
|
7466
7468
|
[name: string]: unknown;
|
|
7467
7469
|
};
|
|
7468
7470
|
content: {
|
|
7469
|
-
"application/json": components["schemas"]["
|
|
7471
|
+
"application/json": components["schemas"]["BodhiErrorResponse"];
|
|
7470
7472
|
};
|
|
7471
7473
|
};
|
|
7472
7474
|
/** @description Internal server error */
|
|
@@ -7475,7 +7477,7 @@ export interface operations {
|
|
|
7475
7477
|
[name: string]: unknown;
|
|
7476
7478
|
};
|
|
7477
7479
|
content: {
|
|
7478
|
-
"application/json": components["schemas"]["
|
|
7480
|
+
"application/json": components["schemas"]["BodhiErrorResponse"];
|
|
7479
7481
|
};
|
|
7480
7482
|
};
|
|
7481
7483
|
};
|
|
@@ -7502,7 +7504,7 @@ export interface operations {
|
|
|
7502
7504
|
[name: string]: unknown;
|
|
7503
7505
|
};
|
|
7504
7506
|
content: {
|
|
7505
|
-
"application/json": components["schemas"]["
|
|
7507
|
+
"application/json": components["schemas"]["BodhiErrorResponse"];
|
|
7506
7508
|
};
|
|
7507
7509
|
};
|
|
7508
7510
|
/** @description Not authenticated */
|
|
@@ -7511,7 +7513,7 @@ export interface operations {
|
|
|
7511
7513
|
[name: string]: unknown;
|
|
7512
7514
|
};
|
|
7513
7515
|
content: {
|
|
7514
|
-
"application/json": components["schemas"]["
|
|
7516
|
+
"application/json": components["schemas"]["BodhiErrorResponse"];
|
|
7515
7517
|
};
|
|
7516
7518
|
};
|
|
7517
7519
|
/** @description Insufficient permissions */
|
|
@@ -7520,7 +7522,7 @@ export interface operations {
|
|
|
7520
7522
|
[name: string]: unknown;
|
|
7521
7523
|
};
|
|
7522
7524
|
content: {
|
|
7523
|
-
"application/json": components["schemas"]["
|
|
7525
|
+
"application/json": components["schemas"]["BodhiErrorResponse"];
|
|
7524
7526
|
};
|
|
7525
7527
|
};
|
|
7526
7528
|
/** @description Pending request already exists */
|
|
@@ -7529,7 +7531,7 @@ export interface operations {
|
|
|
7529
7531
|
[name: string]: unknown;
|
|
7530
7532
|
};
|
|
7531
7533
|
content: {
|
|
7532
|
-
"application/json": components["schemas"]["
|
|
7534
|
+
"application/json": components["schemas"]["BodhiErrorResponse"];
|
|
7533
7535
|
};
|
|
7534
7536
|
};
|
|
7535
7537
|
/** @description User already has role */
|
|
@@ -7538,7 +7540,7 @@ export interface operations {
|
|
|
7538
7540
|
[name: string]: unknown;
|
|
7539
7541
|
};
|
|
7540
7542
|
content: {
|
|
7541
|
-
"application/json": components["schemas"]["
|
|
7543
|
+
"application/json": components["schemas"]["BodhiErrorResponse"];
|
|
7542
7544
|
};
|
|
7543
7545
|
};
|
|
7544
7546
|
/** @description Internal server error */
|
|
@@ -7547,7 +7549,7 @@ export interface operations {
|
|
|
7547
7549
|
[name: string]: unknown;
|
|
7548
7550
|
};
|
|
7549
7551
|
content: {
|
|
7550
|
-
"application/json": components["schemas"]["
|
|
7552
|
+
"application/json": components["schemas"]["BodhiErrorResponse"];
|
|
7551
7553
|
};
|
|
7552
7554
|
};
|
|
7553
7555
|
};
|
|
@@ -7576,7 +7578,7 @@ export interface operations {
|
|
|
7576
7578
|
[name: string]: unknown;
|
|
7577
7579
|
};
|
|
7578
7580
|
content: {
|
|
7579
|
-
"application/json": components["schemas"]["
|
|
7581
|
+
"application/json": components["schemas"]["BodhiErrorResponse"];
|
|
7580
7582
|
};
|
|
7581
7583
|
};
|
|
7582
7584
|
/** @description Not authenticated */
|
|
@@ -7585,7 +7587,7 @@ export interface operations {
|
|
|
7585
7587
|
[name: string]: unknown;
|
|
7586
7588
|
};
|
|
7587
7589
|
content: {
|
|
7588
|
-
"application/json": components["schemas"]["
|
|
7590
|
+
"application/json": components["schemas"]["BodhiErrorResponse"];
|
|
7589
7591
|
};
|
|
7590
7592
|
};
|
|
7591
7593
|
/** @description Insufficient permissions */
|
|
@@ -7594,7 +7596,7 @@ export interface operations {
|
|
|
7594
7596
|
[name: string]: unknown;
|
|
7595
7597
|
};
|
|
7596
7598
|
content: {
|
|
7597
|
-
"application/json": components["schemas"]["
|
|
7599
|
+
"application/json": components["schemas"]["BodhiErrorResponse"];
|
|
7598
7600
|
};
|
|
7599
7601
|
};
|
|
7600
7602
|
/** @description Request not found */
|
|
@@ -7603,7 +7605,7 @@ export interface operations {
|
|
|
7603
7605
|
[name: string]: unknown;
|
|
7604
7606
|
};
|
|
7605
7607
|
content: {
|
|
7606
|
-
"application/json": components["schemas"]["
|
|
7608
|
+
"application/json": components["schemas"]["BodhiErrorResponse"];
|
|
7607
7609
|
};
|
|
7608
7610
|
};
|
|
7609
7611
|
/** @description Internal server error */
|
|
@@ -7612,7 +7614,7 @@ export interface operations {
|
|
|
7612
7614
|
[name: string]: unknown;
|
|
7613
7615
|
};
|
|
7614
7616
|
content: {
|
|
7615
|
-
"application/json": components["schemas"]["
|
|
7617
|
+
"application/json": components["schemas"]["BodhiErrorResponse"];
|
|
7616
7618
|
};
|
|
7617
7619
|
};
|
|
7618
7620
|
};
|
|
@@ -7652,7 +7654,7 @@ export interface operations {
|
|
|
7652
7654
|
[name: string]: unknown;
|
|
7653
7655
|
};
|
|
7654
7656
|
content: {
|
|
7655
|
-
"application/json": components["schemas"]["
|
|
7657
|
+
"application/json": components["schemas"]["BodhiErrorResponse"];
|
|
7656
7658
|
};
|
|
7657
7659
|
};
|
|
7658
7660
|
/** @description Not authenticated */
|
|
@@ -7661,7 +7663,7 @@ export interface operations {
|
|
|
7661
7663
|
[name: string]: unknown;
|
|
7662
7664
|
};
|
|
7663
7665
|
content: {
|
|
7664
|
-
"application/json": components["schemas"]["
|
|
7666
|
+
"application/json": components["schemas"]["BodhiErrorResponse"];
|
|
7665
7667
|
};
|
|
7666
7668
|
};
|
|
7667
7669
|
/** @description Insufficient permissions */
|
|
@@ -7670,7 +7672,7 @@ export interface operations {
|
|
|
7670
7672
|
[name: string]: unknown;
|
|
7671
7673
|
};
|
|
7672
7674
|
content: {
|
|
7673
|
-
"application/json": components["schemas"]["
|
|
7675
|
+
"application/json": components["schemas"]["BodhiErrorResponse"];
|
|
7674
7676
|
};
|
|
7675
7677
|
};
|
|
7676
7678
|
/** @description Internal server error */
|
|
@@ -7679,7 +7681,7 @@ export interface operations {
|
|
|
7679
7681
|
[name: string]: unknown;
|
|
7680
7682
|
};
|
|
7681
7683
|
content: {
|
|
7682
|
-
"application/json": components["schemas"]["
|
|
7684
|
+
"application/json": components["schemas"]["BodhiErrorResponse"];
|
|
7683
7685
|
};
|
|
7684
7686
|
};
|
|
7685
7687
|
};
|
|
@@ -7709,7 +7711,7 @@ export interface operations {
|
|
|
7709
7711
|
[name: string]: unknown;
|
|
7710
7712
|
};
|
|
7711
7713
|
content: {
|
|
7712
|
-
"application/json": components["schemas"]["
|
|
7714
|
+
"application/json": components["schemas"]["BodhiErrorResponse"];
|
|
7713
7715
|
};
|
|
7714
7716
|
};
|
|
7715
7717
|
/** @description Not authenticated */
|
|
@@ -7718,7 +7720,7 @@ export interface operations {
|
|
|
7718
7720
|
[name: string]: unknown;
|
|
7719
7721
|
};
|
|
7720
7722
|
content: {
|
|
7721
|
-
"application/json": components["schemas"]["
|
|
7723
|
+
"application/json": components["schemas"]["BodhiErrorResponse"];
|
|
7722
7724
|
};
|
|
7723
7725
|
};
|
|
7724
7726
|
/** @description Insufficient permissions */
|
|
@@ -7727,7 +7729,7 @@ export interface operations {
|
|
|
7727
7729
|
[name: string]: unknown;
|
|
7728
7730
|
};
|
|
7729
7731
|
content: {
|
|
7730
|
-
"application/json": components["schemas"]["
|
|
7732
|
+
"application/json": components["schemas"]["BodhiErrorResponse"];
|
|
7731
7733
|
};
|
|
7732
7734
|
};
|
|
7733
7735
|
/** @description User not found */
|
|
@@ -7736,7 +7738,7 @@ export interface operations {
|
|
|
7736
7738
|
[name: string]: unknown;
|
|
7737
7739
|
};
|
|
7738
7740
|
content: {
|
|
7739
|
-
"application/json": components["schemas"]["
|
|
7741
|
+
"application/json": components["schemas"]["BodhiErrorResponse"];
|
|
7740
7742
|
};
|
|
7741
7743
|
};
|
|
7742
7744
|
/** @description Internal server error */
|
|
@@ -7745,7 +7747,7 @@ export interface operations {
|
|
|
7745
7747
|
[name: string]: unknown;
|
|
7746
7748
|
};
|
|
7747
7749
|
content: {
|
|
7748
|
-
"application/json": components["schemas"]["
|
|
7750
|
+
"application/json": components["schemas"]["BodhiErrorResponse"];
|
|
7749
7751
|
};
|
|
7750
7752
|
};
|
|
7751
7753
|
};
|
|
@@ -7779,7 +7781,7 @@ export interface operations {
|
|
|
7779
7781
|
[name: string]: unknown;
|
|
7780
7782
|
};
|
|
7781
7783
|
content: {
|
|
7782
|
-
"application/json": components["schemas"]["
|
|
7784
|
+
"application/json": components["schemas"]["BodhiErrorResponse"];
|
|
7783
7785
|
};
|
|
7784
7786
|
};
|
|
7785
7787
|
/** @description Not authenticated */
|
|
@@ -7788,7 +7790,7 @@ export interface operations {
|
|
|
7788
7790
|
[name: string]: unknown;
|
|
7789
7791
|
};
|
|
7790
7792
|
content: {
|
|
7791
|
-
"application/json": components["schemas"]["
|
|
7793
|
+
"application/json": components["schemas"]["BodhiErrorResponse"];
|
|
7792
7794
|
};
|
|
7793
7795
|
};
|
|
7794
7796
|
/** @description Insufficient permissions */
|
|
@@ -7797,7 +7799,7 @@ export interface operations {
|
|
|
7797
7799
|
[name: string]: unknown;
|
|
7798
7800
|
};
|
|
7799
7801
|
content: {
|
|
7800
|
-
"application/json": components["schemas"]["
|
|
7802
|
+
"application/json": components["schemas"]["BodhiErrorResponse"];
|
|
7801
7803
|
};
|
|
7802
7804
|
};
|
|
7803
7805
|
/** @description User not found */
|
|
@@ -7806,7 +7808,7 @@ export interface operations {
|
|
|
7806
7808
|
[name: string]: unknown;
|
|
7807
7809
|
};
|
|
7808
7810
|
content: {
|
|
7809
|
-
"application/json": components["schemas"]["
|
|
7811
|
+
"application/json": components["schemas"]["BodhiErrorResponse"];
|
|
7810
7812
|
};
|
|
7811
7813
|
};
|
|
7812
7814
|
/** @description Internal server error */
|
|
@@ -7815,7 +7817,7 @@ export interface operations {
|
|
|
7815
7817
|
[name: string]: unknown;
|
|
7816
7818
|
};
|
|
7817
7819
|
content: {
|
|
7818
|
-
"application/json": components["schemas"]["
|
|
7820
|
+
"application/json": components["schemas"]["BodhiErrorResponse"];
|
|
7819
7821
|
};
|
|
7820
7822
|
};
|
|
7821
7823
|
};
|
|
@@ -7847,7 +7849,7 @@ export interface operations {
|
|
|
7847
7849
|
[name: string]: unknown;
|
|
7848
7850
|
};
|
|
7849
7851
|
content: {
|
|
7850
|
-
"application/json": components["schemas"]["
|
|
7852
|
+
"application/json": components["schemas"]["BodhiErrorResponse"];
|
|
7851
7853
|
};
|
|
7852
7854
|
};
|
|
7853
7855
|
/** @description Internal server error */
|
|
@@ -7856,7 +7858,7 @@ export interface operations {
|
|
|
7856
7858
|
[name: string]: unknown;
|
|
7857
7859
|
};
|
|
7858
7860
|
content: {
|
|
7859
|
-
"application/json": components["schemas"]["
|
|
7861
|
+
"application/json": components["schemas"]["BodhiErrorResponse"];
|
|
7860
7862
|
};
|
|
7861
7863
|
};
|
|
7862
7864
|
};
|
|
@@ -7888,7 +7890,7 @@ export interface operations {
|
|
|
7888
7890
|
[name: string]: unknown;
|
|
7889
7891
|
};
|
|
7890
7892
|
content: {
|
|
7891
|
-
"application/json": components["schemas"]["
|
|
7893
|
+
"application/json": components["schemas"]["BodhiErrorResponse"];
|
|
7892
7894
|
};
|
|
7893
7895
|
};
|
|
7894
7896
|
/** @description Internal server error */
|
|
@@ -7897,7 +7899,7 @@ export interface operations {
|
|
|
7897
7899
|
[name: string]: unknown;
|
|
7898
7900
|
};
|
|
7899
7901
|
content: {
|
|
7900
|
-
"application/json": components["schemas"]["
|
|
7902
|
+
"application/json": components["schemas"]["BodhiErrorResponse"];
|
|
7901
7903
|
};
|
|
7902
7904
|
};
|
|
7903
7905
|
};
|