@scalar/api-client 2.38.0 → 2.38.1
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 +24 -0
- package/dist/style.css +1 -1
- package/dist/v2/blocks/operation-block/components/Header.vue.js +2 -2
- package/dist/v2/blocks/operation-block/components/Header.vue2.js +5 -5
- package/dist/v2/blocks/request-block/RequestBlock.vue.d.ts.map +1 -1
- package/dist/v2/blocks/request-block/RequestBlock.vue.js +2 -2
- package/dist/v2/blocks/request-block/RequestBlock.vue2.js +83 -80
- package/dist/v2/blocks/request-block/helpers/get-default-headers.js +1 -1
- package/dist/v2/blocks/scalar-auth-selector-block/components/AuthSelector.vue.d.ts +2 -0
- package/dist/v2/blocks/scalar-auth-selector-block/components/AuthSelector.vue.d.ts.map +1 -1
- package/dist/v2/blocks/scalar-auth-selector-block/components/AuthSelector.vue.js +23 -21
- package/dist/v2/components/sidebar/SidebarMenu.vue.d.ts.map +1 -1
- package/dist/v2/components/sidebar/SidebarMenu.vue.js +24 -22
- package/dist/v2/features/app/app-events.js +2 -2
- package/dist/v2/features/collection/components/Form.vue.d.ts +1 -0
- package/dist/v2/features/collection/components/Form.vue.d.ts.map +1 -1
- package/dist/v2/features/collection/components/Form.vue.js +23 -23
- package/dist/v2/features/collection/components/Servers.vue.d.ts.map +1 -1
- package/dist/v2/features/collection/components/Servers.vue.js +5 -4
- package/dist/v2/features/operation/Operation.vue.js +1 -1
- package/dist/v2/features/settings/components/Section.vue.d.ts.map +1 -1
- package/dist/v2/features/settings/components/Section.vue.js +10 -10
- package/dist/views/Request/ResponseSection/ResponseEmpty.vue2.js +1 -1
- package/package.json +10 -10
|
@@ -1,35 +1,37 @@
|
|
|
1
|
-
import { defineComponent as
|
|
2
|
-
import { ScalarMenu as S, ScalarMenuSection as f, ScalarMenuWorkspacePicker as w, ScalarMenuLink as M, ScalarMenuResources as g, ScalarMenuSupport as v } from "@scalar/components";
|
|
3
|
-
import { ScalarIconGear as
|
|
4
|
-
const
|
|
1
|
+
import { defineComponent as u, createBlock as p, openBlock as k, unref as e, withCtx as a, createVNode as o, renderSlot as d, createTextVNode as m } from "vue";
|
|
2
|
+
import { ScalarMenu as S, ScalarMenuSection as f, ScalarMenuWorkspacePicker as w, ScalarMenuLink as M, ScalarMenuResources as g, ScalarMenuSupport as v, ScalarMenuProducts as C } from "@scalar/components";
|
|
3
|
+
import { ScalarIconGear as V } from "@scalar/icons";
|
|
4
|
+
const B = /* @__PURE__ */ u({
|
|
5
5
|
__name: "SidebarMenu",
|
|
6
6
|
props: {
|
|
7
7
|
activeWorkspace: {},
|
|
8
8
|
workspaces: {}
|
|
9
9
|
},
|
|
10
10
|
emits: ["create:workspace", "select:workspace", "navigate:to:settings"],
|
|
11
|
-
setup(n, { emit:
|
|
12
|
-
const
|
|
13
|
-
return (
|
|
14
|
-
products:
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
11
|
+
setup(n, { emit: c }) {
|
|
12
|
+
const r = c;
|
|
13
|
+
return (l, t) => (k(), p(e(S), null, {
|
|
14
|
+
products: a(() => [
|
|
15
|
+
o(e(C), { selected: "client" })
|
|
16
|
+
]),
|
|
17
|
+
sections: a(({ close: i }) => [
|
|
18
|
+
o(e(f), null, {
|
|
19
|
+
default: a(() => [
|
|
20
|
+
d(l.$slots, "sidebarMenuActions", {}, () => [
|
|
21
|
+
o(e(w), {
|
|
20
22
|
modelValue: n.activeWorkspace.id,
|
|
21
23
|
workspaceOptions: n.workspaces,
|
|
22
|
-
onCreateWorkspace:
|
|
23
|
-
"onUpdate:modelValue":
|
|
24
|
+
onCreateWorkspace: t[0] || (t[0] = (s) => r("create:workspace")),
|
|
25
|
+
"onUpdate:modelValue": t[1] || (t[1] = (s) => r("select:workspace", s))
|
|
24
26
|
}, null, 8, ["modelValue", "workspaceOptions"]),
|
|
25
|
-
o(
|
|
27
|
+
o(e(M), {
|
|
26
28
|
is: "button",
|
|
27
|
-
icon:
|
|
29
|
+
icon: e(V),
|
|
28
30
|
onClick: () => {
|
|
29
|
-
|
|
31
|
+
i(), r("navigate:to:settings");
|
|
30
32
|
}
|
|
31
33
|
}, {
|
|
32
|
-
default:
|
|
34
|
+
default: a(() => [...t[2] || (t[2] = [
|
|
33
35
|
m(" Settings ", -1)
|
|
34
36
|
])]),
|
|
35
37
|
_: 1
|
|
@@ -38,13 +40,13 @@ const x = /* @__PURE__ */ p({
|
|
|
38
40
|
]),
|
|
39
41
|
_: 2
|
|
40
42
|
}, 1024),
|
|
41
|
-
o(
|
|
42
|
-
o(
|
|
43
|
+
o(e(g)),
|
|
44
|
+
o(e(v))
|
|
43
45
|
]),
|
|
44
46
|
_: 3
|
|
45
47
|
}));
|
|
46
48
|
}
|
|
47
49
|
});
|
|
48
50
|
export {
|
|
49
|
-
|
|
51
|
+
B as default
|
|
50
52
|
};
|
|
@@ -41,14 +41,14 @@ function R({
|
|
|
41
41
|
onBeforeExecute: (e) => ({
|
|
42
42
|
...e,
|
|
43
43
|
callback: async (m) => {
|
|
44
|
-
m === "success" && (await c.replace({
|
|
44
|
+
m === "success" && (i(f.value?.workspace.activeDocument?.["x-scalar-navigation"]?.name), await c.replace({
|
|
45
45
|
name: "example",
|
|
46
46
|
params: {
|
|
47
47
|
method: e.payload.method,
|
|
48
48
|
pathEncoded: encodeURIComponent(e.payload.path),
|
|
49
49
|
exampleName: s.value?.params.exampleName
|
|
50
50
|
}
|
|
51
|
-
})
|
|
51
|
+
})), e.callback(m);
|
|
52
52
|
}
|
|
53
53
|
})
|
|
54
54
|
},
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Form.vue.d.ts","sourceRoot":"","sources":["../../../../../src/v2/features/collection/components/Form.vue"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"Form.vue.d.ts","sourceRoot":"","sources":["../../../../../src/v2/features/collection/components/Form.vue"],"names":[],"mappings":"AA4EA,OAAO,KAAK,EAAE,kBAAkB,EAAE,MAAM,2EAA2E,CAAA;AAQnH,KAAK,WAAW,GAAG;IACjB,KAAK,CAAC,EAAE,MAAM,CAAA;IACd,OAAO,EAAE;QACP,GAAG,EAAE,MAAM,CAAA;QACX,KAAK,EAAE,MAAM,CAAA;QACb,WAAW,EAAE,MAAM,CAAA;QACnB,YAAY,CAAC,EAAE,OAAO,CAAA;KACvB,EAAE,CAAA;IACH,IAAI,EAAE,MAAM,CAAC,MAAM,EAAE,GAAG,CAAC,CAAA;IACzB,QAAQ,EAAE,CAAC,GAAG,EAAE,MAAM,EAAE,KAAK,EAAE,MAAM,GAAG,MAAM,KAAK,IAAI,CAAA;IACvD,WAAW,EAAE,kBAAkB,CAAA;CAChC,CAAC;AAyKF,QAAA,IAAI,OAAO,IAAW,CAAE;AACxB,KAAK,WAAW,GAAG,EAAE,GACnB;IAAE,KAAK,CAAC,EAAE,CAAC,KAAK,EAAE,OAAO,OAAO,KAAK,GAAG,CAAA;CAAE,CAAC;AAK7C,QAAA,MAAM,UAAU,kSAEd,CAAC;AACH,QAAA,MAAM,YAAY,EAAS,eAAe,CAAC,OAAO,UAAU,EAAE,WAAW,CAAC,CAAC;wBACtD,OAAO,YAAY;AAAxC,wBAAyC;AACzC,KAAK,eAAe,CAAC,CAAC,EAAE,CAAC,IAAI,CAAC,GAAG;IAChC,QAAO;QACN,MAAM,EAAE,CAAC,CAAC;KACV,CAAA;CACD,CAAC"}
|
|
@@ -1,10 +1,10 @@
|
|
|
1
|
-
import { defineComponent as
|
|
1
|
+
import { defineComponent as k, useId as y, createBlock as a, openBlock as n, createSlots as c, withCtx as l, createElementVNode as o, createCommentVNode as g, createElementBlock as s, Fragment as h, renderList as b, createVNode as m, unref as r, toDisplayString as f, renderSlot as v } from "vue";
|
|
2
2
|
import { ScalarIcon as V } from "@scalar/components";
|
|
3
3
|
import x from "../../../../components/ViewLayout/ViewLayoutSection.vue.js";
|
|
4
4
|
import _ from "../../../components/data-table/DataTable.vue.js";
|
|
5
5
|
import S from "../../../components/data-table/DataTableInput.vue.js";
|
|
6
6
|
import U from "../../../components/data-table/DataTableRow.vue.js";
|
|
7
|
-
const $ = { key: 0 }, w = { class: "flex flex-1 flex-col gap-1.5" }, B = ["for"], C = { class: "centered-y bg-b-2 flex-center absolute right-1 z-1 rounded px-1 py-0.5" },
|
|
7
|
+
const $ = { key: 0 }, w = { class: "flex flex-1 flex-col gap-1.5" }, B = ["for"], C = { class: "centered-y bg-b-2 flex-center absolute right-1 z-1 rounded px-1 py-0.5" }, T = /* @__PURE__ */ k({
|
|
8
8
|
__name: "Form",
|
|
9
9
|
props: {
|
|
10
10
|
title: {},
|
|
@@ -15,35 +15,35 @@ const $ = { key: 0 }, w = { class: "flex flex-1 flex-col gap-1.5" }, B = ["for"]
|
|
|
15
15
|
},
|
|
16
16
|
setup(e) {
|
|
17
17
|
const d = y();
|
|
18
|
-
return (i, D) => (n(),
|
|
19
|
-
default:
|
|
20
|
-
|
|
21
|
-
Object.keys(e.data).length > 0 ? (n(),
|
|
18
|
+
return (i, D) => (n(), a(x, { class: "last:rounded-b-lg" }, c({
|
|
19
|
+
default: l(() => [
|
|
20
|
+
o("div", w, [
|
|
21
|
+
Object.keys(e.data).length > 0 ? (n(), a(_, {
|
|
22
22
|
key: 0,
|
|
23
23
|
class: "rounded-b-lg",
|
|
24
24
|
columns: [""]
|
|
25
25
|
}, {
|
|
26
|
-
default:
|
|
27
|
-
(n(!0), s(
|
|
28
|
-
default:
|
|
26
|
+
default: l(() => [
|
|
27
|
+
(n(!0), s(h, null, b(e.options, (t, u) => (n(), a(U, { key: u }, {
|
|
28
|
+
default: l(() => [
|
|
29
29
|
m(S, {
|
|
30
30
|
id: r(d),
|
|
31
31
|
class: "pr-9",
|
|
32
32
|
environment: e.environment,
|
|
33
|
-
lineWrapping:
|
|
34
|
-
modelValue: e.data[
|
|
35
|
-
placeholder:
|
|
36
|
-
"onUpdate:modelValue": (
|
|
33
|
+
lineWrapping: t.lineWrapping ?? !1,
|
|
34
|
+
modelValue: e.data[t.key] ?? "",
|
|
35
|
+
placeholder: t.placeholder,
|
|
36
|
+
"onUpdate:modelValue": (p) => e.onUpdate(t.key, p)
|
|
37
37
|
}, c({
|
|
38
|
-
default:
|
|
39
|
-
|
|
38
|
+
default: l(() => [
|
|
39
|
+
o("label", { for: r(d) }, f(t.label), 9, B)
|
|
40
40
|
]),
|
|
41
41
|
_: 2
|
|
42
42
|
}, [
|
|
43
|
-
|
|
43
|
+
t.key === "description" ? {
|
|
44
44
|
name: "icon",
|
|
45
|
-
fn:
|
|
46
|
-
|
|
45
|
+
fn: l(() => [
|
|
46
|
+
o("div", C, [
|
|
47
47
|
m(r(V), {
|
|
48
48
|
icon: "Markdown",
|
|
49
49
|
size: "lg"
|
|
@@ -52,21 +52,21 @@ const $ = { key: 0 }, w = { class: "flex flex-1 flex-col gap-1.5" }, B = ["for"]
|
|
|
52
52
|
]),
|
|
53
53
|
key: "0"
|
|
54
54
|
} : void 0
|
|
55
|
-
]), 1032, ["id", "environment", "modelValue", "placeholder", "onUpdate:modelValue"])
|
|
55
|
+
]), 1032, ["id", "environment", "lineWrapping", "modelValue", "placeholder", "onUpdate:modelValue"])
|
|
56
56
|
]),
|
|
57
57
|
_: 2
|
|
58
58
|
}, 1024))), 128))
|
|
59
59
|
]),
|
|
60
60
|
_: 1
|
|
61
|
-
})) :
|
|
61
|
+
})) : g("", !0)
|
|
62
62
|
])
|
|
63
63
|
]),
|
|
64
64
|
_: 2
|
|
65
65
|
}, [
|
|
66
66
|
e.title || i.$slots.title ? {
|
|
67
67
|
name: "title",
|
|
68
|
-
fn:
|
|
69
|
-
e.title ? (n(), s("span", $,
|
|
68
|
+
fn: l(() => [
|
|
69
|
+
e.title ? (n(), s("span", $, f(e.title), 1)) : v(i.$slots, "title", { key: 1 })
|
|
70
70
|
]),
|
|
71
71
|
key: "0"
|
|
72
72
|
} : void 0
|
|
@@ -74,5 +74,5 @@ const $ = { key: 0 }, w = { class: "flex flex-1 flex-col gap-1.5" }, B = ["for"]
|
|
|
74
74
|
}
|
|
75
75
|
});
|
|
76
76
|
export {
|
|
77
|
-
|
|
77
|
+
T as default
|
|
78
78
|
};
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Servers.vue.d.ts","sourceRoot":"","sources":["../../../../../src/v2/features/collection/components/Servers.vue"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"Servers.vue.d.ts","sourceRoot":"","sources":["../../../../../src/v2/features/collection/components/Servers.vue"],"names":[],"mappings":"AAg0BA,QAAA,MAAM,YAAY;;;;;;;;;;;;kGAEhB,CAAC;wBACkB,OAAO,YAAY;AAAxC,wBAAyC"}
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { defineComponent as L, ref as T, computed as h, watchEffect as E, createElementBlock as v, openBlock as i, Fragment as b, createVNode as n, createSlots as F, withCtx as u, createElementVNode as r, normalizeClass as U, renderList as
|
|
1
|
+
import { defineComponent as L, ref as T, computed as h, watchEffect as E, createElementBlock as v, openBlock as i, Fragment as b, createVNode as n, createSlots as F, withCtx as u, createElementVNode as r, normalizeClass as U, renderList as W, createBlock as M, unref as s, toDisplayString as j, createCommentVNode as H, createTextVNode as d } from "vue";
|
|
2
2
|
import { useModal as q, ScalarMarkdown as G, ScalarButton as O, ScalarToggle as J, ScalarModal as K } from "@scalar/components";
|
|
3
3
|
import { debounce as Q } from "@scalar/helpers/general/debounce";
|
|
4
4
|
import { isHttpMethod as D } from "@scalar/helpers/http/is-http-method";
|
|
@@ -46,7 +46,8 @@ const le = { class: "flex h-8 items-center" }, oe = { class: "flex flex-col gap-
|
|
|
46
46
|
{
|
|
47
47
|
label: "Description",
|
|
48
48
|
key: "description",
|
|
49
|
-
placeholder: "Production"
|
|
49
|
+
placeholder: "Production",
|
|
50
|
+
lineWrapping: !0
|
|
50
51
|
}
|
|
51
52
|
], R = (l) => {
|
|
52
53
|
c.value = l, g.show();
|
|
@@ -116,7 +117,7 @@ const le = { class: "flex h-8 items-center" }, oe = { class: "flex flex-col gap-
|
|
|
116
117
|
])
|
|
117
118
|
}, [
|
|
118
119
|
r("div", oe, [
|
|
119
|
-
(i(!0), v(b, null,
|
|
120
|
+
(i(!0), v(b, null, W(k.value, (o, p) => (i(), v("div", {
|
|
120
121
|
key: p,
|
|
121
122
|
class: "rounded-lg border"
|
|
122
123
|
}, [
|
|
@@ -125,7 +126,7 @@ const le = { class: "flex h-8 items-center" }, oe = { class: "flex flex-col gap-
|
|
|
125
126
|
key: 0,
|
|
126
127
|
class: "self-center",
|
|
127
128
|
value: o.description
|
|
128
|
-
}, null, 8, ["value"])) : (i(), v("span", ne,
|
|
129
|
+
}, null, 8, ["value"])) : (i(), v("span", ne, j(B(o, p)), 1)),
|
|
129
130
|
n(s(O), {
|
|
130
131
|
class: "hover:bg-b-3 hover:text-c-1 h-fit p-1.25",
|
|
131
132
|
"data-testid": "delete-server-button",
|
|
@@ -84,7 +84,7 @@ const V = {
|
|
|
84
84
|
)
|
|
85
85
|
)), g = t(
|
|
86
86
|
() => b(a(e.options)?.hiddenClients)
|
|
87
|
-
), x = "2.38.
|
|
87
|
+
), x = "2.38.1";
|
|
88
88
|
return (n, o) => e.path && e.method && e.exampleName && r.value ? (m(), C(c(R), {
|
|
89
89
|
key: 0,
|
|
90
90
|
activeEnvironment: e.workspaceStore.workspace["x-scalar-active-environment"],
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Section.vue.d.ts","sourceRoot":"","sources":["../../../../../src/v2/features/settings/components/Section.vue"],"names":[],"mappings":"AAyCA,KAAK,WAAW,GAAG;IACjB,KAAK,CAAC,EAAE,MAAM,MAAM,CAAA;IACpB,WAAW,CAAC,EAAE,MAAM,MAAM,CAAA;IAC1B,OAAO,CAAC,EAAE,MAAM,OAAO,CAAA;IACvB,OAAO,EAAE,MAAM,OAAO,CAAA;CACvB,CAAC;
|
|
1
|
+
{"version":3,"file":"Section.vue.d.ts","sourceRoot":"","sources":["../../../../../src/v2/features/settings/components/Section.vue"],"names":[],"mappings":"AAyCA,KAAK,WAAW,GAAG;IACjB,KAAK,CAAC,EAAE,MAAM,MAAM,CAAA;IACpB,WAAW,CAAC,EAAE,MAAM,MAAM,CAAA;IAC1B,OAAO,CAAC,EAAE,MAAM,OAAO,CAAA;IACvB,OAAO,EAAE,MAAM,OAAO,CAAA;CACvB,CAAC;AAiEF,QAAA,MAAM,UAAU,+QACd,CAAC;AACH,QAAA,MAAM,YAAY,EAAS,eAAe,CAAC,OAAO,UAAU,EAAE,WAAW,CAAC,CAAC;wBACtD,OAAO,YAAY;AAAxC,wBAAyC;AACzC,KAAK,eAAe,CAAC,CAAC,EAAE,CAAC,IAAI,CAAC,GAAG;IAChC,QAAO;QACN,MAAM,EAAE,CAAC,CAAC;KACV,CAAA;CACD,CAAC"}
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { defineComponent as
|
|
2
|
-
const
|
|
1
|
+
import { defineComponent as c, useSlots as a, createElementBlock as s, openBlock as o, createCommentVNode as l, renderSlot as i, createElementVNode as n } from "vue";
|
|
2
|
+
const r = { class: "flex flex-col gap-2" }, d = {
|
|
3
3
|
key: 0,
|
|
4
4
|
class: "flex items-start justify-between gap-2"
|
|
5
5
|
}, _ = { class: "flex flex-col gap-2" }, p = {
|
|
@@ -7,26 +7,26 @@ const a = { class: "flex flex-col gap-2" }, d = {
|
|
|
7
7
|
class: "flex h-8 items-center"
|
|
8
8
|
}, f = { class: "font-bold" }, m = {
|
|
9
9
|
key: 1,
|
|
10
|
-
class: "text-c-2 mb-4 text-sm"
|
|
11
|
-
}, x = /* @__PURE__ */
|
|
10
|
+
class: "text-c-2 mb-4 text-sm leading-tight"
|
|
11
|
+
}, x = /* @__PURE__ */ c({
|
|
12
12
|
__name: "Section",
|
|
13
13
|
setup(u) {
|
|
14
|
-
const e =
|
|
15
|
-
return (t, h) => (o(), s("div",
|
|
14
|
+
const e = a();
|
|
15
|
+
return (t, h) => (o(), s("div", r, [
|
|
16
16
|
e.title || e.description ? (o(), s("div", d, [
|
|
17
17
|
n("div", _, [
|
|
18
18
|
e.title ? (o(), s("div", p, [
|
|
19
19
|
n("h3", f, [
|
|
20
|
-
|
|
20
|
+
i(t.$slots, "title")
|
|
21
21
|
])
|
|
22
22
|
])) : l("", !0),
|
|
23
23
|
e.description ? (o(), s("p", m, [
|
|
24
|
-
|
|
24
|
+
i(t.$slots, "description")
|
|
25
25
|
])) : l("", !0)
|
|
26
26
|
]),
|
|
27
|
-
e.actions ?
|
|
27
|
+
e.actions ? i(t.$slots, "actions", { key: 0 }) : l("", !0)
|
|
28
28
|
])) : l("", !0),
|
|
29
|
-
|
|
29
|
+
i(t.$slots, "default")
|
|
30
30
|
]));
|
|
31
31
|
}
|
|
32
32
|
});
|
|
@@ -33,7 +33,7 @@ const W = { class: "flex-center relative flex flex-1 flex-col gap-6 p-2 capitali
|
|
|
33
33
|
}));
|
|
34
34
|
}, f = (u) => {
|
|
35
35
|
u?.createNew && g.name === "request" && p();
|
|
36
|
-
}, v = "2.38.
|
|
36
|
+
}, v = "2.38.1";
|
|
37
37
|
return q(() => a.hotKeys.on(f)), R(() => a.hotKeys.off(f)), (u, e) => (l(), n("div", W, [
|
|
38
38
|
s("div", {
|
|
39
39
|
class: y(["flex h-[calc(100%_-_50px)] flex-col items-center justify-center", {
|
package/package.json
CHANGED
|
@@ -18,7 +18,7 @@
|
|
|
18
18
|
"rest",
|
|
19
19
|
"testing"
|
|
20
20
|
],
|
|
21
|
-
"version": "2.38.
|
|
21
|
+
"version": "2.38.1",
|
|
22
22
|
"engines": {
|
|
23
23
|
"node": ">=22"
|
|
24
24
|
},
|
|
@@ -341,25 +341,25 @@
|
|
|
341
341
|
"yaml": "^2.8.0",
|
|
342
342
|
"zod": "^4.3.5",
|
|
343
343
|
"@scalar/analytics-client": "1.1.0",
|
|
344
|
-
"@scalar/
|
|
344
|
+
"@scalar/components": "0.20.9",
|
|
345
345
|
"@scalar/draggable": "0.4.0",
|
|
346
|
-
"@scalar/components": "0.20.8",
|
|
347
346
|
"@scalar/icons": "0.6.0",
|
|
348
347
|
"@scalar/import": "0.5.2",
|
|
349
348
|
"@scalar/json-magic": "0.12.3",
|
|
350
|
-
"@scalar/
|
|
349
|
+
"@scalar/helpers": "0.4.1",
|
|
350
|
+
"@scalar/oas-utils": "0.10.8",
|
|
351
|
+
"@scalar/openapi-parser": "0.25.4",
|
|
351
352
|
"@scalar/object-utils": "1.3.2",
|
|
352
|
-
"@scalar/sidebar": "0.8.8",
|
|
353
353
|
"@scalar/openapi-types": "0.6.0",
|
|
354
|
-
"@scalar/openapi-parser": "0.25.3",
|
|
355
|
-
"@scalar/snippetz": "0.7.4",
|
|
356
354
|
"@scalar/postman-to-openapi": "0.5.2",
|
|
355
|
+
"@scalar/snippetz": "0.7.4",
|
|
357
356
|
"@scalar/themes": "0.15.0",
|
|
358
357
|
"@scalar/types": "0.7.3",
|
|
359
|
-
"@scalar/
|
|
358
|
+
"@scalar/sidebar": "0.8.9",
|
|
359
|
+
"@scalar/use-codemirror": "0.14.9",
|
|
360
360
|
"@scalar/use-hooks": "0.4.0",
|
|
361
361
|
"@scalar/use-toasts": "0.10.0",
|
|
362
|
-
"@scalar/workspace-store": "0.40.
|
|
362
|
+
"@scalar/workspace-store": "0.40.2"
|
|
363
363
|
},
|
|
364
364
|
"devDependencies": {
|
|
365
365
|
"@tailwindcss/vite": "^4.1.18",
|
|
@@ -376,7 +376,7 @@
|
|
|
376
376
|
"vitest": "4.0.16",
|
|
377
377
|
"@scalar/build-tooling": "0.5.0",
|
|
378
378
|
"@scalar/galaxy": "0.6.0",
|
|
379
|
-
"@scalar/pre-post-request-scripts": "0.3.
|
|
379
|
+
"@scalar/pre-post-request-scripts": "0.3.9"
|
|
380
380
|
},
|
|
381
381
|
"scripts": {
|
|
382
382
|
"build": "scalar-build-vite",
|