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