@scalar/api-client 1.2.23 → 1.2.25

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.js CHANGED
@@ -1964,6 +1964,256 @@ const isJsonString = (value) => {
1964
1964
  return false;
1965
1965
  return !!json$1.parseSafe(value, false);
1966
1966
  };
1967
+ const httpStatusCodes = {
1968
+ 100: {
1969
+ name: "Continue",
1970
+ url: "https://developer.mozilla.org/en-US/docs/Web/HTTP/Status/100"
1971
+ },
1972
+ 101: {
1973
+ name: "Switching Protocols",
1974
+ url: "https://developer.mozilla.org/en-US/docs/Web/HTTP/Status/101"
1975
+ },
1976
+ 102: {
1977
+ name: "Processing",
1978
+ url: "https://developer.mozilla.org/en-US/docs/Web/HTTP/Status/102"
1979
+ },
1980
+ 103: {
1981
+ name: "Early Hints",
1982
+ url: "https://developer.mozilla.org/en-US/docs/Web/HTTP/Status/103"
1983
+ },
1984
+ 200: {
1985
+ name: "OK",
1986
+ url: "https://developer.mozilla.org/en-US/docs/Web/HTTP/Status/200"
1987
+ },
1988
+ 201: {
1989
+ name: "Created",
1990
+ url: "https://developer.mozilla.org/en-US/docs/Web/HTTP/Status/201"
1991
+ },
1992
+ 202: {
1993
+ name: "Accepted",
1994
+ url: "https://developer.mozilla.org/en-US/docs/Web/HTTP/Status/202"
1995
+ },
1996
+ 203: {
1997
+ name: "Non-Authoritative Information",
1998
+ url: "https://developer.mozilla.org/en-US/docs/Web/HTTP/Status/203"
1999
+ },
2000
+ 204: {
2001
+ name: "No Content",
2002
+ url: "https://developer.mozilla.org/en-US/docs/Web/HTTP/Status/204"
2003
+ },
2004
+ 205: {
2005
+ name: "Reset Content",
2006
+ url: "https://developer.mozilla.org/en-US/docs/Web/HTTP/Status/205"
2007
+ },
2008
+ 206: {
2009
+ name: "Partial Content",
2010
+ url: "https://developer.mozilla.org/en-US/docs/Web/HTTP/Status/206"
2011
+ },
2012
+ 207: {
2013
+ name: "Multi-Status",
2014
+ url: "https://developer.mozilla.org/en-US/docs/Web/HTTP/Status/207"
2015
+ },
2016
+ 208: {
2017
+ name: "Already Reported",
2018
+ url: "https://developer.mozilla.org/en-US/docs/Web/HTTP/Status/208"
2019
+ },
2020
+ 226: {
2021
+ name: "IM Used",
2022
+ url: "https://developer.mozilla.org/en-US/docs/Web/HTTP/Status/226"
2023
+ },
2024
+ 300: {
2025
+ name: "Multiple Choices",
2026
+ url: "https://developer.mozilla.org/en-US/docs/Web/HTTP/Status/300"
2027
+ },
2028
+ 301: {
2029
+ name: "Moved Permanently",
2030
+ url: "https://developer.mozilla.org/en-US/docs/Web/HTTP/Status/301"
2031
+ },
2032
+ 302: {
2033
+ name: "Found",
2034
+ url: "https://developer.mozilla.org/en-US/docs/Web/HTTP/Status/302"
2035
+ },
2036
+ 303: {
2037
+ name: "See Other",
2038
+ url: "https://developer.mozilla.org/en-US/docs/Web/HTTP/Status/303"
2039
+ },
2040
+ 304: {
2041
+ name: "Not Modified",
2042
+ url: "https://developer.mozilla.org/en-US/docs/Web/HTTP/Status/304"
2043
+ },
2044
+ 305: {
2045
+ name: "Use Proxy",
2046
+ url: "https://developer.mozilla.org/en-US/docs/Web/HTTP/Status/305"
2047
+ },
2048
+ 306: {
2049
+ name: "(Unused)",
2050
+ url: "https://developer.mozilla.org/en-US/docs/Web/HTTP/Status/306"
2051
+ },
2052
+ 307: {
2053
+ name: "Temporary Redirect",
2054
+ url: "https://developer.mozilla.org/en-US/docs/Web/HTTP/Status/307"
2055
+ },
2056
+ 308: {
2057
+ name: "Permanent Redirect",
2058
+ url: "https://developer.mozilla.org/en-US/docs/Web/HTTP/Status/308"
2059
+ },
2060
+ 400: {
2061
+ name: "Bad Request",
2062
+ url: "https://developer.mozilla.org/en-US/docs/Web/HTTP/Status/400"
2063
+ },
2064
+ 401: {
2065
+ name: "Unauthorized",
2066
+ url: "https://developer.mozilla.org/en-US/docs/Web/HTTP/Status/401"
2067
+ },
2068
+ 402: {
2069
+ name: "Payment Required",
2070
+ url: "https://developer.mozilla.org/en-US/docs/Web/HTTP/Status/402"
2071
+ },
2072
+ 403: {
2073
+ name: "Forbidden",
2074
+ url: "https://developer.mozilla.org/en-US/docs/Web/HTTP/Status/403"
2075
+ },
2076
+ 404: {
2077
+ name: "Not Found",
2078
+ url: "https://developer.mozilla.org/en-US/docs/Web/HTTP/Status/404"
2079
+ },
2080
+ 405: {
2081
+ name: "Method Not Allowed",
2082
+ url: "https://developer.mozilla.org/en-US/docs/Web/HTTP/Status/405"
2083
+ },
2084
+ 406: {
2085
+ name: "Not Acceptable",
2086
+ url: "https://developer.mozilla.org/en-US/docs/Web/HTTP/Status/406"
2087
+ },
2088
+ 407: {
2089
+ name: "Proxy Authentication Required",
2090
+ url: "https://developer.mozilla.org/en-US/docs/Web/HTTP/Status/407"
2091
+ },
2092
+ 408: {
2093
+ name: "Request Timeout",
2094
+ url: "https://developer.mozilla.org/en-US/docs/Web/HTTP/Status/408"
2095
+ },
2096
+ 409: {
2097
+ name: "Conflict",
2098
+ url: "https://developer.mozilla.org/en-US/docs/Web/HTTP/Status/409"
2099
+ },
2100
+ 410: {
2101
+ name: "Gone",
2102
+ url: "https://developer.mozilla.org/en-US/docs/Web/HTTP/Status/410"
2103
+ },
2104
+ 411: {
2105
+ name: "Length Required",
2106
+ url: "https://developer.mozilla.org/en-US/docs/Web/HTTP/Status/411"
2107
+ },
2108
+ 412: {
2109
+ name: "Precondition Failed",
2110
+ url: "https://developer.mozilla.org/en-US/docs/Web/HTTP/Status/412"
2111
+ },
2112
+ 413: {
2113
+ name: "Content Too Large",
2114
+ url: "https://developer.mozilla.org/en-US/docs/Web/HTTP/Status/413"
2115
+ },
2116
+ 414: {
2117
+ name: "URI Too Long",
2118
+ url: "https://developer.mozilla.org/en-US/docs/Web/HTTP/Status/414"
2119
+ },
2120
+ 415: {
2121
+ name: "Unsupported Media Type",
2122
+ url: "https://developer.mozilla.org/en-US/docs/Web/HTTP/Status/415"
2123
+ },
2124
+ 416: {
2125
+ name: "Range Not Satisfiable",
2126
+ url: "https://developer.mozilla.org/en-US/docs/Web/HTTP/Status/416"
2127
+ },
2128
+ 417: {
2129
+ name: "Expectation Failed",
2130
+ url: "https://developer.mozilla.org/en-US/docs/Web/HTTP/Status/417"
2131
+ },
2132
+ 421: {
2133
+ name: "Misdirected Request",
2134
+ url: "https://developer.mozilla.org/en-US/docs/Web/HTTP/Status/421"
2135
+ },
2136
+ 422: {
2137
+ name: "Unprocessable Content",
2138
+ url: "https://developer.mozilla.org/en-US/docs/Web/HTTP/Status/422"
2139
+ },
2140
+ 423: {
2141
+ name: "Locked",
2142
+ url: "https://developer.mozilla.org/en-US/docs/Web/HTTP/Status/423"
2143
+ },
2144
+ 424: {
2145
+ name: "Failed Dependency",
2146
+ url: "https://developer.mozilla.org/en-US/docs/Web/HTTP/Status/424"
2147
+ },
2148
+ 425: {
2149
+ name: "Too Early",
2150
+ url: "https://developer.mozilla.org/en-US/docs/Web/HTTP/Status/425"
2151
+ },
2152
+ 426: {
2153
+ name: "Upgrade Required",
2154
+ url: "https://developer.mozilla.org/en-US/docs/Web/HTTP/Status/426"
2155
+ },
2156
+ 428: {
2157
+ name: "Precondition Required",
2158
+ url: "https://developer.mozilla.org/en-US/docs/Web/HTTP/Status/428"
2159
+ },
2160
+ 429: {
2161
+ name: "Too Many Requests",
2162
+ url: "https://developer.mozilla.org/en-US/docs/Web/HTTP/Status/429"
2163
+ },
2164
+ 431: {
2165
+ name: "Request Header Fields Too Large",
2166
+ url: "https://developer.mozilla.org/en-US/docs/Web/HTTP/Status/431"
2167
+ },
2168
+ 451: {
2169
+ name: "Unavailable For Legal Reasons",
2170
+ url: "https://developer.mozilla.org/en-US/docs/Web/HTTP/Status/451"
2171
+ },
2172
+ 500: {
2173
+ name: "Internal Server Error",
2174
+ url: "https://developer.mozilla.org/en-US/docs/Web/HTTP/Status/500"
2175
+ },
2176
+ 501: {
2177
+ name: "Not Implemented",
2178
+ url: "https://developer.mozilla.org/en-US/docs/Web/HTTP/Status/501"
2179
+ },
2180
+ 502: {
2181
+ name: "Bad Gateway",
2182
+ url: "https://developer.mozilla.org/en-US/docs/Web/HTTP/Status/502"
2183
+ },
2184
+ 503: {
2185
+ name: "Service Unavailable",
2186
+ url: "https://developer.mozilla.org/en-US/docs/Web/HTTP/Status/503"
2187
+ },
2188
+ 504: {
2189
+ name: "Gateway Timeout",
2190
+ url: "https://developer.mozilla.org/en-US/docs/Web/HTTP/Status/504"
2191
+ },
2192
+ 505: {
2193
+ name: "HTTP Version Not Supported",
2194
+ url: "https://developer.mozilla.org/en-US/docs/Web/HTTP/Status/505"
2195
+ },
2196
+ 506: {
2197
+ name: "Variant Also Negotiates",
2198
+ url: "https://developer.mozilla.org/en-US/docs/Web/HTTP/Status/506"
2199
+ },
2200
+ 507: {
2201
+ name: "Insufficient Storage",
2202
+ url: "https://developer.mozilla.org/en-US/docs/Web/HTTP/Status/507"
2203
+ },
2204
+ 508: {
2205
+ name: "Loop Detected",
2206
+ url: "https://developer.mozilla.org/en-US/docs/Web/HTTP/Status/508"
2207
+ },
2208
+ 510: {
2209
+ name: "Not Extended",
2210
+ url: "https://developer.mozilla.org/en-US/docs/Web/HTTP/Status/510"
2211
+ },
2212
+ 511: {
2213
+ name: "Network Authentication Required",
2214
+ url: "https://developer.mozilla.org/en-US/docs/Web/HTTP/Status/511"
2215
+ }
2216
+ };
1967
2217
  const defaultStateFactory = () => ({});
1968
2218
  const ssrState = typeof window !== "undefined" ? window.__SCALAR__ ?? defaultStateFactory() : defaultStateFactory();
1969
2219
  const createEmptyAuthenticationState = () => ({
@@ -2631,256 +2881,6 @@ const requestMethodAbbreviations = {
2631
2881
  CONNECT: "CONN",
2632
2882
  TRACE: "TRACE"
2633
2883
  };
2634
- const httpStatusCodes = {
2635
- 100: {
2636
- name: "Continue",
2637
- url: "https://developer.mozilla.org/en-US/docs/Web/HTTP/Status/100"
2638
- },
2639
- 101: {
2640
- name: "Switching Protocols",
2641
- url: "https://developer.mozilla.org/en-US/docs/Web/HTTP/Status/101"
2642
- },
2643
- 102: {
2644
- name: "Processing",
2645
- url: "https://developer.mozilla.org/en-US/docs/Web/HTTP/Status/102"
2646
- },
2647
- 103: {
2648
- name: "Early Hints",
2649
- url: "https://developer.mozilla.org/en-US/docs/Web/HTTP/Status/103"
2650
- },
2651
- 200: {
2652
- name: "OK",
2653
- url: "https://developer.mozilla.org/en-US/docs/Web/HTTP/Status/200"
2654
- },
2655
- 201: {
2656
- name: "Created",
2657
- url: "https://developer.mozilla.org/en-US/docs/Web/HTTP/Status/201"
2658
- },
2659
- 202: {
2660
- name: "Accepted",
2661
- url: "https://developer.mozilla.org/en-US/docs/Web/HTTP/Status/202"
2662
- },
2663
- 203: {
2664
- name: "Non-Authoritative Information",
2665
- url: "https://developer.mozilla.org/en-US/docs/Web/HTTP/Status/203"
2666
- },
2667
- 204: {
2668
- name: "No Content",
2669
- url: "https://developer.mozilla.org/en-US/docs/Web/HTTP/Status/204"
2670
- },
2671
- 205: {
2672
- name: "Reset Content",
2673
- url: "https://developer.mozilla.org/en-US/docs/Web/HTTP/Status/205"
2674
- },
2675
- 206: {
2676
- name: "Partial Content",
2677
- url: "https://developer.mozilla.org/en-US/docs/Web/HTTP/Status/206"
2678
- },
2679
- 207: {
2680
- name: "Multi-Status",
2681
- url: "https://developer.mozilla.org/en-US/docs/Web/HTTP/Status/207"
2682
- },
2683
- 208: {
2684
- name: "Already Reported",
2685
- url: "https://developer.mozilla.org/en-US/docs/Web/HTTP/Status/208"
2686
- },
2687
- 226: {
2688
- name: "IM Used",
2689
- url: "https://developer.mozilla.org/en-US/docs/Web/HTTP/Status/226"
2690
- },
2691
- 300: {
2692
- name: "Multiple Choices",
2693
- url: "https://developer.mozilla.org/en-US/docs/Web/HTTP/Status/300"
2694
- },
2695
- 301: {
2696
- name: "Moved Permanently",
2697
- url: "https://developer.mozilla.org/en-US/docs/Web/HTTP/Status/301"
2698
- },
2699
- 302: {
2700
- name: "Found",
2701
- url: "https://developer.mozilla.org/en-US/docs/Web/HTTP/Status/302"
2702
- },
2703
- 303: {
2704
- name: "See Other",
2705
- url: "https://developer.mozilla.org/en-US/docs/Web/HTTP/Status/303"
2706
- },
2707
- 304: {
2708
- name: "Not Modified",
2709
- url: "https://developer.mozilla.org/en-US/docs/Web/HTTP/Status/304"
2710
- },
2711
- 305: {
2712
- name: "Use Proxy",
2713
- url: "https://developer.mozilla.org/en-US/docs/Web/HTTP/Status/305"
2714
- },
2715
- 306: {
2716
- name: "(Unused)",
2717
- url: "https://developer.mozilla.org/en-US/docs/Web/HTTP/Status/306"
2718
- },
2719
- 307: {
2720
- name: "Temporary Redirect",
2721
- url: "https://developer.mozilla.org/en-US/docs/Web/HTTP/Status/307"
2722
- },
2723
- 308: {
2724
- name: "Permanent Redirect",
2725
- url: "https://developer.mozilla.org/en-US/docs/Web/HTTP/Status/308"
2726
- },
2727
- 400: {
2728
- name: "Bad Request",
2729
- url: "https://developer.mozilla.org/en-US/docs/Web/HTTP/Status/400"
2730
- },
2731
- 401: {
2732
- name: "Unauthorized",
2733
- url: "https://developer.mozilla.org/en-US/docs/Web/HTTP/Status/401"
2734
- },
2735
- 402: {
2736
- name: "Payment Required",
2737
- url: "https://developer.mozilla.org/en-US/docs/Web/HTTP/Status/402"
2738
- },
2739
- 403: {
2740
- name: "Forbidden",
2741
- url: "https://developer.mozilla.org/en-US/docs/Web/HTTP/Status/403"
2742
- },
2743
- 404: {
2744
- name: "Not Found",
2745
- url: "https://developer.mozilla.org/en-US/docs/Web/HTTP/Status/404"
2746
- },
2747
- 405: {
2748
- name: "Method Not Allowed",
2749
- url: "https://developer.mozilla.org/en-US/docs/Web/HTTP/Status/405"
2750
- },
2751
- 406: {
2752
- name: "Not Acceptable",
2753
- url: "https://developer.mozilla.org/en-US/docs/Web/HTTP/Status/406"
2754
- },
2755
- 407: {
2756
- name: "Proxy Authentication Required",
2757
- url: "https://developer.mozilla.org/en-US/docs/Web/HTTP/Status/407"
2758
- },
2759
- 408: {
2760
- name: "Request Timeout",
2761
- url: "https://developer.mozilla.org/en-US/docs/Web/HTTP/Status/408"
2762
- },
2763
- 409: {
2764
- name: "Conflict",
2765
- url: "https://developer.mozilla.org/en-US/docs/Web/HTTP/Status/409"
2766
- },
2767
- 410: {
2768
- name: "Gone",
2769
- url: "https://developer.mozilla.org/en-US/docs/Web/HTTP/Status/410"
2770
- },
2771
- 411: {
2772
- name: "Length Required",
2773
- url: "https://developer.mozilla.org/en-US/docs/Web/HTTP/Status/411"
2774
- },
2775
- 412: {
2776
- name: "Precondition Failed",
2777
- url: "https://developer.mozilla.org/en-US/docs/Web/HTTP/Status/412"
2778
- },
2779
- 413: {
2780
- name: "Content Too Large",
2781
- url: "https://developer.mozilla.org/en-US/docs/Web/HTTP/Status/413"
2782
- },
2783
- 414: {
2784
- name: "URI Too Long",
2785
- url: "https://developer.mozilla.org/en-US/docs/Web/HTTP/Status/414"
2786
- },
2787
- 415: {
2788
- name: "Unsupported Media Type",
2789
- url: "https://developer.mozilla.org/en-US/docs/Web/HTTP/Status/415"
2790
- },
2791
- 416: {
2792
- name: "Range Not Satisfiable",
2793
- url: "https://developer.mozilla.org/en-US/docs/Web/HTTP/Status/416"
2794
- },
2795
- 417: {
2796
- name: "Expectation Failed",
2797
- url: "https://developer.mozilla.org/en-US/docs/Web/HTTP/Status/417"
2798
- },
2799
- 421: {
2800
- name: "Misdirected Request",
2801
- url: "https://developer.mozilla.org/en-US/docs/Web/HTTP/Status/421"
2802
- },
2803
- 422: {
2804
- name: "Unprocessable Content",
2805
- url: "https://developer.mozilla.org/en-US/docs/Web/HTTP/Status/422"
2806
- },
2807
- 423: {
2808
- name: "Locked",
2809
- url: "https://developer.mozilla.org/en-US/docs/Web/HTTP/Status/423"
2810
- },
2811
- 424: {
2812
- name: "Failed Dependency",
2813
- url: "https://developer.mozilla.org/en-US/docs/Web/HTTP/Status/424"
2814
- },
2815
- 425: {
2816
- name: "Too Early",
2817
- url: "https://developer.mozilla.org/en-US/docs/Web/HTTP/Status/425"
2818
- },
2819
- 426: {
2820
- name: "Upgrade Required",
2821
- url: "https://developer.mozilla.org/en-US/docs/Web/HTTP/Status/426"
2822
- },
2823
- 428: {
2824
- name: "Precondition Required",
2825
- url: "https://developer.mozilla.org/en-US/docs/Web/HTTP/Status/428"
2826
- },
2827
- 429: {
2828
- name: "Too Many Requests",
2829
- url: "https://developer.mozilla.org/en-US/docs/Web/HTTP/Status/429"
2830
- },
2831
- 431: {
2832
- name: "Request Header Fields Too Large",
2833
- url: "https://developer.mozilla.org/en-US/docs/Web/HTTP/Status/431"
2834
- },
2835
- 451: {
2836
- name: "Unavailable For Legal Reasons",
2837
- url: "https://developer.mozilla.org/en-US/docs/Web/HTTP/Status/451"
2838
- },
2839
- 500: {
2840
- name: "Internal Server Error",
2841
- url: "https://developer.mozilla.org/en-US/docs/Web/HTTP/Status/500"
2842
- },
2843
- 501: {
2844
- name: "Not Implemented",
2845
- url: "https://developer.mozilla.org/en-US/docs/Web/HTTP/Status/501"
2846
- },
2847
- 502: {
2848
- name: "Bad Gateway",
2849
- url: "https://developer.mozilla.org/en-US/docs/Web/HTTP/Status/502"
2850
- },
2851
- 503: {
2852
- name: "Service Unavailable",
2853
- url: "https://developer.mozilla.org/en-US/docs/Web/HTTP/Status/503"
2854
- },
2855
- 504: {
2856
- name: "Gateway Timeout",
2857
- url: "https://developer.mozilla.org/en-US/docs/Web/HTTP/Status/504"
2858
- },
2859
- 505: {
2860
- name: "HTTP Version Not Supported",
2861
- url: "https://developer.mozilla.org/en-US/docs/Web/HTTP/Status/505"
2862
- },
2863
- 506: {
2864
- name: "Variant Also Negotiates",
2865
- url: "https://developer.mozilla.org/en-US/docs/Web/HTTP/Status/506"
2866
- },
2867
- 507: {
2868
- name: "Insufficient Storage",
2869
- url: "https://developer.mozilla.org/en-US/docs/Web/HTTP/Status/507"
2870
- },
2871
- 508: {
2872
- name: "Loop Detected",
2873
- url: "https://developer.mozilla.org/en-US/docs/Web/HTTP/Status/508"
2874
- },
2875
- 510: {
2876
- name: "Not Extended",
2877
- url: "https://developer.mozilla.org/en-US/docs/Web/HTTP/Status/510"
2878
- },
2879
- 511: {
2880
- name: "Network Authentication Required",
2881
- url: "https://developer.mozilla.org/en-US/docs/Web/HTTP/Status/511"
2882
- }
2883
- };
2884
2884
  const _sfc_main$C = /* @__PURE__ */ defineComponent({
2885
2885
  __name: "HttpMethod",
2886
2886
  props: {
@@ -26322,8 +26322,8 @@ const _hoisted_1$u = { class: "navigation-content-item" };
26322
26322
  const _hoisted_2$n = { class: "navtable" };
26323
26323
  const _hoisted_3$f = { class: "navtable-table" };
26324
26324
  const _hoisted_4$b = /* @__PURE__ */ createStaticVNode('<div class="navtable-item navtable-item__top"><div class="navtable-item-40"><label for="">Request</label></div><div class="navtable-item-40"><label for="">Response</label></div><div class="navtable-item-20"><label for="">TIME</label></div></div>', 1);
26325
- const _hoisted_5$7 = { class: "navtable-radios" };
26326
- const _hoisted_6$3 = /* @__PURE__ */ createStaticVNode('<div class="navtable-mock"><div class="navtable-item"><div class="navtable-item-40"></div><div class="navtable-item-40"></div><div class="navtable-item-20"></div></div></div>', 1);
26325
+ const _hoisted_5$8 = { class: "navtable-radios" };
26326
+ const _hoisted_6$4 = /* @__PURE__ */ createStaticVNode('<div class="navtable-mock"><div class="navtable-item"><div class="navtable-item-40"></div><div class="navtable-item-40"></div><div class="navtable-item-20"></div></div></div>', 1);
26327
26327
  const _sfc_main$y = /* @__PURE__ */ defineComponent({
26328
26328
  __name: "RequestHistory",
26329
26329
  emits: ["toggle"],
@@ -26334,7 +26334,7 @@ const _sfc_main$y = /* @__PURE__ */ defineComponent({
26334
26334
  createElementVNode("div", _hoisted_2$n, [
26335
26335
  createElementVNode("div", _hoisted_3$f, [
26336
26336
  _hoisted_4$b,
26337
- createElementVNode("div", _hoisted_5$7, [
26337
+ createElementVNode("div", _hoisted_5$8, [
26338
26338
  (openBlock(true), createElementBlock(Fragment, null, renderList(unref(requestHistoryOrder2), (history) => {
26339
26339
  return openBlock(), createBlock(RequestHistoryItem, {
26340
26340
  key: history,
@@ -26342,7 +26342,7 @@ const _sfc_main$y = /* @__PURE__ */ defineComponent({
26342
26342
  }, null, 8, ["history"]);
26343
26343
  }), 128))
26344
26344
  ]),
26345
- _hoisted_6$3
26345
+ _hoisted_6$4
26346
26346
  ])
26347
26347
  ])
26348
26348
  ]);
@@ -26395,7 +26395,7 @@ const _sfc_main$x = /* @__PURE__ */ defineComponent({
26395
26395
  }
26396
26396
  });
26397
26397
  const RequestMethodSelect = /* @__PURE__ */ _export_sfc(_sfc_main$x, [["__scopeId", "data-v-0f1e5bdc"]]);
26398
- const _withScopeId$5 = (n) => (pushScopeId("data-v-64a60541"), n = n(), popScopeId(), n);
26398
+ const _withScopeId$5 = (n) => (pushScopeId("data-v-2967e07a"), n = n(), popScopeId(), n);
26399
26399
  const _hoisted_1$s = {
26400
26400
  key: 0,
26401
26401
  class: "loader"
@@ -26403,8 +26403,8 @@ const _hoisted_1$s = {
26403
26403
  const _hoisted_2$l = { class: "url-form" };
26404
26404
  const _hoisted_3$d = { class: "url-form-field" };
26405
26405
  const _hoisted_4$a = { class: "url-form-input-wrapper cm-scroller" };
26406
- const _hoisted_5$6 = /* @__PURE__ */ _withScopeId$5(() => /* @__PURE__ */ createElementVNode("div", { class: "url-form-input-fade__left" }, null, -1));
26407
- const _hoisted_6$2 = /* @__PURE__ */ _withScopeId$5(() => /* @__PURE__ */ createElementVNode("div", { class: "url-form-input-fade__right" }, null, -1));
26406
+ const _hoisted_5$7 = /* @__PURE__ */ _withScopeId$5(() => /* @__PURE__ */ createElementVNode("div", { class: "url-form-input-fade__left" }, null, -1));
26407
+ const _hoisted_6$3 = /* @__PURE__ */ _withScopeId$5(() => /* @__PURE__ */ createElementVNode("div", { class: "url-form-input-fade__right" }, null, -1));
26408
26408
  const _hoisted_7$2 = {
26409
26409
  key: 0,
26410
26410
  class: "history"
@@ -26531,7 +26531,7 @@ const _sfc_main$w = /* @__PURE__ */ defineComponent({
26531
26531
  onChange: handleRequestMethodChanged
26532
26532
  }, null, 8, ["readOnly", "requestMethod"]),
26533
26533
  createElementVNode("div", _hoisted_4$a, [
26534
- _hoisted_5$6,
26534
+ _hoisted_5$7,
26535
26535
  createVNode(unref(CodeMirror), {
26536
26536
  class: "url-form-input",
26537
26537
  content: formattedUrl.value,
@@ -26541,7 +26541,7 @@ const _sfc_main$w = /* @__PURE__ */ defineComponent({
26541
26541
  withVariables: "",
26542
26542
  onChange
26543
26543
  }, null, 8, ["content", "readOnly"]),
26544
- _hoisted_6$2
26544
+ _hoisted_6$3
26545
26545
  ]),
26546
26546
  unref(requestHistoryOrder2).length ? (openBlock(), createElementBlock("div", _hoisted_7$2, [
26547
26547
  createElementVNode("div", {
@@ -26581,7 +26581,7 @@ const _sfc_main$w = /* @__PURE__ */ defineComponent({
26581
26581
  };
26582
26582
  }
26583
26583
  });
26584
- const AddressBar = /* @__PURE__ */ _export_sfc(_sfc_main$w, [["__scopeId", "data-v-64a60541"]]);
26584
+ const AddressBar = /* @__PURE__ */ _export_sfc(_sfc_main$w, [["__scopeId", "data-v-2967e07a"]]);
26585
26585
  const clickGeneratedParameter = useEventBus(Symbol());
26586
26586
  const _hoisted_1$r = { class: "scalar-api-client__toggle-container" };
26587
26587
  const _hoisted_2$k = { class: "scalar-api-client__item__title" };
@@ -26602,7 +26602,7 @@ const _hoisted_4$9 = /* @__PURE__ */ createElementVNode("svg", {
26602
26602
  d: "M2.2 4.1 6 7.9l3.8-3.8"
26603
26603
  })
26604
26604
  ], -1);
26605
- const _hoisted_5$5 = { class: "scalar-api-client__item__content" };
26605
+ const _hoisted_5$6 = { class: "scalar-api-client__item__content" };
26606
26606
  const _sfc_main$v = /* @__PURE__ */ defineComponent({
26607
26607
  __name: "CollapsibleSection",
26608
26608
  props: {
@@ -26652,7 +26652,7 @@ const _sfc_main$v = /* @__PURE__ */ defineComponent({
26652
26652
  }, 1536),
26653
26653
  createVNode(unref(DisclosurePanel), null, {
26654
26654
  default: withCtx(() => [
26655
- createElementVNode("div", _hoisted_5$5, [
26655
+ createElementVNode("div", _hoisted_5$6, [
26656
26656
  renderSlot(_ctx.$slots, "default")
26657
26657
  ])
26658
26658
  ]),
@@ -30753,7 +30753,7 @@ var prism = { exports: {} };
30753
30753
  })();
30754
30754
  })(prism);
30755
30755
  var prismExports = prism.exports;
30756
- const L = /* @__PURE__ */ getDefaultExportFromCjs(prismExports);
30756
+ const R = /* @__PURE__ */ getDefaultExportFromCjs(prismExports);
30757
30757
  const M = "scalar-component", Te = extendTailwindMerge({
30758
30758
  extend: {
30759
30759
  classGroups: {
@@ -30762,7 +30762,7 @@ const M = "scalar-component", Te = extendTailwindMerge({
30762
30762
  [M]: [M]
30763
30763
  }
30764
30764
  }
30765
- }), { cva: T, cx: E, compose: Dt } = defineConfig({
30765
+ }), { cva: L, cx: E, compose: zt } = defineConfig({
30766
30766
  hooks: {
30767
30767
  onComplete: (a) => `${Te(a, M)}`
30768
30768
  }
@@ -30770,7 +30770,7 @@ const M = "scalar-component", Te = extendTailwindMerge({
30770
30770
  key: 0,
30771
30771
  class: "circular-loader"
30772
30772
  };
30773
- const De = /* @__PURE__ */ defineComponent({
30773
+ const ze = /* @__PURE__ */ defineComponent({
30774
30774
  __name: "ScalarLoading",
30775
30775
  props: {
30776
30776
  loadingState: {},
@@ -30810,10 +30810,10 @@ const De = /* @__PURE__ */ defineComponent({
30810
30810
  }
30811
30811
  }), B = (a, t2) => {
30812
30812
  const e = a.__vccOpts || a;
30813
- for (const [r2, c] of t2)
30814
- e[r2] = c;
30813
+ for (const [r2, d] of t2)
30814
+ e[r2] = d;
30815
30815
  return e;
30816
- }, H = /* @__PURE__ */ B(De, [["__scopeId", "data-v-47faceda"]]), Z = {
30816
+ }, H = /* @__PURE__ */ B(ze, [["__scopeId", "data-v-47faceda"]]), Z = {
30817
30817
  solid: [
30818
30818
  "scalar-button-solid",
30819
30819
  "bg-back-btn-1 text-fore-btn-1 shadow-sm active:bg-back-btn-1 active:shadow-none hocus:bg-hover-btn-1"
@@ -30830,14 +30830,14 @@ const De = /* @__PURE__ */ defineComponent({
30830
30830
  "scalar-button-danger",
30831
30831
  "bg-error text-white active:brightness-90 hocus:brightness-90"
30832
30832
  ]
30833
- }, Pe = T({
30833
+ }, De = L({
30834
30834
  base: "scalar-button row cursor-pointer items-center justify-center rounded font-medium",
30835
30835
  variants: {
30836
30836
  disabled: {
30837
30837
  true: "bg-background-2 text-color-3 cursor-not-allowed shadow-none"
30838
30838
  },
30839
30839
  fullWidth: { true: "w-full" },
30840
- size: { md: "h-10 px-6 text-sm" },
30840
+ size: { sm: "px-2 py-1 text-xs", md: "h-10 px-6 text-sm" },
30841
30841
  variant: Z
30842
30842
  },
30843
30843
  compoundVariants: [
@@ -30847,7 +30847,7 @@ const De = /* @__PURE__ */ defineComponent({
30847
30847
  class: "bg-transparent text-ghost"
30848
30848
  }
30849
30849
  ]
30850
- }), Oe = ["ariaDisabled"], ze = {
30850
+ }), Pe = ["ariaDisabled"], Oe = {
30851
30851
  key: 0,
30852
30852
  class: "mr-2 h-4 w-4"
30853
30853
  }, Be = {
@@ -30866,18 +30866,18 @@ const De = /* @__PURE__ */ defineComponent({
30866
30866
  setup(a) {
30867
30867
  const t2 = computed(() => {
30868
30868
  const { class: e, ...r2 } = useAttrs();
30869
- return { className: e || "", rest: r2 };
30869
+ return { class: e || "", rest: r2 };
30870
30870
  });
30871
30871
  return (e, r2) => (openBlock(), createElementBlock("button", mergeProps(t2.value.rest, {
30872
30872
  ariaDisabled: e.disabled || void 0,
30873
30873
  class: unref(E)(
30874
- unref(Pe)({ fullWidth: e.fullWidth, disabled: e.disabled, size: e.size, variant: e.variant }),
30874
+ unref(De)({ fullWidth: e.fullWidth, disabled: e.disabled, size: e.size, variant: e.variant }),
30875
30875
  { "pl-9 pr-3": e.loading },
30876
- `${t2.value.className}`
30876
+ `${t2.value.class}`
30877
30877
  ),
30878
30878
  type: "button"
30879
30879
  }), [
30880
- e.$slots.icon ? (openBlock(), createElementBlock("div", ze, [
30880
+ e.$slots.icon ? (openBlock(), createElementBlock("div", Oe, [
30881
30881
  renderSlot(e.$slots, "icon")
30882
30882
  ])) : createCommentVNode("", true),
30883
30883
  renderSlot(e.$slots, "default"),
@@ -30887,7 +30887,7 @@ const De = /* @__PURE__ */ defineComponent({
30887
30887
  size: "20px"
30888
30888
  }, null, 8, ["loadingState"])
30889
30889
  ])) : createCommentVNode("", true)
30890
- ], 16, Oe));
30890
+ ], 16, Pe));
30891
30891
  }
30892
30892
  });
30893
30893
  (function(a) {
@@ -31089,7 +31089,7 @@ const De = /* @__PURE__ */ defineComponent({
31089
31089
  lookbehind: true
31090
31090
  }
31091
31091
  }, e.inside = a.languages.bash;
31092
- for (var c = [
31092
+ for (var d = [
31093
31093
  "comment",
31094
31094
  "function-name",
31095
31095
  "for-or-select",
@@ -31105,8 +31105,8 @@ const De = /* @__PURE__ */ defineComponent({
31105
31105
  "operator",
31106
31106
  "punctuation",
31107
31107
  "number"
31108
- ], d = r2.variable[1].inside, s = 0; s < c.length; s++)
31109
- d[c[s]] = a.languages.bash[c[s]];
31108
+ ], c = r2.variable[1].inside, s = 0; s < d.length; s++)
31109
+ c[d[s]] = a.languages.bash[d[s]];
31110
31110
  a.languages.sh = a.languages.bash, a.languages.shell = a.languages.bash;
31111
31111
  })(Prism);
31112
31112
  Prism.languages.json = {
@@ -31181,7 +31181,7 @@ Prism.languages.webmanifest = Prism.languages.json;
31181
31181
  };
31182
31182
  function r2(s) {
31183
31183
  if (s = s.filter(function(i) {
31184
- var g = c(i), p = g["white-space"];
31184
+ var g = d(i), p = g["white-space"];
31185
31185
  return p === "pre-wrap" || p === "pre-line";
31186
31186
  }), s.length != 0) {
31187
31187
  var u = s.map(function(i) {
@@ -31201,12 +31201,12 @@ Prism.languages.webmanifest = Prism.languages.json;
31201
31201
  }).filter(Boolean);
31202
31202
  u.forEach(function(i) {
31203
31203
  var g = i.sizer, p = i.lines, o = i.lineHeights, f = i.oneLinerHeight;
31204
- o[p.length - 1] = void 0, p.forEach(function(l, w) {
31204
+ o[p.length - 1] = void 0, p.forEach(function(l, k) {
31205
31205
  if (l && l.length > 1) {
31206
- var A = g.appendChild(document.createElement("span"));
31207
- A.style.display = "block", A.textContent = l;
31206
+ var C2 = g.appendChild(document.createElement("span"));
31207
+ C2.style.display = "block", C2.textContent = l;
31208
31208
  } else
31209
- o[w] = f;
31209
+ o[k] = f;
31210
31210
  });
31211
31211
  }), u.forEach(function(i) {
31212
31212
  for (var g = i.sizer, p = i.lineHeights, o = 0, f = 0; f < p.length; f++)
@@ -31219,12 +31219,12 @@ Prism.languages.webmanifest = Prism.languages.json;
31219
31219
  });
31220
31220
  }
31221
31221
  }
31222
- function c(s) {
31222
+ function d(s) {
31223
31223
  return s ? window.getComputedStyle ? getComputedStyle(s) : s.currentStyle || null : null;
31224
31224
  }
31225
- var d = void 0;
31225
+ var c = void 0;
31226
31226
  window.addEventListener("resize", function() {
31227
- e.assumeViewportIndependence && d === window.innerWidth || (d = window.innerWidth, r2(Array.prototype.slice.call(document.querySelectorAll("pre." + a))));
31227
+ e.assumeViewportIndependence && c === window.innerWidth || (c = window.innerWidth, r2(Array.prototype.slice.call(document.querySelectorAll("pre." + a))));
31228
31228
  }), Prism.hooks.add("complete", function(s) {
31229
31229
  if (s.code) {
31230
31230
  var u = (
@@ -31259,7 +31259,7 @@ function He(a) {
31259
31259
  2
31260
31260
  );
31261
31261
  }
31262
- function z(a) {
31262
+ function O(a) {
31263
31263
  if (typeof a == "string")
31264
31264
  return a;
31265
31265
  if (typeof a == "object")
@@ -31270,7 +31270,7 @@ function z(a) {
31270
31270
  }
31271
31271
  return a;
31272
31272
  }
31273
- const Ge = ["innerHTML"], Ot = /* @__PURE__ */ defineComponent({
31273
+ const Ge = ["innerHTML"], Pt = /* @__PURE__ */ defineComponent({
31274
31274
  __name: "ScalarCodeBlock",
31275
31275
  props: {
31276
31276
  content: {},
@@ -31279,8 +31279,8 @@ const Ge = ["innerHTML"], Ot = /* @__PURE__ */ defineComponent({
31279
31279
  hideCredentials: {}
31280
31280
  },
31281
31281
  setup(a) {
31282
- const t2 = a, e = createHash(z(t2.content)), r2 = `components-scalar-code-block${e}`, { plugins: c, highlightElement: d } = L;
31283
- t2.hideCredentials && L.hooks.add("wrap", function(o) {
31282
+ const t2 = a, e = createHash(O(t2.content)), r2 = `components-scalar-code-block${e}`, { plugins: d, highlightElement: c } = R;
31283
+ t2.hideCredentials && R.hooks.add("wrap", function(o) {
31284
31284
  if (!t2.hideCredentials)
31285
31285
  return;
31286
31286
  let f = false;
@@ -31301,20 +31301,20 @@ const Ge = ["innerHTML"], Ot = /* @__PURE__ */ defineComponent({
31301
31301
  watch(
31302
31302
  [() => t2.lang, () => t2.content, s],
31303
31303
  () => {
31304
- s.value && t2.content && (!u.value || t2.lang !== g) && (u.value = "", nextTick(() => d(s.value)));
31304
+ s.value && t2.content && (!u.value || t2.lang !== g) && (u.value = "", nextTick(() => c(s.value)));
31305
31305
  },
31306
31306
  { immediate: true }
31307
31307
  );
31308
31308
  const p = /\n(?!$)/g;
31309
31309
  return onServerPrefetch(async () => {
31310
31310
  let o = "";
31311
- t2.lineNumbers && L.hooks.add("after-tokenize", (l) => {
31312
- const w = l.code.match(p), A = w ? w.length + 1 : 1;
31313
- o = `<span aria-hidden="true" class="line-numbers-rows">${new Array(A + 1).join("<span></span>")}</span>`;
31311
+ t2.lineNumbers && R.hooks.add("after-tokenize", (l) => {
31312
+ const k = l.code.match(p), C2 = k ? k.length + 1 : 1;
31313
+ o = `<span aria-hidden="true" class="line-numbers-rows">${new Array(C2 + 1).join("<span></span>")}</span>`;
31314
31314
  });
31315
- const f = L.highlight(
31316
- z(t2.content),
31317
- L.languages[i.value],
31315
+ const f = R.highlight(
31316
+ O(t2.content),
31317
+ R.languages[i.value],
31318
31318
  i.value
31319
31319
  );
31320
31320
  if (u.value = f + o, e !== 0) {
@@ -31322,7 +31322,7 @@ const Ge = ["innerHTML"], Ot = /* @__PURE__ */ defineComponent({
31322
31322
  l.payload.data[r2] = f + o;
31323
31323
  }
31324
31324
  }), onMounted(async () => {
31325
- await import("./prism-autoloader-Dlh8Vzlw-BR-Zk31i.js"), c.autoloader.languages_path = "https://cdnjs.cloudflare.com/ajax/libs/prism/1.29.0/components/";
31325
+ await import("./prism-autoloader-Dlh8Vzlw-BR-Zk31i.js"), d.autoloader.languages_path = "https://cdnjs.cloudflare.com/ajax/libs/prism/1.29.0/components/";
31326
31326
  }), (o, f) => (openBlock(), createElementBlock("pre", {
31327
31327
  class: normalizeClass([
31328
31328
  `scalar-component scalar-codeblock-pre language-${i.value}`,
@@ -31334,13 +31334,13 @@ const Ge = ["innerHTML"], Ot = /* @__PURE__ */ defineComponent({
31334
31334
  u.value ? (openBlock(), createElementBlock("code", {
31335
31335
  key: 0,
31336
31336
  class: normalizeClass(`scalar-codeblock-code language-${i.value}`),
31337
- innerHTML: unref(z)(u.value)
31337
+ innerHTML: unref(O)(u.value)
31338
31338
  }, null, 10, Ge)) : (openBlock(), createElementBlock("code", {
31339
31339
  key: 1,
31340
31340
  ref_key: "el",
31341
31341
  ref: s,
31342
31342
  class: normalizeClass(`scalar-codeblock-code language-${i.value}`)
31343
- }, toDisplayString(unref(z)(o.content)), 3))
31343
+ }, toDisplayString(unref(O)(o.content)), 3))
31344
31344
  ], 2));
31345
31345
  }
31346
31346
  });
@@ -31354,29 +31354,29 @@ const U = /* @__PURE__ */ Object.assign({ "./Add.svg": () => import("./Add-ngyZg
31354
31354
  size: {}
31355
31355
  },
31356
31356
  setup(a) {
31357
- const t2 = a, e = T({
31357
+ const t2 = a, e = L({
31358
31358
  variants: {
31359
31359
  size: {
31360
- xs: "h-3 w-3 stroke-[1.4]",
31361
- sm: "h-3.5 w-3.5 stroke-[1.2]",
31362
- md: "h-4 w-4 stroke-[1.1]",
31363
- lg: "h-5 w-5",
31364
- xl: "h-6 w-6 stroke-[0.96]",
31365
- "2xl": "h-8 w-8 stroke-[0.92]",
31366
- "3xl": "h-10 w-10 stroke-[0.9]",
31367
- full: "h-full w-full"
31360
+ xs: "size-3 stroke-[1.4]",
31361
+ sm: "size-3.5 stroke-[1.2]",
31362
+ md: "size-4 stroke-[1.1]",
31363
+ lg: "size-5",
31364
+ xl: "size-6 stroke-[0.96]",
31365
+ "2xl": "size-8 stroke-[0.92]",
31366
+ "3xl": "size-10 stroke-[0.9]",
31367
+ full: "size-full"
31368
31368
  }
31369
31369
  },
31370
31370
  defaultVariants: {
31371
31371
  size: "full"
31372
31372
  }
31373
31373
  }), r2 = j(t2.icon);
31374
- return (c, d) => unref(r2) ? (openBlock(), createBlock(resolveDynamicComponent(unref(j)(c.icon)), {
31374
+ return (d, c) => unref(r2) ? (openBlock(), createBlock(resolveDynamicComponent(unref(j)(d.icon)), {
31375
31375
  key: 0,
31376
- class: normalizeClass(unref(E)("scalar-icon", unref(e)({ size: c.size })))
31376
+ class: normalizeClass(unref(E)("scalar-icon", unref(e)({ size: d.size })))
31377
31377
  }, null, 8, ["class"])) : (openBlock(), createElementBlock("img", {
31378
31378
  key: 1,
31379
- src: c.icon
31379
+ src: d.icon
31380
31380
  }, null, 8, Ye));
31381
31381
  }
31382
31382
  }), Je = ["ariaDisabled"], Ze = { class: "sr-only" }, Q = /* @__PURE__ */ defineComponent({
@@ -31389,13 +31389,13 @@ const U = /* @__PURE__ */ Object.assign({ "./Add.svg": () => import("./Add-ngyZg
31389
31389
  size: { default: "md" }
31390
31390
  },
31391
31391
  setup(a) {
31392
- const t2 = T({
31392
+ const t2 = L({
31393
31393
  base: "scalar-icon-button grid aspect-square cursor-pointer rounded",
31394
31394
  variants: {
31395
31395
  size: {
31396
- xs: "h-3.5 w-3.5 p-0.5",
31397
- sm: "h-5 w-5 p-1",
31398
- md: "h-10 w-10 p-3",
31396
+ xs: "size-3.5 p-0.5",
31397
+ sm: "size-6 p-1",
31398
+ md: "size-10 p-3",
31399
31399
  full: "h-full w-full"
31400
31400
  },
31401
31401
  disabled: {
@@ -31403,15 +31403,18 @@ const U = /* @__PURE__ */ Object.assign({ "./Add.svg": () => import("./Add-ngyZg
31403
31403
  },
31404
31404
  variant: Z
31405
31405
  }
31406
+ }), e = computed(() => {
31407
+ const { class: r2, ...d } = useAttrs();
31408
+ return { class: r2 || "", rest: d };
31406
31409
  });
31407
- return (e, r2) => (openBlock(), createElementBlock("button", {
31408
- ariaDisabled: e.disabled || void 0,
31409
- class: normalizeClass(unref(E)(unref(t2)({ size: e.size, variant: e.variant, disabled: e.disabled }))),
31410
+ return (r2, d) => (openBlock(), createElementBlock("button", mergeProps(e.value.rest, {
31411
+ ariaDisabled: r2.disabled || void 0,
31412
+ class: unref(E)(unref(t2)({ size: r2.size, variant: r2.variant, disabled: r2.disabled }), e.value.class),
31410
31413
  type: "button"
31411
- }, [
31412
- createVNode(unref(V), { icon: e.icon }, null, 8, ["icon"]),
31413
- createElementVNode("span", Ze, toDisplayString(e.label), 1)
31414
- ], 10, Je));
31414
+ }), [
31415
+ createVNode(unref(V), { icon: r2.icon }, null, 8, ["icon"]),
31416
+ createElementVNode("span", Ze, toDisplayString(r2.label), 1)
31417
+ ], 16, Je));
31415
31418
  }
31416
31419
  });
31417
31420
  const _hoisted_1$o = { class: "card-form-input" };
@@ -31461,7 +31464,7 @@ const _hoisted_1$n = { class: "scopes-label" };
31461
31464
  const _hoisted_2$i = /* @__PURE__ */ _withScopeId$4(() => /* @__PURE__ */ createElementVNode("em", null, "/", -1));
31462
31465
  const _hoisted_3$a = ["checked"];
31463
31466
  const _hoisted_4$8 = { class: "dropdown-item-title" };
31464
- const _hoisted_5$4 = { class: "dropdown-item-description" };
31467
+ const _hoisted_5$5 = { class: "dropdown-item-description" };
31465
31468
  const _sfc_main$q = /* @__PURE__ */ defineComponent({
31466
31469
  __name: "SecuritySchemeScopes",
31467
31470
  props: {
@@ -31539,7 +31542,7 @@ const _sfc_main$q = /* @__PURE__ */ defineComponent({
31539
31542
  type: "checkbox"
31540
31543
  }, null, 8, _hoisted_3$a),
31541
31544
  createElementVNode("dt", _hoisted_4$8, toDisplayString(key), 1),
31542
- createElementVNode("dd", _hoisted_5$4, toDisplayString(description), 1)
31545
+ createElementVNode("dd", _hoisted_5$5, toDisplayString(description), 1)
31543
31546
  ]),
31544
31547
  _: 2
31545
31548
  }, 1032, ["value"]);
@@ -31784,14 +31787,19 @@ const _sfc_main$p = /* @__PURE__ */ defineComponent({
31784
31787
  }
31785
31788
  });
31786
31789
  const SecurityScheme = /* @__PURE__ */ _export_sfc(_sfc_main$p, [["__scopeId", "data-v-3eb93ac9"]]);
31787
- const _withScopeId$3 = (n) => (pushScopeId("data-v-f7e91a72"), n = n(), popScopeId(), n);
31790
+ const _withScopeId$3 = (n) => (pushScopeId("data-v-d4d0c979"), n = n(), popScopeId(), n);
31788
31791
  const _hoisted_1$m = {
31792
+ key: 0,
31793
+ class: "security-scheme-label"
31794
+ };
31795
+ const _hoisted_2$h = {
31789
31796
  key: 1,
31790
31797
  class: "security-scheme-selector"
31791
31798
  };
31792
- const _hoisted_2$h = ["value"];
31793
- const _hoisted_3$9 = /* @__PURE__ */ _withScopeId$3(() => /* @__PURE__ */ createElementVNode("option", { value: "" }, "None", -1));
31799
+ const _hoisted_3$9 = { class: "security-scheme-label" };
31794
31800
  const _hoisted_4$7 = ["value"];
31801
+ const _hoisted_5$4 = /* @__PURE__ */ _withScopeId$3(() => /* @__PURE__ */ createElementVNode("option", { value: "" }, "None", -1));
31802
+ const _hoisted_6$2 = ["value"];
31795
31803
  const _sfc_main$o = /* @__PURE__ */ defineComponent({
31796
31804
  __name: "SecuritySchemeSelector",
31797
31805
  props: {
@@ -31845,10 +31853,8 @@ const _sfc_main$o = /* @__PURE__ */ defineComponent({
31845
31853
  const keys = computed(() => Object.keys(props.value ?? {}));
31846
31854
  return (_ctx, _cache) => {
31847
31855
  var _a2, _b;
31848
- return keys.value.length === 1 ? (openBlock(), createElementBlock(Fragment, { key: 0 }, [
31849
- createTextVNode(toDisplayString(getLabelForScheme((_a2 = _ctx.value) == null ? void 0 : _a2[keys.value[0]], keys.value[0])), 1)
31850
- ], 64)) : keys.value.length > 1 ? (openBlock(), createElementBlock("div", _hoisted_1$m, [
31851
- createElementVNode("span", null, toDisplayString(unref(authentication2).preferredSecurityScheme ? getLabelForScheme(
31856
+ return keys.value.length === 1 ? (openBlock(), createElementBlock("div", _hoisted_1$m, toDisplayString(getLabelForScheme((_a2 = _ctx.value) == null ? void 0 : _a2[keys.value[0]], keys.value[0])), 1)) : keys.value.length > 1 ? (openBlock(), createElementBlock("div", _hoisted_2$h, [
31857
+ createElementVNode("span", _hoisted_3$9, toDisplayString(unref(authentication2).preferredSecurityScheme ? getLabelForScheme(
31852
31858
  (_b = _ctx.value) == null ? void 0 : _b[unref(authentication2).preferredSecurityScheme],
31853
31859
  unref(authentication2).preferredSecurityScheme
31854
31860
  ) : "None"), 1),
@@ -31859,20 +31865,20 @@ const _sfc_main$o = /* @__PURE__ */ defineComponent({
31859
31865
  }, ["prevent"])),
31860
31866
  onInput: handleAuthenticationTypeInput
31861
31867
  }, [
31862
- _hoisted_3$9,
31868
+ _hoisted_5$4,
31863
31869
  (openBlock(true), createElementBlock(Fragment, null, renderList(keys.value, (key) => {
31864
31870
  var _a3;
31865
31871
  return openBlock(), createElementBlock("option", {
31866
31872
  key,
31867
31873
  value: key ?? null
31868
- }, toDisplayString(getLabelForScheme((_a3 = _ctx.value) == null ? void 0 : _a3[key], key)), 9, _hoisted_4$7);
31874
+ }, toDisplayString(getLabelForScheme((_a3 = _ctx.value) == null ? void 0 : _a3[key], key)), 9, _hoisted_6$2);
31869
31875
  }), 128))
31870
- ], 40, _hoisted_2$h)
31876
+ ], 40, _hoisted_4$7)
31871
31877
  ])) : createCommentVNode("", true);
31872
31878
  };
31873
31879
  }
31874
31880
  });
31875
- const SecuritySchemeSelector = /* @__PURE__ */ _export_sfc(_sfc_main$o, [["__scopeId", "data-v-f7e91a72"]]);
31881
+ const SecuritySchemeSelector = /* @__PURE__ */ _export_sfc(_sfc_main$o, [["__scopeId", "data-v-d4d0c979"]]);
31876
31882
  const _hoisted_1$l = {
31877
31883
  key: 0,
31878
31884
  class: "preferred-security-scheme"
@@ -32786,7 +32792,7 @@ const _sfc_main$9 = /* @__PURE__ */ defineComponent({
32786
32792
  return openBlock(), createBlock(unref(_sfc_main$v), { title: "Body" }, {
32787
32793
  default: withCtx(() => [
32788
32794
  _ctx.active ? (openBlock(), createElementBlock(Fragment, { key: 0 }, [
32789
- codeMirrorLanguage.value ? (openBlock(), createBlock(unref(Ot), {
32795
+ codeMirrorLanguage.value ? (openBlock(), createBlock(unref(Pt), {
32790
32796
  key: 0,
32791
32797
  class: "custom-scroll",
32792
32798
  content: _ctx.data,
@@ -33244,7 +33250,6 @@ export {
33244
33250
  getRequestFromAuthentication,
33245
33251
  getSecretCredentialsFromAuthentication,
33246
33252
  httpHeaders,
33247
- httpStatusCodes,
33248
33253
  humanDiff,
33249
33254
  isRequestMethod,
33250
33255
  mapFromArray,