zudoku 0.18.2 → 0.18.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/dist/cli/common/logger.js +9 -0
- package/dist/cli/common/logger.js.map +1 -1
- package/dist/config/validators/validate.d.ts +23 -3
- package/dist/config/validators/validate.js +7 -1
- package/dist/config/validators/validate.js.map +1 -1
- package/dist/lib/components/Header.js +2 -2
- package/dist/lib/components/Header.js.map +1 -1
- package/dist/lib/oas/parser/upgrade/index.d.ts +2 -2
- package/dist/lib/oas/parser/upgrade/index.js +3 -20
- package/dist/lib/oas/parser/upgrade/index.js.map +1 -1
- package/dist/lib/plugins/markdown/MdxPage.d.ts +9 -1
- package/dist/lib/plugins/markdown/MdxPage.js +14 -1
- package/dist/lib/plugins/markdown/MdxPage.js.map +1 -1
- package/dist/lib/plugins/markdown/index.js +1 -1
- package/dist/lib/plugins/markdown/index.js.map +1 -1
- package/dist/lib/plugins/openapi/client/GraphQLClient.js +12 -0
- package/dist/lib/plugins/openapi/client/GraphQLClient.js.map +1 -1
- package/dist/lib/plugins/openapi/client/useCreateQuery.d.ts +1 -1
- package/dist/lib/plugins/openapi/client/useCreateQuery.js +4 -2
- package/dist/lib/plugins/openapi/client/useCreateQuery.js.map +1 -1
- package/dist/lib/plugins/openapi/interfaces.d.ts +1 -1
- package/dist/lib/plugins/openapi/post-processors/removeExtensions.d.ts +6 -0
- package/dist/lib/plugins/openapi/post-processors/removeExtensions.js +14 -0
- package/dist/lib/plugins/openapi/post-processors/removeExtensions.js.map +1 -0
- package/dist/lib/plugins/openapi/post-processors/removeExtensions.test.d.ts +1 -0
- package/dist/lib/plugins/openapi/post-processors/removeExtensions.test.js +125 -0
- package/dist/lib/plugins/openapi/post-processors/removeExtensions.test.js.map +1 -0
- package/dist/lib/plugins/openapi/post-processors/removePaths.d.ts +11 -0
- package/dist/lib/plugins/openapi/post-processors/removePaths.js +33 -0
- package/dist/lib/plugins/openapi/post-processors/removePaths.js.map +1 -0
- package/dist/lib/plugins/openapi/post-processors/removePaths.test.d.ts +1 -0
- package/dist/lib/plugins/openapi/post-processors/removePaths.test.js +104 -0
- package/dist/lib/plugins/openapi/post-processors/removePaths.test.js.map +1 -0
- package/dist/lib/plugins/openapi/post-processors/traverse.d.ts +1 -0
- package/dist/lib/plugins/openapi/post-processors/traverse.js +2 -0
- package/dist/lib/plugins/openapi/post-processors/traverse.js.map +1 -0
- package/dist/lib/util/traverse.d.ts +2 -0
- package/dist/lib/util/traverse.js +18 -0
- package/dist/lib/util/traverse.js.map +1 -0
- package/dist/vite/config.js +12 -0
- package/dist/vite/config.js.map +1 -1
- package/dist/vite/config.test.js +3 -4
- package/dist/vite/config.test.js.map +1 -1
- package/dist/vite/output.js +20 -0
- package/dist/vite/output.js.map +1 -1
- package/dist/vite/plugin-api.js +23 -19
- package/dist/vite/plugin-api.js.map +1 -1
- package/dist/vite/plugin-component.js +14 -19
- package/dist/vite/plugin-component.js.map +1 -1
- package/dist/vite/plugin-docs.test.js +15 -23
- package/dist/vite/plugin-docs.test.js.map +1 -1
- package/dist/zuplo/with-zuplo.d.ts +3 -0
- package/dist/zuplo/with-zuplo.js +28 -0
- package/dist/zuplo/with-zuplo.js.map +1 -0
- package/lib/MdxPage-B2FpJ9KC.js +183 -0
- package/lib/MdxPage-B2FpJ9KC.js.map +1 -0
- package/lib/{OperationList-BwBl1xrD.js → OperationList-BkNQEsNs.js} +459 -457
- package/lib/OperationList-BkNQEsNs.js.map +1 -0
- package/lib/assets/{worker-CPsGZsve.js → worker-BHClFO3A.js} +434 -438
- package/lib/assets/worker-BHClFO3A.js.map +1 -0
- package/lib/{createServer-DK-g7kbB.js → createServer-CpJlUPtn.js} +4457 -5247
- package/lib/createServer-CpJlUPtn.js.map +1 -0
- package/lib/{index-DNxQ_rCt.js → index-C7SaIME0.js} +49 -45
- package/lib/index-C7SaIME0.js.map +1 -0
- package/lib/object_hash-CvlLgU-M.js +785 -0
- package/lib/object_hash-CvlLgU-M.js.map +1 -0
- package/lib/post-processors/removeExtensions.js +11 -0
- package/lib/post-processors/removeExtensions.js.map +1 -0
- package/lib/post-processors/removePaths.js +28 -0
- package/lib/post-processors/removePaths.js.map +1 -0
- package/lib/post-processors/traverse.js +12 -0
- package/lib/post-processors/traverse.js.map +1 -0
- package/lib/zudoku.components.js +1 -2
- package/lib/zudoku.components.js.map +1 -1
- package/lib/zudoku.openapi-worker.js +1 -1
- package/lib/zudoku.plugin-markdown.js +15 -14
- package/lib/zudoku.plugin-markdown.js.map +1 -1
- package/lib/zudoku.plugin-openapi.js +1 -1
- package/package.json +15 -5
- package/src/lib/components/Header.tsx +1 -2
- package/src/lib/oas/parser/upgrade/index.ts +4 -27
- package/src/lib/plugins/markdown/MdxPage.tsx +25 -1
- package/src/lib/plugins/markdown/index.tsx +1 -0
- package/src/lib/plugins/openapi/client/GraphQLClient.tsx +17 -0
- package/src/lib/plugins/openapi/client/useCreateQuery.ts +5 -2
- package/src/lib/plugins/openapi/interfaces.ts +1 -1
- package/src/lib/plugins/openapi/post-processors/removeExtensions.test.ts +144 -0
- package/src/lib/plugins/openapi/post-processors/removeExtensions.ts +24 -0
- package/src/lib/plugins/openapi/post-processors/removePaths.test.ts +126 -0
- package/src/lib/plugins/openapi/post-processors/removePaths.ts +55 -0
- package/src/lib/plugins/openapi/post-processors/traverse.ts +1 -0
- package/src/lib/util/traverse.ts +25 -0
- package/lib/MdxPage-Bwn-VSsH.js +0 -174
- package/lib/MdxPage-Bwn-VSsH.js.map +0 -1
- package/lib/OperationList-BwBl1xrD.js.map +0 -1
- package/lib/assets/worker-CPsGZsve.js.map +0 -1
- package/lib/createServer-DK-g7kbB.js.map +0 -1
- package/lib/index-DNxQ_rCt.js.map +0 -1
|
@@ -1,36 +1,38 @@
|
|
|
1
1
|
import { j as d } from "./jsx-runtime-B6kdoens.js";
|
|
2
2
|
import { g as Ht } from "./utils-DcpDOncX.js";
|
|
3
3
|
import { C as nr } from "./CategoryHeading-Bb9dqxD3.js";
|
|
4
|
-
import { I as
|
|
4
|
+
import { I as Tn, M as be, H as _e, P as je } from "./Markdown-ievDDhFT.js";
|
|
5
5
|
import { c as D } from "./cn-BmFQLtkS.js";
|
|
6
|
-
import { CheckIcon as
|
|
7
|
-
import { useContext as
|
|
8
|
-
import { a as
|
|
9
|
-
import { Button as
|
|
10
|
-
import {
|
|
11
|
-
import {
|
|
12
|
-
import {
|
|
13
|
-
import {
|
|
14
|
-
import {
|
|
15
|
-
import {
|
|
16
|
-
import {
|
|
17
|
-
import {
|
|
6
|
+
import { CheckIcon as Cn, CopyIcon as Pn, ChevronDownIcon as kn, CircleFadingPlusIcon as En, CircleDotIcon as Nn, CircleIcon as Rn, SquareMinusIcon as An, SquarePlusIcon as qn, ListPlusIcon as In } from "lucide-react";
|
|
7
|
+
import { useContext as Ln, useMemo as Jr, useTransition as Gr, useState as ve, useRef as Vr, useEffect as Qr, useLayoutEffect as Un, Fragment as Fn, useCallback as _n } from "react";
|
|
8
|
+
import { a as Kr } from "./state-tsXBLONe.js";
|
|
9
|
+
import { Button as Dr } from "./ui/Button.js";
|
|
10
|
+
import { h as Hn } from "./object_hash-CvlLgU-M.js";
|
|
11
|
+
import { a as Bn, u as Bt } from "./context-D1nXWxm7.js";
|
|
12
|
+
import { g as ut, S as Yr, C as Xr, P as Mn } from "./index-C7SaIME0.js";
|
|
13
|
+
import { Tabs as zn, TabsList as Wn, TabsTrigger as Jn, TabsContent as Gn } from "./ui/Tabs.js";
|
|
14
|
+
import { T as fe, b as Vn } from "./SidebarBadge-DxFJcJ6V.js";
|
|
15
|
+
import { Card as de, CardHeader as Qn, CardTitle as Kn, CardContent as Dn } from "./ui/Card.js";
|
|
16
|
+
import { g as Yn, c as He, a as Xn } from "./_commonjsHelpers-BkfeUUK-.js";
|
|
17
|
+
import { _ as Zn } from "./__vite-browser-external-BYRIRx8p.js";
|
|
18
|
+
import { u as eo } from "./index-Yn8c3UWE.js";
|
|
18
19
|
import { S as Mt } from "./SyntaxHighlight-DkLOsjHS.js";
|
|
19
20
|
import { B as or } from "./Button-jK0EsymC.js";
|
|
20
21
|
import * as ee from "@radix-ui/react-collapsible";
|
|
21
22
|
import * as De from "@radix-ui/react-tabs";
|
|
22
|
-
function
|
|
23
|
+
function to(t, e) {
|
|
23
24
|
return e;
|
|
24
25
|
}
|
|
25
26
|
const zt = (t, ...e) => {
|
|
26
|
-
const r =
|
|
27
|
+
const r = Ln(Bn);
|
|
27
28
|
if (r === void 0)
|
|
28
29
|
throw new Error("useGraphQL must be used within a GraphQLProvider");
|
|
30
|
+
const o = Jr(() => Hn(e[0] ?? {}), [e]);
|
|
29
31
|
return {
|
|
30
32
|
queryFn: () => r.fetch(t, ...e),
|
|
31
|
-
queryKey: [t,
|
|
33
|
+
queryKey: [t, o]
|
|
32
34
|
};
|
|
33
|
-
},
|
|
35
|
+
}, ro = ut(
|
|
34
36
|
/* GraphQL */
|
|
35
37
|
`
|
|
36
38
|
query ServersQuery($input: JSON!, $type: SchemaType!) {
|
|
@@ -45,7 +47,7 @@ const zt = (t, ...e) => {
|
|
|
45
47
|
), ar = ({ url: t }) => {
|
|
46
48
|
const [e, r] = ve(!1);
|
|
47
49
|
return /* @__PURE__ */ d.jsx(
|
|
48
|
-
|
|
50
|
+
Dr,
|
|
49
51
|
{
|
|
50
52
|
onClick: () => {
|
|
51
53
|
navigator.clipboard.writeText(t).then(() => {
|
|
@@ -54,14 +56,14 @@ const zt = (t, ...e) => {
|
|
|
54
56
|
},
|
|
55
57
|
variant: "ghost",
|
|
56
58
|
size: "icon",
|
|
57
|
-
children: e ? /* @__PURE__ */ d.jsx(
|
|
59
|
+
children: e ? /* @__PURE__ */ d.jsx(Cn, { className: "text-green-600", size: 14 }) : /* @__PURE__ */ d.jsx(Pn, { size: 14, strokeWidth: 1.3 })
|
|
58
60
|
}
|
|
59
61
|
);
|
|
60
|
-
},
|
|
61
|
-
const { input: t, type: e } = Bt(), r = zt(
|
|
62
|
+
}, no = () => {
|
|
63
|
+
const { input: t, type: e } = Bt(), r = zt(ro, { input: t, type: e }), o = Ht(r), [, i] = Gr(), { selectedServer: a, setSelectedServer: n } = Kr(), { servers: s } = o.data.schema;
|
|
62
64
|
return s.length === 1 ? /* @__PURE__ */ d.jsxs("div", { className: "flex items-center gap-2", children: [
|
|
63
65
|
/* @__PURE__ */ d.jsx("span", { className: "font-medium text-sm", children: "Endpoint:" }),
|
|
64
|
-
/* @__PURE__ */ d.jsx(
|
|
66
|
+
/* @__PURE__ */ d.jsx(Tn, { className: "text-xs px-2 py-1.5", selectOnClick: !0, children: s[0].url }),
|
|
65
67
|
/* @__PURE__ */ d.jsx(ar, { url: s[0].url })
|
|
66
68
|
] }) : /* @__PURE__ */ d.jsxs("div", { className: "flex flex-wrap items-center gap-2", children: [
|
|
67
69
|
/* @__PURE__ */ d.jsxs("span", { className: "font-medium text-sm", children: [
|
|
@@ -69,7 +71,7 @@ const zt = (t, ...e) => {
|
|
|
69
71
|
":"
|
|
70
72
|
] }),
|
|
71
73
|
/* @__PURE__ */ d.jsx(
|
|
72
|
-
|
|
74
|
+
Yr,
|
|
73
75
|
{
|
|
74
76
|
className: "font-mono text-xs bg-border/50 dark:bg-border/70 py-1.5 max-w-[450px] truncate",
|
|
75
77
|
onChange: (l) => i(() => {
|
|
@@ -85,24 +87,24 @@ const zt = (t, ...e) => {
|
|
|
85
87
|
),
|
|
86
88
|
/* @__PURE__ */ d.jsx(ar, { url: a ?? o.data.schema.url })
|
|
87
89
|
] });
|
|
88
|
-
},
|
|
90
|
+
}, Zr = (t, e) => t.reduce(
|
|
89
91
|
(r, o) => {
|
|
90
92
|
const i = e(o);
|
|
91
93
|
return r[i] || (r[i] = []), r[i].push(o), r;
|
|
92
94
|
},
|
|
93
95
|
{}
|
|
94
|
-
),
|
|
96
|
+
), oo = (t, e) => t ? e(t) : void 0, ao = (t) => t.schema != null && typeof t.schema == "object" ? t.schema : {
|
|
95
97
|
type: "string"
|
|
96
|
-
},
|
|
98
|
+
}, io = ({
|
|
97
99
|
parameter: t,
|
|
98
100
|
group: e,
|
|
99
101
|
id: r
|
|
100
102
|
}) => {
|
|
101
|
-
const o =
|
|
103
|
+
const o = ao(t);
|
|
102
104
|
return /* @__PURE__ */ d.jsxs("li", { className: "p-4 bg-border/20 text-sm flex flex-col gap-1", children: [
|
|
103
105
|
/* @__PURE__ */ d.jsxs("div", { className: "flex items-center gap-2", children: [
|
|
104
106
|
/* @__PURE__ */ d.jsx("code", { children: e === "path" ? /* @__PURE__ */ d.jsx(
|
|
105
|
-
|
|
107
|
+
Xr,
|
|
106
108
|
{
|
|
107
109
|
name: t.name,
|
|
108
110
|
backgroundOpacity: "15%",
|
|
@@ -120,14 +122,14 @@ const zt = (t, ...e) => {
|
|
|
120
122
|
}
|
|
121
123
|
)
|
|
122
124
|
] });
|
|
123
|
-
},
|
|
125
|
+
}, so = ({
|
|
124
126
|
group: t,
|
|
125
127
|
parameters: e,
|
|
126
128
|
id: r
|
|
127
129
|
}) => /* @__PURE__ */ d.jsxs(d.Fragment, { children: [
|
|
128
130
|
/* @__PURE__ */ d.jsx(_e, { level: 3, id: `${r}/${t}-parameters`, className: "capitalize", children: t === "header" ? "Headers" : `${t} Parameters` }),
|
|
129
131
|
/* @__PURE__ */ d.jsx(de, { children: /* @__PURE__ */ d.jsx("ul", { className: "list-none m-0 px-0 divide-y ", children: e.sort((o, i) => o.required === i.required ? 0 : o.required ? -1 : 1).map((o) => /* @__PURE__ */ d.jsx(
|
|
130
|
-
|
|
132
|
+
io,
|
|
131
133
|
{
|
|
132
134
|
parameter: o,
|
|
133
135
|
id: r,
|
|
@@ -161,16 +163,16 @@ var ir = (t, e) => {
|
|
|
161
163
|
this.postProcessors = [...this.postProcessors, r];
|
|
162
164
|
}, this.indentationCharacter = t || sr, this.lineJoin = e ?? lr;
|
|
163
165
|
}
|
|
164
|
-
}, so = function(t) {
|
|
165
|
-
return Object.prototype.toString.call(t) === "[object RegExp]";
|
|
166
166
|
}, lo = function(t) {
|
|
167
|
+
return Object.prototype.toString.call(t) === "[object RegExp]";
|
|
168
|
+
}, co = function(t) {
|
|
167
169
|
var e = typeof t;
|
|
168
170
|
return t !== null && (e === "object" || e === "function");
|
|
169
171
|
}, Wt = {};
|
|
170
172
|
Object.defineProperty(Wt, "__esModule", { value: !0 });
|
|
171
173
|
Wt.default = (t) => Object.getOwnPropertySymbols(t).filter((e) => Object.prototype.propertyIsEnumerable.call(t, e));
|
|
172
|
-
const
|
|
173
|
-
var
|
|
174
|
+
const uo = lo, po = co, fo = Wt.default;
|
|
175
|
+
var ho = (t, e, r) => {
|
|
174
176
|
const o = [];
|
|
175
177
|
return function i(a, n, s) {
|
|
176
178
|
n = n || {}, n.indent = n.indent || " ", s = s || "";
|
|
@@ -197,7 +199,7 @@ var fo = (t, e, r) => {
|
|
|
197
199
|
};
|
|
198
200
|
if (o.indexOf(a) !== -1)
|
|
199
201
|
return '"[Circular]"';
|
|
200
|
-
if (a == null || typeof a == "number" || typeof a == "boolean" || typeof a == "function" || typeof a == "symbol" ||
|
|
202
|
+
if (a == null || typeof a == "number" || typeof a == "boolean" || typeof a == "function" || typeof a == "symbol" || uo(a))
|
|
201
203
|
return String(a);
|
|
202
204
|
if (a instanceof Date)
|
|
203
205
|
return `new Date('${a.toISOString()}')`;
|
|
@@ -212,8 +214,8 @@ var fo = (t, e, r) => {
|
|
|
212
214
|
}).join("") + l.pad + "]";
|
|
213
215
|
return o.pop(), c(u);
|
|
214
216
|
}
|
|
215
|
-
if (
|
|
216
|
-
let u = Object.keys(a).concat(
|
|
217
|
+
if (po(a)) {
|
|
218
|
+
let u = Object.keys(a).concat(fo(a));
|
|
217
219
|
if (n.filter && (u = u.filter((p) => n.filter(a, p))), u.length === 0)
|
|
218
220
|
return "{}";
|
|
219
221
|
o.push(a);
|
|
@@ -228,13 +230,13 @@ var fo = (t, e, r) => {
|
|
|
228
230
|
` ? "\\n" : "\\r"), n.singleQuotes === !1 ? (a = a.replace(/"/g, '\\"'), `"${a}"`) : (a = a.replace(/\\?'/g, "\\'"), `'${a}'`);
|
|
229
231
|
}(t, e, r);
|
|
230
232
|
};
|
|
231
|
-
const z = /* @__PURE__ */
|
|
233
|
+
const z = /* @__PURE__ */ Yn(ho);
|
|
232
234
|
function We(t, e = {}) {
|
|
233
235
|
const { delimiter: r = '"', escapeChar: o = "\\", escapeNewlines: i = !0 } = e;
|
|
234
236
|
return [...t.toString()].map((n) => n === "\b" ? `${o}b` : n === " " ? `${o}t` : n === `
|
|
235
237
|
` ? i ? `${o}n` : n : n === "\f" ? `${o}f` : n === "\r" ? i ? `${o}r` : n : n === o ? o + o : n === r ? o + r : n < " " || n > "~" ? JSON.stringify(n).slice(1, -1) : n).join("");
|
|
236
238
|
}
|
|
237
|
-
var Je = (t) => We(t, { delimiter: "'" }), H = (t) => We(t, { delimiter: '"' }),
|
|
239
|
+
var Je = (t) => We(t, { delimiter: "'" }), H = (t) => We(t, { delimiter: '"' }), yo = {
|
|
238
240
|
info: {
|
|
239
241
|
key: "libcurl",
|
|
240
242
|
title: "Libcurl",
|
|
@@ -250,7 +252,7 @@ var Je = (t) => We(t, { delimiter: "'" }), H = (t) => We(t, { delimiter: '"' }),
|
|
|
250
252
|
a(`headers = curl_slist_append(headers, "${c}: ${H(r[c])}");`);
|
|
251
253
|
}), a("curl_easy_setopt(hnd, CURLOPT_HTTPHEADER, headers);")), o.cookie && (n(), a(`curl_easy_setopt(hnd, CURLOPT_COOKIE, "${o.cookie}");`)), i.text && (n(), a(`curl_easy_setopt(hnd, CURLOPT_POSTFIELDS, ${JSON.stringify(i.text)});`)), n(), a("CURLcode ret = curl_easy_perform(hnd);"), s();
|
|
252
254
|
}
|
|
253
|
-
},
|
|
255
|
+
}, mo = {
|
|
254
256
|
info: {
|
|
255
257
|
key: "c",
|
|
256
258
|
title: "C",
|
|
@@ -258,30 +260,30 @@ var Je = (t) => We(t, { delimiter: "'" }), H = (t) => We(t, { delimiter: '"' }),
|
|
|
258
260
|
cli: "c"
|
|
259
261
|
},
|
|
260
262
|
clientsById: {
|
|
261
|
-
libcurl:
|
|
263
|
+
libcurl: yo
|
|
262
264
|
}
|
|
263
265
|
}, J = (t, e) => Object.keys(t).find((r) => r.toLowerCase() === e.toLowerCase()), ue = (t, e) => {
|
|
264
266
|
const r = J(t, e);
|
|
265
267
|
if (r)
|
|
266
268
|
return t[r];
|
|
267
|
-
}, pt = (t, e) => !!J(t, e),
|
|
269
|
+
}, pt = (t, e) => !!J(t, e), go = (t) => ["application/json", "application/x-json", "text/json", "text/x-json", "+json"].some(
|
|
268
270
|
(e) => t.indexOf(e) > -1
|
|
269
271
|
), cr = class {
|
|
270
272
|
constructor(t) {
|
|
271
273
|
this.name = "", this.toString = () => `:${this.name}`, this.name = t;
|
|
272
274
|
}
|
|
273
|
-
},
|
|
275
|
+
}, bo = class {
|
|
274
276
|
constructor(t) {
|
|
275
277
|
this.path = "", this.toString = () => `(clojure.java.io/file "${this.path}")`, this.path = t;
|
|
276
278
|
}
|
|
277
|
-
},
|
|
279
|
+
}, en = (t) => t === void 0 ? null : t === null ? "null" : t.constructor.name.toLowerCase(), tn = (t) => t === void 0 ? !0 : en(t) === "object" ? Object.keys(t).length === 0 : !1, ur = (t) => (Object.keys(t).filter((e) => tn(t[e])).forEach((e) => {
|
|
278
280
|
delete t[e];
|
|
279
281
|
}), t), et = (t, e) => {
|
|
280
282
|
const r = " ".repeat(t);
|
|
281
283
|
return e.replace(/\n/g, `
|
|
282
284
|
${r}`);
|
|
283
285
|
}, Ct = (t) => {
|
|
284
|
-
switch (
|
|
286
|
+
switch (en(t)) {
|
|
285
287
|
case "string":
|
|
286
288
|
return `"${t.replace(/"/g, '\\"')}"`;
|
|
287
289
|
case "file":
|
|
@@ -307,7 +309,7 @@ ${r}`);
|
|
|
307
309
|
default:
|
|
308
310
|
return t.toString();
|
|
309
311
|
}
|
|
310
|
-
},
|
|
312
|
+
}, vo = {
|
|
311
313
|
info: {
|
|
312
314
|
key: "clj_http",
|
|
313
315
|
title: "clj-http",
|
|
@@ -349,7 +351,7 @@ ${r}`);
|
|
|
349
351
|
if (r.params) {
|
|
350
352
|
c.multipart = r.params.map((f) => f.fileName && !f.value ? {
|
|
351
353
|
name: f.name,
|
|
352
|
-
content: new
|
|
354
|
+
content: new bo(f.fileName)
|
|
353
355
|
} : {
|
|
354
356
|
name: f.name,
|
|
355
357
|
content: f.value
|
|
@@ -370,7 +372,7 @@ ${r}`);
|
|
|
370
372
|
break;
|
|
371
373
|
}
|
|
372
374
|
if (n(`(require '[clj-http.client :as client])
|
|
373
|
-
`),
|
|
375
|
+
`), tn(ur(c)))
|
|
374
376
|
n(`(client/${e} "${o}")`);
|
|
375
377
|
else {
|
|
376
378
|
const u = 11 + e.length + o.length, f = et(u, Ct(ur(c)));
|
|
@@ -378,16 +380,16 @@ ${r}`);
|
|
|
378
380
|
}
|
|
379
381
|
return s();
|
|
380
382
|
}
|
|
381
|
-
},
|
|
383
|
+
}, xo = {
|
|
382
384
|
info: {
|
|
383
385
|
key: "clojure",
|
|
384
386
|
title: "Clojure",
|
|
385
387
|
default: "clj_http"
|
|
386
388
|
},
|
|
387
389
|
clientsById: {
|
|
388
|
-
clj_http:
|
|
390
|
+
clj_http: vo
|
|
389
391
|
}
|
|
390
|
-
},
|
|
392
|
+
}, $o = (t) => {
|
|
391
393
|
let e = ue(t, "accept-encoding");
|
|
392
394
|
if (!e)
|
|
393
395
|
return [];
|
|
@@ -404,7 +406,7 @@ ${r}`);
|
|
|
404
406
|
}
|
|
405
407
|
});
|
|
406
408
|
}), o;
|
|
407
|
-
},
|
|
409
|
+
}, wo = {
|
|
408
410
|
info: {
|
|
409
411
|
key: "httpclient",
|
|
410
412
|
title: "HttpClient",
|
|
@@ -420,7 +422,7 @@ ${r}`);
|
|
|
420
422
|
}, { push: n, join: s } = new C({ indent: a.indent });
|
|
421
423
|
n("using System.Net.Http.Headers;");
|
|
422
424
|
let l = "";
|
|
423
|
-
const c = !!t.cookie, u =
|
|
425
|
+
const c = !!t.cookie, u = $o(t);
|
|
424
426
|
(c || u.length) && (l = "clientHandler", n("var clientHandler = new HttpClientHandler"), n("{"), c && n("UseCookies = false,", 1), u.length && n(`AutomaticDecompression = ${u.join(" | ")},`, 1), n("};")), n(`var client = new HttpClient(${l});`), n("var request = new HttpRequestMessage"), n("{");
|
|
425
427
|
const f = ["GET", "POST", "PUT", "DELETE", "PATCH", "HEAD", "OPTIONS", "TRACE"];
|
|
426
428
|
r = r.toUpperCase(), r && f.includes(r) ? r = `HttpMethod.${r[0]}${r.substring(1).toLowerCase()}` : r = `new HttpMethod("${r}")`, n(`Method = ${r},`, 1), n(`RequestUri = new Uri("${o}"),`, 1);
|
|
@@ -457,10 +459,10 @@ ${r}`);
|
|
|
457
459
|
return n("};"), n("using (var response = await client.SendAsync(request))"), n("{"), n("response.EnsureSuccessStatusCode();", 1), n("var body = await response.Content.ReadAsStringAsync();", 1), n("Console.WriteLine(body);", 1), n("}"), s();
|
|
458
460
|
}
|
|
459
461
|
};
|
|
460
|
-
function
|
|
462
|
+
function jo(t) {
|
|
461
463
|
return t[0].toUpperCase() + t.slice(1).toLowerCase();
|
|
462
464
|
}
|
|
463
|
-
var
|
|
465
|
+
var So = {
|
|
464
466
|
info: {
|
|
465
467
|
key: "restsharp",
|
|
466
468
|
title: "RestSharp",
|
|
@@ -510,11 +512,11 @@ var jo = {
|
|
|
510
512
|
if (!i.text) break;
|
|
511
513
|
n(`request.AddStringBody("${i.text}", "${i.mimeType}");`);
|
|
512
514
|
}
|
|
513
|
-
return n(`var response = await client.${
|
|
515
|
+
return n(`var response = await client.${jo(t)}Async(request);
|
|
514
516
|
`), n(`Console.WriteLine("{0}", response.Content);
|
|
515
517
|
`), s();
|
|
516
518
|
}
|
|
517
|
-
},
|
|
519
|
+
}, Oo = {
|
|
518
520
|
info: {
|
|
519
521
|
key: "csharp",
|
|
520
522
|
title: "C#",
|
|
@@ -522,10 +524,10 @@ var jo = {
|
|
|
522
524
|
cli: "dotnet"
|
|
523
525
|
},
|
|
524
526
|
clientsById: {
|
|
525
|
-
httpclient:
|
|
526
|
-
restsharp:
|
|
527
|
+
httpclient: wo,
|
|
528
|
+
restsharp: So
|
|
527
529
|
}
|
|
528
|
-
},
|
|
530
|
+
}, To = {
|
|
529
531
|
info: {
|
|
530
532
|
key: "native",
|
|
531
533
|
title: "NewRequest",
|
|
@@ -543,7 +545,7 @@ var jo = {
|
|
|
543
545
|
n(`req.Header.Add("${m}", "${H(r[m])}")`, h);
|
|
544
546
|
}), a()), n(`res, ${p} := ${x}.Do(req)`, h), y(), u && (a(), n("defer res.Body.Close()", h), n(`body, ${p} := io.ReadAll(res.Body)`, h), y()), a(), u && n("fmt.Println(string(body))", h), l && (a(), n("}")), s();
|
|
545
547
|
}
|
|
546
|
-
},
|
|
548
|
+
}, Co = {
|
|
547
549
|
info: {
|
|
548
550
|
key: "go",
|
|
549
551
|
title: "Go",
|
|
@@ -551,10 +553,10 @@ var jo = {
|
|
|
551
553
|
cli: "go"
|
|
552
554
|
},
|
|
553
555
|
clientsById: {
|
|
554
|
-
native:
|
|
556
|
+
native: To
|
|
555
557
|
}
|
|
556
558
|
}, pr = `\r
|
|
557
|
-
`,
|
|
559
|
+
`, Po = {
|
|
558
560
|
info: {
|
|
559
561
|
key: "http1.1",
|
|
560
562
|
title: "HTTP/1.1",
|
|
@@ -582,16 +584,16 @@ var jo = {
|
|
|
582
584
|
const h = u(), y = a.text || "";
|
|
583
585
|
return `${h}${pr}${y}`;
|
|
584
586
|
}
|
|
585
|
-
},
|
|
587
|
+
}, ko = {
|
|
586
588
|
info: {
|
|
587
589
|
key: "http",
|
|
588
590
|
title: "HTTP",
|
|
589
591
|
default: "http1.1"
|
|
590
592
|
},
|
|
591
593
|
clientsById: {
|
|
592
|
-
"http1.1":
|
|
594
|
+
"http1.1": Po
|
|
593
595
|
}
|
|
594
|
-
},
|
|
596
|
+
}, Eo = {
|
|
595
597
|
info: {
|
|
596
598
|
key: "asynchttp",
|
|
597
599
|
title: "AsyncHttp",
|
|
@@ -608,7 +610,7 @@ var jo = {
|
|
|
608
610
|
s(`.setHeader("${c}", "${H(e[c])}")`, 1);
|
|
609
611
|
}), r.text && s(`.setBody(${JSON.stringify(r.text)})`, 1), s(".execute()", 1), s(".toCompletableFuture()", 1), s(".thenAccept(System.out::println)", 1), s(".join();", 1), n(), s("client.close();"), l();
|
|
610
612
|
}
|
|
611
|
-
},
|
|
613
|
+
}, No = {
|
|
612
614
|
info: {
|
|
613
615
|
key: "nethttp",
|
|
614
616
|
title: "java.net.http",
|
|
@@ -630,7 +632,7 @@ var jo = {
|
|
|
630
632
|
"HttpResponse<String> response = HttpClient.newHttpClient().send(request, HttpResponse.BodyHandlers.ofString());"
|
|
631
633
|
), n("System.out.println(response.body());"), s();
|
|
632
634
|
}
|
|
633
|
-
},
|
|
635
|
+
}, Ro = {
|
|
634
636
|
info: {
|
|
635
637
|
key: "okhttp",
|
|
636
638
|
title: "OkHttp",
|
|
@@ -647,7 +649,7 @@ var jo = {
|
|
|
647
649
|
n(`.addHeader("${f}", "${H(o[f])}")`, 1);
|
|
648
650
|
}), n(".build();", 1), s(), n("Response response = client.newCall(request).execute();"), l();
|
|
649
651
|
}
|
|
650
|
-
},
|
|
652
|
+
}, Ao = {
|
|
651
653
|
info: {
|
|
652
654
|
key: "unirest",
|
|
653
655
|
title: "Unirest",
|
|
@@ -664,19 +666,19 @@ var jo = {
|
|
|
664
666
|
s(`.header("${c}", "${H(e[c])}")`, 1);
|
|
665
667
|
}), r.text && s(`.body(${JSON.stringify(r.text)})`, 1), s(".asString();", 1), n();
|
|
666
668
|
}
|
|
667
|
-
},
|
|
669
|
+
}, qo = {
|
|
668
670
|
info: {
|
|
669
671
|
key: "java",
|
|
670
672
|
title: "Java",
|
|
671
673
|
default: "unirest"
|
|
672
674
|
},
|
|
673
675
|
clientsById: {
|
|
674
|
-
asynchttp:
|
|
675
|
-
nethttp:
|
|
676
|
-
okhttp:
|
|
677
|
-
unirest:
|
|
676
|
+
asynchttp: Eo,
|
|
677
|
+
nethttp: No,
|
|
678
|
+
okhttp: Ro,
|
|
679
|
+
unirest: Ao
|
|
678
680
|
}
|
|
679
|
-
},
|
|
681
|
+
}, Io = {
|
|
680
682
|
info: {
|
|
681
683
|
key: "axios",
|
|
682
684
|
title: "Axios",
|
|
@@ -720,7 +722,7 @@ var jo = {
|
|
|
720
722
|
}).replace('"[form]"', "form");
|
|
721
723
|
return l(`const options = ${p};`), s(), l("axios"), l(".request(options)", 1), l(".then(function (response) {", 1), l("console.log(response.data);", 2), l("})", 1), l(".catch(function (error) {", 1), l("console.error(error);", 2), l("});", 1), c();
|
|
722
724
|
}
|
|
723
|
-
},
|
|
725
|
+
}, Lo = {
|
|
724
726
|
info: {
|
|
725
727
|
key: "fetch",
|
|
726
728
|
title: "fetch",
|
|
@@ -773,7 +775,7 @@ var jo = {
|
|
|
773
775
|
})};`
|
|
774
776
|
), n(), r.params && r.mimeType === "multipart/form-data" && (l("options.body = form;"), n()), l(`fetch('${o}', options)`), l(".then(response => response.json())", 1), l(".then(response => console.log(response))", 1), l(".catch(err => console.error(err));", 1), s();
|
|
775
777
|
}
|
|
776
|
-
},
|
|
778
|
+
}, Uo = {
|
|
777
779
|
info: {
|
|
778
780
|
key: "jquery",
|
|
779
781
|
title: "jQuery",
|
|
@@ -817,7 +819,7 @@ var jo = {
|
|
|
817
819
|
const u = z(c, { indent: a.indent }).replace("'[form]'", "form");
|
|
818
820
|
return s(`const settings = ${u};`), n(), s("$.ajax(settings).done(function (response) {"), s("console.log(response);", 1), s("});"), l();
|
|
819
821
|
}
|
|
820
|
-
},
|
|
822
|
+
}, Fo = {
|
|
821
823
|
info: {
|
|
822
824
|
key: "xhr",
|
|
823
825
|
title: "XMLHttpRequest",
|
|
@@ -858,19 +860,19 @@ var jo = {
|
|
|
858
860
|
s(`xhr.setRequestHeader('${u}', '${Je(e[u])}');`);
|
|
859
861
|
}), n(), s("xhr.send(data);"), l();
|
|
860
862
|
}
|
|
861
|
-
},
|
|
863
|
+
}, _o = {
|
|
862
864
|
info: {
|
|
863
865
|
key: "javascript",
|
|
864
866
|
title: "JavaScript",
|
|
865
867
|
default: "xhr"
|
|
866
868
|
},
|
|
867
869
|
clientsById: {
|
|
868
|
-
xhr:
|
|
869
|
-
axios:
|
|
870
|
-
fetch:
|
|
871
|
-
jquery:
|
|
870
|
+
xhr: Fo,
|
|
871
|
+
axios: Io,
|
|
872
|
+
fetch: Lo,
|
|
873
|
+
jquery: Uo
|
|
872
874
|
}
|
|
873
|
-
},
|
|
875
|
+
}, Ho = {
|
|
874
876
|
info: {
|
|
875
877
|
key: "native",
|
|
876
878
|
title: "Native JSON",
|
|
@@ -904,16 +906,16 @@ var jo = {
|
|
|
904
906
|
}
|
|
905
907
|
return typeof o > "u" || o === "" ? "No JSON body" : JSON.stringify(o, null, r.indent);
|
|
906
908
|
}
|
|
907
|
-
},
|
|
909
|
+
}, Bo = {
|
|
908
910
|
info: {
|
|
909
911
|
key: "json",
|
|
910
912
|
title: "JSON",
|
|
911
913
|
default: "native"
|
|
912
914
|
},
|
|
913
915
|
clientsById: {
|
|
914
|
-
native:
|
|
916
|
+
native: Ho
|
|
915
917
|
}
|
|
916
|
-
},
|
|
918
|
+
}, Mo = {
|
|
917
919
|
info: {
|
|
918
920
|
key: "okhttp",
|
|
919
921
|
title: "OkHttp",
|
|
@@ -930,16 +932,16 @@ var jo = {
|
|
|
930
932
|
l(`.addHeader("${f}", "${H(o[f])}")`, 1);
|
|
931
933
|
}), l(".build()", 1), n(), l("val response = client.newCall(request).execute()"), s();
|
|
932
934
|
}
|
|
933
|
-
},
|
|
935
|
+
}, zo = {
|
|
934
936
|
info: {
|
|
935
937
|
key: "kotlin",
|
|
936
938
|
title: "Kotlin",
|
|
937
939
|
default: "okhttp"
|
|
938
940
|
},
|
|
939
941
|
clientsById: {
|
|
940
|
-
okhttp:
|
|
942
|
+
okhttp: Mo
|
|
941
943
|
}
|
|
942
|
-
},
|
|
944
|
+
}, Wo = {
|
|
943
945
|
info: {
|
|
944
946
|
key: "axios",
|
|
945
947
|
title: "Axios",
|
|
@@ -973,7 +975,7 @@ var jo = {
|
|
|
973
975
|
const f = z(u, { indent: " ", inlineCharacterLimit: 80 });
|
|
974
976
|
return l(`const options = ${f};`), n(), l("axios"), l(".request(options)", 1), l(".then(function (response) {", 1), l("console.log(response.data);", 2), l("})", 1), l(".catch(function (error) {", 1), l("console.error(error);", 2), l("});", 1), s();
|
|
975
977
|
}
|
|
976
|
-
},
|
|
978
|
+
}, Jo = {
|
|
977
979
|
info: {
|
|
978
980
|
key: "fetch",
|
|
979
981
|
title: "Fetch",
|
|
@@ -1033,7 +1035,7 @@ var jo = {
|
|
|
1033
1035
|
});
|
|
1034
1036
|
return c(`const options = ${y};`), l(), s && f("const fs = require('fs');"), r.params && r.mimeType === "multipart/form-data" && (c("options.body = formData;"), l()), c("fetch(url, options)"), c(".then(res => res.json())", 1), c(".then(json => console.log(json))", 1), c(".catch(err => console.error('error:' + err));", 1), u().replace(/'encodedParams'/, "encodedParams").replace(/"fs\.createReadStream\(\\"(.+)\\"\)"/, 'fs.createReadStream("$1")');
|
|
1035
1037
|
}
|
|
1036
|
-
},
|
|
1038
|
+
}, Go = {
|
|
1037
1039
|
info: {
|
|
1038
1040
|
key: "native",
|
|
1039
1041
|
title: "HTTP",
|
|
@@ -1072,7 +1074,7 @@ var jo = {
|
|
|
1072
1074
|
}
|
|
1073
1075
|
return l("req.end();"), s();
|
|
1074
1076
|
}
|
|
1075
|
-
},
|
|
1077
|
+
}, Vo = {
|
|
1076
1078
|
info: {
|
|
1077
1079
|
key: "request",
|
|
1078
1080
|
title: "Request",
|
|
@@ -1125,7 +1127,7 @@ var jo = {
|
|
|
1125
1127
|
c(`jar.setCookie(request.cookie('${encodeURIComponent(g)}=${encodeURIComponent(b)}'), '${e}');`);
|
|
1126
1128
|
}), u(), h((g) => g.replace(/'JAR'/, "jar"))), l && p("const fs = require('fs');"), c(`const options = ${z(y, { indent: " ", inlineCharacterLimit: 80 })};`), u(), c("request(options, function (error, response, body) {"), c("if (error) throw new Error(error);", 1), u(), c("console.log(body);", 1), c("});"), f();
|
|
1127
1129
|
}
|
|
1128
|
-
},
|
|
1130
|
+
}, Qo = {
|
|
1129
1131
|
info: {
|
|
1130
1132
|
key: "unirest",
|
|
1131
1133
|
title: "Unirest",
|
|
@@ -1166,7 +1168,7 @@ var jo = {
|
|
|
1166
1168
|
}
|
|
1167
1169
|
return l && h("const fs = require('fs');"), p("req.end(function (res) {"), p("if (res.error) throw new Error(res.error);", 1), u(), p("console.log(res.body);", 1), p("});"), f();
|
|
1168
1170
|
}
|
|
1169
|
-
},
|
|
1171
|
+
}, Ko = {
|
|
1170
1172
|
info: {
|
|
1171
1173
|
key: "node",
|
|
1172
1174
|
title: "Node.js",
|
|
@@ -1174,11 +1176,11 @@ var jo = {
|
|
|
1174
1176
|
cli: "node %s"
|
|
1175
1177
|
},
|
|
1176
1178
|
clientsById: {
|
|
1177
|
-
native:
|
|
1178
|
-
request:
|
|
1179
|
-
unirest:
|
|
1180
|
-
axios:
|
|
1181
|
-
fetch:
|
|
1179
|
+
native: Go,
|
|
1180
|
+
request: Vo,
|
|
1181
|
+
unirest: Qo,
|
|
1182
|
+
axios: Wo,
|
|
1183
|
+
fetch: Jo
|
|
1182
1184
|
}
|
|
1183
1185
|
}, ht = (t, e, r, o) => {
|
|
1184
1186
|
const i = `${t} *${e} = `, a = Pt(r, o ? i.length : void 0);
|
|
@@ -1202,7 +1204,7 @@ var jo = {
|
|
|
1202
1204
|
default:
|
|
1203
1205
|
return t == null ? "" : `@"${t.toString().replace(/"/g, '\\"')}"`;
|
|
1204
1206
|
}
|
|
1205
|
-
},
|
|
1207
|
+
}, Do = {
|
|
1206
1208
|
info: {
|
|
1207
1209
|
key: "nsurlsession",
|
|
1208
1210
|
title: "NSURLSession",
|
|
@@ -1259,16 +1261,16 @@ var jo = {
|
|
|
1259
1261
|
2
|
|
1260
1262
|
), n(' NSLog(@"%@", httpResponse);', 2), n(" }", 1), n(" }];"), n("[dataTask resume];"), s();
|
|
1261
1263
|
}
|
|
1262
|
-
},
|
|
1264
|
+
}, Yo = {
|
|
1263
1265
|
info: {
|
|
1264
1266
|
key: "objc",
|
|
1265
1267
|
title: "Objective-C",
|
|
1266
1268
|
default: "nsurlsession"
|
|
1267
1269
|
},
|
|
1268
1270
|
clientsById: {
|
|
1269
|
-
nsurlsession:
|
|
1271
|
+
nsurlsession: Do
|
|
1270
1272
|
}
|
|
1271
|
-
},
|
|
1273
|
+
}, Xo = {
|
|
1272
1274
|
info: {
|
|
1273
1275
|
key: "cohttp",
|
|
1274
1276
|
title: "CoHTTP",
|
|
@@ -1294,14 +1296,14 @@ var jo = {
|
|
|
1294
1296
|
const f = u.length ? "~headers " : "", p = r.text ? "~body " : "", h = n.includes(o.toLowerCase()) ? `\`${o.toUpperCase()}` : `(Code.method_of_string "${o}")`;
|
|
1295
1297
|
return s(`Client.call ${f}${p}${h} uri`), s(">>= fun (res, body_stream) ->"), s("(* Do stuff with the result *)", 1), c();
|
|
1296
1298
|
}
|
|
1297
|
-
},
|
|
1299
|
+
}, Zo = {
|
|
1298
1300
|
info: {
|
|
1299
1301
|
key: "ocaml",
|
|
1300
1302
|
title: "OCaml",
|
|
1301
1303
|
default: "cohttp"
|
|
1302
1304
|
},
|
|
1303
1305
|
clientsById: {
|
|
1304
|
-
cohttp:
|
|
1306
|
+
cohttp: Xo
|
|
1305
1307
|
}
|
|
1306
1308
|
}, N = (t, e, r) => {
|
|
1307
1309
|
switch (r = r || "", e = e || "", Object.prototype.toString.call(t)) {
|
|
@@ -1362,7 +1364,7 @@ ${r}]`;
|
|
|
1362
1364
|
"UNLOCK",
|
|
1363
1365
|
"UPDATE",
|
|
1364
1366
|
"VERSION_CONTROL"
|
|
1365
|
-
],
|
|
1367
|
+
], ea = {
|
|
1366
1368
|
info: {
|
|
1367
1369
|
key: "curl",
|
|
1368
1370
|
title: "cURL",
|
|
@@ -1440,7 +1442,7 @@ ${c}` });
|
|
|
1440
1442
|
return w.length && (v.push("CURLOPT_HTTPHEADER => ["), v.push(w.join(`,
|
|
1441
1443
|
${c}${c}`), 1), v.push("],")), g(v.join(), 1), g("]);"), b(), g("$response = curl_exec($curl);"), g("$err = curl_error($curl);"), b(), g("curl_close($curl);"), b(), g("if ($err) {"), g(f ? 'echo array_flip(get_defined_constants(true)["curl"])[$err];' : 'echo "cURL Error #:" . $err;', 1), g("} else {"), g("echo $response;", 1), g("}"), !p && l && (b(), g("?>")), x();
|
|
1442
1444
|
}
|
|
1443
|
-
},
|
|
1445
|
+
}, ta = {
|
|
1444
1446
|
info: {
|
|
1445
1447
|
key: "guzzle",
|
|
1446
1448
|
title: "Guzzle",
|
|
@@ -1491,7 +1493,7 @@ ${c}${c}`), 1), v.push("],")), g(v.join(), 1), g("]);"), b(), g("$response = cur
|
|
|
1491
1493
|
return y.length && h.push(`${n.indent}${n.indent}'cookie' => '${Je(y)}',`), h.length && (f("'headers' => [", 1), f(h.join(`
|
|
1492
1494
|
`)), f("],", 1)), s("$client = new \\GuzzleHttp\\Client();"), l(), u.length ? (s(`$response = $client->request('${r}', '${e}', [`), s(p()), s("]);")) : s(`$response = $client->request('${r}', '${e}');`), l(), s("echo $response->getBody();"), !n.noTags && n.closingTag && (l(), s("?>")), c();
|
|
1493
1495
|
}
|
|
1494
|
-
},
|
|
1496
|
+
}, ra = {
|
|
1495
1497
|
info: {
|
|
1496
1498
|
key: "http1",
|
|
1497
1499
|
title: "HTTP v1",
|
|
@@ -1513,7 +1515,7 @@ ${c}${c}`), 1), v.push("],")), g(v.join(), 1), g("]);"), b(), g("$response = cur
|
|
|
1513
1515
|
}
|
|
1514
1516
|
return f("try {"), f("$response = $request->send();", 1), p(), f("echo $response->getBody();", 1), f("} catch (HttpException $ex) {"), f("echo $ex;", 1), f("}"), !c && s && (p(), f("?>")), h();
|
|
1515
1517
|
}
|
|
1516
|
-
},
|
|
1518
|
+
}, na = {
|
|
1517
1519
|
info: {
|
|
1518
1520
|
key: "http2",
|
|
1519
1521
|
title: "HTTP v2",
|
|
@@ -1561,7 +1563,7 @@ ${c}${c}`), 1), v.push("],")), g(v.join(), 1), g("]);"), b(), g("$response = cur
|
|
|
1561
1563
|
}
|
|
1562
1564
|
return f(`$request->setRequestUrl(${N(a)});`), f(`$request->setRequestMethod(${N(r)});`), y && (f("$request->setBody($body);"), p()), Object.keys(o).length && (f(`$request->setQuery(new http\\QueryString(${N(o, l)}));`), p()), Object.keys(e).length && (f(`$request->setHeaders(${N(e, l)});`), p()), Object.keys(i).length && (p(), f(`$client->setCookies(${N(i, l)});`), p()), f("$client->enqueue($request)->send();"), f("$response = $client->getResponse();"), p(), f("echo $response->getBody();"), !c && s && (p(), f("?>")), h();
|
|
1563
1565
|
}
|
|
1564
|
-
},
|
|
1566
|
+
}, oa = {
|
|
1565
1567
|
info: {
|
|
1566
1568
|
key: "php",
|
|
1567
1569
|
title: "PHP",
|
|
@@ -1569,12 +1571,12 @@ ${c}${c}`), 1), v.push("],")), g(v.join(), 1), g("]);"), b(), g("$response = cur
|
|
|
1569
1571
|
cli: "php %s"
|
|
1570
1572
|
},
|
|
1571
1573
|
clientsById: {
|
|
1572
|
-
curl:
|
|
1573
|
-
guzzle:
|
|
1574
|
-
http1:
|
|
1575
|
-
http2:
|
|
1574
|
+
curl: ea,
|
|
1575
|
+
guzzle: ta,
|
|
1576
|
+
http1: ra,
|
|
1577
|
+
http2: na
|
|
1576
1578
|
}
|
|
1577
|
-
},
|
|
1579
|
+
}, rn = (t) => ({ method: r, headersObj: o, cookies: i, uriObj: a, fullUrl: n, postData: s, allHeaders: l }) => {
|
|
1578
1580
|
const { push: c, join: u } = new C();
|
|
1579
1581
|
if (!["GET", "POST", "PUT", "DELETE", "PATCH", "HEAD", "OPTIONS"].includes(r.toUpperCase()))
|
|
1580
1582
|
return "Method not supported";
|
|
@@ -1586,7 +1588,7 @@ ${c}${c}`), 1), v.push("],")), g(v.join(), 1), g("]);"), b(), g("$response = cur
|
|
|
1586
1588
|
}), p.push("-WebSession $session")), s.text && (p.push(
|
|
1587
1589
|
`-ContentType '${We(ue(l, "content-type"), { delimiter: "'", escapeChar: "`" })}'`
|
|
1588
1590
|
), p.push(`-Body '${s.text}'`)), c(`$response = ${t} -Uri '${n}' -Method ${r} ${p.join(" ")}`.trim()), u();
|
|
1589
|
-
},
|
|
1591
|
+
}, aa = {
|
|
1590
1592
|
info: {
|
|
1591
1593
|
key: "restmethod",
|
|
1592
1594
|
title: "Invoke-RestMethod",
|
|
@@ -1594,8 +1596,8 @@ ${c}${c}`), 1), v.push("],")), g(v.join(), 1), g("]);"), b(), g("$response = cur
|
|
|
1594
1596
|
description: "Powershell Invoke-RestMethod client",
|
|
1595
1597
|
extname: ".ps1"
|
|
1596
1598
|
},
|
|
1597
|
-
convert:
|
|
1598
|
-
},
|
|
1599
|
+
convert: rn("Invoke-RestMethod")
|
|
1600
|
+
}, ia = {
|
|
1599
1601
|
info: {
|
|
1600
1602
|
key: "webrequest",
|
|
1601
1603
|
title: "Invoke-WebRequest",
|
|
@@ -1603,16 +1605,16 @@ ${c}${c}`), 1), v.push("],")), g(v.join(), 1), g("]);"), b(), g("$response = cur
|
|
|
1603
1605
|
description: "Powershell Invoke-WebRequest client",
|
|
1604
1606
|
extname: ".ps1"
|
|
1605
1607
|
},
|
|
1606
|
-
convert:
|
|
1607
|
-
},
|
|
1608
|
+
convert: rn("Invoke-WebRequest")
|
|
1609
|
+
}, sa = {
|
|
1608
1610
|
info: {
|
|
1609
1611
|
key: "powershell",
|
|
1610
1612
|
title: "Powershell",
|
|
1611
1613
|
default: "webrequest"
|
|
1612
1614
|
},
|
|
1613
1615
|
clientsById: {
|
|
1614
|
-
webrequest:
|
|
1615
|
-
restmethod:
|
|
1616
|
+
webrequest: ia,
|
|
1617
|
+
restmethod: aa
|
|
1616
1618
|
}
|
|
1617
1619
|
};
|
|
1618
1620
|
function dr(t, e, r, o, i) {
|
|
@@ -1644,7 +1646,7 @@ var ke = (t, e, r) => {
|
|
|
1644
1646
|
default:
|
|
1645
1647
|
return t == null ? "" : `"${t.toString().replace(/"/g, '\\"')}"`;
|
|
1646
1648
|
}
|
|
1647
|
-
},
|
|
1649
|
+
}, la = ["HEAD", "GET", "POST", "PUT", "PATCH", "DELETE", "OPTIONS"], ca = {
|
|
1648
1650
|
info: {
|
|
1649
1651
|
key: "requests",
|
|
1650
1652
|
title: "Requests",
|
|
@@ -1707,10 +1709,10 @@ var ke = (t, e, r) => {
|
|
|
1707
1709
|
n(m !== b ? `"${v}": "${H(u[v])}",` : `"${v}": "${H(u[v])}"`, 1), m += 1;
|
|
1708
1710
|
}), n("}"), s();
|
|
1709
1711
|
}
|
|
1710
|
-
let x =
|
|
1712
|
+
let x = la.includes(o) ? `response = requests.${o.toLowerCase()}(url` : `response = requests.request("${o}", url`;
|
|
1711
1713
|
return y && (g ? x += ", json=payload" : x += ", data=payload"), h && (x += ", files=files"), b > 0 && (x += ", headers=headers"), x += ")", n(x), s(), n("print(response.text)"), l();
|
|
1712
1714
|
}
|
|
1713
|
-
},
|
|
1715
|
+
}, ua = {
|
|
1714
1716
|
info: {
|
|
1715
1717
|
key: "python",
|
|
1716
1718
|
title: "Python",
|
|
@@ -1718,9 +1720,9 @@ var ke = (t, e, r) => {
|
|
|
1718
1720
|
cli: "python3 %s"
|
|
1719
1721
|
},
|
|
1720
1722
|
clientsById: {
|
|
1721
|
-
requests:
|
|
1723
|
+
requests: ca
|
|
1722
1724
|
}
|
|
1723
|
-
},
|
|
1725
|
+
}, pa = {
|
|
1724
1726
|
info: {
|
|
1725
1727
|
key: "httr",
|
|
1726
1728
|
title: "httr",
|
|
@@ -1759,16 +1761,16 @@ var ke = (t, e, r) => {
|
|
|
1759
1761
|
const j = [m, b, g, y].filter((w) => !!w).join(", ");
|
|
1760
1762
|
return j && (v += `, ${j}`), (o.text || o.jsonObj || o.params) && (v += ", encode = encode"), v += ")", n(v), s(), n('content(response, "text")'), l();
|
|
1761
1763
|
}
|
|
1762
|
-
},
|
|
1764
|
+
}, fa = {
|
|
1763
1765
|
info: {
|
|
1764
1766
|
key: "r",
|
|
1765
1767
|
title: "R",
|
|
1766
1768
|
default: "httr"
|
|
1767
1769
|
},
|
|
1768
1770
|
clientsById: {
|
|
1769
|
-
httr:
|
|
1771
|
+
httr: pa
|
|
1770
1772
|
}
|
|
1771
|
-
},
|
|
1773
|
+
}, da = {
|
|
1772
1774
|
info: {
|
|
1773
1775
|
key: "native",
|
|
1774
1776
|
title: "net::http",
|
|
@@ -1799,16 +1801,16 @@ var ke = (t, e, r) => {
|
|
|
1799
1801
|
a(`request["${p}"] = '${Je(i[p])}'`);
|
|
1800
1802
|
}), o.text && a(`request.body = ${JSON.stringify(o.text)}`), n(), a("response = http.request(request)"), a("puts response.read_body"), s();
|
|
1801
1803
|
}
|
|
1802
|
-
},
|
|
1804
|
+
}, ha = {
|
|
1803
1805
|
info: {
|
|
1804
1806
|
key: "ruby",
|
|
1805
1807
|
title: "Ruby",
|
|
1806
1808
|
default: "native"
|
|
1807
1809
|
},
|
|
1808
1810
|
clientsById: {
|
|
1809
|
-
native:
|
|
1811
|
+
native: da
|
|
1810
1812
|
}
|
|
1811
|
-
}, M = (t = "") => /^[a-z0-9-_/.@%^=:]+$/i.test(t) ? t : `'${t.replace(/'/g, "'\\''")}'`,
|
|
1813
|
+
}, M = (t = "") => /^[a-z0-9-_/.@%^=:]+$/i.test(t) ? t : `'${t.replace(/'/g, "'\\''")}'`, ya = (t) => t.replace(/\r/g, "\\r").replace(/\n/g, "\\n"), ma = {
|
|
1812
1814
|
"http1.0": "0",
|
|
1813
1815
|
"url ": "",
|
|
1814
1816
|
cookie: "b",
|
|
@@ -1818,13 +1820,13 @@ var ke = (t, e, r) => {
|
|
|
1818
1820
|
header: "H",
|
|
1819
1821
|
insecure: "k",
|
|
1820
1822
|
request: "X"
|
|
1821
|
-
},
|
|
1823
|
+
}, ga = (t) => (e) => {
|
|
1822
1824
|
if (t) {
|
|
1823
|
-
const r =
|
|
1825
|
+
const r = ma[e];
|
|
1824
1826
|
return r ? `-${r}` : "";
|
|
1825
1827
|
}
|
|
1826
1828
|
return `--${e}`;
|
|
1827
|
-
},
|
|
1829
|
+
}, ba = {
|
|
1828
1830
|
info: {
|
|
1829
1831
|
key: "curl",
|
|
1830
1832
|
title: "cURL",
|
|
@@ -1838,7 +1840,7 @@ var ke = (t, e, r) => {
|
|
|
1838
1840
|
...typeof s == "string" ? { indent: s } : {},
|
|
1839
1841
|
join: s !== !1 ? ` \\
|
|
1840
1842
|
${s}` : " "
|
|
1841
|
-
}), y =
|
|
1843
|
+
}), y = ga(l);
|
|
1842
1844
|
let g = M(t);
|
|
1843
1845
|
if (p(`curl ${y("request")} ${e}`), u && (g = unescape(g), p(y("globoff"))), p(`${y("url ")}${g}`), r === "HTTP/1.0" && p(y("http1.0")), ue(i, "accept-encoding") && p("--compressed"), a.mimeType === "multipart/form-data") {
|
|
1844
1846
|
const x = J(o, "content-type");
|
|
@@ -1870,7 +1872,7 @@ ${s}` : " "
|
|
|
1870
1872
|
if (!a.text)
|
|
1871
1873
|
break;
|
|
1872
1874
|
let x = !1;
|
|
1873
|
-
if (
|
|
1875
|
+
if (go(a.mimeType) && a.text.length > 20)
|
|
1874
1876
|
try {
|
|
1875
1877
|
const m = JSON.parse(a.text);
|
|
1876
1878
|
x = !0, a.text.indexOf("'") > 0 ? p(
|
|
@@ -1892,7 +1894,7 @@ ${JSON.stringify(m, null, f)}
|
|
|
1892
1894
|
}
|
|
1893
1895
|
return h();
|
|
1894
1896
|
}
|
|
1895
|
-
},
|
|
1897
|
+
}, va = {
|
|
1896
1898
|
info: {
|
|
1897
1899
|
key: "httpie",
|
|
1898
1900
|
title: "HTTPie",
|
|
@@ -1941,7 +1943,7 @@ ${s.indent}` : " "
|
|
|
1941
1943
|
}
|
|
1942
1944
|
return c();
|
|
1943
1945
|
}
|
|
1944
|
-
},
|
|
1946
|
+
}, xa = {
|
|
1945
1947
|
info: {
|
|
1946
1948
|
key: "wget",
|
|
1947
1949
|
title: "Wget",
|
|
@@ -1963,9 +1965,9 @@ ${a.indent}` : " "
|
|
|
1963
1965
|
return a.verbose ? n(`wget ${a.short ? "-v" : "--verbose"}`) : n(`wget ${a.short ? "-q" : "--quiet"}`), n(`--method ${M(t)}`), Object.keys(r).forEach((l) => {
|
|
1964
1966
|
const c = `${l}: ${r[l]}`;
|
|
1965
1967
|
n(`--header ${M(c)}`);
|
|
1966
|
-
}), e.text && n(`--body-data ${
|
|
1968
|
+
}), e.text && n(`--body-data ${ya(M(e.text))}`), n(a.short ? "-O" : "--output-document"), n(`- ${M(o)}`), s();
|
|
1967
1969
|
}
|
|
1968
|
-
},
|
|
1970
|
+
}, $a = {
|
|
1969
1971
|
info: {
|
|
1970
1972
|
key: "shell",
|
|
1971
1973
|
title: "Shell",
|
|
@@ -1973,9 +1975,9 @@ ${a.indent}` : " "
|
|
|
1973
1975
|
cli: "%s"
|
|
1974
1976
|
},
|
|
1975
1977
|
clientsById: {
|
|
1976
|
-
curl:
|
|
1977
|
-
httpie:
|
|
1978
|
-
wget:
|
|
1978
|
+
curl: ba,
|
|
1979
|
+
httpie: va,
|
|
1980
|
+
wget: xa
|
|
1979
1981
|
}
|
|
1980
1982
|
}, hr = (t, e) => e.repeat(t), yr = (t, e, r, o) => {
|
|
1981
1983
|
const i = hr(o, r), a = hr(o - 1, r), n = e ? `,
|
|
@@ -2010,7 +2012,7 @@ ${a}]` : `[${t.join(n)}]`;
|
|
|
2010
2012
|
default:
|
|
2011
2013
|
return t == null ? "nil" : `"${t.toString().replace(/"/g, '\\"')}"`;
|
|
2012
2014
|
}
|
|
2013
|
-
},
|
|
2015
|
+
}, wa = {
|
|
2014
2016
|
info: {
|
|
2015
2017
|
key: "urlsession",
|
|
2016
2018
|
title: "URLSession",
|
|
@@ -2061,35 +2063,35 @@ ${a}]` : `[${t.join(n)}]`;
|
|
|
2061
2063
|
}
|
|
2062
2064
|
}), s("]"), s("components.queryItems = components.queryItems.map { $0 + queryItems } ?? queryItems"), l(), s("var request = URLRequest(url: components.url!)")), s(`request.httpMethod = "${i}"`), s(`request.timeoutInterval = ${n.timeout}`), Object.keys(t).length && s(`request.allHTTPHeaderFields = ${ot(t, n)}`), u && s("request.httpBody = postData"), l(), s("let (data, _) = try await URLSession.shared.data(for: request)"), s("print(String(decoding: data, as: UTF8.self))"), c();
|
|
2063
2065
|
}
|
|
2064
|
-
},
|
|
2066
|
+
}, ja = {
|
|
2065
2067
|
info: {
|
|
2066
2068
|
key: "swift",
|
|
2067
2069
|
title: "Swift",
|
|
2068
2070
|
default: "urlsession"
|
|
2069
2071
|
},
|
|
2070
2072
|
clientsById: {
|
|
2071
|
-
urlsession:
|
|
2072
|
-
}
|
|
2073
|
-
},
|
|
2074
|
-
c:
|
|
2075
|
-
clojure:
|
|
2076
|
-
csharp:
|
|
2077
|
-
go:
|
|
2078
|
-
http:
|
|
2079
|
-
java:
|
|
2080
|
-
javascript:
|
|
2081
|
-
json:
|
|
2082
|
-
kotlin:
|
|
2083
|
-
node:
|
|
2084
|
-
objc:
|
|
2085
|
-
ocaml:
|
|
2086
|
-
php:
|
|
2087
|
-
powershell:
|
|
2088
|
-
python:
|
|
2089
|
-
r:
|
|
2090
|
-
ruby:
|
|
2091
|
-
shell:
|
|
2092
|
-
swift:
|
|
2073
|
+
urlsession: wa
|
|
2074
|
+
}
|
|
2075
|
+
}, Sa = {
|
|
2076
|
+
c: mo,
|
|
2077
|
+
clojure: xo,
|
|
2078
|
+
csharp: Oo,
|
|
2079
|
+
go: Co,
|
|
2080
|
+
http: ko,
|
|
2081
|
+
java: qo,
|
|
2082
|
+
javascript: _o,
|
|
2083
|
+
json: Bo,
|
|
2084
|
+
kotlin: zo,
|
|
2085
|
+
node: Ko,
|
|
2086
|
+
objc: Yo,
|
|
2087
|
+
ocaml: Zo,
|
|
2088
|
+
php: oa,
|
|
2089
|
+
powershell: sa,
|
|
2090
|
+
python: ua,
|
|
2091
|
+
r: fa,
|
|
2092
|
+
ruby: ha,
|
|
2093
|
+
shell: $a,
|
|
2094
|
+
swift: ja
|
|
2093
2095
|
}, at = { exports: {} };
|
|
2094
2096
|
/*! https://mths.be/punycode v1.4.1 by @mathias */
|
|
2095
2097
|
at.exports;
|
|
@@ -2211,7 +2213,7 @@ at.exports;
|
|
|
2211
2213
|
r.punycode = n;
|
|
2212
2214
|
})(He);
|
|
2213
2215
|
})(at, at.exports);
|
|
2214
|
-
var
|
|
2216
|
+
var Oa = at.exports, Ta = Error, Ca = EvalError, Pa = RangeError, ka = ReferenceError, nn = SyntaxError, Ve = TypeError, Ea = URIError, Na = function() {
|
|
2215
2217
|
if (typeof Symbol != "function" || typeof Object.getOwnPropertySymbols != "function")
|
|
2216
2218
|
return !1;
|
|
2217
2219
|
if (typeof Symbol.iterator == "symbol")
|
|
@@ -2234,32 +2236,32 @@ var Sa = at.exports, Oa = Error, Ta = EvalError, Ca = RangeError, Pa = Reference
|
|
|
2234
2236
|
return !1;
|
|
2235
2237
|
}
|
|
2236
2238
|
return !0;
|
|
2237
|
-
}, gr = typeof Symbol < "u" && Symbol,
|
|
2238
|
-
return typeof gr != "function" || typeof Symbol != "function" || typeof gr("foo") != "symbol" || typeof Symbol("bar") != "symbol" ? !1 :
|
|
2239
|
+
}, gr = typeof Symbol < "u" && Symbol, Ra = Na, Aa = function() {
|
|
2240
|
+
return typeof gr != "function" || typeof Symbol != "function" || typeof gr("foo") != "symbol" || typeof Symbol("bar") != "symbol" ? !1 : Ra();
|
|
2239
2241
|
}, yt = {
|
|
2240
2242
|
__proto__: null,
|
|
2241
2243
|
foo: {}
|
|
2242
|
-
},
|
|
2243
|
-
return { __proto__: yt }.foo === yt.foo && !(yt instanceof
|
|
2244
|
-
},
|
|
2244
|
+
}, qa = Object, Ia = function() {
|
|
2245
|
+
return { __proto__: yt }.foo === yt.foo && !(yt instanceof qa);
|
|
2246
|
+
}, La = "Function.prototype.bind called on incompatible ", Ua = Object.prototype.toString, Fa = Math.max, _a = "[object Function]", br = function(e, r) {
|
|
2245
2247
|
for (var o = [], i = 0; i < e.length; i += 1)
|
|
2246
2248
|
o[i] = e[i];
|
|
2247
2249
|
for (var a = 0; a < r.length; a += 1)
|
|
2248
2250
|
o[a + e.length] = r[a];
|
|
2249
2251
|
return o;
|
|
2250
|
-
},
|
|
2252
|
+
}, Ha = function(e, r) {
|
|
2251
2253
|
for (var o = [], i = r, a = 0; i < e.length; i += 1, a += 1)
|
|
2252
2254
|
o[a] = e[i];
|
|
2253
2255
|
return o;
|
|
2254
|
-
},
|
|
2256
|
+
}, Ba = function(t, e) {
|
|
2255
2257
|
for (var r = "", o = 0; o < t.length; o += 1)
|
|
2256
2258
|
r += t[o], o + 1 < t.length && (r += e);
|
|
2257
2259
|
return r;
|
|
2258
|
-
},
|
|
2260
|
+
}, Ma = function(e) {
|
|
2259
2261
|
var r = this;
|
|
2260
|
-
if (typeof r != "function" ||
|
|
2261
|
-
throw new TypeError(
|
|
2262
|
-
for (var o =
|
|
2262
|
+
if (typeof r != "function" || Ua.apply(r) !== _a)
|
|
2263
|
+
throw new TypeError(La + r);
|
|
2264
|
+
for (var o = Ha(arguments, 1), i, a = function() {
|
|
2263
2265
|
if (this instanceof i) {
|
|
2264
2266
|
var u = r.apply(
|
|
2265
2267
|
this,
|
|
@@ -2271,17 +2273,17 @@ var Sa = at.exports, Oa = Error, Ta = EvalError, Ca = RangeError, Pa = Reference
|
|
|
2271
2273
|
e,
|
|
2272
2274
|
br(o, arguments)
|
|
2273
2275
|
);
|
|
2274
|
-
}, n =
|
|
2276
|
+
}, n = Fa(0, r.length - o.length), s = [], l = 0; l < n; l++)
|
|
2275
2277
|
s[l] = "$" + l;
|
|
2276
|
-
if (i = Function("binder", "return function (" +
|
|
2278
|
+
if (i = Function("binder", "return function (" + Ba(s, ",") + "){ return binder.apply(this,arguments); }")(a), r.prototype) {
|
|
2277
2279
|
var c = function() {
|
|
2278
2280
|
};
|
|
2279
2281
|
c.prototype = r.prototype, i.prototype = new c(), c.prototype = null;
|
|
2280
2282
|
}
|
|
2281
2283
|
return i;
|
|
2282
|
-
},
|
|
2284
|
+
}, za = Ma, Jt = Function.prototype.bind || za, Wa = Function.prototype.call, Ja = Object.prototype.hasOwnProperty, Ga = Jt, Va = Ga.call(Wa, Ja), T, Qa = Ta, Ka = Ca, Da = Pa, Ya = ka, Ae = nn, Ee = Ve, Xa = Ea, on = Function, mt = function(t) {
|
|
2283
2285
|
try {
|
|
2284
|
-
return
|
|
2286
|
+
return on('"use strict"; return (' + t + ").constructor;")();
|
|
2285
2287
|
} catch {
|
|
2286
2288
|
}
|
|
2287
2289
|
}, Se = Object.getOwnPropertyDescriptor;
|
|
@@ -2293,7 +2295,7 @@ if (Se)
|
|
|
2293
2295
|
}
|
|
2294
2296
|
var gt = function() {
|
|
2295
2297
|
throw new Ee();
|
|
2296
|
-
},
|
|
2298
|
+
}, Za = Se ? function() {
|
|
2297
2299
|
try {
|
|
2298
2300
|
return arguments.callee, gt;
|
|
2299
2301
|
} catch {
|
|
@@ -2303,9 +2305,9 @@ var gt = function() {
|
|
|
2303
2305
|
return gt;
|
|
2304
2306
|
}
|
|
2305
2307
|
}
|
|
2306
|
-
}() : gt, Te =
|
|
2308
|
+
}() : gt, Te = Aa(), ei = Ia(), _ = Object.getPrototypeOf || (ei ? function(t) {
|
|
2307
2309
|
return t.__proto__;
|
|
2308
|
-
} : null), Pe = {},
|
|
2310
|
+
} : null), Pe = {}, ti = typeof Uint8Array > "u" || !_ ? T : _(Uint8Array), Oe = {
|
|
2309
2311
|
__proto__: null,
|
|
2310
2312
|
"%AggregateError%": typeof AggregateError > "u" ? T : AggregateError,
|
|
2311
2313
|
"%Array%": Array,
|
|
@@ -2327,14 +2329,14 @@ var gt = function() {
|
|
|
2327
2329
|
"%decodeURIComponent%": decodeURIComponent,
|
|
2328
2330
|
"%encodeURI%": encodeURI,
|
|
2329
2331
|
"%encodeURIComponent%": encodeURIComponent,
|
|
2330
|
-
"%Error%":
|
|
2332
|
+
"%Error%": Qa,
|
|
2331
2333
|
"%eval%": eval,
|
|
2332
2334
|
// eslint-disable-line no-eval
|
|
2333
|
-
"%EvalError%":
|
|
2335
|
+
"%EvalError%": Ka,
|
|
2334
2336
|
"%Float32Array%": typeof Float32Array > "u" ? T : Float32Array,
|
|
2335
2337
|
"%Float64Array%": typeof Float64Array > "u" ? T : Float64Array,
|
|
2336
2338
|
"%FinalizationRegistry%": typeof FinalizationRegistry > "u" ? T : FinalizationRegistry,
|
|
2337
|
-
"%Function%":
|
|
2339
|
+
"%Function%": on,
|
|
2338
2340
|
"%GeneratorFunction%": Pe,
|
|
2339
2341
|
"%Int8Array%": typeof Int8Array > "u" ? T : Int8Array,
|
|
2340
2342
|
"%Int16Array%": typeof Int16Array > "u" ? T : Int16Array,
|
|
@@ -2352,8 +2354,8 @@ var gt = function() {
|
|
|
2352
2354
|
"%parseInt%": parseInt,
|
|
2353
2355
|
"%Promise%": typeof Promise > "u" ? T : Promise,
|
|
2354
2356
|
"%Proxy%": typeof Proxy > "u" ? T : Proxy,
|
|
2355
|
-
"%RangeError%":
|
|
2356
|
-
"%ReferenceError%":
|
|
2357
|
+
"%RangeError%": Da,
|
|
2358
|
+
"%ReferenceError%": Ya,
|
|
2357
2359
|
"%Reflect%": typeof Reflect > "u" ? T : Reflect,
|
|
2358
2360
|
"%RegExp%": RegExp,
|
|
2359
2361
|
"%Set%": typeof Set > "u" ? T : Set,
|
|
@@ -2363,14 +2365,14 @@ var gt = function() {
|
|
|
2363
2365
|
"%StringIteratorPrototype%": Te && _ ? _(""[Symbol.iterator]()) : T,
|
|
2364
2366
|
"%Symbol%": Te ? Symbol : T,
|
|
2365
2367
|
"%SyntaxError%": Ae,
|
|
2366
|
-
"%ThrowTypeError%":
|
|
2367
|
-
"%TypedArray%":
|
|
2368
|
+
"%ThrowTypeError%": Za,
|
|
2369
|
+
"%TypedArray%": ti,
|
|
2368
2370
|
"%TypeError%": Ee,
|
|
2369
2371
|
"%Uint8Array%": typeof Uint8Array > "u" ? T : Uint8Array,
|
|
2370
2372
|
"%Uint8ClampedArray%": typeof Uint8ClampedArray > "u" ? T : Uint8ClampedArray,
|
|
2371
2373
|
"%Uint16Array%": typeof Uint16Array > "u" ? T : Uint16Array,
|
|
2372
2374
|
"%Uint32Array%": typeof Uint32Array > "u" ? T : Uint32Array,
|
|
2373
|
-
"%URIError%":
|
|
2375
|
+
"%URIError%": Xa,
|
|
2374
2376
|
"%WeakMap%": typeof WeakMap > "u" ? T : WeakMap,
|
|
2375
2377
|
"%WeakRef%": typeof WeakRef > "u" ? T : WeakRef,
|
|
2376
2378
|
"%WeakSet%": typeof WeakSet > "u" ? T : WeakSet
|
|
@@ -2379,10 +2381,10 @@ if (_)
|
|
|
2379
2381
|
try {
|
|
2380
2382
|
null.error;
|
|
2381
2383
|
} catch (t) {
|
|
2382
|
-
var
|
|
2383
|
-
Oe["%Error.prototype%"] =
|
|
2384
|
+
var ri = _(_(t));
|
|
2385
|
+
Oe["%Error.prototype%"] = ri;
|
|
2384
2386
|
}
|
|
2385
|
-
var
|
|
2387
|
+
var ni = function t(e) {
|
|
2386
2388
|
var r;
|
|
2387
2389
|
if (e === "%AsyncFunction%")
|
|
2388
2390
|
r = mt("async function () {}");
|
|
@@ -2451,21 +2453,21 @@ var ri = function t(e) {
|
|
|
2451
2453
|
"%URIErrorPrototype%": ["URIError", "prototype"],
|
|
2452
2454
|
"%WeakMapPrototype%": ["WeakMap", "prototype"],
|
|
2453
2455
|
"%WeakSetPrototype%": ["WeakSet", "prototype"]
|
|
2454
|
-
}, Qe = Jt, it =
|
|
2456
|
+
}, Qe = Jt, it = Va, oi = Qe.call(Function.call, Array.prototype.concat), ai = Qe.call(Function.apply, Array.prototype.splice), xr = Qe.call(Function.call, String.prototype.replace), st = Qe.call(Function.call, String.prototype.slice), ii = Qe.call(Function.call, RegExp.prototype.exec), si = /[^%.[\]]+|\[(?:(-?\d+(?:\.\d+)?)|(["'])((?:(?!\2)[^\\]|\\.)*?)\2)\]|(?=(?:\.|\[\])(?:\.|\[\]|%$))/g, li = /\\(\\)?/g, ci = function(e) {
|
|
2455
2457
|
var r = st(e, 0, 1), o = st(e, -1);
|
|
2456
2458
|
if (r === "%" && o !== "%")
|
|
2457
2459
|
throw new Ae("invalid intrinsic syntax, expected closing `%`");
|
|
2458
2460
|
if (o === "%" && r !== "%")
|
|
2459
2461
|
throw new Ae("invalid intrinsic syntax, expected opening `%`");
|
|
2460
2462
|
var i = [];
|
|
2461
|
-
return xr(e,
|
|
2462
|
-
i[i.length] = s ? xr(l,
|
|
2463
|
+
return xr(e, si, function(a, n, s, l) {
|
|
2464
|
+
i[i.length] = s ? xr(l, li, "$1") : n || a;
|
|
2463
2465
|
}), i;
|
|
2464
|
-
},
|
|
2466
|
+
}, ui = function(e, r) {
|
|
2465
2467
|
var o = e, i;
|
|
2466
2468
|
if (it(vr, o) && (i = vr[o], o = "%" + i[0] + "%"), it(Oe, o)) {
|
|
2467
2469
|
var a = Oe[o];
|
|
2468
|
-
if (a === Pe && (a =
|
|
2470
|
+
if (a === Pe && (a = ni(o)), typeof a > "u" && !r)
|
|
2469
2471
|
throw new Ee("intrinsic " + e + " exists, but is not available. Please file an issue!");
|
|
2470
2472
|
return {
|
|
2471
2473
|
alias: i,
|
|
@@ -2479,10 +2481,10 @@ var ri = function t(e) {
|
|
|
2479
2481
|
throw new Ee("intrinsic name must be a non-empty string");
|
|
2480
2482
|
if (arguments.length > 1 && typeof r != "boolean")
|
|
2481
2483
|
throw new Ee('"allowMissing" argument must be a boolean');
|
|
2482
|
-
if (
|
|
2484
|
+
if (ii(/^%?[^%]*%?$/, e) === null)
|
|
2483
2485
|
throw new Ae("`%` may not be present anywhere but at the beginning and end of the intrinsic name");
|
|
2484
|
-
var o =
|
|
2485
|
-
c && (i = c[0],
|
|
2486
|
+
var o = ci(e), i = o.length > 0 ? o[0] : "", a = ui("%" + i + "%", r), n = a.name, s = a.value, l = !1, c = a.alias;
|
|
2487
|
+
c && (i = c[0], ai(o, oi([0, 1], c)));
|
|
2486
2488
|
for (var u = 1, f = !0; u < o.length; u += 1) {
|
|
2487
2489
|
var p = o[u], h = st(p, 0, 1), y = st(p, -1);
|
|
2488
2490
|
if ((h === '"' || h === "'" || h === "`" || y === '"' || y === "'" || y === "`") && h !== y)
|
|
@@ -2504,7 +2506,7 @@ var ri = function t(e) {
|
|
|
2504
2506
|
}
|
|
2505
2507
|
}
|
|
2506
2508
|
return s;
|
|
2507
|
-
},
|
|
2509
|
+
}, an = { exports: {} }, bt, $r;
|
|
2508
2510
|
function Gt() {
|
|
2509
2511
|
if ($r) return bt;
|
|
2510
2512
|
$r = 1;
|
|
@@ -2517,14 +2519,14 @@ function Gt() {
|
|
|
2517
2519
|
}
|
|
2518
2520
|
return bt = e, bt;
|
|
2519
2521
|
}
|
|
2520
|
-
var
|
|
2522
|
+
var pi = Le, tt = pi("%Object.getOwnPropertyDescriptor%", !0);
|
|
2521
2523
|
if (tt)
|
|
2522
2524
|
try {
|
|
2523
2525
|
tt([], "length");
|
|
2524
2526
|
} catch {
|
|
2525
2527
|
tt = null;
|
|
2526
2528
|
}
|
|
2527
|
-
var
|
|
2529
|
+
var sn = tt, wr = Gt(), fi = nn, Ce = Ve, jr = sn, di = function(e, r, o) {
|
|
2528
2530
|
if (!e || typeof e != "object" && typeof e != "function")
|
|
2529
2531
|
throw new Ce("`obj` must be an object or a function`");
|
|
2530
2532
|
if (typeof r != "string" && typeof r != "symbol")
|
|
@@ -2548,11 +2550,11 @@ var an = tt, wr = Gt(), pi = rn, Ce = Ve, jr = an, fi = function(e, r, o) {
|
|
|
2548
2550
|
else if (s || !i && !a && !n)
|
|
2549
2551
|
e[r] = o;
|
|
2550
2552
|
else
|
|
2551
|
-
throw new
|
|
2552
|
-
}, kt = Gt(),
|
|
2553
|
+
throw new fi("This environment does not support defining a property as non-configurable, non-writable, or non-enumerable.");
|
|
2554
|
+
}, kt = Gt(), ln = function() {
|
|
2553
2555
|
return !!kt;
|
|
2554
2556
|
};
|
|
2555
|
-
|
|
2557
|
+
ln.hasArrayLengthDefineBug = function() {
|
|
2556
2558
|
if (!kt)
|
|
2557
2559
|
return null;
|
|
2558
2560
|
try {
|
|
@@ -2561,17 +2563,17 @@ sn.hasArrayLengthDefineBug = function() {
|
|
|
2561
2563
|
return !0;
|
|
2562
2564
|
}
|
|
2563
2565
|
};
|
|
2564
|
-
var
|
|
2566
|
+
var hi = ln, yi = Le, Sr = di, mi = hi(), Or = sn, Tr = Ve, gi = yi("%Math.floor%"), bi = function(e, r) {
|
|
2565
2567
|
if (typeof e != "function")
|
|
2566
2568
|
throw new Tr("`fn` is not a function");
|
|
2567
|
-
if (typeof r != "number" || r < 0 || r > 4294967295 ||
|
|
2569
|
+
if (typeof r != "number" || r < 0 || r > 4294967295 || gi(r) !== r)
|
|
2568
2570
|
throw new Tr("`length` must be a positive 32-bit integer");
|
|
2569
2571
|
var o = arguments.length > 2 && !!arguments[2], i = !0, a = !0;
|
|
2570
2572
|
if ("length" in e && Or) {
|
|
2571
2573
|
var n = Or(e, "length");
|
|
2572
2574
|
n && !n.configurable && (i = !1), n && !n.writable && (a = !1);
|
|
2573
2575
|
}
|
|
2574
|
-
return (i || a || !o) && (
|
|
2576
|
+
return (i || a || !o) && (mi ? Sr(
|
|
2575
2577
|
/** @type {Parameters<define>[0]} */
|
|
2576
2578
|
e,
|
|
2577
2579
|
"length",
|
|
@@ -2586,7 +2588,7 @@ var di = sn, hi = Le, Sr = fi, yi = di(), Or = an, Tr = Ve, mi = hi("%Math.floor
|
|
|
2586
2588
|
)), e;
|
|
2587
2589
|
};
|
|
2588
2590
|
(function(t) {
|
|
2589
|
-
var e = Jt, r = Le, o =
|
|
2591
|
+
var e = Jt, r = Le, o = bi, i = Ve, a = r("%Function.prototype.apply%"), n = r("%Function.prototype.call%"), s = r("%Reflect.apply%", !0) || e.call(n, a), l = Gt(), c = r("%Math.max%");
|
|
2590
2592
|
t.exports = function(p) {
|
|
2591
2593
|
if (typeof p != "function")
|
|
2592
2594
|
throw new i("a function is required");
|
|
@@ -2601,17 +2603,17 @@ var di = sn, hi = Le, Sr = fi, yi = di(), Or = an, Tr = Ve, mi = hi("%Math.floor
|
|
|
2601
2603
|
return s(e, a, arguments);
|
|
2602
2604
|
};
|
|
2603
2605
|
l ? l(t.exports, "apply", { value: u }) : t.exports.apply = u;
|
|
2604
|
-
})(
|
|
2605
|
-
var
|
|
2606
|
-
var o =
|
|
2607
|
-
return typeof o == "function" &&
|
|
2606
|
+
})(an);
|
|
2607
|
+
var vi = an.exports, cn = Le, un = vi, xi = un(cn("String.prototype.indexOf")), $i = function(e, r) {
|
|
2608
|
+
var o = cn(e, !!r);
|
|
2609
|
+
return typeof o == "function" && xi(e, ".prototype.") > -1 ? un(o) : o;
|
|
2608
2610
|
};
|
|
2609
|
-
const
|
|
2610
|
-
var Vt = typeof Map == "function" && Map.prototype, vt = Object.getOwnPropertyDescriptor && Vt ? Object.getOwnPropertyDescriptor(Map.prototype, "size") : null, lt = Vt && vt && typeof vt.get == "function" ? vt.get : null, Cr = Vt && Map.prototype.forEach, Qt = typeof Set == "function" && Set.prototype, xt = Object.getOwnPropertyDescriptor && Qt ? Object.getOwnPropertyDescriptor(Set.prototype, "size") : null, ct = Qt && xt && typeof xt.get == "function" ? xt.get : null, Pr = Qt && Set.prototype.forEach,
|
|
2611
|
+
const wi = /* @__PURE__ */ Xn(Zn);
|
|
2612
|
+
var Vt = typeof Map == "function" && Map.prototype, vt = Object.getOwnPropertyDescriptor && Vt ? Object.getOwnPropertyDescriptor(Map.prototype, "size") : null, lt = Vt && vt && typeof vt.get == "function" ? vt.get : null, Cr = Vt && Map.prototype.forEach, Qt = typeof Set == "function" && Set.prototype, xt = Object.getOwnPropertyDescriptor && Qt ? Object.getOwnPropertyDescriptor(Set.prototype, "size") : null, ct = Qt && xt && typeof xt.get == "function" ? xt.get : null, Pr = Qt && Set.prototype.forEach, ji = typeof WeakMap == "function" && WeakMap.prototype, Be = ji ? WeakMap.prototype.has : null, Si = typeof WeakSet == "function" && WeakSet.prototype, Me = Si ? WeakSet.prototype.has : null, Oi = typeof WeakRef == "function" && WeakRef.prototype, kr = Oi ? WeakRef.prototype.deref : null, Ti = Boolean.prototype.valueOf, Ci = Object.prototype.toString, Pi = Function.prototype.toString, ki = String.prototype.match, Kt = String.prototype.slice, ge = String.prototype.replace, Ei = String.prototype.toUpperCase, Er = String.prototype.toLowerCase, pn = RegExp.prototype.test, Nr = Array.prototype.concat, ce = Array.prototype.join, Ni = Array.prototype.slice, Rr = Math.floor, Et = typeof BigInt == "function" ? BigInt.prototype.valueOf : null, $t = Object.getOwnPropertySymbols, Nt = typeof Symbol == "function" && typeof Symbol.iterator == "symbol" ? Symbol.prototype.toString : null, qe = typeof Symbol == "function" && typeof Symbol.iterator == "object", G = typeof Symbol == "function" && Symbol.toStringTag && (typeof Symbol.toStringTag === qe || !0) ? Symbol.toStringTag : null, fn = Object.prototype.propertyIsEnumerable, Ar = (typeof Reflect == "function" ? Reflect.getPrototypeOf : Object.getPrototypeOf) || ([].__proto__ === Array.prototype ? function(t) {
|
|
2611
2613
|
return t.__proto__;
|
|
2612
2614
|
} : null);
|
|
2613
2615
|
function qr(t, e) {
|
|
2614
|
-
if (t === 1 / 0 || t === -1 / 0 || t !== t || t && t > -1e3 && t < 1e3 ||
|
|
2616
|
+
if (t === 1 / 0 || t === -1 / 0 || t !== t || t && t > -1e3 && t < 1e3 || pn.call(/e/, e))
|
|
2615
2617
|
return e;
|
|
2616
2618
|
var r = /[0-9](?=(?:[0-9]{3})+(?![0-9]))/g;
|
|
2617
2619
|
if (typeof t == "number") {
|
|
@@ -2623,7 +2625,7 @@ function qr(t, e) {
|
|
|
2623
2625
|
}
|
|
2624
2626
|
return ge.call(e, r, "$&_");
|
|
2625
2627
|
}
|
|
2626
|
-
var Rt =
|
|
2628
|
+
var Rt = wi, Ir = Rt.custom, Lr = hn(Ir) ? Ir : null, Ri = function t(e, r, o, i) {
|
|
2627
2629
|
var a = r || {};
|
|
2628
2630
|
if (me(a, "quoteStyle") && a.quoteStyle !== "single" && a.quoteStyle !== "double")
|
|
2629
2631
|
throw new TypeError('option "quoteStyle" must be "single" or "double"');
|
|
@@ -2644,7 +2646,7 @@ var Rt = $i, Ir = Rt.custom, Lr = dn(Ir) ? Ir : null, Ni = function t(e, r, o, i
|
|
|
2644
2646
|
if (typeof e == "boolean")
|
|
2645
2647
|
return e ? "true" : "false";
|
|
2646
2648
|
if (typeof e == "string")
|
|
2647
|
-
return
|
|
2649
|
+
return mn(e, a);
|
|
2648
2650
|
if (typeof e == "number") {
|
|
2649
2651
|
if (e === 0)
|
|
2650
2652
|
return 1 / 0 / e > 0 ? "0" : "-0";
|
|
@@ -2658,13 +2660,13 @@ var Rt = $i, Ir = Rt.custom, Lr = dn(Ir) ? Ir : null, Ni = function t(e, r, o, i
|
|
|
2658
2660
|
var u = typeof a.depth > "u" ? 5 : a.depth;
|
|
2659
2661
|
if (typeof o > "u" && (o = 0), o >= u && u > 0 && typeof e == "object")
|
|
2660
2662
|
return At(e) ? "[Array]" : "[Object]";
|
|
2661
|
-
var f =
|
|
2663
|
+
var f = Di(a, o);
|
|
2662
2664
|
if (typeof i > "u")
|
|
2663
2665
|
i = [];
|
|
2664
|
-
else if (
|
|
2666
|
+
else if (yn(i, e) >= 0)
|
|
2665
2667
|
return "[Circular]";
|
|
2666
2668
|
function p(L, V, Q) {
|
|
2667
|
-
if (V && (i =
|
|
2669
|
+
if (V && (i = Ni.call(i), i.push(V)), Q) {
|
|
2668
2670
|
var Y = {
|
|
2669
2671
|
depth: a.depth
|
|
2670
2672
|
};
|
|
@@ -2673,27 +2675,27 @@ var Rt = $i, Ir = Rt.custom, Lr = dn(Ir) ? Ir : null, Ni = function t(e, r, o, i
|
|
|
2673
2675
|
return t(L, a, o + 1, i);
|
|
2674
2676
|
}
|
|
2675
2677
|
if (typeof e == "function" && !Ur(e)) {
|
|
2676
|
-
var h =
|
|
2678
|
+
var h = Bi(e), y = Ye(e, p);
|
|
2677
2679
|
return "[Function" + (h ? ": " + h : " (anonymous)") + "]" + (y.length > 0 ? " { " + ce.call(y, ", ") + " }" : "");
|
|
2678
2680
|
}
|
|
2679
|
-
if (
|
|
2681
|
+
if (hn(e)) {
|
|
2680
2682
|
var g = qe ? ge.call(String(e), /^(Symbol\(.*\))_[^)]*$/, "$1") : Nt.call(e);
|
|
2681
2683
|
return typeof e == "object" && !qe ? Fe(g) : g;
|
|
2682
2684
|
}
|
|
2683
|
-
if (
|
|
2685
|
+
if (Vi(e)) {
|
|
2684
2686
|
for (var b = "<" + Er.call(String(e.nodeName)), x = e.attributes || [], m = 0; m < x.length; m++)
|
|
2685
|
-
b += " " + x[m].name + "=" +
|
|
2687
|
+
b += " " + x[m].name + "=" + dn(Ai(x[m].value), "double", a);
|
|
2686
2688
|
return b += ">", e.childNodes && e.childNodes.length && (b += "..."), b += "</" + Er.call(String(e.nodeName)) + ">", b;
|
|
2687
2689
|
}
|
|
2688
2690
|
if (At(e)) {
|
|
2689
2691
|
if (e.length === 0)
|
|
2690
2692
|
return "[]";
|
|
2691
2693
|
var v = Ye(e, p);
|
|
2692
|
-
return f && !
|
|
2694
|
+
return f && !Ki(v) ? "[" + qt(v, f) + "]" : "[ " + ce.call(v, ", ") + " ]";
|
|
2693
2695
|
}
|
|
2694
|
-
if (
|
|
2696
|
+
if (Ii(e)) {
|
|
2695
2697
|
var j = Ye(e, p);
|
|
2696
|
-
return !("cause" in Error.prototype) && "cause" in e && !
|
|
2698
|
+
return !("cause" in Error.prototype) && "cause" in e && !fn.call(e, "cause") ? "{ [" + String(e) + "] " + ce.call(Nr.call("[cause]: " + p(e.cause), j), ", ") + " }" : j.length === 0 ? "[" + String(e) + "]" : "{ [" + String(e) + "] " + ce.call(j, ", ") + " }";
|
|
2697
2699
|
}
|
|
2698
2700
|
if (typeof e == "object" && n) {
|
|
2699
2701
|
if (Lr && typeof e[Lr] == "function" && Rt)
|
|
@@ -2701,71 +2703,71 @@ var Rt = $i, Ir = Rt.custom, Lr = dn(Ir) ? Ir : null, Ni = function t(e, r, o, i
|
|
|
2701
2703
|
if (n !== "symbol" && typeof e.inspect == "function")
|
|
2702
2704
|
return e.inspect();
|
|
2703
2705
|
}
|
|
2704
|
-
if (
|
|
2706
|
+
if (Mi(e)) {
|
|
2705
2707
|
var w = [];
|
|
2706
2708
|
return Cr && Cr.call(e, function(L, V) {
|
|
2707
2709
|
w.push(p(V, e, !0) + " => " + p(L, e));
|
|
2708
2710
|
}), Fr("Map", lt.call(e), w, f);
|
|
2709
2711
|
}
|
|
2710
|
-
if (
|
|
2712
|
+
if (Ji(e)) {
|
|
2711
2713
|
var S = [];
|
|
2712
2714
|
return Pr && Pr.call(e, function(L) {
|
|
2713
2715
|
S.push(p(L, e));
|
|
2714
2716
|
}), Fr("Set", ct.call(e), S, f);
|
|
2715
2717
|
}
|
|
2716
|
-
if (
|
|
2718
|
+
if (zi(e))
|
|
2717
2719
|
return wt("WeakMap");
|
|
2718
|
-
if (
|
|
2720
|
+
if (Gi(e))
|
|
2719
2721
|
return wt("WeakSet");
|
|
2720
|
-
if (
|
|
2722
|
+
if (Wi(e))
|
|
2721
2723
|
return wt("WeakRef");
|
|
2722
|
-
if (
|
|
2724
|
+
if (Ui(e))
|
|
2723
2725
|
return Fe(p(Number(e)));
|
|
2724
|
-
if (
|
|
2726
|
+
if (_i(e))
|
|
2725
2727
|
return Fe(p(Et.call(e)));
|
|
2726
|
-
if (
|
|
2727
|
-
return Fe(
|
|
2728
|
-
if (
|
|
2728
|
+
if (Fi(e))
|
|
2729
|
+
return Fe(Ti.call(e));
|
|
2730
|
+
if (Li(e))
|
|
2729
2731
|
return Fe(p(String(e)));
|
|
2730
2732
|
if (typeof window < "u" && e === window)
|
|
2731
2733
|
return "{ [object Window] }";
|
|
2732
2734
|
if (typeof globalThis < "u" && e === globalThis || typeof He < "u" && e === He)
|
|
2733
2735
|
return "{ [object globalThis] }";
|
|
2734
|
-
if (!
|
|
2736
|
+
if (!qi(e) && !Ur(e)) {
|
|
2735
2737
|
var k = Ye(e, p), E = Ar ? Ar(e) === Object.prototype : e instanceof Object || e.constructor === Object, R = e instanceof Object ? "" : "null prototype", F = !E && G && Object(e) === e && G in e ? Kt.call(xe(e), 8, -1) : R ? "Object" : "", te = E || typeof e.constructor != "function" ? "" : e.constructor.name ? e.constructor.name + " " : "", re = te + (F || R ? "[" + ce.call(Nr.call([], F || [], R || []), ": ") + "] " : "");
|
|
2736
2738
|
return k.length === 0 ? re + "{}" : f ? re + "{" + qt(k, f) + "}" : re + "{ " + ce.call(k, ", ") + " }";
|
|
2737
2739
|
}
|
|
2738
2740
|
return String(e);
|
|
2739
2741
|
};
|
|
2740
|
-
function
|
|
2742
|
+
function dn(t, e, r) {
|
|
2741
2743
|
var o = (r.quoteStyle || e) === "double" ? '"' : "'";
|
|
2742
2744
|
return o + t + o;
|
|
2743
2745
|
}
|
|
2744
|
-
function
|
|
2746
|
+
function Ai(t) {
|
|
2745
2747
|
return ge.call(String(t), /"/g, """);
|
|
2746
2748
|
}
|
|
2747
2749
|
function At(t) {
|
|
2748
2750
|
return xe(t) === "[object Array]" && (!G || !(typeof t == "object" && G in t));
|
|
2749
2751
|
}
|
|
2750
|
-
function
|
|
2752
|
+
function qi(t) {
|
|
2751
2753
|
return xe(t) === "[object Date]" && (!G || !(typeof t == "object" && G in t));
|
|
2752
2754
|
}
|
|
2753
2755
|
function Ur(t) {
|
|
2754
2756
|
return xe(t) === "[object RegExp]" && (!G || !(typeof t == "object" && G in t));
|
|
2755
2757
|
}
|
|
2756
|
-
function
|
|
2758
|
+
function Ii(t) {
|
|
2757
2759
|
return xe(t) === "[object Error]" && (!G || !(typeof t == "object" && G in t));
|
|
2758
2760
|
}
|
|
2759
|
-
function
|
|
2761
|
+
function Li(t) {
|
|
2760
2762
|
return xe(t) === "[object String]" && (!G || !(typeof t == "object" && G in t));
|
|
2761
2763
|
}
|
|
2762
|
-
function
|
|
2764
|
+
function Ui(t) {
|
|
2763
2765
|
return xe(t) === "[object Number]" && (!G || !(typeof t == "object" && G in t));
|
|
2764
2766
|
}
|
|
2765
|
-
function
|
|
2767
|
+
function Fi(t) {
|
|
2766
2768
|
return xe(t) === "[object Boolean]" && (!G || !(typeof t == "object" && G in t));
|
|
2767
2769
|
}
|
|
2768
|
-
function
|
|
2770
|
+
function hn(t) {
|
|
2769
2771
|
if (qe)
|
|
2770
2772
|
return t && typeof t == "object" && t instanceof Symbol;
|
|
2771
2773
|
if (typeof t == "symbol")
|
|
@@ -2778,7 +2780,7 @@ function dn(t) {
|
|
|
2778
2780
|
}
|
|
2779
2781
|
return !1;
|
|
2780
2782
|
}
|
|
2781
|
-
function
|
|
2783
|
+
function _i(t) {
|
|
2782
2784
|
if (!t || typeof t != "object" || !Et)
|
|
2783
2785
|
return !1;
|
|
2784
2786
|
try {
|
|
@@ -2787,22 +2789,22 @@ function Fi(t) {
|
|
|
2787
2789
|
}
|
|
2788
2790
|
return !1;
|
|
2789
2791
|
}
|
|
2790
|
-
var
|
|
2792
|
+
var Hi = Object.prototype.hasOwnProperty || function(t) {
|
|
2791
2793
|
return t in this;
|
|
2792
2794
|
};
|
|
2793
2795
|
function me(t, e) {
|
|
2794
|
-
return
|
|
2796
|
+
return Hi.call(t, e);
|
|
2795
2797
|
}
|
|
2796
2798
|
function xe(t) {
|
|
2797
|
-
return
|
|
2799
|
+
return Ci.call(t);
|
|
2798
2800
|
}
|
|
2799
|
-
function
|
|
2801
|
+
function Bi(t) {
|
|
2800
2802
|
if (t.name)
|
|
2801
2803
|
return t.name;
|
|
2802
|
-
var e =
|
|
2804
|
+
var e = ki.call(Pi.call(t), /^function\s*([\w$]+)/);
|
|
2803
2805
|
return e ? e[1] : null;
|
|
2804
2806
|
}
|
|
2805
|
-
function
|
|
2807
|
+
function yn(t, e) {
|
|
2806
2808
|
if (t.indexOf)
|
|
2807
2809
|
return t.indexOf(e);
|
|
2808
2810
|
for (var r = 0, o = t.length; r < o; r++)
|
|
@@ -2810,7 +2812,7 @@ function hn(t, e) {
|
|
|
2810
2812
|
return r;
|
|
2811
2813
|
return -1;
|
|
2812
2814
|
}
|
|
2813
|
-
function
|
|
2815
|
+
function Mi(t) {
|
|
2814
2816
|
if (!lt || !t || typeof t != "object")
|
|
2815
2817
|
return !1;
|
|
2816
2818
|
try {
|
|
@@ -2825,7 +2827,7 @@ function Bi(t) {
|
|
|
2825
2827
|
}
|
|
2826
2828
|
return !1;
|
|
2827
2829
|
}
|
|
2828
|
-
function
|
|
2830
|
+
function zi(t) {
|
|
2829
2831
|
if (!Be || !t || typeof t != "object")
|
|
2830
2832
|
return !1;
|
|
2831
2833
|
try {
|
|
@@ -2840,7 +2842,7 @@ function Mi(t) {
|
|
|
2840
2842
|
}
|
|
2841
2843
|
return !1;
|
|
2842
2844
|
}
|
|
2843
|
-
function
|
|
2845
|
+
function Wi(t) {
|
|
2844
2846
|
if (!kr || !t || typeof t != "object")
|
|
2845
2847
|
return !1;
|
|
2846
2848
|
try {
|
|
@@ -2849,7 +2851,7 @@ function zi(t) {
|
|
|
2849
2851
|
}
|
|
2850
2852
|
return !1;
|
|
2851
2853
|
}
|
|
2852
|
-
function
|
|
2854
|
+
function Ji(t) {
|
|
2853
2855
|
if (!ct || !t || typeof t != "object")
|
|
2854
2856
|
return !1;
|
|
2855
2857
|
try {
|
|
@@ -2864,7 +2866,7 @@ function Wi(t) {
|
|
|
2864
2866
|
}
|
|
2865
2867
|
return !1;
|
|
2866
2868
|
}
|
|
2867
|
-
function
|
|
2869
|
+
function Gi(t) {
|
|
2868
2870
|
if (!Me || !t || typeof t != "object")
|
|
2869
2871
|
return !1;
|
|
2870
2872
|
try {
|
|
@@ -2879,18 +2881,18 @@ function Ji(t) {
|
|
|
2879
2881
|
}
|
|
2880
2882
|
return !1;
|
|
2881
2883
|
}
|
|
2882
|
-
function
|
|
2884
|
+
function Vi(t) {
|
|
2883
2885
|
return !t || typeof t != "object" ? !1 : typeof HTMLElement < "u" && t instanceof HTMLElement ? !0 : typeof t.nodeName == "string" && typeof t.getAttribute == "function";
|
|
2884
2886
|
}
|
|
2885
|
-
function
|
|
2887
|
+
function mn(t, e) {
|
|
2886
2888
|
if (t.length > e.maxStringLength) {
|
|
2887
2889
|
var r = t.length - e.maxStringLength, o = "... " + r + " more character" + (r > 1 ? "s" : "");
|
|
2888
|
-
return
|
|
2890
|
+
return mn(Kt.call(t, 0, e.maxStringLength), e) + o;
|
|
2889
2891
|
}
|
|
2890
|
-
var i = ge.call(ge.call(t, /(['\\])/g, "\\$1"), /[\x00-\x1f]/g,
|
|
2891
|
-
return
|
|
2892
|
+
var i = ge.call(ge.call(t, /(['\\])/g, "\\$1"), /[\x00-\x1f]/g, Qi);
|
|
2893
|
+
return dn(i, "single", e);
|
|
2892
2894
|
}
|
|
2893
|
-
function
|
|
2895
|
+
function Qi(t) {
|
|
2894
2896
|
var e = t.charCodeAt(0), r = {
|
|
2895
2897
|
8: "b",
|
|
2896
2898
|
9: "t",
|
|
@@ -2898,7 +2900,7 @@ function Vi(t) {
|
|
|
2898
2900
|
12: "f",
|
|
2899
2901
|
13: "r"
|
|
2900
2902
|
}[e];
|
|
2901
|
-
return r ? "\\" + r : "\\x" + (e < 16 ? "0" : "") +
|
|
2903
|
+
return r ? "\\" + r : "\\x" + (e < 16 ? "0" : "") + Ei.call(e.toString(16));
|
|
2902
2904
|
}
|
|
2903
2905
|
function Fe(t) {
|
|
2904
2906
|
return "Object(" + t + ")";
|
|
@@ -2910,14 +2912,14 @@ function Fr(t, e, r, o) {
|
|
|
2910
2912
|
var i = o ? qt(r, o) : ce.call(r, ", ");
|
|
2911
2913
|
return t + " (" + e + ") {" + i + "}";
|
|
2912
2914
|
}
|
|
2913
|
-
function
|
|
2915
|
+
function Ki(t) {
|
|
2914
2916
|
for (var e = 0; e < t.length; e++)
|
|
2915
|
-
if (
|
|
2917
|
+
if (yn(t[e], `
|
|
2916
2918
|
`) >= 0)
|
|
2917
2919
|
return !1;
|
|
2918
2920
|
return !0;
|
|
2919
2921
|
}
|
|
2920
|
-
function
|
|
2922
|
+
function Di(t, e) {
|
|
2921
2923
|
var r;
|
|
2922
2924
|
if (t.indent === " ")
|
|
2923
2925
|
r = " ";
|
|
@@ -2952,21 +2954,21 @@ function Ye(t, e) {
|
|
|
2952
2954
|
n["$" + a[s]] = a[s];
|
|
2953
2955
|
}
|
|
2954
2956
|
for (var l in t)
|
|
2955
|
-
me(t, l) && (r && String(Number(l)) === l && l < t.length || qe && n["$" + l] instanceof Symbol || (
|
|
2957
|
+
me(t, l) && (r && String(Number(l)) === l && l < t.length || qe && n["$" + l] instanceof Symbol || (pn.call(/[^\w$]/, l) ? o.push(e(l, t) + ": " + e(t[l], t)) : o.push(l + ": " + e(t[l], t))));
|
|
2956
2958
|
if (typeof $t == "function")
|
|
2957
2959
|
for (var c = 0; c < a.length; c++)
|
|
2958
|
-
|
|
2960
|
+
fn.call(t, a[c]) && o.push("[" + e(a[c]) + "]: " + e(t[a[c]], t));
|
|
2959
2961
|
return o;
|
|
2960
2962
|
}
|
|
2961
|
-
var
|
|
2963
|
+
var gn = Le, Ue = $i, Yi = Ri, Xi = Ve, Xe = gn("%WeakMap%", !0), Ze = gn("%Map%", !0), Zi = Ue("WeakMap.prototype.get", !0), es = Ue("WeakMap.prototype.set", !0), ts = Ue("WeakMap.prototype.has", !0), rs = Ue("Map.prototype.get", !0), ns = Ue("Map.prototype.set", !0), os = Ue("Map.prototype.has", !0), Dt = function(t, e) {
|
|
2962
2964
|
for (var r = t, o; (o = r.next) !== null; r = o)
|
|
2963
2965
|
if (o.key === e)
|
|
2964
2966
|
return r.next = o.next, o.next = /** @type {NonNullable<typeof list.next>} */
|
|
2965
2967
|
t.next, t.next = o, o;
|
|
2966
|
-
},
|
|
2968
|
+
}, as = function(t, e) {
|
|
2967
2969
|
var r = Dt(t, e);
|
|
2968
2970
|
return r && r.value;
|
|
2969
|
-
},
|
|
2971
|
+
}, is = function(t, e, r) {
|
|
2970
2972
|
var o = Dt(t, e);
|
|
2971
2973
|
o ? o.value = r : t.next = /** @type {import('.').ListNode<typeof value>} */
|
|
2972
2974
|
{
|
|
@@ -2975,48 +2977,48 @@ var mn = Le, Ue = xi, Di = Ni, Yi = Ve, Xe = mn("%WeakMap%", !0), Ze = mn("%Map%
|
|
|
2975
2977
|
next: t.next,
|
|
2976
2978
|
value: r
|
|
2977
2979
|
};
|
|
2978
|
-
},
|
|
2980
|
+
}, ss = function(t, e) {
|
|
2979
2981
|
return !!Dt(t, e);
|
|
2980
|
-
},
|
|
2982
|
+
}, ls = function() {
|
|
2981
2983
|
var e, r, o, i = {
|
|
2982
2984
|
assert: function(a) {
|
|
2983
2985
|
if (!i.has(a))
|
|
2984
|
-
throw new
|
|
2986
|
+
throw new Xi("Side channel does not contain " + Yi(a));
|
|
2985
2987
|
},
|
|
2986
2988
|
get: function(a) {
|
|
2987
2989
|
if (Xe && a && (typeof a == "object" || typeof a == "function")) {
|
|
2988
2990
|
if (e)
|
|
2989
|
-
return
|
|
2991
|
+
return Zi(e, a);
|
|
2990
2992
|
} else if (Ze) {
|
|
2991
2993
|
if (r)
|
|
2992
|
-
return
|
|
2994
|
+
return rs(r, a);
|
|
2993
2995
|
} else if (o)
|
|
2994
|
-
return
|
|
2996
|
+
return as(o, a);
|
|
2995
2997
|
},
|
|
2996
2998
|
has: function(a) {
|
|
2997
2999
|
if (Xe && a && (typeof a == "object" || typeof a == "function")) {
|
|
2998
3000
|
if (e)
|
|
2999
|
-
return
|
|
3001
|
+
return ts(e, a);
|
|
3000
3002
|
} else if (Ze) {
|
|
3001
3003
|
if (r)
|
|
3002
|
-
return
|
|
3004
|
+
return os(r, a);
|
|
3003
3005
|
} else if (o)
|
|
3004
|
-
return
|
|
3006
|
+
return ss(o, a);
|
|
3005
3007
|
return !1;
|
|
3006
3008
|
},
|
|
3007
3009
|
set: function(a, n) {
|
|
3008
|
-
Xe && a && (typeof a == "object" || typeof a == "function") ? (e || (e = new Xe()),
|
|
3010
|
+
Xe && a && (typeof a == "object" || typeof a == "function") ? (e || (e = new Xe()), es(e, a, n)) : Ze ? (r || (r = new Ze()), ns(r, a, n)) : (o || (o = { key: {}, next: null }), is(o, a, n));
|
|
3009
3011
|
}
|
|
3010
3012
|
};
|
|
3011
3013
|
return i;
|
|
3012
|
-
},
|
|
3014
|
+
}, cs = String.prototype.replace, us = /%20/g, jt = {
|
|
3013
3015
|
RFC1738: "RFC1738",
|
|
3014
3016
|
RFC3986: "RFC3986"
|
|
3015
3017
|
}, Yt = {
|
|
3016
3018
|
default: jt.RFC3986,
|
|
3017
3019
|
formatters: {
|
|
3018
3020
|
RFC1738: function(t) {
|
|
3019
|
-
return
|
|
3021
|
+
return cs.call(t, us, "+");
|
|
3020
3022
|
},
|
|
3021
3023
|
RFC3986: function(t) {
|
|
3022
3024
|
return String(t);
|
|
@@ -3024,11 +3026,11 @@ var mn = Le, Ue = xi, Di = Ni, Yi = Ve, Xe = mn("%WeakMap%", !0), Ze = mn("%Map%
|
|
|
3024
3026
|
},
|
|
3025
3027
|
RFC1738: jt.RFC1738,
|
|
3026
3028
|
RFC3986: jt.RFC3986
|
|
3027
|
-
},
|
|
3029
|
+
}, ps = Yt, St = Object.prototype.hasOwnProperty, we = Array.isArray, se = function() {
|
|
3028
3030
|
for (var t = [], e = 0; e < 256; ++e)
|
|
3029
3031
|
t.push("%" + ((e < 16 ? "0" : "") + e.toString(16)).toUpperCase());
|
|
3030
3032
|
return t;
|
|
3031
|
-
}(),
|
|
3033
|
+
}(), fs = function(e) {
|
|
3032
3034
|
for (; e.length > 1; ) {
|
|
3033
3035
|
var r = e.pop(), o = r.obj[r.prop];
|
|
3034
3036
|
if (we(o)) {
|
|
@@ -3037,11 +3039,11 @@ var mn = Le, Ue = xi, Di = Ni, Yi = Ve, Xe = mn("%WeakMap%", !0), Ze = mn("%Map%
|
|
|
3037
3039
|
r.obj[r.prop] = i;
|
|
3038
3040
|
}
|
|
3039
3041
|
}
|
|
3040
|
-
},
|
|
3042
|
+
}, bn = function(e, r) {
|
|
3041
3043
|
for (var o = r && r.plainObjects ? /* @__PURE__ */ Object.create(null) : {}, i = 0; i < e.length; ++i)
|
|
3042
3044
|
typeof e[i] < "u" && (o[i] = e[i]);
|
|
3043
3045
|
return o;
|
|
3044
|
-
},
|
|
3046
|
+
}, ds = function t(e, r, o) {
|
|
3045
3047
|
if (!r)
|
|
3046
3048
|
return e;
|
|
3047
3049
|
if (typeof r != "object") {
|
|
@@ -3056,7 +3058,7 @@ var mn = Le, Ue = xi, Di = Ni, Yi = Ve, Xe = mn("%WeakMap%", !0), Ze = mn("%Map%
|
|
|
3056
3058
|
if (!e || typeof e != "object")
|
|
3057
3059
|
return [e].concat(r);
|
|
3058
3060
|
var i = e;
|
|
3059
|
-
return we(e) && !we(r) && (i =
|
|
3061
|
+
return we(e) && !we(r) && (i = bn(e, o)), we(e) && we(r) ? (r.forEach(function(a, n) {
|
|
3060
3062
|
if (St.call(e, n)) {
|
|
3061
3063
|
var s = e[n];
|
|
3062
3064
|
s && typeof s == "object" && a && typeof a == "object" ? e[n] = t(s, a, o) : e.push(a);
|
|
@@ -3066,11 +3068,11 @@ var mn = Le, Ue = xi, Di = Ni, Yi = Ve, Xe = mn("%WeakMap%", !0), Ze = mn("%Map%
|
|
|
3066
3068
|
var s = r[n];
|
|
3067
3069
|
return St.call(a, n) ? a[n] = t(a[n], s, o) : a[n] = s, a;
|
|
3068
3070
|
}, i);
|
|
3069
|
-
},
|
|
3071
|
+
}, hs = function(e, r) {
|
|
3070
3072
|
return Object.keys(r).reduce(function(o, i) {
|
|
3071
3073
|
return o[i] = r[i], o;
|
|
3072
3074
|
}, e);
|
|
3073
|
-
},
|
|
3075
|
+
}, ys = function(t, e, r) {
|
|
3074
3076
|
var o = t.replace(/\+/g, " ");
|
|
3075
3077
|
if (r === "iso-8859-1")
|
|
3076
3078
|
return o.replace(/%[0-9a-f]{2}/gi, unescape);
|
|
@@ -3079,7 +3081,7 @@ var mn = Le, Ue = xi, Di = Ni, Yi = Ve, Xe = mn("%WeakMap%", !0), Ze = mn("%Map%
|
|
|
3079
3081
|
} catch {
|
|
3080
3082
|
return o;
|
|
3081
3083
|
}
|
|
3082
|
-
}, Ot = 1024,
|
|
3084
|
+
}, Ot = 1024, ms = function(e, r, o, i, a) {
|
|
3083
3085
|
if (e.length === 0)
|
|
3084
3086
|
return e;
|
|
3085
3087
|
var n = e;
|
|
@@ -3090,7 +3092,7 @@ var mn = Le, Ue = xi, Di = Ni, Yi = Ve, Xe = mn("%WeakMap%", !0), Ze = mn("%Map%
|
|
|
3090
3092
|
for (var s = "", l = 0; l < n.length; l += Ot) {
|
|
3091
3093
|
for (var c = n.length >= Ot ? n.slice(l, l + Ot) : n, u = [], f = 0; f < c.length; ++f) {
|
|
3092
3094
|
var p = c.charCodeAt(f);
|
|
3093
|
-
if (p === 45 || p === 46 || p === 95 || p === 126 || p >= 48 && p <= 57 || p >= 65 && p <= 90 || p >= 97 && p <= 122 || a ===
|
|
3095
|
+
if (p === 45 || p === 46 || p === 95 || p === 126 || p >= 48 && p <= 57 || p >= 65 && p <= 90 || p >= 97 && p <= 122 || a === ps.RFC1738 && (p === 40 || p === 41)) {
|
|
3094
3096
|
u[u.length] = c.charAt(f);
|
|
3095
3097
|
continue;
|
|
3096
3098
|
}
|
|
@@ -3111,38 +3113,38 @@ var mn = Le, Ue = xi, Di = Ni, Yi = Ve, Xe = mn("%WeakMap%", !0), Ze = mn("%Map%
|
|
|
3111
3113
|
s += u.join("");
|
|
3112
3114
|
}
|
|
3113
3115
|
return s;
|
|
3114
|
-
},
|
|
3116
|
+
}, gs = function(e) {
|
|
3115
3117
|
for (var r = [{ obj: { o: e }, prop: "o" }], o = [], i = 0; i < r.length; ++i)
|
|
3116
3118
|
for (var a = r[i], n = a.obj[a.prop], s = Object.keys(n), l = 0; l < s.length; ++l) {
|
|
3117
3119
|
var c = s[l], u = n[c];
|
|
3118
3120
|
typeof u == "object" && u !== null && o.indexOf(u) === -1 && (r.push({ obj: n, prop: c }), o.push(u));
|
|
3119
3121
|
}
|
|
3120
|
-
return
|
|
3121
|
-
}, gs = function(e) {
|
|
3122
|
-
return Object.prototype.toString.call(e) === "[object RegExp]";
|
|
3122
|
+
return fs(r), e;
|
|
3123
3123
|
}, bs = function(e) {
|
|
3124
|
+
return Object.prototype.toString.call(e) === "[object RegExp]";
|
|
3125
|
+
}, vs = function(e) {
|
|
3124
3126
|
return !e || typeof e != "object" ? !1 : !!(e.constructor && e.constructor.isBuffer && e.constructor.isBuffer(e));
|
|
3125
|
-
}, vs = function(e, r) {
|
|
3126
|
-
return [].concat(e, r);
|
|
3127
3127
|
}, xs = function(e, r) {
|
|
3128
|
+
return [].concat(e, r);
|
|
3129
|
+
}, $s = function(e, r) {
|
|
3128
3130
|
if (we(e)) {
|
|
3129
3131
|
for (var o = [], i = 0; i < e.length; i += 1)
|
|
3130
3132
|
o.push(r(e[i]));
|
|
3131
3133
|
return o;
|
|
3132
3134
|
}
|
|
3133
3135
|
return r(e);
|
|
3134
|
-
},
|
|
3135
|
-
arrayToObject:
|
|
3136
|
-
assign:
|
|
3137
|
-
combine:
|
|
3138
|
-
compact:
|
|
3139
|
-
decode:
|
|
3140
|
-
encode:
|
|
3141
|
-
isBuffer:
|
|
3142
|
-
isRegExp:
|
|
3143
|
-
maybeMap:
|
|
3144
|
-
merge:
|
|
3145
|
-
},
|
|
3136
|
+
}, vn = {
|
|
3137
|
+
arrayToObject: bn,
|
|
3138
|
+
assign: hs,
|
|
3139
|
+
combine: xs,
|
|
3140
|
+
compact: gs,
|
|
3141
|
+
decode: ys,
|
|
3142
|
+
encode: ms,
|
|
3143
|
+
isBuffer: vs,
|
|
3144
|
+
isRegExp: bs,
|
|
3145
|
+
maybeMap: $s,
|
|
3146
|
+
merge: ds
|
|
3147
|
+
}, xn = ls, rt = vn, ze = Yt, ws = Object.prototype.hasOwnProperty, $n = {
|
|
3146
3148
|
brackets: function(e) {
|
|
3147
3149
|
return e + "[]";
|
|
3148
3150
|
},
|
|
@@ -3153,9 +3155,9 @@ var mn = Le, Ue = xi, Di = Ni, Yi = Ve, Xe = mn("%WeakMap%", !0), Ze = mn("%Map%
|
|
|
3153
3155
|
repeat: function(e) {
|
|
3154
3156
|
return e;
|
|
3155
3157
|
}
|
|
3156
|
-
}, le = Array.isArray,
|
|
3157
|
-
|
|
3158
|
-
},
|
|
3158
|
+
}, le = Array.isArray, js = Array.prototype.push, wn = function(t, e) {
|
|
3159
|
+
js.apply(t, le(e) ? e : [e]);
|
|
3160
|
+
}, Ss = Date.prototype.toISOString, _r = ze.default, U = {
|
|
3159
3161
|
addQueryPrefix: !1,
|
|
3160
3162
|
allowDots: !1,
|
|
3161
3163
|
allowEmptyArrays: !1,
|
|
@@ -3172,13 +3174,13 @@ var mn = Le, Ue = xi, Di = Ni, Yi = Ve, Xe = mn("%WeakMap%", !0), Ze = mn("%Map%
|
|
|
3172
3174
|
// deprecated
|
|
3173
3175
|
indices: !1,
|
|
3174
3176
|
serializeDate: function(e) {
|
|
3175
|
-
return
|
|
3177
|
+
return Ss.call(e);
|
|
3176
3178
|
},
|
|
3177
3179
|
skipNulls: !1,
|
|
3178
3180
|
strictNullHandling: !1
|
|
3179
|
-
},
|
|
3181
|
+
}, Os = function(e) {
|
|
3180
3182
|
return typeof e == "string" || typeof e == "number" || typeof e == "boolean" || typeof e == "symbol" || typeof e == "bigint";
|
|
3181
|
-
}, Tt = {},
|
|
3183
|
+
}, Tt = {}, Ts = function t(e, r, o, i, a, n, s, l, c, u, f, p, h, y, g, b, x, m) {
|
|
3182
3184
|
for (var v = e, j = m, w = 0, S = !1; (j = j.get(Tt)) !== void 0 && !S; ) {
|
|
3183
3185
|
var k = j.get(e);
|
|
3184
3186
|
if (w += 1, typeof k < "u") {
|
|
@@ -3195,7 +3197,7 @@ var mn = Le, Ue = xi, Di = Ni, Yi = Ve, Xe = mn("%WeakMap%", !0), Ze = mn("%Map%
|
|
|
3195
3197
|
return c && !b ? c(r, U.encoder, x, "key", y) : r;
|
|
3196
3198
|
v = "";
|
|
3197
3199
|
}
|
|
3198
|
-
if (
|
|
3200
|
+
if (Os(v) || rt.isBuffer(v)) {
|
|
3199
3201
|
if (c) {
|
|
3200
3202
|
var E = b ? r : c(r, U.encoder, x, "key", y);
|
|
3201
3203
|
return [g(E) + "=" + g(c(v, U.encoder, x, "value", y))];
|
|
@@ -3222,8 +3224,8 @@ var mn = Le, Ue = xi, Di = Ni, Yi = Ve, Xe = mn("%WeakMap%", !0), Ze = mn("%Map%
|
|
|
3222
3224
|
if (!(s && Y === null)) {
|
|
3223
3225
|
var he = p && l ? Q.replace(/\./g, "%2E") : Q, ft = le(v) ? typeof o == "function" ? o(L, he) : L : L + (p ? "." + he : "[" + he + "]");
|
|
3224
3226
|
m.set(e, w);
|
|
3225
|
-
var Ke =
|
|
3226
|
-
Ke.set(Tt, m),
|
|
3227
|
+
var Ke = xn();
|
|
3228
|
+
Ke.set(Tt, m), wn(R, t(
|
|
3227
3229
|
Y,
|
|
3228
3230
|
ft,
|
|
3229
3231
|
o,
|
|
@@ -3246,7 +3248,7 @@ var mn = Le, Ue = xi, Di = Ni, Yi = Ve, Xe = mn("%WeakMap%", !0), Ze = mn("%Map%
|
|
|
3246
3248
|
}
|
|
3247
3249
|
}
|
|
3248
3250
|
return R;
|
|
3249
|
-
},
|
|
3251
|
+
}, Cs = function(e) {
|
|
3250
3252
|
if (!e)
|
|
3251
3253
|
return U;
|
|
3252
3254
|
if (typeof e.allowEmptyArrays < "u" && typeof e.allowEmptyArrays != "boolean")
|
|
@@ -3260,14 +3262,14 @@ var mn = Le, Ue = xi, Di = Ni, Yi = Ve, Xe = mn("%WeakMap%", !0), Ze = mn("%Map%
|
|
|
3260
3262
|
throw new TypeError("The charset option must be either utf-8, iso-8859-1, or undefined");
|
|
3261
3263
|
var o = ze.default;
|
|
3262
3264
|
if (typeof e.format < "u") {
|
|
3263
|
-
if (
|
|
3265
|
+
if (!ws.call(ze.formatters, e.format))
|
|
3264
3266
|
throw new TypeError("Unknown format option provided.");
|
|
3265
3267
|
o = e.format;
|
|
3266
3268
|
}
|
|
3267
3269
|
var i = ze.formatters[o], a = U.filter;
|
|
3268
3270
|
(typeof e.filter == "function" || le(e.filter)) && (a = e.filter);
|
|
3269
3271
|
var n;
|
|
3270
|
-
if (e.arrayFormat in
|
|
3272
|
+
if (e.arrayFormat in $n ? n = e.arrayFormat : "indices" in e ? n = e.indices ? "indices" : "repeat" : n = U.arrayFormat, "commaRoundTrip" in e && typeof e.commaRoundTrip != "boolean")
|
|
3271
3273
|
throw new TypeError("`commaRoundTrip` must be a boolean, or absent");
|
|
3272
3274
|
var s = typeof e.allowDots > "u" ? e.encodeDotInKeys === !0 ? !0 : U.allowDots : !!e.allowDots;
|
|
3273
3275
|
return {
|
|
@@ -3291,17 +3293,17 @@ var mn = Le, Ue = xi, Di = Ni, Yi = Ve, Xe = mn("%WeakMap%", !0), Ze = mn("%Map%
|
|
|
3291
3293
|
sort: typeof e.sort == "function" ? e.sort : null,
|
|
3292
3294
|
strictNullHandling: typeof e.strictNullHandling == "boolean" ? e.strictNullHandling : U.strictNullHandling
|
|
3293
3295
|
};
|
|
3294
|
-
},
|
|
3295
|
-
var r = t, o =
|
|
3296
|
+
}, Ps = function(t, e) {
|
|
3297
|
+
var r = t, o = Cs(e), i, a;
|
|
3296
3298
|
typeof o.filter == "function" ? (a = o.filter, r = a("", r)) : le(o.filter) && (a = o.filter, i = a);
|
|
3297
3299
|
var n = [];
|
|
3298
3300
|
if (typeof r != "object" || r === null)
|
|
3299
3301
|
return "";
|
|
3300
|
-
var s =
|
|
3302
|
+
var s = $n[o.arrayFormat], l = s === "comma" && o.commaRoundTrip;
|
|
3301
3303
|
i || (i = Object.keys(r)), o.sort && i.sort(o.sort);
|
|
3302
|
-
for (var c =
|
|
3304
|
+
for (var c = xn(), u = 0; u < i.length; ++u) {
|
|
3303
3305
|
var f = i[u];
|
|
3304
|
-
o.skipNulls && r[f] === null ||
|
|
3306
|
+
o.skipNulls && r[f] === null || wn(n, Ts(
|
|
3305
3307
|
r[f],
|
|
3306
3308
|
f,
|
|
3307
3309
|
s,
|
|
@@ -3324,7 +3326,7 @@ var mn = Le, Ue = xi, Di = Ni, Yi = Ve, Xe = mn("%WeakMap%", !0), Ze = mn("%Map%
|
|
|
3324
3326
|
}
|
|
3325
3327
|
var p = n.join(o.delimiter), h = o.addQueryPrefix === !0 ? "?" : "";
|
|
3326
3328
|
return o.charsetSentinel && (o.charset === "iso-8859-1" ? h += "utf8=%26%2310003%3B&" : h += "utf8=%E2%9C%93&"), p.length > 0 ? h + p : "";
|
|
3327
|
-
}, Ie =
|
|
3329
|
+
}, Ie = vn, It = Object.prototype.hasOwnProperty, ks = Array.isArray, q = {
|
|
3328
3330
|
allowDots: !1,
|
|
3329
3331
|
allowEmptyArrays: !1,
|
|
3330
3332
|
allowPrototypes: !1,
|
|
@@ -3345,34 +3347,34 @@ var mn = Le, Ue = xi, Di = Ni, Yi = Ve, Xe = mn("%WeakMap%", !0), Ze = mn("%Map%
|
|
|
3345
3347
|
plainObjects: !1,
|
|
3346
3348
|
strictDepth: !1,
|
|
3347
3349
|
strictNullHandling: !1
|
|
3348
|
-
},
|
|
3350
|
+
}, Es = function(t) {
|
|
3349
3351
|
return t.replace(/&#(\d+);/g, function(e, r) {
|
|
3350
3352
|
return String.fromCharCode(parseInt(r, 10));
|
|
3351
3353
|
});
|
|
3352
|
-
},
|
|
3354
|
+
}, jn = function(t, e) {
|
|
3353
3355
|
return t && typeof t == "string" && e.comma && t.indexOf(",") > -1 ? t.split(",") : t;
|
|
3354
|
-
},
|
|
3356
|
+
}, Ns = "utf8=%26%2310003%3B", Rs = "utf8=%E2%9C%93", As = function(e, r) {
|
|
3355
3357
|
var o = { __proto__: null }, i = r.ignoreQueryPrefix ? e.replace(/^\?/, "") : e;
|
|
3356
3358
|
i = i.replace(/%5B/gi, "[").replace(/%5D/gi, "]");
|
|
3357
3359
|
var a = r.parameterLimit === 1 / 0 ? void 0 : r.parameterLimit, n = i.split(r.delimiter, a), s = -1, l, c = r.charset;
|
|
3358
3360
|
if (r.charsetSentinel)
|
|
3359
3361
|
for (l = 0; l < n.length; ++l)
|
|
3360
|
-
n[l].indexOf("utf8=") === 0 && (n[l] ===
|
|
3362
|
+
n[l].indexOf("utf8=") === 0 && (n[l] === Rs ? c = "utf-8" : n[l] === Ns && (c = "iso-8859-1"), s = l, l = n.length);
|
|
3361
3363
|
for (l = 0; l < n.length; ++l)
|
|
3362
3364
|
if (l !== s) {
|
|
3363
3365
|
var u = n[l], f = u.indexOf("]="), p = f === -1 ? u.indexOf("=") : f + 1, h, y;
|
|
3364
3366
|
p === -1 ? (h = r.decoder(u, q.decoder, c, "key"), y = r.strictNullHandling ? null : "") : (h = r.decoder(u.slice(0, p), q.decoder, c, "key"), y = Ie.maybeMap(
|
|
3365
|
-
|
|
3367
|
+
jn(u.slice(p + 1), r),
|
|
3366
3368
|
function(b) {
|
|
3367
3369
|
return r.decoder(b, q.decoder, c, "value");
|
|
3368
3370
|
}
|
|
3369
|
-
)), y && r.interpretNumericEntities && c === "iso-8859-1" && (y =
|
|
3371
|
+
)), y && r.interpretNumericEntities && c === "iso-8859-1" && (y = Es(y)), u.indexOf("[]=") > -1 && (y = ks(y) ? [y] : y);
|
|
3370
3372
|
var g = It.call(o, h);
|
|
3371
3373
|
g && r.duplicates === "combine" ? o[h] = Ie.combine(o[h], y) : (!g || r.duplicates === "last") && (o[h] = y);
|
|
3372
3374
|
}
|
|
3373
3375
|
return o;
|
|
3374
|
-
},
|
|
3375
|
-
for (var i = o ? e :
|
|
3376
|
+
}, qs = function(t, e, r, o) {
|
|
3377
|
+
for (var i = o ? e : jn(e, r), a = t.length - 1; a >= 0; --a) {
|
|
3376
3378
|
var n, s = t[a];
|
|
3377
3379
|
if (s === "[]" && r.parseArrays)
|
|
3378
3380
|
n = r.allowEmptyArrays && (i === "" || r.strictNullHandling && i === null) ? [] : [].concat(i);
|
|
@@ -3384,7 +3386,7 @@ var mn = Le, Ue = xi, Di = Ni, Yi = Ve, Xe = mn("%WeakMap%", !0), Ze = mn("%Map%
|
|
|
3384
3386
|
i = n;
|
|
3385
3387
|
}
|
|
3386
3388
|
return i;
|
|
3387
|
-
},
|
|
3389
|
+
}, Is = function(e, r, o, i) {
|
|
3388
3390
|
if (e) {
|
|
3389
3391
|
var a = o.allowDots ? e.replace(/\.([^.[]+)/g, "[$1]") : e, n = /(\[[^[\]]*])/, s = /(\[[^[\]]*])/g, l = o.depth > 0 && n.exec(a), c = l ? a.slice(0, l.index) : a, u = [];
|
|
3390
3392
|
if (c) {
|
|
@@ -3402,9 +3404,9 @@ var mn = Le, Ue = xi, Di = Ni, Yi = Ve, Xe = mn("%WeakMap%", !0), Ze = mn("%Map%
|
|
|
3402
3404
|
throw new RangeError("Input depth exceeded depth option of " + o.depth + " and strictDepth is true");
|
|
3403
3405
|
u.push("[" + a.slice(l.index) + "]");
|
|
3404
3406
|
}
|
|
3405
|
-
return
|
|
3407
|
+
return qs(u, r, o, i);
|
|
3406
3408
|
}
|
|
3407
|
-
},
|
|
3409
|
+
}, Ls = function(e) {
|
|
3408
3410
|
if (!e)
|
|
3409
3411
|
return q;
|
|
3410
3412
|
if (typeof e.allowEmptyArrays < "u" && typeof e.allowEmptyArrays != "boolean")
|
|
@@ -3442,24 +3444,24 @@ var mn = Le, Ue = xi, Di = Ni, Yi = Ve, Xe = mn("%WeakMap%", !0), Ze = mn("%Map%
|
|
|
3442
3444
|
strictDepth: typeof e.strictDepth == "boolean" ? !!e.strictDepth : q.strictDepth,
|
|
3443
3445
|
strictNullHandling: typeof e.strictNullHandling == "boolean" ? e.strictNullHandling : q.strictNullHandling
|
|
3444
3446
|
};
|
|
3445
|
-
},
|
|
3446
|
-
var r =
|
|
3447
|
+
}, Us = function(t, e) {
|
|
3448
|
+
var r = Ls(e);
|
|
3447
3449
|
if (t === "" || t === null || typeof t > "u")
|
|
3448
3450
|
return r.plainObjects ? /* @__PURE__ */ Object.create(null) : {};
|
|
3449
|
-
for (var o = typeof t == "string" ?
|
|
3450
|
-
var s = a[n], l =
|
|
3451
|
+
for (var o = typeof t == "string" ? As(t, r) : t, i = r.plainObjects ? /* @__PURE__ */ Object.create(null) : {}, a = Object.keys(o), n = 0; n < a.length; ++n) {
|
|
3452
|
+
var s = a[n], l = Is(s, o[s], r, typeof t == "string");
|
|
3451
3453
|
i = Ie.merge(i, l, r);
|
|
3452
3454
|
}
|
|
3453
3455
|
return r.allowSparse === !0 ? i : Ie.compact(i);
|
|
3454
|
-
},
|
|
3455
|
-
formats:
|
|
3456
|
-
parse:
|
|
3457
|
-
stringify:
|
|
3458
|
-
},
|
|
3456
|
+
}, Fs = Ps, _s = Us, Hs = Yt, nt = {
|
|
3457
|
+
formats: Hs,
|
|
3458
|
+
parse: _s,
|
|
3459
|
+
stringify: Fs
|
|
3460
|
+
}, Bs = Oa;
|
|
3459
3461
|
function ae() {
|
|
3460
3462
|
this.protocol = null, this.slashes = null, this.auth = null, this.host = null, this.port = null, this.hostname = null, this.hash = null, this.search = null, this.query = null, this.pathname = null, this.path = null, this.href = null;
|
|
3461
3463
|
}
|
|
3462
|
-
var
|
|
3464
|
+
var Ms = /^([a-z0-9.+-]+:)/i, zs = /:[0-9]*$/, Ws = /^(\/\/?(?!\/)[^?\s]*)(\?[^\s]*)?$/, Js = [
|
|
3463
3465
|
"<",
|
|
3464
3466
|
">",
|
|
3465
3467
|
'"',
|
|
@@ -3469,14 +3471,14 @@ var Bs = /^([a-z0-9.+-]+:)/i, Ms = /:[0-9]*$/, zs = /^(\/\/?(?!\/)[^?\s]*)(\?[^\
|
|
|
3469
3471
|
`
|
|
3470
3472
|
`,
|
|
3471
3473
|
" "
|
|
3472
|
-
],
|
|
3474
|
+
], Gs = [
|
|
3473
3475
|
"{",
|
|
3474
3476
|
"}",
|
|
3475
3477
|
"|",
|
|
3476
3478
|
"\\",
|
|
3477
3479
|
"^",
|
|
3478
3480
|
"`"
|
|
3479
|
-
].concat(
|
|
3481
|
+
].concat(Js), Lt = ["'"].concat(Gs), Hr = [
|
|
3480
3482
|
"%",
|
|
3481
3483
|
"/",
|
|
3482
3484
|
"?",
|
|
@@ -3486,7 +3488,7 @@ var Bs = /^([a-z0-9.+-]+:)/i, Ms = /:[0-9]*$/, zs = /^(\/\/?(?!\/)[^?\s]*)(\?[^\
|
|
|
3486
3488
|
"/",
|
|
3487
3489
|
"?",
|
|
3488
3490
|
"#"
|
|
3489
|
-
],
|
|
3491
|
+
], Vs = 255, Mr = /^[+a-z0-9A-Z_-]{0,63}$/, Qs = /^([+a-z0-9A-Z_-]{0,63})(.*)$/, Ks = {
|
|
3490
3492
|
javascript: !0,
|
|
3491
3493
|
"javascript:": !0
|
|
3492
3494
|
}, Ut = {
|
|
@@ -3517,11 +3519,11 @@ ae.prototype.parse = function(t, e, r) {
|
|
|
3517
3519
|
a[0] = a[0].replace(n, "/"), t = a.join(i);
|
|
3518
3520
|
var s = t;
|
|
3519
3521
|
if (s = s.trim(), !r && t.split("#").length === 1) {
|
|
3520
|
-
var l =
|
|
3522
|
+
var l = Ws.exec(s);
|
|
3521
3523
|
if (l)
|
|
3522
3524
|
return this.path = s, this.href = s, this.pathname = l[1], l[2] ? (this.search = l[2], e ? this.query = Ft.parse(this.search.substr(1)) : this.query = this.search.substr(1)) : e && (this.search = "", this.query = {}), this;
|
|
3523
3525
|
}
|
|
3524
|
-
var c =
|
|
3526
|
+
var c = Ms.exec(s);
|
|
3525
3527
|
if (c) {
|
|
3526
3528
|
c = c[0];
|
|
3527
3529
|
var u = c.toLowerCase();
|
|
@@ -3551,17 +3553,17 @@ ae.prototype.parse = function(t, e, r) {
|
|
|
3551
3553
|
for (var w = "", S = 0, k = j.length; S < k; S++)
|
|
3552
3554
|
j.charCodeAt(S) > 127 ? w += "x" : w += j[S];
|
|
3553
3555
|
if (!w.match(Mr)) {
|
|
3554
|
-
var E = m.slice(0, h), R = m.slice(h + 1), F = j.match(
|
|
3556
|
+
var E = m.slice(0, h), R = m.slice(h + 1), F = j.match(Qs);
|
|
3555
3557
|
F && (E.push(F[1]), R.unshift(F[2])), R.length && (s = "/" + R.join(".") + s), this.hostname = E.join(".");
|
|
3556
3558
|
break;
|
|
3557
3559
|
}
|
|
3558
3560
|
}
|
|
3559
3561
|
}
|
|
3560
|
-
this.hostname.length >
|
|
3562
|
+
this.hostname.length > Vs ? this.hostname = "" : this.hostname = this.hostname.toLowerCase(), x || (this.hostname = Bs.toASCII(this.hostname));
|
|
3561
3563
|
var te = this.port ? ":" + this.port : "", re = this.hostname || "";
|
|
3562
3564
|
this.host = re + te, this.href += this.host, x && (this.hostname = this.hostname.substr(1, this.hostname.length - 2), s[0] !== "/" && (s = "/" + s));
|
|
3563
3565
|
}
|
|
3564
|
-
if (!
|
|
3566
|
+
if (!Ks[u])
|
|
3565
3567
|
for (var h = 0, v = Lt.length; h < v; h++) {
|
|
3566
3568
|
var L = Lt[h];
|
|
3567
3569
|
if (s.indexOf(L) !== -1) {
|
|
@@ -3578,7 +3580,7 @@ ae.prototype.parse = function(t, e, r) {
|
|
|
3578
3580
|
}
|
|
3579
3581
|
return this.href = this.format(), this;
|
|
3580
3582
|
};
|
|
3581
|
-
function
|
|
3583
|
+
function Ds(t) {
|
|
3582
3584
|
return typeof t == "string" && (t = Xt(t)), t instanceof ae ? t.format() : ae.prototype.format.call(t);
|
|
3583
3585
|
}
|
|
3584
3586
|
ae.prototype.format = function() {
|
|
@@ -3665,15 +3667,15 @@ ae.prototype.resolveObject = function(t) {
|
|
|
3665
3667
|
return b = b || r.host && m.length, b && !F && m.unshift(""), m.length > 0 ? r.pathname = m.join("/") : (r.pathname = null, r.path = null), (r.pathname !== null || r.search !== null) && (r.path = (r.pathname ? r.pathname : "") + (r.search ? r.search : "")), r.auth = t.auth || r.auth, r.slashes = r.slashes || t.slashes, r.href = r.format(), r;
|
|
3666
3668
|
};
|
|
3667
3669
|
ae.prototype.parseHost = function() {
|
|
3668
|
-
var t = this.host, e =
|
|
3670
|
+
var t = this.host, e = zs.exec(t);
|
|
3669
3671
|
e && (e = e[0], e !== ":" && (this.port = e.substr(1)), t = t.substr(0, t.length - e.length)), t && (this.hostname = t);
|
|
3670
3672
|
};
|
|
3671
|
-
var
|
|
3673
|
+
var Ys = Xt, zr = Ds, Xs = (t) => typeof t == "object" && "log" in t && typeof t.log == "object" && "entries" in t.log && Array.isArray(t.log.entries), Zs = class {
|
|
3672
3674
|
constructor(t, e = {}) {
|
|
3673
3675
|
this.initCalled = !1, this.entries = [], this.requests = [], this.options = {}, this.options = {
|
|
3674
3676
|
harIsAlreadyEncoded: !1,
|
|
3675
3677
|
...e
|
|
3676
|
-
}, this.requests = [],
|
|
3678
|
+
}, this.requests = [], Xs(t) ? this.entries = t.log.entries : this.entries = [
|
|
3677
3679
|
{
|
|
3678
3680
|
request: t
|
|
3679
3681
|
}
|
|
@@ -3763,7 +3765,7 @@ var Ds = Xt, zr = Ks, Ys = (t) => typeof t == "object" && "log" in t && typeof t
|
|
|
3763
3765
|
const i = {
|
|
3764
3766
|
...r.allHeaders,
|
|
3765
3767
|
...r.headersObj
|
|
3766
|
-
}, a =
|
|
3768
|
+
}, a = Ys(r.url, !0, !0);
|
|
3767
3769
|
r.queryObj = {
|
|
3768
3770
|
...r.queryObj,
|
|
3769
3771
|
...a.query
|
|
@@ -3798,19 +3800,19 @@ var Ds = Xt, zr = Ks, Ys = (t) => typeof t == "object" && "log" in t && typeof t
|
|
|
3798
3800
|
}
|
|
3799
3801
|
convert(t, e, r) {
|
|
3800
3802
|
this.initCalled || this.init(), !r && e && (r = e);
|
|
3801
|
-
const o =
|
|
3803
|
+
const o = Sa[t];
|
|
3802
3804
|
if (!o)
|
|
3803
3805
|
return !1;
|
|
3804
3806
|
const { convert: i } = o.clientsById[e || o.info.default];
|
|
3805
3807
|
return this.requests.map((n) => i(n, r));
|
|
3806
3808
|
}
|
|
3807
3809
|
};
|
|
3808
|
-
const
|
|
3810
|
+
const el = ({
|
|
3809
3811
|
rootMargin: t = "0px",
|
|
3810
3812
|
threshold: e
|
|
3811
3813
|
} = {}) => {
|
|
3812
|
-
const [r, o] = ve(!1), i =
|
|
3813
|
-
return
|
|
3814
|
+
const [r, o] = ve(!1), i = Vr(null);
|
|
3815
|
+
return Qr(() => {
|
|
3814
3816
|
const a = new IntersectionObserver(
|
|
3815
3817
|
([s]) => {
|
|
3816
3818
|
s && o(s.isIntersecting);
|
|
@@ -3820,12 +3822,12 @@ const Zs = ({
|
|
|
3820
3822
|
if (n)
|
|
3821
3823
|
return a.observe(n), () => a.unobserve(n);
|
|
3822
3824
|
}, [t, e]), [i, r];
|
|
3823
|
-
},
|
|
3825
|
+
}, tl = ee.Root, Wr = ee.CollapsibleTrigger, rl = ee.CollapsibleContent, nl = typeof window < "u" ? Un : Qr, Zt = ({
|
|
3824
3826
|
children: t,
|
|
3825
3827
|
maxHeight: e = 250
|
|
3826
3828
|
}) => {
|
|
3827
|
-
const r =
|
|
3828
|
-
return
|
|
3829
|
+
const r = Vr(null), [o, i] = ve(!1), [a, n] = ve(!1);
|
|
3830
|
+
return nl(() => {
|
|
3829
3831
|
const s = r.current;
|
|
3830
3832
|
if (!s) return;
|
|
3831
3833
|
i(s.scrollHeight > e);
|
|
@@ -3834,7 +3836,7 @@ const Zs = ({
|
|
|
3834
3836
|
});
|
|
3835
3837
|
return l.observe(s), () => l.disconnect();
|
|
3836
3838
|
}, [e]), /* @__PURE__ */ d.jsxs(
|
|
3837
|
-
|
|
3839
|
+
tl,
|
|
3838
3840
|
{
|
|
3839
3841
|
className: "group",
|
|
3840
3842
|
open: a,
|
|
@@ -3842,7 +3844,7 @@ const Zs = ({
|
|
|
3842
3844
|
style: { "--max-height": `${e}px` },
|
|
3843
3845
|
children: [
|
|
3844
3846
|
/* @__PURE__ */ d.jsxs(
|
|
3845
|
-
|
|
3847
|
+
rl,
|
|
3846
3848
|
{
|
|
3847
3849
|
forceMount: !0,
|
|
3848
3850
|
className: D(
|
|
@@ -3873,7 +3875,7 @@ const Zs = ({
|
|
|
3873
3875
|
]
|
|
3874
3876
|
}
|
|
3875
3877
|
);
|
|
3876
|
-
},
|
|
3878
|
+
}, ol = ({
|
|
3877
3879
|
server: t,
|
|
3878
3880
|
servers: e,
|
|
3879
3881
|
operation: r
|
|
@@ -3891,7 +3893,7 @@ const Zs = ({
|
|
|
3891
3893
|
isRequired: c.required ?? !1
|
|
3892
3894
|
})), a = (l = r.parameters) == null ? void 0 : l.filter((c) => c.in === "path").map((c) => ({ name: c.name }));
|
|
3893
3895
|
return /* @__PURE__ */ d.jsx(
|
|
3894
|
-
|
|
3896
|
+
Mn,
|
|
3895
3897
|
{
|
|
3896
3898
|
server: t,
|
|
3897
3899
|
servers: e,
|
|
@@ -3926,7 +3928,7 @@ const Zs = ({
|
|
|
3926
3928
|
className: D("bg-zinc-50 dark:bg-zinc-800 overflow-auto p-2", e),
|
|
3927
3929
|
children: t
|
|
3928
3930
|
}
|
|
3929
|
-
),
|
|
3931
|
+
), Sn = ({ children: t, className: e }) => /* @__PURE__ */ d.jsx(
|
|
3930
3932
|
"div",
|
|
3931
3933
|
{
|
|
3932
3934
|
className: D(
|
|
@@ -3969,7 +3971,7 @@ const Zs = ({
|
|
|
3969
3971
|
default:
|
|
3970
3972
|
return {};
|
|
3971
3973
|
}
|
|
3972
|
-
},
|
|
3974
|
+
}, al = ({ content: t }) => {
|
|
3973
3975
|
var o, i;
|
|
3974
3976
|
if (!t.length) return null;
|
|
3975
3977
|
const e = t.at(0), r = ((i = (o = e == null ? void 0 : e.examples) == null ? void 0 : o.at(0)) == null ? void 0 : i.value) ?? (e != null && e.schema ? Re(e.schema) : "");
|
|
@@ -3986,7 +3988,7 @@ const Zs = ({
|
|
|
3986
3988
|
}
|
|
3987
3989
|
) }) })
|
|
3988
3990
|
] }) });
|
|
3989
|
-
},
|
|
3991
|
+
}, il = ({
|
|
3990
3992
|
responses: t,
|
|
3991
3993
|
selectedResponse: e,
|
|
3992
3994
|
onSelectResponse: r
|
|
@@ -4028,13 +4030,13 @@ const Zs = ({
|
|
|
4028
4030
|
code: n ? JSON.stringify(n, null, 2) : "Empty response"
|
|
4029
4031
|
}
|
|
4030
4032
|
) }) }),
|
|
4031
|
-
/* @__PURE__ */ d.jsx(
|
|
4033
|
+
/* @__PURE__ */ d.jsx(Sn, { className: "flex justify-end text-xs", children: i.description })
|
|
4032
4034
|
] }, i.statusCode);
|
|
4033
4035
|
})
|
|
4034
4036
|
]
|
|
4035
4037
|
}
|
|
4036
4038
|
) });
|
|
4037
|
-
},
|
|
4039
|
+
}, sl = (t, e) => {
|
|
4038
4040
|
let r;
|
|
4039
4041
|
switch (e) {
|
|
4040
4042
|
case "shell":
|
|
@@ -4075,7 +4077,7 @@ const Zs = ({
|
|
|
4075
4077
|
break;
|
|
4076
4078
|
}
|
|
4077
4079
|
return r ? r[0] : "";
|
|
4078
|
-
},
|
|
4080
|
+
}, ll = ut(
|
|
4079
4081
|
/* GraphQL */
|
|
4080
4082
|
`
|
|
4081
4083
|
query getServerQuery($input: JSON!, $type: SchemaType!) {
|
|
@@ -4087,7 +4089,7 @@ const Zs = ({
|
|
|
4087
4089
|
}
|
|
4088
4090
|
}
|
|
4089
4091
|
`
|
|
4090
|
-
),
|
|
4092
|
+
), cl = {
|
|
4091
4093
|
get: fe.green,
|
|
4092
4094
|
post: fe.blue,
|
|
4093
4095
|
put: fe.yellow,
|
|
@@ -4096,7 +4098,7 @@ const Zs = ({
|
|
|
4096
4098
|
options: fe.indigo,
|
|
4097
4099
|
head: fe.gray,
|
|
4098
4100
|
trace: fe.gray
|
|
4099
|
-
},
|
|
4101
|
+
}, ul = [
|
|
4100
4102
|
{ value: "shell", label: "cURL" },
|
|
4101
4103
|
{ value: "js", label: "JavaScript" },
|
|
4102
4104
|
{ value: "python", label: "Python" },
|
|
@@ -4108,19 +4110,19 @@ const Zs = ({
|
|
|
4108
4110
|
{ value: "php", label: "PHP" },
|
|
4109
4111
|
{ value: "ruby", label: "Ruby" },
|
|
4110
4112
|
{ value: "swift", label: "Swift" }
|
|
4111
|
-
],
|
|
4113
|
+
], pl = ({
|
|
4112
4114
|
operation: t,
|
|
4113
4115
|
selectedResponse: e,
|
|
4114
4116
|
onSelectResponse: r
|
|
4115
4117
|
}) => {
|
|
4116
4118
|
var m;
|
|
4117
|
-
const { input: o, type: i } = Bt(), a = zt(
|
|
4119
|
+
const { input: o, type: i } = Bt(), a = zt(ll, { input: o, type: i }), n = Ht(a), s = cl[t.method.toLocaleLowerCase()] ?? fe.gray, [l, c] = eo(), [, u] = Gr(), f = l.get("lang") ?? "shell", p = (m = t.requestBody) == null ? void 0 : m.content, h = t.path.split("/").map((v, j, w) => {
|
|
4118
4120
|
const k = v.startsWith("{") && v.endsWith("}") || v.startsWith(":") ? v.replace(/[:{}]/g, "") : void 0;
|
|
4119
4121
|
return (
|
|
4120
4122
|
// eslint-disable-next-line react/no-array-index-key
|
|
4121
|
-
/* @__PURE__ */ d.jsxs(
|
|
4123
|
+
/* @__PURE__ */ d.jsxs(Fn, { children: [
|
|
4122
4124
|
k ? /* @__PURE__ */ d.jsx(
|
|
4123
|
-
|
|
4125
|
+
Xr,
|
|
4124
4126
|
{
|
|
4125
4127
|
name: k,
|
|
4126
4128
|
backgroundOpacity: "0",
|
|
@@ -4132,9 +4134,9 @@ const Zs = ({
|
|
|
4132
4134
|
/* @__PURE__ */ d.jsx("wbr", {})
|
|
4133
4135
|
] }, v + j)
|
|
4134
4136
|
);
|
|
4135
|
-
}), { selectedServer: y } =
|
|
4137
|
+
}), { selectedServer: y } = Kr(), g = Jr(() => {
|
|
4136
4138
|
var w;
|
|
4137
|
-
const v = (w = p == null ? void 0 : p[0]) != null && w.schema ? Re(p[0].schema) : void 0, j = new
|
|
4139
|
+
const v = (w = p == null ? void 0 : p[0]) != null && w.schema ? Re(p[0].schema) : void 0, j = new Zs({
|
|
4138
4140
|
method: t.method.toLocaleUpperCase(),
|
|
4139
4141
|
url: (y ?? n.data.schema.url ?? "") + t.path.replaceAll("{", ":").replaceAll("}", ""),
|
|
4140
4142
|
postData: v ? {
|
|
@@ -4148,7 +4150,7 @@ const Zs = ({
|
|
|
4148
4150
|
headersSize: 0,
|
|
4149
4151
|
bodySize: 0
|
|
4150
4152
|
});
|
|
4151
|
-
return
|
|
4153
|
+
return sl(j, f);
|
|
4152
4154
|
}, [
|
|
4153
4155
|
p,
|
|
4154
4156
|
t.method,
|
|
@@ -4156,7 +4158,7 @@ const Zs = ({
|
|
|
4156
4158
|
y,
|
|
4157
4159
|
n.data.schema.url,
|
|
4158
4160
|
f
|
|
4159
|
-
]), [b, x] =
|
|
4161
|
+
]), [b, x] = el({ rootMargin: "200px 0px 200px 0px" });
|
|
4160
4162
|
return /* @__PURE__ */ d.jsxs(
|
|
4161
4163
|
"aside",
|
|
4162
4164
|
{
|
|
@@ -4171,7 +4173,7 @@ const Zs = ({
|
|
|
4171
4173
|
h
|
|
4172
4174
|
] }),
|
|
4173
4175
|
x && /* @__PURE__ */ d.jsx(
|
|
4174
|
-
|
|
4176
|
+
ol,
|
|
4175
4177
|
{
|
|
4176
4178
|
server: n.data.schema.url ?? "",
|
|
4177
4179
|
servers: n.data.schema.servers.map((v) => v.url) ?? [],
|
|
@@ -4189,10 +4191,10 @@ const Zs = ({
|
|
|
4189
4191
|
code: g
|
|
4190
4192
|
}
|
|
4191
4193
|
) }) }),
|
|
4192
|
-
/* @__PURE__ */ d.jsxs(
|
|
4194
|
+
/* @__PURE__ */ d.jsxs(Sn, { className: "flex items-center text-xs gap-2 justify-end py-1", children: [
|
|
4193
4195
|
/* @__PURE__ */ d.jsx("span", { children: "Show example in" }),
|
|
4194
4196
|
/* @__PURE__ */ d.jsx(
|
|
4195
|
-
|
|
4197
|
+
Yr,
|
|
4196
4198
|
{
|
|
4197
4199
|
className: "self-start max-w-[150px]",
|
|
4198
4200
|
value: f,
|
|
@@ -4201,15 +4203,15 @@ const Zs = ({
|
|
|
4201
4203
|
c((j) => (j.set("lang", v.target.value), j));
|
|
4202
4204
|
});
|
|
4203
4205
|
},
|
|
4204
|
-
options:
|
|
4206
|
+
options: ul
|
|
4205
4207
|
}
|
|
4206
4208
|
)
|
|
4207
4209
|
] })
|
|
4208
4210
|
] })
|
|
4209
4211
|
] }),
|
|
4210
|
-
x && p && /* @__PURE__ */ d.jsx(
|
|
4212
|
+
x && p && /* @__PURE__ */ d.jsx(al, { content: p }),
|
|
4211
4213
|
x && t.responses.length > 0 && /* @__PURE__ */ d.jsx(
|
|
4212
|
-
|
|
4214
|
+
il,
|
|
4213
4215
|
{
|
|
4214
4216
|
selectedResponse: e,
|
|
4215
4217
|
onSelectResponse: r,
|
|
@@ -4219,15 +4221,15 @@ const Zs = ({
|
|
|
4219
4221
|
]
|
|
4220
4222
|
}
|
|
4221
4223
|
);
|
|
4222
|
-
},
|
|
4223
|
-
AND: /* @__PURE__ */ d.jsx(
|
|
4224
|
-
OR: /* @__PURE__ */ d.jsx(
|
|
4225
|
-
ONE: /* @__PURE__ */ d.jsx(
|
|
4226
|
-
},
|
|
4224
|
+
}, fl = (t) => Object.entries(t), dl = {
|
|
4225
|
+
AND: /* @__PURE__ */ d.jsx(En, { size: 16, className: "fill-card" }),
|
|
4226
|
+
OR: /* @__PURE__ */ d.jsx(Nn, { size: 16, className: "fill-card" }),
|
|
4227
|
+
ONE: /* @__PURE__ */ d.jsx(Rn, { size: 14, className: "fill-card" })
|
|
4228
|
+
}, hl = {
|
|
4227
4229
|
AND: "text-green-500 dark:text-green-300/60",
|
|
4228
4230
|
OR: "text-blue-400 dark:text-blue-500",
|
|
4229
4231
|
ONE: "text-purple-500 dark:text-purple-300/60"
|
|
4230
|
-
},
|
|
4232
|
+
}, yl = ({
|
|
4231
4233
|
type: t,
|
|
4232
4234
|
isOpen: e,
|
|
4233
4235
|
className: r
|
|
@@ -4235,13 +4237,13 @@ const Zs = ({
|
|
|
4235
4237
|
"div",
|
|
4236
4238
|
{
|
|
4237
4239
|
className: D(
|
|
4238
|
-
|
|
4240
|
+
hl[t],
|
|
4239
4241
|
"relative text-sm flex py-2",
|
|
4240
4242
|
"before:border-l before:absolute before:-top-2 before:-bottom-2 before:border-border before:border-dashed before:content-['']",
|
|
4241
4243
|
r
|
|
4242
4244
|
),
|
|
4243
4245
|
children: /* @__PURE__ */ d.jsxs("div", { className: "-translate-x-[7px] flex gap-1 items-center", children: [
|
|
4244
|
-
|
|
4246
|
+
dl[t],
|
|
4245
4247
|
/* @__PURE__ */ d.jsx(
|
|
4246
4248
|
"div",
|
|
4247
4249
|
{
|
|
@@ -4249,12 +4251,12 @@ const Zs = ({
|
|
|
4249
4251
|
"translate-y-px mx-px opacity-0 group-hover:opacity-100 transition",
|
|
4250
4252
|
!e && "-rotate-90"
|
|
4251
4253
|
),
|
|
4252
|
-
children: /* @__PURE__ */ d.jsx(
|
|
4254
|
+
children: /* @__PURE__ */ d.jsx(kn, { size: 16 })
|
|
4253
4255
|
}
|
|
4254
4256
|
)
|
|
4255
4257
|
] })
|
|
4256
4258
|
}
|
|
4257
|
-
),
|
|
4259
|
+
), ml = (t) => {
|
|
4258
4260
|
const [e, r] = ve(!0);
|
|
4259
4261
|
return /* @__PURE__ */ d.jsxs(
|
|
4260
4262
|
ee.Root,
|
|
@@ -4263,17 +4265,17 @@ const Zs = ({
|
|
|
4263
4265
|
onOpenChange: () => r((o) => !o),
|
|
4264
4266
|
className: "group",
|
|
4265
4267
|
children: [
|
|
4266
|
-
/* @__PURE__ */ d.jsx(ee.Trigger, { children: /* @__PURE__ */ d.jsx(
|
|
4268
|
+
/* @__PURE__ */ d.jsx(ee.Trigger, { children: /* @__PURE__ */ d.jsx(yl, { type: t.type, isOpen: e }) }),
|
|
4267
4269
|
!e && /* @__PURE__ */ d.jsx("div", { className: "wavy-line bg-border translate-y-1" }),
|
|
4268
4270
|
/* @__PURE__ */ d.jsx(ee.Content, { children: /* @__PURE__ */ d.jsx(Ge, { schema: t.schema, level: t.level + 1 }) })
|
|
4269
4271
|
]
|
|
4270
4272
|
}
|
|
4271
4273
|
);
|
|
4272
|
-
},
|
|
4274
|
+
}, gl = {
|
|
4273
4275
|
AND: "All of",
|
|
4274
4276
|
OR: "Any of",
|
|
4275
4277
|
ONE: "One of"
|
|
4276
|
-
},
|
|
4278
|
+
}, bl = ({
|
|
4277
4279
|
schemas: t,
|
|
4278
4280
|
type: e,
|
|
4279
4281
|
isOpen: r,
|
|
@@ -4281,13 +4283,13 @@ const Zs = ({
|
|
|
4281
4283
|
toggleOpen: i
|
|
4282
4284
|
}) => /* @__PURE__ */ d.jsx(ee.Root, { open: r, onOpenChange: i, asChild: !0, children: /* @__PURE__ */ d.jsxs(de, { className: "px-6", children: [
|
|
4283
4285
|
/* @__PURE__ */ d.jsxs(ee.Trigger, { className: "flex gap-2 items-center py-2 w-full text-sm text-muted-foreground -translate-x-1.5", children: [
|
|
4284
|
-
r ? /* @__PURE__ */ d.jsx(
|
|
4285
|
-
/* @__PURE__ */ d.jsx("span", { children:
|
|
4286
|
+
r ? /* @__PURE__ */ d.jsx(An, { size: 14 }) : /* @__PURE__ */ d.jsx(qn, { size: 14 }),
|
|
4287
|
+
/* @__PURE__ */ d.jsx("span", { children: gl[e] })
|
|
4286
4288
|
] }),
|
|
4287
4289
|
/* @__PURE__ */ d.jsx(ee.Content, { className: "pb-4", children: t.map((a, n) => (
|
|
4288
4290
|
// eslint-disable-next-line react/no-array-index-key
|
|
4289
4291
|
/* @__PURE__ */ d.jsx(
|
|
4290
|
-
|
|
4292
|
+
ml,
|
|
4291
4293
|
{
|
|
4292
4294
|
type: e,
|
|
4293
4295
|
schema: a,
|
|
@@ -4296,19 +4298,19 @@ const Zs = ({
|
|
|
4296
4298
|
n
|
|
4297
4299
|
)
|
|
4298
4300
|
)) })
|
|
4299
|
-
] }) }),
|
|
4301
|
+
] }) }), vl = (t) => t.type === "object" || t.type === "array" && typeof t.items == "object" && (!t.items.type || t.items.type === "object"), _t = (t) => !!(t.oneOf ?? t.allOf ?? t.anyOf), xl = {
|
|
4300
4302
|
allOf: "AND",
|
|
4301
4303
|
anyOf: "OR",
|
|
4302
4304
|
oneOf: "ONE"
|
|
4303
|
-
},
|
|
4305
|
+
}, On = ({
|
|
4304
4306
|
schema: t,
|
|
4305
4307
|
level: e
|
|
4306
4308
|
}) => {
|
|
4307
4309
|
const [r, o] = ve(!0), i = _n(() => o((a) => !a), []);
|
|
4308
|
-
for (const [a, n] of
|
|
4310
|
+
for (const [a, n] of fl(xl))
|
|
4309
4311
|
if (t[a])
|
|
4310
4312
|
return /* @__PURE__ */ d.jsx(
|
|
4311
|
-
|
|
4313
|
+
bl,
|
|
4312
4314
|
{
|
|
4313
4315
|
schemas: t[a],
|
|
4314
4316
|
type: n,
|
|
@@ -4317,7 +4319,7 @@ const Zs = ({
|
|
|
4317
4319
|
level: e
|
|
4318
4320
|
}
|
|
4319
4321
|
);
|
|
4320
|
-
},
|
|
4322
|
+
}, $l = ({
|
|
4321
4323
|
name: t,
|
|
4322
4324
|
schema: e,
|
|
4323
4325
|
group: r,
|
|
@@ -4342,7 +4344,7 @@ const Zs = ({
|
|
|
4342
4344
|
content: e.description
|
|
4343
4345
|
}
|
|
4344
4346
|
),
|
|
4345
|
-
(_t(e) ||
|
|
4347
|
+
(_t(e) || vl(e)) && /* @__PURE__ */ d.jsxs(
|
|
4346
4348
|
ee.Root,
|
|
4347
4349
|
{
|
|
4348
4350
|
defaultOpen: i,
|
|
@@ -4350,18 +4352,18 @@ const Zs = ({
|
|
|
4350
4352
|
onOpenChange: () => s(!n),
|
|
4351
4353
|
children: [
|
|
4352
4354
|
a && /* @__PURE__ */ d.jsx(ee.Trigger, { asChild: !0, children: /* @__PURE__ */ d.jsxs(
|
|
4353
|
-
|
|
4355
|
+
Dr,
|
|
4354
4356
|
{
|
|
4355
4357
|
variant: "outline",
|
|
4356
4358
|
size: "sm",
|
|
4357
4359
|
className: "mt-2 flex gap-1.5",
|
|
4358
4360
|
children: [
|
|
4359
|
-
/* @__PURE__ */ d.jsx(
|
|
4361
|
+
/* @__PURE__ */ d.jsx(In, { size: 18 }),
|
|
4360
4362
|
n ? "Hide nested properties" : "Show nested properties"
|
|
4361
4363
|
]
|
|
4362
4364
|
}
|
|
4363
4365
|
) }),
|
|
4364
|
-
/* @__PURE__ */ d.jsx(ee.Content, { children: /* @__PURE__ */ d.jsx("div", { className: "mt-2", children: _t(e) ? /* @__PURE__ */ d.jsx(
|
|
4366
|
+
/* @__PURE__ */ d.jsx(ee.Content, { children: /* @__PURE__ */ d.jsx("div", { className: "mt-2", children: _t(e) ? /* @__PURE__ */ d.jsx(On, { schema: e, level: o + 1 }) : e.type === "object" ? /* @__PURE__ */ d.jsx(Ge, { schema: e, level: o + 1 }) : e.type === "array" && typeof e.items == "object" && /* @__PURE__ */ d.jsx(Ge, { schema: e.items, level: o + 1 }) }) })
|
|
4365
4367
|
]
|
|
4366
4368
|
}
|
|
4367
4369
|
)
|
|
@@ -4375,7 +4377,7 @@ const Zs = ({
|
|
|
4375
4377
|
return /* @__PURE__ */ d.jsx(de, { className: "p-4", children: /* @__PURE__ */ d.jsx("span", { className: "text-sm text-muted-foreground italic", children: "No response specified" }) });
|
|
4376
4378
|
const o = (i, a) => {
|
|
4377
4379
|
if (_t(i))
|
|
4378
|
-
return /* @__PURE__ */ d.jsx(
|
|
4380
|
+
return /* @__PURE__ */ d.jsx(On, { schema: i, level: a });
|
|
4379
4381
|
if (i.type === "array" && i.items) {
|
|
4380
4382
|
const n = i.items;
|
|
4381
4383
|
return typeof n.type == "string" && ["string", "number", "boolean", "integer"].includes(n.type) ? /* @__PURE__ */ d.jsxs(de, { className: "p-4", children: [
|
|
@@ -4414,7 +4416,7 @@ const Zs = ({
|
|
|
4414
4416
|
)
|
|
4415
4417
|
] });
|
|
4416
4418
|
if (i.properties) {
|
|
4417
|
-
const n =
|
|
4419
|
+
const n = Zr(
|
|
4418
4420
|
Object.entries(i.properties),
|
|
4419
4421
|
([l, c]) => {
|
|
4420
4422
|
var u;
|
|
@@ -4423,7 +4425,7 @@ const Zs = ({
|
|
|
4423
4425
|
), s = ["required", "optional", "deprecated"];
|
|
4424
4426
|
return /* @__PURE__ */ d.jsx(de, { className: "divide-y overflow-hidden", children: s.map(
|
|
4425
4427
|
(l) => n[l] && /* @__PURE__ */ d.jsx("ul", { className: "divide-y", children: n[l].map(([c, u]) => /* @__PURE__ */ d.jsx(
|
|
4426
|
-
|
|
4428
|
+
$l,
|
|
4427
4429
|
{
|
|
4428
4430
|
name: c,
|
|
4429
4431
|
schema: u,
|
|
@@ -4448,19 +4450,19 @@ const Zs = ({
|
|
|
4448
4450
|
}
|
|
4449
4451
|
)
|
|
4450
4452
|
] }) : i.additionalProperties ? /* @__PURE__ */ d.jsxs(de, { className: "my-2", children: [
|
|
4451
|
-
/* @__PURE__ */ d.jsx(
|
|
4452
|
-
/* @__PURE__ */ d.jsx(
|
|
4453
|
+
/* @__PURE__ */ d.jsx(Qn, { children: /* @__PURE__ */ d.jsx(Kn, { children: "Additional Properties:" }) }),
|
|
4454
|
+
/* @__PURE__ */ d.jsx(Dn, { children: o(
|
|
4453
4455
|
i.additionalProperties,
|
|
4454
4456
|
a + 1
|
|
4455
4457
|
) })
|
|
4456
4458
|
] }) : null;
|
|
4457
4459
|
};
|
|
4458
4460
|
return o(t, e);
|
|
4459
|
-
},
|
|
4461
|
+
}, wl = ["path", "query", "header", "cookie"], jl = ({
|
|
4460
4462
|
operationFragment: t
|
|
4461
4463
|
}) => {
|
|
4462
4464
|
var n, s, l;
|
|
4463
|
-
const e =
|
|
4465
|
+
const e = to(Sl, t), r = Zr(
|
|
4464
4466
|
e.parameters ?? [],
|
|
4465
4467
|
(c) => c.in
|
|
4466
4468
|
), o = e.responses.at(0), [i, a] = ve(o == null ? void 0 : o.statusCode);
|
|
@@ -4478,11 +4480,11 @@ const Zs = ({
|
|
|
4478
4480
|
content: e.description
|
|
4479
4481
|
}
|
|
4480
4482
|
),
|
|
4481
|
-
e.parameters && e.parameters.length > 0 && /* @__PURE__ */ d.jsx(d.Fragment, { children:
|
|
4483
|
+
e.parameters && e.parameters.length > 0 && /* @__PURE__ */ d.jsx(d.Fragment, { children: wl.flatMap(
|
|
4482
4484
|
(c) => {
|
|
4483
4485
|
var u;
|
|
4484
4486
|
return (u = r[c]) != null && u.length ? /* @__PURE__ */ d.jsx(
|
|
4485
|
-
|
|
4487
|
+
so,
|
|
4486
4488
|
{
|
|
4487
4489
|
id: e.slug,
|
|
4488
4490
|
parameters: r[c],
|
|
@@ -4492,7 +4494,7 @@ const Zs = ({
|
|
|
4492
4494
|
) : [];
|
|
4493
4495
|
}
|
|
4494
4496
|
) }),
|
|
4495
|
-
|
|
4497
|
+
oo((l = (s = (n = e.requestBody) == null ? void 0 : n.content) == null ? void 0 : s.at(0)) == null ? void 0 : l.schema, (c) => /* @__PURE__ */ d.jsxs("div", { className: "mt-4 flex flex-col gap-4", children: [
|
|
4496
4498
|
/* @__PURE__ */ d.jsx(
|
|
4497
4499
|
_e,
|
|
4498
4500
|
{
|
|
@@ -4517,13 +4519,13 @@ const Zs = ({
|
|
|
4517
4519
|
}
|
|
4518
4520
|
),
|
|
4519
4521
|
/* @__PURE__ */ d.jsxs(
|
|
4520
|
-
|
|
4522
|
+
zn,
|
|
4521
4523
|
{
|
|
4522
4524
|
onValueChange: (c) => a(c),
|
|
4523
4525
|
value: i,
|
|
4524
4526
|
children: [
|
|
4525
|
-
e.responses.length > 1 && /* @__PURE__ */ d.jsx(
|
|
4526
|
-
|
|
4527
|
+
e.responses.length > 1 && /* @__PURE__ */ d.jsx(Wn, { children: e.responses.map((c) => /* @__PURE__ */ d.jsx(
|
|
4528
|
+
Jn,
|
|
4527
4529
|
{
|
|
4528
4530
|
value: c.statusCode,
|
|
4529
4531
|
title: c.description ?? void 0,
|
|
@@ -4534,7 +4536,7 @@ const Zs = ({
|
|
|
4534
4536
|
/* @__PURE__ */ d.jsx("ul", { className: "list-none m-0 px-0", children: e.responses.map((c) => {
|
|
4535
4537
|
var u, f;
|
|
4536
4538
|
return /* @__PURE__ */ d.jsx(
|
|
4537
|
-
|
|
4539
|
+
Gn,
|
|
4538
4540
|
{
|
|
4539
4541
|
value: c.statusCode,
|
|
4540
4542
|
children: /* @__PURE__ */ d.jsx(
|
|
@@ -4553,7 +4555,7 @@ const Zs = ({
|
|
|
4553
4555
|
] })
|
|
4554
4556
|
] }),
|
|
4555
4557
|
/* @__PURE__ */ d.jsx(
|
|
4556
|
-
|
|
4558
|
+
pl,
|
|
4557
4559
|
{
|
|
4558
4560
|
selectedResponse: i,
|
|
4559
4561
|
onSelectResponse: a,
|
|
@@ -4564,7 +4566,7 @@ const Zs = ({
|
|
|
4564
4566
|
},
|
|
4565
4567
|
e.operationId
|
|
4566
4568
|
);
|
|
4567
|
-
},
|
|
4569
|
+
}, Sl = ut(
|
|
4568
4570
|
/* GraphQL */
|
|
4569
4571
|
`
|
|
4570
4572
|
fragment OperationsFragment on OperationItem {
|
|
@@ -4629,7 +4631,7 @@ const Zs = ({
|
|
|
4629
4631
|
}
|
|
4630
4632
|
}
|
|
4631
4633
|
`
|
|
4632
|
-
),
|
|
4634
|
+
), Ol = ut(
|
|
4633
4635
|
/* GraphQL */
|
|
4634
4636
|
`
|
|
4635
4637
|
query AllOperations($input: JSON!, $type: SchemaType!) {
|
|
@@ -4649,8 +4651,8 @@ const Zs = ({
|
|
|
4649
4651
|
}
|
|
4650
4652
|
}
|
|
4651
4653
|
`
|
|
4652
|
-
),
|
|
4653
|
-
const { input: t, type: e } = Bt(), r = zt(
|
|
4654
|
+
), Gl = () => {
|
|
4655
|
+
const { input: t, type: e } = Bt(), r = zt(Ol, { input: t, type: e }), o = Ht(r);
|
|
4654
4656
|
return /* @__PURE__ */ d.jsxs("div", { className: "pt-[--padding-content-top]", children: [
|
|
4655
4657
|
/* @__PURE__ */ d.jsxs(
|
|
4656
4658
|
"div",
|
|
@@ -4664,7 +4666,7 @@ const Zs = ({
|
|
|
4664
4666
|
}
|
|
4665
4667
|
),
|
|
4666
4668
|
/* @__PURE__ */ d.jsx("hr", {}),
|
|
4667
|
-
/* @__PURE__ */ d.jsx("div", { className: "my-4 flex justify-end", children: /* @__PURE__ */ d.jsx(
|
|
4669
|
+
/* @__PURE__ */ d.jsx("div", { className: "my-4 flex justify-end", children: /* @__PURE__ */ d.jsx(no, {}) }),
|
|
4668
4670
|
o.data.schema.tags.filter((i) => i.operations.length > 0).map((i) => /* @__PURE__ */ d.jsxs("div", { className: "[content-visibility:auto]", children: [
|
|
4669
4671
|
i.name && /* @__PURE__ */ d.jsx(nr, { children: i.name }),
|
|
4670
4672
|
i.description && /* @__PURE__ */ d.jsx(
|
|
@@ -4674,8 +4676,8 @@ const Zs = ({
|
|
|
4674
4676
|
content: i.description
|
|
4675
4677
|
}
|
|
4676
4678
|
),
|
|
4677
|
-
/* @__PURE__ */ d.jsx("div", { className: "operation mb-12", children: /* @__PURE__ */ d.jsx(
|
|
4678
|
-
|
|
4679
|
+
/* @__PURE__ */ d.jsx("div", { className: "operation mb-12", children: /* @__PURE__ */ d.jsx(Vn, { children: i.operations.map((a) => /* @__PURE__ */ d.jsx(
|
|
4680
|
+
jl,
|
|
4679
4681
|
{
|
|
4680
4682
|
operationFragment: a
|
|
4681
4683
|
},
|
|
@@ -4685,7 +4687,7 @@ const Zs = ({
|
|
|
4685
4687
|
] });
|
|
4686
4688
|
};
|
|
4687
4689
|
export {
|
|
4688
|
-
|
|
4689
|
-
|
|
4690
|
+
Gl as OperationList,
|
|
4691
|
+
Sl as OperationsFragment
|
|
4690
4692
|
};
|
|
4691
|
-
//# sourceMappingURL=OperationList-
|
|
4693
|
+
//# sourceMappingURL=OperationList-BkNQEsNs.js.map
|