@bodhiapp/ts-client 0.1.29 → 0.1.31

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