apiuikit 1.5.0 → 1.5.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +9 -6
- package/dist/{CodeSamples-BTbc5r5x.js → CodeSamples-3fEAwC7U.js} +894 -908
- package/dist/CodeSamples-CtJp4xci.cjs +50 -0
- package/dist/LogoExtension-Cg0OHsOO.cjs +1 -0
- package/dist/LogoExtension-DBlTRKT3.js +17 -0
- package/dist/apiuikit.cjs.js +1 -1
- package/dist/apiuikit.css +1 -1
- package/dist/apiuikit.es.js +16 -15
- package/dist/components/DocumentTopBar.d.ts +13 -0
- package/dist/components/InfoMetadata.d.ts +1 -1
- package/dist/components/MarkdownExportMenu.d.ts +2 -4
- package/dist/components/SearchPanel.d.ts +2 -1
- package/dist/components/Section.d.ts +2 -0
- package/dist/config/config.d.ts +11 -0
- package/dist/containers/AsyncAPI/AsyncAPIDocumentProvider.d.ts +1 -1
- package/dist/containers/Information/Information.d.ts +1 -0
- package/dist/containers/Information/InformationSection.d.ts +9 -1
- package/dist/containers/Information/OpenAPIInformation.d.ts +2 -1
- package/dist/containers/OpenAPI/OpenAPIDocumentProvider.d.ts +1 -1
- package/dist/contexts/useSpec.d.ts +5 -1
- package/dist/helpers/markdownForLlm.d.ts +7 -0
- package/dist/hooks/useDocumentProviderValue.d.ts +2 -0
- package/dist/{index-B56IGsKQ.cjs → index-BBQWVHuB.cjs} +1 -1
- package/dist/{index-C1wJpOpO.js → index-BQeCkb1z.js} +1 -1
- package/dist/index-C2kuzQch.cjs +180 -0
- package/dist/{index-SjuDObn0.cjs → index-Cp1PIb8-.cjs} +1 -1
- package/dist/{index-B_FmNLVS.js → index-DS1UYBq6.js} +3848 -3749
- package/dist/{index-BqoxEOEn.js → index-DuK6tYTi.js} +1 -1
- package/dist/index.d.ts +1 -0
- package/dist/markdown.cjs +16 -13
- package/dist/markdown.d.ts +1 -0
- package/dist/markdown.es.js +201 -189
- package/dist/{protoToJsonSchema-BE53lwwY.cjs → protoToJsonSchema-DehbDBi4.cjs} +1 -1
- package/dist/{protoToJsonSchema-DuD3V4uf.js → protoToJsonSchema-lLl_CPoQ.js} +1 -1
- package/dist/{protobufSchemaParser-SgDax0hE.cjs → protobufSchemaParser-5IiEfmHU.cjs} +1 -1
- package/dist/{protobufSchemaParser-DYXXb9bI.js → protobufSchemaParser-Cmr_zqRL.js} +2 -2
- package/dist/utils/scrollLock.d.ts +6 -0
- package/package.json +3 -2
- package/dist/CodeSamples-DnUDjxCK.cjs +0 -50
- package/dist/LogoExtension-BOYrY_RE.cjs +0 -1
- package/dist/LogoExtension-HOlSsQf-.js +0 -27
- package/dist/index-Cb-MitPO.cjs +0 -177
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
import { jsxs as
|
|
2
|
-
import { useId as
|
|
3
|
-
import { g as
|
|
4
|
-
function
|
|
1
|
+
import { jsxs as nr, jsx as Ne } from "react/jsx-runtime";
|
|
2
|
+
import { useId as kn, useMemo as ze, useState as gt, useEffect as or } from "react";
|
|
3
|
+
import { g as An, c as rt, a as Rn, u as Nn, b as ir, e as qn, o as _n, C as Ln, h as In } from "./index-DS1UYBq6.js";
|
|
4
|
+
function Kr(t, e = /* @__PURE__ */ new Set()) {
|
|
5
5
|
if (e.has(t)) return t;
|
|
6
6
|
if (t.type === "object" && t.properties && typeof t.properties == "object") {
|
|
7
7
|
e.add(t);
|
|
@@ -9,7 +9,7 @@ function Yr(t, e = /* @__PURE__ */ new Set()) {
|
|
|
9
9
|
const r = {};
|
|
10
10
|
for (const [n, s] of Object.entries(t.properties)) {
|
|
11
11
|
const o = /id$/i.test(n) && s.type === "string" && !s.format && !s.examples, a = s.type === "string" && !s.format && !s.examples && !s.enum;
|
|
12
|
-
r[n] = o ? { ...s, format: "uuid" } : a ? { ...s, examples: ["string"] } :
|
|
12
|
+
r[n] = o ? { ...s, format: "uuid" } : a ? { ...s, examples: ["string"] } : Kr(s, e);
|
|
13
13
|
}
|
|
14
14
|
return { ...t, properties: r };
|
|
15
15
|
} finally {
|
|
@@ -18,10 +18,10 @@ function Yr(t, e = /* @__PURE__ */ new Set()) {
|
|
|
18
18
|
}
|
|
19
19
|
return t;
|
|
20
20
|
}
|
|
21
|
-
async function
|
|
21
|
+
async function Un(t) {
|
|
22
22
|
try {
|
|
23
23
|
const { generate: e } = await import("./index-DCDYBZcY.js");
|
|
24
|
-
return await e(
|
|
24
|
+
return await e(Kr(t), {
|
|
25
25
|
seed: 42,
|
|
26
26
|
useExamplesValue: !0,
|
|
27
27
|
optionalsProbability: 1
|
|
@@ -30,7 +30,7 @@ async function Hn(t) {
|
|
|
30
30
|
return;
|
|
31
31
|
}
|
|
32
32
|
}
|
|
33
|
-
const
|
|
33
|
+
const ar = "", sr = `
|
|
34
34
|
`;
|
|
35
35
|
var E = class {
|
|
36
36
|
/**
|
|
@@ -38,7 +38,7 @@ var E = class {
|
|
|
38
38
|
* Lines are aggregated in a `code` array, and need to be joined to obtain a proper code snippet.
|
|
39
39
|
*/
|
|
40
40
|
constructor({ indent: t, join: e } = {}) {
|
|
41
|
-
this.postProcessors = [], this.code = [], this.indentationCharacter =
|
|
41
|
+
this.postProcessors = [], this.code = [], this.indentationCharacter = ar, this.lineJoin = sr, this.indentLine = (r, n = 0) => `${this.indentationCharacter.repeat(n)}${r}`, this.unshift = (r, n) => {
|
|
42
42
|
const s = this.indentLine(r, n);
|
|
43
43
|
this.code.unshift(s);
|
|
44
44
|
}, this.push = (r, n) => {
|
|
@@ -55,18 +55,18 @@ var E = class {
|
|
|
55
55
|
return this.postProcessors.reduce((n, s) => s(n), r);
|
|
56
56
|
}, this.addPostProcessor = (r) => {
|
|
57
57
|
this.postProcessors = [...this.postProcessors, r];
|
|
58
|
-
}, this.indentationCharacter = t ||
|
|
58
|
+
}, this.indentationCharacter = t || ar, this.lineJoin = e ?? sr;
|
|
59
59
|
}
|
|
60
|
-
},
|
|
60
|
+
}, Fn = function(t) {
|
|
61
61
|
return Object.prototype.toString.call(t) === "[object RegExp]";
|
|
62
|
-
},
|
|
62
|
+
}, Mn = function(t) {
|
|
63
63
|
var e = typeof t;
|
|
64
64
|
return t !== null && (e === "object" || e === "function");
|
|
65
|
-
},
|
|
66
|
-
Object.defineProperty(
|
|
67
|
-
|
|
68
|
-
const
|
|
69
|
-
var
|
|
65
|
+
}, Dt = {};
|
|
66
|
+
Object.defineProperty(Dt, "__esModule", { value: !0 });
|
|
67
|
+
Dt.default = (t) => Object.getOwnPropertySymbols(t).filter((e) => Object.prototype.propertyIsEnumerable.call(t, e));
|
|
68
|
+
const Hn = Fn, Bn = Mn, Wn = Dt.default;
|
|
69
|
+
var Jn = (t, e, r) => {
|
|
70
70
|
const n = [];
|
|
71
71
|
return (function s(o, a, i) {
|
|
72
72
|
a = a || {}, a.indent = a.indent || " ", i = i || "";
|
|
@@ -93,7 +93,7 @@ var Vn = (t, e, r) => {
|
|
|
93
93
|
};
|
|
94
94
|
if (n.indexOf(o) !== -1)
|
|
95
95
|
return '"[Circular]"';
|
|
96
|
-
if (o == null || typeof o == "number" || typeof o == "boolean" || typeof o == "function" || typeof o == "symbol" ||
|
|
96
|
+
if (o == null || typeof o == "number" || typeof o == "boolean" || typeof o == "function" || typeof o == "symbol" || Hn(o))
|
|
97
97
|
return String(o);
|
|
98
98
|
if (o instanceof Date)
|
|
99
99
|
return `new Date('${o.toISOString()}')`;
|
|
@@ -101,22 +101,22 @@ var Vn = (t, e, r) => {
|
|
|
101
101
|
if (o.length === 0)
|
|
102
102
|
return "[]";
|
|
103
103
|
n.push(o);
|
|
104
|
-
const f = "[" + c.newLine + o.map((u,
|
|
105
|
-
const
|
|
104
|
+
const f = "[" + c.newLine + o.map((u, d) => {
|
|
105
|
+
const p = o.length - 1 === d ? c.newLine : "," + c.newLineOrSpace;
|
|
106
106
|
let h = s(u, a, i + a.indent);
|
|
107
|
-
return a.transform && (h = a.transform(o,
|
|
107
|
+
return a.transform && (h = a.transform(o, d, h)), c.indent + h + p;
|
|
108
108
|
}).join("") + c.pad + "]";
|
|
109
109
|
return n.pop(), l(f);
|
|
110
110
|
}
|
|
111
|
-
if (
|
|
112
|
-
let f = Object.keys(o).concat(
|
|
113
|
-
if (a.filter && (f = f.filter((
|
|
111
|
+
if (Bn(o)) {
|
|
112
|
+
let f = Object.keys(o).concat(Wn(o));
|
|
113
|
+
if (a.filter && (f = f.filter((d) => a.filter(o, d))), f.length === 0)
|
|
114
114
|
return "{}";
|
|
115
115
|
n.push(o);
|
|
116
|
-
const u = "{" + c.newLine + f.map((
|
|
117
|
-
const h = f.length - 1 ===
|
|
118
|
-
let
|
|
119
|
-
return a.transform && (
|
|
116
|
+
const u = "{" + c.newLine + f.map((d, p) => {
|
|
117
|
+
const h = f.length - 1 === p ? c.newLine : "," + c.newLineOrSpace, m = typeof d == "symbol", b = !m && /^[a-z$_][a-z$_0-9]*$/i.test(d), $ = m || b ? d : s(d, a);
|
|
118
|
+
let y = s(o[d], a, i + a.indent);
|
|
119
|
+
return a.transform && (y = a.transform(o, d, y)), c.indent + String($) + ": " + y + h;
|
|
120
120
|
}).join("") + c.pad + "}";
|
|
121
121
|
return n.pop(), l(u);
|
|
122
122
|
}
|
|
@@ -124,17 +124,17 @@ var Vn = (t, e, r) => {
|
|
|
124
124
|
` ? "\\n" : "\\r"), a.singleQuotes === !1 ? (o = o.replace(/"/g, '\\"'), `"${o}"`) : (o = o.replace(/\\?'/g, "\\'"), `'${o}'`);
|
|
125
125
|
})(t, e, r);
|
|
126
126
|
};
|
|
127
|
-
const oe = /* @__PURE__ */
|
|
127
|
+
const oe = /* @__PURE__ */ An(Jn), J = (t, e) => Object.keys(t).find((r) => r.toLowerCase() === e.toLowerCase()), se = (t, e) => {
|
|
128
128
|
const r = J(t, e);
|
|
129
129
|
if (r)
|
|
130
130
|
return t[r];
|
|
131
|
-
}, nt = (t, e) => !!J(t, e),
|
|
131
|
+
}, nt = (t, e) => !!J(t, e), Gn = (t) => [
|
|
132
132
|
"application/json",
|
|
133
133
|
"application/x-json",
|
|
134
134
|
"text/json",
|
|
135
135
|
"text/x-json",
|
|
136
136
|
"+json"
|
|
137
|
-
].some((e) => t.indexOf(e) > -1),
|
|
137
|
+
].some((e) => t.indexOf(e) > -1), zn = {
|
|
138
138
|
info: {
|
|
139
139
|
key: "agent",
|
|
140
140
|
title: "Agent",
|
|
@@ -168,7 +168,7 @@ function Me(t, e = {}) {
|
|
|
168
168
|
return [...t.toString()].map((o) => o === "\b" ? `${n}b` : o === " " ? `${n}t` : o === `
|
|
169
169
|
` ? s ? `${n}n` : o : o === "\f" ? `${n}f` : o === "\r" ? s ? `${n}r` : o : o === n ? n + n : o === r ? n + r : o < " " || o > "~" ? JSON.stringify(o).slice(1, -1) : o).join("");
|
|
170
170
|
}
|
|
171
|
-
const Ce = (t) => Me(t, { delimiter: "'" }), I = (t) => Me(t, { delimiter: '"' }),
|
|
171
|
+
const Ce = (t) => Me(t, { delimiter: "'" }), I = (t) => Me(t, { delimiter: '"' }), Vn = {
|
|
172
172
|
info: {
|
|
173
173
|
key: "c",
|
|
174
174
|
title: "C",
|
|
@@ -193,23 +193,23 @@ const Ce = (t) => Me(t, { delimiter: "'" }), I = (t) => Me(t, { delimiter: '"' }
|
|
|
193
193
|
}
|
|
194
194
|
} }
|
|
195
195
|
};
|
|
196
|
-
var
|
|
196
|
+
var cr = class {
|
|
197
197
|
constructor(t) {
|
|
198
198
|
this.name = "", this.toString = () => `:${this.name}`, this.name = t;
|
|
199
199
|
}
|
|
200
|
-
},
|
|
200
|
+
}, Kn = class {
|
|
201
201
|
constructor(t) {
|
|
202
202
|
this.path = "", this.toString = () => `(clojure.java.io/file "${this.path}")`, this.path = t;
|
|
203
203
|
}
|
|
204
204
|
};
|
|
205
|
-
const
|
|
205
|
+
const Dr = (t) => t === void 0 ? null : t === null ? "null" : t.constructor.name.toLowerCase(), Qr = (t) => t === void 0 ? !0 : Dr(t) === "object" ? Object.keys(t).length === 0 : !1, lr = (t) => (Object.keys(t).filter((e) => Qr(t[e])).forEach((e) => {
|
|
206
206
|
delete t[e];
|
|
207
207
|
}), t), Qe = (t, e) => {
|
|
208
208
|
const r = " ".repeat(t);
|
|
209
209
|
return e.replace(/\n/g, `
|
|
210
210
|
${r}`);
|
|
211
|
-
},
|
|
212
|
-
switch (
|
|
211
|
+
}, It = (t) => {
|
|
212
|
+
switch (Dr(t)) {
|
|
213
213
|
case "string":
|
|
214
214
|
return `"${t.replace(/"/g, '\\"')}"`;
|
|
215
215
|
case "file":
|
|
@@ -221,18 +221,18 @@ ${r}`);
|
|
|
221
221
|
case "regexp":
|
|
222
222
|
return `#"${t.source}"`;
|
|
223
223
|
case "object": {
|
|
224
|
-
const e = Object.keys(t).reduce((r, n) => `${r}:${n} ${Qe(n.length + 2,
|
|
224
|
+
const e = Object.keys(t).reduce((r, n) => `${r}:${n} ${Qe(n.length + 2, It(t[n]))}
|
|
225
225
|
`, "").trim();
|
|
226
226
|
return `{${Qe(1, e)}}`;
|
|
227
227
|
}
|
|
228
228
|
case "array": {
|
|
229
|
-
const e = t.reduce((r, n) => `${r} ${
|
|
229
|
+
const e = t.reduce((r, n) => `${r} ${It(n)}`, "").trim();
|
|
230
230
|
return `[${Qe(1, e)}]`;
|
|
231
231
|
}
|
|
232
232
|
default:
|
|
233
233
|
return t.toString();
|
|
234
234
|
}
|
|
235
|
-
},
|
|
235
|
+
}, Dn = {
|
|
236
236
|
info: {
|
|
237
237
|
key: "clojure",
|
|
238
238
|
title: "Clojure",
|
|
@@ -265,7 +265,7 @@ ${r}`);
|
|
|
265
265
|
switch (r.mimeType) {
|
|
266
266
|
case "application/json":
|
|
267
267
|
{
|
|
268
|
-
l["content-type"] = new
|
|
268
|
+
l["content-type"] = new cr("json"), l["form-params"] = r.jsonObj;
|
|
269
269
|
const f = J(l.headers, "content-type");
|
|
270
270
|
f && delete l.headers[f];
|
|
271
271
|
}
|
|
@@ -288,7 +288,7 @@ ${r}`);
|
|
|
288
288
|
if (r.params) {
|
|
289
289
|
l.multipart = r.params.map((u) => u.fileName && !u.value ? {
|
|
290
290
|
name: u.name,
|
|
291
|
-
content: new
|
|
291
|
+
content: new Kn(u.fileName)
|
|
292
292
|
} : {
|
|
293
293
|
name: u.name,
|
|
294
294
|
content: u.value
|
|
@@ -301,22 +301,22 @@ ${r}`);
|
|
|
301
301
|
switch (se(l.headers, "accept")) {
|
|
302
302
|
case "application/json":
|
|
303
303
|
{
|
|
304
|
-
l.accept = new
|
|
304
|
+
l.accept = new cr("json");
|
|
305
305
|
const f = J(l.headers, "accept");
|
|
306
306
|
f && delete l.headers[f];
|
|
307
307
|
}
|
|
308
308
|
break;
|
|
309
309
|
}
|
|
310
310
|
if (a(`(require '[clj-http.client :as client])
|
|
311
|
-
`),
|
|
311
|
+
`), Qr(lr(l))) a(`(client/${e} "${n}")`);
|
|
312
312
|
else {
|
|
313
|
-
const f = 11 + e.length + n.length, u = Qe(f,
|
|
313
|
+
const f = 11 + e.length + n.length, u = Qe(f, It(lr(l)));
|
|
314
314
|
a(`(client/${e} "${n}" ${u})`);
|
|
315
315
|
}
|
|
316
316
|
return i();
|
|
317
317
|
}
|
|
318
318
|
} }
|
|
319
|
-
},
|
|
319
|
+
}, Qn = {
|
|
320
320
|
info: {
|
|
321
321
|
key: "crystal",
|
|
322
322
|
title: "Crystal",
|
|
@@ -334,8 +334,8 @@ ${r}`);
|
|
|
334
334
|
const { insecureSkipVerify: o = !1 } = s, { push: a, blank: i, join: c } = new E();
|
|
335
335
|
a('require "http/client"'), i(), a(`url = "${e}"`);
|
|
336
336
|
const l = Object.keys(n);
|
|
337
|
-
l.length && (a("headers = HTTP::Headers{"), l.forEach((
|
|
338
|
-
a(` "${
|
|
337
|
+
l.length && (a("headers = HTTP::Headers{"), l.forEach((m) => {
|
|
338
|
+
a(` "${m}" => "${I(n[m])}"`);
|
|
339
339
|
}), a("}")), r.text && a(`reqBody = ${JSON.stringify(r.text)}`), i();
|
|
340
340
|
const f = t.toUpperCase(), u = [
|
|
341
341
|
"GET",
|
|
@@ -345,11 +345,11 @@ ${r}`);
|
|
|
345
345
|
"PATCH",
|
|
346
346
|
"PUT",
|
|
347
347
|
"OPTIONS"
|
|
348
|
-
],
|
|
349
|
-
return u.includes(f) ? a(`response = HTTP::Client.${f.toLowerCase()} url${
|
|
348
|
+
], d = l.length ? ", headers: headers" : "", p = r.text ? ", body: reqBody" : "", h = o ? ", tls: OpenSSL::SSL::Context::Client.insecure" : "";
|
|
349
|
+
return u.includes(f) ? a(`response = HTTP::Client.${f.toLowerCase()} url${d}${p}${h}`) : a(`response = HTTP::Client.exec "${f}", url${d}${p}${h}`), a("puts response.body"), c();
|
|
350
350
|
}
|
|
351
351
|
} }
|
|
352
|
-
},
|
|
352
|
+
}, Yn = (t) => {
|
|
353
353
|
let e = se(t, "accept-encoding");
|
|
354
354
|
if (!e) return [];
|
|
355
355
|
const r = {
|
|
@@ -365,7 +365,7 @@ ${r}`);
|
|
|
365
365
|
}
|
|
366
366
|
});
|
|
367
367
|
}), n;
|
|
368
|
-
},
|
|
368
|
+
}, Xn = {
|
|
369
369
|
info: {
|
|
370
370
|
key: "httpclient",
|
|
371
371
|
title: "HttpClient",
|
|
@@ -374,14 +374,14 @@ ${r}`);
|
|
|
374
374
|
extname: ".cs"
|
|
375
375
|
},
|
|
376
376
|
convert: ({ allHeaders: t, postData: e, method: r, fullUrl: n }, s) => {
|
|
377
|
-
var
|
|
377
|
+
var d, p;
|
|
378
378
|
const { push: o, join: a } = new E({ indent: {
|
|
379
379
|
indent: " ",
|
|
380
380
|
...s
|
|
381
381
|
}.indent });
|
|
382
382
|
o("using System.Net.Http.Headers;");
|
|
383
383
|
let i = "";
|
|
384
|
-
const c = !!t.cookie, l =
|
|
384
|
+
const c = !!t.cookie, l = Yn(t);
|
|
385
385
|
(c || l.length) && (i = "clientHandler", o("var clientHandler = new HttpClientHandler"), o("{"), c && o("UseCookies = false,", 1), l.length && o(`AutomaticDecompression = ${l.join(" | ")},`, 1), o("};")), o(`var client = new HttpClient(${i});`), o("var request = new HttpRequestMessage"), o("{");
|
|
386
386
|
const f = [
|
|
387
387
|
"GET",
|
|
@@ -410,13 +410,13 @@ ${r}`);
|
|
|
410
410
|
const h = e.mimeType;
|
|
411
411
|
switch (h) {
|
|
412
412
|
case "application/x-www-form-urlencoded":
|
|
413
|
-
o("Content = new FormUrlEncodedContent(new Dictionary<string, string>", 1), o("{", 1), (
|
|
414
|
-
o(`{ "${
|
|
413
|
+
o("Content = new FormUrlEncodedContent(new Dictionary<string, string>", 1), o("{", 1), (d = e.params) == null || d.forEach((m) => {
|
|
414
|
+
o(`{ "${m.name}", "${m.value}" },`, 2);
|
|
415
415
|
}), o("}),", 1);
|
|
416
416
|
break;
|
|
417
417
|
case "multipart/form-data":
|
|
418
|
-
o("Content = new MultipartFormDataContent", 1), o("{", 1), (
|
|
419
|
-
o(`new StringContent(${JSON.stringify(
|
|
418
|
+
o("Content = new MultipartFormDataContent", 1), o("{", 1), (p = e.params) == null || p.forEach((m) => {
|
|
419
|
+
o(`new StringContent(${JSON.stringify(m.value || "")})`, 2), o("{", 2), o("Headers =", 3), o("{", 3), m.contentType && o(`ContentType = new MediaTypeHeaderValue("${m.contentType}"),`, 4), o('ContentDisposition = new ContentDispositionHeaderValue("form-data")', 4), o("{", 4), o(`Name = "${m.name}",`, 5), m.fileName && o(`FileName = "${m.fileName}",`, 5), o("}", 4), o("}", 3), o("},", 2);
|
|
420
420
|
}), o("},", 1);
|
|
421
421
|
break;
|
|
422
422
|
default:
|
|
@@ -427,10 +427,10 @@ ${r}`);
|
|
|
427
427
|
return o("};"), o("using (var response = await client.SendAsync(request))"), o("{"), o("response.EnsureSuccessStatusCode();", 1), o("var body = await response.Content.ReadAsStringAsync();", 1), o("Console.WriteLine(body);", 1), o("}"), a();
|
|
428
428
|
}
|
|
429
429
|
};
|
|
430
|
-
function
|
|
430
|
+
function Zn(t) {
|
|
431
431
|
return t[0].toUpperCase() + t.slice(1).toLowerCase();
|
|
432
432
|
}
|
|
433
|
-
const
|
|
433
|
+
const eo = {
|
|
434
434
|
info: {
|
|
435
435
|
key: "csharp",
|
|
436
436
|
title: "C#",
|
|
@@ -438,7 +438,7 @@ const no = {
|
|
|
438
438
|
cli: "dotnet"
|
|
439
439
|
},
|
|
440
440
|
clientsById: {
|
|
441
|
-
httpclient:
|
|
441
|
+
httpclient: Xn,
|
|
442
442
|
restsharp: {
|
|
443
443
|
info: {
|
|
444
444
|
key: "restsharp",
|
|
@@ -492,13 +492,13 @@ const no = {
|
|
|
492
492
|
if (!s.text) break;
|
|
493
493
|
a(`request.AddStringBody("${s.text}", "${s.mimeType}");`);
|
|
494
494
|
}
|
|
495
|
-
return a(`var response = await client.${
|
|
495
|
+
return a(`var response = await client.${Zn(t)}Async(request);
|
|
496
496
|
`), a(`Console.WriteLine("{0}", response.Content);
|
|
497
497
|
`), i();
|
|
498
498
|
}
|
|
499
499
|
}
|
|
500
500
|
}
|
|
501
|
-
},
|
|
501
|
+
}, to = {
|
|
502
502
|
info: {
|
|
503
503
|
key: "go",
|
|
504
504
|
title: "Go",
|
|
@@ -514,18 +514,18 @@ const no = {
|
|
|
514
514
|
extname: ".go"
|
|
515
515
|
},
|
|
516
516
|
convert: ({ postData: t, method: e, allHeaders: r, fullUrl: n }, s = {}) => {
|
|
517
|
-
const { blank: o, push: a, join: i } = new E({ indent: " " }), { showBoilerplate: c = !0, checkErrors: l = !1, printBody: f = !0, timeout: u = -1, insecureSkipVerify:
|
|
517
|
+
const { blank: o, push: a, join: i } = new E({ indent: " " }), { showBoilerplate: c = !0, checkErrors: l = !1, printBody: f = !0, timeout: u = -1, insecureSkipVerify: d = !1 } = s, p = l ? "err" : "_", h = c ? 1 : 0, m = () => {
|
|
518
518
|
l && (a("if err != nil {", h), a("panic(err)", h + 1), a("}", h));
|
|
519
519
|
};
|
|
520
|
-
c && (a("package main"), o(), a("import ("), a('"fmt"', h), u > 0 && a('"time"', h),
|
|
521
|
-
const
|
|
522
|
-
return $ && (a("client := http.Client{", h),
|
|
523
|
-
a(`req.Header.Add("${
|
|
524
|
-
}), o()), a(`res, ${
|
|
520
|
+
c && (a("package main"), o(), a("import ("), a('"fmt"', h), u > 0 && a('"time"', h), d && a('"crypto/tls"', h), t.text && a('"strings"', h), a('"net/http"', h), f && a('"io"', h), a(")"), o(), a("func main() {"), o()), d && (a("insecureTransport := http.DefaultTransport.(*http.Transport).Clone()", h), a("insecureTransport.TLSClientConfig = &tls.Config{InsecureSkipVerify: true}", h));
|
|
521
|
+
const b = u > 0, $ = b || d, y = $ ? "client" : "http.DefaultClient";
|
|
522
|
+
return $ && (a("client := http.Client{", h), b && a(`Timeout: time.Duration(${u} * time.Second),`, h + 1), d && a("Transport: insecureTransport,", h + 1), a("}", h), o()), a(`url := "${n}"`, h), o(), t.text ? (a(`payload := strings.NewReader(${JSON.stringify(t.text)})`, h), o(), a(`req, ${p} := http.NewRequest("${e}", url, payload)`, h), o()) : (a(`req, ${p} := http.NewRequest("${e}", url, nil)`, h), o()), m(), Object.keys(r).length && (Object.keys(r).forEach((g) => {
|
|
523
|
+
a(`req.Header.Add("${g}", "${I(r[g])}")`, h);
|
|
524
|
+
}), o()), a(`res, ${p} := ${y}.Do(req)`, h), m(), f && (o(), a("defer res.Body.Close()", h), a(`body, ${p} := io.ReadAll(res.Body)`, h), m()), o(), f && a("fmt.Println(string(body))", h), c && (o(), a("}")), i();
|
|
525
525
|
}
|
|
526
526
|
} }
|
|
527
|
-
},
|
|
528
|
-
`,
|
|
527
|
+
}, fr = `\r
|
|
528
|
+
`, ro = {
|
|
529
529
|
info: {
|
|
530
530
|
key: "http",
|
|
531
531
|
title: "HTTP",
|
|
@@ -547,19 +547,19 @@ const no = {
|
|
|
547
547
|
...a
|
|
548
548
|
}, { blank: c, push: l, join: f } = new E({
|
|
549
549
|
indent: "",
|
|
550
|
-
join:
|
|
550
|
+
join: fr
|
|
551
551
|
});
|
|
552
552
|
l(`${t} ${i.absoluteURI ? e : r.path} ${n}`);
|
|
553
553
|
const u = Object.keys(s);
|
|
554
554
|
u.forEach((h) => {
|
|
555
|
-
const
|
|
556
|
-
l(`${
|
|
555
|
+
const m = h.toLowerCase().replace(/(^|-)(\w)/g, (b) => b.toUpperCase());
|
|
556
|
+
l(`${m}: ${s[h]}`);
|
|
557
557
|
}), i.autoHost && !u.includes("host") && l(`Host: ${r.host}`), i.autoContentLength && o.text && !u.includes("content-length") && l(`Content-Length: ${Buffer.byteLength(o.text, "ascii").toString()}`), c();
|
|
558
|
-
const
|
|
559
|
-
return `${
|
|
558
|
+
const d = f(), p = o.text || "";
|
|
559
|
+
return `${d}${fr}${p}`;
|
|
560
560
|
}
|
|
561
561
|
} }
|
|
562
|
-
},
|
|
562
|
+
}, no = {
|
|
563
563
|
info: {
|
|
564
564
|
key: "java",
|
|
565
565
|
title: "Java",
|
|
@@ -659,7 +659,7 @@ const no = {
|
|
|
659
659
|
}
|
|
660
660
|
}
|
|
661
661
|
}
|
|
662
|
-
},
|
|
662
|
+
}, oo = {
|
|
663
663
|
info: {
|
|
664
664
|
key: "javascript",
|
|
665
665
|
title: "JavaScript",
|
|
@@ -781,12 +781,12 @@ const no = {
|
|
|
781
781
|
return l.headers && !Object.keys(l.headers).length && delete l.headers, c(`const options = ${oe(l, {
|
|
782
782
|
indent: o.indent,
|
|
783
783
|
inlineCharacterLimit: 80,
|
|
784
|
-
transform: (f, u,
|
|
784
|
+
transform: (f, u, d) => {
|
|
785
785
|
if (u === "body") {
|
|
786
|
-
if (r.mimeType === "application/x-www-form-urlencoded") return `new URLSearchParams(${
|
|
787
|
-
if (r.mimeType === "application/json") return `JSON.stringify(${
|
|
786
|
+
if (r.mimeType === "application/x-www-form-urlencoded") return `new URLSearchParams(${d})`;
|
|
787
|
+
if (r.mimeType === "application/json") return `JSON.stringify(${d})`;
|
|
788
788
|
}
|
|
789
|
-
return
|
|
789
|
+
return d;
|
|
790
790
|
}
|
|
791
791
|
})};`), a(), r.params && r.mimeType === "multipart/form-data" && (c("options.body = form;"), a()), c(`fetch('${n}', options)`), c(".then(res => res.json())", 1), c(".then(res => console.log(res))", 1), c(".catch(err => console.error(err));", 1), i();
|
|
792
792
|
}
|
|
@@ -835,7 +835,7 @@ const no = {
|
|
|
835
835
|
}
|
|
836
836
|
}
|
|
837
837
|
}
|
|
838
|
-
},
|
|
838
|
+
}, io = {
|
|
839
839
|
info: {
|
|
840
840
|
key: "json",
|
|
841
841
|
title: "JSON",
|
|
@@ -876,7 +876,7 @@ const no = {
|
|
|
876
876
|
return typeof n > "u" || n === "" ? "No JSON body" : JSON.stringify(n, null, r.indent);
|
|
877
877
|
}
|
|
878
878
|
} }
|
|
879
|
-
},
|
|
879
|
+
}, ao = {
|
|
880
880
|
info: {
|
|
881
881
|
key: "kotlin",
|
|
882
882
|
title: "Kotlin",
|
|
@@ -912,7 +912,7 @@ const no = {
|
|
|
912
912
|
}), i(".build()", 1), o(), i("val response = client.newCall(request).execute()"), a();
|
|
913
913
|
}
|
|
914
914
|
} }
|
|
915
|
-
},
|
|
915
|
+
}, so = {
|
|
916
916
|
info: {
|
|
917
917
|
key: "node",
|
|
918
918
|
title: "Node.js",
|
|
@@ -1008,39 +1008,39 @@ const no = {
|
|
|
1008
1008
|
...o
|
|
1009
1009
|
};
|
|
1010
1010
|
let i = !1;
|
|
1011
|
-
const { blank: c, push: l, join: f, unshift: u } = new E({ indent: a.indent }),
|
|
1012
|
-
switch (Object.keys(n).length && (
|
|
1011
|
+
const { blank: c, push: l, join: f, unshift: u } = new E({ indent: a.indent }), d = e, p = { method: t };
|
|
1012
|
+
switch (Object.keys(n).length && (p.headers = n), r.mimeType) {
|
|
1013
1013
|
case "application/x-www-form-urlencoded":
|
|
1014
|
-
l("const encodedParams = new URLSearchParams();"), (h = r.params) == null || h.forEach((
|
|
1015
|
-
l(`encodedParams.set('${
|
|
1016
|
-
}),
|
|
1014
|
+
l("const encodedParams = new URLSearchParams();"), (h = r.params) == null || h.forEach((m) => {
|
|
1015
|
+
l(`encodedParams.set('${m.name}', '${m.value}');`);
|
|
1016
|
+
}), p.body = "encodedParams", c();
|
|
1017
1017
|
break;
|
|
1018
1018
|
case "application/json":
|
|
1019
|
-
r.jsonObj && (
|
|
1019
|
+
r.jsonObj && (p.body = r.jsonObj);
|
|
1020
1020
|
break;
|
|
1021
1021
|
case "multipart/form-data": {
|
|
1022
1022
|
if (!r.params) break;
|
|
1023
|
-
const
|
|
1024
|
-
|
|
1025
|
-
if (!
|
|
1026
|
-
l(`formData.append('${
|
|
1023
|
+
const m = J(n, "content-type");
|
|
1024
|
+
m && delete n[m], l("const formData = new FormData();"), r.params.forEach((b) => {
|
|
1025
|
+
if (!b.fileName && !b.contentType) {
|
|
1026
|
+
l(`formData.append('${b.name}', '${b.value}');`);
|
|
1027
1027
|
return;
|
|
1028
1028
|
}
|
|
1029
|
-
|
|
1030
|
-
}),
|
|
1029
|
+
b.fileName && (i = !0, l(`formData.append('${b.name}', await new Response(fs.createReadStream('${b.fileName}')).blob());`));
|
|
1030
|
+
}), p.body = "formData", c();
|
|
1031
1031
|
break;
|
|
1032
1032
|
}
|
|
1033
1033
|
default:
|
|
1034
|
-
r.text && (
|
|
1034
|
+
r.text && (p.body = r.text);
|
|
1035
1035
|
}
|
|
1036
1036
|
if (s.length) {
|
|
1037
|
-
const
|
|
1038
|
-
|
|
1037
|
+
const m = s.map(({ name: b, value: $ }) => `${encodeURIComponent(b)}=${encodeURIComponent($)}`).join("; ");
|
|
1038
|
+
p.headers || (p.headers = {}), p.headers.cookie = m;
|
|
1039
1039
|
}
|
|
1040
|
-
return l(`const url = '${
|
|
1040
|
+
return l(`const url = '${d}';`), p.headers && !Object.keys(p.headers).length && delete p.headers, l(`const options = ${oe(p, {
|
|
1041
1041
|
indent: " ",
|
|
1042
1042
|
inlineCharacterLimit: 80,
|
|
1043
|
-
transform: (
|
|
1043
|
+
transform: (m, b, $) => b === "body" && r.mimeType === "application/json" ? `JSON.stringify(${$})` : $
|
|
1044
1044
|
})};`), c(), i && u(`import fs from 'fs';
|
|
1045
1045
|
`), l("fetch(url, options)"), l(".then(res => res.json())", 1), l(".then(json => console.log(json))", 1), l(".catch(err => console.error(err));", 1), f().replace(/'encodedParams'/, "encodedParams").replace(/'formData'/, "formData");
|
|
1046
1046
|
}
|
|
@@ -1048,19 +1048,19 @@ const no = {
|
|
|
1048
1048
|
}
|
|
1049
1049
|
}, bt = (t, e, r, n) => {
|
|
1050
1050
|
const s = `${t} *${e} = `;
|
|
1051
|
-
return `${s}${
|
|
1052
|
-
},
|
|
1051
|
+
return `${s}${Ut(r, n ? s.length : void 0)};`;
|
|
1052
|
+
}, Ut = (t, e) => {
|
|
1053
1053
|
const r = e === void 0 ? ", " : `,
|
|
1054
1054
|
${" ".repeat(e)}`;
|
|
1055
1055
|
switch (Object.prototype.toString.call(t)) {
|
|
1056
1056
|
case "[object Number]":
|
|
1057
1057
|
return `@${t}`;
|
|
1058
1058
|
case "[object Array]":
|
|
1059
|
-
return `@[ ${t.map((n) =>
|
|
1059
|
+
return `@[ ${t.map((n) => Ut(n)).join(r)} ]`;
|
|
1060
1060
|
case "[object Object]": {
|
|
1061
1061
|
const n = [];
|
|
1062
1062
|
return Object.keys(t).forEach((s) => {
|
|
1063
|
-
n.push(`@"${s}": ${
|
|
1063
|
+
n.push(`@"${s}": ${Ut(t[s])}`);
|
|
1064
1064
|
}), `@{ ${n.join(r)} }`;
|
|
1065
1065
|
}
|
|
1066
1066
|
case "[object Boolean]":
|
|
@@ -1068,7 +1068,7 @@ const no = {
|
|
|
1068
1068
|
default:
|
|
1069
1069
|
return t == null ? "" : `@"${t.toString().replace(/"/g, '\\"')}"`;
|
|
1070
1070
|
}
|
|
1071
|
-
},
|
|
1071
|
+
}, co = {
|
|
1072
1072
|
info: {
|
|
1073
1073
|
key: "objc",
|
|
1074
1074
|
title: "Objective-C",
|
|
@@ -1098,9 +1098,9 @@ const no = {
|
|
|
1098
1098
|
case "application/x-www-form-urlencoded":
|
|
1099
1099
|
if ((f = e.params) != null && f.length) {
|
|
1100
1100
|
c();
|
|
1101
|
-
const [u, ...
|
|
1102
|
-
a(`NSMutableData *postData = [[NSMutableData alloc] initWithData:[@"${u.name}=${u.value}" dataUsingEncoding:NSUTF8StringEncoding]];`),
|
|
1103
|
-
a(`[postData appendData:[@"&${
|
|
1101
|
+
const [u, ...d] = e.params;
|
|
1102
|
+
a(`NSMutableData *postData = [[NSMutableData alloc] initWithData:[@"${u.name}=${u.value}" dataUsingEncoding:NSUTF8StringEncoding]];`), d.forEach(({ name: p, value: h }) => {
|
|
1103
|
+
a(`[postData appendData:[@"&${p}=${h}" dataUsingEncoding:NSUTF8StringEncoding]];`);
|
|
1104
1104
|
});
|
|
1105
1105
|
} else l.hasBody = !1;
|
|
1106
1106
|
break;
|
|
@@ -1116,7 +1116,7 @@ const no = {
|
|
|
1116
1116
|
return c(), a(`NSMutableURLRequest *request = [NSMutableURLRequest requestWithURL:[NSURL URLWithString:@"${n}"]`), a(" cachePolicy:NSURLRequestUseProtocolCachePolicy"), a(` timeoutInterval:${o.timeout.toFixed(1)}];`), a(`[request setHTTPMethod:@"${r}"];`), l.hasHeaders && a("[request setAllHTTPHeaderFields:headers];"), l.hasBody && a("[request setHTTPBody:postData];"), c(), a("NSURLSession *session = [NSURLSession sharedSession];"), a("NSURLSessionDataTask *dataTask = [session dataTaskWithRequest:request"), a(" completionHandler:^(NSData *data, NSURLResponse *response, NSError *error) {"), a(" if (error) {", 1), a(' NSLog(@"%@", error);', 2), a(" } else {", 1), a(" NSHTTPURLResponse *httpResponse = (NSHTTPURLResponse *) response;", 2), a(' NSLog(@"%@", httpResponse);', 2), a(" }", 1), a(" }];"), a("[dataTask resume];"), i();
|
|
1117
1117
|
}
|
|
1118
1118
|
} }
|
|
1119
|
-
},
|
|
1119
|
+
}, lo = {
|
|
1120
1120
|
info: {
|
|
1121
1121
|
key: "ocaml",
|
|
1122
1122
|
title: "OCaml",
|
|
@@ -1184,7 +1184,7 @@ ${r}]`;
|
|
|
1184
1184
|
default:
|
|
1185
1185
|
return "null";
|
|
1186
1186
|
}
|
|
1187
|
-
},
|
|
1187
|
+
}, ur = [
|
|
1188
1188
|
"ACL",
|
|
1189
1189
|
"BASELINE_CONTROL",
|
|
1190
1190
|
"CHECKIN",
|
|
@@ -1212,7 +1212,7 @@ ${r}]`;
|
|
|
1212
1212
|
"UNLOCK",
|
|
1213
1213
|
"UPDATE",
|
|
1214
1214
|
"VERSION_CONTROL"
|
|
1215
|
-
],
|
|
1215
|
+
], fo = {
|
|
1216
1216
|
info: {
|
|
1217
1217
|
key: "php",
|
|
1218
1218
|
title: "PHP",
|
|
@@ -1229,9 +1229,9 @@ ${r}]`;
|
|
|
1229
1229
|
extname: ".php"
|
|
1230
1230
|
},
|
|
1231
1231
|
convert: ({ uriObj: t, postData: e, fullUrl: r, method: n, httpVersion: s, cookies: o, headersObj: a }, i = {}) => {
|
|
1232
|
-
const { closingTag: c = !1, indent: l = " ", maxRedirects: f = 10, namedErrors: u = !1, noTags:
|
|
1233
|
-
|
|
1234
|
-
const
|
|
1232
|
+
const { closingTag: c = !1, indent: l = " ", maxRedirects: f = 10, namedErrors: u = !1, noTags: d = !1, shortTags: p = !1, timeout: h = 30 } = i, { push: m, blank: b, join: $ } = new E({ indent: l });
|
|
1233
|
+
d || (m(p ? "<?" : "<?php"), b()), m("$curl = curl_init();"), b();
|
|
1234
|
+
const y = [
|
|
1235
1235
|
{
|
|
1236
1236
|
escape: !0,
|
|
1237
1237
|
name: "CURLOPT_PORT",
|
|
@@ -1278,20 +1278,20 @@ ${r}]`;
|
|
|
1278
1278
|
value: e ? e.jsonObj ? `json_encode(${A(e.jsonObj, l.repeat(2), l)})` : e.text : void 0
|
|
1279
1279
|
}
|
|
1280
1280
|
];
|
|
1281
|
-
|
|
1282
|
-
const
|
|
1281
|
+
m("curl_setopt_array($curl, [");
|
|
1282
|
+
const g = new E({
|
|
1283
1283
|
indent: l,
|
|
1284
1284
|
join: `
|
|
1285
1285
|
${l}`
|
|
1286
1286
|
});
|
|
1287
|
-
|
|
1288
|
-
v != null &&
|
|
1287
|
+
y.forEach(({ value: v, name: P, escape: T }) => {
|
|
1288
|
+
v != null && g.push(`${P} => ${T ? JSON.stringify(v) : v},`);
|
|
1289
1289
|
});
|
|
1290
1290
|
const S = o.map((v) => `${encodeURIComponent(v.name)}=${encodeURIComponent(v.value)}`);
|
|
1291
|
-
S.length &&
|
|
1291
|
+
S.length && g.push(`CURLOPT_COOKIE => "${S.join("; ")}",`);
|
|
1292
1292
|
const O = Object.keys(a).sort().map((v) => `"${v}: ${I(a[v])}"`);
|
|
1293
|
-
return O.length && (
|
|
1294
|
-
${l}${l}`), 1),
|
|
1293
|
+
return O.length && (g.push("CURLOPT_HTTPHEADER => ["), g.push(O.join(`,
|
|
1294
|
+
${l}${l}`), 1), g.push("],")), m(g.join(), 1), m("]);"), b(), m("$response = curl_exec($curl);"), m("$err = curl_error($curl);"), b(), m("curl_close($curl);"), b(), m("if ($err) {"), m(u ? 'echo array_flip(get_defined_constants(true)["curl"])[$err];' : 'echo "cURL Error #:" . $err;', 1), m("} else {"), m("echo $response;", 1), m("}"), !d && c && (b(), m("?>")), $();
|
|
1295
1295
|
}
|
|
1296
1296
|
},
|
|
1297
1297
|
guzzle: {
|
|
@@ -1304,33 +1304,33 @@ ${l}${l}`), 1), b.push("],")), y(b.join(), 1), y("]);"), g(), y("$response = cur
|
|
|
1304
1304
|
installation: () => "composer require guzzlehttp/guzzle"
|
|
1305
1305
|
},
|
|
1306
1306
|
convert: ({ postData: t, fullUrl: e, method: r, cookies: n, headersObj: s }, o) => {
|
|
1307
|
-
var
|
|
1307
|
+
var m;
|
|
1308
1308
|
const a = {
|
|
1309
1309
|
closingTag: !1,
|
|
1310
1310
|
indent: " ",
|
|
1311
1311
|
noTags: !1,
|
|
1312
1312
|
shortTags: !1,
|
|
1313
1313
|
...o
|
|
1314
|
-
}, { push: i, blank: c, join: l } = new E({ indent: a.indent }), { code: f, push: u, join:
|
|
1314
|
+
}, { push: i, blank: c, join: l } = new E({ indent: a.indent }), { code: f, push: u, join: d } = new E({ indent: a.indent });
|
|
1315
1315
|
switch (a.noTags || i(a.shortTags ? "<?" : "<?php"), i("require_once('vendor/autoload.php');"), c(), t.mimeType) {
|
|
1316
1316
|
case "application/x-www-form-urlencoded":
|
|
1317
1317
|
u(`'form_params' => ${A(t.paramsObj, a.indent + a.indent, a.indent)},`, 1);
|
|
1318
1318
|
break;
|
|
1319
1319
|
case "multipart/form-data": {
|
|
1320
|
-
const
|
|
1320
|
+
const b = [];
|
|
1321
1321
|
if (t.params && t.params.forEach(($) => {
|
|
1322
1322
|
if ($.fileName) {
|
|
1323
|
-
const
|
|
1323
|
+
const y = {
|
|
1324
1324
|
name: $.name,
|
|
1325
1325
|
filename: $.fileName,
|
|
1326
1326
|
contents: $.value
|
|
1327
1327
|
};
|
|
1328
|
-
$.contentType && (
|
|
1329
|
-
} else $.value &&
|
|
1328
|
+
$.contentType && (y.headers = { "Content-Type": $.contentType }), b.push(y);
|
|
1329
|
+
} else $.value && b.push({
|
|
1330
1330
|
name: $.name,
|
|
1331
1331
|
contents: $.value
|
|
1332
1332
|
});
|
|
1333
|
-
}),
|
|
1333
|
+
}), b.length && (u(`'multipart' => ${A(b, a.indent + a.indent, a.indent)}`, 1), nt(s, "content-type") && (m = se(s, "content-type")) != null && m.indexOf("boundary"))) {
|
|
1334
1334
|
const $ = J(s, "content-type");
|
|
1335
1335
|
$ && delete s[$];
|
|
1336
1336
|
}
|
|
@@ -1339,9 +1339,9 @@ ${l}${l}`), 1), b.push("],")), y(b.join(), 1), y("]);"), g(), y("$response = cur
|
|
|
1339
1339
|
default:
|
|
1340
1340
|
t.text && u(`'body' => ${A(t.text)},`, 1);
|
|
1341
1341
|
}
|
|
1342
|
-
const
|
|
1343
|
-
return h.length &&
|
|
1344
|
-
`)), u("],", 1)), i("$client = new \\GuzzleHttp\\Client();"), c(), f.length ? (i(`$response = $client->request('${r}', '${e}', [`), i(
|
|
1342
|
+
const p = Object.keys(s).sort().map((b) => `${a.indent}${a.indent}'${b}' => '${Ce(s[b])}',`), h = n.map((b) => `${encodeURIComponent(b.name)}=${encodeURIComponent(b.value)}`).join("; ");
|
|
1343
|
+
return h.length && p.push(`${a.indent}${a.indent}'cookie' => '${Ce(h)}',`), p.length && (u("'headers' => [", 1), u(p.join(`
|
|
1344
|
+
`)), u("],", 1)), i("$client = new \\GuzzleHttp\\Client();"), c(), f.length ? (i(`$response = $client->request('${r}', '${e}', [`), i(d()), i("]);")) : i(`$response = $client->request('${r}', '${e}');`), c(), i("echo $response->getBody();"), !a.noTags && a.closingTag && (c(), i("?>")), l();
|
|
1345
1345
|
}
|
|
1346
1346
|
},
|
|
1347
1347
|
http1: {
|
|
@@ -1353,18 +1353,18 @@ ${l}${l}`), 1), b.push("],")), y(b.join(), 1), y("]);"), g(), y("$response = cur
|
|
|
1353
1353
|
extname: ".php"
|
|
1354
1354
|
},
|
|
1355
1355
|
convert: ({ method: t, url: e, postData: r, queryObj: n, headersObj: s, cookiesObj: o }, a = {}) => {
|
|
1356
|
-
const { closingTag: i = !1, indent: c = " ", noTags: l = !1, shortTags: f = !1 } = a, { push: u, blank:
|
|
1357
|
-
switch (l || (u(f ? "<?" : "<?php"),
|
|
1356
|
+
const { closingTag: i = !1, indent: c = " ", noTags: l = !1, shortTags: f = !1 } = a, { push: u, blank: d, join: p } = new E({ indent: c });
|
|
1357
|
+
switch (l || (u(f ? "<?" : "<?php"), d()), ur.includes(t.toUpperCase()) || u(`HttpRequest::methodRegister('${t}');`), u("$request = new HttpRequest();"), u(`$request->setUrl(${A(e)});`), ur.includes(t.toUpperCase()) ? u(`$request->setMethod(HTTP_METH_${t.toUpperCase()});`) : u(`$request->setMethod(HttpRequest::HTTP_METH_${t.toUpperCase()});`), d(), Object.keys(n).length && (u(`$request->setQueryData(${A(n, c)});`), d()), Object.keys(s).length && (u(`$request->setHeaders(${A(s, c)});`), d()), Object.keys(o).length && (u(`$request->setCookies(${A(o, c)});`), d()), r.mimeType) {
|
|
1358
1358
|
case "application/x-www-form-urlencoded":
|
|
1359
|
-
u(`$request->setContentType(${A(r.mimeType)});`), u(`$request->setPostFields(${A(r.paramsObj, c)});`),
|
|
1359
|
+
u(`$request->setContentType(${A(r.mimeType)});`), u(`$request->setPostFields(${A(r.paramsObj, c)});`), d();
|
|
1360
1360
|
break;
|
|
1361
1361
|
case "application/json":
|
|
1362
|
-
u(`$request->setContentType(${A(r.mimeType)});`), u(`$request->setBody(json_encode(${A(r.jsonObj, c)}));`),
|
|
1362
|
+
u(`$request->setContentType(${A(r.mimeType)});`), u(`$request->setBody(json_encode(${A(r.jsonObj, c)}));`), d();
|
|
1363
1363
|
break;
|
|
1364
1364
|
default:
|
|
1365
|
-
r.text && (u(`$request->setBody(${A(r.text)});`),
|
|
1365
|
+
r.text && (u(`$request->setBody(${A(r.text)});`), d());
|
|
1366
1366
|
}
|
|
1367
|
-
return u("try {"), u("$response = $request->send();", 1),
|
|
1367
|
+
return u("try {"), u("$response = $request->send();", 1), d(), u("echo $response->getBody();", 1), u("} catch (HttpException $ex) {"), u("echo $ex;", 1), u("}"), !l && i && (d(), u("?>")), p();
|
|
1368
1368
|
}
|
|
1369
1369
|
},
|
|
1370
1370
|
http2: {
|
|
@@ -1376,19 +1376,19 @@ ${l}${l}`), 1), b.push("],")), y(b.join(), 1), y("]);"), g(), y("$response = cur
|
|
|
1376
1376
|
extname: ".php"
|
|
1377
1377
|
},
|
|
1378
1378
|
convert: ({ postData: t, headersObj: e, method: r, queryObj: n, cookiesObj: s, url: o }, a = {}) => {
|
|
1379
|
-
var
|
|
1380
|
-
const { closingTag: i = !1, indent: c = " ", noTags: l = !1, shortTags: f = !1 } = a, { push: u, blank:
|
|
1379
|
+
var m;
|
|
1380
|
+
const { closingTag: i = !1, indent: c = " ", noTags: l = !1, shortTags: f = !1 } = a, { push: u, blank: d, join: p } = new E({ indent: c });
|
|
1381
1381
|
let h = !1;
|
|
1382
|
-
switch (l || (u(f ? "<?" : "<?php"),
|
|
1382
|
+
switch (l || (u(f ? "<?" : "<?php"), d()), u("$client = new http\\Client;"), u("$request = new http\\Client\\Request;"), d(), t.mimeType) {
|
|
1383
1383
|
case "application/x-www-form-urlencoded":
|
|
1384
|
-
u("$body = new http\\Message\\Body;"), u(`$body->append(new http\\QueryString(${A(t.paramsObj, c)}));`),
|
|
1384
|
+
u("$body = new http\\Message\\Body;"), u(`$body->append(new http\\QueryString(${A(t.paramsObj, c)}));`), d(), h = !0;
|
|
1385
1385
|
break;
|
|
1386
1386
|
case "multipart/form-data": {
|
|
1387
1387
|
if (!t.params) break;
|
|
1388
|
-
const
|
|
1388
|
+
const b = [], $ = {};
|
|
1389
1389
|
t.params.forEach(({ name: S, fileName: O, value: v, contentType: P }) => {
|
|
1390
1390
|
if (O) {
|
|
1391
|
-
|
|
1391
|
+
b.push({
|
|
1392
1392
|
name: S,
|
|
1393
1393
|
type: P,
|
|
1394
1394
|
file: O,
|
|
@@ -1398,25 +1398,25 @@ ${l}${l}`), 1), b.push("],")), y(b.join(), 1), y("]);"), g(), y("$response = cur
|
|
|
1398
1398
|
}
|
|
1399
1399
|
v && ($[S] = v);
|
|
1400
1400
|
});
|
|
1401
|
-
const
|
|
1402
|
-
if (u("$body = new http\\Message\\Body;"), u(`$body->addForm(${
|
|
1401
|
+
const y = Object.keys($).length ? A($, c) : "null", g = b.length ? A(b, c) : "null";
|
|
1402
|
+
if (u("$body = new http\\Message\\Body;"), u(`$body->addForm(${y}, ${g});`), nt(e, "content-type") && (m = se(e, "content-type")) != null && m.indexOf("boundary")) {
|
|
1403
1403
|
const S = J(e, "content-type");
|
|
1404
1404
|
S && delete e[S];
|
|
1405
1405
|
}
|
|
1406
|
-
|
|
1406
|
+
d(), h = !0;
|
|
1407
1407
|
break;
|
|
1408
1408
|
}
|
|
1409
1409
|
case "application/json":
|
|
1410
1410
|
u("$body = new http\\Message\\Body;"), u(`$body->append(json_encode(${A(t.jsonObj, c)}));`), h = !0;
|
|
1411
1411
|
break;
|
|
1412
1412
|
default:
|
|
1413
|
-
t.text && (u("$body = new http\\Message\\Body;"), u(`$body->append(${A(t.text)});`),
|
|
1413
|
+
t.text && (u("$body = new http\\Message\\Body;"), u(`$body->append(${A(t.text)});`), d(), h = !0);
|
|
1414
1414
|
}
|
|
1415
|
-
return u(`$request->setRequestUrl(${A(o)});`), u(`$request->setRequestMethod(${A(r)});`), h && (u("$request->setBody($body);"),
|
|
1415
|
+
return u(`$request->setRequestUrl(${A(o)});`), u(`$request->setRequestMethod(${A(r)});`), h && (u("$request->setBody($body);"), d()), Object.keys(n).length && (u(`$request->setQuery(new http\\QueryString(${A(n, c)}));`), d()), Object.keys(e).length && (u(`$request->setHeaders(${A(e, c)});`), d()), Object.keys(s).length && (d(), u(`$client->setCookies(${A(s, c)});`), d()), u("$client->enqueue($request)->send();"), u("$response = $client->getResponse();"), d(), u("echo $response->getBody();"), !l && i && (d(), u("?>")), p();
|
|
1416
1416
|
}
|
|
1417
1417
|
}
|
|
1418
1418
|
}
|
|
1419
|
-
},
|
|
1419
|
+
}, Yr = (t) => ({ method: r, headersObj: n, cookies: s, uriObj: o, fullUrl: a, postData: i, allHeaders: c }) => {
|
|
1420
1420
|
const { push: l, join: f } = new E();
|
|
1421
1421
|
if (![
|
|
1422
1422
|
"GET",
|
|
@@ -1427,16 +1427,16 @@ ${l}${l}`), 1), b.push("],")), y(b.join(), 1), y("]);"), g(), y("$response = cur
|
|
|
1427
1427
|
"HEAD",
|
|
1428
1428
|
"OPTIONS"
|
|
1429
1429
|
].includes(r.toUpperCase())) return "Method not supported";
|
|
1430
|
-
const u = [],
|
|
1431
|
-
return
|
|
1432
|
-
|
|
1433
|
-
}), u.push("-Headers $headers")), s.length && (l("$session = New-Object Microsoft.PowerShell.Commands.WebRequestSession"), s.forEach((
|
|
1434
|
-
l("$cookie = New-Object System.Net.Cookie"), l(`$cookie.Name = '${
|
|
1430
|
+
const u = [], d = Object.keys(n);
|
|
1431
|
+
return d.length && (l("$headers=@{}"), d.forEach((p) => {
|
|
1432
|
+
p !== "connection" && l(`$headers.Add("${p}", "${Me(n[p], { escapeChar: "`" })}")`);
|
|
1433
|
+
}), u.push("-Headers $headers")), s.length && (l("$session = New-Object Microsoft.PowerShell.Commands.WebRequestSession"), s.forEach((p) => {
|
|
1434
|
+
l("$cookie = New-Object System.Net.Cookie"), l(`$cookie.Name = '${p.name}'`), l(`$cookie.Value = '${p.value}'`), l(`$cookie.Domain = '${o.host}'`), l("$session.Cookies.Add($cookie)");
|
|
1435
1435
|
}), u.push("-WebSession $session")), i.text && (u.push(`-ContentType '${Me(se(c, "content-type"), {
|
|
1436
1436
|
delimiter: "'",
|
|
1437
1437
|
escapeChar: "`"
|
|
1438
1438
|
})}'`), u.push(`-Body '${i.text}'`)), l(`$response = ${t} -Uri '${a}' -Method ${r} ${u.join(" ")}`.trim()), f();
|
|
1439
|
-
},
|
|
1439
|
+
}, uo = {
|
|
1440
1440
|
info: {
|
|
1441
1441
|
key: "restmethod",
|
|
1442
1442
|
title: "Invoke-RestMethod",
|
|
@@ -1444,8 +1444,8 @@ ${l}${l}`), 1), b.push("],")), y(b.join(), 1), y("]);"), g(), y("$response = cur
|
|
|
1444
1444
|
description: "Powershell Invoke-RestMethod client",
|
|
1445
1445
|
extname: ".ps1"
|
|
1446
1446
|
},
|
|
1447
|
-
convert:
|
|
1448
|
-
},
|
|
1447
|
+
convert: Yr("Invoke-RestMethod")
|
|
1448
|
+
}, po = {
|
|
1449
1449
|
info: {
|
|
1450
1450
|
key: "powershell",
|
|
1451
1451
|
title: "Powershell",
|
|
@@ -1460,12 +1460,12 @@ ${l}${l}`), 1), b.push("],")), y(b.join(), 1), y("]);"), g(), y("$response = cur
|
|
|
1460
1460
|
description: "Powershell Invoke-WebRequest client",
|
|
1461
1461
|
extname: ".ps1"
|
|
1462
1462
|
},
|
|
1463
|
-
convert:
|
|
1463
|
+
convert: Yr("Invoke-WebRequest")
|
|
1464
1464
|
},
|
|
1465
|
-
restmethod:
|
|
1465
|
+
restmethod: uo
|
|
1466
1466
|
}
|
|
1467
1467
|
};
|
|
1468
|
-
function
|
|
1468
|
+
function pr(t, e, r, n, s) {
|
|
1469
1469
|
const o = n.repeat(s), a = n.repeat(s - 1), i = r ? `,
|
|
1470
1470
|
${o}` : ", ", c = t === "object" ? "{" : "[", l = t === "object" ? "}" : "]";
|
|
1471
1471
|
return r ? `${c}
|
|
@@ -1478,12 +1478,12 @@ const Oe = (t, e, r) => {
|
|
|
1478
1478
|
return t;
|
|
1479
1479
|
case "[object Array]": {
|
|
1480
1480
|
let n = !1;
|
|
1481
|
-
return
|
|
1481
|
+
return pr("array", t.map((s) => (Object.prototype.toString.call(s) === "[object Object]" && (n = Object.keys(s).length > 1), Oe(s, e, r))), n, e.indent, r);
|
|
1482
1482
|
}
|
|
1483
1483
|
case "[object Object]": {
|
|
1484
1484
|
const n = [];
|
|
1485
1485
|
for (const s in t) n.push(`"${s}": ${Oe(t[s], e, r)}`);
|
|
1486
|
-
return
|
|
1486
|
+
return pr("object", n, e.pretty && n.length > 1, e.indent, r);
|
|
1487
1487
|
}
|
|
1488
1488
|
case "[object Null]":
|
|
1489
1489
|
return "None";
|
|
@@ -1492,7 +1492,7 @@ const Oe = (t, e, r) => {
|
|
|
1492
1492
|
default:
|
|
1493
1493
|
return t == null ? "" : `"${t.toString().replace(/"/g, '\\"')}"`;
|
|
1494
1494
|
}
|
|
1495
|
-
},
|
|
1495
|
+
}, ho = [
|
|
1496
1496
|
"HEAD",
|
|
1497
1497
|
"GET",
|
|
1498
1498
|
"POST",
|
|
@@ -1500,7 +1500,7 @@ const Oe = (t, e, r) => {
|
|
|
1500
1500
|
"PATCH",
|
|
1501
1501
|
"DELETE",
|
|
1502
1502
|
"OPTIONS"
|
|
1503
|
-
],
|
|
1503
|
+
], yo = {
|
|
1504
1504
|
info: {
|
|
1505
1505
|
key: "python",
|
|
1506
1506
|
title: "Python",
|
|
@@ -1525,51 +1525,51 @@ const Oe = (t, e, r) => {
|
|
|
1525
1525
|
a("import requests"), i(), a(`url = "${t}"`), i();
|
|
1526
1526
|
const f = r;
|
|
1527
1527
|
let u = {};
|
|
1528
|
-
const
|
|
1529
|
-
let
|
|
1528
|
+
const d = {};
|
|
1529
|
+
let p = !1, h = !1, m = !1;
|
|
1530
1530
|
switch (e.mimeType) {
|
|
1531
1531
|
case "application/json":
|
|
1532
|
-
e.jsonObj && (a(`payload = ${Oe(e.jsonObj, o)}`),
|
|
1532
|
+
e.jsonObj && (a(`payload = ${Oe(e.jsonObj, o)}`), m = !0, h = !0);
|
|
1533
1533
|
break;
|
|
1534
1534
|
case "multipart/form-data":
|
|
1535
1535
|
if (!e.params) break;
|
|
1536
|
-
if (u = {}, e.params.forEach((
|
|
1537
|
-
|
|
1538
|
-
}),
|
|
1539
|
-
a(`files = ${Oe(
|
|
1540
|
-
const
|
|
1541
|
-
|
|
1536
|
+
if (u = {}, e.params.forEach((y) => {
|
|
1537
|
+
y.fileName ? (y.contentType ? d[y.name] = `('${y.fileName}', open('${y.fileName}', 'rb'), '${y.contentType}')` : d[y.name] = `('${y.fileName}', open('${y.fileName}', 'rb'))`, p = !0) : (u[y.name] = y.value, h = !0);
|
|
1538
|
+
}), p) {
|
|
1539
|
+
a(`files = ${Oe(d, o)}`), h && a(`payload = ${Oe(u, o)}`);
|
|
1540
|
+
const y = J(f, "content-type");
|
|
1541
|
+
y && delete f[y];
|
|
1542
1542
|
} else {
|
|
1543
|
-
const
|
|
1544
|
-
|
|
1543
|
+
const y = JSON.stringify(e.text);
|
|
1544
|
+
y && (a(`payload = ${y}`), h = !0);
|
|
1545
1545
|
}
|
|
1546
|
-
l((
|
|
1546
|
+
l((y) => y.replace(/"\('(.+)', open\('(.+)', 'rb'\)\)"/g, '("$1", open("$2", "rb"))').replace(/"\('(.+)', open\('(.+)', 'rb'\), '(.+)'\)"/g, '("$1", open("$2", "rb"), "$3")'));
|
|
1547
1547
|
break;
|
|
1548
1548
|
default: {
|
|
1549
1549
|
if (e.mimeType === "application/x-www-form-urlencoded" && e.paramsObj) {
|
|
1550
1550
|
a(`payload = ${Oe(e.paramsObj, o)}`), h = !0;
|
|
1551
1551
|
break;
|
|
1552
1552
|
}
|
|
1553
|
-
const
|
|
1554
|
-
|
|
1553
|
+
const y = JSON.stringify(e.text);
|
|
1554
|
+
y && (a(`payload = ${y}`), h = !0);
|
|
1555
1555
|
}
|
|
1556
1556
|
}
|
|
1557
|
-
const
|
|
1558
|
-
if (
|
|
1559
|
-
else if (
|
|
1560
|
-
a(`headers = {"${
|
|
1557
|
+
const b = Object.keys(f).length;
|
|
1558
|
+
if (b === 0 && (h || p)) i();
|
|
1559
|
+
else if (b === 1) Object.keys(f).forEach((y) => {
|
|
1560
|
+
a(`headers = {"${y}": "${I(f[y])}"}`), i();
|
|
1561
1561
|
});
|
|
1562
|
-
else if (
|
|
1563
|
-
let
|
|
1564
|
-
a("headers = {"), Object.keys(f).forEach((
|
|
1565
|
-
a(
|
|
1562
|
+
else if (b > 1) {
|
|
1563
|
+
let y = 1;
|
|
1564
|
+
a("headers = {"), Object.keys(f).forEach((g) => {
|
|
1565
|
+
a(y !== b ? `"${g}": "${I(f[g])}",` : `"${g}": "${I(f[g])}"`, 1), y += 1;
|
|
1566
1566
|
}), a("}"), i();
|
|
1567
1567
|
}
|
|
1568
|
-
let $ =
|
|
1569
|
-
return h && (
|
|
1568
|
+
let $ = ho.includes(n) ? `response = requests.${n.toLowerCase()}(url` : `response = requests.request("${n}", url`;
|
|
1569
|
+
return h && (m ? $ += ", json=payload" : $ += ", data=payload"), p && ($ += ", files=files"), b > 0 && ($ += ", headers=headers"), $ += ")", a($), i(), a("print(response.text)"), c();
|
|
1570
1570
|
}
|
|
1571
1571
|
} }
|
|
1572
|
-
},
|
|
1572
|
+
}, mo = {
|
|
1573
1573
|
info: {
|
|
1574
1574
|
key: "r",
|
|
1575
1575
|
title: "R",
|
|
@@ -1607,23 +1607,23 @@ const Oe = (t, e, r) => {
|
|
|
1607
1607
|
a('encode <- "raw"'), i();
|
|
1608
1608
|
break;
|
|
1609
1609
|
}
|
|
1610
|
-
const
|
|
1610
|
+
const d = se(s, "cookie"), p = se(s, "accept"), h = d ? `set_cookies(\`${String(d).replace(/;/g, '", `').replace(/` /g, "`").replace(/[=]/g, '` = "')}")` : void 0, m = p ? `accept("${I(p)}")` : void 0, b = `content_type("${I(n.mimeType)}")`, $ = Object.entries(s).filter(([O]) => ![
|
|
1611
1611
|
"cookie",
|
|
1612
1612
|
"accept",
|
|
1613
1613
|
"content-type"
|
|
1614
|
-
].includes(O.toLowerCase())).map(([O, v]) => `'${O}' = '${Ce(v)}'`).join(", "),
|
|
1615
|
-
let
|
|
1616
|
-
u && (
|
|
1614
|
+
].includes(O.toLowerCase())).map(([O, v]) => `'${O}' = '${Ce(v)}'`).join(", "), y = $ ? `add_headers(${$})` : void 0;
|
|
1615
|
+
let g = `response <- VERB("${o}", url`;
|
|
1616
|
+
u && (g += ", body = payload"), r.length && (g += ", query = queryString");
|
|
1617
1617
|
const S = [
|
|
1618
|
-
m,
|
|
1619
|
-
g,
|
|
1620
1618
|
y,
|
|
1619
|
+
b,
|
|
1620
|
+
m,
|
|
1621
1621
|
h
|
|
1622
1622
|
].filter((O) => !!O).join(", ");
|
|
1623
|
-
return S && (
|
|
1623
|
+
return S && (g += `, ${S}`), (n.text || n.jsonObj || n.params) && (g += ", encode = encode"), g += ")", a(g), i(), a('content(response, "text")'), c();
|
|
1624
1624
|
}
|
|
1625
1625
|
} }
|
|
1626
|
-
},
|
|
1626
|
+
}, go = {
|
|
1627
1627
|
info: {
|
|
1628
1628
|
key: "ruby",
|
|
1629
1629
|
title: "Ruby",
|
|
@@ -1657,8 +1657,8 @@ const Oe = (t, e, r) => {
|
|
|
1657
1657
|
], f = c.charAt(0) + c.substring(1).toLowerCase();
|
|
1658
1658
|
l.includes(c) || (o(`class Net::HTTP::${f} < Net::HTTPRequest`), o(` METHOD = '${c.toUpperCase()}'`), o(` REQUEST_HAS_BODY = '${n.text ? "true" : "false"}'`), o(" RESPONSE_HAS_BODY = true"), o("end"), a()), o(`url = URI("${r}")`), a(), o("http = Net::HTTP.new(url.host, url.port)"), t.protocol === "https:" && o("http.use_ssl = true"), a(), o(`request = Net::HTTP::${f}.new(url)`);
|
|
1659
1659
|
const u = Object.keys(s);
|
|
1660
|
-
return u.length && u.forEach((
|
|
1661
|
-
o(`request["${
|
|
1660
|
+
return u.length && u.forEach((d) => {
|
|
1661
|
+
o(`request["${d}"] = '${Ce(s[d])}'`);
|
|
1662
1662
|
}), n.text && o(`request.body = ${JSON.stringify(n.text)}`), a(), o("response = http.request(request)"), o("puts response.read_body"), i();
|
|
1663
1663
|
}
|
|
1664
1664
|
},
|
|
@@ -1711,7 +1711,7 @@ const Oe = (t, e, r) => {
|
|
|
1711
1711
|
}
|
|
1712
1712
|
}
|
|
1713
1713
|
};
|
|
1714
|
-
function
|
|
1714
|
+
function dr(t, e, r, n, s) {
|
|
1715
1715
|
const o = n.repeat(s), a = n.repeat(s - 1), i = r ? `,
|
|
1716
1716
|
${o}` : ", ", c = t === "object" ? "json!({" : "(", l = t === "object" ? "})" : ")";
|
|
1717
1717
|
return r ? `${c}
|
|
@@ -1725,12 +1725,12 @@ const Te = (t, e, r) => {
|
|
|
1725
1725
|
case "[object Array]": {
|
|
1726
1726
|
if (t.length === 0) return "json!([])";
|
|
1727
1727
|
let n = !1;
|
|
1728
|
-
return
|
|
1728
|
+
return dr("array", t.map((s) => (Object.prototype.toString.call(s) === "[object Object]" && (n = Object.keys(s).length > 1), Te(s, e, r))), n, e.indent, r);
|
|
1729
1729
|
}
|
|
1730
1730
|
case "[object Object]": {
|
|
1731
1731
|
const n = [];
|
|
1732
1732
|
for (const s in t) n.push(`"${s}": ${Te(t[s], e, r)}`);
|
|
1733
|
-
return
|
|
1733
|
+
return dr("object", n, e.pretty && n.length > 1, e.indent, r);
|
|
1734
1734
|
}
|
|
1735
1735
|
case "[object Null]":
|
|
1736
1736
|
return "json!(null)";
|
|
@@ -1739,7 +1739,7 @@ const Te = (t, e, r) => {
|
|
|
1739
1739
|
default:
|
|
1740
1740
|
return t == null ? "" : `"${t.toString().replace(/"/g, '\\"')}"`;
|
|
1741
1741
|
}
|
|
1742
|
-
},
|
|
1742
|
+
}, bo = {
|
|
1743
1743
|
info: {
|
|
1744
1744
|
key: "reqwest",
|
|
1745
1745
|
title: "reqwest",
|
|
@@ -1754,21 +1754,21 @@ const Te = (t, e, r) => {
|
|
|
1754
1754
|
...o
|
|
1755
1755
|
};
|
|
1756
1756
|
let i = 0;
|
|
1757
|
-
const { push: c, blank: l, join: f, pushToLast: u, unshift:
|
|
1757
|
+
const { push: c, blank: l, join: f, pushToLast: u, unshift: d } = new E({ indent: a.indent });
|
|
1758
1758
|
c("use reqwest;", i), l(), c("#[tokio::main]", i), c("pub async fn main() {", i), i += 1, c(`let url = "${e}";`, i), l();
|
|
1759
|
-
let
|
|
1759
|
+
let p = !1;
|
|
1760
1760
|
if (Object.keys(t).length) {
|
|
1761
|
-
|
|
1761
|
+
p = !0, c("let querystring = [", i), i += 1;
|
|
1762
1762
|
for (const [v, P] of Object.entries(t)) if (Array.isArray(P)) for (const T of P) c(`("${v}", "${decodeURIComponent(T)}"),`, i);
|
|
1763
1763
|
else c(`("${v}", "${decodeURIComponent(String(P))}"),`, i);
|
|
1764
1764
|
i -= 1, c("];", i), l();
|
|
1765
1765
|
}
|
|
1766
1766
|
let h = {};
|
|
1767
|
-
const
|
|
1768
|
-
let
|
|
1767
|
+
const m = {};
|
|
1768
|
+
let b = !1, $ = !1, y = !1, g = !1, S = !1;
|
|
1769
1769
|
switch (r.mimeType) {
|
|
1770
1770
|
case "application/json":
|
|
1771
|
-
r.jsonObj && c(`let payload = ${Te(r.jsonObj, a, i)};`, i),
|
|
1771
|
+
r.jsonObj && c(`let payload = ${Te(r.jsonObj, a, i)};`, i), g = !0;
|
|
1772
1772
|
break;
|
|
1773
1773
|
case "multipart/form-data":
|
|
1774
1774
|
if (S = !0, !r.params) {
|
|
@@ -1776,13 +1776,13 @@ const Te = (t, e, r) => {
|
|
|
1776
1776
|
break;
|
|
1777
1777
|
}
|
|
1778
1778
|
if (h = {}, r.params.forEach((v) => {
|
|
1779
|
-
v.fileName ? (
|
|
1780
|
-
}),
|
|
1781
|
-
for (const v of
|
|
1779
|
+
v.fileName ? (m[v.name] = v.fileName, b = !0) : h[v.name] = v.value;
|
|
1780
|
+
}), b) {
|
|
1781
|
+
for (const v of $o) c(v, i);
|
|
1782
1782
|
l();
|
|
1783
1783
|
}
|
|
1784
1784
|
c("let form = reqwest::multipart::Form::new()", i);
|
|
1785
|
-
for (const [v, P] of Object.entries(
|
|
1785
|
+
for (const [v, P] of Object.entries(m)) c(`.part("${v}", file_to_part("${P}").await)`, i + 1);
|
|
1786
1786
|
for (const [v, P] of Object.entries(h)) c(`.text("${v}", "${P}")`, i + 1);
|
|
1787
1787
|
u(";");
|
|
1788
1788
|
break;
|
|
@@ -1792,11 +1792,11 @@ const Te = (t, e, r) => {
|
|
|
1792
1792
|
break;
|
|
1793
1793
|
}
|
|
1794
1794
|
if (r.text) {
|
|
1795
|
-
c(`let payload = ${Te(r.text, a, i)};`, i),
|
|
1795
|
+
c(`let payload = ${Te(r.text, a, i)};`, i), y = !0;
|
|
1796
1796
|
break;
|
|
1797
1797
|
}
|
|
1798
1798
|
}
|
|
1799
|
-
($ ||
|
|
1799
|
+
($ || g) && d("use serde_json::json;"), ($ || g || y || S) && l();
|
|
1800
1800
|
const O = Object.entries(n).filter(([v]) => !(v.toLowerCase() === "content-type" && S));
|
|
1801
1801
|
switch (c("let client = reqwest::Client::new();", i), s) {
|
|
1802
1802
|
case "POST":
|
|
@@ -1806,30 +1806,30 @@ const Te = (t, e, r) => {
|
|
|
1806
1806
|
c("let response = client.get(url)", i);
|
|
1807
1807
|
break;
|
|
1808
1808
|
default:
|
|
1809
|
-
c(`let response = client.request(reqwest::Method::from_str("${s}").unwrap(), url)`, i),
|
|
1809
|
+
c(`let response = client.request(reqwest::Method::from_str("${s}").unwrap(), url)`, i), d("use std::str::FromStr;");
|
|
1810
1810
|
break;
|
|
1811
1811
|
}
|
|
1812
|
-
|
|
1812
|
+
p && c(".query(&querystring)", i + 1), S && c(".multipart(form)", i + 1);
|
|
1813
1813
|
for (const [v, P] of O) c(`.header("${v}", ${Te(P, a)})`, i + 1);
|
|
1814
|
-
return
|
|
1814
|
+
return g && c(".json(&payload)", i + 1), $ && c(".form(&payload)", i + 1), y && c(".body(payload)", i + 1), c(".send()", i + 1), c(".await;", i + 1), l(), c("let results = response.unwrap()", i), c(".json::<serde_json::Value>()", i + 1), c(".await", i + 1), c(".unwrap();", i + 1), l(), c('println!("{}", results);', i), c(`}
|
|
1815
1815
|
`), f();
|
|
1816
1816
|
}
|
|
1817
|
-
},
|
|
1817
|
+
}, $o = [
|
|
1818
1818
|
"async fn file_to_part(file_name: &'static str) -> reqwest::multipart::Part {",
|
|
1819
1819
|
" let bytes = tokio::fs::read(file_name).await.unwrap();",
|
|
1820
1820
|
" reqwest::multipart::Part::bytes(bytes)",
|
|
1821
1821
|
" .file_name(file_name)",
|
|
1822
1822
|
' .mime_str("text/plain").unwrap()',
|
|
1823
1823
|
"}"
|
|
1824
|
-
],
|
|
1824
|
+
], vo = {
|
|
1825
1825
|
info: {
|
|
1826
1826
|
key: "rust",
|
|
1827
1827
|
title: "Rust",
|
|
1828
1828
|
default: "reqwest",
|
|
1829
1829
|
cli: "rust"
|
|
1830
1830
|
},
|
|
1831
|
-
clientsById: { reqwest:
|
|
1832
|
-
}, H = (t = "") => /^[a-z0-9-_/.@%^=:]+$/i.test(t) ? t : `'${t.replace(/'/g, "'\\''")}'`,
|
|
1831
|
+
clientsById: { reqwest: bo }
|
|
1832
|
+
}, H = (t = "") => /^[a-z0-9-_/.@%^=:]+$/i.test(t) ? t : `'${t.replace(/'/g, "'\\''")}'`, wo = (t) => t.replace(/\r/g, "\\r").replace(/\n/g, "\\n"), So = {
|
|
1833
1833
|
"http1.0": "0",
|
|
1834
1834
|
"url ": "",
|
|
1835
1835
|
cookie: "b",
|
|
@@ -1839,13 +1839,13 @@ const Te = (t, e, r) => {
|
|
|
1839
1839
|
header: "H",
|
|
1840
1840
|
insecure: "k",
|
|
1841
1841
|
request: "X"
|
|
1842
|
-
},
|
|
1842
|
+
}, Oo = (t) => (e) => {
|
|
1843
1843
|
if (t) {
|
|
1844
|
-
const r =
|
|
1844
|
+
const r = So[e];
|
|
1845
1845
|
return r ? `-${r}` : "";
|
|
1846
1846
|
}
|
|
1847
1847
|
return `--${e}`;
|
|
1848
|
-
},
|
|
1848
|
+
}, To = {
|
|
1849
1849
|
info: {
|
|
1850
1850
|
key: "shell",
|
|
1851
1851
|
title: "Shell",
|
|
@@ -1863,52 +1863,52 @@ const Te = (t, e, r) => {
|
|
|
1863
1863
|
},
|
|
1864
1864
|
convert: ({ fullUrl: t, method: e, httpVersion: r, headersObj: n, allHeaders: s, postData: o }, a = {}) => {
|
|
1865
1865
|
var $;
|
|
1866
|
-
const { binary: i = !1, globOff: c = !1, indent: l = " ", insecureSkipVerify: f = !1, short: u = !1 } = a,
|
|
1866
|
+
const { binary: i = !1, globOff: c = !1, indent: l = " ", insecureSkipVerify: f = !1, short: u = !1 } = a, d = " ", { push: p, join: h } = new E({
|
|
1867
1867
|
...typeof l == "string" ? { indent: l } : {},
|
|
1868
1868
|
join: l !== !1 ? ` \\
|
|
1869
1869
|
${l}` : " "
|
|
1870
|
-
}),
|
|
1871
|
-
let
|
|
1872
|
-
if (
|
|
1873
|
-
const
|
|
1874
|
-
if (
|
|
1875
|
-
const
|
|
1876
|
-
if (
|
|
1877
|
-
const S = String(
|
|
1878
|
-
n[
|
|
1870
|
+
}), m = Oo(u);
|
|
1871
|
+
let b = H(t);
|
|
1872
|
+
if (p(`curl ${m("request")} ${e}`), c && (b = unescape(b), p(m("globoff"))), p(`${m("url ")}${b}`), f && p(m("insecure")), r === "HTTP/1.0" && p(m("http1.0")), se(s, "accept-encoding") && p("--compressed"), o.mimeType === "multipart/form-data") {
|
|
1873
|
+
const y = J(n, "content-type");
|
|
1874
|
+
if (y) {
|
|
1875
|
+
const g = n[y];
|
|
1876
|
+
if (y && g) {
|
|
1877
|
+
const S = String(g).replace(/; boundary.+?(?=(;|$))/, "");
|
|
1878
|
+
n[y] = S, s[y] = S;
|
|
1879
1879
|
}
|
|
1880
1880
|
}
|
|
1881
1881
|
}
|
|
1882
|
-
switch (Object.keys(n).sort().forEach((
|
|
1883
|
-
const
|
|
1884
|
-
|
|
1885
|
-
}), s.cookie &&
|
|
1882
|
+
switch (Object.keys(n).sort().forEach((y) => {
|
|
1883
|
+
const g = `${y}: ${n[y]}`;
|
|
1884
|
+
p(`${m("header")} ${H(g)}`);
|
|
1885
|
+
}), s.cookie && p(`${m("cookie")} ${H(s.cookie)}`), o.mimeType) {
|
|
1886
1886
|
case "multipart/form-data":
|
|
1887
|
-
($ = o.params) == null || $.forEach((
|
|
1888
|
-
let
|
|
1889
|
-
|
|
1887
|
+
($ = o.params) == null || $.forEach((y) => {
|
|
1888
|
+
let g = "";
|
|
1889
|
+
y.fileName ? g = `${y.name}='@${y.fileName}'` : g = H(`${y.name}=${y.value}`), p(`${m("form")} ${g}`);
|
|
1890
1890
|
});
|
|
1891
1891
|
break;
|
|
1892
1892
|
case "application/x-www-form-urlencoded":
|
|
1893
|
-
o.params ? o.params.forEach((
|
|
1894
|
-
const
|
|
1895
|
-
|
|
1896
|
-
}) :
|
|
1893
|
+
o.params ? o.params.forEach((y) => {
|
|
1894
|
+
const g = encodeURIComponent(y.name), S = g !== y.name ? g : y.name;
|
|
1895
|
+
p(`${i ? "--data-binary" : "--data-urlencode"} ${H(`${S}=${y.value}`)}`);
|
|
1896
|
+
}) : p(`${i ? "--data-binary" : m("data")} ${H(o.text)}`);
|
|
1897
1897
|
break;
|
|
1898
1898
|
default: {
|
|
1899
1899
|
if (!o.text) break;
|
|
1900
|
-
let
|
|
1901
|
-
if (
|
|
1900
|
+
let y = !1;
|
|
1901
|
+
if (Gn(o.mimeType) && o.text.length > 20)
|
|
1902
1902
|
try {
|
|
1903
|
-
const
|
|
1904
|
-
|
|
1905
|
-
${JSON.stringify(
|
|
1906
|
-
EOF`) :
|
|
1907
|
-
${JSON.stringify(
|
|
1903
|
+
const g = JSON.parse(o.text);
|
|
1904
|
+
y = !0, o.text.indexOf("'") > 0 ? p(`${i ? "--data-binary" : m("data")} @- <<EOF
|
|
1905
|
+
${JSON.stringify(g, null, d)}
|
|
1906
|
+
EOF`) : p(`${i ? "--data-binary" : m("data")} '
|
|
1907
|
+
${JSON.stringify(g, null, d)}
|
|
1908
1908
|
'`);
|
|
1909
1909
|
} catch {
|
|
1910
1910
|
}
|
|
1911
|
-
|
|
1911
|
+
y || p(`${i ? "--data-binary" : m("data")} ${H(o.text)}`);
|
|
1912
1912
|
}
|
|
1913
1913
|
}
|
|
1914
1914
|
return h();
|
|
@@ -1945,19 +1945,19 @@ ${JSON.stringify(b, null, p)}
|
|
|
1945
1945
|
${i.indent}` : " "
|
|
1946
1946
|
});
|
|
1947
1947
|
let u = !1;
|
|
1948
|
-
const
|
|
1949
|
-
i.headers &&
|
|
1950
|
-
const
|
|
1951
|
-
Array.isArray(
|
|
1952
|
-
c(`${
|
|
1953
|
-
}) : c(`${
|
|
1954
|
-
}), Object.keys(t).sort().forEach((
|
|
1955
|
-
c(`${
|
|
1956
|
-
}), e.mimeType === "application/x-www-form-urlencoded" ? (h = e.params) != null && h.length && (
|
|
1957
|
-
c(`${
|
|
1948
|
+
const d = [];
|
|
1949
|
+
i.headers && d.push(i.short ? "-h" : "--headers"), i.body && d.push(i.short ? "-b" : "--body"), i.verbose && d.push(i.short ? "-v" : "--verbose"), i.print && d.push(`${i.short ? "-p" : "--print"}=${i.print}`), i.verify && d.push(`--verify=${i.verify}`), i.cert && d.push(`--cert=${i.cert}`), i.pretty && d.push(`--pretty=${i.pretty}`), i.style && d.push(`--style=${i.style}`), i.timeout && d.push(`--timeout=${i.timeout}`), i.queryParams && Object.keys(r).forEach((m) => {
|
|
1950
|
+
const b = r[m];
|
|
1951
|
+
Array.isArray(b) ? b.forEach(($) => {
|
|
1952
|
+
c(`${m}==${H($)}`);
|
|
1953
|
+
}) : c(`${m}==${H(b)}`);
|
|
1954
|
+
}), Object.keys(t).sort().forEach((m) => {
|
|
1955
|
+
c(`${m}:${H(t[m])}`);
|
|
1956
|
+
}), e.mimeType === "application/x-www-form-urlencoded" ? (h = e.params) != null && h.length && (d.push(i.short ? "-f" : "--form"), e.params.forEach((m) => {
|
|
1957
|
+
c(`${m.name}=${H(m.value)}`);
|
|
1958
1958
|
})) : u = !0;
|
|
1959
|
-
const
|
|
1960
|
-
return o = H(i.queryParams ? o : n), f(`http ${
|
|
1959
|
+
const p = d.length ? `${d.join(" ")} ` : "";
|
|
1960
|
+
return o = H(i.queryParams ? o : n), f(`http ${p}${s} ${o}`), u && e.text && f(`echo ${H(e.text)} | `), l();
|
|
1961
1961
|
}
|
|
1962
1962
|
},
|
|
1963
1963
|
wget: {
|
|
@@ -1982,29 +1982,29 @@ ${o.indent}` : " "
|
|
|
1982
1982
|
return o.verbose ? a(`wget ${o.short ? "-v" : "--verbose"}`) : a(`wget ${o.short ? "-q" : "--quiet"}`), a(`--method ${H(t)}`), Object.keys(r).forEach((c) => {
|
|
1983
1983
|
const l = `${c}: ${r[c]}`;
|
|
1984
1984
|
a(`--header ${H(l)}`);
|
|
1985
|
-
}), e.text && a(`--body-data ${
|
|
1985
|
+
}), e.text && a(`--body-data ${wo(H(e.text))}`), a(o.short ? "-O" : "--output-document"), a(`- ${H(n)}`), i();
|
|
1986
1986
|
}
|
|
1987
1987
|
}
|
|
1988
1988
|
}
|
|
1989
|
-
},
|
|
1990
|
-
const s =
|
|
1989
|
+
}, hr = (t, e) => e.repeat(t), yr = (t, e, r, n) => {
|
|
1990
|
+
const s = hr(n, r), o = hr(n - 1, r), a = e ? `,
|
|
1991
1991
|
${s}` : ", ";
|
|
1992
1992
|
return e ? `[
|
|
1993
1993
|
${s}${t.join(a)}
|
|
1994
1994
|
${o}]` : `[${t.join(a)}]`;
|
|
1995
|
-
},
|
|
1995
|
+
}, mr = (t, e, r) => `let ${t} = ${ot(e, r)}`, ot = (t, e, r) => {
|
|
1996
1996
|
switch (r = r === void 0 ? 1 : r + 1, Object.prototype.toString.call(t)) {
|
|
1997
1997
|
case "[object Number]":
|
|
1998
1998
|
return t;
|
|
1999
1999
|
case "[object Array]": {
|
|
2000
2000
|
let n = !1;
|
|
2001
2001
|
const s = t.map((o) => (Object.prototype.toString.call(o) === "[object Object]" && (n = Object.keys(o).length > 1), ot(o, e, r)));
|
|
2002
|
-
return
|
|
2002
|
+
return yr(s, n, e.indent, r);
|
|
2003
2003
|
}
|
|
2004
2004
|
case "[object Object]": {
|
|
2005
2005
|
const n = [];
|
|
2006
2006
|
for (const s in t) n.push(`"${s}": ${ot(t[s], e, r)}`);
|
|
2007
|
-
return
|
|
2007
|
+
return yr(n, e.pretty && n.length > 1, e.indent, r);
|
|
2008
2008
|
}
|
|
2009
2009
|
case "[object Boolean]":
|
|
2010
2010
|
return t.toString();
|
|
@@ -2012,27 +2012,27 @@ ${o}]` : `[${t.join(a)}]`;
|
|
|
2012
2012
|
return t == null ? "nil" : `"${t.toString().replace(/"/g, '\\"')}"`;
|
|
2013
2013
|
}
|
|
2014
2014
|
}, xe = {
|
|
2015
|
-
agent:
|
|
2016
|
-
c:
|
|
2017
|
-
clojure:
|
|
2018
|
-
crystal:
|
|
2019
|
-
csharp:
|
|
2020
|
-
go:
|
|
2021
|
-
http:
|
|
2022
|
-
java:
|
|
2023
|
-
javascript:
|
|
2024
|
-
json:
|
|
2025
|
-
kotlin:
|
|
2026
|
-
node:
|
|
2027
|
-
objc:
|
|
2028
|
-
ocaml:
|
|
2029
|
-
php:
|
|
2030
|
-
powershell:
|
|
2031
|
-
python:
|
|
2032
|
-
r:
|
|
2033
|
-
ruby:
|
|
2034
|
-
rust:
|
|
2035
|
-
shell:
|
|
2015
|
+
agent: zn,
|
|
2016
|
+
c: Vn,
|
|
2017
|
+
clojure: Dn,
|
|
2018
|
+
crystal: Qn,
|
|
2019
|
+
csharp: eo,
|
|
2020
|
+
go: to,
|
|
2021
|
+
http: ro,
|
|
2022
|
+
java: no,
|
|
2023
|
+
javascript: oo,
|
|
2024
|
+
json: io,
|
|
2025
|
+
kotlin: ao,
|
|
2026
|
+
node: so,
|
|
2027
|
+
objc: co,
|
|
2028
|
+
ocaml: lo,
|
|
2029
|
+
php: fo,
|
|
2030
|
+
powershell: po,
|
|
2031
|
+
python: yo,
|
|
2032
|
+
r: mo,
|
|
2033
|
+
ruby: go,
|
|
2034
|
+
rust: vo,
|
|
2035
|
+
shell: To,
|
|
2036
2036
|
swift: {
|
|
2037
2037
|
info: {
|
|
2038
2038
|
key: "swift",
|
|
@@ -2048,7 +2048,7 @@ ${o}]` : `[${t.join(a)}]`;
|
|
|
2048
2048
|
extname: ".swift"
|
|
2049
2049
|
},
|
|
2050
2050
|
convert: ({ allHeaders: t, postData: e, uriObj: r, queryObj: n, method: s }, o) => {
|
|
2051
|
-
var
|
|
2051
|
+
var d;
|
|
2052
2052
|
const a = {
|
|
2053
2053
|
indent: " ",
|
|
2054
2054
|
pretty: !0,
|
|
@@ -2059,33 +2059,33 @@ ${o}]` : `[${t.join(a)}]`;
|
|
|
2059
2059
|
const f = e.text || e.jsonObj || e.params;
|
|
2060
2060
|
if (f) switch (e.mimeType) {
|
|
2061
2061
|
case "application/x-www-form-urlencoded":
|
|
2062
|
-
if ((
|
|
2063
|
-
const
|
|
2064
|
-
a.pretty ? (i("let parameters = ["),
|
|
2062
|
+
if ((d = e.params) != null && d.length) {
|
|
2063
|
+
const p = e.params.map((h) => `"${h.name}": "${h.value}"`);
|
|
2064
|
+
a.pretty ? (i("let parameters = ["), p.forEach((h) => {
|
|
2065
2065
|
i(`${h},`, 1);
|
|
2066
|
-
}), i("]")) : i(`let parameters = [${
|
|
2066
|
+
}), i("]")) : i(`let parameters = [${p.join(", ")}]`), i('let joinedParameters = parameters.map { "\\($0.key)=\\($0.value)" }.joined(separator: "&")'), i("let postData = Data(joinedParameters.utf8)"), c();
|
|
2067
2067
|
}
|
|
2068
2068
|
break;
|
|
2069
2069
|
case "application/json":
|
|
2070
|
-
e.jsonObj && (i(`${
|
|
2070
|
+
e.jsonObj && (i(`${mr("parameters", e.jsonObj, a)} as [String : Any?]`), c(), i("let postData = try JSONSerialization.data(withJSONObject: parameters, options: [])"), c());
|
|
2071
2071
|
break;
|
|
2072
2072
|
case "multipart/form-data":
|
|
2073
|
-
i(
|
|
2073
|
+
i(mr("parameters", e.params, a)), c(), i(`let boundary = "${e.boundary}"`), c(), i('var body = ""'), i("for param in parameters {"), i('let paramName = param["name"]!', 1), i('body += "--\\(boundary)\\r\\n"', 1), i('body += "Content-Disposition:form-data; name=\\"\\(paramName)\\""', 1), i('if let filename = param["fileName"] {', 1), i('let contentType = param["contentType"]!', 2), i("let fileContent = try String(contentsOfFile: filename, encoding: .utf8)", 2), i('body += "; filename=\\"\\(filename)\\"\\r\\n"', 2), i('body += "Content-Type: \\(contentType)\\r\\n\\r\\n"', 2), i("body += fileContent", 2), i('} else if let paramValue = param["value"] {', 1), i('body += "\\r\\n\\r\\n\\(paramValue)"', 2), i("}", 1), i("}"), c(), i("let postData = Data(body.utf8)"), c();
|
|
2074
2074
|
break;
|
|
2075
2075
|
default:
|
|
2076
2076
|
i(`let postData = Data("${e.text}".utf8)`), c();
|
|
2077
2077
|
}
|
|
2078
2078
|
i(`let url = URL(string: "${r.href}")!`);
|
|
2079
2079
|
const u = n ? Object.entries(n) : [];
|
|
2080
|
-
return u.length < 1 ? i("var request = URLRequest(url: url)") : (i("var components = URLComponents(url: url, resolvingAgainstBaseURL: true)!"), i("let queryItems: [URLQueryItem] = ["), u.forEach((
|
|
2081
|
-
const h =
|
|
2082
|
-
switch (Object.prototype.toString.call(
|
|
2080
|
+
return u.length < 1 ? i("var request = URLRequest(url: url)") : (i("var components = URLComponents(url: url, resolvingAgainstBaseURL: true)!"), i("let queryItems: [URLQueryItem] = ["), u.forEach((p) => {
|
|
2081
|
+
const h = p[0], m = p[1];
|
|
2082
|
+
switch (Object.prototype.toString.call(m)) {
|
|
2083
2083
|
case "[object String]":
|
|
2084
|
-
i(`URLQueryItem(name: "${h}", value: "${
|
|
2084
|
+
i(`URLQueryItem(name: "${h}", value: "${m}"),`, 1);
|
|
2085
2085
|
break;
|
|
2086
2086
|
case "[object Array]":
|
|
2087
|
-
|
|
2088
|
-
i(`URLQueryItem(name: "${h}", value: "${
|
|
2087
|
+
m.forEach((b) => {
|
|
2088
|
+
i(`URLQueryItem(name: "${h}", value: "${b}"),`, 1);
|
|
2089
2089
|
});
|
|
2090
2090
|
break;
|
|
2091
2091
|
}
|
|
@@ -2093,24 +2093,24 @@ ${o}]` : `[${t.join(a)}]`;
|
|
|
2093
2093
|
}
|
|
2094
2094
|
} }
|
|
2095
2095
|
}
|
|
2096
|
-
},
|
|
2096
|
+
}, gr = (t, e) => {
|
|
2097
2097
|
const r = t[e.name];
|
|
2098
2098
|
return r === void 0 ? (t[e.name] = e.value, t) : Array.isArray(r) ? (r.push(e.value), t) : (t[e.name] = [r, e.value], t);
|
|
2099
2099
|
};
|
|
2100
2100
|
var it = { exports: {} };
|
|
2101
2101
|
/*! https://mths.be/punycode v1.4.1 by @mathias */
|
|
2102
|
-
var
|
|
2102
|
+
var xo = it.exports;
|
|
2103
2103
|
(function(t, e) {
|
|
2104
2104
|
(function(r) {
|
|
2105
2105
|
var n = e && !e.nodeType && e, s = t && !t.nodeType && t, o = typeof rt == "object" && rt;
|
|
2106
2106
|
(o.global === o || o.window === o || o.self === o) && (r = o);
|
|
2107
|
-
var a, i = 2147483647, c = 36, l = 1, f = 26, u = 38,
|
|
2107
|
+
var a, i = 2147483647, c = 36, l = 1, f = 26, u = 38, d = 700, p = 72, h = 128, m = "-", b = /^xn--/, $ = /[^\x20-\x7E]/, y = /[\x2E\u3002\uFF0E\uFF61]/g, g = {
|
|
2108
2108
|
overflow: "Overflow: input needs wider integers to process",
|
|
2109
2109
|
"not-basic": "Illegal input >= 0x80 (not a basic code point)",
|
|
2110
2110
|
"invalid-input": "Invalid input"
|
|
2111
2111
|
}, S = c - l, O = Math.floor, v = String.fromCharCode, P;
|
|
2112
2112
|
function T(w) {
|
|
2113
|
-
throw new RangeError(
|
|
2113
|
+
throw new RangeError(g[w]);
|
|
2114
2114
|
}
|
|
2115
2115
|
function k(w, x) {
|
|
2116
2116
|
for (var C = w.length, R = []; C--; )
|
|
@@ -2119,13 +2119,13 @@ var Po = it.exports;
|
|
|
2119
2119
|
}
|
|
2120
2120
|
function U(w, x) {
|
|
2121
2121
|
var C = w.split("@"), R = "";
|
|
2122
|
-
C.length > 1 && (R = C[0] + "@", w = C[1]), w = w.replace(
|
|
2123
|
-
var
|
|
2122
|
+
C.length > 1 && (R = C[0] + "@", w = C[1]), w = w.replace(y, ".");
|
|
2123
|
+
var q = w.split("."), z = k(q, x).join(".");
|
|
2124
2124
|
return R + z;
|
|
2125
2125
|
}
|
|
2126
2126
|
function Q(w) {
|
|
2127
|
-
for (var x = [], C = 0, R = w.length,
|
|
2128
|
-
|
|
2127
|
+
for (var x = [], C = 0, R = w.length, q, z; C < R; )
|
|
2128
|
+
q = w.charCodeAt(C++), q >= 55296 && q <= 56319 && C < R ? (z = w.charCodeAt(C++), (z & 64512) == 56320 ? x.push(((q & 1023) << 10) + (z & 1023) + 65536) : (x.push(q), C--)) : x.push(q);
|
|
2129
2129
|
return x;
|
|
2130
2130
|
}
|
|
2131
2131
|
function Y(w) {
|
|
@@ -2142,26 +2142,26 @@ var Po = it.exports;
|
|
|
2142
2142
|
}
|
|
2143
2143
|
function B(w, x, C) {
|
|
2144
2144
|
var R = 0;
|
|
2145
|
-
for (w = C ? O(w /
|
|
2145
|
+
for (w = C ? O(w / d) : w >> 1, w += O(w / x); w > S * f >> 1; R += c)
|
|
2146
2146
|
w = O(w / S);
|
|
2147
2147
|
return O(R + (S + 1) * w / (w + u));
|
|
2148
2148
|
}
|
|
2149
2149
|
function V(w) {
|
|
2150
|
-
var x = [], C = w.length, R,
|
|
2151
|
-
for (K = w.lastIndexOf(
|
|
2150
|
+
var x = [], C = w.length, R, q = 0, z = h, M = p, K, X, te, ce, W, D, Z, ue, he;
|
|
2151
|
+
for (K = w.lastIndexOf(m), K < 0 && (K = 0), X = 0; X < K; ++X)
|
|
2152
2152
|
w.charCodeAt(X) >= 128 && T("not-basic"), x.push(w.charCodeAt(X));
|
|
2153
2153
|
for (te = K > 0 ? K + 1 : 0; te < C; ) {
|
|
2154
|
-
for (ce =
|
|
2154
|
+
for (ce = q, W = 1, D = c; te >= C && T("invalid-input"), Z = _(w.charCodeAt(te++)), (Z >= c || Z > O((i - q) / W)) && T("overflow"), q += Z * W, ue = D <= M ? l : D >= M + f ? f : D - M, !(Z < ue); D += c)
|
|
2155
2155
|
he = c - ue, W > O(i / he) && T("overflow"), W *= he;
|
|
2156
|
-
R = x.length + 1, M = B(
|
|
2156
|
+
R = x.length + 1, M = B(q - ce, R, ce == 0), O(q / R) > i - z && T("overflow"), z += O(q / R), q %= R, x.splice(q++, 0, z);
|
|
2157
2157
|
}
|
|
2158
2158
|
return Y(x);
|
|
2159
2159
|
}
|
|
2160
2160
|
function fe(w) {
|
|
2161
|
-
var x, C, R,
|
|
2162
|
-
for (w = Q(w), Z = w.length, x = h, C = 0, z =
|
|
2161
|
+
var x, C, R, q, z, M, K, X, te, ce, W, D = [], Z, ue, he, mt;
|
|
2162
|
+
for (w = Q(w), Z = w.length, x = h, C = 0, z = p, M = 0; M < Z; ++M)
|
|
2163
2163
|
W = w[M], W < 128 && D.push(v(W));
|
|
2164
|
-
for (R =
|
|
2164
|
+
for (R = q = D.length, q && D.push(m); R < Z; ) {
|
|
2165
2165
|
for (K = i, M = 0; M < Z; ++M)
|
|
2166
2166
|
W = w[M], W >= x && W < K && (K = W);
|
|
2167
2167
|
for (ue = R + 1, K - x > O((i - C) / ue) && T("overflow"), C += (K - x) * ue, x = K, M = 0; M < Z; ++M)
|
|
@@ -2170,7 +2170,7 @@ var Po = it.exports;
|
|
|
2170
2170
|
mt = X - ce, he = c - ce, D.push(
|
|
2171
2171
|
v(G(ce + mt % he, 0))
|
|
2172
2172
|
), X = O(mt / he);
|
|
2173
|
-
D.push(v(G(X, 0))), z = B(C, ue, R ==
|
|
2173
|
+
D.push(v(G(X, 0))), z = B(C, ue, R == q), C = 0, ++R;
|
|
2174
2174
|
}
|
|
2175
2175
|
++C, ++x;
|
|
2176
2176
|
}
|
|
@@ -2178,7 +2178,7 @@ var Po = it.exports;
|
|
|
2178
2178
|
}
|
|
2179
2179
|
function yt(w) {
|
|
2180
2180
|
return U(w, function(x) {
|
|
2181
|
-
return
|
|
2181
|
+
return b.test(x) ? V(x.slice(4).toLowerCase()) : x;
|
|
2182
2182
|
});
|
|
2183
2183
|
}
|
|
2184
2184
|
function Ge(w) {
|
|
@@ -2216,42 +2216,42 @@ var Po = it.exports;
|
|
|
2216
2216
|
a.hasOwnProperty(P) && (n[P] = a[P]);
|
|
2217
2217
|
else
|
|
2218
2218
|
r.punycode = a;
|
|
2219
|
-
})(
|
|
2219
|
+
})(xo);
|
|
2220
2220
|
})(it, it.exports);
|
|
2221
|
-
var
|
|
2222
|
-
const
|
|
2223
|
-
Object.assign(
|
|
2224
|
-
const
|
|
2221
|
+
var Eo = it.exports, Re = TypeError;
|
|
2222
|
+
const Xr = (t) => String(t);
|
|
2223
|
+
Object.assign(Xr, { custom: Symbol.for("nodejs.util.inspect.custom") });
|
|
2224
|
+
const jo = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
2225
2225
|
__proto__: null,
|
|
2226
|
-
default:
|
|
2227
|
-
}, Symbol.toStringTag, { value: "Module" })),
|
|
2228
|
-
var
|
|
2226
|
+
default: Xr
|
|
2227
|
+
}, Symbol.toStringTag, { value: "Module" })), Po = /* @__PURE__ */ Rn(jo);
|
|
2228
|
+
var Qt = typeof Map == "function" && Map.prototype, $t = Object.getOwnPropertyDescriptor && Qt ? Object.getOwnPropertyDescriptor(Map.prototype, "size") : null, at = Qt && $t && typeof $t.get == "function" ? $t.get : null, br = Qt && Map.prototype.forEach, Yt = typeof Set == "function" && Set.prototype, vt = Object.getOwnPropertyDescriptor && Yt ? Object.getOwnPropertyDescriptor(Set.prototype, "size") : null, st = Yt && vt && typeof vt.get == "function" ? vt.get : null, $r = Yt && Set.prototype.forEach, Co = typeof WeakMap == "function" && WeakMap.prototype, Le = Co ? WeakMap.prototype.has : null, ko = typeof WeakSet == "function" && WeakSet.prototype, Ie = ko ? WeakSet.prototype.has : null, Ao = typeof WeakRef == "function" && WeakRef.prototype, vr = Ao ? WeakRef.prototype.deref : null, Ro = Boolean.prototype.valueOf, No = Object.prototype.toString, qo = Function.prototype.toString, _o = String.prototype.match, Xt = String.prototype.slice, pe = String.prototype.replace, Lo = String.prototype.toUpperCase, wr = String.prototype.toLowerCase, Zr = RegExp.prototype.test, Sr = Array.prototype.concat, ie = Array.prototype.join, Io = Array.prototype.slice, Or = Math.floor, Ft = typeof BigInt == "function" ? BigInt.prototype.valueOf : null, wt = Object.getOwnPropertySymbols, Mt = typeof Symbol == "function" && typeof Symbol.iterator == "symbol" ? Symbol.prototype.toString : null, ke = typeof Symbol == "function" && typeof Symbol.iterator == "object", Ue = typeof Symbol == "function" && Symbol.toStringTag && (typeof Symbol.toStringTag === ke || !0) ? Symbol.toStringTag : null, en = Object.prototype.propertyIsEnumerable, Tr = (typeof Reflect == "function" ? Reflect.getPrototypeOf : Object.getPrototypeOf) || ([].__proto__ === Array.prototype ? function(t) {
|
|
2229
2229
|
return t.__proto__;
|
|
2230
2230
|
} : null);
|
|
2231
|
-
function
|
|
2232
|
-
if (t === 1 / 0 || t === -1 / 0 || t !== t || t && t > -1e3 && t < 1e3 ||
|
|
2231
|
+
function xr(t, e) {
|
|
2232
|
+
if (t === 1 / 0 || t === -1 / 0 || t !== t || t && t > -1e3 && t < 1e3 || Zr.call(/e/, e))
|
|
2233
2233
|
return e;
|
|
2234
2234
|
var r = /[0-9](?=(?:[0-9]{3})+(?![0-9]))/g;
|
|
2235
2235
|
if (typeof t == "number") {
|
|
2236
|
-
var n = t < 0 ? -
|
|
2236
|
+
var n = t < 0 ? -Or(-t) : Or(t);
|
|
2237
2237
|
if (n !== t) {
|
|
2238
|
-
var s = String(n), o =
|
|
2238
|
+
var s = String(n), o = Xt.call(e, s.length + 1);
|
|
2239
2239
|
return pe.call(s, r, "$&_") + "." + pe.call(pe.call(o, /([0-9]{3})/g, "$&_"), /_$/, "");
|
|
2240
2240
|
}
|
|
2241
2241
|
}
|
|
2242
2242
|
return pe.call(e, r, "$&_");
|
|
2243
2243
|
}
|
|
2244
|
-
var
|
|
2244
|
+
var Ht = Po, Er = Ht.custom, jr = nn(Er) ? Er : null, tn = {
|
|
2245
2245
|
__proto__: null,
|
|
2246
2246
|
double: '"',
|
|
2247
2247
|
single: "'"
|
|
2248
|
-
},
|
|
2248
|
+
}, Uo = {
|
|
2249
2249
|
__proto__: null,
|
|
2250
2250
|
double: /(["\\])/g,
|
|
2251
2251
|
single: /(['\\])/g
|
|
2252
2252
|
}, ft = function t(e, r, n, s) {
|
|
2253
2253
|
var o = r || {};
|
|
2254
|
-
if (le(o, "quoteStyle") && !le(
|
|
2254
|
+
if (le(o, "quoteStyle") && !le(tn, o.quoteStyle))
|
|
2255
2255
|
throw new TypeError('option "quoteStyle" must be "single" or "double"');
|
|
2256
2256
|
if (le(o, "maxStringLength") && (typeof o.maxStringLength == "number" ? o.maxStringLength < 0 && o.maxStringLength !== 1 / 0 : o.maxStringLength !== null))
|
|
2257
2257
|
throw new TypeError('option "maxStringLength", if provided, must be a positive integer, Infinity, or `null`');
|
|
@@ -2270,27 +2270,27 @@ var Wt = Ao, Pr = Wt.custom, Cr = sn(Pr) ? Pr : null, on = {
|
|
|
2270
2270
|
if (typeof e == "boolean")
|
|
2271
2271
|
return e ? "true" : "false";
|
|
2272
2272
|
if (typeof e == "string")
|
|
2273
|
-
return
|
|
2273
|
+
return an(e, o);
|
|
2274
2274
|
if (typeof e == "number") {
|
|
2275
2275
|
if (e === 0)
|
|
2276
2276
|
return 1 / 0 / e > 0 ? "0" : "-0";
|
|
2277
2277
|
var c = String(e);
|
|
2278
|
-
return i ?
|
|
2278
|
+
return i ? xr(e, c) : c;
|
|
2279
2279
|
}
|
|
2280
2280
|
if (typeof e == "bigint") {
|
|
2281
2281
|
var l = String(e) + "n";
|
|
2282
|
-
return i ?
|
|
2282
|
+
return i ? xr(e, l) : l;
|
|
2283
2283
|
}
|
|
2284
2284
|
var f = typeof o.depth > "u" ? 5 : o.depth;
|
|
2285
2285
|
if (typeof n > "u" && (n = 0), n >= f && f > 0 && typeof e == "object")
|
|
2286
|
-
return
|
|
2287
|
-
var u =
|
|
2286
|
+
return Bt(e) ? "[Array]" : "[Object]";
|
|
2287
|
+
var u = ri(o, n);
|
|
2288
2288
|
if (typeof s > "u")
|
|
2289
2289
|
s = [];
|
|
2290
|
-
else if (
|
|
2290
|
+
else if (on(s, e) >= 0)
|
|
2291
2291
|
return "[Circular]";
|
|
2292
|
-
function
|
|
2293
|
-
if (G && (s =
|
|
2292
|
+
function d(_, G, B) {
|
|
2293
|
+
if (G && (s = Io.call(s), s.push(G)), B) {
|
|
2294
2294
|
var V = {
|
|
2295
2295
|
depth: o.depth
|
|
2296
2296
|
};
|
|
@@ -2298,140 +2298,140 @@ var Wt = Ao, Pr = Wt.custom, Cr = sn(Pr) ? Pr : null, on = {
|
|
|
2298
2298
|
}
|
|
2299
2299
|
return t(_, o, n + 1, s);
|
|
2300
2300
|
}
|
|
2301
|
-
if (typeof e == "function" && !
|
|
2302
|
-
var
|
|
2303
|
-
return "[Function" + (
|
|
2301
|
+
if (typeof e == "function" && !Pr(e)) {
|
|
2302
|
+
var p = Vo(e), h = Ve(e, d);
|
|
2303
|
+
return "[Function" + (p ? ": " + p : " (anonymous)") + "]" + (h.length > 0 ? " { " + ie.call(h, ", ") + " }" : "");
|
|
2304
2304
|
}
|
|
2305
|
-
if (
|
|
2306
|
-
var
|
|
2307
|
-
return typeof e == "object" && !ke ?
|
|
2305
|
+
if (nn(e)) {
|
|
2306
|
+
var m = ke ? pe.call(String(e), /^(Symbol\(.*\))_[^)]*$/, "$1") : Mt.call(e);
|
|
2307
|
+
return typeof e == "object" && !ke ? qe(m) : m;
|
|
2308
2308
|
}
|
|
2309
|
-
if (
|
|
2310
|
-
for (var
|
|
2311
|
-
|
|
2312
|
-
return
|
|
2309
|
+
if (Zo(e)) {
|
|
2310
|
+
for (var b = "<" + wr.call(String(e.nodeName)), $ = e.attributes || [], y = 0; y < $.length; y++)
|
|
2311
|
+
b += " " + $[y].name + "=" + rn(Fo($[y].value), "double", o);
|
|
2312
|
+
return b += ">", e.childNodes && e.childNodes.length && (b += "..."), b += "</" + wr.call(String(e.nodeName)) + ">", b;
|
|
2313
2313
|
}
|
|
2314
|
-
if (
|
|
2314
|
+
if (Bt(e)) {
|
|
2315
2315
|
if (e.length === 0)
|
|
2316
2316
|
return "[]";
|
|
2317
|
-
var
|
|
2318
|
-
return u && !
|
|
2317
|
+
var g = Ve(e, d);
|
|
2318
|
+
return u && !ti(g) ? "[" + Wt(g, u) + "]" : "[ " + ie.call(g, ", ") + " ]";
|
|
2319
2319
|
}
|
|
2320
|
-
if (
|
|
2321
|
-
var S = Ve(e,
|
|
2322
|
-
return !("cause" in Error.prototype) && "cause" in e && !
|
|
2320
|
+
if (Ho(e)) {
|
|
2321
|
+
var S = Ve(e, d);
|
|
2322
|
+
return !("cause" in Error.prototype) && "cause" in e && !en.call(e, "cause") ? "{ [" + String(e) + "] " + ie.call(Sr.call("[cause]: " + d(e.cause), S), ", ") + " }" : S.length === 0 ? "[" + String(e) + "]" : "{ [" + String(e) + "] " + ie.call(S, ", ") + " }";
|
|
2323
2323
|
}
|
|
2324
2324
|
if (typeof e == "object" && a) {
|
|
2325
|
-
if (
|
|
2326
|
-
return
|
|
2325
|
+
if (jr && typeof e[jr] == "function" && Ht)
|
|
2326
|
+
return Ht(e, { depth: f - n });
|
|
2327
2327
|
if (a !== "symbol" && typeof e.inspect == "function")
|
|
2328
2328
|
return e.inspect();
|
|
2329
2329
|
}
|
|
2330
|
-
if (
|
|
2330
|
+
if (Ko(e)) {
|
|
2331
2331
|
var O = [];
|
|
2332
|
-
return
|
|
2333
|
-
O.push(
|
|
2334
|
-
}),
|
|
2332
|
+
return br && br.call(e, function(_, G) {
|
|
2333
|
+
O.push(d(G, e, !0) + " => " + d(_, e));
|
|
2334
|
+
}), Cr("Map", at.call(e), O, u);
|
|
2335
2335
|
}
|
|
2336
|
-
if (
|
|
2336
|
+
if (Yo(e)) {
|
|
2337
2337
|
var v = [];
|
|
2338
|
-
return
|
|
2339
|
-
v.push(
|
|
2340
|
-
}),
|
|
2338
|
+
return $r && $r.call(e, function(_) {
|
|
2339
|
+
v.push(d(_, e));
|
|
2340
|
+
}), Cr("Set", st.call(e), v, u);
|
|
2341
2341
|
}
|
|
2342
|
-
if (
|
|
2342
|
+
if (Do(e))
|
|
2343
2343
|
return St("WeakMap");
|
|
2344
|
-
if (
|
|
2344
|
+
if (Xo(e))
|
|
2345
2345
|
return St("WeakSet");
|
|
2346
|
-
if (
|
|
2346
|
+
if (Qo(e))
|
|
2347
2347
|
return St("WeakRef");
|
|
2348
|
-
if (
|
|
2349
|
-
return
|
|
2350
|
-
if (Ko(e))
|
|
2351
|
-
return Ne(p(Ht.call(e)));
|
|
2352
|
-
if (Vo(e))
|
|
2353
|
-
return Ne(_o.call(e));
|
|
2348
|
+
if (Wo(e))
|
|
2349
|
+
return qe(d(Number(e)));
|
|
2354
2350
|
if (Go(e))
|
|
2355
|
-
return
|
|
2351
|
+
return qe(d(Ft.call(e)));
|
|
2352
|
+
if (Jo(e))
|
|
2353
|
+
return qe(Ro.call(e));
|
|
2354
|
+
if (Bo(e))
|
|
2355
|
+
return qe(d(String(e)));
|
|
2356
2356
|
if (typeof window < "u" && e === window)
|
|
2357
2357
|
return "{ [object Window] }";
|
|
2358
2358
|
if (typeof globalThis < "u" && e === globalThis || typeof rt < "u" && e === rt)
|
|
2359
2359
|
return "{ [object globalThis] }";
|
|
2360
|
-
if (!
|
|
2361
|
-
var P = Ve(e,
|
|
2362
|
-
return P.length === 0 ? Y + "{}" : u ? Y + "{" +
|
|
2360
|
+
if (!Mo(e) && !Pr(e)) {
|
|
2361
|
+
var P = Ve(e, d), T = Tr ? Tr(e) === Object.prototype : e instanceof Object || e.constructor === Object, k = e instanceof Object ? "" : "null prototype", U = !T && Ue && Object(e) === e && Ue in e ? Xt.call(de(e), 8, -1) : k ? "Object" : "", Q = T || typeof e.constructor != "function" ? "" : e.constructor.name ? e.constructor.name + " " : "", Y = Q + (U || k ? "[" + ie.call(Sr.call([], U || [], k || []), ": ") + "] " : "");
|
|
2362
|
+
return P.length === 0 ? Y + "{}" : u ? Y + "{" + Wt(P, u) + "}" : Y + "{ " + ie.call(P, ", ") + " }";
|
|
2363
2363
|
}
|
|
2364
2364
|
return String(e);
|
|
2365
2365
|
};
|
|
2366
|
-
function
|
|
2367
|
-
var n = r.quoteStyle || e, s =
|
|
2366
|
+
function rn(t, e, r) {
|
|
2367
|
+
var n = r.quoteStyle || e, s = tn[n];
|
|
2368
2368
|
return s + t + s;
|
|
2369
2369
|
}
|
|
2370
|
-
function
|
|
2370
|
+
function Fo(t) {
|
|
2371
2371
|
return pe.call(String(t), /"/g, """);
|
|
2372
2372
|
}
|
|
2373
2373
|
function $e(t) {
|
|
2374
2374
|
return !Ue || !(typeof t == "object" && (Ue in t || typeof t[Ue] < "u"));
|
|
2375
2375
|
}
|
|
2376
|
-
function
|
|
2376
|
+
function Bt(t) {
|
|
2377
2377
|
return de(t) === "[object Array]" && $e(t);
|
|
2378
2378
|
}
|
|
2379
|
-
function
|
|
2379
|
+
function Mo(t) {
|
|
2380
2380
|
return de(t) === "[object Date]" && $e(t);
|
|
2381
2381
|
}
|
|
2382
|
-
function
|
|
2382
|
+
function Pr(t) {
|
|
2383
2383
|
return de(t) === "[object RegExp]" && $e(t);
|
|
2384
2384
|
}
|
|
2385
|
-
function
|
|
2385
|
+
function Ho(t) {
|
|
2386
2386
|
return de(t) === "[object Error]" && $e(t);
|
|
2387
2387
|
}
|
|
2388
|
-
function
|
|
2388
|
+
function Bo(t) {
|
|
2389
2389
|
return de(t) === "[object String]" && $e(t);
|
|
2390
2390
|
}
|
|
2391
|
-
function
|
|
2391
|
+
function Wo(t) {
|
|
2392
2392
|
return de(t) === "[object Number]" && $e(t);
|
|
2393
2393
|
}
|
|
2394
|
-
function
|
|
2394
|
+
function Jo(t) {
|
|
2395
2395
|
return de(t) === "[object Boolean]" && $e(t);
|
|
2396
2396
|
}
|
|
2397
|
-
function
|
|
2397
|
+
function nn(t) {
|
|
2398
2398
|
if (ke)
|
|
2399
2399
|
return t && typeof t == "object" && t instanceof Symbol;
|
|
2400
2400
|
if (typeof t == "symbol")
|
|
2401
2401
|
return !0;
|
|
2402
|
-
if (!t || typeof t != "object" || !
|
|
2402
|
+
if (!t || typeof t != "object" || !Mt)
|
|
2403
2403
|
return !1;
|
|
2404
2404
|
try {
|
|
2405
|
-
return
|
|
2405
|
+
return Mt.call(t), !0;
|
|
2406
2406
|
} catch {
|
|
2407
2407
|
}
|
|
2408
2408
|
return !1;
|
|
2409
2409
|
}
|
|
2410
|
-
function
|
|
2411
|
-
if (!t || typeof t != "object" || !
|
|
2410
|
+
function Go(t) {
|
|
2411
|
+
if (!t || typeof t != "object" || !Ft)
|
|
2412
2412
|
return !1;
|
|
2413
2413
|
try {
|
|
2414
|
-
return
|
|
2414
|
+
return Ft.call(t), !0;
|
|
2415
2415
|
} catch {
|
|
2416
2416
|
}
|
|
2417
2417
|
return !1;
|
|
2418
2418
|
}
|
|
2419
|
-
var
|
|
2419
|
+
var zo = Object.prototype.hasOwnProperty || function(t) {
|
|
2420
2420
|
return t in this;
|
|
2421
2421
|
};
|
|
2422
2422
|
function le(t, e) {
|
|
2423
|
-
return
|
|
2423
|
+
return zo.call(t, e);
|
|
2424
2424
|
}
|
|
2425
2425
|
function de(t) {
|
|
2426
|
-
return
|
|
2426
|
+
return No.call(t);
|
|
2427
2427
|
}
|
|
2428
|
-
function
|
|
2428
|
+
function Vo(t) {
|
|
2429
2429
|
if (t.name)
|
|
2430
2430
|
return t.name;
|
|
2431
|
-
var e =
|
|
2431
|
+
var e = _o.call(qo.call(t), /^function\s*([\w$]+)/);
|
|
2432
2432
|
return e ? e[1] : null;
|
|
2433
2433
|
}
|
|
2434
|
-
function
|
|
2434
|
+
function on(t, e) {
|
|
2435
2435
|
if (t.indexOf)
|
|
2436
2436
|
return t.indexOf(e);
|
|
2437
2437
|
for (var r = 0, n = t.length; r < n; r++)
|
|
@@ -2439,7 +2439,7 @@ function cn(t, e) {
|
|
|
2439
2439
|
return r;
|
|
2440
2440
|
return -1;
|
|
2441
2441
|
}
|
|
2442
|
-
function
|
|
2442
|
+
function Ko(t) {
|
|
2443
2443
|
if (!at || !t || typeof t != "object")
|
|
2444
2444
|
return !1;
|
|
2445
2445
|
try {
|
|
@@ -2454,7 +2454,7 @@ function Yo(t) {
|
|
|
2454
2454
|
}
|
|
2455
2455
|
return !1;
|
|
2456
2456
|
}
|
|
2457
|
-
function
|
|
2457
|
+
function Do(t) {
|
|
2458
2458
|
if (!Le || !t || typeof t != "object")
|
|
2459
2459
|
return !1;
|
|
2460
2460
|
try {
|
|
@@ -2469,16 +2469,16 @@ function Xo(t) {
|
|
|
2469
2469
|
}
|
|
2470
2470
|
return !1;
|
|
2471
2471
|
}
|
|
2472
|
-
function
|
|
2473
|
-
if (!
|
|
2472
|
+
function Qo(t) {
|
|
2473
|
+
if (!vr || !t || typeof t != "object")
|
|
2474
2474
|
return !1;
|
|
2475
2475
|
try {
|
|
2476
|
-
return
|
|
2476
|
+
return vr.call(t), !0;
|
|
2477
2477
|
} catch {
|
|
2478
2478
|
}
|
|
2479
2479
|
return !1;
|
|
2480
2480
|
}
|
|
2481
|
-
function
|
|
2481
|
+
function Yo(t) {
|
|
2482
2482
|
if (!st || !t || typeof t != "object")
|
|
2483
2483
|
return !1;
|
|
2484
2484
|
try {
|
|
@@ -2493,7 +2493,7 @@ function ei(t) {
|
|
|
2493
2493
|
}
|
|
2494
2494
|
return !1;
|
|
2495
2495
|
}
|
|
2496
|
-
function
|
|
2496
|
+
function Xo(t) {
|
|
2497
2497
|
if (!Ie || !t || typeof t != "object")
|
|
2498
2498
|
return !1;
|
|
2499
2499
|
try {
|
|
@@ -2508,20 +2508,20 @@ function ti(t) {
|
|
|
2508
2508
|
}
|
|
2509
2509
|
return !1;
|
|
2510
2510
|
}
|
|
2511
|
-
function
|
|
2511
|
+
function Zo(t) {
|
|
2512
2512
|
return !t || typeof t != "object" ? !1 : typeof HTMLElement < "u" && t instanceof HTMLElement ? !0 : typeof t.nodeName == "string" && typeof t.getAttribute == "function";
|
|
2513
2513
|
}
|
|
2514
|
-
function
|
|
2514
|
+
function an(t, e) {
|
|
2515
2515
|
if (t.length > e.maxStringLength) {
|
|
2516
2516
|
var r = t.length - e.maxStringLength, n = "... " + r + " more character" + (r > 1 ? "s" : "");
|
|
2517
|
-
return
|
|
2517
|
+
return an(Xt.call(t, 0, e.maxStringLength), e) + n;
|
|
2518
2518
|
}
|
|
2519
|
-
var s =
|
|
2519
|
+
var s = Uo[e.quoteStyle || "single"];
|
|
2520
2520
|
s.lastIndex = 0;
|
|
2521
|
-
var o = pe.call(pe.call(t, s, "\\$1"), /[\x00-\x1f]/g,
|
|
2522
|
-
return
|
|
2521
|
+
var o = pe.call(pe.call(t, s, "\\$1"), /[\x00-\x1f]/g, ei);
|
|
2522
|
+
return rn(o, "single", e);
|
|
2523
2523
|
}
|
|
2524
|
-
function
|
|
2524
|
+
function ei(t) {
|
|
2525
2525
|
var e = t.charCodeAt(0), r = {
|
|
2526
2526
|
8: "b",
|
|
2527
2527
|
9: "t",
|
|
@@ -2529,26 +2529,26 @@ function ni(t) {
|
|
|
2529
2529
|
12: "f",
|
|
2530
2530
|
13: "r"
|
|
2531
2531
|
}[e];
|
|
2532
|
-
return r ? "\\" + r : "\\x" + (e < 16 ? "0" : "") +
|
|
2532
|
+
return r ? "\\" + r : "\\x" + (e < 16 ? "0" : "") + Lo.call(e.toString(16));
|
|
2533
2533
|
}
|
|
2534
|
-
function
|
|
2534
|
+
function qe(t) {
|
|
2535
2535
|
return "Object(" + t + ")";
|
|
2536
2536
|
}
|
|
2537
2537
|
function St(t) {
|
|
2538
2538
|
return t + " { ? }";
|
|
2539
2539
|
}
|
|
2540
|
-
function
|
|
2541
|
-
var s = n ?
|
|
2540
|
+
function Cr(t, e, r, n) {
|
|
2541
|
+
var s = n ? Wt(r, n) : ie.call(r, ", ");
|
|
2542
2542
|
return t + " (" + e + ") {" + s + "}";
|
|
2543
2543
|
}
|
|
2544
|
-
function
|
|
2544
|
+
function ti(t) {
|
|
2545
2545
|
for (var e = 0; e < t.length; e++)
|
|
2546
|
-
if (
|
|
2546
|
+
if (on(t[e], `
|
|
2547
2547
|
`) >= 0)
|
|
2548
2548
|
return !1;
|
|
2549
2549
|
return !0;
|
|
2550
2550
|
}
|
|
2551
|
-
function
|
|
2551
|
+
function ri(t, e) {
|
|
2552
2552
|
var r;
|
|
2553
2553
|
if (t.indent === " ")
|
|
2554
2554
|
r = " ";
|
|
@@ -2561,7 +2561,7 @@ function ii(t, e) {
|
|
|
2561
2561
|
prev: ie.call(Array(e + 1), r)
|
|
2562
2562
|
};
|
|
2563
2563
|
}
|
|
2564
|
-
function
|
|
2564
|
+
function Wt(t, e) {
|
|
2565
2565
|
if (t.length === 0)
|
|
2566
2566
|
return "";
|
|
2567
2567
|
var r = `
|
|
@@ -2570,7 +2570,7 @@ function Gt(t, e) {
|
|
|
2570
2570
|
` + e.prev;
|
|
2571
2571
|
}
|
|
2572
2572
|
function Ve(t, e) {
|
|
2573
|
-
var r =
|
|
2573
|
+
var r = Bt(t), n = [];
|
|
2574
2574
|
if (r) {
|
|
2575
2575
|
n.length = t.length;
|
|
2576
2576
|
for (var s = 0; s < t.length; s++)
|
|
@@ -2583,23 +2583,23 @@ function Ve(t, e) {
|
|
|
2583
2583
|
a["$" + o[i]] = o[i];
|
|
2584
2584
|
}
|
|
2585
2585
|
for (var c in t)
|
|
2586
|
-
le(t, c) && (r && String(Number(c)) === c && c < t.length || ke && a["$" + c] instanceof Symbol || (
|
|
2586
|
+
le(t, c) && (r && String(Number(c)) === c && c < t.length || ke && a["$" + c] instanceof Symbol || (Zr.call(/[^\w$]/, c) ? n.push(e(c, t) + ": " + e(t[c], t)) : n.push(c + ": " + e(t[c], t))));
|
|
2587
2587
|
if (typeof wt == "function")
|
|
2588
2588
|
for (var l = 0; l < o.length; l++)
|
|
2589
|
-
|
|
2589
|
+
en.call(t, o[l]) && n.push("[" + e(o[l]) + "]: " + e(t[o[l]], t));
|
|
2590
2590
|
return n;
|
|
2591
2591
|
}
|
|
2592
|
-
var
|
|
2592
|
+
var ni = ft, oi = Re, ut = function(t, e, r) {
|
|
2593
2593
|
for (var n = t, s; (s = n.next) != null; n = s)
|
|
2594
2594
|
if (s.key === e)
|
|
2595
2595
|
return n.next = s.next, r || (s.next = /** @type {NonNullable<typeof list.next>} */
|
|
2596
2596
|
t.next, t.next = s), s;
|
|
2597
|
-
},
|
|
2597
|
+
}, ii = function(t, e) {
|
|
2598
2598
|
if (t) {
|
|
2599
2599
|
var r = ut(t, e);
|
|
2600
2600
|
return r && r.value;
|
|
2601
2601
|
}
|
|
2602
|
-
},
|
|
2602
|
+
}, ai = function(t, e, r) {
|
|
2603
2603
|
var n = ut(t, e);
|
|
2604
2604
|
n ? n.value = r : t.next = /** @type {import('./list.d.ts').ListNode<typeof value, typeof key>} */
|
|
2605
2605
|
{
|
|
@@ -2608,31 +2608,31 @@ var ai = ft, si = Re, ut = function(t, e, r) {
|
|
|
2608
2608
|
next: t.next,
|
|
2609
2609
|
value: r
|
|
2610
2610
|
};
|
|
2611
|
-
},
|
|
2611
|
+
}, si = function(t, e) {
|
|
2612
2612
|
return t ? !!ut(t, e) : !1;
|
|
2613
|
-
},
|
|
2613
|
+
}, ci = function(t, e) {
|
|
2614
2614
|
if (t)
|
|
2615
2615
|
return ut(t, e, !0);
|
|
2616
|
-
},
|
|
2616
|
+
}, li = function() {
|
|
2617
2617
|
var e, r = {
|
|
2618
2618
|
assert: function(n) {
|
|
2619
2619
|
if (!r.has(n))
|
|
2620
|
-
throw new
|
|
2620
|
+
throw new oi("Side channel does not contain " + ni(n));
|
|
2621
2621
|
},
|
|
2622
2622
|
delete: function(n) {
|
|
2623
|
-
var s =
|
|
2623
|
+
var s = ci(e, n);
|
|
2624
2624
|
return s && e && !e.next && (e = void 0), !!s;
|
|
2625
2625
|
},
|
|
2626
2626
|
get: function(n) {
|
|
2627
|
-
return
|
|
2627
|
+
return ii(e, n);
|
|
2628
2628
|
},
|
|
2629
2629
|
has: function(n) {
|
|
2630
|
-
return
|
|
2630
|
+
return si(e, n);
|
|
2631
2631
|
},
|
|
2632
2632
|
set: function(n, s) {
|
|
2633
2633
|
e || (e = {
|
|
2634
2634
|
next: void 0
|
|
2635
|
-
}),
|
|
2635
|
+
}), ai(
|
|
2636
2636
|
/** @type {NonNullable<typeof $o>} */
|
|
2637
2637
|
e,
|
|
2638
2638
|
n,
|
|
@@ -2641,27 +2641,27 @@ var ai = ft, si = Re, ut = function(t, e, r) {
|
|
|
2641
2641
|
}
|
|
2642
2642
|
};
|
|
2643
2643
|
return r;
|
|
2644
|
-
},
|
|
2644
|
+
}, sn = Object, fi = Error, ui = EvalError, pi = RangeError, di = ReferenceError, hi = SyntaxError, yi = URIError, mi = Math.abs, gi = Math.floor, bi = Math.max, $i = Math.min, vi = Math.pow, wi = Math.round, Si = Number.isNaN || function(e) {
|
|
2645
2645
|
return e !== e;
|
|
2646
|
-
},
|
|
2647
|
-
return
|
|
2648
|
-
},
|
|
2646
|
+
}, Oi = Si, Ti = function(e) {
|
|
2647
|
+
return Oi(e) || e === 0 ? e : e < 0 ? -1 : 1;
|
|
2648
|
+
}, xi = Object.getOwnPropertyDescriptor, Ye = xi;
|
|
2649
2649
|
if (Ye)
|
|
2650
2650
|
try {
|
|
2651
2651
|
Ye([], "length");
|
|
2652
2652
|
} catch {
|
|
2653
2653
|
Ye = null;
|
|
2654
2654
|
}
|
|
2655
|
-
var
|
|
2655
|
+
var cn = Ye, Xe = Object.defineProperty || !1;
|
|
2656
2656
|
if (Xe)
|
|
2657
2657
|
try {
|
|
2658
2658
|
Xe({}, "a", { value: 1 });
|
|
2659
2659
|
} catch {
|
|
2660
2660
|
Xe = !1;
|
|
2661
2661
|
}
|
|
2662
|
-
var
|
|
2663
|
-
function
|
|
2664
|
-
return
|
|
2662
|
+
var ln = Xe, Ot, kr;
|
|
2663
|
+
function Ei() {
|
|
2664
|
+
return kr || (kr = 1, Ot = function() {
|
|
2665
2665
|
if (typeof Symbol != "function" || typeof Object.getOwnPropertySymbols != "function")
|
|
2666
2666
|
return !1;
|
|
2667
2667
|
if (typeof Symbol.iterator == "symbol")
|
|
@@ -2689,91 +2689,77 @@ function Ci() {
|
|
|
2689
2689
|
return !0;
|
|
2690
2690
|
}), Ot;
|
|
2691
2691
|
}
|
|
2692
|
-
var Tt,
|
|
2693
|
-
function
|
|
2694
|
-
if (
|
|
2695
|
-
|
|
2696
|
-
var t = typeof Symbol < "u" && Symbol, e =
|
|
2692
|
+
var Tt, Ar;
|
|
2693
|
+
function ji() {
|
|
2694
|
+
if (Ar) return Tt;
|
|
2695
|
+
Ar = 1;
|
|
2696
|
+
var t = typeof Symbol < "u" && Symbol, e = Ei();
|
|
2697
2697
|
return Tt = function() {
|
|
2698
2698
|
return typeof t != "function" || typeof Symbol != "function" || typeof t("foo") != "symbol" || typeof Symbol("bar") != "symbol" ? !1 : e();
|
|
2699
2699
|
}, Tt;
|
|
2700
2700
|
}
|
|
2701
|
-
var xt,
|
|
2702
|
-
function
|
|
2703
|
-
return
|
|
2701
|
+
var xt, Rr;
|
|
2702
|
+
function fn() {
|
|
2703
|
+
return Rr || (Rr = 1, xt = typeof Reflect < "u" && Reflect.getPrototypeOf || null), xt;
|
|
2704
2704
|
}
|
|
2705
|
-
var Et,
|
|
2706
|
-
function
|
|
2707
|
-
if (
|
|
2708
|
-
|
|
2709
|
-
var t =
|
|
2705
|
+
var Et, Nr;
|
|
2706
|
+
function un() {
|
|
2707
|
+
if (Nr) return Et;
|
|
2708
|
+
Nr = 1;
|
|
2709
|
+
var t = sn;
|
|
2710
2710
|
return Et = t.getPrototypeOf || null, Et;
|
|
2711
2711
|
}
|
|
2712
|
-
var
|
|
2713
|
-
|
|
2714
|
-
|
|
2715
|
-
|
|
2716
|
-
|
|
2717
|
-
|
|
2718
|
-
|
|
2719
|
-
|
|
2720
|
-
|
|
2721
|
-
|
|
2722
|
-
|
|
2723
|
-
|
|
2724
|
-
|
|
2725
|
-
|
|
2726
|
-
|
|
2727
|
-
|
|
2728
|
-
|
|
2729
|
-
|
|
2730
|
-
|
|
2731
|
-
|
|
2732
|
-
|
|
2733
|
-
|
|
2734
|
-
|
|
2735
|
-
for (var f = o(arguments, 1), u, p = function() {
|
|
2736
|
-
if (this instanceof u) {
|
|
2737
|
-
var $ = l.apply(
|
|
2738
|
-
this,
|
|
2739
|
-
s(f, arguments)
|
|
2740
|
-
);
|
|
2741
|
-
return Object($) === $ ? $ : this;
|
|
2742
|
-
}
|
|
2743
|
-
return l.apply(
|
|
2744
|
-
c,
|
|
2745
|
-
s(f, arguments)
|
|
2712
|
+
var Pi = "Function.prototype.bind called on incompatible ", Ci = Object.prototype.toString, ki = Math.max, Ai = "[object Function]", qr = function(e, r) {
|
|
2713
|
+
for (var n = [], s = 0; s < e.length; s += 1)
|
|
2714
|
+
n[s] = e[s];
|
|
2715
|
+
for (var o = 0; o < r.length; o += 1)
|
|
2716
|
+
n[o + e.length] = r[o];
|
|
2717
|
+
return n;
|
|
2718
|
+
}, Ri = function(e, r) {
|
|
2719
|
+
for (var n = [], s = r, o = 0; s < e.length; s += 1, o += 1)
|
|
2720
|
+
n[o] = e[s];
|
|
2721
|
+
return n;
|
|
2722
|
+
}, Ni = function(t, e) {
|
|
2723
|
+
for (var r = "", n = 0; n < t.length; n += 1)
|
|
2724
|
+
r += t[n], n + 1 < t.length && (r += e);
|
|
2725
|
+
return r;
|
|
2726
|
+
}, qi = function(e) {
|
|
2727
|
+
var r = this;
|
|
2728
|
+
if (typeof r != "function" || Ci.apply(r) !== Ai)
|
|
2729
|
+
throw new TypeError(Pi + r);
|
|
2730
|
+
for (var n = Ri(arguments, 1), s, o = function() {
|
|
2731
|
+
if (this instanceof s) {
|
|
2732
|
+
var f = r.apply(
|
|
2733
|
+
this,
|
|
2734
|
+
qr(n, arguments)
|
|
2746
2735
|
);
|
|
2747
|
-
|
|
2748
|
-
h[y] = "$" + y;
|
|
2749
|
-
if (u = Function("binder", "return function (" + a(h, ",") + "){ return binder.apply(this,arguments); }")(p), l.prototype) {
|
|
2750
|
-
var g = function() {
|
|
2751
|
-
};
|
|
2752
|
-
g.prototype = l.prototype, u.prototype = new g(), g.prototype = null;
|
|
2736
|
+
return Object(f) === f ? f : this;
|
|
2753
2737
|
}
|
|
2754
|
-
return
|
|
2755
|
-
|
|
2756
|
-
|
|
2757
|
-
|
|
2758
|
-
|
|
2759
|
-
|
|
2760
|
-
|
|
2761
|
-
|
|
2762
|
-
|
|
2763
|
-
|
|
2764
|
-
|
|
2765
|
-
|
|
2766
|
-
|
|
2738
|
+
return r.apply(
|
|
2739
|
+
e,
|
|
2740
|
+
qr(n, arguments)
|
|
2741
|
+
);
|
|
2742
|
+
}, a = ki(0, r.length - n.length), i = [], c = 0; c < a; c++)
|
|
2743
|
+
i[c] = "$" + c;
|
|
2744
|
+
if (s = Function("binder", "return function (" + Ni(i, ",") + "){ return binder.apply(this,arguments); }")(o), r.prototype) {
|
|
2745
|
+
var l = function() {
|
|
2746
|
+
};
|
|
2747
|
+
l.prototype = r.prototype, s.prototype = new l(), l.prototype = null;
|
|
2748
|
+
}
|
|
2749
|
+
return s;
|
|
2750
|
+
}, _i = qi, pt = Function.prototype.bind || _i, Zt = Function.prototype.call, jt, _r;
|
|
2751
|
+
function pn() {
|
|
2752
|
+
return _r || (_r = 1, jt = Function.prototype.apply), jt;
|
|
2767
2753
|
}
|
|
2768
|
-
var
|
|
2754
|
+
var Li = typeof Reflect < "u" && Reflect && Reflect.apply, Ii = pt, Ui = pn(), Fi = Zt, Mi = Li, Hi = Mi || Ii.call(Fi, Ui), Bi = pt, Wi = Re, Ji = Zt, Gi = Hi, dn = function(e) {
|
|
2769
2755
|
if (e.length < 1 || typeof e[0] != "function")
|
|
2770
|
-
throw new
|
|
2771
|
-
return
|
|
2772
|
-
},
|
|
2773
|
-
function
|
|
2774
|
-
if (
|
|
2775
|
-
|
|
2776
|
-
var t =
|
|
2756
|
+
throw new Wi("a function is required");
|
|
2757
|
+
return Gi(Bi, Ji, e);
|
|
2758
|
+
}, Pt, Lr;
|
|
2759
|
+
function zi() {
|
|
2760
|
+
if (Lr) return Pt;
|
|
2761
|
+
Lr = 1;
|
|
2762
|
+
var t = dn, e = cn, r;
|
|
2777
2763
|
try {
|
|
2778
2764
|
r = /** @type {{ __proto__?: typeof Array.prototype }} */
|
|
2779
2765
|
[].__proto__ === Array.prototype;
|
|
@@ -2786,19 +2772,19 @@ function Bi() {
|
|
|
2786
2772
|
/** @type {keyof typeof Object.prototype} */
|
|
2787
2773
|
"__proto__"
|
|
2788
2774
|
), s = Object, o = s.getPrototypeOf;
|
|
2789
|
-
return
|
|
2775
|
+
return Pt = n && typeof n.get == "function" ? t([n.get]) : typeof o == "function" ? (
|
|
2790
2776
|
/** @type {import('./get')} */
|
|
2791
2777
|
function(i) {
|
|
2792
2778
|
return o(i == null ? i : s(i));
|
|
2793
2779
|
}
|
|
2794
|
-
) : !1,
|
|
2780
|
+
) : !1, Pt;
|
|
2795
2781
|
}
|
|
2796
|
-
var
|
|
2797
|
-
function
|
|
2798
|
-
if (
|
|
2799
|
-
|
|
2800
|
-
var t =
|
|
2801
|
-
return
|
|
2782
|
+
var Ct, Ir;
|
|
2783
|
+
function Vi() {
|
|
2784
|
+
if (Ir) return Ct;
|
|
2785
|
+
Ir = 1;
|
|
2786
|
+
var t = fn(), e = un(), r = /* @__PURE__ */ zi();
|
|
2787
|
+
return Ct = t ? function(s) {
|
|
2802
2788
|
return t(s);
|
|
2803
2789
|
} : e ? function(s) {
|
|
2804
2790
|
if (!s || typeof s != "object" && typeof s != "function")
|
|
@@ -2806,33 +2792,33 @@ function Wi() {
|
|
|
2806
2792
|
return e(s);
|
|
2807
2793
|
} : r ? function(s) {
|
|
2808
2794
|
return r(s);
|
|
2809
|
-
} : null,
|
|
2795
|
+
} : null, Ct;
|
|
2810
2796
|
}
|
|
2811
|
-
var
|
|
2812
|
-
function
|
|
2813
|
-
if (
|
|
2814
|
-
|
|
2815
|
-
var t = Function.prototype.call, e = Object.prototype.hasOwnProperty, r = pt
|
|
2816
|
-
return
|
|
2797
|
+
var kt, Ur;
|
|
2798
|
+
function Ki() {
|
|
2799
|
+
if (Ur) return kt;
|
|
2800
|
+
Ur = 1;
|
|
2801
|
+
var t = Function.prototype.call, e = Object.prototype.hasOwnProperty, r = pt;
|
|
2802
|
+
return kt = r.call(t, e), kt;
|
|
2817
2803
|
}
|
|
2818
|
-
var j,
|
|
2804
|
+
var j, Di = sn, Qi = fi, Yi = ui, Xi = pi, Zi = di, Ae = hi, je = Re, ea = yi, ta = mi, ra = gi, na = bi, oa = $i, ia = vi, aa = wi, sa = Ti, hn = Function, At = function(t) {
|
|
2819
2805
|
try {
|
|
2820
|
-
return
|
|
2806
|
+
return hn('"use strict"; return (' + t + ").constructor;")();
|
|
2821
2807
|
} catch {
|
|
2822
2808
|
}
|
|
2823
|
-
}, He =
|
|
2809
|
+
}, He = cn, ca = ln, Rt = function() {
|
|
2824
2810
|
throw new je();
|
|
2825
|
-
},
|
|
2811
|
+
}, la = He ? (function() {
|
|
2826
2812
|
try {
|
|
2827
|
-
return arguments.callee,
|
|
2813
|
+
return arguments.callee, Rt;
|
|
2828
2814
|
} catch {
|
|
2829
2815
|
try {
|
|
2830
2816
|
return He(arguments, "callee").get;
|
|
2831
2817
|
} catch {
|
|
2832
|
-
return
|
|
2818
|
+
return Rt;
|
|
2833
2819
|
}
|
|
2834
2820
|
}
|
|
2835
|
-
})() :
|
|
2821
|
+
})() : Rt, ve = ji()(), F = Vi(), fa = un(), ua = fn(), yn = pn(), Be = Zt, Se = {}, pa = typeof Uint8Array > "u" || !F ? j : F(Uint8Array), be = {
|
|
2836
2822
|
__proto__: null,
|
|
2837
2823
|
"%AggregateError%": typeof AggregateError > "u" ? j : AggregateError,
|
|
2838
2824
|
"%Array%": Array,
|
|
@@ -2854,15 +2840,15 @@ var j, Gi = fn, zi = di, Vi = hi, Ki = yi, Di = mi, Ae = gi, je = Re, Qi = bi, Y
|
|
|
2854
2840
|
"%decodeURIComponent%": decodeURIComponent,
|
|
2855
2841
|
"%encodeURI%": encodeURI,
|
|
2856
2842
|
"%encodeURIComponent%": encodeURIComponent,
|
|
2857
|
-
"%Error%":
|
|
2843
|
+
"%Error%": Qi,
|
|
2858
2844
|
"%eval%": eval,
|
|
2859
2845
|
// eslint-disable-line no-eval
|
|
2860
|
-
"%EvalError%":
|
|
2846
|
+
"%EvalError%": Yi,
|
|
2861
2847
|
"%Float16Array%": typeof Float16Array > "u" ? j : Float16Array,
|
|
2862
2848
|
"%Float32Array%": typeof Float32Array > "u" ? j : Float32Array,
|
|
2863
2849
|
"%Float64Array%": typeof Float64Array > "u" ? j : Float64Array,
|
|
2864
2850
|
"%FinalizationRegistry%": typeof FinalizationRegistry > "u" ? j : FinalizationRegistry,
|
|
2865
|
-
"%Function%":
|
|
2851
|
+
"%Function%": hn,
|
|
2866
2852
|
"%GeneratorFunction%": Se,
|
|
2867
2853
|
"%Int8Array%": typeof Int8Array > "u" ? j : Int8Array,
|
|
2868
2854
|
"%Int16Array%": typeof Int16Array > "u" ? j : Int16Array,
|
|
@@ -2875,14 +2861,14 @@ var j, Gi = fn, zi = di, Vi = hi, Ki = yi, Di = mi, Ae = gi, je = Re, Qi = bi, Y
|
|
|
2875
2861
|
"%MapIteratorPrototype%": typeof Map > "u" || !ve || !F ? j : F((/* @__PURE__ */ new Map())[Symbol.iterator]()),
|
|
2876
2862
|
"%Math%": Math,
|
|
2877
2863
|
"%Number%": Number,
|
|
2878
|
-
"%Object%":
|
|
2864
|
+
"%Object%": Di,
|
|
2879
2865
|
"%Object.getOwnPropertyDescriptor%": He,
|
|
2880
2866
|
"%parseFloat%": parseFloat,
|
|
2881
2867
|
"%parseInt%": parseInt,
|
|
2882
2868
|
"%Promise%": typeof Promise > "u" ? j : Promise,
|
|
2883
2869
|
"%Proxy%": typeof Proxy > "u" ? j : Proxy,
|
|
2884
|
-
"%RangeError%":
|
|
2885
|
-
"%ReferenceError%":
|
|
2870
|
+
"%RangeError%": Xi,
|
|
2871
|
+
"%ReferenceError%": Zi,
|
|
2886
2872
|
"%Reflect%": typeof Reflect > "u" ? j : Reflect,
|
|
2887
2873
|
"%RegExp%": RegExp,
|
|
2888
2874
|
"%Set%": typeof Set > "u" ? j : Set,
|
|
@@ -2892,45 +2878,45 @@ var j, Gi = fn, zi = di, Vi = hi, Ki = yi, Di = mi, Ae = gi, je = Re, Qi = bi, Y
|
|
|
2892
2878
|
"%StringIteratorPrototype%": ve && F ? F(""[Symbol.iterator]()) : j,
|
|
2893
2879
|
"%Symbol%": ve ? Symbol : j,
|
|
2894
2880
|
"%SyntaxError%": Ae,
|
|
2895
|
-
"%ThrowTypeError%":
|
|
2896
|
-
"%TypedArray%":
|
|
2881
|
+
"%ThrowTypeError%": la,
|
|
2882
|
+
"%TypedArray%": pa,
|
|
2897
2883
|
"%TypeError%": je,
|
|
2898
2884
|
"%Uint8Array%": typeof Uint8Array > "u" ? j : Uint8Array,
|
|
2899
2885
|
"%Uint8ClampedArray%": typeof Uint8ClampedArray > "u" ? j : Uint8ClampedArray,
|
|
2900
2886
|
"%Uint16Array%": typeof Uint16Array > "u" ? j : Uint16Array,
|
|
2901
2887
|
"%Uint32Array%": typeof Uint32Array > "u" ? j : Uint32Array,
|
|
2902
|
-
"%URIError%":
|
|
2888
|
+
"%URIError%": ea,
|
|
2903
2889
|
"%WeakMap%": typeof WeakMap > "u" ? j : WeakMap,
|
|
2904
2890
|
"%WeakRef%": typeof WeakRef > "u" ? j : WeakRef,
|
|
2905
2891
|
"%WeakSet%": typeof WeakSet > "u" ? j : WeakSet,
|
|
2906
2892
|
"%Function.prototype.call%": Be,
|
|
2907
|
-
"%Function.prototype.apply%":
|
|
2908
|
-
"%Object.defineProperty%":
|
|
2909
|
-
"%Object.getPrototypeOf%":
|
|
2910
|
-
"%Math.abs%":
|
|
2911
|
-
"%Math.floor%":
|
|
2912
|
-
"%Math.max%":
|
|
2913
|
-
"%Math.min%":
|
|
2914
|
-
"%Math.pow%":
|
|
2915
|
-
"%Math.round%":
|
|
2916
|
-
"%Math.sign%":
|
|
2917
|
-
"%Reflect.getPrototypeOf%":
|
|
2893
|
+
"%Function.prototype.apply%": yn,
|
|
2894
|
+
"%Object.defineProperty%": ca,
|
|
2895
|
+
"%Object.getPrototypeOf%": fa,
|
|
2896
|
+
"%Math.abs%": ta,
|
|
2897
|
+
"%Math.floor%": ra,
|
|
2898
|
+
"%Math.max%": na,
|
|
2899
|
+
"%Math.min%": oa,
|
|
2900
|
+
"%Math.pow%": ia,
|
|
2901
|
+
"%Math.round%": aa,
|
|
2902
|
+
"%Math.sign%": sa,
|
|
2903
|
+
"%Reflect.getPrototypeOf%": ua
|
|
2918
2904
|
};
|
|
2919
2905
|
if (F)
|
|
2920
2906
|
try {
|
|
2921
2907
|
null.error;
|
|
2922
2908
|
} catch (t) {
|
|
2923
|
-
var
|
|
2924
|
-
be["%Error.prototype%"] =
|
|
2909
|
+
var da = F(F(t));
|
|
2910
|
+
be["%Error.prototype%"] = da;
|
|
2925
2911
|
}
|
|
2926
|
-
var
|
|
2912
|
+
var ha = function t(e) {
|
|
2927
2913
|
var r;
|
|
2928
2914
|
if (e === "%AsyncFunction%")
|
|
2929
|
-
r =
|
|
2915
|
+
r = At("async function () {}");
|
|
2930
2916
|
else if (e === "%GeneratorFunction%")
|
|
2931
|
-
r =
|
|
2917
|
+
r = At("function* () {}");
|
|
2932
2918
|
else if (e === "%AsyncGeneratorFunction%")
|
|
2933
|
-
r =
|
|
2919
|
+
r = At("async function* () {}");
|
|
2934
2920
|
else if (e === "%AsyncGenerator%") {
|
|
2935
2921
|
var n = t("%AsyncGeneratorFunction%");
|
|
2936
2922
|
n && (r = n.prototype);
|
|
@@ -2939,7 +2925,7 @@ var fa = function t(e) {
|
|
|
2939
2925
|
s && F && (r = F(s.prototype));
|
|
2940
2926
|
}
|
|
2941
2927
|
return be[e] = r, r;
|
|
2942
|
-
},
|
|
2928
|
+
}, Fr = {
|
|
2943
2929
|
__proto__: null,
|
|
2944
2930
|
"%ArrayBufferPrototype%": ["ArrayBuffer", "prototype"],
|
|
2945
2931
|
"%ArrayPrototype%": ["Array", "prototype"],
|
|
@@ -2992,21 +2978,21 @@ var fa = function t(e) {
|
|
|
2992
2978
|
"%URIErrorPrototype%": ["URIError", "prototype"],
|
|
2993
2979
|
"%WeakMapPrototype%": ["WeakMap", "prototype"],
|
|
2994
2980
|
"%WeakSetPrototype%": ["WeakSet", "prototype"]
|
|
2995
|
-
}, We = pt
|
|
2981
|
+
}, We = pt, ct = /* @__PURE__ */ Ki(), ya = We.call(Be, Array.prototype.concat), ma = We.call(yn, Array.prototype.splice), Mr = We.call(Be, String.prototype.replace), lt = We.call(Be, String.prototype.slice), ga = We.call(Be, RegExp.prototype.exec), ba = /[^%.[\]]+|\[(?:(-?\d+(?:\.\d+)?)|(["'])((?:(?!\2)[^\\]|\\.)*?)\2)\]|(?=(?:\.|\[\])(?:\.|\[\]|%$))/g, $a = /\\(\\)?/g, va = function(e) {
|
|
2996
2982
|
var r = lt(e, 0, 1), n = lt(e, -1);
|
|
2997
2983
|
if (r === "%" && n !== "%")
|
|
2998
2984
|
throw new Ae("invalid intrinsic syntax, expected closing `%`");
|
|
2999
2985
|
if (n === "%" && r !== "%")
|
|
3000
2986
|
throw new Ae("invalid intrinsic syntax, expected opening `%`");
|
|
3001
2987
|
var s = [];
|
|
3002
|
-
return
|
|
3003
|
-
s[s.length] = i ?
|
|
2988
|
+
return Mr(e, ba, function(o, a, i, c) {
|
|
2989
|
+
s[s.length] = i ? Mr(c, $a, "$1") : a || o;
|
|
3004
2990
|
}), s;
|
|
3005
|
-
},
|
|
2991
|
+
}, wa = function(e, r) {
|
|
3006
2992
|
var n = e, s;
|
|
3007
|
-
if (ct(
|
|
2993
|
+
if (ct(Fr, n) && (s = Fr[n], n = "%" + s[0] + "%"), ct(be, n)) {
|
|
3008
2994
|
var o = be[n];
|
|
3009
|
-
if (o === Se && (o =
|
|
2995
|
+
if (o === Se && (o = ha(n)), typeof o > "u" && !r)
|
|
3010
2996
|
throw new je("intrinsic " + e + " exists, but is not available. Please file an issue!");
|
|
3011
2997
|
return {
|
|
3012
2998
|
alias: s,
|
|
@@ -3015,105 +3001,105 @@ var fa = function t(e) {
|
|
|
3015
3001
|
};
|
|
3016
3002
|
}
|
|
3017
3003
|
throw new Ae("intrinsic " + e + " does not exist!");
|
|
3018
|
-
},
|
|
3004
|
+
}, er = function(e, r) {
|
|
3019
3005
|
if (typeof e != "string" || e.length === 0)
|
|
3020
3006
|
throw new je("intrinsic name must be a non-empty string");
|
|
3021
3007
|
if (arguments.length > 1 && typeof r != "boolean")
|
|
3022
3008
|
throw new je('"allowMissing" argument must be a boolean');
|
|
3023
|
-
if (
|
|
3009
|
+
if (ga(/^%?[^%]*%?$/, e) === null)
|
|
3024
3010
|
throw new Ae("`%` may not be present anywhere but at the beginning and end of the intrinsic name");
|
|
3025
|
-
var n =
|
|
3026
|
-
l && (s = l[0],
|
|
3011
|
+
var n = va(e), s = n.length > 0 ? n[0] : "", o = wa("%" + s + "%", r), a = o.name, i = o.value, c = !1, l = o.alias;
|
|
3012
|
+
l && (s = l[0], ma(n, ya([0, 1], l)));
|
|
3027
3013
|
for (var f = 1, u = !0; f < n.length; f += 1) {
|
|
3028
|
-
var
|
|
3029
|
-
if ((
|
|
3014
|
+
var d = n[f], p = lt(d, 0, 1), h = lt(d, -1);
|
|
3015
|
+
if ((p === '"' || p === "'" || p === "`" || h === '"' || h === "'" || h === "`") && p !== h)
|
|
3030
3016
|
throw new Ae("property names with quotes must have matching quotes");
|
|
3031
|
-
if ((
|
|
3017
|
+
if ((d === "constructor" || !u) && (c = !0), s += "." + d, a = "%" + s + "%", ct(be, a))
|
|
3032
3018
|
i = be[a];
|
|
3033
3019
|
else if (i != null) {
|
|
3034
|
-
if (!(
|
|
3020
|
+
if (!(d in i)) {
|
|
3035
3021
|
if (!r)
|
|
3036
3022
|
throw new je("base intrinsic for " + e + " exists, but the property is not available.");
|
|
3037
3023
|
return;
|
|
3038
3024
|
}
|
|
3039
3025
|
if (He && f + 1 >= n.length) {
|
|
3040
|
-
var
|
|
3041
|
-
u = !!
|
|
3026
|
+
var m = He(i, d);
|
|
3027
|
+
u = !!m, u && "get" in m && !("originalValue" in m.get) ? i = m.get : i = i[d];
|
|
3042
3028
|
} else
|
|
3043
|
-
u = ct(i,
|
|
3029
|
+
u = ct(i, d), i = i[d];
|
|
3044
3030
|
u && !c && (be[a] = i);
|
|
3045
3031
|
}
|
|
3046
3032
|
}
|
|
3047
3033
|
return i;
|
|
3048
|
-
},
|
|
3034
|
+
}, mn = er, gn = dn, Sa = gn([mn("%String.prototype.indexOf%")]), bn = function(e, r) {
|
|
3049
3035
|
var n = (
|
|
3050
3036
|
/** @type {(this: unknown, ...args: unknown[]) => unknown} */
|
|
3051
|
-
|
|
3037
|
+
mn(e, !!r)
|
|
3052
3038
|
);
|
|
3053
|
-
return typeof n == "function" &&
|
|
3039
|
+
return typeof n == "function" && Sa(e, ".prototype.") > -1 ? gn(
|
|
3054
3040
|
/** @type {const} */
|
|
3055
3041
|
[n]
|
|
3056
3042
|
) : n;
|
|
3057
|
-
},
|
|
3043
|
+
}, Oa = er, Je = bn, Ta = ft, xa = Re, Hr = Oa("%Map%", !0), Ea = Je("Map.prototype.get", !0), ja = Je("Map.prototype.set", !0), Pa = Je("Map.prototype.has", !0), Ca = Je("Map.prototype.delete", !0), ka = Je("Map.prototype.size", !0), $n = !!Hr && /** @type {Exclude<import('.'), false>} */
|
|
3058
3044
|
function() {
|
|
3059
3045
|
var e, r = {
|
|
3060
3046
|
assert: function(n) {
|
|
3061
3047
|
if (!r.has(n))
|
|
3062
|
-
throw new
|
|
3048
|
+
throw new xa("Side channel does not contain " + Ta(n));
|
|
3063
3049
|
},
|
|
3064
3050
|
delete: function(n) {
|
|
3065
3051
|
if (e) {
|
|
3066
|
-
var s =
|
|
3067
|
-
return
|
|
3052
|
+
var s = Ca(e, n);
|
|
3053
|
+
return ka(e) === 0 && (e = void 0), s;
|
|
3068
3054
|
}
|
|
3069
3055
|
return !1;
|
|
3070
3056
|
},
|
|
3071
3057
|
get: function(n) {
|
|
3072
3058
|
if (e)
|
|
3073
|
-
return
|
|
3059
|
+
return Ea(e, n);
|
|
3074
3060
|
},
|
|
3075
3061
|
has: function(n) {
|
|
3076
|
-
return e ?
|
|
3062
|
+
return e ? Pa(e, n) : !1;
|
|
3077
3063
|
},
|
|
3078
3064
|
set: function(n, s) {
|
|
3079
|
-
e || (e = new
|
|
3065
|
+
e || (e = new Hr()), ja(e, n, s);
|
|
3080
3066
|
}
|
|
3081
3067
|
};
|
|
3082
3068
|
return r;
|
|
3083
|
-
},
|
|
3069
|
+
}, Aa = er, dt = bn, Ra = ft, Ke = $n, Na = Re, we = Aa("%WeakMap%", !0), qa = dt("WeakMap.prototype.get", !0), _a = dt("WeakMap.prototype.set", !0), La = dt("WeakMap.prototype.has", !0), Ia = dt("WeakMap.prototype.delete", !0), Ua = we ? (
|
|
3084
3070
|
/** @type {Exclude<import('.'), false>} */
|
|
3085
3071
|
function() {
|
|
3086
3072
|
var e, r, n = {
|
|
3087
3073
|
assert: function(s) {
|
|
3088
3074
|
if (!n.has(s))
|
|
3089
|
-
throw new
|
|
3075
|
+
throw new Na("Side channel does not contain " + Ra(s));
|
|
3090
3076
|
},
|
|
3091
3077
|
delete: function(s) {
|
|
3092
3078
|
if (we && s && (typeof s == "object" || typeof s == "function")) {
|
|
3093
3079
|
if (e)
|
|
3094
|
-
return
|
|
3080
|
+
return Ia(e, s);
|
|
3095
3081
|
} else if (Ke && r)
|
|
3096
3082
|
return r.delete(s);
|
|
3097
3083
|
return !1;
|
|
3098
3084
|
},
|
|
3099
3085
|
get: function(s) {
|
|
3100
|
-
return we && s && (typeof s == "object" || typeof s == "function") && e ?
|
|
3086
|
+
return we && s && (typeof s == "object" || typeof s == "function") && e ? qa(e, s) : r && r.get(s);
|
|
3101
3087
|
},
|
|
3102
3088
|
has: function(s) {
|
|
3103
|
-
return we && s && (typeof s == "object" || typeof s == "function") && e ?
|
|
3089
|
+
return we && s && (typeof s == "object" || typeof s == "function") && e ? La(e, s) : !!r && r.has(s);
|
|
3104
3090
|
},
|
|
3105
3091
|
set: function(s, o) {
|
|
3106
|
-
we && s && (typeof s == "object" || typeof s == "function") ? (e || (e = new we()),
|
|
3092
|
+
we && s && (typeof s == "object" || typeof s == "function") ? (e || (e = new we()), _a(e, s, o)) : Ke && (r || (r = Ke()), r.set(s, o));
|
|
3107
3093
|
}
|
|
3108
3094
|
};
|
|
3109
3095
|
return n;
|
|
3110
3096
|
}
|
|
3111
|
-
) : Ke,
|
|
3097
|
+
) : Ke, Fa = Re, Ma = ft, Ha = li, Ba = $n, Wa = Ua, Ja = Wa || Ba || Ha, vn = function() {
|
|
3112
3098
|
var e, r = {
|
|
3113
3099
|
assert: function(n) {
|
|
3114
3100
|
if (!r.has(n)) {
|
|
3115
|
-
var s = n && Object(n) === n ? "the given object key" :
|
|
3116
|
-
throw new
|
|
3101
|
+
var s = n && Object(n) === n ? "the given object key" : Ma(n);
|
|
3102
|
+
throw new Fa("Side channel does not contain " + s);
|
|
3117
3103
|
}
|
|
3118
3104
|
},
|
|
3119
3105
|
delete: function(n) {
|
|
@@ -3126,38 +3112,38 @@ function() {
|
|
|
3126
3112
|
return !!e && e.has(n);
|
|
3127
3113
|
},
|
|
3128
3114
|
set: function(n, s) {
|
|
3129
|
-
e || (e =
|
|
3115
|
+
e || (e = Ja()), e.set(n, s);
|
|
3130
3116
|
}
|
|
3131
3117
|
};
|
|
3132
3118
|
return r;
|
|
3133
|
-
},
|
|
3119
|
+
}, Ga = String.prototype.replace, za = /%20/g, Nt = {
|
|
3134
3120
|
RFC1738: "RFC1738",
|
|
3135
3121
|
RFC3986: "RFC3986"
|
|
3136
|
-
},
|
|
3137
|
-
default:
|
|
3122
|
+
}, tr = {
|
|
3123
|
+
default: Nt.RFC3986,
|
|
3138
3124
|
formatters: {
|
|
3139
3125
|
RFC1738: function(t) {
|
|
3140
|
-
return
|
|
3126
|
+
return Ga.call(t, za, "+");
|
|
3141
3127
|
},
|
|
3142
3128
|
RFC3986: function(t) {
|
|
3143
3129
|
return String(t);
|
|
3144
3130
|
}
|
|
3145
3131
|
},
|
|
3146
|
-
RFC1738:
|
|
3147
|
-
RFC3986:
|
|
3148
|
-
},
|
|
3132
|
+
RFC1738: Nt.RFC1738,
|
|
3133
|
+
RFC3986: Nt.RFC3986
|
|
3134
|
+
}, Va = tr, wn = vn, Br = ln, qt = Object.prototype.hasOwnProperty, ye = Array.isArray, ht = wn(), me = function(e, r) {
|
|
3149
3135
|
return ht.set(e, r), e;
|
|
3150
3136
|
}, ge = function(e) {
|
|
3151
3137
|
return ht.has(e);
|
|
3152
3138
|
}, _e = function(e) {
|
|
3153
3139
|
return ht.get(e);
|
|
3154
|
-
},
|
|
3140
|
+
}, Jt = function(e, r) {
|
|
3155
3141
|
ht.set(e, r);
|
|
3156
3142
|
}, re = (function() {
|
|
3157
3143
|
for (var t = [], e = 0; e < 256; ++e)
|
|
3158
3144
|
t[t.length] = "%" + ((e < 16 ? "0" : "") + e.toString(16)).toUpperCase();
|
|
3159
3145
|
return t;
|
|
3160
|
-
})(),
|
|
3146
|
+
})(), Ka = function(e) {
|
|
3161
3147
|
for (; e.length > 1; ) {
|
|
3162
3148
|
var r = e.pop(), n = r.obj[r.prop];
|
|
3163
3149
|
if (ye(n)) {
|
|
@@ -3170,14 +3156,14 @@ function() {
|
|
|
3170
3156
|
for (var n = r && r.plainObjects ? { __proto__: null } : {}, s = 0; s < e.length; ++s)
|
|
3171
3157
|
typeof e[s] < "u" && (n[s] = e[s]);
|
|
3172
3158
|
return n;
|
|
3173
|
-
},
|
|
3174
|
-
r === "__proto__" &&
|
|
3159
|
+
}, Gt = function(e, r, n) {
|
|
3160
|
+
r === "__proto__" && Br ? Br(e, r, {
|
|
3175
3161
|
configurable: !0,
|
|
3176
3162
|
enumerable: !0,
|
|
3177
3163
|
value: n,
|
|
3178
3164
|
writable: !0
|
|
3179
3165
|
}) : e[r] = n;
|
|
3180
|
-
},
|
|
3166
|
+
}, Da = function t(e, r, n) {
|
|
3181
3167
|
if (!r)
|
|
3182
3168
|
return e;
|
|
3183
3169
|
if (typeof r != "object" && typeof r != "function") {
|
|
@@ -3192,11 +3178,11 @@ function() {
|
|
|
3192
3178
|
} else if (e && typeof e == "object")
|
|
3193
3179
|
if (ge(e)) {
|
|
3194
3180
|
var o = _e(e) + 1;
|
|
3195
|
-
e[o] = r,
|
|
3181
|
+
e[o] = r, Jt(e, o);
|
|
3196
3182
|
} else {
|
|
3197
3183
|
if (n && n.strictMerge)
|
|
3198
3184
|
return [e, r];
|
|
3199
|
-
(n && (n.plainObjects || n.allowPrototypes) || !
|
|
3185
|
+
(n && (n.plainObjects || n.allowPrototypes) || !qt.call(Object.prototype, r)) && (e[r] = !0);
|
|
3200
3186
|
}
|
|
3201
3187
|
else
|
|
3202
3188
|
return [e, r];
|
|
@@ -3220,12 +3206,12 @@ function() {
|
|
|
3220
3206
|
}
|
|
3221
3207
|
var u = e;
|
|
3222
3208
|
if (ye(e) && !ye(r) && (u = Ee(e, n)), ye(e) && ye(r)) {
|
|
3223
|
-
if (r.forEach(function(
|
|
3224
|
-
if (
|
|
3225
|
-
var h = e[
|
|
3226
|
-
h && typeof h == "object" &&
|
|
3209
|
+
if (r.forEach(function(d, p) {
|
|
3210
|
+
if (qt.call(e, p)) {
|
|
3211
|
+
var h = e[p];
|
|
3212
|
+
h && typeof h == "object" && d && typeof d == "object" ? e[p] = t(h, d, n) : e[e.length] = d;
|
|
3227
3213
|
} else
|
|
3228
|
-
e[
|
|
3214
|
+
e[p] = d;
|
|
3229
3215
|
}), n && typeof n.arrayLimit == "number" && e.length > n.arrayLimit) {
|
|
3230
3216
|
if (n.throwOnLimitExceeded)
|
|
3231
3217
|
throw new RangeError("Array limit exceeded. Only " + n.arrayLimit + " element" + (n.arrayLimit === 1 ? "" : "s") + " allowed in an array.");
|
|
@@ -3233,19 +3219,19 @@ function() {
|
|
|
3233
3219
|
}
|
|
3234
3220
|
return e;
|
|
3235
3221
|
}
|
|
3236
|
-
return Object.keys(r).reduce(function(
|
|
3237
|
-
var h = r[
|
|
3238
|
-
if (
|
|
3239
|
-
var
|
|
3240
|
-
String(
|
|
3222
|
+
return Object.keys(r).reduce(function(d, p) {
|
|
3223
|
+
var h = r[p];
|
|
3224
|
+
if (qt.call(d, p) ? Gt(d, p, t(d[p], h, n)) : Gt(d, p, h), ge(r) && !ge(d) && me(d, _e(r)), ge(d)) {
|
|
3225
|
+
var m = parseInt(p, 10);
|
|
3226
|
+
String(m) === p && m >= 0 && m > _e(d) && Jt(d, m);
|
|
3241
3227
|
}
|
|
3242
|
-
return
|
|
3228
|
+
return d;
|
|
3243
3229
|
}, u);
|
|
3244
|
-
},
|
|
3230
|
+
}, Qa = function(e, r) {
|
|
3245
3231
|
return Object.keys(r).reduce(function(n, s) {
|
|
3246
|
-
return
|
|
3232
|
+
return Gt(n, s, r[s]), n;
|
|
3247
3233
|
}, e);
|
|
3248
|
-
},
|
|
3234
|
+
}, Ya = function(t, e, r) {
|
|
3249
3235
|
var n = t.replace(/\+/g, " ");
|
|
3250
3236
|
if (r === "iso-8859-1")
|
|
3251
3237
|
return n.replace(/%[0-9a-f]{2}/gi, unescape);
|
|
@@ -3254,7 +3240,7 @@ function() {
|
|
|
3254
3240
|
} catch {
|
|
3255
3241
|
return n;
|
|
3256
3242
|
}
|
|
3257
|
-
}, De = 1024,
|
|
3243
|
+
}, De = 1024, Xa = function(e, r, n, s, o) {
|
|
3258
3244
|
if (e.length === 0)
|
|
3259
3245
|
return e;
|
|
3260
3246
|
var a = e;
|
|
@@ -3268,46 +3254,46 @@ function() {
|
|
|
3268
3254
|
var f = l.charCodeAt(l.length - 1);
|
|
3269
3255
|
f >= 55296 && f <= 56319 && (l = l.slice(0, -1), c -= 1);
|
|
3270
3256
|
}
|
|
3271
|
-
for (var u = [],
|
|
3272
|
-
var
|
|
3273
|
-
if (
|
|
3274
|
-
u[u.length] = l.charAt(
|
|
3257
|
+
for (var u = [], d = 0; d < l.length; ++d) {
|
|
3258
|
+
var p = l.charCodeAt(d);
|
|
3259
|
+
if (p === 45 || p === 46 || p === 95 || p === 126 || p >= 48 && p <= 57 || p >= 65 && p <= 90 || p >= 97 && p <= 122 || o === Va.RFC1738 && (p === 40 || p === 41)) {
|
|
3260
|
+
u[u.length] = l.charAt(d);
|
|
3275
3261
|
continue;
|
|
3276
3262
|
}
|
|
3277
|
-
if (
|
|
3278
|
-
u[u.length] = re[
|
|
3263
|
+
if (p < 128) {
|
|
3264
|
+
u[u.length] = re[p];
|
|
3279
3265
|
continue;
|
|
3280
3266
|
}
|
|
3281
|
-
if (
|
|
3282
|
-
u[u.length] = re[192 |
|
|
3267
|
+
if (p < 2048) {
|
|
3268
|
+
u[u.length] = re[192 | p >> 6] + re[128 | p & 63];
|
|
3283
3269
|
continue;
|
|
3284
3270
|
}
|
|
3285
|
-
if (
|
|
3286
|
-
u[u.length] = re[224 |
|
|
3271
|
+
if (p < 55296 || p >= 57344) {
|
|
3272
|
+
u[u.length] = re[224 | p >> 12] + re[128 | p >> 6 & 63] + re[128 | p & 63];
|
|
3287
3273
|
continue;
|
|
3288
3274
|
}
|
|
3289
|
-
|
|
3275
|
+
d += 1, p = 65536 + ((p & 1023) << 10 | l.charCodeAt(d) & 1023), u[u.length] = re[240 | p >> 18] + re[128 | p >> 12 & 63] + re[128 | p >> 6 & 63] + re[128 | p & 63];
|
|
3290
3276
|
}
|
|
3291
3277
|
i += u.join("");
|
|
3292
3278
|
}
|
|
3293
3279
|
return i;
|
|
3294
|
-
},
|
|
3295
|
-
for (var r = [{ obj: { o: e }, prop: "o" }], n =
|
|
3280
|
+
}, Za = function(e) {
|
|
3281
|
+
for (var r = [{ obj: { o: e }, prop: "o" }], n = wn(), s = 0; s < r.length; ++s)
|
|
3296
3282
|
for (var o = r[s], a = o.obj[o.prop], i = Object.keys(a), c = 0; c < i.length; ++c) {
|
|
3297
3283
|
var l = i[c], f = a[l];
|
|
3298
3284
|
typeof f == "object" && f !== null && !n.has(f) && (r[r.length] = { obj: a, prop: l }, n.set(f, !0));
|
|
3299
3285
|
}
|
|
3300
|
-
return
|
|
3301
|
-
},
|
|
3286
|
+
return Ka(r), e;
|
|
3287
|
+
}, es = function(e) {
|
|
3302
3288
|
return Object.prototype.toString.call(e) === "[object RegExp]";
|
|
3303
|
-
},
|
|
3289
|
+
}, ts = function(e) {
|
|
3304
3290
|
return !e || typeof e != "object" ? !1 : !!(e.constructor && e.constructor.isBuffer && e.constructor.isBuffer(e));
|
|
3305
|
-
},
|
|
3291
|
+
}, rs = function(e, r, n, s, o) {
|
|
3306
3292
|
if (ge(e)) {
|
|
3307
3293
|
if (o)
|
|
3308
3294
|
throw new RangeError("Array limit exceeded. Only " + n + " element" + (n === 1 ? "" : "s") + " allowed in an array.");
|
|
3309
3295
|
var a = _e(e) + 1;
|
|
3310
|
-
return e[a] = r,
|
|
3296
|
+
return e[a] = r, Jt(e, a), e;
|
|
3311
3297
|
}
|
|
3312
3298
|
var i = [].concat(e, r);
|
|
3313
3299
|
if (i.length > n) {
|
|
@@ -3316,27 +3302,27 @@ function() {
|
|
|
3316
3302
|
return me(Ee(i, { plainObjects: s }), i.length - 1);
|
|
3317
3303
|
}
|
|
3318
3304
|
return i;
|
|
3319
|
-
},
|
|
3305
|
+
}, ns = function(e, r) {
|
|
3320
3306
|
if (ye(e)) {
|
|
3321
3307
|
for (var n = [], s = 0; s < e.length; s += 1)
|
|
3322
3308
|
n[n.length] = r(e[s]);
|
|
3323
3309
|
return n;
|
|
3324
3310
|
}
|
|
3325
3311
|
return r(e);
|
|
3326
|
-
},
|
|
3312
|
+
}, Sn = {
|
|
3327
3313
|
arrayToObject: Ee,
|
|
3328
|
-
assign:
|
|
3329
|
-
combine:
|
|
3330
|
-
compact:
|
|
3331
|
-
decode:
|
|
3332
|
-
encode:
|
|
3333
|
-
isBuffer:
|
|
3314
|
+
assign: Qa,
|
|
3315
|
+
combine: rs,
|
|
3316
|
+
compact: Za,
|
|
3317
|
+
decode: Ya,
|
|
3318
|
+
encode: Xa,
|
|
3319
|
+
isBuffer: ts,
|
|
3334
3320
|
isOverflow: ge,
|
|
3335
|
-
isRegExp:
|
|
3321
|
+
isRegExp: es,
|
|
3336
3322
|
markOverflow: me,
|
|
3337
|
-
maybeMap:
|
|
3338
|
-
merge:
|
|
3339
|
-
},
|
|
3323
|
+
maybeMap: ns,
|
|
3324
|
+
merge: Da
|
|
3325
|
+
}, On = vn, Ze = Sn, Fe = tr, os = Object.prototype.hasOwnProperty, Tn = {
|
|
3340
3326
|
brackets: function(e) {
|
|
3341
3327
|
return e + "[]";
|
|
3342
3328
|
},
|
|
@@ -3347,9 +3333,9 @@ function() {
|
|
|
3347
3333
|
repeat: function(e) {
|
|
3348
3334
|
return e;
|
|
3349
3335
|
}
|
|
3350
|
-
}, ne = Array.isArray,
|
|
3351
|
-
|
|
3352
|
-
},
|
|
3336
|
+
}, ne = Array.isArray, is = Array.prototype.push, xn = function(t, e) {
|
|
3337
|
+
is.apply(t, ne(e) ? e : [e]);
|
|
3338
|
+
}, as = Date.prototype.toISOString, Wr = Fe.default, L = {
|
|
3353
3339
|
addQueryPrefix: !1,
|
|
3354
3340
|
allowDots: !1,
|
|
3355
3341
|
allowEmptyArrays: !1,
|
|
@@ -3363,65 +3349,65 @@ function() {
|
|
|
3363
3349
|
encoder: Ze.encode,
|
|
3364
3350
|
encodeValuesOnly: !1,
|
|
3365
3351
|
filter: void 0,
|
|
3366
|
-
format:
|
|
3367
|
-
formatter: Fe.formatters[
|
|
3352
|
+
format: Wr,
|
|
3353
|
+
formatter: Fe.formatters[Wr],
|
|
3368
3354
|
// deprecated
|
|
3369
3355
|
indices: !1,
|
|
3370
3356
|
serializeDate: function(e) {
|
|
3371
|
-
return
|
|
3357
|
+
return as.call(e);
|
|
3372
3358
|
},
|
|
3373
3359
|
skipNulls: !1,
|
|
3374
3360
|
strictNullHandling: !1
|
|
3375
|
-
},
|
|
3361
|
+
}, ss = function(e) {
|
|
3376
3362
|
return typeof e == "string" || typeof e == "number" || typeof e == "boolean" || typeof e == "symbol" || typeof e == "bigint";
|
|
3377
|
-
},
|
|
3378
|
-
for (var
|
|
3363
|
+
}, _t = {}, cs = function t(e, r, n, s, o, a, i, c, l, f, u, d, p, h, m, b, $, y) {
|
|
3364
|
+
for (var g = e, S = y, O = 0, v = !1; (S = S.get(_t)) !== void 0 && !v; ) {
|
|
3379
3365
|
var P = S.get(e);
|
|
3380
3366
|
if (O += 1, typeof P < "u") {
|
|
3381
3367
|
if (P === O)
|
|
3382
3368
|
throw new RangeError("Cyclic object value");
|
|
3383
3369
|
v = !0;
|
|
3384
3370
|
}
|
|
3385
|
-
typeof S.get(
|
|
3371
|
+
typeof S.get(_t) > "u" && (O = 0);
|
|
3386
3372
|
}
|
|
3387
|
-
if (typeof f == "function" ?
|
|
3388
|
-
return w instanceof Date ?
|
|
3389
|
-
})),
|
|
3373
|
+
if (typeof f == "function" ? g = f(r, g) : g instanceof Date ? g = p(g) : n === "comma" && ne(g) && (g = Ze.maybeMap(g, function(w) {
|
|
3374
|
+
return w instanceof Date ? p(w) : w;
|
|
3375
|
+
})), g === null) {
|
|
3390
3376
|
if (a)
|
|
3391
|
-
return
|
|
3392
|
-
|
|
3377
|
+
return m(l && !b ? l(r, L.encoder, $, "key", h) : r);
|
|
3378
|
+
g = "";
|
|
3393
3379
|
}
|
|
3394
|
-
if (
|
|
3380
|
+
if (ss(g) || Ze.isBuffer(g)) {
|
|
3395
3381
|
if (l) {
|
|
3396
|
-
var T =
|
|
3397
|
-
return [
|
|
3382
|
+
var T = b ? r : l(r, L.encoder, $, "key", h);
|
|
3383
|
+
return [m(T) + "=" + m(l(g, L.encoder, $, "value", h))];
|
|
3398
3384
|
}
|
|
3399
|
-
return [
|
|
3385
|
+
return [m(r) + "=" + m(String(g))];
|
|
3400
3386
|
}
|
|
3401
3387
|
var k = [];
|
|
3402
|
-
if (typeof
|
|
3388
|
+
if (typeof g > "u")
|
|
3403
3389
|
return k;
|
|
3404
3390
|
var U;
|
|
3405
|
-
if (n === "comma" && ne(
|
|
3406
|
-
|
|
3391
|
+
if (n === "comma" && ne(g))
|
|
3392
|
+
b && l && (g = Ze.maybeMap(g, function(w) {
|
|
3407
3393
|
return w == null ? w : l(w);
|
|
3408
|
-
})), U = [{ value:
|
|
3394
|
+
})), U = [{ value: g.length > 0 ? g.join(",") || null : void 0 }];
|
|
3409
3395
|
else if (ne(f))
|
|
3410
3396
|
U = f;
|
|
3411
3397
|
else {
|
|
3412
|
-
var Q = Object.keys(
|
|
3398
|
+
var Q = Object.keys(g);
|
|
3413
3399
|
U = u ? Q.sort(u) : Q;
|
|
3414
3400
|
}
|
|
3415
|
-
var Y = c ? String(r).replace(/\./g, "%2E") : String(r), _ = s && ne(
|
|
3416
|
-
if (o && ne(
|
|
3401
|
+
var Y = c ? String(r).replace(/\./g, "%2E") : String(r), _ = s && ne(g) && g.length === 1 ? Y + "[]" : Y;
|
|
3402
|
+
if (o && ne(g) && g.length === 0)
|
|
3417
3403
|
return _ + "[]";
|
|
3418
3404
|
for (var G = 0; G < U.length; ++G) {
|
|
3419
|
-
var B = U[G], V = typeof B == "object" && B && typeof B.value < "u" ? B.value :
|
|
3405
|
+
var B = U[G], V = typeof B == "object" && B && typeof B.value < "u" ? B.value : g[B];
|
|
3420
3406
|
if (!(i && V === null)) {
|
|
3421
|
-
var fe =
|
|
3422
|
-
|
|
3423
|
-
var Ge =
|
|
3424
|
-
Ge.set(
|
|
3407
|
+
var fe = d && c ? String(B).replace(/\./g, "%2E") : String(B), yt = ne(g) ? typeof n == "function" ? n(_, fe) : _ : _ + (d ? "." + fe : "[" + fe + "]");
|
|
3408
|
+
y.set(e, O);
|
|
3409
|
+
var Ge = On();
|
|
3410
|
+
Ge.set(_t, y), xn(k, t(
|
|
3425
3411
|
V,
|
|
3426
3412
|
yt,
|
|
3427
3413
|
n,
|
|
@@ -3430,21 +3416,21 @@ function() {
|
|
|
3430
3416
|
a,
|
|
3431
3417
|
i,
|
|
3432
3418
|
c,
|
|
3433
|
-
n === "comma" &&
|
|
3419
|
+
n === "comma" && b && ne(g) ? null : l,
|
|
3434
3420
|
f,
|
|
3435
3421
|
u,
|
|
3436
|
-
p,
|
|
3437
3422
|
d,
|
|
3423
|
+
p,
|
|
3438
3424
|
h,
|
|
3439
|
-
|
|
3440
|
-
|
|
3425
|
+
m,
|
|
3426
|
+
b,
|
|
3441
3427
|
$,
|
|
3442
3428
|
Ge
|
|
3443
3429
|
));
|
|
3444
3430
|
}
|
|
3445
3431
|
}
|
|
3446
3432
|
return k;
|
|
3447
|
-
},
|
|
3433
|
+
}, ls = function(e) {
|
|
3448
3434
|
if (!e)
|
|
3449
3435
|
return L;
|
|
3450
3436
|
if (typeof e.allowEmptyArrays < "u" && typeof e.allowEmptyArrays != "boolean")
|
|
@@ -3458,14 +3444,14 @@ function() {
|
|
|
3458
3444
|
throw new TypeError("The charset option must be either utf-8, iso-8859-1, or undefined");
|
|
3459
3445
|
var n = Fe.default;
|
|
3460
3446
|
if (typeof e.format < "u") {
|
|
3461
|
-
if (!
|
|
3447
|
+
if (!os.call(Fe.formatters, e.format))
|
|
3462
3448
|
throw new TypeError("Unknown format option provided.");
|
|
3463
3449
|
n = e.format;
|
|
3464
3450
|
}
|
|
3465
3451
|
var s = Fe.formatters[n], o = L.filter;
|
|
3466
3452
|
(typeof e.filter == "function" || ne(e.filter)) && (o = e.filter);
|
|
3467
3453
|
var a;
|
|
3468
|
-
if (e.arrayFormat in
|
|
3454
|
+
if (e.arrayFormat in Tn ? a = e.arrayFormat : "indices" in e ? a = e.indices ? "indices" : "repeat" : a = L.arrayFormat, "commaRoundTrip" in e && typeof e.commaRoundTrip != "boolean")
|
|
3469
3455
|
throw new TypeError("`commaRoundTrip` must be a boolean, or absent");
|
|
3470
3456
|
var i = typeof e.allowDots > "u" ? e.encodeDotInKeys === !0 ? !0 : L.allowDots : !!e.allowDots;
|
|
3471
3457
|
return {
|
|
@@ -3489,20 +3475,20 @@ function() {
|
|
|
3489
3475
|
sort: typeof e.sort == "function" ? e.sort : null,
|
|
3490
3476
|
strictNullHandling: typeof e.strictNullHandling == "boolean" ? e.strictNullHandling : L.strictNullHandling
|
|
3491
3477
|
};
|
|
3492
|
-
},
|
|
3493
|
-
var r = t, n =
|
|
3478
|
+
}, fs = function(t, e) {
|
|
3479
|
+
var r = t, n = ls(e), s, o;
|
|
3494
3480
|
typeof n.filter == "function" ? (o = n.filter, r = o("", r)) : ne(n.filter) && (o = n.filter, s = o);
|
|
3495
3481
|
var a = [];
|
|
3496
3482
|
if (typeof r != "object" || r === null)
|
|
3497
3483
|
return "";
|
|
3498
|
-
var i =
|
|
3484
|
+
var i = Tn[n.arrayFormat], c = i === "comma" && n.commaRoundTrip;
|
|
3499
3485
|
s || (s = Object.keys(r)), n.sort && s.sort(n.sort);
|
|
3500
|
-
for (var l =
|
|
3486
|
+
for (var l = On(), f = 0; f < s.length; ++f) {
|
|
3501
3487
|
var u = s[f];
|
|
3502
3488
|
if (!(typeof u > "u" || u === null)) {
|
|
3503
|
-
var
|
|
3504
|
-
n.skipNulls &&
|
|
3505
|
-
|
|
3489
|
+
var d = r[u];
|
|
3490
|
+
n.skipNulls && d === null || xn(a, cs(
|
|
3491
|
+
d,
|
|
3506
3492
|
u,
|
|
3507
3493
|
i,
|
|
3508
3494
|
c,
|
|
@@ -3523,9 +3509,9 @@ function() {
|
|
|
3523
3509
|
));
|
|
3524
3510
|
}
|
|
3525
3511
|
}
|
|
3526
|
-
var
|
|
3527
|
-
return n.charsetSentinel && (n.charset === "iso-8859-1" ? h += "utf8=%26%2310003%3B" + n.delimiter : h += "utf8=%E2%9C%93" + n.delimiter),
|
|
3528
|
-
}, ae =
|
|
3512
|
+
var p = a.join(n.delimiter), h = n.addQueryPrefix === !0 ? "?" : "";
|
|
3513
|
+
return n.charsetSentinel && (n.charset === "iso-8859-1" ? h += "utf8=%26%2310003%3B" + n.delimiter : h += "utf8=%E2%9C%93" + n.delimiter), p.length > 0 ? h + p : "";
|
|
3514
|
+
}, ae = Sn, et = Object.prototype.hasOwnProperty, Lt = Array.isArray, N = {
|
|
3529
3515
|
allowDots: !1,
|
|
3530
3516
|
allowEmptyArrays: !1,
|
|
3531
3517
|
allowPrototypes: !1,
|
|
@@ -3548,11 +3534,11 @@ function() {
|
|
|
3548
3534
|
strictMerge: !0,
|
|
3549
3535
|
strictNullHandling: !1,
|
|
3550
3536
|
throwOnLimitExceeded: !1
|
|
3551
|
-
},
|
|
3537
|
+
}, us = function(t) {
|
|
3552
3538
|
return t.replace(/&#(\d+);/g, function(e, r) {
|
|
3553
3539
|
return String.fromCharCode(parseInt(r, 10));
|
|
3554
3540
|
});
|
|
3555
|
-
},
|
|
3541
|
+
}, En = function(t, e, r, n) {
|
|
3556
3542
|
if (t && typeof t == "string" && e.comma && t.indexOf(",") > -1) {
|
|
3557
3543
|
if (n && e.throwOnLimitExceeded)
|
|
3558
3544
|
for (var s = 0, o = t.indexOf(","); o > -1; ) {
|
|
@@ -3565,7 +3551,7 @@ function() {
|
|
|
3565
3551
|
if (e.throwOnLimitExceeded && r >= e.arrayLimit)
|
|
3566
3552
|
throw new RangeError("Array limit exceeded. Only " + e.arrayLimit + " element" + (e.arrayLimit === 1 ? "" : "s") + " allowed in an array.");
|
|
3567
3553
|
return t;
|
|
3568
|
-
},
|
|
3554
|
+
}, ps = "utf8=%26%2310003%3B", ds = "utf8=%E2%9C%93", hs = function(e, r) {
|
|
3569
3555
|
var n = { __proto__: null }, s = r.ignoreQueryPrefix ? e.replace(/^\?/, "") : e;
|
|
3570
3556
|
s = s.replace(/%5B/gi, "[").replace(/%5D/gi, "]");
|
|
3571
3557
|
var o = r.parameterLimit === 1 / 0 ? void 0 : r.parameterLimit, a = s.split(
|
|
@@ -3577,39 +3563,39 @@ function() {
|
|
|
3577
3563
|
var i = -1, c, l = r.charset;
|
|
3578
3564
|
if (r.charsetSentinel)
|
|
3579
3565
|
for (c = 0; c < a.length; ++c)
|
|
3580
|
-
a[c].indexOf("utf8=") === 0 && (a[c] ===
|
|
3566
|
+
a[c].indexOf("utf8=") === 0 && (a[c] === ds ? l = "utf-8" : a[c] === ps && (l = "iso-8859-1"), i = c, c = a.length);
|
|
3581
3567
|
for (c = 0; c < a.length; ++c)
|
|
3582
3568
|
if (c !== i) {
|
|
3583
|
-
var f = a[c], u = f.indexOf("]="),
|
|
3584
|
-
if (
|
|
3585
|
-
|
|
3586
|
-
f.slice(
|
|
3569
|
+
var f = a[c], u = f.indexOf("]="), d = u === -1 ? f.indexOf("=") : u + 1, p, h;
|
|
3570
|
+
if (d === -1 ? (p = r.decoder(f, N.decoder, l, "key"), h = r.strictNullHandling ? null : "") : (p = r.decoder(f.slice(0, d), N.decoder, l, "key"), p !== null && (h = ae.maybeMap(
|
|
3571
|
+
En(
|
|
3572
|
+
f.slice(d + 1),
|
|
3587
3573
|
r,
|
|
3588
|
-
|
|
3574
|
+
Lt(n[p]) ? n[p].length : 0,
|
|
3589
3575
|
f.indexOf("[]=") === -1
|
|
3590
3576
|
),
|
|
3591
|
-
function(
|
|
3592
|
-
return r.decoder(
|
|
3577
|
+
function(b) {
|
|
3578
|
+
return r.decoder(b, N.decoder, l, "value");
|
|
3593
3579
|
}
|
|
3594
|
-
))), h && r.interpretNumericEntities && l === "iso-8859-1" && (h =
|
|
3595
|
-
var
|
|
3596
|
-
|
|
3597
|
-
n[
|
|
3580
|
+
))), h && r.interpretNumericEntities && l === "iso-8859-1" && (h = us(String(h))), f.indexOf("[]=") > -1 && (h = Lt(h) ? [h] : h), r.comma && Lt(h) && h.length > r.arrayLimit && (h = ae.combine([], h, r.arrayLimit, r.plainObjects, r.throwOnLimitExceeded)), p !== null) {
|
|
3581
|
+
var m = et.call(n, p);
|
|
3582
|
+
m && (r.duplicates === "combine" || f.indexOf("[]=") > -1) ? n[p] = ae.combine(
|
|
3583
|
+
n[p],
|
|
3598
3584
|
h,
|
|
3599
3585
|
r.arrayLimit,
|
|
3600
3586
|
r.plainObjects,
|
|
3601
3587
|
r.throwOnLimitExceeded
|
|
3602
|
-
) : (!
|
|
3588
|
+
) : (!m || r.duplicates === "last") && (n[p] = h);
|
|
3603
3589
|
}
|
|
3604
3590
|
}
|
|
3605
3591
|
return n;
|
|
3606
|
-
},
|
|
3592
|
+
}, ys = function(t, e, r, n) {
|
|
3607
3593
|
var s = 0;
|
|
3608
3594
|
if (t.length > 0 && t[t.length - 1] === "[]") {
|
|
3609
3595
|
var o = t.slice(0, -1).join("");
|
|
3610
3596
|
s = Array.isArray(e) && e[o] ? e[o].length : 0;
|
|
3611
3597
|
}
|
|
3612
|
-
for (var a = n ? e :
|
|
3598
|
+
for (var a = n ? e : En(e, r, s), i = t.length - 1; i >= 0; --i) {
|
|
3613
3599
|
var c, l = t[i];
|
|
3614
3600
|
if (l === "[]" && r.parseArrays)
|
|
3615
3601
|
ae.isOverflow(a) ? c = a : c = r.allowEmptyArrays && (a === "" || r.strictNullHandling && a === null) ? [] : ae.combine(
|
|
@@ -3621,21 +3607,21 @@ function() {
|
|
|
3621
3607
|
);
|
|
3622
3608
|
else {
|
|
3623
3609
|
c = r.plainObjects ? { __proto__: null } : {};
|
|
3624
|
-
var f = l.charAt(0) === "[" && l.charAt(l.length - 1) === "]" ? l.slice(1, -1) : l, u = r.decodeDotInKeys ? f.replace(/%2E/g, ".") : f,
|
|
3610
|
+
var f = l.charAt(0) === "[" && l.charAt(l.length - 1) === "]" ? l.slice(1, -1) : l, u = r.decodeDotInKeys ? f.replace(/%2E/g, ".") : f, d = parseInt(u, 10), p = !isNaN(d) && l !== u && String(d) === u && d >= 0 && r.parseArrays;
|
|
3625
3611
|
if (!r.parseArrays && u === "")
|
|
3626
3612
|
c = { 0: a };
|
|
3627
|
-
else if (
|
|
3628
|
-
c = [], c[
|
|
3613
|
+
else if (p && d < r.arrayLimit)
|
|
3614
|
+
c = [], c[d] = a;
|
|
3629
3615
|
else {
|
|
3630
|
-
if (
|
|
3616
|
+
if (p && r.throwOnLimitExceeded)
|
|
3631
3617
|
throw new RangeError("Array limit exceeded. Only " + r.arrayLimit + " element" + (r.arrayLimit === 1 ? "" : "s") + " allowed in an array.");
|
|
3632
|
-
|
|
3618
|
+
p ? (c[d] = a, ae.markOverflow(c, d)) : u !== "__proto__" && (c[u] = a);
|
|
3633
3619
|
}
|
|
3634
3620
|
}
|
|
3635
3621
|
a = c;
|
|
3636
3622
|
}
|
|
3637
3623
|
return a;
|
|
3638
|
-
},
|
|
3624
|
+
}, ms = function(e, r) {
|
|
3639
3625
|
var n = r.allowDots ? e.replace(/\.([^.[]+)/g, "[$1]") : e;
|
|
3640
3626
|
if (r.depth <= 0)
|
|
3641
3627
|
return !r.plainObjects && et.call(Object.prototype, n) && !r.allowPrototypes ? void 0 : [n];
|
|
@@ -3646,16 +3632,16 @@ function() {
|
|
|
3646
3632
|
s[s.length] = a;
|
|
3647
3633
|
}
|
|
3648
3634
|
for (var i = n.length, c = o, l = 0; c >= 0 && l < r.depth; ) {
|
|
3649
|
-
for (var f = 1, u = c + 1,
|
|
3650
|
-
var
|
|
3651
|
-
|
|
3635
|
+
for (var f = 1, u = c + 1, d = -1; u < i && d < 0; ) {
|
|
3636
|
+
var p = n.charCodeAt(u);
|
|
3637
|
+
p === 91 ? f += 1 : p === 93 && (f -= 1, f === 0 && (d = u)), u += 1;
|
|
3652
3638
|
}
|
|
3653
|
-
if (
|
|
3639
|
+
if (d < 0)
|
|
3654
3640
|
return s[s.length] = "[" + n.slice(c) + "]", s;
|
|
3655
|
-
var h = n.slice(c,
|
|
3656
|
-
if (!r.plainObjects && et.call(Object.prototype,
|
|
3641
|
+
var h = n.slice(c, d + 1), m = h.slice(1, -1);
|
|
3642
|
+
if (!r.plainObjects && et.call(Object.prototype, m) && !r.allowPrototypes)
|
|
3657
3643
|
return;
|
|
3658
|
-
s[s.length] = h, l += 1, c = n.indexOf("[",
|
|
3644
|
+
s[s.length] = h, l += 1, c = n.indexOf("[", d + 1);
|
|
3659
3645
|
}
|
|
3660
3646
|
if (c >= 0) {
|
|
3661
3647
|
if (r.strictDepth === !0)
|
|
@@ -3663,15 +3649,15 @@ function() {
|
|
|
3663
3649
|
s[s.length] = "[" + n.slice(c) + "]";
|
|
3664
3650
|
}
|
|
3665
3651
|
return s;
|
|
3666
|
-
},
|
|
3652
|
+
}, gs = function(e, r, n, s) {
|
|
3667
3653
|
if (e) {
|
|
3668
|
-
var o =
|
|
3654
|
+
var o = ms(e, n);
|
|
3669
3655
|
if (o)
|
|
3670
|
-
return
|
|
3656
|
+
return ys(o, r, n, s);
|
|
3671
3657
|
}
|
|
3672
|
-
},
|
|
3658
|
+
}, bs = function(e) {
|
|
3673
3659
|
if (!e)
|
|
3674
|
-
return
|
|
3660
|
+
return N;
|
|
3675
3661
|
if (typeof e.allowEmptyArrays < "u" && typeof e.allowEmptyArrays != "boolean")
|
|
3676
3662
|
throw new TypeError("`allowEmptyArrays` option can only be `true` or `false`, when provided");
|
|
3677
3663
|
if (typeof e.decodeDotInKeys < "u" && typeof e.decodeDotInKeys != "boolean")
|
|
@@ -3682,53 +3668,53 @@ function() {
|
|
|
3682
3668
|
throw new TypeError("The charset option must be either utf-8, iso-8859-1, or undefined");
|
|
3683
3669
|
if (typeof e.throwOnLimitExceeded < "u" && typeof e.throwOnLimitExceeded != "boolean")
|
|
3684
3670
|
throw new TypeError("`throwOnLimitExceeded` option must be a boolean");
|
|
3685
|
-
var r = typeof e.charset > "u" ?
|
|
3671
|
+
var r = typeof e.charset > "u" ? N.charset : e.charset, n = typeof e.duplicates > "u" ? N.duplicates : e.duplicates;
|
|
3686
3672
|
if (n !== "combine" && n !== "first" && n !== "last")
|
|
3687
3673
|
throw new TypeError("The duplicates option must be either combine, first, or last");
|
|
3688
|
-
var s = typeof e.allowDots > "u" ? e.decodeDotInKeys === !0 ? !0 :
|
|
3674
|
+
var s = typeof e.allowDots > "u" ? e.decodeDotInKeys === !0 ? !0 : N.allowDots : !!e.allowDots;
|
|
3689
3675
|
return {
|
|
3690
3676
|
allowDots: s,
|
|
3691
|
-
allowEmptyArrays: typeof e.allowEmptyArrays == "boolean" ? !!e.allowEmptyArrays :
|
|
3692
|
-
allowPrototypes: typeof e.allowPrototypes == "boolean" ? e.allowPrototypes :
|
|
3693
|
-
allowSparse: typeof e.allowSparse == "boolean" ? e.allowSparse :
|
|
3694
|
-
arrayLimit: typeof e.arrayLimit == "number" ? e.arrayLimit :
|
|
3677
|
+
allowEmptyArrays: typeof e.allowEmptyArrays == "boolean" ? !!e.allowEmptyArrays : N.allowEmptyArrays,
|
|
3678
|
+
allowPrototypes: typeof e.allowPrototypes == "boolean" ? e.allowPrototypes : N.allowPrototypes,
|
|
3679
|
+
allowSparse: typeof e.allowSparse == "boolean" ? e.allowSparse : N.allowSparse,
|
|
3680
|
+
arrayLimit: typeof e.arrayLimit == "number" ? e.arrayLimit : N.arrayLimit,
|
|
3695
3681
|
charset: r,
|
|
3696
|
-
charsetSentinel: typeof e.charsetSentinel == "boolean" ? e.charsetSentinel :
|
|
3697
|
-
comma: typeof e.comma == "boolean" ? e.comma :
|
|
3698
|
-
decodeDotInKeys: typeof e.decodeDotInKeys == "boolean" ? e.decodeDotInKeys :
|
|
3699
|
-
decoder: typeof e.decoder == "function" ? e.decoder :
|
|
3700
|
-
delimiter: typeof e.delimiter == "string" || ae.isRegExp(e.delimiter) ? e.delimiter :
|
|
3682
|
+
charsetSentinel: typeof e.charsetSentinel == "boolean" ? e.charsetSentinel : N.charsetSentinel,
|
|
3683
|
+
comma: typeof e.comma == "boolean" ? e.comma : N.comma,
|
|
3684
|
+
decodeDotInKeys: typeof e.decodeDotInKeys == "boolean" ? e.decodeDotInKeys : N.decodeDotInKeys,
|
|
3685
|
+
decoder: typeof e.decoder == "function" ? e.decoder : N.decoder,
|
|
3686
|
+
delimiter: typeof e.delimiter == "string" || ae.isRegExp(e.delimiter) ? e.delimiter : N.delimiter,
|
|
3701
3687
|
// eslint-disable-next-line no-implicit-coercion, no-extra-parens
|
|
3702
|
-
depth: typeof e.depth == "number" || e.depth === !1 ? +e.depth :
|
|
3688
|
+
depth: typeof e.depth == "number" || e.depth === !1 ? +e.depth : N.depth,
|
|
3703
3689
|
duplicates: n,
|
|
3704
3690
|
ignoreQueryPrefix: e.ignoreQueryPrefix === !0,
|
|
3705
|
-
interpretNumericEntities: typeof e.interpretNumericEntities == "boolean" ? e.interpretNumericEntities :
|
|
3706
|
-
parameterLimit: typeof e.parameterLimit == "number" ? e.parameterLimit :
|
|
3691
|
+
interpretNumericEntities: typeof e.interpretNumericEntities == "boolean" ? e.interpretNumericEntities : N.interpretNumericEntities,
|
|
3692
|
+
parameterLimit: typeof e.parameterLimit == "number" ? e.parameterLimit : N.parameterLimit,
|
|
3707
3693
|
parseArrays: e.parseArrays !== !1,
|
|
3708
|
-
plainObjects: typeof e.plainObjects == "boolean" ? e.plainObjects :
|
|
3709
|
-
strictDepth: typeof e.strictDepth == "boolean" ? !!e.strictDepth :
|
|
3710
|
-
strictMerge: typeof e.strictMerge == "boolean" ? !!e.strictMerge :
|
|
3711
|
-
strictNullHandling: typeof e.strictNullHandling == "boolean" ? e.strictNullHandling :
|
|
3694
|
+
plainObjects: typeof e.plainObjects == "boolean" ? e.plainObjects : N.plainObjects,
|
|
3695
|
+
strictDepth: typeof e.strictDepth == "boolean" ? !!e.strictDepth : N.strictDepth,
|
|
3696
|
+
strictMerge: typeof e.strictMerge == "boolean" ? !!e.strictMerge : N.strictMerge,
|
|
3697
|
+
strictNullHandling: typeof e.strictNullHandling == "boolean" ? e.strictNullHandling : N.strictNullHandling,
|
|
3712
3698
|
throwOnLimitExceeded: typeof e.throwOnLimitExceeded == "boolean" ? e.throwOnLimitExceeded : !1
|
|
3713
3699
|
};
|
|
3714
|
-
},
|
|
3715
|
-
var r =
|
|
3700
|
+
}, $s = function(t, e) {
|
|
3701
|
+
var r = bs(e);
|
|
3716
3702
|
if (t === "" || t === null || typeof t > "u")
|
|
3717
3703
|
return r.plainObjects ? { __proto__: null } : {};
|
|
3718
|
-
for (var n = typeof t == "string" ?
|
|
3719
|
-
var i = o[a], c =
|
|
3704
|
+
for (var n = typeof t == "string" ? hs(t, r) : t, s = r.plainObjects ? { __proto__: null } : {}, o = Object.keys(n), a = 0; a < o.length; ++a) {
|
|
3705
|
+
var i = o[a], c = gs(i, n[i], r, typeof t == "string");
|
|
3720
3706
|
s = ae.merge(s, c, r);
|
|
3721
3707
|
}
|
|
3722
3708
|
return r.allowSparse === !0 ? s : ae.compact(s);
|
|
3723
|
-
},
|
|
3724
|
-
formats:
|
|
3725
|
-
parse:
|
|
3726
|
-
stringify:
|
|
3727
|
-
},
|
|
3709
|
+
}, vs = fs, ws = $s, Ss = tr, tt = {
|
|
3710
|
+
formats: Ss,
|
|
3711
|
+
parse: ws,
|
|
3712
|
+
stringify: vs
|
|
3713
|
+
}, Os = Eo;
|
|
3728
3714
|
function ee() {
|
|
3729
3715
|
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;
|
|
3730
3716
|
}
|
|
3731
|
-
var
|
|
3717
|
+
var Ts = /^([a-z0-9.+-]+:)/i, xs = /:[0-9]*$/, Es = /^(\/\/?(?!\/)[^?\s]*)(\?[^\s]*)?$/, js = [
|
|
3732
3718
|
"<",
|
|
3733
3719
|
">",
|
|
3734
3720
|
'"',
|
|
@@ -3738,27 +3724,27 @@ var vs = /^([a-z0-9.+-]+:)/i, ws = /:[0-9]*$/, Ss = /^(\/\/?(?!\/)[^?\s]*)(\?[^\
|
|
|
3738
3724
|
`
|
|
3739
3725
|
`,
|
|
3740
3726
|
" "
|
|
3741
|
-
],
|
|
3727
|
+
], Ps = [
|
|
3742
3728
|
"{",
|
|
3743
3729
|
"}",
|
|
3744
3730
|
"|",
|
|
3745
3731
|
"\\",
|
|
3746
3732
|
"^",
|
|
3747
3733
|
"`"
|
|
3748
|
-
].concat(
|
|
3734
|
+
].concat(js), zt = ["'"].concat(Ps), Jr = [
|
|
3749
3735
|
"%",
|
|
3750
3736
|
"/",
|
|
3751
3737
|
"?",
|
|
3752
3738
|
";",
|
|
3753
3739
|
"#"
|
|
3754
|
-
].concat(
|
|
3740
|
+
].concat(zt), Gr = [
|
|
3755
3741
|
"/",
|
|
3756
3742
|
"?",
|
|
3757
3743
|
"#"
|
|
3758
|
-
],
|
|
3744
|
+
], Cs = 255, zr = /^[+a-z0-9A-Z_-]{0,63}$/, ks = /^([+a-z0-9A-Z_-]{0,63})(.*)$/, As = {
|
|
3759
3745
|
javascript: !0,
|
|
3760
3746
|
"javascript:": !0
|
|
3761
|
-
},
|
|
3747
|
+
}, Vt = {
|
|
3762
3748
|
javascript: !0,
|
|
3763
3749
|
"javascript:": !0
|
|
3764
3750
|
}, Pe = {
|
|
@@ -3772,8 +3758,8 @@ var vs = /^([a-z0-9.+-]+:)/i, ws = /:[0-9]*$/, Ss = /^(\/\/?(?!\/)[^?\s]*)(\?[^\
|
|
|
3772
3758
|
"ftp:": !0,
|
|
3773
3759
|
"gopher:": !0,
|
|
3774
3760
|
"file:": !0
|
|
3775
|
-
},
|
|
3776
|
-
function
|
|
3761
|
+
}, Kt = tt;
|
|
3762
|
+
function rr(t, e, r) {
|
|
3777
3763
|
if (t && typeof t == "object" && t instanceof ee)
|
|
3778
3764
|
return t;
|
|
3779
3765
|
var n = new ee();
|
|
@@ -3786,11 +3772,11 @@ ee.prototype.parse = function(t, e, r) {
|
|
|
3786
3772
|
o[0] = o[0].replace(a, "/"), t = o.join(s);
|
|
3787
3773
|
var i = t;
|
|
3788
3774
|
if (i = i.trim(), !r && t.split("#").length === 1) {
|
|
3789
|
-
var c =
|
|
3775
|
+
var c = Es.exec(i);
|
|
3790
3776
|
if (c)
|
|
3791
|
-
return this.path = i, this.href = i, this.pathname = c[1], c[2] ? (this.search = c[2], e ? this.query =
|
|
3777
|
+
return this.path = i, this.href = i, this.pathname = c[1], c[2] ? (this.search = c[2], e ? this.query = Kt.parse(this.search.substr(1)) : this.query = this.search.substr(1)) : e && (this.search = "", this.query = {}), this;
|
|
3792
3778
|
}
|
|
3793
|
-
var l =
|
|
3779
|
+
var l = Ts.exec(i);
|
|
3794
3780
|
if (l) {
|
|
3795
3781
|
l = l[0];
|
|
3796
3782
|
var f = l.toLowerCase();
|
|
@@ -3798,41 +3784,41 @@ ee.prototype.parse = function(t, e, r) {
|
|
|
3798
3784
|
}
|
|
3799
3785
|
if (r || l || i.match(/^\/\/[^@/]+@[^@/]+/)) {
|
|
3800
3786
|
var u = i.substr(0, 2) === "//";
|
|
3801
|
-
u && !(l &&
|
|
3787
|
+
u && !(l && Vt[l]) && (i = i.substr(2), this.slashes = !0);
|
|
3802
3788
|
}
|
|
3803
|
-
if (!
|
|
3804
|
-
for (var
|
|
3805
|
-
var h = i.indexOf(
|
|
3806
|
-
h !== -1 && (
|
|
3789
|
+
if (!Vt[l] && (u || l && !Pe[l])) {
|
|
3790
|
+
for (var d = -1, p = 0; p < Gr.length; p++) {
|
|
3791
|
+
var h = i.indexOf(Gr[p]);
|
|
3792
|
+
h !== -1 && (d === -1 || h < d) && (d = h);
|
|
3807
3793
|
}
|
|
3808
|
-
var
|
|
3809
|
-
|
|
3810
|
-
for (var
|
|
3811
|
-
var h = i.indexOf(
|
|
3812
|
-
h !== -1 && (
|
|
3794
|
+
var m, b;
|
|
3795
|
+
d === -1 ? b = i.lastIndexOf("@") : b = i.lastIndexOf("@", d), b !== -1 && (m = i.slice(0, b), i = i.slice(b + 1), this.auth = decodeURIComponent(m)), d = -1;
|
|
3796
|
+
for (var p = 0; p < Jr.length; p++) {
|
|
3797
|
+
var h = i.indexOf(Jr[p]);
|
|
3798
|
+
h !== -1 && (d === -1 || h < d) && (d = h);
|
|
3813
3799
|
}
|
|
3814
|
-
|
|
3800
|
+
d === -1 && (d = i.length), this.host = i.slice(0, d), i = i.slice(d), this.parseHost(), this.hostname = this.hostname || "";
|
|
3815
3801
|
var $ = this.hostname[0] === "[" && this.hostname[this.hostname.length - 1] === "]";
|
|
3816
3802
|
if (!$)
|
|
3817
|
-
for (var
|
|
3818
|
-
var S =
|
|
3819
|
-
if (S && !S.match(
|
|
3803
|
+
for (var y = this.hostname.split(/\./), p = 0, g = y.length; p < g; p++) {
|
|
3804
|
+
var S = y[p];
|
|
3805
|
+
if (S && !S.match(zr)) {
|
|
3820
3806
|
for (var O = "", v = 0, P = S.length; v < P; v++)
|
|
3821
3807
|
S.charCodeAt(v) > 127 ? O += "x" : O += S[v];
|
|
3822
|
-
if (!O.match(
|
|
3823
|
-
var T =
|
|
3808
|
+
if (!O.match(zr)) {
|
|
3809
|
+
var T = y.slice(0, p), k = y.slice(p + 1), U = S.match(ks);
|
|
3824
3810
|
U && (T.push(U[1]), k.unshift(U[2])), k.length && (i = "/" + k.join(".") + i), this.hostname = T.join(".");
|
|
3825
3811
|
break;
|
|
3826
3812
|
}
|
|
3827
3813
|
}
|
|
3828
3814
|
}
|
|
3829
|
-
this.hostname.length >
|
|
3815
|
+
this.hostname.length > Cs ? this.hostname = "" : this.hostname = this.hostname.toLowerCase(), $ || (this.hostname = Os.toASCII(this.hostname));
|
|
3830
3816
|
var Q = this.port ? ":" + this.port : "", Y = this.hostname || "";
|
|
3831
3817
|
this.host = Y + Q, this.href += this.host, $ && (this.hostname = this.hostname.substr(1, this.hostname.length - 2), i[0] !== "/" && (i = "/" + i));
|
|
3832
3818
|
}
|
|
3833
|
-
if (!
|
|
3834
|
-
for (var
|
|
3835
|
-
var _ =
|
|
3819
|
+
if (!As[f])
|
|
3820
|
+
for (var p = 0, g = zt.length; p < g; p++) {
|
|
3821
|
+
var _ = zt[p];
|
|
3836
3822
|
if (i.indexOf(_) !== -1) {
|
|
3837
3823
|
var G = encodeURIComponent(_);
|
|
3838
3824
|
G === _ && (G = escape(_)), i = i.split(_).join(G);
|
|
@@ -3841,20 +3827,20 @@ ee.prototype.parse = function(t, e, r) {
|
|
|
3841
3827
|
var B = i.indexOf("#");
|
|
3842
3828
|
B !== -1 && (this.hash = i.substr(B), i = i.slice(0, B));
|
|
3843
3829
|
var V = i.indexOf("?");
|
|
3844
|
-
if (V !== -1 ? (this.search = i.substr(V), this.query = i.substr(V + 1), e && (this.query =
|
|
3830
|
+
if (V !== -1 ? (this.search = i.substr(V), this.query = i.substr(V + 1), e && (this.query = Kt.parse(this.query)), i = i.slice(0, V)) : e && (this.search = "", this.query = {}), i && (this.pathname = i), Pe[f] && this.hostname && !this.pathname && (this.pathname = "/"), this.pathname || this.search) {
|
|
3845
3831
|
var Q = this.pathname || "", fe = this.search || "";
|
|
3846
3832
|
this.path = Q + fe;
|
|
3847
3833
|
}
|
|
3848
3834
|
return this.href = this.format(), this;
|
|
3849
3835
|
};
|
|
3850
|
-
function
|
|
3851
|
-
return typeof t == "string" && (t =
|
|
3836
|
+
function Rs(t) {
|
|
3837
|
+
return typeof t == "string" && (t = rr(t)), t instanceof ee ? t.format() : ee.prototype.format.call(t);
|
|
3852
3838
|
}
|
|
3853
3839
|
ee.prototype.format = function() {
|
|
3854
3840
|
var t = this.auth || "";
|
|
3855
3841
|
t && (t = encodeURIComponent(t), t = t.replace(/%3A/i, ":"), t += "@");
|
|
3856
3842
|
var e = this.protocol || "", r = this.pathname || "", n = this.hash || "", s = !1, o = "";
|
|
3857
|
-
this.host ? s = t + this.host : this.hostname && (s = t + (this.hostname.indexOf(":") === -1 ? this.hostname : "[" + this.hostname + "]"), this.port && (s += ":" + this.port)), this.query && typeof this.query == "object" && Object.keys(this.query).length && (o =
|
|
3843
|
+
this.host ? s = t + this.host : this.hostname && (s = t + (this.hostname.indexOf(":") === -1 ? this.hostname : "[" + this.hostname + "]"), this.port && (s += ":" + this.port)), this.query && typeof this.query == "object" && Object.keys(this.query).length && (o = Kt.stringify(this.query, {
|
|
3858
3844
|
arrayFormat: "repeat",
|
|
3859
3845
|
addQueryPrefix: !1
|
|
3860
3846
|
}));
|
|
@@ -3864,7 +3850,7 @@ ee.prototype.format = function() {
|
|
|
3864
3850
|
}), a = a.replace("#", "%23"), e + s + r + a + n;
|
|
3865
3851
|
};
|
|
3866
3852
|
ee.prototype.resolve = function(t) {
|
|
3867
|
-
return this.resolveObject(
|
|
3853
|
+
return this.resolveObject(rr(t, !1, !0)).format();
|
|
3868
3854
|
};
|
|
3869
3855
|
ee.prototype.resolveObject = function(t) {
|
|
3870
3856
|
if (typeof t == "string") {
|
|
@@ -3892,62 +3878,62 @@ ee.prototype.resolveObject = function(t) {
|
|
|
3892
3878
|
}
|
|
3893
3879
|
return r.href = r.format(), r;
|
|
3894
3880
|
}
|
|
3895
|
-
if (r.protocol = t.protocol, !t.host && !
|
|
3896
|
-
for (var
|
|
3881
|
+
if (r.protocol = t.protocol, !t.host && !Vt[t.protocol]) {
|
|
3882
|
+
for (var g = (t.pathname || "").split("/"); g.length && !(t.host = g.shift()); )
|
|
3897
3883
|
;
|
|
3898
|
-
t.host || (t.host = ""), t.hostname || (t.hostname = ""),
|
|
3884
|
+
t.host || (t.host = ""), t.hostname || (t.hostname = ""), g[0] !== "" && g.unshift(""), g.length < 2 && g.unshift(""), r.pathname = g.join("/");
|
|
3899
3885
|
} else
|
|
3900
3886
|
r.pathname = t.pathname;
|
|
3901
3887
|
if (r.search = t.search, r.query = t.query, r.host = t.host || "", r.auth = t.auth, r.hostname = t.hostname || t.host, r.port = t.port, r.pathname || r.search) {
|
|
3902
|
-
var
|
|
3903
|
-
r.path =
|
|
3888
|
+
var d = r.pathname || "", p = r.search || "";
|
|
3889
|
+
r.path = d + p;
|
|
3904
3890
|
}
|
|
3905
3891
|
return r.slashes = r.slashes || t.slashes, r.href = r.format(), r;
|
|
3906
3892
|
}
|
|
3907
|
-
var h = r.pathname && r.pathname.charAt(0) === "/",
|
|
3908
|
-
if (S && (r.hostname = "", r.port = null, r.host && (
|
|
3909
|
-
r.host = t.host || t.host === "" ? t.host : r.host, r.hostname = t.hostname || t.hostname === "" ? t.hostname : r.hostname, r.search = t.search, r.query = t.query,
|
|
3910
|
-
else if (
|
|
3911
|
-
|
|
3893
|
+
var h = r.pathname && r.pathname.charAt(0) === "/", m = t.host || t.pathname && t.pathname.charAt(0) === "/", b = m || h || r.host && t.pathname, $ = b, y = r.pathname && r.pathname.split("/") || [], g = t.pathname && t.pathname.split("/") || [], S = r.protocol && !Pe[r.protocol];
|
|
3894
|
+
if (S && (r.hostname = "", r.port = null, r.host && (y[0] === "" ? y[0] = r.host : y.unshift(r.host)), r.host = "", t.protocol && (t.hostname = null, t.port = null, t.host && (g[0] === "" ? g[0] = t.host : g.unshift(t.host)), t.host = null), b = b && (g[0] === "" || y[0] === "")), m)
|
|
3895
|
+
r.host = t.host || t.host === "" ? t.host : r.host, r.hostname = t.hostname || t.hostname === "" ? t.hostname : r.hostname, r.search = t.search, r.query = t.query, y = g;
|
|
3896
|
+
else if (g.length)
|
|
3897
|
+
y || (y = []), y.pop(), y = y.concat(g), r.search = t.search, r.query = t.query;
|
|
3912
3898
|
else if (t.search != null) {
|
|
3913
3899
|
if (S) {
|
|
3914
|
-
r.host =
|
|
3900
|
+
r.host = y.shift(), r.hostname = r.host;
|
|
3915
3901
|
var O = r.host && r.host.indexOf("@") > 0 ? r.host.split("@") : !1;
|
|
3916
3902
|
O && (r.auth = O.shift(), r.hostname = O.shift(), r.host = r.hostname);
|
|
3917
3903
|
}
|
|
3918
3904
|
return r.search = t.search, r.query = t.query, (r.pathname !== null || r.search !== null) && (r.path = (r.pathname ? r.pathname : "") + (r.search ? r.search : "")), r.href = r.format(), r;
|
|
3919
3905
|
}
|
|
3920
|
-
if (!
|
|
3906
|
+
if (!y.length)
|
|
3921
3907
|
return r.pathname = null, r.search ? r.path = "/" + r.search : r.path = null, r.href = r.format(), r;
|
|
3922
|
-
for (var v =
|
|
3923
|
-
v =
|
|
3924
|
-
if (!
|
|
3908
|
+
for (var v = y.slice(-1)[0], P = (r.host || t.host || y.length > 1) && (v === "." || v === "..") || v === "", T = 0, k = y.length; k >= 0; k--)
|
|
3909
|
+
v = y[k], v === "." ? y.splice(k, 1) : v === ".." ? (y.splice(k, 1), T++) : T && (y.splice(k, 1), T--);
|
|
3910
|
+
if (!b && !$)
|
|
3925
3911
|
for (; T--; T)
|
|
3926
|
-
|
|
3927
|
-
|
|
3928
|
-
var U =
|
|
3912
|
+
y.unshift("..");
|
|
3913
|
+
b && y[0] !== "" && (!y[0] || y[0].charAt(0) !== "/") && y.unshift(""), P && y.join("/").substr(-1) !== "/" && y.push("");
|
|
3914
|
+
var U = y[0] === "" || y[0] && y[0].charAt(0) === "/";
|
|
3929
3915
|
if (S) {
|
|
3930
|
-
r.hostname = U ? "" :
|
|
3916
|
+
r.hostname = U ? "" : y.length ? y.shift() : "", r.host = r.hostname;
|
|
3931
3917
|
var O = r.host && r.host.indexOf("@") > 0 ? r.host.split("@") : !1;
|
|
3932
3918
|
O && (r.auth = O.shift(), r.hostname = O.shift(), r.host = r.hostname);
|
|
3933
3919
|
}
|
|
3934
|
-
return
|
|
3920
|
+
return b = b || r.host && y.length, b && !U && y.unshift(""), y.length > 0 ? r.pathname = y.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;
|
|
3935
3921
|
};
|
|
3936
3922
|
ee.prototype.parseHost = function() {
|
|
3937
|
-
var t = this.host, e =
|
|
3923
|
+
var t = this.host, e = xs.exec(t);
|
|
3938
3924
|
e && (e = e[0], e !== ":" && (this.port = e.substr(1)), t = t.substr(0, t.length - e.length)), t && (this.hostname = t);
|
|
3939
3925
|
};
|
|
3940
|
-
var
|
|
3941
|
-
const
|
|
3926
|
+
var Ns = rr, Vr = Rs;
|
|
3927
|
+
const qs = () => Object.keys(xe).map((t) => ({
|
|
3942
3928
|
...xe[t].info,
|
|
3943
3929
|
clients: Object.keys(xe[t].clientsById).map((e) => xe[t].clientsById[e].info)
|
|
3944
|
-
})),
|
|
3945
|
-
var
|
|
3930
|
+
})), _s = (t) => typeof t == "object" && "log" in t && typeof t.log == "object" && "entries" in t.log && Array.isArray(t.log.entries);
|
|
3931
|
+
var Ls = class {
|
|
3946
3932
|
constructor(t, e = {}) {
|
|
3947
3933
|
this.initCalled = !1, this.entries = [], this.requests = [], this.options = {}, this.options = {
|
|
3948
3934
|
harIsAlreadyEncoded: !1,
|
|
3949
3935
|
...e
|
|
3950
|
-
}, this.requests = [],
|
|
3936
|
+
}, this.requests = [], _s(t) ? this.entries = t.log.entries : this.entries = [{ request: t }];
|
|
3951
3937
|
}
|
|
3952
3938
|
init() {
|
|
3953
3939
|
return this.initCalled = !0, this.requests = this.entries.map(({ request: t }) => {
|
|
@@ -3966,7 +3952,7 @@ var Rs = class {
|
|
|
3966
3952
|
}), this;
|
|
3967
3953
|
}
|
|
3968
3954
|
prepare(t, e) {
|
|
3969
|
-
var f, u,
|
|
3955
|
+
var f, u, d;
|
|
3970
3956
|
const r = {
|
|
3971
3957
|
...t,
|
|
3972
3958
|
fullUrl: "",
|
|
@@ -3976,42 +3962,42 @@ var Rs = class {
|
|
|
3976
3962
|
cookiesObj: {},
|
|
3977
3963
|
allHeaders: {}
|
|
3978
3964
|
};
|
|
3979
|
-
if (r != null && r.queryString.length && (r.queryObj = r.queryString.reduce(
|
|
3980
|
-
const
|
|
3981
|
-
r.headersObj = r.headers.reduce((h, { name:
|
|
3982
|
-
const $ =
|
|
3965
|
+
if (r != null && r.queryString.length && (r.queryObj = r.queryString.reduce(gr, {})), r != null && r.headers.length) {
|
|
3966
|
+
const p = /^HTTP\/2/;
|
|
3967
|
+
r.headersObj = r.headers.reduce((h, { name: m, value: b }) => {
|
|
3968
|
+
const $ = p.exec(r.httpVersion) ? m.toLocaleLowerCase() : m;
|
|
3983
3969
|
return {
|
|
3984
3970
|
...h,
|
|
3985
|
-
[$]:
|
|
3971
|
+
[$]: b
|
|
3986
3972
|
};
|
|
3987
3973
|
}, {});
|
|
3988
3974
|
}
|
|
3989
|
-
r != null && r.cookies.length && (r.cookiesObj = r.cookies.reduceRight((
|
|
3990
|
-
...
|
|
3991
|
-
[h]:
|
|
3975
|
+
r != null && r.cookies.length && (r.cookiesObj = r.cookies.reduceRight((p, { name: h, value: m }) => ({
|
|
3976
|
+
...p,
|
|
3977
|
+
[h]: m
|
|
3992
3978
|
}), {}));
|
|
3993
|
-
const n = (f = r.cookies) == null ? void 0 : f.map(({ name:
|
|
3979
|
+
const n = (f = r.cookies) == null ? void 0 : f.map(({ name: p, value: h }) => e.harIsAlreadyEncoded ? `${p}=${h}` : `${encodeURIComponent(p)}=${encodeURIComponent(h)}`);
|
|
3994
3980
|
switch (n != null && n.length && (r.allHeaders.cookie = n.join("; ")), r.postData.mimeType) {
|
|
3995
3981
|
case "multipart/mixed":
|
|
3996
3982
|
case "multipart/related":
|
|
3997
3983
|
case "multipart/form-data":
|
|
3998
3984
|
case "multipart/alternative":
|
|
3999
3985
|
if (r.postData.text = "", r.postData.mimeType = "multipart/form-data", (u = r.postData) != null && u.params) {
|
|
4000
|
-
const
|
|
3986
|
+
const p = "---011000010111000001101001", h = `${p}--`, m = `\r
|
|
4001
3987
|
`;
|
|
4002
3988
|
/*! formdata-polyfill. MIT License. Jimmy Wärting <https://jimmy.warting.se/opensource> */
|
|
4003
|
-
const
|
|
4004
|
-
`),
|
|
4005
|
-
(
|
|
3989
|
+
const b = (S) => S.replace(/\n/g, "%0A").replace(/\r/g, "%0D").replace(/"/g, "%22"), $ = (S) => S.replace(/\r?\n|\r/g, `\r
|
|
3990
|
+
`), y = [`--${p}`];
|
|
3991
|
+
(d = r.postData) == null || d.params.forEach((S, O) => {
|
|
4006
3992
|
const v = S.name, P = S.value || "", T = S.fileName || null, k = S.contentType || "application/octet-stream";
|
|
4007
|
-
T ? (
|
|
4008
|
-
}),
|
|
4009
|
-
const
|
|
4010
|
-
r.headersObj[
|
|
3993
|
+
T ? (y.push(`Content-Disposition: form-data; name="${b($(v))}"; filename="${T}"`), y.push(`Content-Type: ${k}`)) : y.push(`Content-Disposition: form-data; name="${escape($(v))}"`), y.push(""), y.push($(P)), O !== r.postData.params.length - 1 && y.push(`--${p}`);
|
|
3994
|
+
}), y.push(`--${h}`), r.postData.boundary = p, r.postData.text = y.join(m);
|
|
3995
|
+
const g = J(r.headersObj, "content-type") || "content-type";
|
|
3996
|
+
r.headersObj[g] = `multipart/form-data; boundary=${p}`;
|
|
4011
3997
|
}
|
|
4012
3998
|
break;
|
|
4013
3999
|
case "application/x-www-form-urlencoded":
|
|
4014
|
-
r.postData.params ? (r.postData.paramsObj = r.postData.params.reduce(
|
|
4000
|
+
r.postData.params ? (r.postData.paramsObj = r.postData.params.reduce(gr, {}), r.postData.text = tt.stringify(r.postData.paramsObj)) : r.postData.text = "";
|
|
4015
4001
|
break;
|
|
4016
4002
|
case "text/json":
|
|
4017
4003
|
case "text/x-json":
|
|
@@ -4027,7 +4013,7 @@ var Rs = class {
|
|
|
4027
4013
|
const s = {
|
|
4028
4014
|
...r.allHeaders,
|
|
4029
4015
|
...r.headersObj
|
|
4030
|
-
}, o =
|
|
4016
|
+
}, o = Ns(r.url, !0, !0);
|
|
4031
4017
|
r.queryObj = {
|
|
4032
4018
|
...r.queryObj,
|
|
4033
4019
|
...o.query
|
|
@@ -4042,11 +4028,11 @@ var Rs = class {
|
|
|
4042
4028
|
query: r.queryObj,
|
|
4043
4029
|
search: a,
|
|
4044
4030
|
path: a ? `${o.pathname}?${a}` : o.pathname
|
|
4045
|
-
}, c =
|
|
4031
|
+
}, c = Vr({
|
|
4046
4032
|
...o,
|
|
4047
4033
|
query: null,
|
|
4048
4034
|
search: null
|
|
4049
|
-
}), l =
|
|
4035
|
+
}), l = Vr({
|
|
4050
4036
|
...o,
|
|
4051
4037
|
...i
|
|
4052
4038
|
});
|
|
@@ -4073,11 +4059,11 @@ var Rs = class {
|
|
|
4073
4059
|
return this.requests.map((o) => s != null && s.installation ? s.installation(o, r) : !1);
|
|
4074
4060
|
}
|
|
4075
4061
|
};
|
|
4076
|
-
const
|
|
4077
|
-
function
|
|
4078
|
-
return
|
|
4062
|
+
const jn = "agent", Pn = "prompt";
|
|
4063
|
+
function Is() {
|
|
4064
|
+
return qs();
|
|
4079
4065
|
}
|
|
4080
|
-
function
|
|
4066
|
+
function Us(t) {
|
|
4081
4067
|
var n;
|
|
4082
4068
|
const e = t == null ? void 0 : t[0];
|
|
4083
4069
|
if (!e) return "http://localhost";
|
|
@@ -4088,12 +4074,12 @@ function Ns(t) {
|
|
|
4088
4074
|
}
|
|
4089
4075
|
return r;
|
|
4090
4076
|
}
|
|
4091
|
-
function
|
|
4077
|
+
function Fs(t) {
|
|
4092
4078
|
if (t.example !== void 0 || t.examples && Object.keys(t.examples).length > 0) return !0;
|
|
4093
4079
|
const e = t.schema;
|
|
4094
4080
|
return !!((e == null ? void 0 : e.example) !== void 0 || e != null && e.enum && e.enum.length > 0);
|
|
4095
4081
|
}
|
|
4096
|
-
function
|
|
4082
|
+
function Cn(t) {
|
|
4097
4083
|
if (t.example !== void 0) return String(t.example);
|
|
4098
4084
|
if (t.examples) {
|
|
4099
4085
|
for (const r of Object.values(t.examples))
|
|
@@ -4103,16 +4089,16 @@ function Rn(t) {
|
|
|
4103
4089
|
const e = t.schema;
|
|
4104
4090
|
return (e == null ? void 0 : e.example) !== void 0 ? String(e.example) : e != null && e.enum && e.enum.length > 0 ? String(e.enum[0]) : `{${t.name}}`;
|
|
4105
4091
|
}
|
|
4106
|
-
function
|
|
4092
|
+
function Ms(t, e, r) {
|
|
4107
4093
|
const n = e.replace(/\{([^}]+)\}/g, (s, o) => {
|
|
4108
4094
|
const a = r.find((c) => c.in === "path" && c.name === o);
|
|
4109
4095
|
if (!a) return s;
|
|
4110
|
-
const i =
|
|
4096
|
+
const i = Cn(a);
|
|
4111
4097
|
return i === `{${o}}` ? i : encodeURIComponent(i);
|
|
4112
4098
|
});
|
|
4113
4099
|
return `${t.replace(/\/$/, "")}${n}`;
|
|
4114
4100
|
}
|
|
4115
|
-
function
|
|
4101
|
+
function Hs(t, e) {
|
|
4116
4102
|
var s;
|
|
4117
4103
|
const r = t[0];
|
|
4118
4104
|
if (!r || !e) return [];
|
|
@@ -4134,7 +4120,7 @@ function Is(t, e) {
|
|
|
4134
4120
|
}
|
|
4135
4121
|
return n;
|
|
4136
4122
|
}
|
|
4137
|
-
function
|
|
4123
|
+
function Bs(t) {
|
|
4138
4124
|
const e = t == null ? void 0 : t.content;
|
|
4139
4125
|
if (!e) return null;
|
|
4140
4126
|
const r = "application/json" in e ? "application/json" : Object.keys(e)[0];
|
|
@@ -4150,12 +4136,12 @@ function Us(t) {
|
|
|
4150
4136
|
}
|
|
4151
4137
|
return { contentType: r, schema: n.schema, authorExample: s };
|
|
4152
4138
|
}
|
|
4153
|
-
function
|
|
4154
|
-
const e =
|
|
4139
|
+
function Ws(t) {
|
|
4140
|
+
const e = Us(t.servers), r = Ms(e, t.path, t.parameters), n = Hs(t.security, t.securitySchemes), s = [], o = [], a = [];
|
|
4155
4141
|
for (const c of n)
|
|
4156
4142
|
(c.location === "header" ? s : c.location === "query" ? o : a).push({ name: c.name, value: c.value });
|
|
4157
4143
|
for (const c of t.parameters)
|
|
4158
|
-
c.in === "query" && (c.required ||
|
|
4144
|
+
c.in === "query" && (c.required || Fs(c)) && o.push({ name: c.name, value: Cn(c) });
|
|
4159
4145
|
const i = {
|
|
4160
4146
|
method: t.method.toUpperCase(),
|
|
4161
4147
|
url: r,
|
|
@@ -4166,41 +4152,41 @@ function Fs(t) {
|
|
|
4166
4152
|
};
|
|
4167
4153
|
return t.media && t.resolvedBodyValue !== void 0 && (s.push({ name: "Content-Type", value: t.media.contentType }), i.postData = { mimeType: t.media.contentType, text: JSON.stringify(t.resolvedBodyValue, null, 2) }), i;
|
|
4168
4154
|
}
|
|
4169
|
-
function
|
|
4155
|
+
function Js(t, e, r) {
|
|
4170
4156
|
try {
|
|
4171
|
-
const n = new
|
|
4157
|
+
const n = new Ls(t), [s] = n.convert(e, r);
|
|
4172
4158
|
return typeof s == "string" ? s : "";
|
|
4173
4159
|
} catch {
|
|
4174
4160
|
return "";
|
|
4175
4161
|
}
|
|
4176
4162
|
}
|
|
4177
|
-
const
|
|
4178
|
-
function
|
|
4163
|
+
const Gs = `${jn}:${Pn}`;
|
|
4164
|
+
function Ds({ method: t, path: e, parameters: r, requestBody: n, security: s, id: o }) {
|
|
4179
4165
|
var P;
|
|
4180
|
-
const { document: a, deref: i, showCodeSamples: c } =
|
|
4181
|
-
|
|
4182
|
-
if (
|
|
4166
|
+
const { document: a, deref: i, showCodeSamples: c } = Nn(), l = a, f = kn(), u = ze(() => Is(), []), [d, p] = gt(Gs), [h, m] = d.split(":"), b = In(h), $ = ze(() => Bs(n), [n]), [y, g] = gt(void 0);
|
|
4167
|
+
or(() => {
|
|
4168
|
+
if (g(void 0), !$ || $.authorExample !== void 0 || !$.schema) return;
|
|
4183
4169
|
let T = !1;
|
|
4184
|
-
return
|
|
4185
|
-
T ||
|
|
4170
|
+
return Un($.schema).then((k) => {
|
|
4171
|
+
T || g(k);
|
|
4186
4172
|
}), () => {
|
|
4187
4173
|
T = !0;
|
|
4188
4174
|
};
|
|
4189
4175
|
}, [$]);
|
|
4190
|
-
const [, S] = gt(() =>
|
|
4191
|
-
|
|
4192
|
-
S(
|
|
4176
|
+
const [, S] = gt(() => ir(b));
|
|
4177
|
+
or(() => {
|
|
4178
|
+
S(ir(b));
|
|
4193
4179
|
let T = !1;
|
|
4194
|
-
return
|
|
4180
|
+
return qn(b).then(() => {
|
|
4195
4181
|
T || S(!0);
|
|
4196
4182
|
}), () => {
|
|
4197
4183
|
T = !0;
|
|
4198
4184
|
};
|
|
4199
|
-
}, [
|
|
4185
|
+
}, [b]);
|
|
4200
4186
|
const O = ze(
|
|
4201
4187
|
() => {
|
|
4202
4188
|
var T;
|
|
4203
|
-
return
|
|
4189
|
+
return Ws({
|
|
4204
4190
|
method: t,
|
|
4205
4191
|
path: e,
|
|
4206
4192
|
servers: l.servers,
|
|
@@ -4208,29 +4194,29 @@ function Gs({ method: t, path: e, parameters: r, requestBody: n, security: s, id
|
|
|
4208
4194
|
security: s,
|
|
4209
4195
|
securitySchemes: (T = l.components) == null ? void 0 : T.securitySchemes,
|
|
4210
4196
|
media: $,
|
|
4211
|
-
resolvedBodyValue: ($ == null ? void 0 : $.authorExample) ??
|
|
4197
|
+
resolvedBodyValue: ($ == null ? void 0 : $.authorExample) ?? y
|
|
4212
4198
|
});
|
|
4213
4199
|
},
|
|
4214
|
-
[t, e, l.servers, r, s, (P = l.components) == null ? void 0 : P.securitySchemes, $,
|
|
4215
|
-
), v = ze(() => h ===
|
|
4216
|
-
return c ? /* @__PURE__ */
|
|
4217
|
-
/* @__PURE__ */
|
|
4218
|
-
/* @__PURE__ */
|
|
4219
|
-
/* @__PURE__ */
|
|
4200
|
+
[t, e, l.servers, r, s, (P = l.components) == null ? void 0 : P.securitySchemes, $, y]
|
|
4201
|
+
), v = ze(() => h === jn && m === Pn ? _n(l, t, e, i) : Js(O, h, m), [O, h, m, l, t, e, i]);
|
|
4202
|
+
return c ? /* @__PURE__ */ nr("div", { id: `endpoint-${o}-code-samples`, children: [
|
|
4203
|
+
/* @__PURE__ */ nr("div", { className: "flex items-center justify-between mb-2", children: [
|
|
4204
|
+
/* @__PURE__ */ Ne("label", { htmlFor: f, className: "text-xs font-medium text-foreground-muted uppercase tracking-wider", children: "Example Request" }),
|
|
4205
|
+
/* @__PURE__ */ Ne(
|
|
4220
4206
|
"select",
|
|
4221
4207
|
{
|
|
4222
4208
|
id: f,
|
|
4223
|
-
value:
|
|
4224
|
-
onChange: (T) =>
|
|
4209
|
+
value: d,
|
|
4210
|
+
onChange: (T) => p(T.target.value),
|
|
4225
4211
|
"aria-label": "Code sample language",
|
|
4226
4212
|
className: "text-xs font-medium rounded-md border border-border bg-surface px-2 py-1 text-foreground-secondary focus:border-secondary-500 focus:ring-secondary-500",
|
|
4227
|
-
children: u.map((T) => /* @__PURE__ */
|
|
4213
|
+
children: u.map((T) => /* @__PURE__ */ Ne("optgroup", { label: T.title, children: T.clients.map((k) => /* @__PURE__ */ Ne("option", { value: `${T.key}:${k.key}`, children: k.title }, k.key)) }, T.key))
|
|
4228
4214
|
}
|
|
4229
4215
|
)
|
|
4230
4216
|
] }),
|
|
4231
|
-
/* @__PURE__ */
|
|
4217
|
+
/* @__PURE__ */ Ne(Ln, { code: v, language: b })
|
|
4232
4218
|
] }) : null;
|
|
4233
4219
|
}
|
|
4234
4220
|
export {
|
|
4235
|
-
|
|
4221
|
+
Ds as CodeSamples
|
|
4236
4222
|
};
|