@scalar/api-client 2.3.21 → 2.3.22
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/CHANGELOG.md +13 -0
- package/dist/components/CommandPalette/TheCommandPalette.vue.d.ts.map +1 -1
- package/dist/layouts/App/create-api-client-app.d.ts.map +1 -1
- package/dist/layouts/Modal/create-api-client-modal.d.ts.map +1 -1
- package/dist/layouts/Web/create-api-client-web.d.ts.map +1 -1
- package/dist/libs/create-client.d.ts.map +1 -1
- package/dist/libs/find-request.d.ts.map +1 -1
- package/dist/libs/send-request/create-request-operation.d.ts.map +1 -1
- package/dist/libs/send-request/create-request-operation.js +80 -60
- package/dist/libs/send-request/create-request-operation.test.d.ts.map +1 -1
- package/dist/store/active-entities.d.ts.map +1 -1
- package/dist/store/requests.d.ts.map +1 -1
- package/dist/store/store.d.ts.map +1 -1
- package/dist/style.css +1 -1
- package/dist/views/Request/ResponseSection/ResponseBodyStreaming.vue.d.ts +6 -0
- package/dist/views/Request/ResponseSection/ResponseBodyStreaming.vue.d.ts.map +1 -0
- package/dist/views/Request/ResponseSection/ResponseBodyStreaming.vue.js +74 -0
- package/dist/views/Request/ResponseSection/ResponseBodyStreaming.vue2.js +4 -0
- package/dist/views/Request/ResponseSection/ResponseEmpty.vue2.js +1 -1
- package/dist/views/Request/ResponseSection/ResponseSection.vue.d.ts.map +1 -1
- package/dist/views/Request/ResponseSection/ResponseSection.vue.js +1 -1
- package/dist/views/Request/ResponseSection/ResponseSection.vue2.js +80 -74
- package/package.json +12 -12
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
type __VLS_Props = {
|
|
2
|
+
reader: ReadableStreamDefaultReader<Uint8Array>;
|
|
3
|
+
};
|
|
4
|
+
declare const _default: import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
5
|
+
export default _default;
|
|
6
|
+
//# sourceMappingURL=ResponseBodyStreaming.vue.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"ResponseBodyStreaming.vue.d.ts","sourceRoot":"","sources":["../../../../src/views/Request/ResponseSection/ResponseBodyStreaming.vue"],"names":[],"mappings":"AAiHA,KAAK,WAAW,GAAG;IACjB,MAAM,EAAE,2BAA2B,CAAC,UAAU,CAAC,CAAA;CAChD,CAAC;;AAoLF,wBAOG"}
|
|
@@ -0,0 +1,74 @@
|
|
|
1
|
+
import { defineComponent as y, ref as i, watch as _, nextTick as w, onMounted as h, onBeforeUnmount as k, openBlock as s, createBlock as L, withCtx as p, createElementVNode as l, unref as d, createElementBlock as c, createVNode as B, createCommentVNode as u, toDisplayString as g } from "vue";
|
|
2
|
+
import { useLoadingState as S, ScalarLoading as b } from "@scalar/components";
|
|
3
|
+
import C from "../../../components/ViewLayout/ViewLayoutCollapse.vue.js";
|
|
4
|
+
const T = { class: "flex w-full items-center justify-between" }, E = {
|
|
5
|
+
key: 0,
|
|
6
|
+
class: "mr-2 flex items-center gap-2"
|
|
7
|
+
}, N = {
|
|
8
|
+
key: 0,
|
|
9
|
+
class: "text-red bg-b-danger sticky top-0 border-b p-2"
|
|
10
|
+
}, V = {
|
|
11
|
+
key: 1,
|
|
12
|
+
class: "p-2"
|
|
13
|
+
}, z = /* @__PURE__ */ y({
|
|
14
|
+
__name: "ResponseBodyStreaming",
|
|
15
|
+
props: {
|
|
16
|
+
reader: {}
|
|
17
|
+
},
|
|
18
|
+
setup(f) {
|
|
19
|
+
const e = S(), o = i(""), a = i(null), m = new TextDecoder(), r = i(null), v = () => {
|
|
20
|
+
r.value && (r.value.scrollTop = r.value.scrollHeight);
|
|
21
|
+
};
|
|
22
|
+
_(o, () => {
|
|
23
|
+
w(v);
|
|
24
|
+
});
|
|
25
|
+
async function x() {
|
|
26
|
+
try {
|
|
27
|
+
for (; e.isLoading; ) {
|
|
28
|
+
const { done: n, value: t } = await f.reader.read();
|
|
29
|
+
if (n) {
|
|
30
|
+
e.stopLoading();
|
|
31
|
+
break;
|
|
32
|
+
}
|
|
33
|
+
t && (o.value += m.decode(t, { stream: !0 }));
|
|
34
|
+
}
|
|
35
|
+
} catch (n) {
|
|
36
|
+
console.error("Error reading stream:", n), e.stopLoading(), a.value = n;
|
|
37
|
+
} finally {
|
|
38
|
+
o.value += m.decode();
|
|
39
|
+
}
|
|
40
|
+
}
|
|
41
|
+
return h(() => {
|
|
42
|
+
e.startLoading(), x(), a.value = null;
|
|
43
|
+
}), k(() => {
|
|
44
|
+
f.reader.cancel(), e.stopLoading();
|
|
45
|
+
}), (n, t) => (s(), L(C, { class: "max-h-content overflow-y-hidden" }, {
|
|
46
|
+
title: p(() => [
|
|
47
|
+
l("div", T, [
|
|
48
|
+
t[1] || (t[1] = l("div", null, "Body", -1)),
|
|
49
|
+
d(e).isLoading ? (s(), c("div", E, [
|
|
50
|
+
B(d(b), {
|
|
51
|
+
loadingState: d(e),
|
|
52
|
+
size: "xs"
|
|
53
|
+
}, null, 8, ["loadingState"]),
|
|
54
|
+
t[0] || (t[0] = l("span", { class: "text-c-2" }, " Listening… ", -1))
|
|
55
|
+
])) : u("", !0)
|
|
56
|
+
])
|
|
57
|
+
]),
|
|
58
|
+
default: p(() => [
|
|
59
|
+
l("div", {
|
|
60
|
+
ref_key: "contentContainer",
|
|
61
|
+
ref: r,
|
|
62
|
+
class: "text-xxs font-code leading-2 h-full overflow-auto whitespace-pre-wrap"
|
|
63
|
+
}, [
|
|
64
|
+
a.value ? (s(), c("div", N, g(a.value.message), 1)) : u("", !0),
|
|
65
|
+
o.value ? (s(), c("div", V, g(o.value), 1)) : u("", !0)
|
|
66
|
+
], 512)
|
|
67
|
+
]),
|
|
68
|
+
_: 1
|
|
69
|
+
}));
|
|
70
|
+
}
|
|
71
|
+
});
|
|
72
|
+
export {
|
|
73
|
+
z as default
|
|
74
|
+
};
|
|
@@ -34,7 +34,7 @@ const W = { class: "col-1 flex-center relative gap-6 p-2 capitalize" }, $ = {
|
|
|
34
34
|
}));
|
|
35
35
|
}, k = (o) => {
|
|
36
36
|
o != null && o.createNew && x.name === "request" && f();
|
|
37
|
-
}, w = "2.3.
|
|
37
|
+
}, w = "2.3.22";
|
|
38
38
|
return R(() => a.hotKeys.on(k)), v(() => a.hotKeys.off(k)), (o, e) => (l(), u("div", W, [
|
|
39
39
|
s("div", {
|
|
40
40
|
class: y(["flex h-[calc(100%_-_50px)] flex-col items-center justify-center", {
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"ResponseSection.vue.d.ts","sourceRoot":"","sources":["../../../../src/views/Request/ResponseSection/ResponseSection.vue"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"ResponseSection.vue.d.ts","sourceRoot":"","sources":["../../../../src/views/Request/ResponseSection/ResponseSection.vue"],"names":[],"mappings":"AAwQA,OAAO,KAAK,EACV,UAAU,EACV,SAAS,EACT,gBAAgB,EACjB,MAAM,iCAAiC,CAAA;AACxC,OAAO,KAAK,EAAE,SAAS,EAAE,MAAM,sCAAsC,CAAA;AAKrE,OAAO,KAAK,EAAE,iBAAiB,EAAE,MAAM,8CAA8C,CAAA;AAcrF,KAAK,WAAW,GAAG;IACjB,UAAU,EAAE,UAAU,CAAA;IACtB,SAAS,EAAE,SAAS,CAAA;IACpB,SAAS,EAAE,SAAS,CAAA;IACpB,oBAAoB,EAAE,MAAM,CAAA;IAC5B,QAAQ,EAAE,gBAAgB,GAAG,SAAS,CAAA;IACtC,aAAa,EAAE,iBAAiB,GAAG,IAAI,GAAG,SAAS,CAAA;CACpD,CAAC;;AAoTF,wBAOG"}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import o from "./ResponseSection.vue2.js";
|
|
2
2
|
/* empty css */
|
|
3
3
|
import t from "../../../_virtual/_plugin-vue_export-helper.js";
|
|
4
|
-
const s = /* @__PURE__ */ t(o, [["__scopeId", "data-v-
|
|
4
|
+
const s = /* @__PURE__ */ t(o, [["__scopeId", "data-v-559f2ac3"]]);
|
|
5
5
|
export {
|
|
6
6
|
s as default
|
|
7
7
|
};
|
|
@@ -1,16 +1,17 @@
|
|
|
1
|
-
import { defineComponent as
|
|
2
|
-
import
|
|
1
|
+
import { defineComponent as C, computed as d, ref as T, useId as w, openBlock as n, createBlock as t, withCtx as v, createElementVNode as u, normalizeClass as y, createCommentVNode as c, createVNode as k, createElementBlock as h, Fragment as b } from "vue";
|
|
2
|
+
import x from "../../../components/SectionFilter.vue.js";
|
|
3
3
|
import V from "../../../components/ViewLayout/ViewLayoutSection.vue.js";
|
|
4
4
|
import I from "./RequestHeaders.vue.js";
|
|
5
|
-
import
|
|
6
|
-
import
|
|
5
|
+
import $ from "./ResponseBody.vue.js";
|
|
6
|
+
import g from "./ResponseBodyStreaming.vue.js";
|
|
7
|
+
import z from "./ResponseBodyVirtual.vue.js";
|
|
7
8
|
/* empty css */
|
|
8
9
|
import E from "./ResponseCookies.vue.js";
|
|
9
10
|
import O from "./ResponseEmpty.vue.js";
|
|
10
|
-
import
|
|
11
|
-
import
|
|
12
|
-
import
|
|
13
|
-
const
|
|
11
|
+
import N from "./ResponseHeaders.vue.js";
|
|
12
|
+
import S from "./ResponseLoadingOverlay.vue.js";
|
|
13
|
+
import W from "./ResponseMetaInformation.vue.js";
|
|
14
|
+
const F = { class: "flex h-8 flex-1 items-center" }, L = ["id", "role"], A = 2e5, se = /* @__PURE__ */ C({
|
|
14
15
|
__name: "ResponseSection",
|
|
15
16
|
props: {
|
|
16
17
|
collection: {},
|
|
@@ -20,38 +21,38 @@ const W = { class: "flex h-8 flex-1 items-center" }, F = ["id", "role"], A = 2e5
|
|
|
20
21
|
response: {},
|
|
21
22
|
requestResult: {}
|
|
22
23
|
},
|
|
23
|
-
setup(
|
|
24
|
-
const m =
|
|
25
|
-
var
|
|
26
|
-
const e = (
|
|
27
|
-
return e ? Object.keys(e).map((
|
|
28
|
-
name:
|
|
29
|
-
value: e[
|
|
24
|
+
setup(l) {
|
|
25
|
+
const m = d(() => {
|
|
26
|
+
var o;
|
|
27
|
+
const e = (o = l.response) == null ? void 0 : o.headers;
|
|
28
|
+
return e ? Object.keys(e).map((a) => ({
|
|
29
|
+
name: a,
|
|
30
|
+
value: e[a] ?? "",
|
|
30
31
|
required: !1
|
|
31
32
|
})) : [];
|
|
32
|
-
}),
|
|
33
|
+
}), B = d(
|
|
33
34
|
() => {
|
|
34
35
|
var e;
|
|
35
|
-
return ((e =
|
|
36
|
-
var
|
|
37
|
-
const
|
|
38
|
-
return
|
|
39
|
-
name:
|
|
40
|
-
value:
|
|
36
|
+
return ((e = l.response) == null ? void 0 : e.cookieHeaderKeys.flatMap((o) => {
|
|
37
|
+
var i, p;
|
|
38
|
+
const a = (p = (i = l.response) == null ? void 0 : i.headers) == null ? void 0 : p[o];
|
|
39
|
+
return a ? {
|
|
40
|
+
name: o,
|
|
41
|
+
value: a,
|
|
41
42
|
required: !1
|
|
42
43
|
} : [];
|
|
43
44
|
})) ?? [];
|
|
44
45
|
}
|
|
45
|
-
),
|
|
46
|
+
), R = ["Cookies", "Headers", "Body"], s = T("All"), f = d(() => ["All", ...R]), r = d(
|
|
46
47
|
() => Object.fromEntries(
|
|
47
|
-
|
|
48
|
+
f.value.map((e) => [e, w()])
|
|
48
49
|
)
|
|
49
|
-
), q =
|
|
50
|
-
var
|
|
51
|
-
if (!
|
|
50
|
+
), q = d(() => {
|
|
51
|
+
var i, p;
|
|
52
|
+
if (!l.response || !("size" in l.response))
|
|
52
53
|
return !1;
|
|
53
|
-
const e = ((
|
|
54
|
-
return !e || (
|
|
54
|
+
const e = ((i = l.response.headers) == null ? void 0 : i["content-type"]) || ((p = l.response.headers) == null ? void 0 : p["Content-Type"]);
|
|
55
|
+
return !e || (l.response.size ?? 0) <= A || e.includes("text/html") ? !1 : [
|
|
55
56
|
// Text types
|
|
56
57
|
"text/",
|
|
57
58
|
// JSON types
|
|
@@ -78,99 +79,104 @@ const W = { class: "flex h-8 flex-1 items-center" }, F = ["id", "role"], A = 2e5
|
|
|
78
79
|
"application/x-java-source",
|
|
79
80
|
// Form data
|
|
80
81
|
"application/x-www-form-urlencoded"
|
|
81
|
-
].some((
|
|
82
|
-
}),
|
|
82
|
+
].some((j) => e.includes(j)) && (l.response.size ?? 0) > A;
|
|
83
|
+
}), H = d(
|
|
83
84
|
() => {
|
|
84
85
|
var e;
|
|
85
|
-
return ((e =
|
|
86
|
-
name:
|
|
87
|
-
value:
|
|
86
|
+
return ((e = l.requestResult) == null ? void 0 : e.request.parameters.headers.filter((o) => o.enabled).map((o) => ({
|
|
87
|
+
name: o.key,
|
|
88
|
+
value: o.value,
|
|
88
89
|
required: !0
|
|
89
90
|
}))) ?? [];
|
|
90
91
|
}
|
|
91
92
|
);
|
|
92
|
-
return (e,
|
|
93
|
-
title:
|
|
94
|
-
|
|
95
|
-
|
|
93
|
+
return (e, o) => (n(), t(V, { "aria-label": "Response" }, {
|
|
94
|
+
title: v(() => [
|
|
95
|
+
u("div", F, [
|
|
96
|
+
u("div", {
|
|
96
97
|
"aria-live": "polite",
|
|
97
98
|
class: y(["flex items-center", { "animate-response-heading": e.response }])
|
|
98
99
|
}, [
|
|
99
|
-
|
|
100
|
-
e.response ? (
|
|
100
|
+
o[1] || (o[1] = u("span", { class: "response-heading pointer-events-none absolute" }, " Response ", -1)),
|
|
101
|
+
e.response ? (n(), t(W, {
|
|
101
102
|
key: 0,
|
|
102
103
|
class: "animate-response-children",
|
|
103
104
|
response: e.response
|
|
104
|
-
}, null, 8, ["response"])) :
|
|
105
|
+
}, null, 8, ["response"])) : c("", !0)
|
|
105
106
|
], 2),
|
|
106
|
-
k(
|
|
107
|
+
k(x, {
|
|
107
108
|
modelValue: s.value,
|
|
108
|
-
"onUpdate:modelValue":
|
|
109
|
-
filterIds:
|
|
110
|
-
filters:
|
|
109
|
+
"onUpdate:modelValue": o[0] || (o[0] = (a) => s.value = a),
|
|
110
|
+
filterIds: r.value,
|
|
111
|
+
filters: f.value
|
|
111
112
|
}, null, 8, ["modelValue", "filterIds", "filters"])
|
|
112
113
|
])
|
|
113
114
|
]),
|
|
114
|
-
default:
|
|
115
|
-
var
|
|
115
|
+
default: v(() => {
|
|
116
|
+
var a, i, p;
|
|
116
117
|
return [
|
|
117
|
-
|
|
118
|
-
id:
|
|
118
|
+
u("div", {
|
|
119
|
+
id: r.value.All,
|
|
119
120
|
class: y(["custom-scroll response-section-content relative grid h-full justify-stretch", {
|
|
120
121
|
"content-start": e.response
|
|
121
122
|
}]),
|
|
122
123
|
role: s.value === "All" && e.response ? "tabpanel" : "none"
|
|
123
124
|
}, [
|
|
124
|
-
e.response ? (
|
|
125
|
-
s.value === "All" || s.value === "Cookies" ? (
|
|
125
|
+
e.response ? (n(), h(b, { key: 1 }, [
|
|
126
|
+
s.value === "All" || s.value === "Cookies" ? (n(), t(E, {
|
|
126
127
|
key: 0,
|
|
127
128
|
class: "response-section-content-cookies",
|
|
128
|
-
id:
|
|
129
|
-
cookies:
|
|
129
|
+
id: r.value.Cookies,
|
|
130
|
+
cookies: B.value,
|
|
130
131
|
role: s.value === "All" ? "none" : "tabpanel"
|
|
131
|
-
}, null, 8, ["id", "cookies", "role"])) :
|
|
132
|
-
s.value === "All" || s.value === "Headers" ? (
|
|
132
|
+
}, null, 8, ["id", "cookies", "role"])) : c("", !0),
|
|
133
|
+
s.value === "All" || s.value === "Headers" ? (n(), t(I, {
|
|
133
134
|
key: 1,
|
|
134
135
|
class: "response-section-content-headers",
|
|
135
|
-
id:
|
|
136
|
-
headers:
|
|
136
|
+
id: r.value.Headers,
|
|
137
|
+
headers: H.value,
|
|
137
138
|
role: s.value === "All" ? "none" : "tabpanel"
|
|
138
|
-
}, null, 8, ["id", "headers", "role"])) :
|
|
139
|
-
s.value === "All" || s.value === "Headers" ? (
|
|
139
|
+
}, null, 8, ["id", "headers", "role"])) : c("", !0),
|
|
140
|
+
s.value === "All" || s.value === "Headers" ? (n(), t(N, {
|
|
140
141
|
key: 2,
|
|
141
142
|
class: "response-section-content-headers",
|
|
142
|
-
id:
|
|
143
|
+
id: r.value.Headers,
|
|
143
144
|
headers: m.value,
|
|
144
145
|
role: s.value === "All" ? "none" : "tabpanel"
|
|
145
|
-
}, null, 8, ["id", "headers", "role"])) :
|
|
146
|
-
s.value === "All" || s.value === "Body" ? (
|
|
147
|
-
|
|
146
|
+
}, null, 8, ["id", "headers", "role"])) : c("", !0),
|
|
147
|
+
s.value === "All" || s.value === "Body" ? (n(), h(b, { key: 3 }, [
|
|
148
|
+
"reader" in e.response ? (n(), t(g, {
|
|
148
149
|
key: 0,
|
|
149
|
-
|
|
150
|
+
class: "response-section-content-body",
|
|
151
|
+
id: r.value.Body,
|
|
152
|
+
reader: e.response.reader
|
|
153
|
+
}, null, 8, ["id", "reader"])) : q.value && typeof ((a = e.response) == null ? void 0 : a.data) == "string" ? (n(), t(z, {
|
|
154
|
+
key: 1,
|
|
155
|
+
id: r.value.Body,
|
|
150
156
|
content: e.response.data,
|
|
151
|
-
data: (
|
|
157
|
+
data: (i = e.response) == null ? void 0 : i.data,
|
|
152
158
|
headers: m.value,
|
|
153
159
|
role: s.value === "All" ? "none" : "tabpanel"
|
|
154
|
-
}, null, 8, ["id", "content", "data", "headers", "role"])) : (
|
|
155
|
-
key:
|
|
160
|
+
}, null, 8, ["id", "content", "data", "headers", "role"])) : (n(), t($, {
|
|
161
|
+
key: 2,
|
|
156
162
|
class: "response-section-content-body",
|
|
157
|
-
id:
|
|
163
|
+
id: r.value.Body,
|
|
158
164
|
active: !0,
|
|
159
|
-
data: (
|
|
165
|
+
data: (p = e.response) == null ? void 0 : p.data,
|
|
160
166
|
headers: m.value,
|
|
161
167
|
role: s.value === "All" ? "none" : "tabpanel",
|
|
162
168
|
title: "Body"
|
|
163
169
|
}, null, 8, ["id", "data", "headers", "role"]))
|
|
164
|
-
], 64)) :
|
|
165
|
-
], 64)) : (
|
|
170
|
+
], 64)) : c("", !0)
|
|
171
|
+
], 64)) : (n(), t(O, {
|
|
166
172
|
key: 0,
|
|
167
173
|
collection: e.collection,
|
|
168
174
|
operation: e.operation,
|
|
169
175
|
workspace: e.workspace,
|
|
170
176
|
numWorkspaceRequests: e.numWorkspaceRequests
|
|
171
177
|
}, null, 8, ["collection", "operation", "workspace", "numWorkspaceRequests"])),
|
|
172
|
-
k(
|
|
173
|
-
], 10,
|
|
178
|
+
k(S)
|
|
179
|
+
], 10, L)
|
|
174
180
|
];
|
|
175
181
|
}),
|
|
176
182
|
_: 1
|
|
@@ -178,5 +184,5 @@ const W = { class: "flex h-8 flex-1 items-center" }, F = ["id", "role"], A = 2e5
|
|
|
178
184
|
}
|
|
179
185
|
});
|
|
180
186
|
export {
|
|
181
|
-
|
|
187
|
+
se as default
|
|
182
188
|
};
|
package/package.json
CHANGED
|
@@ -18,7 +18,7 @@
|
|
|
18
18
|
"rest",
|
|
19
19
|
"testing"
|
|
20
20
|
],
|
|
21
|
-
"version": "2.3.
|
|
21
|
+
"version": "2.3.22",
|
|
22
22
|
"engines": {
|
|
23
23
|
"node": ">=18"
|
|
24
24
|
},
|
|
@@ -189,22 +189,22 @@
|
|
|
189
189
|
"whatwg-mimetype": "^4.0.0",
|
|
190
190
|
"yaml": "^2.4.5",
|
|
191
191
|
"zod": "^3.23.8",
|
|
192
|
-
"@scalar/
|
|
192
|
+
"@scalar/components": "0.13.49",
|
|
193
193
|
"@scalar/icons": "0.1.3",
|
|
194
|
-
"@scalar/
|
|
195
|
-
"@scalar/
|
|
194
|
+
"@scalar/draggable": "0.1.11",
|
|
195
|
+
"@scalar/import": "0.3.16",
|
|
196
|
+
"@scalar/oas-utils": "0.2.133",
|
|
196
197
|
"@scalar/object-utils": "1.1.13",
|
|
197
198
|
"@scalar/openapi-parser": "0.10.16",
|
|
199
|
+
"@scalar/postman-to-openapi": "0.2.6",
|
|
198
200
|
"@scalar/openapi-types": "0.2.0",
|
|
199
|
-
"@scalar/components": "0.13.48",
|
|
200
|
-
"@scalar/snippetz": "0.2.19",
|
|
201
|
-
"@scalar/postman-to-openapi": "0.2.5",
|
|
202
|
-
"@scalar/types": "0.1.8",
|
|
203
|
-
"@scalar/use-codemirror": "0.11.93",
|
|
204
201
|
"@scalar/themes": "0.10.0",
|
|
202
|
+
"@scalar/types": "0.1.8",
|
|
203
|
+
"@scalar/use-codemirror": "0.11.94",
|
|
205
204
|
"@scalar/use-hooks": "0.1.41",
|
|
206
205
|
"@scalar/use-toasts": "0.7.9",
|
|
207
|
-
"@scalar/use-tooltip": "1.0.6"
|
|
206
|
+
"@scalar/use-tooltip": "1.0.6",
|
|
207
|
+
"@scalar/snippetz": "0.2.19"
|
|
208
208
|
},
|
|
209
209
|
"devDependencies": {
|
|
210
210
|
"@types/shell-quote": "^1.7.5",
|
|
@@ -219,8 +219,8 @@
|
|
|
219
219
|
"vite": "^5.4.10",
|
|
220
220
|
"vite-svg-loader": "^5.1.0",
|
|
221
221
|
"vitest": "^1.6.0",
|
|
222
|
-
"@scalar/
|
|
223
|
-
"@scalar/
|
|
222
|
+
"@scalar/galaxy": "0.3.1",
|
|
223
|
+
"@scalar/build-tooling": "0.1.17"
|
|
224
224
|
},
|
|
225
225
|
"scripts": {
|
|
226
226
|
"build": "scalar-build-vite",
|