@scalar/api-client 2.29.2 → 2.29.4
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 +69 -0
- package/dist/hooks/useClientConfig.d.ts +3 -0
- package/dist/hooks/useClientConfig.d.ts.map +1 -1
- package/dist/style.css +1 -1
- package/dist/v2/blocks/operation-code-sample/helpers/get-example-from-schema.d.ts.map +1 -1
- package/dist/v2/blocks/operation-code-sample/helpers/get-example-from-schema.js +134 -135
- package/dist/v2/blocks/request-block/helpers/get-default-headers.js +1 -1
- package/dist/v2/blocks/scalar-auth-selector-block/components/RequestAuthTab.vue.d.ts.map +1 -1
- package/dist/v2/blocks/scalar-auth-selector-block/components/RequestAuthTab.vue.js +117 -110
- package/dist/v2/features/operation/Operation.vue.js +1 -1
- package/dist/views/Request/ResponseSection/ResponseEmpty.vue2.js +1 -1
- package/package.json +16 -16
|
@@ -1,15 +1,15 @@
|
|
|
1
|
-
import { defineComponent as
|
|
2
|
-
import { ScalarMarkdownSummary as
|
|
1
|
+
import { defineComponent as q, computed as h, ref as D, createElementBlock as c, openBlock as l, Fragment as d, renderList as B, createBlock as y, createCommentVNode as v, unref as s, withCtx as o, createVNode as u, createElementVNode as f, toDisplayString as j, createTextVNode as x, normalizeClass as E, capitalize as H } from "vue";
|
|
2
|
+
import { ScalarMarkdownSummary as K } from "@scalar/components";
|
|
3
3
|
import { getResolvedRef as L } from "@scalar/workspace-store/helpers/get-resolved-ref";
|
|
4
4
|
import G from "./OAuth2.vue.js";
|
|
5
5
|
import J from "./OpenIDConnect.vue.js";
|
|
6
|
-
import
|
|
6
|
+
import b from "./RequestAuthDataTableInput.vue.js";
|
|
7
7
|
import m from "../../../components/data-table/DataTableRow.vue.js";
|
|
8
|
-
import
|
|
9
|
-
const W = { class: "bg-b-1
|
|
8
|
+
import A from "../../../components/data-table/DataTableCell.vue.js";
|
|
9
|
+
const W = { class: "bg-b-1 min-w-0 flex-1 px-3 py-1.25" }, X = { class: "text-c-1 leading-5.5 font-medium" }, Y = { class: "flex min-h-8 border-t text-base" }, Z = { class: "flex h-8 max-w-full gap-2.5 overflow-x-auto px-3" }, _ = ["onClick"], ee = { class: "relative z-10" }, te = {
|
|
10
10
|
key: 5,
|
|
11
11
|
class: "text-c-3 flex items-center justify-center border-t p-4 px-4 text-center text-xs text-balance"
|
|
12
|
-
},
|
|
12
|
+
}, ce = /* @__PURE__ */ q({
|
|
13
13
|
__name: "RequestAuthTab",
|
|
14
14
|
props: {
|
|
15
15
|
environment: {},
|
|
@@ -21,74 +21,81 @@ const W = { class: "bg-b-1 text-c-2 outline-b-3 top-0 z-1 h-full w-full overflow
|
|
|
21
21
|
eventBus: {}
|
|
22
22
|
},
|
|
23
23
|
emits: ["update:selectedScopes"],
|
|
24
|
-
setup(n, { emit:
|
|
25
|
-
const
|
|
26
|
-
() => Object.entries(n.selectedSecuritySchemas).map(([a,
|
|
24
|
+
setup(n, { emit: O }) {
|
|
25
|
+
const N = O, k = h(
|
|
26
|
+
() => Object.entries(n.selectedSecuritySchemas).map(([a, t = []]) => ({
|
|
27
27
|
scheme: L(n.securitySchemes[a]),
|
|
28
28
|
name: a,
|
|
29
|
-
scopes:
|
|
29
|
+
scopes: t
|
|
30
30
|
}))
|
|
31
|
-
),
|
|
32
|
-
|
|
33
|
-
},
|
|
34
|
-
const
|
|
35
|
-
switch (
|
|
31
|
+
), V = D(""), S = h(() => k.value.flatMap(({ scheme: t }) => t?.type !== "oauth2" && t?.type !== "openIdConnect" ? [] : Object.keys(t.flows ?? {})).includes(V.value) ? V.value : ""), R = (a) => {
|
|
32
|
+
V.value = a;
|
|
33
|
+
}, F = h(() => k.value.length > 1), $ = (a, t) => {
|
|
34
|
+
const e = H(a);
|
|
35
|
+
switch (t.type) {
|
|
36
36
|
case "apiKey":
|
|
37
|
-
return `${
|
|
37
|
+
return `${e}: ${t.in}`;
|
|
38
38
|
case "openIdConnect":
|
|
39
39
|
case "oauth2": {
|
|
40
|
-
const
|
|
41
|
-
return
|
|
40
|
+
const r = Object.keys(t.flows ?? {})[0], w = S.value || r;
|
|
41
|
+
return w ? `${e}: ${w}` : e;
|
|
42
42
|
}
|
|
43
43
|
case "http":
|
|
44
|
-
return `${
|
|
44
|
+
return `${e}: ${t.scheme}`;
|
|
45
45
|
default:
|
|
46
|
-
return
|
|
46
|
+
return e;
|
|
47
47
|
}
|
|
48
|
-
}, T = (a,
|
|
48
|
+
}, T = (a, t) => S.value === a || t === 0 && !S.value, U = () => n.isStatic && "border-t", C = (a, t) => n.eventBus.emit("auth:update:security-scheme-secrets", {
|
|
49
49
|
payload: { type: "http", ...a },
|
|
50
|
-
name:
|
|
51
|
-
}),
|
|
50
|
+
name: t
|
|
51
|
+
}), M = (a, t) => n.eventBus.emit("auth:update:security-scheme-secrets", {
|
|
52
52
|
payload: { type: "apiKey", ...a },
|
|
53
|
-
name:
|
|
54
|
-
}), z = (a,
|
|
53
|
+
name: t
|
|
54
|
+
}), z = (a, t) => n.eventBus.emit("auth:update:security-scheme", {
|
|
55
55
|
payload: { type: "apiKey", ...a },
|
|
56
|
-
name:
|
|
57
|
-
}),
|
|
58
|
-
|
|
56
|
+
name: t
|
|
57
|
+
}), P = (a, t) => {
|
|
58
|
+
N("update:selectedScopes", {
|
|
59
59
|
id: Object.keys(n.selectedSecuritySchemas),
|
|
60
60
|
name: a,
|
|
61
|
-
...
|
|
61
|
+
...t
|
|
62
62
|
});
|
|
63
|
-
},
|
|
64
|
-
const
|
|
65
|
-
return T(a,
|
|
63
|
+
}, Q = (a, t) => {
|
|
64
|
+
const e = "floating-bg text-c-3 relative cursor-pointer border-b border-transparent py-1 text-base font-medium";
|
|
65
|
+
return T(a, t) ? `${e} !text-c-1 !rounded-none border-b !border-current ${n.isStatic ? "opacity-100" : ""}` : e;
|
|
66
66
|
};
|
|
67
|
-
return (a,
|
|
68
|
-
|
|
69
|
-
default:
|
|
70
|
-
u(
|
|
71
|
-
"aria-label":
|
|
72
|
-
class: "
|
|
67
|
+
return (a, t) => (l(!0), c(d, null, B(k.value, ({ scheme: e, name: r, scopes: w }) => (l(), c(d, { key: r }, [
|
|
68
|
+
F.value && e ? (l(), y(s(m), { key: 0 }, {
|
|
69
|
+
default: o(() => [
|
|
70
|
+
u(s(A), {
|
|
71
|
+
"aria-label": $(r, e),
|
|
72
|
+
class: "max-h-[auto]"
|
|
73
73
|
}, {
|
|
74
|
-
default:
|
|
75
|
-
|
|
74
|
+
default: o(() => [
|
|
75
|
+
f("div", W, [
|
|
76
|
+
f("p", X, j($(r, e)), 1),
|
|
77
|
+
e.description ? (l(), y(s(K), {
|
|
78
|
+
key: 0,
|
|
79
|
+
class: "auth-description text-c-2 w-full",
|
|
80
|
+
value: e.description
|
|
81
|
+
}, null, 8, ["value"])) : v("", !0)
|
|
82
|
+
])
|
|
76
83
|
]),
|
|
77
84
|
_: 2
|
|
78
85
|
}, 1032, ["aria-label"])
|
|
79
86
|
]),
|
|
80
87
|
_: 2
|
|
81
88
|
}, 1024)) : v("", !0),
|
|
82
|
-
|
|
83
|
-
default:
|
|
84
|
-
u(
|
|
85
|
-
"aria-label":
|
|
89
|
+
e?.description && !F.value ? (l(), y(s(m), { key: 1 }, {
|
|
90
|
+
default: o(() => [
|
|
91
|
+
u(s(A), {
|
|
92
|
+
"aria-label": e.description,
|
|
86
93
|
class: "max-h-[auto]"
|
|
87
94
|
}, {
|
|
88
|
-
default:
|
|
89
|
-
u(
|
|
95
|
+
default: o(() => [
|
|
96
|
+
u(s(K), {
|
|
90
97
|
class: "auth-description bg-b-1 text-c-2 min-w-0 flex-1 px-3 py-1.25",
|
|
91
|
-
value:
|
|
98
|
+
value: e.description
|
|
92
99
|
}, null, 8, ["value"])
|
|
93
100
|
]),
|
|
94
101
|
_: 2
|
|
@@ -96,54 +103,54 @@ const W = { class: "bg-b-1 text-c-2 outline-b-3 top-0 z-1 h-full w-full overflow
|
|
|
96
103
|
]),
|
|
97
104
|
_: 2
|
|
98
105
|
}, 1024)) : v("", !0),
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
default:
|
|
102
|
-
u(
|
|
103
|
-
containerClass:
|
|
106
|
+
e?.type === "http" ? (l(), c(d, { key: 2 }, [
|
|
107
|
+
e.scheme === "bearer" ? (l(), y(s(m), { key: 0 }, {
|
|
108
|
+
default: o(() => [
|
|
109
|
+
u(b, {
|
|
110
|
+
containerClass: U(),
|
|
104
111
|
environment: n.environment,
|
|
105
|
-
modelValue:
|
|
112
|
+
modelValue: e["x-scalar-secret-token"],
|
|
106
113
|
placeholder: "Token",
|
|
107
114
|
type: "password",
|
|
108
|
-
"onUpdate:modelValue": (
|
|
115
|
+
"onUpdate:modelValue": (i) => C({ "x-scalar-secret-token": i }, r)
|
|
109
116
|
}, {
|
|
110
|
-
default:
|
|
111
|
-
|
|
117
|
+
default: o(() => [...t[0] || (t[0] = [
|
|
118
|
+
x(" Bearer Token ", -1)
|
|
112
119
|
])]),
|
|
113
120
|
_: 1
|
|
114
121
|
}, 8, ["containerClass", "environment", "modelValue", "onUpdate:modelValue"])
|
|
115
122
|
]),
|
|
116
123
|
_: 2
|
|
117
|
-
}, 1024)) :
|
|
118
|
-
u(
|
|
119
|
-
default:
|
|
120
|
-
u(
|
|
124
|
+
}, 1024)) : e?.scheme === "basic" ? (l(), c(d, { key: 1 }, [
|
|
125
|
+
u(s(m), null, {
|
|
126
|
+
default: o(() => [
|
|
127
|
+
u(b, {
|
|
121
128
|
class: "text-c-2",
|
|
122
129
|
environment: n.environment,
|
|
123
|
-
modelValue:
|
|
130
|
+
modelValue: e["x-scalar-secret-username"],
|
|
124
131
|
placeholder: "janedoe",
|
|
125
132
|
required: "",
|
|
126
|
-
"onUpdate:modelValue": (
|
|
133
|
+
"onUpdate:modelValue": (i) => C({ "x-scalar-secret-username": i }, r)
|
|
127
134
|
}, {
|
|
128
|
-
default:
|
|
129
|
-
|
|
135
|
+
default: o(() => [...t[1] || (t[1] = [
|
|
136
|
+
x(" Username ", -1)
|
|
130
137
|
])]),
|
|
131
138
|
_: 1
|
|
132
139
|
}, 8, ["environment", "modelValue", "onUpdate:modelValue"])
|
|
133
140
|
]),
|
|
134
141
|
_: 2
|
|
135
142
|
}, 1024),
|
|
136
|
-
u(
|
|
137
|
-
default:
|
|
138
|
-
u(
|
|
143
|
+
u(s(m), null, {
|
|
144
|
+
default: o(() => [
|
|
145
|
+
u(b, {
|
|
139
146
|
environment: n.environment,
|
|
140
|
-
modelValue:
|
|
147
|
+
modelValue: e["x-scalar-secret-password"],
|
|
141
148
|
placeholder: "********",
|
|
142
149
|
type: "password",
|
|
143
|
-
"onUpdate:modelValue": (
|
|
150
|
+
"onUpdate:modelValue": (i) => C({ "x-scalar-secret-password": i }, r)
|
|
144
151
|
}, {
|
|
145
|
-
default:
|
|
146
|
-
|
|
152
|
+
default: o(() => [...t[2] || (t[2] = [
|
|
153
|
+
x(" Password ", -1)
|
|
147
154
|
])]),
|
|
148
155
|
_: 1
|
|
149
156
|
}, 8, ["environment", "modelValue", "onUpdate:modelValue"])
|
|
@@ -151,87 +158,87 @@ const W = { class: "bg-b-1 text-c-2 outline-b-3 top-0 z-1 h-full w-full overflow
|
|
|
151
158
|
_: 2
|
|
152
159
|
}, 1024)
|
|
153
160
|
], 64)) : v("", !0)
|
|
154
|
-
], 64)) :
|
|
155
|
-
u(
|
|
156
|
-
default:
|
|
157
|
-
u(
|
|
158
|
-
containerClass:
|
|
161
|
+
], 64)) : e?.type === "apiKey" ? (l(), c(d, { key: 3 }, [
|
|
162
|
+
u(s(m), null, {
|
|
163
|
+
default: o(() => [
|
|
164
|
+
u(b, {
|
|
165
|
+
containerClass: U(),
|
|
159
166
|
environment: n.environment,
|
|
160
|
-
modelValue:
|
|
167
|
+
modelValue: e.name,
|
|
161
168
|
placeholder: "api-key",
|
|
162
|
-
"onUpdate:modelValue": (
|
|
169
|
+
"onUpdate:modelValue": (i) => z({ name: i }, r)
|
|
163
170
|
}, {
|
|
164
|
-
default:
|
|
165
|
-
|
|
171
|
+
default: o(() => [...t[3] || (t[3] = [
|
|
172
|
+
x(" Name ", -1)
|
|
166
173
|
])]),
|
|
167
174
|
_: 1
|
|
168
175
|
}, 8, ["containerClass", "environment", "modelValue", "onUpdate:modelValue"])
|
|
169
176
|
]),
|
|
170
177
|
_: 2
|
|
171
178
|
}, 1024),
|
|
172
|
-
u(
|
|
173
|
-
default:
|
|
174
|
-
u(
|
|
179
|
+
u(s(m), null, {
|
|
180
|
+
default: o(() => [
|
|
181
|
+
u(b, {
|
|
175
182
|
environment: n.environment,
|
|
176
|
-
modelValue:
|
|
183
|
+
modelValue: e["x-scalar-secret-token"],
|
|
177
184
|
placeholder: "QUxMIFlPVVIgQkFTRSBBUkUgQkVMT05HIFRPIFVT",
|
|
178
185
|
type: "password",
|
|
179
|
-
"onUpdate:modelValue": (
|
|
186
|
+
"onUpdate:modelValue": (i) => M({ "x-scalar-secret-token": i }, r)
|
|
180
187
|
}, {
|
|
181
|
-
default:
|
|
182
|
-
|
|
188
|
+
default: o(() => [...t[4] || (t[4] = [
|
|
189
|
+
x(" Value ", -1)
|
|
183
190
|
])]),
|
|
184
191
|
_: 1
|
|
185
192
|
}, 8, ["environment", "modelValue", "onUpdate:modelValue"])
|
|
186
193
|
]),
|
|
187
194
|
_: 2
|
|
188
195
|
}, 1024)
|
|
189
|
-
], 64)) :
|
|
190
|
-
|
|
196
|
+
], 64)) : e?.type === "oauth2" || e?.type === "openIdConnect" ? (l(), c(d, { key: 4 }, [
|
|
197
|
+
e?.type === "openIdConnect" && !Object.keys(e.flows ?? {}).length ? (l(), y(J, {
|
|
191
198
|
key: 0,
|
|
192
199
|
environment: n.environment,
|
|
193
200
|
eventBus: n.eventBus,
|
|
194
|
-
getStaticBorderClass:
|
|
195
|
-
name:
|
|
201
|
+
getStaticBorderClass: U,
|
|
202
|
+
name: r,
|
|
196
203
|
proxyUrl: n.proxyUrl,
|
|
197
|
-
scheme:
|
|
204
|
+
scheme: e
|
|
198
205
|
}, null, 8, ["environment", "eventBus", "name", "proxyUrl", "scheme"])) : v("", !0),
|
|
199
|
-
Object.keys(
|
|
200
|
-
default:
|
|
201
|
-
|
|
202
|
-
|
|
203
|
-
(
|
|
206
|
+
Object.keys(e.flows ?? {}).length > 1 ? (l(), y(s(m), { key: 1 }, {
|
|
207
|
+
default: o(() => [
|
|
208
|
+
f("div", Y, [
|
|
209
|
+
f("div", Z, [
|
|
210
|
+
(l(!0), c(d, null, B(e.flows, (i, p, g) => (l(), c("button", {
|
|
204
211
|
key: p,
|
|
205
|
-
class:
|
|
212
|
+
class: E(Q(p, g)),
|
|
206
213
|
type: "button",
|
|
207
|
-
onClick: (I) =>
|
|
214
|
+
onClick: (I) => R(p)
|
|
208
215
|
}, [
|
|
209
|
-
|
|
210
|
-
], 10,
|
|
216
|
+
f("span", ee, j(p), 1)
|
|
217
|
+
], 10, _))), 128))
|
|
211
218
|
])
|
|
212
219
|
])
|
|
213
220
|
]),
|
|
214
221
|
_: 2
|
|
215
222
|
}, 1024)) : v("", !0),
|
|
216
|
-
(
|
|
217
|
-
|
|
223
|
+
(l(!0), c(d, null, B(e.flows, (i, p, g) => (l(), c(d, { key: p }, [
|
|
224
|
+
e.flows && T(p, g) ? (l(), y(G, {
|
|
218
225
|
key: 0,
|
|
219
226
|
environment: n.environment,
|
|
220
227
|
eventBus: n.eventBus,
|
|
221
|
-
flows:
|
|
222
|
-
name:
|
|
228
|
+
flows: e.flows,
|
|
229
|
+
name: r,
|
|
223
230
|
proxyUrl: n.proxyUrl,
|
|
224
|
-
scheme:
|
|
225
|
-
selectedScopes:
|
|
231
|
+
scheme: e,
|
|
232
|
+
selectedScopes: w,
|
|
226
233
|
server: n.server,
|
|
227
234
|
type: p,
|
|
228
|
-
"onUpdate:selectedScopes": (I) =>
|
|
235
|
+
"onUpdate:selectedScopes": (I) => P(r, I)
|
|
229
236
|
}, null, 8, ["environment", "eventBus", "flows", "name", "proxyUrl", "scheme", "selectedScopes", "server", "type", "onUpdate:selectedScopes"])) : v("", !0)
|
|
230
237
|
], 64))), 128))
|
|
231
|
-
], 64)) : (
|
|
238
|
+
], 64)) : (l(), c("div", te, " The security scheme is missing a type, please double check your OpenAPI document or Authentication Configuration "))
|
|
232
239
|
], 64))), 128));
|
|
233
240
|
}
|
|
234
241
|
});
|
|
235
242
|
export {
|
|
236
|
-
|
|
243
|
+
ce as default
|
|
237
244
|
};
|
|
@@ -74,7 +74,7 @@ const A = {
|
|
|
74
74
|
)
|
|
75
75
|
)), S = n(
|
|
76
76
|
() => w(o(e.options)?.hiddenClients)
|
|
77
|
-
), y = "2.29.
|
|
77
|
+
), y = "2.29.4";
|
|
78
78
|
return (t, a) => e.path && e.method && e.exampleName && c.value ? (l(), k(u(N), {
|
|
79
79
|
key: 0,
|
|
80
80
|
activeEnvironment: e.workspaceStore.workspace["x-scalar-active-environment"],
|
|
@@ -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.29.
|
|
36
|
+
}, v = "2.29.4";
|
|
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.29.
|
|
21
|
+
"version": "2.29.4",
|
|
22
22
|
"engines": {
|
|
23
23
|
"node": ">=20"
|
|
24
24
|
},
|
|
@@ -327,26 +327,26 @@
|
|
|
327
327
|
"whatwg-mimetype": "4.0.0",
|
|
328
328
|
"yaml": "^2.8.0",
|
|
329
329
|
"zod": "^4.3.5",
|
|
330
|
+
"@scalar/components": "0.19.10",
|
|
330
331
|
"@scalar/analytics-client": "1.0.1",
|
|
331
332
|
"@scalar/draggable": "0.3.0",
|
|
332
|
-
"@scalar/helpers": "0.2.15",
|
|
333
333
|
"@scalar/icons": "0.5.3",
|
|
334
|
-
"@scalar/
|
|
335
|
-
"@scalar/
|
|
336
|
-
"@scalar/
|
|
337
|
-
"@scalar/
|
|
338
|
-
"@scalar/
|
|
334
|
+
"@scalar/import": "0.4.53",
|
|
335
|
+
"@scalar/helpers": "0.2.16",
|
|
336
|
+
"@scalar/json-magic": "0.11.5",
|
|
337
|
+
"@scalar/oas-utils": "0.6.48",
|
|
338
|
+
"@scalar/openapi-parser": "0.24.15",
|
|
339
|
+
"@scalar/object-utils": "1.2.30",
|
|
339
340
|
"@scalar/openapi-types": "0.5.3",
|
|
340
|
-
"@scalar/openapi
|
|
341
|
-
"@scalar/
|
|
342
|
-
"@scalar/
|
|
343
|
-
"@scalar/sidebar": "0.7.39",
|
|
341
|
+
"@scalar/postman-to-openapi": "0.4.8",
|
|
342
|
+
"@scalar/sidebar": "0.7.41",
|
|
343
|
+
"@scalar/snippetz": "0.6.17",
|
|
344
344
|
"@scalar/themes": "0.14.0",
|
|
345
|
-
"@scalar/use-codemirror": "0.13.
|
|
346
|
-
"@scalar/types": "0.6.
|
|
347
|
-
"@scalar/use-toasts": "0.9.1",
|
|
345
|
+
"@scalar/use-codemirror": "0.13.45",
|
|
346
|
+
"@scalar/types": "0.6.8",
|
|
348
347
|
"@scalar/use-hooks": "0.3.7",
|
|
349
|
-
"@scalar/workspace-store": "0.34.
|
|
348
|
+
"@scalar/workspace-store": "0.34.4",
|
|
349
|
+
"@scalar/use-toasts": "0.9.1"
|
|
350
350
|
},
|
|
351
351
|
"devDependencies": {
|
|
352
352
|
"@tailwindcss/vite": "^4.1.18",
|
|
@@ -363,7 +363,7 @@
|
|
|
363
363
|
"vitest": "4.0.16",
|
|
364
364
|
"@scalar/build-tooling": "0.4.1",
|
|
365
365
|
"@scalar/galaxy": "0.5.16",
|
|
366
|
-
"@scalar/pre-post-request-scripts": "0.2.
|
|
366
|
+
"@scalar/pre-post-request-scripts": "0.2.4"
|
|
367
367
|
},
|
|
368
368
|
"scripts": {
|
|
369
369
|
"build": "scalar-build-vite",
|