apiuikit 1.6.0 → 1.7.0

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.
Files changed (46) hide show
  1. package/README.md +18 -4
  2. package/dist/CodeSamples-COchoCMD.cjs +50 -0
  3. package/dist/{CodeSamples-C5u3VGKi.js → CodeSamples-Dm277WGX.js} +913 -895
  4. package/dist/{LogoExtension-BbOZyyI7.js → LogoExtension-Bhw9grDi.js} +1 -1
  5. package/dist/{LogoExtension-Bri3O9Zb.cjs → LogoExtension-uCSh3C3x.cjs} +1 -1
  6. package/dist/apiuikit.cjs.js +1 -1
  7. package/dist/apiuikit.css +1 -1
  8. package/dist/apiuikit.es.js +32 -26
  9. package/dist/components/ChannelAddress.d.ts +9 -1
  10. package/dist/components/QueryParameters.d.ts +21 -0
  11. package/dist/components/Tabs.d.ts +21 -2
  12. package/dist/containers/AsyncAPI/AsyncAPI.d.ts +3 -0
  13. package/dist/containers/AsyncAPI/AsyncAPIDocumentProvider.d.ts +4 -1
  14. package/dist/containers/AsyncAPI/AsyncAPIRenderer.d.ts +4 -1
  15. package/dist/containers/AsyncAPI/Layout.d.ts +3 -1
  16. package/dist/containers/OpenAPI/Layout.d.ts +3 -1
  17. package/dist/containers/OpenAPI/OpenAPI.d.ts +3 -0
  18. package/dist/containers/OpenAPI/OpenAPIDocumentProvider.d.ts +4 -1
  19. package/dist/containers/OpenAPI/OpenAPIRenderer.d.ts +4 -1
  20. package/dist/contexts/useSpec.d.ts +15 -1
  21. package/dist/hooks/useDocumentProviderValue.d.ts +5 -1
  22. package/dist/{index-DKGx9erP.js → index-ButmLtm3.js} +1 -1
  23. package/dist/{index-C65x4n-2.js → index-ByTEMZ1h.js} +1 -1
  24. package/dist/index-CF-r_0ZS.cjs +180 -0
  25. package/dist/{index-our7aldY.cjs → index-CWZRM5w7.cjs} +1 -1
  26. package/dist/{index-Cm3BxV47.js → index-D1584wmO.js} +5507 -5149
  27. package/dist/{index-Qg1sJSxE.cjs → index-D5GCtn8R.cjs} +1 -1
  28. package/dist/index.d.ts +6 -3
  29. package/dist/plugin.cjs +1 -0
  30. package/dist/plugin.d.ts +7 -0
  31. package/dist/plugin.es.js +14 -0
  32. package/dist/plugins/OperationPluginTabs.d.ts +13 -0
  33. package/dist/plugins/PluginSlot.d.ts +44 -0
  34. package/dist/plugins/registry.d.ts +7 -0
  35. package/dist/plugins/types.d.ts +84 -0
  36. package/dist/{protoToJsonSchema-CUW6qxgm.js → protoToJsonSchema-Bu1_KtXF.js} +1 -1
  37. package/dist/{protoToJsonSchema-ihLMaBYf.cjs → protoToJsonSchema-DJXdCExT.cjs} +1 -1
  38. package/dist/{protobufSchemaParser-5O-3561f.js → protobufSchemaParser--9dltEfO.js} +2 -2
  39. package/dist/{protobufSchemaParser-Br30FYfe.cjs → protobufSchemaParser-C2DRuW2U.cjs} +1 -1
  40. package/dist/public/createSectionRoot.d.ts +5 -1
  41. package/dist/public/openapiSections.d.ts +7 -1
  42. package/dist/public/sections.d.ts +7 -1
  43. package/dist/utils/anchorLayer.d.ts +35 -0
  44. package/package.json +7 -2
  45. package/dist/CodeSamples-CRObUKHj.cjs +0 -50
  46. package/dist/index-DQqbljF-.cjs +0 -180
package/README.md CHANGED
@@ -105,6 +105,7 @@ See the full usage docs for props, configuration options, and more:
105
105
  - [Composable Sections](./docs/usage/sections.md) (`AsyncAPIServers`, `AsyncAPIOperations`, `AsyncAPIMessages`, `AsyncAPISchemas`, `AsyncAPIInfo`, `AsyncAPIProvider`)
106
106
  - [Configuration](./docs/configuration/config.md) (`ConfigInterface`: theme, show flags, sidebar, sidePanel, etc.)
107
107
  - [Web Components](./docs/usage/with-webcomponents.md) (`<apiuikit-asyncapi>`, `<apiuikit-asyncapi-renderer>`, use apiuikit from any framework)
108
+ - [Plugins](./docs/usage/plugins.md) (`plugins` prop, `definePlugin`, writing and publishing your own)
108
109
  - [Markdown export](./docs/usage/markdown-export.md) (making your docs AI-readable: `config.markdown.url`, `documentToMarkdown`, `documentToLlmsTxt`)
109
110
  - [Avro schemas](./docs/usage/avro.md)
110
111
  - [Protobuf schemas](./docs/usage/protobuf.md)
@@ -136,6 +137,19 @@ Use `<apiuikit-openapi-renderer>` for raw OpenAPI documents. If the document is
136
137
 
137
138
  See [Web Components](./docs/usage/with-webcomponents.md) for CDN usage, configuration, diagnostics, and framework integration.
138
139
 
140
+ ## Plugins
141
+
142
+ Extend a rendered document with UI from a separately-installed package, without that code living in `apiuikit`'s own bundle — e.g. a "Try it" tab on OpenAPI operations for sending real requests:
143
+
144
+ ```tsx
145
+ import { OpenAPI } from "apiuikit";
146
+ import myPlugin from "@yourscope/apiuikit-plugin-whatever";
147
+
148
+ <OpenAPI openapi={doc} plugins={[myPlugin]} />
149
+ ```
150
+
151
+ See [Plugins](./docs/usage/plugins.md) for the full reference, including how to write and publish your own.
152
+
139
153
  ## Development
140
154
 
141
155
  This is a monorepo. The sections below are for contributors working on the library itself, skip these if you're just consuming the published package.
@@ -144,10 +158,10 @@ This is a monorepo. The sections below are for contributors working on the libra
144
158
 
145
159
  ```
146
160
  packages/
147
- lib/ : the component library (published as "apiuikit")
148
- web-component/ : framework-agnostic custom elements (published as "@apiuikit/web-component")
149
- playground/ : local dev app that consumes the library as a real package would
150
- x-tensions/ : catalog of x-* spec-extension renderers, bundled into lib (see its own README)
161
+ lib/ : the component library (published as "apiuikit")
162
+ web-component/ : framework-agnostic custom elements (published as "@apiuikit/web-component")
163
+ playground/ : local dev app that consumes the library as a real package would
164
+ x-tensions/ : catalog of x-* spec-extension renderers, bundled into lib (see its own README)
151
165
  ```
152
166
 
153
167
  ### Commands
@@ -0,0 +1,50 @@
1
+ "use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const ge=require("react/jsx-runtime"),ne=require("react"),D=require("./index-CF-r_0ZS.cjs");function Dr(t,e=new Set){if(e.has(t))return t;if(t.type==="object"&&t.properties&&typeof t.properties=="object"){e.add(t);try{const r={};for(const[n,s]of Object.entries(t.properties)){const o=/id$/i.test(n)&&s.type==="string"&&!s.format&&!s.examples,a=s.type==="string"&&!s.format&&!s.examples&&!s.enum;r[n]=o?{...s,format:"uuid"}:a?{...s,examples:["string"]}:Dr(s,e)}return{...t,properties:r}}finally{e.delete(t)}}return t}async function An(t){try{const{generate:e}=await Promise.resolve().then(()=>require("./index-d8kJa7YD.cjs"));return await e(Dr(t),{seed:42,useExamplesValue:!0,optionalsProbability:1})}catch{return}}const ir="",ar=`
2
+ `;var E=class{constructor({indent:t,join:e}={}){this.postProcessors=[],this.code=[],this.indentationCharacter=ir,this.lineJoin=ar,this.indentLine=(r,n=0)=>`${this.indentationCharacter.repeat(n)}${r}`,this.unshift=(r,n)=>{const s=this.indentLine(r,n);this.code.unshift(s)},this.push=(r,n)=>{const s=this.indentLine(r,n);this.code.push(s)},this.pushToLast=r=>{this.code||this.push(r);const n=`${this.code[this.code.length-1]}${r}`;this.code[this.code.length-1]=n},this.blank=()=>{this.code.push("")},this.join=()=>{const r=this.code.join(this.lineJoin);return this.postProcessors.reduce((n,s)=>s(n),r)},this.addPostProcessor=r=>{this.postProcessors=[...this.postProcessors,r]},this.indentationCharacter=t||ir,this.lineJoin=e??ar}},Rn=function(t){return Object.prototype.toString.call(t)==="[object RegExp]"},qn=function(t){var e=typeof t;return t!==null&&(e==="object"||e==="function")},Yt={};Object.defineProperty(Yt,"__esModule",{value:!0});Yt.default=t=>Object.getOwnPropertySymbols(t).filter(e=>Object.prototype.propertyIsEnumerable.call(t,e));const Nn=Rn,_n=qn,Ln=Yt.default;var In=(t,e,r)=>{const n=[];return(function s(o,a,i){a=a||{},a.indent=a.indent||" ",i=i||"";let c;a.inlineCharacterLimit===void 0?c={newLine:`
3
+ `,newLineOrSpace:`
4
+ `,pad:i,indent:i+a.indent}:c={newLine:"@@__STRINGIFY_OBJECT_NEW_LINE__@@",newLineOrSpace:"@@__STRINGIFY_OBJECT_NEW_LINE_OR_SPACE__@@",pad:"@@__STRINGIFY_OBJECT_PAD__@@",indent:"@@__STRINGIFY_OBJECT_INDENT__@@"};const l=f=>{if(a.inlineCharacterLimit===void 0)return f;const u=f.replace(new RegExp(c.newLine,"g"),"").replace(new RegExp(c.newLineOrSpace,"g")," ").replace(new RegExp(c.pad+"|"+c.indent,"g"),"");return u.length<=a.inlineCharacterLimit?u:f.replace(new RegExp(c.newLine+"|"+c.newLineOrSpace,"g"),`
5
+ `).replace(new RegExp(c.pad,"g"),i).replace(new RegExp(c.indent,"g"),i+a.indent)};if(n.indexOf(o)!==-1)return'"[Circular]"';if(o==null||typeof o=="number"||typeof o=="boolean"||typeof o=="function"||typeof o=="symbol"||Nn(o))return String(o);if(o instanceof Date)return`new Date('${o.toISOString()}')`;if(Array.isArray(o)){if(o.length===0)return"[]";n.push(o);const f="["+c.newLine+o.map((u,p)=>{const d=o.length-1===p?c.newLine:","+c.newLineOrSpace;let h=s(u,a,i+a.indent);return a.transform&&(h=a.transform(o,p,h)),c.indent+h+d}).join("")+c.pad+"]";return n.pop(),l(f)}if(_n(o)){let f=Object.keys(o).concat(Ln(o));if(a.filter&&(f=f.filter(p=>a.filter(o,p))),f.length===0)return"{}";n.push(o);const u="{"+c.newLine+f.map((p,d)=>{const h=f.length-1===d?c.newLine:","+c.newLineOrSpace,y=typeof p=="symbol",g=!y&&/^[a-z$_][a-z$_0-9]*$/i.test(p),$=y||g?p:s(p,a);let m=s(o[p],a,i+a.indent);return a.transform&&(m=a.transform(o,p,m)),c.indent+String($)+": "+m+h}).join("")+c.pad+"}";return n.pop(),l(u)}return o=String(o).replace(/[\r\n]/g,f=>f===`
6
+ `?"\\n":"\\r"),a.singleQuotes===!1?(o=o.replace(/"/g,'\\"'),`"${o}"`):(o=o.replace(/\\?'/g,"\\'"),`'${o}'`)})(t,e,r)};const ae=D.getDefaultExportFromCjs(In),G=(t,e)=>Object.keys(t).find(r=>r.toLowerCase()===e.toLowerCase()),le=(t,e)=>{const r=G(t,e);if(r)return t[r]},nt=(t,e)=>!!G(t,e),Un=t=>["application/json","application/x-json","text/json","text/x-json","+json"].some(e=>t.indexOf(e)>-1),Fn={info:{key:"agent",title:"Agent",default:"prompt"},clientsById:{prompt:{info:{key:"prompt",title:"Agent Prompt",link:"https://github.com/readmeio/httpsnippet",description:"A copy-and-pastable prompt, for any AI agent, describing how to make the request.",extname:".txt"},convert:({method:t,fullUrl:e,allHeaders:r,postData:n},s)=>{const o={indent:" ",join:`
7
+ `,...s},{blank:a,push:i,join:c}=new E(o);i("Write code that makes the HTTP request described below. Use my preferred programming language and HTTP client library — if I haven't told you what those are, ask me before writing any code."),a(),i(`Method: ${t}`),i(`URL: ${e}`);const l=Object.keys(r);return l.length&&(a(),i("Headers:"),l.forEach(f=>{i(`${f}: ${r[f]}`,1)})),n.text&&(a(),i(`Body (${n.mimeType}):`),i(n.text)),a(),i("The request the code makes must match the method, URL, headers, and body exactly as described above."),o.markdownURL&&(a(),i(`Check ${o.markdownURL} for more info.`)),c()}}}};function Be(t,e={}){const{delimiter:r='"',escapeChar:n="\\",escapeNewlines:s=!0}=e;return[...t.toString()].map(o=>o==="\b"?`${n}b`:o===" "?`${n}t`:o===`
8
+ `?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("")}const Re=t=>Be(t,{delimiter:"'"}),I=t=>Be(t,{delimiter:'"'}),Mn={info:{key:"c",title:"C",default:"libcurl",cli:"c"},clientsById:{libcurl:{info:{key:"libcurl",title:"Libcurl",link:"http://curl.haxx.se/libcurl",description:"Simple REST and HTTP API Client for C",extname:".c"},convert:({method:t,fullUrl:e,headersObj:r,allHeaders:n,postData:s})=>{const{push:o,blank:a,join:i}=new E;o("CURL *hnd = curl_easy_init();"),a(),o(`curl_easy_setopt(hnd, CURLOPT_CUSTOMREQUEST, "${t.toUpperCase()}");`),o("curl_easy_setopt(hnd, CURLOPT_WRITEDATA, stdout);"),o(`curl_easy_setopt(hnd, CURLOPT_URL, "${e}");`);const c=Object.keys(r);return c.length&&(a(),o("struct curl_slist *headers = NULL;"),c.forEach(l=>{o(`headers = curl_slist_append(headers, "${l}: ${I(r[l])}");`)}),o("curl_easy_setopt(hnd, CURLOPT_HTTPHEADER, headers);")),n.cookie&&(a(),o(`curl_easy_setopt(hnd, CURLOPT_COOKIE, "${n.cookie}");`)),s.text&&(a(),o(`curl_easy_setopt(hnd, CURLOPT_POSTFIELDS, ${JSON.stringify(s.text)});`)),a(),o("CURLcode ret = curl_easy_perform(hnd);"),i()}}}};var sr=class{constructor(t){this.name="",this.toString=()=>`:${this.name}`,this.name=t}},Hn=class{constructor(t){this.path="",this.toString=()=>`(clojure.java.io/file "${this.path}")`,this.path=t}};const Qr=t=>t===void 0?null:t===null?"null":t.constructor.name.toLowerCase(),Yr=t=>t===void 0?!0:Qr(t)==="object"?Object.keys(t).length===0:!1,cr=t=>(Object.keys(t).filter(e=>Yr(t[e])).forEach(e=>{delete t[e]}),t),Ye=(t,e)=>{const r=" ".repeat(t);return e.replace(/\n/g,`
9
+ ${r}`)},Ft=t=>{switch(Qr(t)){case"string":return`"${t.replace(/"/g,'\\"')}"`;case"file":return t.toString();case"keyword":return t.toString();case"null":return"nil";case"regexp":return`#"${t.source}"`;case"object":{const e=Object.keys(t).reduce((r,n)=>`${r}:${n} ${Ye(n.length+2,Ft(t[n]))}
10
+ `,"").trim();return`{${Ye(1,e)}}`}case"array":{const e=t.reduce((r,n)=>`${r} ${Ft(n)}`,"").trim();return`[${Ye(1,e)}]`}default:return t.toString()}},Bn={info:{key:"clojure",title:"Clojure",default:"clj_http"},clientsById:{clj_http:{info:{key:"clj_http",title:"clj-http",link:"https://github.com/dakrone/clj-http",description:"An idiomatic clojure http client wrapping the apache client.",extname:".clj"},convert:({queryObj:t,method:e,postData:r,url:n,allHeaders:s},o)=>{const{push:a,join:i}=new E({indent:o==null?void 0:o.indent}),c=["get","post","put","delete","patch","head","options"];if(e=e.toLowerCase(),!c.includes(e))return a("Method not supported"),i();const l={headers:s,"query-params":t};switch(r.mimeType){case"application/json":{l["content-type"]=new sr("json"),l["form-params"]=r.jsonObj;const f=G(l.headers,"content-type");f&&delete l.headers[f]}break;case"application/x-www-form-urlencoded":{l["form-params"]=r.paramsObj;const f=G(l.headers,"content-type");f&&delete l.headers[f]}break;case"text/plain":{l.body=r.text;const f=G(l.headers,"content-type");f&&delete l.headers[f]}break;case"multipart/form-data":if(r.params){l.multipart=r.params.map(u=>u.fileName&&!u.value?{name:u.name,content:new Hn(u.fileName)}:{name:u.name,content:u.value});const f=G(l.headers,"content-type");f&&delete l.headers[f]}break}switch(le(l.headers,"accept")){case"application/json":{l.accept=new sr("json");const f=G(l.headers,"accept");f&&delete l.headers[f]}break}if(a(`(require '[clj-http.client :as client])
11
+ `),Yr(cr(l)))a(`(client/${e} "${n}")`);else{const f=11+e.length+n.length,u=Ye(f,Ft(cr(l)));a(`(client/${e} "${n}" ${u})`)}return i()}}}},Wn={info:{key:"crystal",title:"Crystal",default:"native"},clientsById:{native:{info:{key:"native",title:"http::client",link:"https://crystal-lang.org/api/master/HTTP/Client.html",description:"Crystal HTTP client",extname:".cr"},convert:({method:t,fullUrl:e,postData:r,allHeaders:n},s={})=>{const{insecureSkipVerify:o=!1}=s,{push:a,blank:i,join:c}=new E;a('require "http/client"'),i(),a(`url = "${e}"`);const l=Object.keys(n);l.length&&(a("headers = HTTP::Headers{"),l.forEach(y=>{a(` "${y}" => "${I(n[y])}"`)}),a("}")),r.text&&a(`reqBody = ${JSON.stringify(r.text)}`),i();const f=t.toUpperCase(),u=["GET","POST","HEAD","DELETE","PATCH","PUT","OPTIONS"],p=l.length?", headers: headers":"",d=r.text?", body: reqBody":"",h=o?", tls: OpenSSL::SSL::Context::Client.insecure":"";return u.includes(f)?a(`response = HTTP::Client.${f.toLowerCase()} url${p}${d}${h}`):a(`response = HTTP::Client.exec "${f}", url${p}${d}${h}`),a("puts response.body"),c()}}}},Gn=t=>{let e=le(t,"accept-encoding");if(!e)return[];const r={gzip:"DecompressionMethods.GZip",deflate:"DecompressionMethods.Deflate"},n=[];return typeof e=="string"&&(e=[e]),e.forEach(s=>{s.split(",").forEach(o=>{const a=/\s*([^;\s]+)/.exec(o);if(a){const i=r[a[1]];i&&n.push(i)}})}),n},Jn={info:{key:"httpclient",title:"HttpClient",link:"https://docs.microsoft.com/en-us/dotnet/api/system.net.http.httpclient",description:".NET Standard HTTP Client",extname:".cs"},convert:({allHeaders:t,postData:e,method:r,fullUrl:n},s)=>{var p,d;const{push:o,join:a}=new E({indent:{indent:" ",...s}.indent});o("using System.Net.Http.Headers;");let i="";const c=!!t.cookie,l=Gn(t);(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("{");const f=["GET","POST","PUT","DELETE","PATCH","HEAD","OPTIONS","TRACE"];r=r.toUpperCase(),r&&f.includes(r)?r=`HttpMethod.${r[0]}${r.substring(1).toLowerCase()}`:r=`new HttpMethod("${r}")`,o(`Method = ${r},`,1),o(`RequestUri = new Uri("${n}"),`,1);const u=Object.keys(t).filter(h=>{switch(h.toLowerCase()){case"content-type":case"content-length":case"accept-encoding":return!1;default:return!0}});if(u.length&&(o("Headers =",1),o("{",1),u.forEach(h=>{o(`{ "${h}", "${I(t[h])}" },`,2)}),o("},",1)),e.text){const h=e.mimeType;switch(h){case"application/x-www-form-urlencoded":o("Content = new FormUrlEncodedContent(new Dictionary<string, string>",1),o("{",1),(p=e.params)==null||p.forEach(y=>{o(`{ "${y.name}", "${y.value}" },`,2)}),o("}),",1);break;case"multipart/form-data":o("Content = new MultipartFormDataContent",1),o("{",1),(d=e.params)==null||d.forEach(y=>{o(`new StringContent(${JSON.stringify(y.value||"")})`,2),o("{",2),o("Headers =",3),o("{",3),y.contentType&&o(`ContentType = new MediaTypeHeaderValue("${y.contentType}"),`,4),o('ContentDisposition = new ContentDispositionHeaderValue("form-data")',4),o("{",4),o(`Name = "${y.name}",`,5),y.fileName&&o(`FileName = "${y.fileName}",`,5),o("}",4),o("}",3),o("},",2)}),o("},",1);break;default:o(`Content = new StringContent(${JSON.stringify(e.text||"")})`,1),o("{",1),o("Headers =",2),o("{",2),o(`ContentType = new MediaTypeHeaderValue("${h}")`,3),o("}",2),o("}",1);break}}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()}};function zn(t){return t[0].toUpperCase()+t.slice(1).toLowerCase()}const Vn={info:{key:"csharp",title:"C#",default:"restsharp",cli:"dotnet"},clientsById:{httpclient:Jn,restsharp:{info:{key:"restsharp",title:"RestSharp",link:"http://restsharp.org/",description:"Simple REST and HTTP API Client for .NET",extname:".cs",installation:()=>"dotnet add package RestSharp"},convert:({method:t,fullUrl:e,headersObj:r,cookies:n,postData:s,uriObj:o})=>{const{push:a,join:i}=new E;if(!["GET","POST","PUT","DELETE","PATCH","HEAD","OPTIONS"].includes(t.toUpperCase()))return"Method not supported";a(`using RestSharp;
12
+
13
+ `),a(`var options = new RestClientOptions("${e}");`),a("var client = new RestClient(options);"),a('var request = new RestRequest("");');const c=s.mimeType&&s.mimeType==="multipart/form-data";switch(c&&a("request.AlwaysMultipartFormData = true;"),Object.keys(r).forEach(l=>{if(s.mimeType&&l.toLowerCase()==="content-type"&&s.text){c&&s.boundary&&a(`request.FormBoundary = "${s.boundary}";`);return}a(`request.AddHeader("${l}", "${I(r[l])}");`)}),n.forEach(({name:l,value:f})=>{a(`request.AddCookie("${l}", "${I(f)}", "${o.pathname}", "${o.host}");`)}),s.mimeType){case"multipart/form-data":if(!s.params)break;s.params.forEach(l=>{l.fileName?a(`request.AddFile("${l.name}", "${l.fileName}");`):a(`request.AddParameter("${l.name}", "${l.value}");`)});break;case"application/x-www-form-urlencoded":if(!s.params)break;s.params.forEach(l=>{a(`request.AddParameter("${l.name}", "${l.value}");`)});break;case"application/json":if(!s.text)break;a(`request.AddJsonBody(${JSON.stringify(s.text)}, false);`);break;default:if(!s.text)break;a(`request.AddStringBody("${s.text}", "${s.mimeType}");`)}return a(`var response = await client.${zn(t)}Async(request);
14
+ `),a(`Console.WriteLine("{0}", response.Content);
15
+ `),i()}}}},Kn={info:{key:"go",title:"Go",default:"native",cli:"go"},clientsById:{native:{info:{key:"native",title:"NewRequest",link:"http://golang.org/pkg/net/http/#NewRequest",description:"Golang HTTP client request",extname:".go"},convert:({postData:t,method:e,allHeaders:r,fullUrl:n},s={})=>{const{blank:o,push:a,join:i}=new E({indent:" "}),{showBoilerplate:c=!0,checkErrors:l=!1,printBody:f=!0,timeout:u=-1,insecureSkipVerify:p=!1}=s,d=l?"err":"_",h=c?1:0,y=()=>{l&&(a("if err != nil {",h),a("panic(err)",h+1),a("}",h))};c&&(a("package main"),o(),a("import ("),a('"fmt"',h),u>0&&a('"time"',h),p&&a('"crypto/tls"',h),t.text&&a('"strings"',h),a('"net/http"',h),f&&a('"io"',h),a(")"),o(),a("func main() {"),o()),p&&(a("insecureTransport := http.DefaultTransport.(*http.Transport).Clone()",h),a("insecureTransport.TLSClientConfig = &tls.Config{InsecureSkipVerify: true}",h));const g=u>0,$=g||p,m=$?"client":"http.DefaultClient";return $&&(a("client := http.Client{",h),g&&a(`Timeout: time.Duration(${u} * time.Second),`,h+1),p&&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, ${d} := http.NewRequest("${e}", url, payload)`,h),o()):(a(`req, ${d} := http.NewRequest("${e}", url, nil)`,h),o()),y(),Object.keys(r).length&&(Object.keys(r).forEach(b=>{a(`req.Header.Add("${b}", "${I(r[b])}")`,h)}),o()),a(`res, ${d} := ${m}.Do(req)`,h),y(),f&&(o(),a("defer res.Body.Close()",h),a(`body, ${d} := io.ReadAll(res.Body)`,h),y()),o(),f&&a("fmt.Println(string(body))",h),c&&(o(),a("}")),i()}}}},lr=`\r
16
+ `,Dn={info:{key:"http",title:"HTTP",default:"http1.1"},clientsById:{"http1.1":{info:{key:"http1.1",title:"HTTP/1.1",link:"https://tools.ietf.org/html/rfc7230",description:"HTTP/1.1 request string in accordance with RFC 7230",extname:null},convert:({method:t,fullUrl:e,uriObj:r,httpVersion:n,allHeaders:s,postData:o},a)=>{const i={absoluteURI:!1,autoContentLength:!0,autoHost:!0,...a},{blank:c,push:l,join:f}=new E({indent:"",join:lr});l(`${t} ${i.absoluteURI?e:r.path} ${n}`);const u=Object.keys(s);u.forEach(h=>{const y=h.toLowerCase().replace(/(^|-)(\w)/g,g=>g.toUpperCase());l(`${y}: ${s[h]}`)}),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();const p=f(),d=o.text||"";return`${p}${lr}${d}`}}}},Qn={info:{key:"java",title:"Java",default:"unirest"},clientsById:{asynchttp:{info:{key:"asynchttp",title:"AsyncHttp",link:"https://github.com/AsyncHttpClient/async-http-client",description:"Asynchronous Http and WebSocket Client library for Java",extname:".java"},convert:({method:t,allHeaders:e,postData:r,fullUrl:n},s)=>{const{blank:o,push:a,join:i}=new E({indent:{indent:" ",...s}.indent});return a("AsyncHttpClient client = new DefaultAsyncHttpClient();"),a(`client.prepare("${t.toUpperCase()}", "${n}")`),Object.keys(e).forEach(c=>{a(`.setHeader("${c}", "${I(e[c])}")`,1)}),r.text&&a(`.setBody(${JSON.stringify(r.text)})`,1),a(".execute()",1),a(".toCompletableFuture()",1),a(".thenAccept(System.out::println)",1),a(".join();",1),o(),a("client.close();"),i()}},nethttp:{info:{key:"nethttp",title:"java.net.http",link:"https://openjdk.java.net/groups/net/httpclient/intro.html",description:"Java Standardized HTTP Client API",extname:".java"},convert:({allHeaders:t,fullUrl:e,method:r,postData:n},s)=>{const{push:o,join:a}=new E({indent:{indent:" ",...s}.indent});return o("HttpRequest request = HttpRequest.newBuilder()"),o(`.uri(URI.create("${e}"))`,2),Object.keys(t).forEach(i=>{o(`.header("${i}", "${I(t[i])}")`,2)}),n.text?o(`.method("${r.toUpperCase()}", HttpRequest.BodyPublishers.ofString(${JSON.stringify(n.text)}))`,2):o(`.method("${r.toUpperCase()}", HttpRequest.BodyPublishers.noBody())`,2),o(".build();",2),o("HttpResponse<String> response = HttpClient.newHttpClient().send(request, HttpResponse.BodyHandlers.ofString());"),o("System.out.println(response.body());"),a()}},okhttp:{info:{key:"okhttp",title:"OkHttp",link:"http://square.github.io/okhttp/",description:"An HTTP Request Client Library",extname:".java"},convert:({postData:t,method:e,fullUrl:r,allHeaders:n},s)=>{const{push:o,blank:a,join:i}=new E({indent:{indent:" ",...s}.indent}),c=["GET","POST","PUT","DELETE","PATCH","HEAD"],l=["POST","PUT","DELETE","PATCH"];return o("OkHttpClient client = new OkHttpClient();"),a(),t.text&&(t.boundary?o(`MediaType mediaType = MediaType.parse("${t.mimeType}; boundary=${t.boundary}");`):o(`MediaType mediaType = MediaType.parse("${t.mimeType}");`),o(`RequestBody body = RequestBody.create(mediaType, ${JSON.stringify(t.text)});`)),o("Request request = new Request.Builder()"),o(`.url("${r}")`,1),c.includes(e.toUpperCase())?l.includes(e.toUpperCase())?t.text?o(`.${e.toLowerCase()}(body)`,1):o(`.${e.toLowerCase()}(null)`,1):o(`.${e.toLowerCase()}()`,1):t.text?o(`.method("${e.toUpperCase()}", body)`,1):o(`.method("${e.toUpperCase()}", null)`,1),Object.keys(n).forEach(f=>{o(`.addHeader("${f}", "${I(n[f])}")`,1)}),o(".build();",1),a(),o("Response response = client.newCall(request).execute();"),i()}},unirest:{info:{key:"unirest",title:"Unirest",link:"http://unirest.io/java.html",description:"Lightweight HTTP Request Client Library",extname:".java"},convert:({method:t,allHeaders:e,postData:r,fullUrl:n},s)=>{const{join:o,push:a}=new E({indent:{indent:" ",...s}.indent});return["GET","POST","PUT","DELETE","PATCH","HEAD","OPTIONS"].includes(t.toUpperCase())?a(`HttpResponse<String> response = Unirest.${t.toLowerCase()}("${n}")`):a(`HttpResponse<String> response = Unirest.customMethod("${t.toUpperCase()}","${n}")`),Object.keys(e).forEach(i=>{a(`.header("${i}", "${I(e[i])}")`,1)}),r.text&&a(`.body(${JSON.stringify(r.text)})`,1),a(".asString();",1),o()}}}},Yn={info:{key:"javascript",title:"JavaScript",default:"fetch"},clientsById:{xhr:{info:{key:"xhr",title:"XMLHttpRequest",link:"https://developer.mozilla.org/en-US/docs/Web/API/XMLHttpRequest",description:"W3C Standard API that provides scripted client functionality",extname:".js"},convert:({postData:t,allHeaders:e,method:r,fullUrl:n},s)=>{var l;const o={indent:" ",cors:!0,...s},{blank:a,push:i,join:c}=new E({indent:o.indent});switch(t.mimeType){case"application/json":i(`const data = JSON.stringify(${ae(t.jsonObj,{indent:o.indent})});`),a();break;case"multipart/form-data":if(!t.params)break;if(i("const data = new FormData();"),t.params.forEach(f=>{i(`data.append('${f.name}', '${f.value||f.fileName||""}');`)}),nt(e,"content-type")&&(l=le(e,"content-type"))!=null&&l.includes("boundary")){const f=G(e,"content-type");f&&delete e[f]}a();break;default:i(`const data = ${t.text?`'${t.text}'`:"null"};`),a()}return i("const xhr = new XMLHttpRequest();"),o.cors&&i("xhr.withCredentials = true;"),a(),i("xhr.addEventListener('readystatechange', function () {"),i("if (this.readyState === this.DONE) {",1),i("console.log(this.responseText);",2),i("}",1),i("});"),a(),i(`xhr.open('${r}', '${n}');`),Object.keys(e).forEach(f=>{i(`xhr.setRequestHeader('${f}', '${Re(e[f])}');`)}),a(),i("xhr.send(data);"),c()}},axios:{info:{key:"axios",title:"Axios",link:"https://github.com/axios/axios",description:"Promise based HTTP client for the browser and node.js",extname:".js",installation:()=>"npm install axios --save"},convert:({allHeaders:t,method:e,url:r,queryObj:n,postData:s},o)=>{const{blank:a,push:i,join:c,addPostProcessor:l}=new E({indent:{indent:" ",...o}.indent});i("import axios from 'axios';"),a();const f={method:e,url:r};switch(Object.keys(n).length&&(f.params=n),Object.keys(t).length&&(f.headers=t),s.mimeType){case"application/x-www-form-urlencoded":s.params&&(i("const encodedParams = new URLSearchParams();"),s.params.forEach(u=>{i(`encodedParams.set('${u.name}', '${u.value}');`)}),a(),f.data="encodedParams,",l(u=>u.replace(/'encodedParams,'/,"encodedParams,")));break;case"application/json":s.jsonObj&&(f.data=s.jsonObj);break;case"multipart/form-data":if(!s.params)break;i("const form = new FormData();"),s.params.forEach(u=>{i(`form.append('${u.name}', '${u.value||u.fileName||""}');`)}),a(),f.data="[form]";break;default:s.text&&(f.data=s.text)}return i(`const options = ${ae(f,{indent:" ",inlineCharacterLimit:80}).replace('"[form]"',"form")};`),a(),i("try {"),i("const { data } = await axios.request(options);",1),i("console.log(data);",1),i("} catch (error) {"),i("console.error(error);",1),i("}"),c()}},fetch:{info:{key:"fetch",title:"fetch",link:"https://developer.mozilla.org/en-US/docs/Web/API/Fetch_API/Using_Fetch",description:"Perform asynchronous HTTP requests with the Fetch API",extname:".js"},convert:({method:t,allHeaders:e,postData:r,fullUrl:n},s)=>{const o={indent:" ",credentials:null,...s},{blank:a,join:i,push:c}=new E({indent:o.indent}),l={method:t};switch(Object.keys(e).length&&(l.headers=e),o.credentials!==null&&(l.credentials=o.credentials),r.mimeType){case"application/x-www-form-urlencoded":l.body=r.paramsObj?r.paramsObj:r.text;break;case"application/json":r.jsonObj&&(l.body=r.jsonObj);break;case"multipart/form-data":{if(!r.params)break;const f=G(e,"content-type");f&&delete e[f],c("const form = new FormData();"),r.params.forEach(u=>{c(`form.append('${u.name}', '${u.value||u.fileName||""}');`)}),a();break}default:r.text&&(l.body=r.text)}return l.headers&&!Object.keys(l.headers).length&&delete l.headers,c(`const options = ${ae(l,{indent:o.indent,inlineCharacterLimit:80,transform:(f,u,p)=>{if(u==="body"){if(r.mimeType==="application/x-www-form-urlencoded")return`new URLSearchParams(${p})`;if(r.mimeType==="application/json")return`JSON.stringify(${p})`}return p}})};`),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()}},jquery:{info:{key:"jquery",title:"jQuery",link:"http://api.jquery.com/jquery.ajax/",description:"Perform an asynchronous HTTP (Ajax) requests with jQuery",extname:".js"},convert:({fullUrl:t,method:e,allHeaders:r,postData:n},s)=>{var f;const o={indent:" ",...s},{blank:a,push:i,join:c}=new E({indent:o.indent}),l={async:!0,crossDomain:!0,url:t,method:e,headers:r};switch(n.mimeType){case"application/x-www-form-urlencoded":l.data=n.paramsObj?n.paramsObj:n.text;break;case"application/json":l.processData=!1,l.data=n.text;break;case"multipart/form-data":if(!n.params)break;if(i("const form = new FormData();"),n.params.forEach(u=>{i(`form.append('${u.name}', '${u.value||u.fileName||""}');`)}),l.processData=!1,l.contentType=!1,l.mimeType="multipart/form-data",l.data="[form]",nt(r,"content-type")&&(f=le(r,"content-type"))!=null&&f.includes("boundary")){const u=G(r,"content-type");u&&delete l.headers[u]}a();break;default:n.text&&(l.data=n.text)}return i(`const settings = ${ae(l,{indent:o.indent}).replace("'[form]'","form")};`),a(),i("$.ajax(settings).done(res => {"),i("console.log(res);",1),i("});"),c()}}}},Xn={info:{key:"json",title:"JSON",default:"native"},clientsById:{native:{info:{key:"native",title:"Native JSON",link:"https://www.json.org/json-en.html",description:"A JSON represetation of any HAR payload.",extname:".json"},convert:({postData:t},e)=>{const r={indent:" ",...e};let n="";switch(t.mimeType){case"application/x-www-form-urlencoded":n=t.paramsObj?t.paramsObj:t.text;break;case"application/json":t.jsonObj&&(n=t.jsonObj);break;case"multipart/form-data":{if(!t.params)break;const s={};t.params.forEach(o=>{s[o.name]=o.value}),n=s;break}default:t.text&&(n=t.text)}return typeof n>"u"||n===""?"No JSON body":JSON.stringify(n,null,r.indent)}}}},Zn={info:{key:"kotlin",title:"Kotlin",default:"okhttp"},clientsById:{okhttp:{info:{key:"okhttp",title:"OkHttp",link:"http://square.github.io/okhttp/",description:"An HTTP Request Client Library",extname:".kt"},convert:({postData:t,fullUrl:e,method:r,allHeaders:n},s)=>{const{blank:o,join:a,push:i}=new E({indent:{indent:" ",...s}.indent}),c=["GET","POST","PUT","DELETE","PATCH","HEAD"],l=["POST","PUT","DELETE","PATCH"];return i("val client = OkHttpClient()"),o(),t.text&&(t.boundary?i(`val mediaType = MediaType.parse("${t.mimeType}; boundary=${t.boundary}")`):i(`val mediaType = MediaType.parse("${t.mimeType}")`),i(`val body = RequestBody.create(mediaType, ${JSON.stringify(t.text)})`)),i("val request = Request.Builder()"),i(`.url("${e}")`,1),c.includes(r.toUpperCase())?l.includes(r.toUpperCase())?t.text?i(`.${r.toLowerCase()}(body)`,1):i(`.${r.toLowerCase()}(null)`,1):i(`.${r.toLowerCase()}()`,1):t.text?i(`.method("${r.toUpperCase()}", body)`,1):i(`.method("${r.toUpperCase()}", null)`,1),Object.keys(n).forEach(f=>{i(`.addHeader("${f}", "${I(n[f])}")`,1)}),i(".build()",1),o(),i("val response = client.newCall(request).execute()"),a()}}}},eo={info:{key:"node",title:"Node.js",default:"fetch",cli:"node %s"},clientsById:{native:{info:{key:"native",title:"HTTP",link:"http://nodejs.org/api/http.html#http_http_request_options_callback",description:"Node.js native HTTP interface",extname:".cjs"},convert:({uriObj:t,method:e,allHeaders:r,postData:n},s={})=>{var u;const{indent:o=" "}=s,{blank:a,join:i,push:c,unshift:l}=new E({indent:o}),f={method:e,hostname:t.hostname,port:t.port,path:t.path,headers:r};switch(c(`const http = require('${(u=t.protocol)==null?void 0:u.replace(":","")}');`),a(),c(`const options = ${ae(f,{indent:o})};`),a(),c("const req = http.request(options, function (res) {"),c("const chunks = [];",1),a(),c("res.on('data', function (chunk) {",1),c("chunks.push(chunk);",2),c("});",1),a(),c("res.on('end', function () {",1),c("const body = Buffer.concat(chunks);",2),c("console.log(body.toString());",2),c("});",1),c("});"),a(),n.mimeType){case"application/x-www-form-urlencoded":n.paramsObj&&(l("const qs = require('querystring');"),c(`req.write(qs.stringify(${ae(n.paramsObj,{indent:" ",inlineCharacterLimit:80})}));`));break;case"application/json":n.jsonObj&&c(`req.write(JSON.stringify(${ae(n.jsonObj,{indent:" ",inlineCharacterLimit:80})}));`);break;default:n.text&&c(`req.write(${ae(n.text,{indent:o})});`)}return c("req.end();"),i()}},axios:{info:{key:"axios",title:"Axios",link:"https://github.com/axios/axios",description:"Promise based HTTP client for the browser and node.js",extname:".js",installation:()=>"npm install axios --save"},convert:({method:t,fullUrl:e,allHeaders:r,postData:n},s)=>{const{blank:o,join:a,push:i,addPostProcessor:c}=new E({indent:{indent:" ",...s}.indent});i("import axios from 'axios';"),o();const l={method:t,url:e};switch(Object.keys(r).length&&(l.headers=r),n.mimeType){case"application/x-www-form-urlencoded":n.params&&(i("const encodedParams = new URLSearchParams();"),n.params.forEach(f=>{i(`encodedParams.set('${f.name}', '${f.value}');`)}),o(),l.data="encodedParams,",c(f=>f.replace(/'encodedParams,'/,"encodedParams,")));break;case"application/json":n.jsonObj&&(l.data=n.jsonObj);break;default:n.text&&(l.data=n.text)}return i(`const options = ${ae(l,{indent:" ",inlineCharacterLimit:80})};`),o(),i("axios"),i(".request(options)",1),i(".then(res => console.log(res.data))",1),i(".catch(err => console.error(err));",1),a()}},fetch:{info:{key:"fetch",title:"fetch",link:"https://nodejs.org/docs/latest/api/globals.html#fetch",description:"Perform asynchronous HTTP requests with the Fetch API",extname:".js"},convert:({method:t,fullUrl:e,postData:r,headersObj:n,cookies:s},o)=>{var h;const a={indent:" ",...o};let i=!1;const{blank:c,push:l,join:f,unshift:u}=new E({indent:a.indent}),p=e,d={method:t};switch(Object.keys(n).length&&(d.headers=n),r.mimeType){case"application/x-www-form-urlencoded":l("const encodedParams = new URLSearchParams();"),(h=r.params)==null||h.forEach(y=>{l(`encodedParams.set('${y.name}', '${y.value}');`)}),d.body="encodedParams",c();break;case"application/json":r.jsonObj&&(d.body=r.jsonObj);break;case"multipart/form-data":{if(!r.params)break;const y=G(n,"content-type");y&&delete n[y],l("const formData = new FormData();"),r.params.forEach(g=>{if(!g.fileName&&!g.contentType){l(`formData.append('${g.name}', '${g.value}');`);return}g.fileName&&(i=!0,l(`formData.append('${g.name}', await new Response(fs.createReadStream('${g.fileName}')).blob());`))}),d.body="formData",c();break}default:r.text&&(d.body=r.text)}if(s.length){const y=s.map(({name:g,value:$})=>`${encodeURIComponent(g)}=${encodeURIComponent($)}`).join("; ");d.headers||(d.headers={}),d.headers.cookie=y}return l(`const url = '${p}';`),d.headers&&!Object.keys(d.headers).length&&delete d.headers,l(`const options = ${ae(d,{indent:" ",inlineCharacterLimit:80,transform:(y,g,$)=>g==="body"&&r.mimeType==="application/json"?`JSON.stringify(${$})`:$})};`),c(),i&&u(`import fs from 'fs';
17
+ `),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")}}}},gt=(t,e,r,n)=>{const s=`${t} *${e} = `;return`${s}${Mt(r,n?s.length:void 0)};`},Mt=(t,e)=>{const r=e===void 0?", ":`,
18
+ ${" ".repeat(e)}`;switch(Object.prototype.toString.call(t)){case"[object Number]":return`@${t}`;case"[object Array]":return`@[ ${t.map(n=>Mt(n)).join(r)} ]`;case"[object Object]":{const n=[];return Object.keys(t).forEach(s=>{n.push(`@"${s}": ${Mt(t[s])}`)}),`@{ ${n.join(r)} }`}case"[object Boolean]":return t?"@YES":"@NO";default:return t==null?"":`@"${t.toString().replace(/"/g,'\\"')}"`}},to={info:{key:"objc",title:"Objective-C",default:"nsurlsession"},clientsById:{nsurlsession:{info:{key:"nsurlsession",title:"NSURLSession",link:"https://developer.apple.com/library/mac/documentation/Foundation/Reference/NSURLSession_class/index.html",description:"Foundation's NSURLSession request",extname:".m"},convert:({allHeaders:t,postData:e,method:r,fullUrl:n},s)=>{var f;const o={indent:" ",pretty:!0,timeout:10,...s},{push:a,join:i,blank:c}=new E({indent:o.indent}),l={hasHeaders:!1,hasBody:!1};if(a("#import <Foundation/Foundation.h>"),Object.keys(t).length&&(l.hasHeaders=!0,c(),a(gt("NSDictionary","headers",t,o.pretty))),e.text||e.jsonObj||e.params)switch(l.hasBody=!0,e.mimeType){case"application/x-www-form-urlencoded":if((f=e.params)!=null&&f.length){c();const[u,...p]=e.params;a(`NSMutableData *postData = [[NSMutableData alloc] initWithData:[@"${u.name}=${u.value}" dataUsingEncoding:NSUTF8StringEncoding]];`),p.forEach(({name:d,value:h})=>{a(`[postData appendData:[@"&${d}=${h}" dataUsingEncoding:NSUTF8StringEncoding]];`)})}else l.hasBody=!1;break;case"application/json":e.jsonObj&&(a(gt("NSDictionary","parameters",e.jsonObj,o.pretty)),c(),a("NSData *postData = [NSJSONSerialization dataWithJSONObject:parameters options:0 error:nil];"));break;case"multipart/form-data":a(gt("NSArray","parameters",e.params||[],o.pretty)),a(`NSString *boundary = @"${e.boundary}";`),c(),a("NSError *error;"),a("NSMutableString *body = [NSMutableString string];"),a("for (NSDictionary *param in parameters) {"),a('[body appendFormat:@"--%@\\r\\n", boundary];',1),a('if (param[@"fileName"]) {',1),a('[body appendFormat:@"Content-Disposition:form-data; name=\\"%@\\"; filename=\\"%@\\"\\r\\n", param[@"name"], param[@"fileName"]];',2),a('[body appendFormat:@"Content-Type: %@\\r\\n\\r\\n", param[@"contentType"]];',2),a('[body appendFormat:@"%@", [NSString stringWithContentsOfFile:param[@"fileName"] encoding:NSUTF8StringEncoding error:&error]];',2),a("if (error) {",2),a('NSLog(@"%@", error);',3),a("}",2),a("} else {",1),a('[body appendFormat:@"Content-Disposition:form-data; name=\\"%@\\"\\r\\n\\r\\n", param[@"name"]];',2),a('[body appendFormat:@"%@", param[@"value"]];',2),a("}",1),a("}"),a('[body appendFormat:@"\\r\\n--%@--\\r\\n", boundary];'),a("NSData *postData = [body dataUsingEncoding:NSUTF8StringEncoding];");break;default:c(),a(`NSData *postData = [[NSData alloc] initWithData:[@"${e.text}" dataUsingEncoding:NSUTF8StringEncoding]];`)}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()}}}},ro={info:{key:"ocaml",title:"OCaml",default:"cohttp"},clientsById:{cohttp:{info:{key:"cohttp",title:"CoHTTP",link:"https://github.com/mirage/ocaml-cohttp",description:"Cohttp is a very lightweight HTTP server using Lwt or Async for OCaml",extname:".ml",installation:()=>"opam install cohttp-lwt-unix cohttp-async"},convert:({fullUrl:t,allHeaders:e,postData:r,method:n},s)=>{const o={indent:" ",...s},a=["get","post","head","delete","patch","put","options"],{push:i,blank:c,join:l}=new E({indent:o.indent});i("open Cohttp_lwt_unix"),i("open Cohttp"),i("open Lwt"),c(),i(`let uri = Uri.of_string "${t}" in`);const f=Object.keys(e);return f.length===1?i(`let headers = Header.add (Header.init ()) "${f[0]}" "${I(e[f[0]])}" in`):f.length>1&&(i("let headers = Header.add_list (Header.init ()) ["),f.forEach(u=>{i(`("${u}", "${I(e[u])}");`,1)}),i("] in")),r.text&&i(`let body = Cohttp_lwt_body.of_string ${JSON.stringify(r.text)} in`),c(),i(`Client.call ${f.length?"~headers ":""}${r.text?"~body ":""}${a.includes(n.toLowerCase())?`\`${n.toUpperCase()}`:`(Code.method_of_string "${n}")`} uri`),i(">>= fun (res, body_stream) ->"),i("(* Do stuff with the result *)",1),l()}}}},A=(t,e,r)=>{switch(r=r||"",e=e||"",Object.prototype.toString.call(t)){case"[object Boolean]":return t;case"[object Null]":return"null";case"[object Undefined]":return"null";case"[object String]":return`'${Be(t,{delimiter:"'",escapeNewlines:!1})}'`;case"[object Number]":return t.toString();case"[object Array]":{const n=t.map(s=>A(s,`${e}${e}`,e)).join(`,
19
+ ${e}`);return`[
20
+ ${e}${n}
21
+ ${r}]`}case"[object Object]":{const n=[];for(const s in t)Object.prototype.hasOwnProperty.call(t,s)&&n.push(`${A(s,e)} => ${A(t[s],`${e}${e}`,e)}`);return`[
22
+ ${e}${n.join(`,
23
+ ${e}`)}
24
+ ${r}]`}default:return"null"}},fr=["ACL","BASELINE_CONTROL","CHECKIN","CHECKOUT","CONNECT","COPY","DELETE","GET","HEAD","LABEL","LOCK","MERGE","MKACTIVITY","MKCOL","MKWORKSPACE","MOVE","OPTIONS","POST","PROPFIND","PROPPATCH","PUT","REPORT","TRACE","UNCHECKOUT","UNLOCK","UPDATE","VERSION_CONTROL"],no={info:{key:"php",title:"PHP",default:"curl",cli:"php %s"},clientsById:{curl:{info:{key:"curl",title:"cURL",link:"http://php.net/manual/en/book.curl.php",description:"PHP with ext-curl",extname:".php"},convert:({uriObj:t,postData:e,fullUrl:r,method:n,httpVersion:s,cookies:o,headersObj:a},i={})=>{const{closingTag:c=!1,indent:l=" ",maxRedirects:f=10,namedErrors:u=!1,noTags:p=!1,shortTags:d=!1,timeout:h=30}=i,{push:y,blank:g,join:$}=new E({indent:l});p||(y(d?"<?":"<?php"),g()),y("$curl = curl_init();"),g();const m=[{escape:!0,name:"CURLOPT_PORT",value:t.port},{escape:!0,name:"CURLOPT_URL",value:r},{escape:!1,name:"CURLOPT_RETURNTRANSFER",value:"true"},{escape:!0,name:"CURLOPT_ENCODING",value:""},{escape:!1,name:"CURLOPT_MAXREDIRS",value:f},{escape:!1,name:"CURLOPT_TIMEOUT",value:h},{escape:!1,name:"CURLOPT_HTTP_VERSION",value:s==="HTTP/1.0"?"CURL_HTTP_VERSION_1_0":"CURL_HTTP_VERSION_1_1"},{escape:!0,name:"CURLOPT_CUSTOMREQUEST",value:n},{escape:!e.jsonObj,name:"CURLOPT_POSTFIELDS",value:e?e.jsonObj?`json_encode(${A(e.jsonObj,l.repeat(2),l)})`:e.text:void 0}];y("curl_setopt_array($curl, [");const b=new E({indent:l,join:`
25
+ ${l}`});m.forEach(({value:v,name:P,escape:T})=>{v!=null&&b.push(`${P} => ${T?JSON.stringify(v):v},`)});const S=o.map(v=>`${encodeURIComponent(v.name)}=${encodeURIComponent(v.value)}`);S.length&&b.push(`CURLOPT_COOKIE => "${S.join("; ")}",`);const O=Object.keys(a).sort().map(v=>`"${v}: ${I(a[v])}"`);return O.length&&(b.push("CURLOPT_HTTPHEADER => ["),b.push(O.join(`,
26
+ ${l}${l}`),1),b.push("],")),y(b.join(),1),y("]);"),g(),y("$response = curl_exec($curl);"),y("$err = curl_error($curl);"),g(),y("curl_close($curl);"),g(),y("if ($err) {"),y(u?'echo array_flip(get_defined_constants(true)["curl"])[$err];':'echo "cURL Error #:" . $err;',1),y("} else {"),y("echo $response;",1),y("}"),!p&&c&&(g(),y("?>")),$()}},guzzle:{info:{key:"guzzle",title:"Guzzle",link:"http://docs.guzzlephp.org/en/stable/",description:"PHP with Guzzle",extname:".php",installation:()=>"composer require guzzlehttp/guzzle"},convert:({postData:t,fullUrl:e,method:r,cookies:n,headersObj:s},o)=>{var y;const a={closingTag:!1,indent:" ",noTags:!1,shortTags:!1,...o},{push:i,blank:c,join:l}=new E({indent:a.indent}),{code:f,push:u,join:p}=new E({indent:a.indent});switch(a.noTags||i(a.shortTags?"<?":"<?php"),i("require_once('vendor/autoload.php');"),c(),t.mimeType){case"application/x-www-form-urlencoded":u(`'form_params' => ${A(t.paramsObj,a.indent+a.indent,a.indent)},`,1);break;case"multipart/form-data":{const g=[];if(t.params&&t.params.forEach($=>{if($.fileName){const m={name:$.name,filename:$.fileName,contents:$.value};$.contentType&&(m.headers={"Content-Type":$.contentType}),g.push(m)}else $.value&&g.push({name:$.name,contents:$.value})}),g.length&&(u(`'multipart' => ${A(g,a.indent+a.indent,a.indent)}`,1),nt(s,"content-type")&&(y=le(s,"content-type"))!=null&&y.indexOf("boundary"))){const $=G(s,"content-type");$&&delete s[$]}break}default:t.text&&u(`'body' => ${A(t.text)},`,1)}const d=Object.keys(s).sort().map(g=>`${a.indent}${a.indent}'${g}' => '${Re(s[g])}',`),h=n.map(g=>`${encodeURIComponent(g.name)}=${encodeURIComponent(g.value)}`).join("; ");return h.length&&d.push(`${a.indent}${a.indent}'cookie' => '${Re(h)}',`),d.length&&(u("'headers' => [",1),u(d.join(`
27
+ `)),u("],",1)),i("$client = new \\GuzzleHttp\\Client();"),c(),f.length?(i(`$response = $client->request('${r}', '${e}', [`),i(p()),i("]);")):i(`$response = $client->request('${r}', '${e}');`),c(),i("echo $response->getBody();"),!a.noTags&&a.closingTag&&(c(),i("?>")),l()}},http1:{info:{key:"http1",title:"HTTP v1",link:"http://php.net/manual/en/book.http.php",description:"PHP with pecl/http v1",extname:".php"},convert:({method:t,url:e,postData:r,queryObj:n,headersObj:s,cookiesObj:o},a={})=>{const{closingTag:i=!1,indent:c=" ",noTags:l=!1,shortTags:f=!1}=a,{push:u,blank:p,join:d}=new E({indent:c});switch(l||(u(f?"<?":"<?php"),p()),fr.includes(t.toUpperCase())||u(`HttpRequest::methodRegister('${t}');`),u("$request = new HttpRequest();"),u(`$request->setUrl(${A(e)});`),fr.includes(t.toUpperCase())?u(`$request->setMethod(HTTP_METH_${t.toUpperCase()});`):u(`$request->setMethod(HttpRequest::HTTP_METH_${t.toUpperCase()});`),p(),Object.keys(n).length&&(u(`$request->setQueryData(${A(n,c)});`),p()),Object.keys(s).length&&(u(`$request->setHeaders(${A(s,c)});`),p()),Object.keys(o).length&&(u(`$request->setCookies(${A(o,c)});`),p()),r.mimeType){case"application/x-www-form-urlencoded":u(`$request->setContentType(${A(r.mimeType)});`),u(`$request->setPostFields(${A(r.paramsObj,c)});`),p();break;case"application/json":u(`$request->setContentType(${A(r.mimeType)});`),u(`$request->setBody(json_encode(${A(r.jsonObj,c)}));`),p();break;default:r.text&&(u(`$request->setBody(${A(r.text)});`),p())}return u("try {"),u("$response = $request->send();",1),p(),u("echo $response->getBody();",1),u("} catch (HttpException $ex) {"),u("echo $ex;",1),u("}"),!l&&i&&(p(),u("?>")),d()}},http2:{info:{key:"http2",title:"HTTP v2",link:"http://devel-m6w6.rhcloud.com/mdref/http",description:"PHP with pecl/http v2",extname:".php"},convert:({postData:t,headersObj:e,method:r,queryObj:n,cookiesObj:s,url:o},a={})=>{var y;const{closingTag:i=!1,indent:c=" ",noTags:l=!1,shortTags:f=!1}=a,{push:u,blank:p,join:d}=new E({indent:c});let h=!1;switch(l||(u(f?"<?":"<?php"),p()),u("$client = new http\\Client;"),u("$request = new http\\Client\\Request;"),p(),t.mimeType){case"application/x-www-form-urlencoded":u("$body = new http\\Message\\Body;"),u(`$body->append(new http\\QueryString(${A(t.paramsObj,c)}));`),p(),h=!0;break;case"multipart/form-data":{if(!t.params)break;const g=[],$={};t.params.forEach(({name:S,fileName:O,value:v,contentType:P})=>{if(O){g.push({name:S,type:P,file:O,data:v});return}v&&($[S]=v)});const m=Object.keys($).length?A($,c):"null",b=g.length?A(g,c):"null";if(u("$body = new http\\Message\\Body;"),u(`$body->addForm(${m}, ${b});`),nt(e,"content-type")&&(y=le(e,"content-type"))!=null&&y.indexOf("boundary")){const S=G(e,"content-type");S&&delete e[S]}p(),h=!0;break}case"application/json":u("$body = new http\\Message\\Body;"),u(`$body->append(json_encode(${A(t.jsonObj,c)}));`),h=!0;break;default:t.text&&(u("$body = new http\\Message\\Body;"),u(`$body->append(${A(t.text)});`),p(),h=!0)}return u(`$request->setRequestUrl(${A(o)});`),u(`$request->setRequestMethod(${A(r)});`),h&&(u("$request->setBody($body);"),p()),Object.keys(n).length&&(u(`$request->setQuery(new http\\QueryString(${A(n,c)}));`),p()),Object.keys(e).length&&(u(`$request->setHeaders(${A(e,c)});`),p()),Object.keys(s).length&&(p(),u(`$client->setCookies(${A(s,c)});`),p()),u("$client->enqueue($request)->send();"),u("$response = $client->getResponse();"),p(),u("echo $response->getBody();"),!l&&i&&(p(),u("?>")),d()}}}},Xr=t=>({method:r,headersObj:n,cookies:s,uriObj:o,fullUrl:a,postData:i,allHeaders:c})=>{const{push:l,join:f}=new E;if(!["GET","POST","PUT","DELETE","PATCH","HEAD","OPTIONS"].includes(r.toUpperCase()))return"Method not supported";const u=[],p=Object.keys(n);return p.length&&(l("$headers=@{}"),p.forEach(d=>{d!=="connection"&&l(`$headers.Add("${d}", "${Be(n[d],{escapeChar:"`"})}")`)}),u.push("-Headers $headers")),s.length&&(l("$session = New-Object Microsoft.PowerShell.Commands.WebRequestSession"),s.forEach(d=>{l("$cookie = New-Object System.Net.Cookie"),l(`$cookie.Name = '${d.name}'`),l(`$cookie.Value = '${d.value}'`),l(`$cookie.Domain = '${o.host}'`),l("$session.Cookies.Add($cookie)")}),u.push("-WebSession $session")),i.text&&(u.push(`-ContentType '${Be(le(c,"content-type"),{delimiter:"'",escapeChar:"`"})}'`),u.push(`-Body '${i.text}'`)),l(`$response = ${t} -Uri '${a}' -Method ${r} ${u.join(" ")}`.trim()),f()},oo={info:{key:"restmethod",title:"Invoke-RestMethod",link:"https://docs.microsoft.com/en-us/powershell/module/Microsoft.PowerShell.Utility/Invoke-RestMethod",description:"Powershell Invoke-RestMethod client",extname:".ps1"},convert:Xr("Invoke-RestMethod")},io={info:{key:"powershell",title:"Powershell",default:"webrequest"},clientsById:{webrequest:{info:{key:"webrequest",title:"Invoke-WebRequest",link:"https://docs.microsoft.com/en-us/powershell/module/Microsoft.PowerShell.Utility/Invoke-WebRequest",description:"Powershell Invoke-WebRequest client",extname:".ps1"},convert:Xr("Invoke-WebRequest")},restmethod:oo}};function ur(t,e,r,n,s){const o=n.repeat(s),a=n.repeat(s-1),i=r?`,
28
+ ${o}`:", ",c=t==="object"?"{":"[",l=t==="object"?"}":"]";return r?`${c}
29
+ ${o}${e.join(i)}
30
+ ${a}${l}`:t==="object"&&e.length>0?`${c} ${e.join(i)} ${l}`:`${c}${e.join(i)}${l}`}const Ee=(t,e,r)=>{switch(r=r===void 0?1:r+1,Object.prototype.toString.call(t)){case"[object Number]":return t;case"[object Array]":{let n=!1;return ur("array",t.map(s=>(Object.prototype.toString.call(s)==="[object Object]"&&(n=Object.keys(s).length>1),Ee(s,e,r))),n,e.indent,r)}case"[object Object]":{const n=[];for(const s in t)n.push(`"${s}": ${Ee(t[s],e,r)}`);return ur("object",n,e.pretty&&n.length>1,e.indent,r)}case"[object Null]":return"None";case"[object Boolean]":return t?"True":"False";default:return t==null?"":`"${t.toString().replace(/"/g,'\\"')}"`}},ao=["HEAD","GET","POST","PUT","PATCH","DELETE","OPTIONS"],so={info:{key:"python",title:"Python",default:"requests",cli:"python3 %s"},clientsById:{requests:{info:{key:"requests",title:"Requests",link:"http://docs.python-requests.org/en/latest/api/#requests.request",description:"Requests HTTP library",extname:".py",installation:()=>"python -m pip install requests"},convert:({fullUrl:t,postData:e,allHeaders:r,method:n},s)=>{const o={indent:" ",pretty:!0,...s},{push:a,blank:i,join:c,addPostProcessor:l}=new E({indent:o.indent});a("import requests"),i(),a(`url = "${t}"`),i();const f=r;let u={};const p={};let d=!1,h=!1,y=!1;switch(e.mimeType){case"application/json":e.jsonObj&&(a(`payload = ${Ee(e.jsonObj,o)}`),y=!0,h=!0);break;case"multipart/form-data":if(!e.params)break;if(u={},e.params.forEach(m=>{m.fileName?(m.contentType?p[m.name]=`('${m.fileName}', open('${m.fileName}', 'rb'), '${m.contentType}')`:p[m.name]=`('${m.fileName}', open('${m.fileName}', 'rb'))`,d=!0):(u[m.name]=m.value,h=!0)}),d){a(`files = ${Ee(p,o)}`),h&&a(`payload = ${Ee(u,o)}`);const m=G(f,"content-type");m&&delete f[m]}else{const m=JSON.stringify(e.text);m&&(a(`payload = ${m}`),h=!0)}l(m=>m.replace(/"\('(.+)', open\('(.+)', 'rb'\)\)"/g,'("$1", open("$2", "rb"))').replace(/"\('(.+)', open\('(.+)', 'rb'\), '(.+)'\)"/g,'("$1", open("$2", "rb"), "$3")'));break;default:{if(e.mimeType==="application/x-www-form-urlencoded"&&e.paramsObj){a(`payload = ${Ee(e.paramsObj,o)}`),h=!0;break}const m=JSON.stringify(e.text);m&&(a(`payload = ${m}`),h=!0)}}const g=Object.keys(f).length;if(g===0&&(h||d))i();else if(g===1)Object.keys(f).forEach(m=>{a(`headers = {"${m}": "${I(f[m])}"}`),i()});else if(g>1){let m=1;a("headers = {"),Object.keys(f).forEach(b=>{a(m!==g?`"${b}": "${I(f[b])}",`:`"${b}": "${I(f[b])}"`,1),m+=1}),a("}"),i()}let $=ao.includes(n)?`response = requests.${n.toLowerCase()}(url`:`response = requests.request("${n}", url`;return h&&(y?$+=", json=payload":$+=", data=payload"),d&&($+=", files=files"),g>0&&($+=", headers=headers"),$+=")",a($),i(),a("print(response.text)"),c()}}}},co={info:{key:"r",title:"R",default:"httr"},clientsById:{httr:{info:{key:"httr",title:"httr",link:"https://cran.r-project.org/web/packages/httr/vignettes/quickstart.html",description:"httr: Tools for Working with URLs and HTTP",extname:".r"},convert:({url:t,queryObj:e,queryString:r,postData:n,allHeaders:s,method:o})=>{const{push:a,blank:i,join:c}=new E;a("library(httr)"),i(),a(`url <- "${t}"`),i();const l=e;delete e.key;const f=Object.keys(l).length;r.length===1?(a(`queryString <- list(${Object.keys(l)} = "${Object.values(l).toString()}")`),i()):r.length>1&&(a("queryString <- list("),Object.keys(l).forEach((O,v)=>{v!==f-1?a(` ${O} = "${l[O].toString()}",`):a(` ${O} = "${l[O].toString()}"`)}),a(")"),i());const u=JSON.stringify(n.text);if(u&&(a(`payload <- ${u}`),i()),n.text||n.jsonObj||n.params)switch(n.mimeType){case"application/x-www-form-urlencoded":a('encode <- "form"'),i();break;case"application/json":a('encode <- "json"'),i();break;case"multipart/form-data":a('encode <- "multipart"'),i();break;default:a('encode <- "raw"'),i();break}const p=le(s,"cookie"),d=le(s,"accept"),h=p?`set_cookies(\`${String(p).replace(/;/g,'", `').replace(/` /g,"`").replace(/[=]/g,'` = "')}")`:void 0,y=d?`accept("${I(d)}")`:void 0,g=`content_type("${I(n.mimeType)}")`,$=Object.entries(s).filter(([O])=>!["cookie","accept","content-type"].includes(O.toLowerCase())).map(([O,v])=>`'${O}' = '${Re(v)}'`).join(", "),m=$?`add_headers(${$})`:void 0;let b=`response <- VERB("${o}", url`;u&&(b+=", body = payload"),r.length&&(b+=", query = queryString");const S=[m,g,y,h].filter(O=>!!O).join(", ");return S&&(b+=`, ${S}`),(n.text||n.jsonObj||n.params)&&(b+=", encode = encode"),b+=")",a(b),i(),a('content(response, "text")'),c()}}}},lo={info:{key:"ruby",title:"Ruby",default:"native"},clientsById:{native:{info:{key:"native",title:"net::http",link:"http://ruby-doc.org/stdlib-2.2.1/libdoc/net/http/rdoc/Net/HTTP.html",description:"Ruby HTTP client",extname:".rb"},convert:({uriObj:t,method:e,fullUrl:r,postData:n,allHeaders:s})=>{const{push:o,blank:a,join:i}=new E;o("require 'uri'"),o("require 'net/http'"),a();const c=e.toUpperCase(),l=["GET","POST","HEAD","DELETE","PATCH","PUT","OPTIONS","COPY","LOCK","UNLOCK","MOVE","TRACE"],f=c.charAt(0)+c.substring(1).toLowerCase();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)`);const u=Object.keys(s);return u.length&&u.forEach(p=>{o(`request["${p}"] = '${Re(s[p])}'`)}),n.text&&o(`request.body = ${JSON.stringify(n.text)}`),a(),o("response = http.request(request)"),o("puts response.read_body"),i()}},faraday:{info:{key:"faraday",title:"faraday",link:"https://github.com/lostisland/faraday",description:"Faraday HTTP client",extname:".rb"},convert:({uriObj:t,queryObj:e,method:r,postData:n,allHeaders:s})=>{const{push:o,blank:a,join:i}=new E,c=r.toUpperCase();if(!["GET","POST","HEAD","DELETE","PATCH","PUT","OPTIONS","COPY","LOCK","UNLOCK","MOVE","TRACE"].includes(c))return o(`# Faraday cannot currently run ${c} requests. Please use another client.`),i();o("require 'faraday'"),a(),n.mimeType==="application/x-www-form-urlencoded"&&n.params&&(o("data = {"),n.params.forEach(f=>{o(` :${f.name} => ${JSON.stringify(f.value)},`)}),o("}"),a()),o("conn = Faraday.new("),o(` url: '${t.protocol}//${t.host}',`),(s["content-type"]||s["Content-Type"])&&o(` headers: {'Content-Type' => '${s["content-type"]||s["Content-Type"]}'}`),o(")"),a(),o(`response = conn.${c.toLowerCase()}('${t.pathname}') do |req|`);const l=Object.keys(s);switch(l.length&&l.forEach(f=>{f.toLowerCase()!=="content-type"&&o(` req.headers['${f}'] = '${Re(s[f])}'`)}),Object.keys(e).forEach(f=>{const u=e[f];Array.isArray(u)?o(` req.params['${f}'] = ${JSON.stringify(u)}`):o(` req.params['${f}'] = '${u}'`)}),n.mimeType){case"application/x-www-form-urlencoded":n.params&&o(" req.body = URI.encode_www_form(data)");break;case"application/json":n.jsonObj&&o(` req.body = ${JSON.stringify(n.text)}`);break;default:n.text&&o(` req.body = ${JSON.stringify(n.text)}`)}return o("end"),a(),o("puts response.status"),o("puts response.body"),i()}}}};function pr(t,e,r,n,s){const o=n.repeat(s),a=n.repeat(s-1),i=r?`,
31
+ ${o}`:", ",c=t==="object"?"json!({":"(",l=t==="object"?"})":")";return r?`${c}
32
+ ${o}${e.join(i)}
33
+ ${a}${l}`:`${c}${e.join(i)}${l}`}const je=(t,e,r)=>{switch(r=r===void 0?1:r+1,Object.prototype.toString.call(t)){case"[object Number]":return t;case"[object Array]":{if(t.length===0)return"json!([])";let n=!1;return pr("array",t.map(s=>(Object.prototype.toString.call(s)==="[object Object]"&&(n=Object.keys(s).length>1),je(s,e,r))),n,e.indent,r)}case"[object Object]":{const n=[];for(const s in t)n.push(`"${s}": ${je(t[s],e,r)}`);return pr("object",n,e.pretty&&n.length>1,e.indent,r)}case"[object Null]":return"json!(null)";case"[object Boolean]":return t?"true":"false";default:return t==null?"":`"${t.toString().replace(/"/g,'\\"')}"`}},fo={info:{key:"reqwest",title:"reqwest",link:"https://docs.rs/reqwest/latest/reqwest/",description:"reqwest HTTP library",extname:".rs"},convert:({queryObj:t,url:e,postData:r,allHeaders:n,method:s},o)=>{const a={indent:" ",pretty:!0,...o};let i=0;const{push:c,blank:l,join:f,pushToLast:u,unshift:p}=new E({indent:a.indent});c("use reqwest;",i),l(),c("#[tokio::main]",i),c("pub async fn main() {",i),i+=1,c(`let url = "${e}";`,i),l();let d=!1;if(Object.keys(t).length){d=!0,c("let querystring = [",i),i+=1;for(const[v,P]of Object.entries(t))if(Array.isArray(P))for(const T of P)c(`("${v}", "${decodeURIComponent(T)}"),`,i);else c(`("${v}", "${decodeURIComponent(String(P))}"),`,i);i-=1,c("];",i),l()}let h={};const y={};let g=!1,$=!1,m=!1,b=!1,S=!1;switch(r.mimeType){case"application/json":r.jsonObj&&c(`let payload = ${je(r.jsonObj,a,i)};`,i),b=!0;break;case"multipart/form-data":if(S=!0,!r.params){c("let form = reqwest::multipart::Form::new()",i),c('.text("", "");',i+1);break}if(h={},r.params.forEach(v=>{v.fileName?(y[v.name]=v.fileName,g=!0):h[v.name]=v.value}),g){for(const v of uo)c(v,i);l()}c("let form = reqwest::multipart::Form::new()",i);for(const[v,P]of Object.entries(y))c(`.part("${v}", file_to_part("${P}").await)`,i+1);for(const[v,P]of Object.entries(h))c(`.text("${v}", "${P}")`,i+1);u(";");break;default:if(r.mimeType==="application/x-www-form-urlencoded"&&r.paramsObj){c(`let payload = ${je(r.paramsObj,a,i)};`,i),$=!0;break}if(r.text){c(`let payload = ${je(r.text,a,i)};`,i),m=!0;break}}($||b)&&p("use serde_json::json;"),($||b||m||S)&&l();const O=Object.entries(n).filter(([v])=>!(v.toLowerCase()==="content-type"&&S));switch(c("let client = reqwest::Client::new();",i),s){case"POST":c("let response = client.post(url)",i);break;case"GET":c("let response = client.get(url)",i);break;default:c(`let response = client.request(reqwest::Method::from_str("${s}").unwrap(), url)`,i),p("use std::str::FromStr;");break}d&&c(".query(&querystring)",i+1),S&&c(".multipart(form)",i+1);for(const[v,P]of O)c(`.header("${v}", ${je(P,a)})`,i+1);return b&&c(".json(&payload)",i+1),$&&c(".form(&payload)",i+1),m&&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(`}
34
+ `),f()}},uo=["async fn file_to_part(file_name: &'static str) -> reqwest::multipart::Part {"," let bytes = tokio::fs::read(file_name).await.unwrap();"," reqwest::multipart::Part::bytes(bytes)"," .file_name(file_name)",' .mime_str("text/plain").unwrap()',"}"],po={info:{key:"rust",title:"Rust",default:"reqwest",cli:"rust"},clientsById:{reqwest:fo}},H=(t="")=>/^[a-z0-9-_/.@%^=:]+$/i.test(t)?t:`'${t.replace(/'/g,"'\\''")}'`,ho=t=>t.replace(/\r/g,"\\r").replace(/\n/g,"\\n"),yo={"http1.0":"0","url ":"",cookie:"b",data:"d",form:"F",globoff:"g",header:"H",insecure:"k",request:"X"},mo=t=>e=>{if(t){const r=yo[e];return r?`-${r}`:""}return`--${e}`},go={info:{key:"shell",title:"Shell",default:"curl",cli:"%s"},clientsById:{curl:{info:{key:"curl",title:"cURL",link:"http://curl.haxx.se/",description:"cURL is a command line tool and library for transferring data with URL syntax",extname:".sh"},convert:({fullUrl:t,method:e,httpVersion:r,headersObj:n,allHeaders:s,postData:o},a={})=>{var $;const{binary:i=!1,globOff:c=!1,indent:l=" ",insecureSkipVerify:f=!1,short:u=!1}=a,p=" ",{push:d,join:h}=new E({...typeof l=="string"?{indent:l}:{},join:l!==!1?` \\
35
+ ${l}`:" "}),y=mo(u);let g=H(t);if(d(`curl ${y("request")} ${e}`),c&&(g=unescape(g),d(y("globoff"))),d(`${y("url ")}${g}`),f&&d(y("insecure")),r==="HTTP/1.0"&&d(y("http1.0")),le(s,"accept-encoding")&&d("--compressed"),o.mimeType==="multipart/form-data"){const m=G(n,"content-type");if(m){const b=n[m];if(m&&b){const S=String(b).replace(/; boundary.+?(?=(;|$))/,"");n[m]=S,s[m]=S}}}switch(Object.keys(n).sort().forEach(m=>{const b=`${m}: ${n[m]}`;d(`${y("header")} ${H(b)}`)}),s.cookie&&d(`${y("cookie")} ${H(s.cookie)}`),o.mimeType){case"multipart/form-data":($=o.params)==null||$.forEach(m=>{let b="";m.fileName?b=`${m.name}='@${m.fileName}'`:b=H(`${m.name}=${m.value}`),d(`${y("form")} ${b}`)});break;case"application/x-www-form-urlencoded":o.params?o.params.forEach(m=>{const b=encodeURIComponent(m.name),S=b!==m.name?b:m.name;d(`${i?"--data-binary":"--data-urlencode"} ${H(`${S}=${m.value}`)}`)}):d(`${i?"--data-binary":y("data")} ${H(o.text)}`);break;default:{if(!o.text)break;let m=!1;if(Un(o.mimeType)&&o.text.length>20)try{const b=JSON.parse(o.text);m=!0,o.text.indexOf("'")>0?d(`${i?"--data-binary":y("data")} @- <<EOF
36
+ ${JSON.stringify(b,null,p)}
37
+ EOF`):d(`${i?"--data-binary":y("data")} '
38
+ ${JSON.stringify(b,null,p)}
39
+ '`)}catch{}m||d(`${i?"--data-binary":y("data")} ${H(o.text)}`)}}return h()}},httpie:{info:{key:"httpie",title:"HTTPie",link:"http://httpie.org/",description:"a CLI, cURL-like tool for humans",extname:".sh",installation:()=>"brew install httpie"},convert:({allHeaders:t,postData:e,queryObj:r,fullUrl:n,method:s,url:o},a)=>{var h;const i={body:!1,cert:!1,headers:!1,indent:" ",pretty:!1,print:!1,queryParams:!1,short:!1,style:!1,timeout:!1,verbose:!1,verify:!1,...a},{push:c,join:l,unshift:f}=new E({indent:i.indent,join:i.indent!==!1?` \\
40
+ ${i.indent}`:" "});let u=!1;const p=[];i.headers&&p.push(i.short?"-h":"--headers"),i.body&&p.push(i.short?"-b":"--body"),i.verbose&&p.push(i.short?"-v":"--verbose"),i.print&&p.push(`${i.short?"-p":"--print"}=${i.print}`),i.verify&&p.push(`--verify=${i.verify}`),i.cert&&p.push(`--cert=${i.cert}`),i.pretty&&p.push(`--pretty=${i.pretty}`),i.style&&p.push(`--style=${i.style}`),i.timeout&&p.push(`--timeout=${i.timeout}`),i.queryParams&&Object.keys(r).forEach(y=>{const g=r[y];Array.isArray(g)?g.forEach($=>{c(`${y}==${H($)}`)}):c(`${y}==${H(g)}`)}),Object.keys(t).sort().forEach(y=>{c(`${y}:${H(t[y])}`)}),e.mimeType==="application/x-www-form-urlencoded"?(h=e.params)!=null&&h.length&&(p.push(i.short?"-f":"--form"),e.params.forEach(y=>{c(`${y.name}=${H(y.value)}`)})):u=!0;const d=p.length?`${p.join(" ")} `:"";return o=H(i.queryParams?o:n),f(`http ${d}${s} ${o}`),u&&e.text&&f(`echo ${H(e.text)} | `),l()}},wget:{info:{key:"wget",title:"Wget",link:"https://www.gnu.org/software/wget/",description:"a free software package for retrieving files using HTTP, HTTPS",extname:".sh"},convert:({method:t,postData:e,allHeaders:r,fullUrl:n},s)=>{const o={indent:" ",short:!1,verbose:!1,...s},{push:a,join:i}=new E({...typeof o.indent=="string"?{indent:o.indent}:{},join:o.indent!==!1?` \\
41
+ ${o.indent}`:" "});return o.verbose?a(`wget ${o.short?"-v":"--verbose"}`):a(`wget ${o.short?"-q":"--quiet"}`),a(`--method ${H(t)}`),Object.keys(r).forEach(c=>{const l=`${c}: ${r[c]}`;a(`--header ${H(l)}`)}),e.text&&a(`--body-data ${ho(H(e.text))}`),a(o.short?"-O":"--output-document"),a(`- ${H(n)}`),i()}}}},dr=(t,e)=>e.repeat(t),hr=(t,e,r,n)=>{const s=dr(n,r),o=dr(n-1,r),a=e?`,
42
+ ${s}`:", ";return e?`[
43
+ ${s}${t.join(a)}
44
+ ${o}]`:`[${t.join(a)}]`},yr=(t,e,r)=>`let ${t} = ${ot(e,r)}`,ot=(t,e,r)=>{switch(r=r===void 0?1:r+1,Object.prototype.toString.call(t)){case"[object Number]":return t;case"[object Array]":{let n=!1;const s=t.map(o=>(Object.prototype.toString.call(o)==="[object Object]"&&(n=Object.keys(o).length>1),ot(o,e,r)));return hr(s,n,e.indent,r)}case"[object Object]":{const n=[];for(const s in t)n.push(`"${s}": ${ot(t[s],e,r)}`);return hr(n,e.pretty&&n.length>1,e.indent,r)}case"[object Boolean]":return t.toString();default:return t==null?"nil":`"${t.toString().replace(/"/g,'\\"')}"`}},Pe={agent:Fn,c:Mn,clojure:Bn,crystal:Wn,csharp:Vn,go:Kn,http:Dn,java:Qn,javascript:Yn,json:Xn,kotlin:Zn,node:eo,objc:to,ocaml:ro,php:no,powershell:io,python:so,r:co,ruby:lo,rust:po,shell:go,swift:{info:{key:"swift",title:"Swift",default:"urlsession"},clientsById:{urlsession:{info:{key:"urlsession",title:"URLSession",link:"https://developer.apple.com/documentation/foundation/urlsession",description:"Foundation's URLSession request",extname:".swift"},convert:({allHeaders:t,postData:e,uriObj:r,queryObj:n,method:s},o)=>{var p;const a={indent:" ",pretty:!0,timeout:10,...o},{push:i,blank:c,join:l}=new E({indent:a.indent});i("import Foundation"),c();const f=e.text||e.jsonObj||e.params;if(f)switch(e.mimeType){case"application/x-www-form-urlencoded":if((p=e.params)!=null&&p.length){const d=e.params.map(h=>`"${h.name}": "${h.value}"`);a.pretty?(i("let parameters = ["),d.forEach(h=>{i(`${h},`,1)}),i("]")):i(`let parameters = [${d.join(", ")}]`),i('let joinedParameters = parameters.map { "\\($0.key)=\\($0.value)" }.joined(separator: "&")'),i("let postData = Data(joinedParameters.utf8)"),c()}break;case"application/json":e.jsonObj&&(i(`${yr("parameters",e.jsonObj,a)} as [String : Any?]`),c(),i("let postData = try JSONSerialization.data(withJSONObject: parameters, options: [])"),c());break;case"multipart/form-data":i(yr("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();break;default:i(`let postData = Data("${e.text}".utf8)`),c()}i(`let url = URL(string: "${r.href}")!`);const u=n?Object.entries(n):[];return u.length<1?i("var request = URLRequest(url: url)"):(i("var components = URLComponents(url: url, resolvingAgainstBaseURL: true)!"),i("let queryItems: [URLQueryItem] = ["),u.forEach(d=>{const h=d[0],y=d[1];switch(Object.prototype.toString.call(y)){case"[object String]":i(`URLQueryItem(name: "${h}", value: "${y}"),`,1);break;case"[object Array]":y.forEach(g=>{i(`URLQueryItem(name: "${h}", value: "${g}"),`,1)});break}}),i("]"),i("components.queryItems = components.queryItems.map { $0 + queryItems } ?? queryItems"),c(),i("var request = URLRequest(url: components.url!)")),i(`request.httpMethod = "${s}"`),i(`request.timeoutInterval = ${a.timeout}`),Object.keys(t).length&&i(`request.allHTTPHeaderFields = ${ot(t,a)}`),f&&i("request.httpBody = postData"),c(),i("let (data, _) = try await URLSession.shared.data(for: request)"),i("print(String(decoding: data, as: UTF8.self))"),l()}}}}},mr=(t,e)=>{const r=t[e.name];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)};var it={exports:{}};/*! https://mths.be/punycode v1.4.1 by @mathias */var bo=it.exports;(function(t,e){(function(r){var n=e&&!e.nodeType&&e,s=t&&!t.nodeType&&t,o=typeof D.commonjsGlobal=="object"&&D.commonjsGlobal;(o.global===o||o.window===o||o.self===o)&&(r=o);var a,i=2147483647,c=36,l=1,f=26,u=38,p=700,d=72,h=128,y="-",g=/^xn--/,$=/[^\x20-\x7E]/,m=/[\x2E\u3002\uFF0E\uFF61]/g,b={overflow:"Overflow: input needs wider integers to process","not-basic":"Illegal input >= 0x80 (not a basic code point)","invalid-input":"Invalid input"},S=c-l,O=Math.floor,v=String.fromCharCode,P;function T(w){throw new RangeError(b[w])}function k(w,x){for(var C=w.length,R=[];C--;)R[C]=x(w[C]);return R}function U(w,x){var C=w.split("@"),R="";C.length>1&&(R=C[0]+"@",w=C[1]),w=w.replace(m,".");var N=w.split("."),z=k(N,x).join(".");return R+z}function Y(w){for(var x=[],C=0,R=w.length,N,z;C<R;)N=w.charCodeAt(C++),N>=55296&&N<=56319&&C<R?(z=w.charCodeAt(C++),(z&64512)==56320?x.push(((N&1023)<<10)+(z&1023)+65536):(x.push(N),C--)):x.push(N);return x}function X(w){return k(w,function(x){var C="";return x>65535&&(x-=65536,C+=v(x>>>10&1023|55296),x=56320|x&1023),C+=v(x),C}).join("")}function _(w){return w-48<10?w-22:w-65<26?w-65:w-97<26?w-97:c}function J(w,x){return w+22+75*(w<26)-((x!=0)<<5)}function B(w,x,C){var R=0;for(w=C?O(w/p):w>>1,w+=O(w/x);w>S*f>>1;R+=c)w=O(w/S);return O(R+(S+1)*w/(w+u))}function V(w){var x=[],C=w.length,R,N=0,z=h,M=d,K,Z,re,fe,W,Q,ee,de,me;for(K=w.lastIndexOf(y),K<0&&(K=0),Z=0;Z<K;++Z)w.charCodeAt(Z)>=128&&T("not-basic"),x.push(w.charCodeAt(Z));for(re=K>0?K+1:0;re<C;){for(fe=N,W=1,Q=c;re>=C&&T("invalid-input"),ee=_(w.charCodeAt(re++)),(ee>=c||ee>O((i-N)/W))&&T("overflow"),N+=ee*W,de=Q<=M?l:Q>=M+f?f:Q-M,!(ee<de);Q+=c)me=c-de,W>O(i/me)&&T("overflow"),W*=me;R=x.length+1,M=B(N-fe,R,fe==0),O(N/R)>i-z&&T("overflow"),z+=O(N/R),N%=R,x.splice(N++,0,z)}return X(x)}function pe(w){var x,C,R,N,z,M,K,Z,re,fe,W,Q=[],ee,de,me,mt;for(w=Y(w),ee=w.length,x=h,C=0,z=d,M=0;M<ee;++M)W=w[M],W<128&&Q.push(v(W));for(R=N=Q.length,N&&Q.push(y);R<ee;){for(K=i,M=0;M<ee;++M)W=w[M],W>=x&&W<K&&(K=W);for(de=R+1,K-x>O((i-C)/de)&&T("overflow"),C+=(K-x)*de,x=K,M=0;M<ee;++M)if(W=w[M],W<x&&++C>i&&T("overflow"),W==x){for(Z=C,re=c;fe=re<=z?l:re>=z+f?f:re-z,!(Z<fe);re+=c)mt=Z-fe,me=c-fe,Q.push(v(J(fe+mt%me,0))),Z=O(mt/me);Q.push(v(J(Z,0))),z=B(C,de,R==N),C=0,++R}++C,++x}return Q.join("")}function yt(w){return U(w,function(x){return g.test(x)?V(x.slice(4).toLowerCase()):x})}function Ve(w){return U(w,function(x){return $.test(x)?"xn--"+pe(x):x})}if(a={version:"1.4.1",ucs2:{decode:Y,encode:X},decode:V,encode:pe,toASCII:Ve,toUnicode:yt},n&&s)if(t.exports==n)s.exports=a;else for(P in a)a.hasOwnProperty(P)&&(n[P]=a[P]);else r.punycode=a})(bo)})(it,it.exports);var $o=it.exports,_e=TypeError;const Zr=t=>String(t);Object.assign(Zr,{custom:Symbol.for("nodejs.util.inspect.custom")});const vo=Object.freeze(Object.defineProperty({__proto__:null,default:Zr},Symbol.toStringTag,{value:"Module"})),wo=D.getAugmentedNamespace(vo);var Xt=typeof Map=="function"&&Map.prototype,bt=Object.getOwnPropertyDescriptor&&Xt?Object.getOwnPropertyDescriptor(Map.prototype,"size"):null,at=Xt&&bt&&typeof bt.get=="function"?bt.get:null,gr=Xt&&Map.prototype.forEach,Zt=typeof Set=="function"&&Set.prototype,$t=Object.getOwnPropertyDescriptor&&Zt?Object.getOwnPropertyDescriptor(Set.prototype,"size"):null,st=Zt&&$t&&typeof $t.get=="function"?$t.get:null,br=Zt&&Set.prototype.forEach,So=typeof WeakMap=="function"&&WeakMap.prototype,Ue=So?WeakMap.prototype.has:null,Oo=typeof WeakSet=="function"&&WeakSet.prototype,Fe=Oo?WeakSet.prototype.has:null,To=typeof WeakRef=="function"&&WeakRef.prototype,$r=To?WeakRef.prototype.deref:null,xo=Boolean.prototype.valueOf,Eo=Object.prototype.toString,jo=Function.prototype.toString,Po=String.prototype.match,er=String.prototype.slice,he=String.prototype.replace,Co=String.prototype.toUpperCase,vr=String.prototype.toLowerCase,en=RegExp.prototype.test,wr=Array.prototype.concat,se=Array.prototype.join,ko=Array.prototype.slice,Sr=Math.floor,Ht=typeof BigInt=="function"?BigInt.prototype.valueOf:null,vt=Object.getOwnPropertySymbols,Bt=typeof Symbol=="function"&&typeof Symbol.iterator=="symbol"?Symbol.prototype.toString:null,qe=typeof Symbol=="function"&&typeof Symbol.iterator=="object",Me=typeof Symbol=="function"&&Symbol.toStringTag&&(typeof Symbol.toStringTag===qe||!0)?Symbol.toStringTag:null,tn=Object.prototype.propertyIsEnumerable,Or=(typeof Reflect=="function"?Reflect.getPrototypeOf:Object.getPrototypeOf)||([].__proto__===Array.prototype?function(t){return t.__proto__}:null);function Tr(t,e){if(t===1/0||t===-1/0||t!==t||t&&t>-1e3&&t<1e3||en.call(/e/,e))return e;var r=/[0-9](?=(?:[0-9]{3})+(?![0-9]))/g;if(typeof t=="number"){var n=t<0?-Sr(-t):Sr(t);if(n!==t){var s=String(n),o=er.call(e,s.length+1);return he.call(s,r,"$&_")+"."+he.call(he.call(o,/([0-9]{3})/g,"$&_"),/_$/,"")}}return he.call(e,r,"$&_")}var Wt=wo,xr=Wt.custom,Er=on(xr)?xr:null,rn={__proto__:null,double:'"',single:"'"},Ao={__proto__:null,double:/(["\\])/g,single:/(['\\])/g},ft=function t(e,r,n,s){var o=r||{};if(ue(o,"quoteStyle")&&!ue(rn,o.quoteStyle))throw new TypeError('option "quoteStyle" must be "single" or "double"');if(ue(o,"maxStringLength")&&(typeof o.maxStringLength=="number"?o.maxStringLength<0&&o.maxStringLength!==1/0:o.maxStringLength!==null))throw new TypeError('option "maxStringLength", if provided, must be a positive integer, Infinity, or `null`');var a=ue(o,"customInspect")?o.customInspect:!0;if(typeof a!="boolean"&&a!=="symbol")throw new TypeError("option \"customInspect\", if provided, must be `true`, `false`, or `'symbol'`");if(ue(o,"indent")&&o.indent!==null&&o.indent!==" "&&!(parseInt(o.indent,10)===o.indent&&o.indent>0))throw new TypeError('option "indent" must be "\\t", an integer > 0, or `null`');if(ue(o,"numericSeparator")&&typeof o.numericSeparator!="boolean")throw new TypeError('option "numericSeparator", if provided, must be `true` or `false`');var i=o.numericSeparator;if(typeof e>"u")return"undefined";if(e===null)return"null";if(typeof e=="boolean")return e?"true":"false";if(typeof e=="string")return sn(e,o);if(typeof e=="number"){if(e===0)return 1/0/e>0?"0":"-0";var c=String(e);return i?Tr(e,c):c}if(typeof e=="bigint"){var l=String(e)+"n";return i?Tr(e,l):l}var f=typeof o.depth>"u"?5:o.depth;if(typeof n>"u"&&(n=0),n>=f&&f>0&&typeof e=="object")return Gt(e)?"[Array]":"[Object]";var u=Do(o,n);if(typeof s>"u")s=[];else if(an(s,e)>=0)return"[Circular]";function p(_,J,B){if(J&&(s=ko.call(s),s.push(J)),B){var V={depth:o.depth};return ue(o,"quoteStyle")&&(V.quoteStyle=o.quoteStyle),t(_,V,n+1,s)}return t(_,o,n+1,s)}if(typeof e=="function"&&!jr(e)){var d=Mo(e),h=Ke(e,p);return"[Function"+(d?": "+d:" (anonymous)")+"]"+(h.length>0?" { "+se.call(h,", ")+" }":"")}if(on(e)){var y=qe?he.call(String(e),/^(Symbol\(.*\))_[^)]*$/,"$1"):Bt.call(e);return typeof e=="object"&&!qe?Le(y):y}if(zo(e)){for(var g="<"+vr.call(String(e.nodeName)),$=e.attributes||[],m=0;m<$.length;m++)g+=" "+$[m].name+"="+nn(Ro($[m].value),"double",o);return g+=">",e.childNodes&&e.childNodes.length&&(g+="..."),g+="</"+vr.call(String(e.nodeName))+">",g}if(Gt(e)){if(e.length===0)return"[]";var b=Ke(e,p);return u&&!Ko(b)?"["+Jt(b,u)+"]":"[ "+se.call(b,", ")+" ]"}if(No(e)){var S=Ke(e,p);return!("cause"in Error.prototype)&&"cause"in e&&!tn.call(e,"cause")?"{ ["+String(e)+"] "+se.call(wr.call("[cause]: "+p(e.cause),S),", ")+" }":S.length===0?"["+String(e)+"]":"{ ["+String(e)+"] "+se.call(S,", ")+" }"}if(typeof e=="object"&&a){if(Er&&typeof e[Er]=="function"&&Wt)return Wt(e,{depth:f-n});if(a!=="symbol"&&typeof e.inspect=="function")return e.inspect()}if(Ho(e)){var O=[];return gr&&gr.call(e,function(_,J){O.push(p(J,e,!0)+" => "+p(_,e))}),Pr("Map",at.call(e),O,u)}if(Go(e)){var v=[];return br&&br.call(e,function(_){v.push(p(_,e))}),Pr("Set",st.call(e),v,u)}if(Bo(e))return wt("WeakMap");if(Jo(e))return wt("WeakSet");if(Wo(e))return wt("WeakRef");if(Lo(e))return Le(p(Number(e)));if(Uo(e))return Le(p(Ht.call(e)));if(Io(e))return Le(xo.call(e));if(_o(e))return Le(p(String(e)));if(typeof window<"u"&&e===window)return"{ [object Window] }";if(typeof globalThis<"u"&&e===globalThis||typeof D.commonjsGlobal<"u"&&e===D.commonjsGlobal)return"{ [object globalThis] }";if(!qo(e)&&!jr(e)){var P=Ke(e,p),T=Or?Or(e)===Object.prototype:e instanceof Object||e.constructor===Object,k=e instanceof Object?"":"null prototype",U=!T&&Me&&Object(e)===e&&Me in e?er.call(ye(e),8,-1):k?"Object":"",Y=T||typeof e.constructor!="function"?"":e.constructor.name?e.constructor.name+" ":"",X=Y+(U||k?"["+se.call(wr.call([],U||[],k||[]),": ")+"] ":"");return P.length===0?X+"{}":u?X+"{"+Jt(P,u)+"}":X+"{ "+se.call(P,", ")+" }"}return String(e)};function nn(t,e,r){var n=r.quoteStyle||e,s=rn[n];return s+t+s}function Ro(t){return he.call(String(t),/"/g,"&quot;")}function Se(t){return!Me||!(typeof t=="object"&&(Me in t||typeof t[Me]<"u"))}function Gt(t){return ye(t)==="[object Array]"&&Se(t)}function qo(t){return ye(t)==="[object Date]"&&Se(t)}function jr(t){return ye(t)==="[object RegExp]"&&Se(t)}function No(t){return ye(t)==="[object Error]"&&Se(t)}function _o(t){return ye(t)==="[object String]"&&Se(t)}function Lo(t){return ye(t)==="[object Number]"&&Se(t)}function Io(t){return ye(t)==="[object Boolean]"&&Se(t)}function on(t){if(qe)return t&&typeof t=="object"&&t instanceof Symbol;if(typeof t=="symbol")return!0;if(!t||typeof t!="object"||!Bt)return!1;try{return Bt.call(t),!0}catch{}return!1}function Uo(t){if(!t||typeof t!="object"||!Ht)return!1;try{return Ht.call(t),!0}catch{}return!1}var Fo=Object.prototype.hasOwnProperty||function(t){return t in this};function ue(t,e){return Fo.call(t,e)}function ye(t){return Eo.call(t)}function Mo(t){if(t.name)return t.name;var e=Po.call(jo.call(t),/^function\s*([\w$]+)/);return e?e[1]:null}function an(t,e){if(t.indexOf)return t.indexOf(e);for(var r=0,n=t.length;r<n;r++)if(t[r]===e)return r;return-1}function Ho(t){if(!at||!t||typeof t!="object")return!1;try{at.call(t);try{st.call(t)}catch{return!0}return t instanceof Map}catch{}return!1}function Bo(t){if(!Ue||!t||typeof t!="object")return!1;try{Ue.call(t,Ue);try{Fe.call(t,Fe)}catch{return!0}return t instanceof WeakMap}catch{}return!1}function Wo(t){if(!$r||!t||typeof t!="object")return!1;try{return $r.call(t),!0}catch{}return!1}function Go(t){if(!st||!t||typeof t!="object")return!1;try{st.call(t);try{at.call(t)}catch{return!0}return t instanceof Set}catch{}return!1}function Jo(t){if(!Fe||!t||typeof t!="object")return!1;try{Fe.call(t,Fe);try{Ue.call(t,Ue)}catch{return!0}return t instanceof WeakSet}catch{}return!1}function zo(t){return!t||typeof t!="object"?!1:typeof HTMLElement<"u"&&t instanceof HTMLElement?!0:typeof t.nodeName=="string"&&typeof t.getAttribute=="function"}function sn(t,e){if(t.length>e.maxStringLength){var r=t.length-e.maxStringLength,n="... "+r+" more character"+(r>1?"s":"");return sn(er.call(t,0,e.maxStringLength),e)+n}var s=Ao[e.quoteStyle||"single"];s.lastIndex=0;var o=he.call(he.call(t,s,"\\$1"),/[\x00-\x1f]/g,Vo);return nn(o,"single",e)}function Vo(t){var e=t.charCodeAt(0),r={8:"b",9:"t",10:"n",12:"f",13:"r"}[e];return r?"\\"+r:"\\x"+(e<16?"0":"")+Co.call(e.toString(16))}function Le(t){return"Object("+t+")"}function wt(t){return t+" { ? }"}function Pr(t,e,r,n){var s=n?Jt(r,n):se.call(r,", ");return t+" ("+e+") {"+s+"}"}function Ko(t){for(var e=0;e<t.length;e++)if(an(t[e],`
45
+ `)>=0)return!1;return!0}function Do(t,e){var r;if(t.indent===" ")r=" ";else if(typeof t.indent=="number"&&t.indent>0)r=se.call(Array(t.indent+1)," ");else return null;return{base:r,prev:se.call(Array(e+1),r)}}function Jt(t,e){if(t.length===0)return"";var r=`
46
+ `+e.prev+e.base;return r+se.call(t,","+r)+`
47
+ `+e.prev}function Ke(t,e){var r=Gt(t),n=[];if(r){n.length=t.length;for(var s=0;s<t.length;s++)n[s]=ue(t,s)?e(t[s],t):""}var o=typeof vt=="function"?vt(t):[],a;if(qe){a={};for(var i=0;i<o.length;i++)a["$"+o[i]]=o[i]}for(var c in t)ue(t,c)&&(r&&String(Number(c))===c&&c<t.length||qe&&a["$"+c]instanceof Symbol||(en.call(/[^\w$]/,c)?n.push(e(c,t)+": "+e(t[c],t)):n.push(c+": "+e(t[c],t))));if(typeof vt=="function")for(var l=0;l<o.length;l++)tn.call(t,o[l])&&n.push("["+e(o[l])+"]: "+e(t[o[l]],t));return n}var Qo=ft,Yo=_e,ut=function(t,e,r){for(var n=t,s;(s=n.next)!=null;n=s)if(s.key===e)return n.next=s.next,r||(s.next=t.next,t.next=s),s},Xo=function(t,e){if(t){var r=ut(t,e);return r&&r.value}},Zo=function(t,e,r){var n=ut(t,e);n?n.value=r:t.next={key:e,next:t.next,value:r}},ei=function(t,e){return t?!!ut(t,e):!1},ti=function(t,e){if(t)return ut(t,e,!0)},ri=function(){var e,r={assert:function(n){if(!r.has(n))throw new Yo("Side channel does not contain "+Qo(n))},delete:function(n){var s=ti(e,n);return s&&e&&!e.next&&(e=void 0),!!s},get:function(n){return Xo(e,n)},has:function(n){return ei(e,n)},set:function(n,s){e||(e={next:void 0}),Zo(e,n,s)}};return r},cn=Object,ni=Error,oi=EvalError,ii=RangeError,ai=ReferenceError,si=SyntaxError,ci=URIError,li=Math.abs,fi=Math.floor,ui=Math.max,pi=Math.min,di=Math.pow,hi=Math.round,yi=Number.isNaN||function(e){return e!==e},mi=yi,gi=function(e){return mi(e)||e===0?e:e<0?-1:1},bi=Object.getOwnPropertyDescriptor,Xe=bi;if(Xe)try{Xe([],"length")}catch{Xe=null}var ln=Xe,Ze=Object.defineProperty||!1;if(Ze)try{Ze({},"a",{value:1})}catch{Ze=!1}var fn=Ze,St,Cr;function $i(){return Cr||(Cr=1,St=function(){if(typeof Symbol!="function"||typeof Object.getOwnPropertySymbols!="function")return!1;if(typeof Symbol.iterator=="symbol")return!0;var e={},r=Symbol("test"),n=Object(r);if(typeof r=="string"||Object.prototype.toString.call(r)!=="[object Symbol]"||Object.prototype.toString.call(n)!=="[object Symbol]")return!1;var s=42;e[r]=s;for(var o in e)return!1;if(typeof Object.keys=="function"&&Object.keys(e).length!==0||typeof Object.getOwnPropertyNames=="function"&&Object.getOwnPropertyNames(e).length!==0)return!1;var a=Object.getOwnPropertySymbols(e);if(a.length!==1||a[0]!==r||!Object.prototype.propertyIsEnumerable.call(e,r))return!1;if(typeof Object.getOwnPropertyDescriptor=="function"){var i=Object.getOwnPropertyDescriptor(e,r);if(i.value!==s||i.enumerable!==!0)return!1}return!0}),St}var Ot,kr;function vi(){if(kr)return Ot;kr=1;var t=typeof Symbol<"u"&&Symbol,e=$i();return Ot=function(){return typeof t!="function"||typeof Symbol!="function"||typeof t("foo")!="symbol"||typeof Symbol("bar")!="symbol"?!1:e()},Ot}var Tt,Ar;function un(){return Ar||(Ar=1,Tt=typeof Reflect<"u"&&Reflect.getPrototypeOf||null),Tt}var xt,Rr;function pn(){if(Rr)return xt;Rr=1;var t=cn;return xt=t.getPrototypeOf||null,xt}var Et,qr;function wi(){if(qr)return Et;qr=1;var t="Function.prototype.bind called on incompatible ",e=Object.prototype.toString,r=Math.max,n="[object Function]",s=function(c,l){for(var f=[],u=0;u<c.length;u+=1)f[u]=c[u];for(var p=0;p<l.length;p+=1)f[p+c.length]=l[p];return f},o=function(c,l){for(var f=[],u=l,p=0;u<c.length;u+=1,p+=1)f[p]=c[u];return f},a=function(i,c){for(var l="",f=0;f<i.length;f+=1)l+=i[f],f+1<i.length&&(l+=c);return l};return Et=function(c){var l=this;if(typeof l!="function"||e.apply(l)!==n)throw new TypeError(t+l);for(var f=o(arguments,1),u,p=function(){if(this instanceof u){var $=l.apply(this,s(f,arguments));return Object($)===$?$:this}return l.apply(c,s(f,arguments))},d=r(0,l.length-f.length),h=[],y=0;y<d;y++)h[y]="$"+y;if(u=Function("binder","return function ("+a(h,",")+"){ return binder.apply(this,arguments); }")(p),l.prototype){var g=function(){};g.prototype=l.prototype,u.prototype=new g,g.prototype=null}return u},Et}var jt,Nr;function pt(){if(Nr)return jt;Nr=1;var t=wi();return jt=Function.prototype.bind||t,jt}var Pt,_r;function tr(){return _r||(_r=1,Pt=Function.prototype.call),Pt}var Ct,Lr;function dn(){return Lr||(Lr=1,Ct=Function.prototype.apply),Ct}var Si=typeof Reflect<"u"&&Reflect&&Reflect.apply,Oi=pt(),Ti=dn(),xi=tr(),Ei=Si,ji=Ei||Oi.call(xi,Ti),Pi=pt(),Ci=_e,ki=tr(),Ai=ji,hn=function(e){if(e.length<1||typeof e[0]!="function")throw new Ci("a function is required");return Ai(Pi,ki,e)},kt,Ir;function Ri(){if(Ir)return kt;Ir=1;var t=hn,e=ln,r;try{r=[].__proto__===Array.prototype}catch(a){if(!a||typeof a!="object"||!("code"in a)||a.code!=="ERR_PROTO_ACCESS")throw a}var n=!!r&&e&&e(Object.prototype,"__proto__"),s=Object,o=s.getPrototypeOf;return kt=n&&typeof n.get=="function"?t([n.get]):typeof o=="function"?function(i){return o(i==null?i:s(i))}:!1,kt}var At,Ur;function qi(){if(Ur)return At;Ur=1;var t=un(),e=pn(),r=Ri();return At=t?function(s){return t(s)}:e?function(s){if(!s||typeof s!="object"&&typeof s!="function")throw new TypeError("getProto: not an object");return e(s)}:r?function(s){return r(s)}:null,At}var Rt,Fr;function Ni(){if(Fr)return Rt;Fr=1;var t=Function.prototype.call,e=Object.prototype.hasOwnProperty,r=pt();return Rt=r.call(t,e),Rt}var j,_i=cn,Li=ni,Ii=oi,Ui=ii,Fi=ai,Ne=si,ke=_e,Mi=ci,Hi=li,Bi=fi,Wi=ui,Gi=pi,Ji=di,zi=hi,Vi=gi,yn=Function,qt=function(t){try{return yn('"use strict"; return ('+t+").constructor;")()}catch{}},We=ln,Ki=fn,Nt=function(){throw new ke},Di=We?(function(){try{return arguments.callee,Nt}catch{try{return We(arguments,"callee").get}catch{return Nt}}})():Nt,Oe=vi()(),F=qi(),Qi=pn(),Yi=un(),mn=dn(),Ge=tr(),xe={},Xi=typeof Uint8Array>"u"||!F?j:F(Uint8Array),we={__proto__:null,"%AggregateError%":typeof AggregateError>"u"?j:AggregateError,"%Array%":Array,"%ArrayBuffer%":typeof ArrayBuffer>"u"?j:ArrayBuffer,"%ArrayIteratorPrototype%":Oe&&F?F([][Symbol.iterator]()):j,"%AsyncFromSyncIteratorPrototype%":j,"%AsyncFunction%":xe,"%AsyncGenerator%":xe,"%AsyncGeneratorFunction%":xe,"%AsyncIteratorPrototype%":xe,"%Atomics%":typeof Atomics>"u"?j:Atomics,"%BigInt%":typeof BigInt>"u"?j:BigInt,"%BigInt64Array%":typeof BigInt64Array>"u"?j:BigInt64Array,"%BigUint64Array%":typeof BigUint64Array>"u"?j:BigUint64Array,"%Boolean%":Boolean,"%DataView%":typeof DataView>"u"?j:DataView,"%Date%":Date,"%decodeURI%":decodeURI,"%decodeURIComponent%":decodeURIComponent,"%encodeURI%":encodeURI,"%encodeURIComponent%":encodeURIComponent,"%Error%":Li,"%eval%":eval,"%EvalError%":Ii,"%Float16Array%":typeof Float16Array>"u"?j:Float16Array,"%Float32Array%":typeof Float32Array>"u"?j:Float32Array,"%Float64Array%":typeof Float64Array>"u"?j:Float64Array,"%FinalizationRegistry%":typeof FinalizationRegistry>"u"?j:FinalizationRegistry,"%Function%":yn,"%GeneratorFunction%":xe,"%Int8Array%":typeof Int8Array>"u"?j:Int8Array,"%Int16Array%":typeof Int16Array>"u"?j:Int16Array,"%Int32Array%":typeof Int32Array>"u"?j:Int32Array,"%isFinite%":isFinite,"%isNaN%":isNaN,"%IteratorPrototype%":Oe&&F?F(F([][Symbol.iterator]())):j,"%JSON%":typeof JSON=="object"?JSON:j,"%Map%":typeof Map>"u"?j:Map,"%MapIteratorPrototype%":typeof Map>"u"||!Oe||!F?j:F(new Map()[Symbol.iterator]()),"%Math%":Math,"%Number%":Number,"%Object%":_i,"%Object.getOwnPropertyDescriptor%":We,"%parseFloat%":parseFloat,"%parseInt%":parseInt,"%Promise%":typeof Promise>"u"?j:Promise,"%Proxy%":typeof Proxy>"u"?j:Proxy,"%RangeError%":Ui,"%ReferenceError%":Fi,"%Reflect%":typeof Reflect>"u"?j:Reflect,"%RegExp%":RegExp,"%Set%":typeof Set>"u"?j:Set,"%SetIteratorPrototype%":typeof Set>"u"||!Oe||!F?j:F(new Set()[Symbol.iterator]()),"%SharedArrayBuffer%":typeof SharedArrayBuffer>"u"?j:SharedArrayBuffer,"%String%":String,"%StringIteratorPrototype%":Oe&&F?F(""[Symbol.iterator]()):j,"%Symbol%":Oe?Symbol:j,"%SyntaxError%":Ne,"%ThrowTypeError%":Di,"%TypedArray%":Xi,"%TypeError%":ke,"%Uint8Array%":typeof Uint8Array>"u"?j:Uint8Array,"%Uint8ClampedArray%":typeof Uint8ClampedArray>"u"?j:Uint8ClampedArray,"%Uint16Array%":typeof Uint16Array>"u"?j:Uint16Array,"%Uint32Array%":typeof Uint32Array>"u"?j:Uint32Array,"%URIError%":Mi,"%WeakMap%":typeof WeakMap>"u"?j:WeakMap,"%WeakRef%":typeof WeakRef>"u"?j:WeakRef,"%WeakSet%":typeof WeakSet>"u"?j:WeakSet,"%Function.prototype.call%":Ge,"%Function.prototype.apply%":mn,"%Object.defineProperty%":Ki,"%Object.getPrototypeOf%":Qi,"%Math.abs%":Hi,"%Math.floor%":Bi,"%Math.max%":Wi,"%Math.min%":Gi,"%Math.pow%":Ji,"%Math.round%":zi,"%Math.sign%":Vi,"%Reflect.getPrototypeOf%":Yi};if(F)try{null.error}catch(t){var Zi=F(F(t));we["%Error.prototype%"]=Zi}var ea=function t(e){var r;if(e==="%AsyncFunction%")r=qt("async function () {}");else if(e==="%GeneratorFunction%")r=qt("function* () {}");else if(e==="%AsyncGeneratorFunction%")r=qt("async function* () {}");else if(e==="%AsyncGenerator%"){var n=t("%AsyncGeneratorFunction%");n&&(r=n.prototype)}else if(e==="%AsyncIteratorPrototype%"){var s=t("%AsyncGenerator%");s&&F&&(r=F(s.prototype))}return we[e]=r,r},Mr={__proto__:null,"%ArrayBufferPrototype%":["ArrayBuffer","prototype"],"%ArrayPrototype%":["Array","prototype"],"%ArrayProto_entries%":["Array","prototype","entries"],"%ArrayProto_forEach%":["Array","prototype","forEach"],"%ArrayProto_keys%":["Array","prototype","keys"],"%ArrayProto_values%":["Array","prototype","values"],"%AsyncFunctionPrototype%":["AsyncFunction","prototype"],"%AsyncGenerator%":["AsyncGeneratorFunction","prototype"],"%AsyncGeneratorPrototype%":["AsyncGeneratorFunction","prototype","prototype"],"%BooleanPrototype%":["Boolean","prototype"],"%DataViewPrototype%":["DataView","prototype"],"%DatePrototype%":["Date","prototype"],"%ErrorPrototype%":["Error","prototype"],"%EvalErrorPrototype%":["EvalError","prototype"],"%Float32ArrayPrototype%":["Float32Array","prototype"],"%Float64ArrayPrototype%":["Float64Array","prototype"],"%FunctionPrototype%":["Function","prototype"],"%Generator%":["GeneratorFunction","prototype"],"%GeneratorPrototype%":["GeneratorFunction","prototype","prototype"],"%Int8ArrayPrototype%":["Int8Array","prototype"],"%Int16ArrayPrototype%":["Int16Array","prototype"],"%Int32ArrayPrototype%":["Int32Array","prototype"],"%JSONParse%":["JSON","parse"],"%JSONStringify%":["JSON","stringify"],"%MapPrototype%":["Map","prototype"],"%NumberPrototype%":["Number","prototype"],"%ObjectPrototype%":["Object","prototype"],"%ObjProto_toString%":["Object","prototype","toString"],"%ObjProto_valueOf%":["Object","prototype","valueOf"],"%PromisePrototype%":["Promise","prototype"],"%PromiseProto_then%":["Promise","prototype","then"],"%Promise_all%":["Promise","all"],"%Promise_reject%":["Promise","reject"],"%Promise_resolve%":["Promise","resolve"],"%RangeErrorPrototype%":["RangeError","prototype"],"%ReferenceErrorPrototype%":["ReferenceError","prototype"],"%RegExpPrototype%":["RegExp","prototype"],"%SetPrototype%":["Set","prototype"],"%SharedArrayBufferPrototype%":["SharedArrayBuffer","prototype"],"%StringPrototype%":["String","prototype"],"%SymbolPrototype%":["Symbol","prototype"],"%SyntaxErrorPrototype%":["SyntaxError","prototype"],"%TypedArrayPrototype%":["TypedArray","prototype"],"%TypeErrorPrototype%":["TypeError","prototype"],"%Uint8ArrayPrototype%":["Uint8Array","prototype"],"%Uint8ClampedArrayPrototype%":["Uint8ClampedArray","prototype"],"%Uint16ArrayPrototype%":["Uint16Array","prototype"],"%Uint32ArrayPrototype%":["Uint32Array","prototype"],"%URIErrorPrototype%":["URIError","prototype"],"%WeakMapPrototype%":["WeakMap","prototype"],"%WeakSetPrototype%":["WeakSet","prototype"]},Je=pt(),ct=Ni(),ta=Je.call(Ge,Array.prototype.concat),ra=Je.call(mn,Array.prototype.splice),Hr=Je.call(Ge,String.prototype.replace),lt=Je.call(Ge,String.prototype.slice),na=Je.call(Ge,RegExp.prototype.exec),oa=/[^%.[\]]+|\[(?:(-?\d+(?:\.\d+)?)|(["'])((?:(?!\2)[^\\]|\\.)*?)\2)\]|(?=(?:\.|\[\])(?:\.|\[\]|%$))/g,ia=/\\(\\)?/g,aa=function(e){var r=lt(e,0,1),n=lt(e,-1);if(r==="%"&&n!=="%")throw new Ne("invalid intrinsic syntax, expected closing `%`");if(n==="%"&&r!=="%")throw new Ne("invalid intrinsic syntax, expected opening `%`");var s=[];return Hr(e,oa,function(o,a,i,c){s[s.length]=i?Hr(c,ia,"$1"):a||o}),s},sa=function(e,r){var n=e,s;if(ct(Mr,n)&&(s=Mr[n],n="%"+s[0]+"%"),ct(we,n)){var o=we[n];if(o===xe&&(o=ea(n)),typeof o>"u"&&!r)throw new ke("intrinsic "+e+" exists, but is not available. Please file an issue!");return{alias:s,name:n,value:o}}throw new Ne("intrinsic "+e+" does not exist!")},rr=function(e,r){if(typeof e!="string"||e.length===0)throw new ke("intrinsic name must be a non-empty string");if(arguments.length>1&&typeof r!="boolean")throw new ke('"allowMissing" argument must be a boolean');if(na(/^%?[^%]*%?$/,e)===null)throw new Ne("`%` may not be present anywhere but at the beginning and end of the intrinsic name");var n=aa(e),s=n.length>0?n[0]:"",o=sa("%"+s+"%",r),a=o.name,i=o.value,c=!1,l=o.alias;l&&(s=l[0],ra(n,ta([0,1],l)));for(var f=1,u=!0;f<n.length;f+=1){var p=n[f],d=lt(p,0,1),h=lt(p,-1);if((d==='"'||d==="'"||d==="`"||h==='"'||h==="'"||h==="`")&&d!==h)throw new Ne("property names with quotes must have matching quotes");if((p==="constructor"||!u)&&(c=!0),s+="."+p,a="%"+s+"%",ct(we,a))i=we[a];else if(i!=null){if(!(p in i)){if(!r)throw new ke("base intrinsic for "+e+" exists, but the property is not available.");return}if(We&&f+1>=n.length){var y=We(i,p);u=!!y,u&&"get"in y&&!("originalValue"in y.get)?i=y.get:i=i[p]}else u=ct(i,p),i=i[p];u&&!c&&(we[a]=i)}}return i},gn=rr,bn=hn,ca=bn([gn("%String.prototype.indexOf%")]),$n=function(e,r){var n=gn(e,!!r);return typeof n=="function"&&ca(e,".prototype.")>-1?bn([n]):n},la=rr,ze=$n,fa=ft,ua=_e,Br=la("%Map%",!0),pa=ze("Map.prototype.get",!0),da=ze("Map.prototype.set",!0),ha=ze("Map.prototype.has",!0),ya=ze("Map.prototype.delete",!0),ma=ze("Map.prototype.size",!0),vn=!!Br&&function(){var e,r={assert:function(n){if(!r.has(n))throw new ua("Side channel does not contain "+fa(n))},delete:function(n){if(e){var s=ya(e,n);return ma(e)===0&&(e=void 0),s}return!1},get:function(n){if(e)return pa(e,n)},has:function(n){return e?ha(e,n):!1},set:function(n,s){e||(e=new Br),da(e,n,s)}};return r},ga=rr,dt=$n,ba=ft,De=vn,$a=_e,Te=ga("%WeakMap%",!0),va=dt("WeakMap.prototype.get",!0),wa=dt("WeakMap.prototype.set",!0),Sa=dt("WeakMap.prototype.has",!0),Oa=dt("WeakMap.prototype.delete",!0),Ta=Te?function(){var e,r,n={assert:function(s){if(!n.has(s))throw new $a("Side channel does not contain "+ba(s))},delete:function(s){if(Te&&s&&(typeof s=="object"||typeof s=="function")){if(e)return Oa(e,s)}else if(De&&r)return r.delete(s);return!1},get:function(s){return Te&&s&&(typeof s=="object"||typeof s=="function")&&e?va(e,s):r&&r.get(s)},has:function(s){return Te&&s&&(typeof s=="object"||typeof s=="function")&&e?Sa(e,s):!!r&&r.has(s)},set:function(s,o){Te&&s&&(typeof s=="object"||typeof s=="function")?(e||(e=new Te),wa(e,s,o)):De&&(r||(r=De()),r.set(s,o))}};return n}:De,xa=_e,Ea=ft,ja=ri,Pa=vn,Ca=Ta,ka=Ca||Pa||ja,wn=function(){var e,r={assert:function(n){if(!r.has(n)){var s=n&&Object(n)===n?"the given object key":Ea(n);throw new xa("Side channel does not contain "+s)}},delete:function(n){return!!e&&e.delete(n)},get:function(n){return e&&e.get(n)},has:function(n){return!!e&&e.has(n)},set:function(n,s){e||(e=ka()),e.set(n,s)}};return r},Aa=String.prototype.replace,Ra=/%20/g,_t={RFC1738:"RFC1738",RFC3986:"RFC3986"},nr={default:_t.RFC3986,formatters:{RFC1738:function(t){return Aa.call(t,Ra,"+")},RFC3986:function(t){return String(t)}},RFC1738:_t.RFC1738,RFC3986:_t.RFC3986},qa=nr,Sn=wn,Wr=fn,Lt=Object.prototype.hasOwnProperty,be=Array.isArray,ht=Sn(),$e=function(e,r){return ht.set(e,r),e},ve=function(e){return ht.has(e)},Ie=function(e){return ht.get(e)},zt=function(e,r){ht.set(e,r)},oe=(function(){for(var t=[],e=0;e<256;++e)t[t.length]="%"+((e<16?"0":"")+e.toString(16)).toUpperCase();return t})(),Na=function(e){for(;e.length>1;){var r=e.pop(),n=r.obj[r.prop];if(be(n)){for(var s=[],o=0;o<n.length;++o)typeof n[o]<"u"&&(s[s.length]=n[o]);r.obj[r.prop]=s}}},Ce=function(e,r){for(var n=r&&r.plainObjects?{__proto__:null}:{},s=0;s<e.length;++s)typeof e[s]<"u"&&(n[s]=e[s]);return n},Vt=function(e,r,n){r==="__proto__"&&Wr?Wr(e,r,{configurable:!0,enumerable:!0,value:n,writable:!0}):e[r]=n},_a=function t(e,r,n){if(!r)return e;if(typeof r!="object"&&typeof r!="function"){if(be(e)){var s=e.length;if(n&&typeof n.arrayLimit=="number"&&s>=n.arrayLimit){if(n.throwOnLimitExceeded)throw new RangeError("Array limit exceeded. Only "+n.arrayLimit+" element"+(n.arrayLimit===1?"":"s")+" allowed in an array.");return $e(Ce(e.concat(r),n),s)}e[s]=r}else if(e&&typeof e=="object")if(ve(e)){var o=Ie(e)+1;e[o]=r,zt(e,o)}else{if(n&&n.strictMerge)return[e,r];(n&&(n.plainObjects||n.allowPrototypes)||!Lt.call(Object.prototype,r))&&(e[r]=!0)}else return[e,r];return e}if(!e||typeof e!="object"){if(ve(r)){for(var a=Object.keys(r),i=n&&n.plainObjects?{__proto__:null,0:e}:{0:e},c=0;c<a.length;c++){var l=parseInt(a[c],10);i[l+1]=r[a[c]]}return $e(i,Ie(r)+1)}var f=[e].concat(r);if(n&&typeof n.arrayLimit=="number"&&f.length>n.arrayLimit){if(n.throwOnLimitExceeded)throw new RangeError("Array limit exceeded. Only "+n.arrayLimit+" element"+(n.arrayLimit===1?"":"s")+" allowed in an array.");return $e(Ce(f,n),f.length-1)}return f}var u=e;if(be(e)&&!be(r)&&(u=Ce(e,n)),be(e)&&be(r)){if(r.forEach(function(p,d){if(Lt.call(e,d)){var h=e[d];h&&typeof h=="object"&&p&&typeof p=="object"?e[d]=t(h,p,n):e[e.length]=p}else e[d]=p}),n&&typeof n.arrayLimit=="number"&&e.length>n.arrayLimit){if(n.throwOnLimitExceeded)throw new RangeError("Array limit exceeded. Only "+n.arrayLimit+" element"+(n.arrayLimit===1?"":"s")+" allowed in an array.");return $e(Ce(e,n),e.length-1)}return e}return Object.keys(r).reduce(function(p,d){var h=r[d];if(Lt.call(p,d)?Vt(p,d,t(p[d],h,n)):Vt(p,d,h),ve(r)&&!ve(p)&&$e(p,Ie(r)),ve(p)){var y=parseInt(d,10);String(y)===d&&y>=0&&y>Ie(p)&&zt(p,y)}return p},u)},La=function(e,r){return Object.keys(r).reduce(function(n,s){return Vt(n,s,r[s]),n},e)},Ia=function(t,e,r){var n=t.replace(/\+/g," ");if(r==="iso-8859-1")return n.replace(/%[0-9a-f]{2}/gi,unescape);try{return decodeURIComponent(n)}catch{return n}},Qe=1024,Ua=function(e,r,n,s,o){if(e.length===0)return e;var a=e;if(typeof e=="symbol"?a=Symbol.prototype.toString.call(e):typeof e!="string"&&(a=String(e)),n==="iso-8859-1")return escape(a).replace(/%u[0-9a-f]{4}/gi,function(h){return"%26%23"+parseInt(h.slice(2),16)+"%3B"});for(var i="",c=0;c<a.length;c+=Qe){var l=a.length>=Qe?a.slice(c,c+Qe):a;if(c+Qe<a.length){var f=l.charCodeAt(l.length-1);f>=55296&&f<=56319&&(l=l.slice(0,-1),c-=1)}for(var u=[],p=0;p<l.length;++p){var d=l.charCodeAt(p);if(d===45||d===46||d===95||d===126||d>=48&&d<=57||d>=65&&d<=90||d>=97&&d<=122||o===qa.RFC1738&&(d===40||d===41)){u[u.length]=l.charAt(p);continue}if(d<128){u[u.length]=oe[d];continue}if(d<2048){u[u.length]=oe[192|d>>6]+oe[128|d&63];continue}if(d<55296||d>=57344){u[u.length]=oe[224|d>>12]+oe[128|d>>6&63]+oe[128|d&63];continue}p+=1,d=65536+((d&1023)<<10|l.charCodeAt(p)&1023),u[u.length]=oe[240|d>>18]+oe[128|d>>12&63]+oe[128|d>>6&63]+oe[128|d&63]}i+=u.join("")}return i},Fa=function(e){for(var r=[{obj:{o:e},prop:"o"}],n=Sn(),s=0;s<r.length;++s)for(var o=r[s],a=o.obj[o.prop],i=Object.keys(a),c=0;c<i.length;++c){var l=i[c],f=a[l];typeof f=="object"&&f!==null&&!n.has(f)&&(r[r.length]={obj:a,prop:l},n.set(f,!0))}return Na(r),e},Ma=function(e){return Object.prototype.toString.call(e)==="[object RegExp]"},Ha=function(e){return!e||typeof e!="object"?!1:!!(e.constructor&&e.constructor.isBuffer&&e.constructor.isBuffer(e))},Ba=function(e,r,n,s,o){if(ve(e)){if(o)throw new RangeError("Array limit exceeded. Only "+n+" element"+(n===1?"":"s")+" allowed in an array.");var a=Ie(e)+1;return e[a]=r,zt(e,a),e}var i=[].concat(e,r);if(i.length>n){if(o)throw new RangeError("Array limit exceeded. Only "+n+" element"+(n===1?"":"s")+" allowed in an array.");return $e(Ce(i,{plainObjects:s}),i.length-1)}return i},Wa=function(e,r){if(be(e)){for(var n=[],s=0;s<e.length;s+=1)n[n.length]=r(e[s]);return n}return r(e)},On={arrayToObject:Ce,assign:La,combine:Ba,compact:Fa,decode:Ia,encode:Ua,isBuffer:Ha,isOverflow:ve,isRegExp:Ma,markOverflow:$e,maybeMap:Wa,merge:_a},Tn=wn,et=On,He=nr,Ga=Object.prototype.hasOwnProperty,xn={brackets:function(e){return e+"[]"},comma:"comma",indices:function(e,r){return e+"["+r+"]"},repeat:function(e){return e}},ie=Array.isArray,Ja=Array.prototype.push,En=function(t,e){Ja.apply(t,ie(e)?e:[e])},za=Date.prototype.toISOString,Gr=He.default,L={addQueryPrefix:!1,allowDots:!1,allowEmptyArrays:!1,arrayFormat:"indices",charset:"utf-8",charsetSentinel:!1,commaRoundTrip:!1,delimiter:"&",encode:!0,encodeDotInKeys:!1,encoder:et.encode,encodeValuesOnly:!1,filter:void 0,format:Gr,formatter:He.formatters[Gr],indices:!1,serializeDate:function(e){return za.call(e)},skipNulls:!1,strictNullHandling:!1},Va=function(e){return typeof e=="string"||typeof e=="number"||typeof e=="boolean"||typeof e=="symbol"||typeof e=="bigint"},It={},Ka=function t(e,r,n,s,o,a,i,c,l,f,u,p,d,h,y,g,$,m){for(var b=e,S=m,O=0,v=!1;(S=S.get(It))!==void 0&&!v;){var P=S.get(e);if(O+=1,typeof P<"u"){if(P===O)throw new RangeError("Cyclic object value");v=!0}typeof S.get(It)>"u"&&(O=0)}if(typeof f=="function"?b=f(r,b):b instanceof Date?b=d(b):n==="comma"&&ie(b)&&(b=et.maybeMap(b,function(w){return w instanceof Date?d(w):w})),b===null){if(a)return y(l&&!g?l(r,L.encoder,$,"key",h):r);b=""}if(Va(b)||et.isBuffer(b)){if(l){var T=g?r:l(r,L.encoder,$,"key",h);return[y(T)+"="+y(l(b,L.encoder,$,"value",h))]}return[y(r)+"="+y(String(b))]}var k=[];if(typeof b>"u")return k;var U;if(n==="comma"&&ie(b))g&&l&&(b=et.maybeMap(b,function(w){return w==null?w:l(w)})),U=[{value:b.length>0?b.join(",")||null:void 0}];else if(ie(f))U=f;else{var Y=Object.keys(b);U=u?Y.sort(u):Y}var X=c?String(r).replace(/\./g,"%2E"):String(r),_=s&&ie(b)&&b.length===1?X+"[]":X;if(o&&ie(b)&&b.length===0)return _+"[]";for(var J=0;J<U.length;++J){var B=U[J],V=typeof B=="object"&&B&&typeof B.value<"u"?B.value:b[B];if(!(i&&V===null)){var pe=p&&c?String(B).replace(/\./g,"%2E"):String(B),yt=ie(b)?typeof n=="function"?n(_,pe):_:_+(p?"."+pe:"["+pe+"]");m.set(e,O);var Ve=Tn();Ve.set(It,m),En(k,t(V,yt,n,s,o,a,i,c,n==="comma"&&g&&ie(b)?null:l,f,u,p,d,h,y,g,$,Ve))}}return k},Da=function(e){if(!e)return L;if(typeof e.allowEmptyArrays<"u"&&typeof e.allowEmptyArrays!="boolean")throw new TypeError("`allowEmptyArrays` option can only be `true` or `false`, when provided");if(typeof e.encodeDotInKeys<"u"&&typeof e.encodeDotInKeys!="boolean")throw new TypeError("`encodeDotInKeys` option can only be `true` or `false`, when provided");if(e.encoder!==null&&typeof e.encoder<"u"&&typeof e.encoder!="function")throw new TypeError("Encoder has to be a function.");var r=e.charset||L.charset;if(typeof e.charset<"u"&&e.charset!=="utf-8"&&e.charset!=="iso-8859-1")throw new TypeError("The charset option must be either utf-8, iso-8859-1, or undefined");var n=He.default;if(typeof e.format<"u"){if(!Ga.call(He.formatters,e.format))throw new TypeError("Unknown format option provided.");n=e.format}var s=He.formatters[n],o=L.filter;(typeof e.filter=="function"||ie(e.filter))&&(o=e.filter);var a;if(e.arrayFormat in xn?a=e.arrayFormat:"indices"in e?a=e.indices?"indices":"repeat":a=L.arrayFormat,"commaRoundTrip"in e&&typeof e.commaRoundTrip!="boolean")throw new TypeError("`commaRoundTrip` must be a boolean, or absent");var i=typeof e.allowDots>"u"?e.encodeDotInKeys===!0?!0:L.allowDots:!!e.allowDots;return{addQueryPrefix:typeof e.addQueryPrefix=="boolean"?e.addQueryPrefix:L.addQueryPrefix,allowDots:i,allowEmptyArrays:typeof e.allowEmptyArrays=="boolean"?!!e.allowEmptyArrays:L.allowEmptyArrays,arrayFormat:a,charset:r,charsetSentinel:typeof e.charsetSentinel=="boolean"?e.charsetSentinel:L.charsetSentinel,commaRoundTrip:!!e.commaRoundTrip,delimiter:typeof e.delimiter>"u"?L.delimiter:e.delimiter,encode:typeof e.encode=="boolean"?e.encode:L.encode,encodeDotInKeys:typeof e.encodeDotInKeys=="boolean"?e.encodeDotInKeys:L.encodeDotInKeys,encoder:typeof e.encoder=="function"?e.encoder:L.encoder,encodeValuesOnly:typeof e.encodeValuesOnly=="boolean"?e.encodeValuesOnly:L.encodeValuesOnly,filter:o,format:n,formatter:s,serializeDate:typeof e.serializeDate=="function"?e.serializeDate:L.serializeDate,skipNulls:typeof e.skipNulls=="boolean"?e.skipNulls:L.skipNulls,sort:typeof e.sort=="function"?e.sort:null,strictNullHandling:typeof e.strictNullHandling=="boolean"?e.strictNullHandling:L.strictNullHandling}},Qa=function(t,e){var r=t,n=Da(e),s,o;typeof n.filter=="function"?(o=n.filter,r=o("",r)):ie(n.filter)&&(o=n.filter,s=o);var a=[];if(typeof r!="object"||r===null)return"";var i=xn[n.arrayFormat],c=i==="comma"&&n.commaRoundTrip;s||(s=Object.keys(r)),n.sort&&s.sort(n.sort);for(var l=Tn(),f=0;f<s.length;++f){var u=s[f];if(!(typeof u>"u"||u===null)){var p=r[u];n.skipNulls&&p===null||En(a,Ka(p,u,i,c,n.allowEmptyArrays,n.strictNullHandling,n.skipNulls,n.encodeDotInKeys,n.encode?n.encoder:null,n.filter,n.sort,n.allowDots,n.serializeDate,n.format,n.formatter,n.encodeValuesOnly,n.charset,l))}}var d=a.join(n.delimiter),h=n.addQueryPrefix===!0?"?":"";return n.charsetSentinel&&(n.charset==="iso-8859-1"?h+="utf8=%26%2310003%3B"+n.delimiter:h+="utf8=%E2%9C%93"+n.delimiter),d.length>0?h+d:""},ce=On,tt=Object.prototype.hasOwnProperty,Ut=Array.isArray,q={allowDots:!1,allowEmptyArrays:!1,allowPrototypes:!1,allowSparse:!1,arrayLimit:20,charset:"utf-8",charsetSentinel:!1,comma:!1,decodeDotInKeys:!1,decoder:ce.decode,delimiter:"&",depth:5,duplicates:"combine",ignoreQueryPrefix:!1,interpretNumericEntities:!1,parameterLimit:1e3,parseArrays:!0,plainObjects:!1,strictDepth:!1,strictMerge:!0,strictNullHandling:!1,throwOnLimitExceeded:!1},Ya=function(t){return t.replace(/&#(\d+);/g,function(e,r){return String.fromCharCode(parseInt(r,10))})},jn=function(t,e,r,n){if(t&&typeof t=="string"&&e.comma&&t.indexOf(",")>-1){if(n&&e.throwOnLimitExceeded)for(var s=0,o=t.indexOf(",");o>-1;){if(s+=1,s>=e.arrayLimit)throw new RangeError("Array limit exceeded. Only "+e.arrayLimit+" element"+(e.arrayLimit===1?"":"s")+" allowed in an array.");o=t.indexOf(",",o+1)}return t.split(",")}if(e.throwOnLimitExceeded&&r>=e.arrayLimit)throw new RangeError("Array limit exceeded. Only "+e.arrayLimit+" element"+(e.arrayLimit===1?"":"s")+" allowed in an array.");return t},Xa="utf8=%26%2310003%3B",Za="utf8=%E2%9C%93",es=function(e,r){var n={__proto__:null},s=r.ignoreQueryPrefix?e.replace(/^\?/,""):e;s=s.replace(/%5B/gi,"[").replace(/%5D/gi,"]");var o=r.parameterLimit===1/0?void 0:r.parameterLimit,a=s.split(r.delimiter,r.throwOnLimitExceeded&&typeof o<"u"?o+1:o);if(r.throwOnLimitExceeded&&typeof o<"u"&&a.length>o)throw new RangeError("Parameter limit exceeded. Only "+o+" parameter"+(o===1?"":"s")+" allowed.");var i=-1,c,l=r.charset;if(r.charsetSentinel)for(c=0;c<a.length;++c)a[c].indexOf("utf8=")===0&&(a[c]===Za?l="utf-8":a[c]===Xa&&(l="iso-8859-1"),i=c,c=a.length);for(c=0;c<a.length;++c)if(c!==i){var f=a[c],u=f.indexOf("]="),p=u===-1?f.indexOf("="):u+1,d,h;if(p===-1?(d=r.decoder(f,q.decoder,l,"key"),h=r.strictNullHandling?null:""):(d=r.decoder(f.slice(0,p),q.decoder,l,"key"),d!==null&&(h=ce.maybeMap(jn(f.slice(p+1),r,Ut(n[d])?n[d].length:0,f.indexOf("[]=")===-1),function(g){return r.decoder(g,q.decoder,l,"value")}))),h&&r.interpretNumericEntities&&l==="iso-8859-1"&&(h=Ya(String(h))),f.indexOf("[]=")>-1&&(h=Ut(h)?[h]:h),r.comma&&Ut(h)&&h.length>r.arrayLimit&&(h=ce.combine([],h,r.arrayLimit,r.plainObjects,r.throwOnLimitExceeded)),d!==null){var y=tt.call(n,d);y&&(r.duplicates==="combine"||f.indexOf("[]=")>-1)?n[d]=ce.combine(n[d],h,r.arrayLimit,r.plainObjects,r.throwOnLimitExceeded):(!y||r.duplicates==="last")&&(n[d]=h)}}return n},ts=function(t,e,r,n){var s=0;if(t.length>0&&t[t.length-1]==="[]"){var o=t.slice(0,-1).join("");s=Array.isArray(e)&&e[o]?e[o].length:0}for(var a=n?e:jn(e,r,s),i=t.length-1;i>=0;--i){var c,l=t[i];if(l==="[]"&&r.parseArrays)ce.isOverflow(a)?c=a:c=r.allowEmptyArrays&&(a===""||r.strictNullHandling&&a===null)?[]:ce.combine([],a,r.arrayLimit,r.plainObjects,r.throwOnLimitExceeded);else{c=r.plainObjects?{__proto__:null}:{};var f=l.charAt(0)==="["&&l.charAt(l.length-1)==="]"?l.slice(1,-1):l,u=r.decodeDotInKeys?f.replace(/%2E/g,"."):f,p=parseInt(u,10),d=!isNaN(p)&&l!==u&&String(p)===u&&p>=0&&r.parseArrays;if(!r.parseArrays&&u==="")c={0:a};else if(d&&p<r.arrayLimit)c=[],c[p]=a;else{if(d&&r.throwOnLimitExceeded)throw new RangeError("Array limit exceeded. Only "+r.arrayLimit+" element"+(r.arrayLimit===1?"":"s")+" allowed in an array.");d?(c[p]=a,ce.markOverflow(c,p)):u!=="__proto__"&&(c[u]=a)}}a=c}return a},rs=function(e,r){var n=r.allowDots?e.replace(/\.([^.[]+)/g,"[$1]"):e;if(r.depth<=0)return!r.plainObjects&&tt.call(Object.prototype,n)&&!r.allowPrototypes?void 0:[n];var s=[],o=n.indexOf("["),a=o>=0?n.slice(0,o):n;if(a){if(!r.plainObjects&&tt.call(Object.prototype,a)&&!r.allowPrototypes)return;s[s.length]=a}for(var i=n.length,c=o,l=0;c>=0&&l<r.depth;){for(var f=1,u=c+1,p=-1;u<i&&p<0;){var d=n.charCodeAt(u);d===91?f+=1:d===93&&(f-=1,f===0&&(p=u)),u+=1}if(p<0)return s[s.length]="["+n.slice(c)+"]",s;var h=n.slice(c,p+1),y=h.slice(1,-1);if(!r.plainObjects&&tt.call(Object.prototype,y)&&!r.allowPrototypes)return;s[s.length]=h,l+=1,c=n.indexOf("[",p+1)}if(c>=0){if(r.strictDepth===!0)throw new RangeError("Input depth exceeded depth option of "+r.depth+" and strictDepth is true");s[s.length]="["+n.slice(c)+"]"}return s},ns=function(e,r,n,s){if(e){var o=rs(e,n);if(o)return ts(o,r,n,s)}},os=function(e){if(!e)return q;if(typeof e.allowEmptyArrays<"u"&&typeof e.allowEmptyArrays!="boolean")throw new TypeError("`allowEmptyArrays` option can only be `true` or `false`, when provided");if(typeof e.decodeDotInKeys<"u"&&typeof e.decodeDotInKeys!="boolean")throw new TypeError("`decodeDotInKeys` option can only be `true` or `false`, when provided");if(e.decoder!==null&&typeof e.decoder<"u"&&typeof e.decoder!="function")throw new TypeError("Decoder has to be a function.");if(typeof e.charset<"u"&&e.charset!=="utf-8"&&e.charset!=="iso-8859-1")throw new TypeError("The charset option must be either utf-8, iso-8859-1, or undefined");if(typeof e.throwOnLimitExceeded<"u"&&typeof e.throwOnLimitExceeded!="boolean")throw new TypeError("`throwOnLimitExceeded` option must be a boolean");var r=typeof e.charset>"u"?q.charset:e.charset,n=typeof e.duplicates>"u"?q.duplicates:e.duplicates;if(n!=="combine"&&n!=="first"&&n!=="last")throw new TypeError("The duplicates option must be either combine, first, or last");var s=typeof e.allowDots>"u"?e.decodeDotInKeys===!0?!0:q.allowDots:!!e.allowDots;return{allowDots:s,allowEmptyArrays:typeof e.allowEmptyArrays=="boolean"?!!e.allowEmptyArrays:q.allowEmptyArrays,allowPrototypes:typeof e.allowPrototypes=="boolean"?e.allowPrototypes:q.allowPrototypes,allowSparse:typeof e.allowSparse=="boolean"?e.allowSparse:q.allowSparse,arrayLimit:typeof e.arrayLimit=="number"?e.arrayLimit:q.arrayLimit,charset:r,charsetSentinel:typeof e.charsetSentinel=="boolean"?e.charsetSentinel:q.charsetSentinel,comma:typeof e.comma=="boolean"?e.comma:q.comma,decodeDotInKeys:typeof e.decodeDotInKeys=="boolean"?e.decodeDotInKeys:q.decodeDotInKeys,decoder:typeof e.decoder=="function"?e.decoder:q.decoder,delimiter:typeof e.delimiter=="string"||ce.isRegExp(e.delimiter)?e.delimiter:q.delimiter,depth:typeof e.depth=="number"||e.depth===!1?+e.depth:q.depth,duplicates:n,ignoreQueryPrefix:e.ignoreQueryPrefix===!0,interpretNumericEntities:typeof e.interpretNumericEntities=="boolean"?e.interpretNumericEntities:q.interpretNumericEntities,parameterLimit:typeof e.parameterLimit=="number"?e.parameterLimit:q.parameterLimit,parseArrays:e.parseArrays!==!1,plainObjects:typeof e.plainObjects=="boolean"?e.plainObjects:q.plainObjects,strictDepth:typeof e.strictDepth=="boolean"?!!e.strictDepth:q.strictDepth,strictMerge:typeof e.strictMerge=="boolean"?!!e.strictMerge:q.strictMerge,strictNullHandling:typeof e.strictNullHandling=="boolean"?e.strictNullHandling:q.strictNullHandling,throwOnLimitExceeded:typeof e.throwOnLimitExceeded=="boolean"?e.throwOnLimitExceeded:!1}},is=function(t,e){var r=os(e);if(t===""||t===null||typeof t>"u")return r.plainObjects?{__proto__:null}:{};for(var n=typeof t=="string"?es(t,r):t,s=r.plainObjects?{__proto__:null}:{},o=Object.keys(n),a=0;a<o.length;++a){var i=o[a],c=ns(i,n[i],r,typeof t=="string");s=ce.merge(s,c,r)}return r.allowSparse===!0?s:ce.compact(s)},as=Qa,ss=is,cs=nr,rt={formats:cs,parse:ss,stringify:as},ls=$o;function te(){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}var fs=/^([a-z0-9.+-]+:)/i,us=/:[0-9]*$/,ps=/^(\/\/?(?!\/)[^?\s]*)(\?[^\s]*)?$/,ds=["<",">",'"',"`"," ","\r",`
48
+ `," "],hs=["{","}","|","\\","^","`"].concat(ds),Kt=["'"].concat(hs),Jr=["%","/","?",";","#"].concat(Kt),zr=["/","?","#"],ys=255,Vr=/^[+a-z0-9A-Z_-]{0,63}$/,ms=/^([+a-z0-9A-Z_-]{0,63})(.*)$/,gs={javascript:!0,"javascript:":!0},Dt={javascript:!0,"javascript:":!0},Ae={http:!0,https:!0,ftp:!0,gopher:!0,file:!0,"http:":!0,"https:":!0,"ftp:":!0,"gopher:":!0,"file:":!0},Qt=rt;function or(t,e,r){if(t&&typeof t=="object"&&t instanceof te)return t;var n=new te;return n.parse(t,e,r),n}te.prototype.parse=function(t,e,r){if(typeof t!="string")throw new TypeError("Parameter 'url' must be a string, not "+typeof t);var n=t.indexOf("?"),s=n!==-1&&n<t.indexOf("#")?"?":"#",o=t.split(s),a=/\\/g;o[0]=o[0].replace(a,"/"),t=o.join(s);var i=t;if(i=i.trim(),!r&&t.split("#").length===1){var c=ps.exec(i);if(c)return this.path=i,this.href=i,this.pathname=c[1],c[2]?(this.search=c[2],e?this.query=Qt.parse(this.search.substr(1)):this.query=this.search.substr(1)):e&&(this.search="",this.query={}),this}var l=fs.exec(i);if(l){l=l[0];var f=l.toLowerCase();this.protocol=f,i=i.substr(l.length)}if(r||l||i.match(/^\/\/[^@/]+@[^@/]+/)){var u=i.substr(0,2)==="//";u&&!(l&&Dt[l])&&(i=i.substr(2),this.slashes=!0)}if(!Dt[l]&&(u||l&&!Ae[l])){for(var p=-1,d=0;d<zr.length;d++){var h=i.indexOf(zr[d]);h!==-1&&(p===-1||h<p)&&(p=h)}var y,g;p===-1?g=i.lastIndexOf("@"):g=i.lastIndexOf("@",p),g!==-1&&(y=i.slice(0,g),i=i.slice(g+1),this.auth=decodeURIComponent(y)),p=-1;for(var d=0;d<Jr.length;d++){var h=i.indexOf(Jr[d]);h!==-1&&(p===-1||h<p)&&(p=h)}p===-1&&(p=i.length),this.host=i.slice(0,p),i=i.slice(p),this.parseHost(),this.hostname=this.hostname||"";var $=this.hostname[0]==="["&&this.hostname[this.hostname.length-1]==="]";if(!$)for(var m=this.hostname.split(/\./),d=0,b=m.length;d<b;d++){var S=m[d];if(S&&!S.match(Vr)){for(var O="",v=0,P=S.length;v<P;v++)S.charCodeAt(v)>127?O+="x":O+=S[v];if(!O.match(Vr)){var T=m.slice(0,d),k=m.slice(d+1),U=S.match(ms);U&&(T.push(U[1]),k.unshift(U[2])),k.length&&(i="/"+k.join(".")+i),this.hostname=T.join(".");break}}}this.hostname.length>ys?this.hostname="":this.hostname=this.hostname.toLowerCase(),$||(this.hostname=ls.toASCII(this.hostname));var Y=this.port?":"+this.port:"",X=this.hostname||"";this.host=X+Y,this.href+=this.host,$&&(this.hostname=this.hostname.substr(1,this.hostname.length-2),i[0]!=="/"&&(i="/"+i))}if(!gs[f])for(var d=0,b=Kt.length;d<b;d++){var _=Kt[d];if(i.indexOf(_)!==-1){var J=encodeURIComponent(_);J===_&&(J=escape(_)),i=i.split(_).join(J)}}var B=i.indexOf("#");B!==-1&&(this.hash=i.substr(B),i=i.slice(0,B));var V=i.indexOf("?");if(V!==-1?(this.search=i.substr(V),this.query=i.substr(V+1),e&&(this.query=Qt.parse(this.query)),i=i.slice(0,V)):e&&(this.search="",this.query={}),i&&(this.pathname=i),Ae[f]&&this.hostname&&!this.pathname&&(this.pathname="/"),this.pathname||this.search){var Y=this.pathname||"",pe=this.search||"";this.path=Y+pe}return this.href=this.format(),this};function bs(t){return typeof t=="string"&&(t=or(t)),t instanceof te?t.format():te.prototype.format.call(t)}te.prototype.format=function(){var t=this.auth||"";t&&(t=encodeURIComponent(t),t=t.replace(/%3A/i,":"),t+="@");var e=this.protocol||"",r=this.pathname||"",n=this.hash||"",s=!1,o="";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=Qt.stringify(this.query,{arrayFormat:"repeat",addQueryPrefix:!1}));var a=this.search||o&&"?"+o||"";return e&&e.substr(-1)!==":"&&(e+=":"),this.slashes||(!e||Ae[e])&&s!==!1?(s="//"+(s||""),r&&r.charAt(0)!=="/"&&(r="/"+r)):s||(s=""),n&&n.charAt(0)!=="#"&&(n="#"+n),a&&a.charAt(0)!=="?"&&(a="?"+a),r=r.replace(/[?#]/g,function(i){return encodeURIComponent(i)}),a=a.replace("#","%23"),e+s+r+a+n};te.prototype.resolve=function(t){return this.resolveObject(or(t,!1,!0)).format()};te.prototype.resolveObject=function(t){if(typeof t=="string"){var e=new te;e.parse(t,!1,!0),t=e}for(var r=new te,n=Object.keys(this),s=0;s<n.length;s++){var o=n[s];r[o]=this[o]}if(r.hash=t.hash,t.href==="")return r.href=r.format(),r;if(t.slashes&&!t.protocol){for(var a=Object.keys(t),i=0;i<a.length;i++){var c=a[i];c!=="protocol"&&(r[c]=t[c])}return Ae[r.protocol]&&r.hostname&&!r.pathname&&(r.pathname="/",r.path=r.pathname),r.href=r.format(),r}if(t.protocol&&t.protocol!==r.protocol){if(!Ae[t.protocol]){for(var l=Object.keys(t),f=0;f<l.length;f++){var u=l[f];r[u]=t[u]}return r.href=r.format(),r}if(r.protocol=t.protocol,!t.host&&!Dt[t.protocol]){for(var b=(t.pathname||"").split("/");b.length&&!(t.host=b.shift()););t.host||(t.host=""),t.hostname||(t.hostname=""),b[0]!==""&&b.unshift(""),b.length<2&&b.unshift(""),r.pathname=b.join("/")}else r.pathname=t.pathname;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){var p=r.pathname||"",d=r.search||"";r.path=p+d}return r.slashes=r.slashes||t.slashes,r.href=r.format(),r}var h=r.pathname&&r.pathname.charAt(0)==="/",y=t.host||t.pathname&&t.pathname.charAt(0)==="/",g=y||h||r.host&&t.pathname,$=g,m=r.pathname&&r.pathname.split("/")||[],b=t.pathname&&t.pathname.split("/")||[],S=r.protocol&&!Ae[r.protocol];if(S&&(r.hostname="",r.port=null,r.host&&(m[0]===""?m[0]=r.host:m.unshift(r.host)),r.host="",t.protocol&&(t.hostname=null,t.port=null,t.host&&(b[0]===""?b[0]=t.host:b.unshift(t.host)),t.host=null),g=g&&(b[0]===""||m[0]==="")),y)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,m=b;else if(b.length)m||(m=[]),m.pop(),m=m.concat(b),r.search=t.search,r.query=t.query;else if(t.search!=null){if(S){r.host=m.shift(),r.hostname=r.host;var O=r.host&&r.host.indexOf("@")>0?r.host.split("@"):!1;O&&(r.auth=O.shift(),r.hostname=O.shift(),r.host=r.hostname)}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}if(!m.length)return r.pathname=null,r.search?r.path="/"+r.search:r.path=null,r.href=r.format(),r;for(var v=m.slice(-1)[0],P=(r.host||t.host||m.length>1)&&(v==="."||v==="..")||v==="",T=0,k=m.length;k>=0;k--)v=m[k],v==="."?m.splice(k,1):v===".."?(m.splice(k,1),T++):T&&(m.splice(k,1),T--);if(!g&&!$)for(;T--;T)m.unshift("..");g&&m[0]!==""&&(!m[0]||m[0].charAt(0)!=="/")&&m.unshift(""),P&&m.join("/").substr(-1)!=="/"&&m.push("");var U=m[0]===""||m[0]&&m[0].charAt(0)==="/";if(S){r.hostname=U?"":m.length?m.shift():"",r.host=r.hostname;var O=r.host&&r.host.indexOf("@")>0?r.host.split("@"):!1;O&&(r.auth=O.shift(),r.hostname=O.shift(),r.host=r.hostname)}return g=g||r.host&&m.length,g&&!U&&m.unshift(""),m.length>0?r.pathname=m.join("/"):(r.pathname=null,r.path=null),(r.pathname!==null||r.search!==null)&&(r.path=(r.pathname?r.pathname:"")+(r.search?r.search:"")),r.auth=t.auth||r.auth,r.slashes=r.slashes||t.slashes,r.href=r.format(),r};te.prototype.parseHost=function(){var t=this.host,e=us.exec(t);e&&(e=e[0],e!==":"&&(this.port=e.substr(1)),t=t.substr(0,t.length-e.length)),t&&(this.hostname=t)};var $s=or,Kr=bs;const vs=()=>Object.keys(Pe).map(t=>({...Pe[t].info,clients:Object.keys(Pe[t].clientsById).map(e=>Pe[t].clientsById[e].info)})),ws=t=>typeof t=="object"&&"log"in t&&typeof t.log=="object"&&"entries"in t.log&&Array.isArray(t.log.entries);var Ss=class{constructor(t,e={}){this.initCalled=!1,this.entries=[],this.requests=[],this.options={},this.options={harIsAlreadyEncoded:!1,...e},this.requests=[],ws(t)?this.entries=t.log.entries:this.entries=[{request:t}]}init(){return this.initCalled=!0,this.requests=this.entries.map(({request:t})=>{var r;const e={bodySize:0,headersSize:0,headers:[],cookies:[],httpVersion:"HTTP/1.1",queryString:[],postData:{mimeType:((r=t.postData)==null?void 0:r.mimeType)||"application/octet-stream"},...t};return e.postData&&!e.postData.mimeType&&(e.postData.mimeType="application/octet-stream"),this.prepare(e,this.options)}),this}prepare(t,e){var f,u,p;const r={...t,fullUrl:"",uriObj:{},queryObj:{},headersObj:{},cookiesObj:{},allHeaders:{}};if(r!=null&&r.queryString.length&&(r.queryObj=r.queryString.reduce(mr,{})),r!=null&&r.headers.length){const d=/^HTTP\/2/;r.headersObj=r.headers.reduce((h,{name:y,value:g})=>{const $=d.exec(r.httpVersion)?y.toLocaleLowerCase():y;return{...h,[$]:g}},{})}r!=null&&r.cookies.length&&(r.cookiesObj=r.cookies.reduceRight((d,{name:h,value:y})=>({...d,[h]:y}),{}));const n=(f=r.cookies)==null?void 0:f.map(({name:d,value:h})=>e.harIsAlreadyEncoded?`${d}=${h}`:`${encodeURIComponent(d)}=${encodeURIComponent(h)}`);switch(n!=null&&n.length&&(r.allHeaders.cookie=n.join("; ")),r.postData.mimeType){case"multipart/mixed":case"multipart/related":case"multipart/form-data":case"multipart/alternative":if(r.postData.text="",r.postData.mimeType="multipart/form-data",(u=r.postData)!=null&&u.params){const d="---011000010111000001101001",h=`${d}--`,y=`\r
49
+ `;/*! formdata-polyfill. MIT License. Jimmy Wärting <https://jimmy.warting.se/opensource> */const g=S=>S.replace(/\n/g,"%0A").replace(/\r/g,"%0D").replace(/"/g,"%22"),$=S=>S.replace(/\r?\n|\r/g,`\r
50
+ `),m=[`--${d}`];(p=r.postData)==null||p.params.forEach((S,O)=>{const v=S.name,P=S.value||"",T=S.fileName||null,k=S.contentType||"application/octet-stream";T?(m.push(`Content-Disposition: form-data; name="${g($(v))}"; filename="${T}"`),m.push(`Content-Type: ${k}`)):m.push(`Content-Disposition: form-data; name="${escape($(v))}"`),m.push(""),m.push($(P)),O!==r.postData.params.length-1&&m.push(`--${d}`)}),m.push(`--${h}`),r.postData.boundary=d,r.postData.text=m.join(y);const b=G(r.headersObj,"content-type")||"content-type";r.headersObj[b]=`multipart/form-data; boundary=${d}`}break;case"application/x-www-form-urlencoded":r.postData.params?(r.postData.paramsObj=r.postData.params.reduce(mr,{}),r.postData.text=rt.stringify(r.postData.paramsObj)):r.postData.text="";break;case"text/json":case"text/x-json":case"application/json":case"application/x-json":if(r.postData.mimeType="application/json",r.postData.text)try{r.postData.jsonObj=JSON.parse(r.postData.text)}catch{r.postData.mimeType="text/plain"}break}const s={...r.allHeaders,...r.headersObj},o=$s(r.url,!0,!0);r.queryObj={...r.queryObj,...o.query};let a;e.harIsAlreadyEncoded?a=rt.stringify(r.queryObj,{encode:!1,indices:!1}):a=rt.stringify(r.queryObj,{indices:!1});const i={...o,query:r.queryObj,search:a,path:a?`${o.pathname}?${a}`:o.pathname},c=Kr({...o,query:null,search:null}),l=Kr({...o,...i});return{...r,allHeaders:s,fullUrl:l,url:c,uriObj:i}}convert(t,e,r){this.initCalled||this.init(),!r&&e&&(r={clientId:e});const n=Pe[t];if(!n)return[!1];const{convert:s}=n.clientsById[e||n.info.default];return this.requests.map(o=>s(o,r))}installation(t,e,r){this.initCalled||this.init(),!r&&e&&(r={clientId:e});const n=Pe[t];if(!n)return[!1];const{info:s}=n.clientsById[e||n.info.default];return this.requests.map(o=>s!=null&&s.installation?s.installation(o,r):!1)}};const Pn="agent",Cn="prompt";function Os(){return vs()}function Ts(t){var n;const e=t==null?void 0:t[0];if(!e)return"http://localhost";let r=e.url;for(const[s,o]of Object.entries(e.variables??{})){const a=o.default??((n=o.enum)==null?void 0:n[0])??`{${s}}`;r=r.replace(new RegExp(`\\{${s}\\}`,"g"),String(a))}return r}function xs(t){if(t.example!==void 0||t.examples&&Object.keys(t.examples).length>0)return!0;const e=t.schema;return!!((e==null?void 0:e.example)!==void 0||e!=null&&e.enum&&e.enum.length>0)}function kn(t){if(t.example!==void 0)return String(t.example);if(t.examples){for(const r of Object.values(t.examples))if(r&&typeof r=="object"&&"value"in r&&r.value!==void 0)return String(r.value)}const e=t.schema;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}}`}function Es(t,e,r){const n=e.replace(/\{([^}]+)\}/g,(s,o)=>{const a=r.find(c=>c.in==="path"&&c.name===o);if(!a)return s;const i=kn(a);return i===`{${o}}`?i:encodeURIComponent(i)});return`${t.replace(/\/$/,"")}${n}`}function js(t,e){var s;const r=t[0];if(!r||!e)return[];const n=[];for(const o of Object.keys(r)){const a=e[o];if(a)if(a.type==="apiKey"){const i=a.in==="query"||a.in==="cookie"?a.in:"header";n.push({location:i,name:a.name,value:"YOUR_API_KEY"})}else if(a.type==="http"){const i=((s=a.scheme)==null?void 0:s.toLowerCase())==="basic";n.push({location:"header",name:"Authorization",value:i?"Basic BASE64_ENCODED_CREDENTIALS":"Bearer YOUR_ACCESS_TOKEN"})}else(a.type==="oauth2"||a.type==="openIdConnect")&&n.push({location:"header",name:"Authorization",value:"Bearer YOUR_ACCESS_TOKEN"})}return n}function Ps(t){const e=t==null?void 0:t.content;if(!e)return null;const r="application/json"in e?"application/json":Object.keys(e)[0];if(!r)return null;const n=e[r];let s=n.example;if(s===void 0&&n.examples){for(const o of Object.values(n.examples))if(o&&typeof o=="object"&&"value"in o&&o.value!==void 0){s=o.value;break}}return{contentType:r,schema:n.schema,authorExample:s}}function Cs(t){const e=Ts(t.servers),r=Es(e,t.path,t.parameters),n=js(t.security,t.securitySchemes),s=[],o=[],a=[];for(const c of n)(c.location==="header"?s:c.location==="query"?o:a).push({name:c.name,value:c.value});for(const c of t.parameters)c.in==="query"&&(c.required||xs(c))&&o.push({name:c.name,value:kn(c)});const i={method:t.method.toUpperCase(),url:r,httpVersion:"HTTP/1.1",headers:s,queryString:o,cookies:a};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}function ks(t,e,r){try{const n=new Ss(t),[s]=n.convert(e,r);return typeof s=="string"?s:""}catch{return""}}const As=`${Pn}:${Cn}`;function Rs({method:t,path:e,parameters:r,requestBody:n,security:s,id:o}){var P;const{document:a,deref:i,showCodeSamples:c}=D.useDocumentContext(),l=a,f=ne.useId(),u=ne.useMemo(()=>Os(),[]),[p,d]=ne.useState(As),[h,y]=p.split(":"),g=D.hljsLanguageForTarget(h),$=ne.useMemo(()=>Ps(n),[n]),[m,b]=ne.useState(void 0);ne.useEffect(()=>{if(b(void 0),!$||$.authorExample!==void 0||!$.schema)return;let T=!1;return An($.schema).then(k=>{T||b(k)}),()=>{T=!0}},[$]);const[,S]=ne.useState(()=>D.isHljsLanguageReady(g));ne.useEffect(()=>{S(D.isHljsLanguageReady(g));let T=!1;return D.ensureHljsLanguage(g).then(()=>{T||S(!0)}),()=>{T=!0}},[g]);const O=ne.useMemo(()=>{var T;return Cs({method:t,path:e,servers:l.servers,parameters:r,security:s,securitySchemes:(T=l.components)==null?void 0:T.securitySchemes,media:$,resolvedBodyValue:($==null?void 0:$.authorExample)??m})},[t,e,l.servers,r,s,(P=l.components)==null?void 0:P.securitySchemes,$,m]),v=ne.useMemo(()=>h===Pn&&y===Cn?D.openApiEndpointToMarkdown(l,t,e,i):ks(O,h,y),[O,h,y,l,t,e,i]);return c?ge.jsxs("div",{id:`endpoint-${o}-code-samples`,children:[ge.jsxs("div",{className:"flex items-center justify-between mb-2",children:[ge.jsx("label",{htmlFor:f,className:"text-xs font-medium text-foreground-muted uppercase tracking-wider",children:"Example Request"}),ge.jsx("select",{id:f,value:p,onChange:T=>d(T.target.value),"aria-label":"Code sample language",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",children:u.map(T=>ge.jsx("optgroup",{label:T.title,children:T.clients.map(k=>ge.jsx("option",{value:`${T.key}:${k.key}`,children:k.title},k.key))},T.key))})]}),ge.jsx(D.CodeBlock,{code:v,language:g})]}):null}exports.CodeSamples=Rs;