hook-fetch 2.0.5 → 2.0.7
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.en.md +22 -8
- package/README.md +22 -8
- package/dist/cjs/index.cjs +3 -2
- package/dist/cjs/plugins/index.cjs +1 -1
- package/dist/cjs/plugins/sse.cjs +1 -1
- package/dist/cjs/react/index.cjs +2 -1
- package/dist/{sse-BcLGP_P_.cjs → cjs/sse.cjs} +2 -1
- package/dist/cjs/vue/index.cjs +2 -1
- package/dist/es/index.mjs +3 -2
- package/dist/es/plugins/index.mjs +1 -1
- package/dist/es/plugins/sse.mjs +1 -1
- package/dist/es/react/index.mjs +2 -1
- package/dist/{sse-D_UhnGyk.js → es/sse.mjs} +2 -1
- package/dist/es/vue/index.mjs +2 -1
- package/dist/umd/index.js +5 -4
- package/package.json +19 -14
- package/types/index-9UX4E7wG.d.ts +107 -0
- package/types/index.d.ts +3 -6
- package/types/plugins/index.d.ts +3 -1
- package/types/plugins/sse.d.ts +3 -45
- package/types/react/index.d.ts +23 -31
- package/types/sse-DPRkQwhR.d.ts +23 -0
- package/types/types-CAGBd7wv.d.ts +110 -0
- package/types/vue/index.d.ts +22 -29
- package/types/base.d.ts +0 -41
- package/types/enum.d.ts +0 -26
- package/types/error.d.ts +0 -19
- package/types/types.d.ts +0 -92
- package/types/umd.d.ts +0 -7
- package/types/utils.d.ts +0 -38
- /package/dist/{chunk-mbd8xe7s.cjs → cjs/chunk.cjs} +0 -0
package/README.en.md
CHANGED
|
@@ -190,14 +190,22 @@ const examplePlugin = () => {
|
|
|
190
190
|
},
|
|
191
191
|
|
|
192
192
|
// Post-response processing
|
|
193
|
-
async afterResponse(context
|
|
194
|
-
// Can process response data
|
|
193
|
+
async afterResponse(context) {
|
|
194
|
+
// Can process response data. context.result is the result after being processed by methods like json()
|
|
195
195
|
if (context.responseType === 'json') {
|
|
196
|
+
// For example, determine if the request is truly successful based on the backend's business code
|
|
196
197
|
if(context.result.code === 200){
|
|
198
|
+
// Business success, return context directly
|
|
197
199
|
return context
|
|
198
200
|
}else{
|
|
199
|
-
//
|
|
200
|
-
|
|
201
|
+
// Business failure, actively throw a ResponseError, which will be caught in the onError hook
|
|
202
|
+
throw new ResponseError({
|
|
203
|
+
message: context.result.message, // Use the error message from the backend
|
|
204
|
+
status: context.result.code, // Use the business code as the status
|
|
205
|
+
response: context.response, // Original Response object
|
|
206
|
+
config: context.config,
|
|
207
|
+
name: 'BusinessError' // Custom error name
|
|
208
|
+
});
|
|
201
209
|
}
|
|
202
210
|
}
|
|
203
211
|
return context;
|
|
@@ -219,12 +227,18 @@ const examplePlugin = () => {
|
|
|
219
227
|
},
|
|
220
228
|
|
|
221
229
|
// Error handling
|
|
222
|
-
async onError(error
|
|
223
|
-
//
|
|
224
|
-
|
|
230
|
+
async onError(error) {
|
|
231
|
+
// The error object could be a network error or a ResponseError thrown from afterResponse
|
|
232
|
+
// You can handle errors uniformly here, e.g., reporting, logging, or transforming the error info
|
|
233
|
+
if (error.name === 'BusinessError') {
|
|
234
|
+
// Handle custom business errors
|
|
235
|
+
console.error(`Business Error: ${error.message}`);
|
|
236
|
+
} else if (error.status === 401) {
|
|
225
237
|
// Handle unauthorized error
|
|
226
|
-
|
|
238
|
+
console.error('Login has expired, please log in again');
|
|
239
|
+
// window.location.href = '/login';
|
|
227
240
|
}
|
|
241
|
+
// Re-throw the processed (or original) error so it can be caught by the final catch block
|
|
228
242
|
return error;
|
|
229
243
|
},
|
|
230
244
|
|
package/README.md
CHANGED
|
@@ -190,14 +190,22 @@ const examplePlugin = () => {
|
|
|
190
190
|
},
|
|
191
191
|
|
|
192
192
|
// 响应接收后处理
|
|
193
|
-
async afterResponse(context
|
|
194
|
-
//
|
|
193
|
+
async afterResponse(context) {
|
|
194
|
+
// 可以处理响应数据, context.result 是已经过 json() 等方法处理后的结果
|
|
195
195
|
if (context.responseType === 'json') {
|
|
196
|
+
// 例如,根据后端的业务码判断请求是否真正成功
|
|
196
197
|
if(context.result.code === 200){
|
|
198
|
+
// 业务成功,直接返回 context
|
|
197
199
|
return context
|
|
198
200
|
}else{
|
|
199
|
-
//
|
|
200
|
-
|
|
201
|
+
// 业务失败,主动抛出一个 ResponseError,它将在 onError 钩子中被捕获
|
|
202
|
+
throw new ResponseError({
|
|
203
|
+
message: context.result.message, // 使用后端的错误信息
|
|
204
|
+
status: context.result.code, // 使用后端的业务码作为状态
|
|
205
|
+
response: context.response, // 原始 Response 对象
|
|
206
|
+
config: context.config,
|
|
207
|
+
name: 'BusinessError' // 自定义错误名称
|
|
208
|
+
});
|
|
201
209
|
}
|
|
202
210
|
}
|
|
203
211
|
return context;
|
|
@@ -219,12 +227,18 @@ const examplePlugin = () => {
|
|
|
219
227
|
},
|
|
220
228
|
|
|
221
229
|
// 错误处理
|
|
222
|
-
async onError(error
|
|
223
|
-
//
|
|
224
|
-
|
|
230
|
+
async onError(error) {
|
|
231
|
+
// error 对象可能是网络错误,也可能是 afterResponse 中抛出的 ResponseError
|
|
232
|
+
// 可以在这里统一处理错误,例如上报、记录日志或转换错误信息
|
|
233
|
+
if (error.name === 'BusinessError') {
|
|
234
|
+
// 处理自定义的业务错误
|
|
235
|
+
console.error(`业务错误: ${error.message}`);
|
|
236
|
+
} else if (error.status === 401) {
|
|
225
237
|
// 处理未授权错误
|
|
226
|
-
|
|
238
|
+
console.error('登录已过期,请重新登录');
|
|
239
|
+
// window.location.href = '/login';
|
|
227
240
|
}
|
|
241
|
+
// 将处理后的(或原始的)错误继续抛出,以便最终的 catch 块可以捕获
|
|
228
242
|
return error;
|
|
229
243
|
},
|
|
230
244
|
|
package/dist/cjs/index.cjs
CHANGED
|
@@ -1,4 +1,5 @@
|
|
|
1
|
-
Object.defineProperty(exports,`__esModule`,{value:!0});const e=require(
|
|
1
|
+
Object.defineProperty(exports,`__esModule`,{value:!0});const e=require(`./chunk.cjs`);var t=e.__commonJSMin((exports,t)=>{t.exports=TypeError}),n=e.__commonJSMin((exports,t)=>{t.exports=require(`util`).inspect}),r=e.__commonJSMin((exports,t)=>{var r=typeof Map==`function`&&Map.prototype,i=Object.getOwnPropertyDescriptor&&r?Object.getOwnPropertyDescriptor(Map.prototype,`size`):null,a=r&&i&&typeof i.get==`function`?i.get:null,o=r&&Map.prototype.forEach,s=typeof Set==`function`&&Set.prototype,c=Object.getOwnPropertyDescriptor&&s?Object.getOwnPropertyDescriptor(Set.prototype,`size`):null,l=s&&c&&typeof c.get==`function`?c.get:null,u=s&&Set.prototype.forEach,d=typeof WeakMap==`function`&&WeakMap.prototype,f=d?WeakMap.prototype.has:null,p=typeof WeakSet==`function`&&WeakSet.prototype,m=p?WeakSet.prototype.has:null,h=typeof WeakRef==`function`&&WeakRef.prototype,g=h?WeakRef.prototype.deref:null,_=Boolean.prototype.valueOf,v=Object.prototype.toString,y=Function.prototype.toString,b=String.prototype.match,x=String.prototype.slice,S=String.prototype.replace,C=String.prototype.toUpperCase,w=String.prototype.toLowerCase,T=RegExp.prototype.test,E=Array.prototype.concat,D=Array.prototype.join,O=Array.prototype.slice,k=Math.floor,ee=typeof BigInt==`function`?BigInt.prototype.valueOf:null,A=Object.getOwnPropertySymbols,j=typeof Symbol==`function`&&typeof Symbol.iterator==`symbol`?Symbol.prototype.toString:null,M=typeof Symbol==`function`&&typeof Symbol.iterator==`object`,N=typeof Symbol==`function`&&Symbol.toStringTag&&(typeof Symbol.toStringTag===M||`symbol`)?Symbol.toStringTag:null,te=Object.prototype.propertyIsEnumerable,P=(typeof Reflect==`function`?Reflect.getPrototypeOf:Object.getPrototypeOf)||([].__proto__===Array.prototype?function(e){return e.__proto__}:null);function F(e,t){if(e===1/0||e===-1/0||e!==e||e&&e>-1e3&&e<1e3||T.call(/e/,t))return t;var n=/[0-9](?=(?:[0-9]{3})+(?![0-9]))/g;if(typeof e==`number`){var r=e<0?-k(-e):k(e);if(r!==e){var i=String(r),a=x.call(t,i.length+1);return S.call(i,n,`$&_`)+`.`+S.call(S.call(a,/([0-9]{3})/g,`$&_`),/_$/,``)}}return S.call(t,n,`$&_`)}var I=n(),L=I.custom,R=G(L)?L:null,ne={__proto__:null,double:`"`,single:`'`},z={__proto__:null,double:/(["\\])/g,single:/(['\\])/g};t.exports=function e(t,n,r,i){var s=n||{};if(q(s,`quoteStyle`)&&!q(ne,s.quoteStyle))throw TypeError(`option "quoteStyle" must be "single" or "double"`);if(q(s,`maxStringLength`)&&(typeof s.maxStringLength==`number`?s.maxStringLength<0&&s.maxStringLength!==1/0:s.maxStringLength!==null))throw TypeError('option "maxStringLength", if provided, must be a positive integer, Infinity, or `null`');var c=q(s,`customInspect`)?s.customInspect:!0;if(typeof c!=`boolean`&&c!==`symbol`)throw TypeError("option \"customInspect\", if provided, must be `true`, `false`, or `'symbol'`");if(q(s,`indent`)&&s.indent!==null&&s.indent!==` `&&!(parseInt(s.indent,10)===s.indent&&s.indent>0))throw TypeError('option "indent" must be "\\t", an integer > 0, or `null`');if(q(s,`numericSeparator`)&&typeof s.numericSeparator!=`boolean`)throw TypeError('option "numericSeparator", if provided, must be `true` or `false`');var d=s.numericSeparator;if(t===void 0)return`undefined`;if(t===null)return`null`;if(typeof t==`boolean`)return t?`true`:`false`;if(typeof t==`string`)return Z(t,s);if(typeof t==`number`){if(t===0)return 1/0/t>0?`0`:`-0`;var f=String(t);return d?F(t,f):f}if(typeof t==`bigint`){var p=String(t)+`n`;return d?F(t,p):p}var m=s.depth===void 0?5:s.depth;if(r===void 0&&(r=0),r>=m&&m>0&&typeof t==`object`)return ae(t)?`[Array]`:`[Object]`;var h=ye(s,r);if(i===void 0)i=[];else if(ue(i,t)>=0)return`[Circular]`;function g(t,n,a){if(n&&(i=O.call(i),i.push(n)),a){var o={depth:s.depth};return q(s,`quoteStyle`)&&(o.quoteStyle=s.quoteStyle),e(t,o,r+1,i)}return e(t,s,r+1,i)}if(typeof t==`function`&&!V(t)){var v=le(t),y=xe(t,g);return`[Function`+(v?`: `+v:` (anonymous)`)+`]`+(y.length>0?` { `+D.call(y,`, `)+` }`:``)}if(G(t)){var b=M?S.call(String(t),/^(Symbol\(.*\))_[^)]*$/,`$1`):j.call(t);return typeof t==`object`&&!M?he(b):b}if(X(t)){for(var C=`<`+w.call(String(t.nodeName)),T=t.attributes||[],k=0;k<T.length;k++)C+=` `+T[k].name+`=`+re(ie(T[k].value),`double`,s);return C+=`>`,t.childNodes&&t.childNodes.length&&(C+=`...`),C+=`</`+w.call(String(t.nodeName))+`>`,C}if(ae(t)){if(t.length===0)return`[]`;var A=xe(t,g);return h&&!ve(A)?`[`+be(A,h)+`]`:`[ `+D.call(A,`, `)+` ]`}if(H(t)){var L=xe(t,g);return!(`cause`in Error.prototype)&&`cause`in t&&!te.call(t,`cause`)?`{ [`+String(t)+`] `+D.call(E.call(`[cause]: `+g(t.cause),L),`, `)+` }`:L.length===0?`[`+String(t)+`]`:`{ [`+String(t)+`] `+D.call(L,`, `)+` }`}if(typeof t==`object`&&c){if(R&&typeof t[R]==`function`&&I)return I(t,{depth:m-r});if(c!==`symbol`&&typeof t.inspect==`function`)return t.inspect()}if(de(t)){var z=[];return o&&o.call(t,function(e,n){z.push(g(n,t,!0)+` => `+g(e,t))}),_e(`Map`,a.call(t),z,h)}if(pe(t)){var B=[];return u&&u.call(t,function(e){B.push(g(e,t))}),_e(`Set`,l.call(t),B,h)}if(Y(t))return ge(`WeakMap`);if(me(t))return ge(`WeakSet`);if(fe(t))return ge(`WeakRef`);if(W(t))return he(g(Number(t)));if(ce(t))return he(g(ee.call(t)));if(se(t))return he(_.call(t));if(U(t))return he(g(String(t)));if(typeof window<`u`&&t===window)return`{ [object Window] }`;if(typeof globalThis<`u`&&t===globalThis||typeof global<`u`&&t===global)return`{ [object globalThis] }`;if(!oe(t)&&!V(t)){var K=xe(t,g),Q=P?P(t)===Object.prototype:t instanceof Object||t.constructor===Object,Se=t instanceof Object?``:`null prototype`,Ce=!Q&&N&&Object(t)===t&&N in t?x.call(J(t),8,-1):Se?`Object`:``,$=Q||typeof t.constructor!=`function`?``:t.constructor.name?t.constructor.name+` `:``,we=$+(Ce||Se?`[`+D.call(E.call([],Ce||[],Se||[]),`: `)+`] `:``);return K.length===0?we+`{}`:h?we+`{`+be(K,h)+`}`:we+`{ `+D.call(K,`, `)+` }`}return String(t)};function re(e,t,n){var r=n.quoteStyle||t,i=ne[r];return i+e+i}function ie(e){return S.call(String(e),/"/g,`"`)}function B(e){return!N||!(typeof e==`object`&&(N in e||e[N]!==void 0))}function ae(e){return J(e)===`[object Array]`&&B(e)}function oe(e){return J(e)===`[object Date]`&&B(e)}function V(e){return J(e)===`[object RegExp]`&&B(e)}function H(e){return J(e)===`[object Error]`&&B(e)}function U(e){return J(e)===`[object String]`&&B(e)}function W(e){return J(e)===`[object Number]`&&B(e)}function se(e){return J(e)===`[object Boolean]`&&B(e)}function G(e){if(M)return e&&typeof e==`object`&&e instanceof Symbol;if(typeof e==`symbol`)return!0;if(!e||typeof e!=`object`||!j)return!1;try{return j.call(e),!0}catch{}return!1}function ce(e){if(!e||typeof e!=`object`||!ee)return!1;try{return ee.call(e),!0}catch{}return!1}var K=Object.prototype.hasOwnProperty||function(e){return e in this};function q(e,t){return K.call(e,t)}function J(e){return v.call(e)}function le(e){if(e.name)return e.name;var t=b.call(y.call(e),/^function\s*([\w$]+)/);return t?t[1]:null}function ue(e,t){if(e.indexOf)return e.indexOf(t);for(var n=0,r=e.length;n<r;n++)if(e[n]===t)return n;return-1}function de(e){if(!a||!e||typeof e!=`object`)return!1;try{a.call(e);try{l.call(e)}catch{return!0}return e instanceof Map}catch{}return!1}function Y(e){if(!f||!e||typeof e!=`object`)return!1;try{f.call(e,f);try{m.call(e,m)}catch{return!0}return e instanceof WeakMap}catch{}return!1}function fe(e){if(!g||!e||typeof e!=`object`)return!1;try{return g.call(e),!0}catch{}return!1}function pe(e){if(!l||!e||typeof e!=`object`)return!1;try{l.call(e);try{a.call(e)}catch{return!0}return e instanceof Set}catch{}return!1}function me(e){if(!m||!e||typeof e!=`object`)return!1;try{m.call(e,m);try{f.call(e,f)}catch{return!0}return e instanceof WeakSet}catch{}return!1}function X(e){return!e||typeof e!=`object`?!1:typeof HTMLElement<`u`&&e instanceof HTMLElement?!0:typeof e.nodeName==`string`&&typeof e.getAttribute==`function`}function Z(e,t){if(e.length>t.maxStringLength){var n=e.length-t.maxStringLength,r=`... `+n+` more character`+(n>1?`s`:``);return Z(x.call(e,0,t.maxStringLength),t)+r}var i=z[t.quoteStyle||`single`];i.lastIndex=0;var a=S.call(S.call(e,i,`\\$1`),/[\x00-\x1f]/g,Q);return re(a,`single`,t)}function Q(e){var t=e.charCodeAt(0),n={8:`b`,9:`t`,10:`n`,12:`f`,13:`r`}[t];return n?`\\`+n:`\\x`+(t<16?`0`:``)+C.call(t.toString(16))}function he(e){return`Object(`+e+`)`}function ge(e){return e+` { ? }`}function _e(e,t,n,r){var i=r?be(n,r):D.call(n,`, `);return e+` (`+t+`) {`+i+`}`}function ve(e){for(var t=0;t<e.length;t++)if(ue(e[t],`
|
|
2
2
|
`)>=0)return!1;return!0}function ye(e,t){var n;if(e.indent===` `)n=` `;else if(typeof e.indent==`number`&&e.indent>0)n=D.call(Array(e.indent+1),` `);else return null;return{base:n,prev:D.call(Array(t+1),n)}}function be(e,t){if(e.length===0)return``;var n=`
|
|
3
3
|
`+t.prev+t.base;return n+D.call(e,`,`+n)+`
|
|
4
|
-
`+t.prev}function xe(e,t){var n=ae(e),r=[];if(n){r.length=e.length;for(var i=0;i<e.length;i++)r[i]=q(e,i)?t(e[i],e):``}var a=typeof A==`function`?A(e):[],o;if(M){o={};for(var s=0;s<a.length;s++)o[`$`+a[s]]=a[s]}for(var c in e){if(!q(e,c)||n&&String(Number(c))===c&&c<e.length||M&&o[`$`+c]instanceof Symbol)continue;T.call(/[^\w$]/,c)?r.push(t(c,e)+`: `+t(e[c],e)):r.push(c+`: `+t(e[c],e))}if(typeof A==`function`)for(var l=0;l<a.length;l++)te.call(e,a[l])&&r.push(`[`+t(a[l])+`]: `+t(e[a[l]],e));return r}}),i=e.__commonJSMin((exports,n)=>{var i=r(),a=t(),o=function(e,t,n){for(var r=e,i;(i=r.next)!=null;r=i)if(i.key===t)return r.next=i.next,n||(i.next=e.next,e.next=i),i},s=function(e,t){if(e){var n=o(e,t);return n&&n.value}},c=function(e,t,n){var r=o(e,t);r?r.value=n:e.next={key:t,next:e.next,value:n}},l=function(e,t){return e?!!o(e,t):!1},u=function(e,t){if(e)return o(e,t,!0)};n.exports=function(){var e,t={assert:function(e){if(!t.has(e))throw new a(`Side channel does not contain `+i(e))},delete:function(t){var n=e&&e.next,r=u(e,t);return r&&n&&n===r&&(e=void 0),!!r},get:function(t){return s(e,t)},has:function(t){return l(e,t)},set:function(t,n){e||={next:void 0},c(e,t,n)}};return t}}),a=e.__commonJSMin((exports,t)=>{t.exports=Object}),o=e.__commonJSMin((exports,t)=>{t.exports=Error}),s=e.__commonJSMin((exports,t)=>{t.exports=EvalError}),c=e.__commonJSMin((exports,t)=>{t.exports=RangeError}),l=e.__commonJSMin((exports,t)=>{t.exports=ReferenceError}),u=e.__commonJSMin((exports,t)=>{t.exports=SyntaxError}),d=e.__commonJSMin((exports,t)=>{t.exports=URIError}),f=e.__commonJSMin((exports,t)=>{t.exports=Math.abs}),p=e.__commonJSMin((exports,t)=>{t.exports=Math.floor}),m=e.__commonJSMin((exports,t)=>{t.exports=Math.max}),h=e.__commonJSMin((exports,t)=>{t.exports=Math.min}),g=e.__commonJSMin((exports,t)=>{t.exports=Math.pow}),_=e.__commonJSMin((exports,t)=>{t.exports=Math.round}),v=e.__commonJSMin((exports,t)=>{t.exports=Number.isNaN||function(e){return e!==e}}),y=e.__commonJSMin((exports,t)=>{var n=v();t.exports=function(e){return n(e)||e===0?e:e<0?-1:1}}),b=e.__commonJSMin((exports,t)=>{t.exports=Object.getOwnPropertyDescriptor}),x=e.__commonJSMin((exports,t)=>{var n=b();if(n)try{n([],`length`)}catch{n=null}t.exports=n}),S=e.__commonJSMin((exports,t)=>{var n=Object.defineProperty||!1;if(n)try{n({},`a`,{value:1})}catch{n=!1}t.exports=n}),C=e.__commonJSMin((exports,t)=>{t.exports=function(){if(typeof Symbol!=`function`||typeof Object.getOwnPropertySymbols!=`function`)return!1;if(typeof Symbol.iterator==`symbol`)return!0;var e={},t=Symbol(`test`),n=Object(t);if(typeof t==`string`||Object.prototype.toString.call(t)!==`[object Symbol]`||Object.prototype.toString.call(n)!==`[object Symbol]`)return!1;var r=42;for(var i in e[t]=r,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]!==t||!Object.prototype.propertyIsEnumerable.call(e,t))return!1;if(typeof Object.getOwnPropertyDescriptor==`function`){var o=Object.getOwnPropertyDescriptor(e,t);if(o.value!==r||o.enumerable!==!0)return!1}return!0}}),w=e.__commonJSMin((exports,t)=>{var n=typeof Symbol<`u`&&Symbol,r=C();t.exports=function(){return typeof n!=`function`||typeof Symbol!=`function`||typeof n(`foo`)!=`symbol`||typeof Symbol(`bar`)!=`symbol`?!1:r()}}),T=e.__commonJSMin((exports,t)=>{t.exports=typeof Reflect<`u`&&Reflect.getPrototypeOf||null}),E=e.__commonJSMin((exports,t)=>{var n=a();t.exports=n.getPrototypeOf||null}),D=e.__commonJSMin((exports,t)=>{var n=`Function.prototype.bind called on incompatible `,r=Object.prototype.toString,i=Math.max,a=`[object Function]`,o=function(e,t){for(var n=[],r=0;r<e.length;r+=1)n[r]=e[r];for(var i=0;i<t.length;i+=1)n[i+e.length]=t[i];return n},s=function(e,t){for(var n=[],r=t||0,i=0;r<e.length;r+=1,i+=1)n[i]=e[r];return n},c=function(e,t){for(var n=``,r=0;r<e.length;r+=1)n+=e[r],r+1<e.length&&(n+=t);return n};t.exports=function(e){var t=this;if(typeof t!=`function`||r.apply(t)!==a)throw TypeError(n+t);for(var l=s(arguments,1),u,d=function(){if(this instanceof u){var n=t.apply(this,o(l,arguments));return Object(n)===n?n:this}return t.apply(e,o(l,arguments))},f=i(0,t.length-l.length),p=[],m=0;m<f;m++)p[m]=`$`+m;if(u=Function(`binder`,`return function (`+c(p,`,`)+`){ return binder.apply(this,arguments); }`)(d),t.prototype){var h=function(){};h.prototype=t.prototype,u.prototype=new h,h.prototype=null}return u}}),O=e.__commonJSMin((exports,t)=>{var n=D();t.exports=Function.prototype.bind||n}),k=e.__commonJSMin((exports,t)=>{t.exports=Function.prototype.call}),ee=e.__commonJSMin((exports,t)=>{t.exports=Function.prototype.apply}),A=e.__commonJSMin((exports,t)=>{t.exports=typeof Reflect<`u`&&Reflect&&Reflect.apply}),j=e.__commonJSMin((exports,t)=>{var n=O(),r=ee(),i=k(),a=A();t.exports=a||n.call(i,r)}),M=e.__commonJSMin((exports,n)=>{var r=O(),i=t(),a=k(),o=j();n.exports=function(e){if(e.length<1||typeof e[0]!=`function`)throw new i(`a function is required`);return o(r,a,e)}}),N=e.__commonJSMin((exports,t)=>{var n=M(),r=x(),i;try{i=[].__proto__===Array.prototype}catch(e){if(!e||typeof e!=`object`||!(`code`in e)||e.code!==`ERR_PROTO_ACCESS`)throw e}var a=!!i&&r&&r(Object.prototype,`__proto__`),o=Object,s=o.getPrototypeOf;t.exports=a&&typeof a.get==`function`?n([a.get]):typeof s==`function`?function(e){return s(e==null?e:o(e))}:!1}),te=e.__commonJSMin((exports,t)=>{var n=T(),r=E(),i=N();t.exports=n?function(e){return n(e)}:r?function(e){if(!e||typeof e!=`object`&&typeof e!=`function`)throw TypeError(`getProto: not an object`);return r(e)}:i?function(e){return i(e)}:null}),P=e.__commonJSMin((exports,t)=>{var n=Function.prototype.call,r=Object.prototype.hasOwnProperty,i=O();t.exports=i.call(n,r)}),F=e.__commonJSMin((exports,n)=>{var r,i=a(),v=o(),b=s(),C=c(),D=l(),A=u(),j=t(),M=d(),N=f(),F=p(),I=m(),L=h(),R=g(),ne=_(),z=y(),re=Function,ie=function(e){try{return re(`"use strict"; return (`+e+`).constructor;`)()}catch{}},B=x(),ae=S(),oe=function(){throw new j},V=B?function(){try{return arguments.callee,oe}catch{try{return B(arguments,`callee`).get}catch{return oe}}}():oe,H=w()(),U=te(),se=E(),W=T(),G=ee(),ce=k(),K={},q=typeof Uint8Array>`u`||!U?r:U(Uint8Array),J={__proto__:null,"%AggregateError%":typeof AggregateError>`u`?r:AggregateError,"%Array%":Array,"%ArrayBuffer%":typeof ArrayBuffer>`u`?r:ArrayBuffer,"%ArrayIteratorPrototype%":H&&U?U([][Symbol.iterator]()):r,"%AsyncFromSyncIteratorPrototype%":r,"%AsyncFunction%":K,"%AsyncGenerator%":K,"%AsyncGeneratorFunction%":K,"%AsyncIteratorPrototype%":K,"%Atomics%":typeof Atomics>`u`?r:Atomics,"%BigInt%":typeof BigInt>`u`?r:BigInt,"%BigInt64Array%":typeof BigInt64Array>`u`?r:BigInt64Array,"%BigUint64Array%":typeof BigUint64Array>`u`?r:BigUint64Array,"%Boolean%":Boolean,"%DataView%":typeof DataView>`u`?r:DataView,"%Date%":Date,"%decodeURI%":decodeURI,"%decodeURIComponent%":decodeURIComponent,"%encodeURI%":encodeURI,"%encodeURIComponent%":encodeURIComponent,"%Error%":v,"%eval%":eval,"%EvalError%":b,"%Float16Array%":typeof Float16Array>`u`?r:Float16Array,"%Float32Array%":typeof Float32Array>`u`?r:Float32Array,"%Float64Array%":typeof Float64Array>`u`?r:Float64Array,"%FinalizationRegistry%":typeof FinalizationRegistry>`u`?r:FinalizationRegistry,"%Function%":re,"%GeneratorFunction%":K,"%Int8Array%":typeof Int8Array>`u`?r:Int8Array,"%Int16Array%":typeof Int16Array>`u`?r:Int16Array,"%Int32Array%":typeof Int32Array>`u`?r:Int32Array,"%isFinite%":isFinite,"%isNaN%":isNaN,"%IteratorPrototype%":H&&U?U(U([][Symbol.iterator]())):r,"%JSON%":typeof JSON==`object`?JSON:r,"%Map%":typeof Map>`u`?r:Map,"%MapIteratorPrototype%":typeof Map>`u`||!H||!U?r:U(new Map()[Symbol.iterator]()),"%Math%":Math,"%Number%":Number,"%Object%":i,"%Object.getOwnPropertyDescriptor%":B,"%parseFloat%":parseFloat,"%parseInt%":parseInt,"%Promise%":typeof Promise>`u`?r:Promise,"%Proxy%":typeof Proxy>`u`?r:Proxy,"%RangeError%":C,"%ReferenceError%":D,"%Reflect%":typeof Reflect>`u`?r:Reflect,"%RegExp%":RegExp,"%Set%":typeof Set>`u`?r:Set,"%SetIteratorPrototype%":typeof Set>`u`||!H||!U?r:U(new Set()[Symbol.iterator]()),"%SharedArrayBuffer%":typeof SharedArrayBuffer>`u`?r:SharedArrayBuffer,"%String%":String,"%StringIteratorPrototype%":H&&U?U(``[Symbol.iterator]()):r,"%Symbol%":H?Symbol:r,"%SyntaxError%":A,"%ThrowTypeError%":V,"%TypedArray%":q,"%TypeError%":j,"%Uint8Array%":typeof Uint8Array>`u`?r:Uint8Array,"%Uint8ClampedArray%":typeof Uint8ClampedArray>`u`?r:Uint8ClampedArray,"%Uint16Array%":typeof Uint16Array>`u`?r:Uint16Array,"%Uint32Array%":typeof Uint32Array>`u`?r:Uint32Array,"%URIError%":M,"%WeakMap%":typeof WeakMap>`u`?r:WeakMap,"%WeakRef%":typeof WeakRef>`u`?r:WeakRef,"%WeakSet%":typeof WeakSet>`u`?r:WeakSet,"%Function.prototype.call%":ce,"%Function.prototype.apply%":G,"%Object.defineProperty%":ae,"%Object.getPrototypeOf%":se,"%Math.abs%":N,"%Math.floor%":F,"%Math.max%":I,"%Math.min%":L,"%Math.pow%":R,"%Math.round%":ne,"%Math.sign%":z,"%Reflect.getPrototypeOf%":W};if(U)try{null.error}catch(e){var le=U(U(e));J[`%Error.prototype%`]=le}var ue=function e(t){var n;if(t===`%AsyncFunction%`)n=ie(`async function () {}`);else if(t===`%GeneratorFunction%`)n=ie(`function* () {}`);else if(t===`%AsyncGeneratorFunction%`)n=ie(`async function* () {}`);else if(t===`%AsyncGenerator%`){var r=e(`%AsyncGeneratorFunction%`);r&&(n=r.prototype)}else if(t===`%AsyncIteratorPrototype%`){var i=e(`%AsyncGenerator%`);i&&U&&(n=U(i.prototype))}return J[t]=n,n},de={__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`]},Y=O(),fe=P(),pe=Y.call(ce,Array.prototype.concat),me=Y.call(G,Array.prototype.splice),X=Y.call(ce,String.prototype.replace),Z=Y.call(ce,String.prototype.slice),Q=Y.call(ce,RegExp.prototype.exec),he=/[^%.[\]]+|\[(?:(-?\d+(?:\.\d+)?)|(["'])((?:(?!\2)[^\\]|\\.)*?)\2)\]|(?=(?:\.|\[\])(?:\.|\[\]|%$))/g,ge=/\\(\\)?/g,_e=function(e){var t=Z(e,0,1),n=Z(e,-1);if(t===`%`&&n!==`%`)throw new A("invalid intrinsic syntax, expected closing `%`");if(n===`%`&&t!==`%`)throw new A("invalid intrinsic syntax, expected opening `%`");var r=[];return X(e,he,function(e,t,n,i){r[r.length]=n?X(i,ge,`$1`):t||e}),r},ve=function(e,t){var n=e,r;if(fe(de,n)&&(r=de[n],n=`%`+r[0]+`%`),fe(J,n)){var i=J[n];if(i===K&&(i=ue(n)),i===void 0&&!t)throw new j(`intrinsic `+e+` exists, but is not available. Please file an issue!`);return{alias:r,name:n,value:i}}throw new A(`intrinsic `+e+` does not exist!`)};n.exports=function(e,t){if(typeof e!=`string`||e.length===0)throw new j(`intrinsic name must be a non-empty string`);if(arguments.length>1&&typeof t!=`boolean`)throw new j(`"allowMissing" argument must be a boolean`);if(Q(/^%?[^%]*%?$/,e)===null)throw new A("`%` may not be present anywhere but at the beginning and end of the intrinsic name");var n=_e(e),r=n.length>0?n[0]:``,i=ve(`%`+r+`%`,t),a=i.name,o=i.value,s=!1,c=i.alias;c&&(r=c[0],me(n,pe([0,1],c)));for(var l=1,u=!0;l<n.length;l+=1){var d=n[l],f=Z(d,0,1),p=Z(d,-1);if((f===`"`||f===`'`||f==="`"||p===`"`||p===`'`||p==="`")&&f!==p)throw new A(`property names with quotes must have matching quotes`);if((d===`constructor`||!u)&&(s=!0),r+=`.`+d,a=`%`+r+`%`,fe(J,a))o=J[a];else if(o!=null){if(!(d in o)){if(!t)throw new j(`base intrinsic for `+e+` exists, but the property is not available.`);return}if(B&&l+1>=n.length){var m=B(o,d);u=!!m,o=u&&`get`in m&&!(`originalValue`in m.get)?m.get:o[d]}else u=fe(o,d),o=o[d];u&&!s&&(J[a]=o)}}return o}}),I=e.__commonJSMin((exports,t)=>{var n=F(),r=M(),i=r([n(`%String.prototype.indexOf%`)]);t.exports=function(e,t){var a=n(e,!!t);return typeof a==`function`&&i(e,`.prototype.`)>-1?r([a]):a}}),L=e.__commonJSMin((exports,n)=>{var i=F(),a=I(),o=r(),s=t(),c=i(`%Map%`,!0),l=a(`Map.prototype.get`,!0),u=a(`Map.prototype.set`,!0),d=a(`Map.prototype.has`,!0),f=a(`Map.prototype.delete`,!0),p=a(`Map.prototype.size`,!0);n.exports=!!c&&function(){var e,t={assert:function(e){if(!t.has(e))throw new s(`Side channel does not contain `+o(e))},delete:function(t){if(e){var n=f(e,t);return p(e)===0&&(e=void 0),n}return!1},get:function(t){if(e)return l(e,t)},has:function(t){return e?d(e,t):!1},set:function(t,n){e||=new c,u(e,t,n)}};return t}}),R=e.__commonJSMin((exports,n)=>{var i=F(),a=I(),o=r(),s=L(),c=t(),l=i(`%WeakMap%`,!0),u=a(`WeakMap.prototype.get`,!0),d=a(`WeakMap.prototype.set`,!0),f=a(`WeakMap.prototype.has`,!0),p=a(`WeakMap.prototype.delete`,!0);n.exports=l?function(){var e,t,n={assert:function(e){if(!n.has(e))throw new c(`Side channel does not contain `+o(e))},delete:function(n){if(l&&n&&(typeof n==`object`||typeof n==`function`)){if(e)return p(e,n)}else if(s&&t)return t.delete(n);return!1},get:function(n){return l&&n&&(typeof n==`object`||typeof n==`function`)&&e?u(e,n):t&&t.get(n)},has:function(n){return l&&n&&(typeof n==`object`||typeof n==`function`)&&e?f(e,n):!!t&&t.has(n)},set:function(n,r){l&&n&&(typeof n==`object`||typeof n==`function`)?(e||=new l,d(e,n,r)):s&&(t||=s(),t.set(n,r))}};return n}:s}),ne=e.__commonJSMin((exports,n)=>{var a=t(),o=r(),s=i(),c=L(),l=R(),u=l||c||s;n.exports=function(){var e,t={assert:function(e){if(!t.has(e))throw new a(`Side channel does not contain `+o(e))},delete:function(t){return!!e&&e.delete(t)},get:function(t){return e&&e.get(t)},has:function(t){return!!e&&e.has(t)},set:function(t,n){e||=u(),e.set(t,n)}};return t}}),z=e.__commonJSMin((exports,t)=>{var n=String.prototype.replace,r=/%20/g,i={RFC1738:`RFC1738`,RFC3986:`RFC3986`};t.exports={default:i.RFC3986,formatters:{RFC1738:function(e){return n.call(e,r,`+`)},RFC3986:function(e){return String(e)}},RFC1738:i.RFC1738,RFC3986:i.RFC3986}}),re=e.__commonJSMin((exports,t)=>{var n=z(),r=Object.prototype.hasOwnProperty,i=Array.isArray,a=function(){for(var e=[],t=0;t<256;++t)e.push(`%`+((t<16?`0`:``)+t.toString(16)).toUpperCase());return e}(),o=function(e){for(;e.length>1;){var t=e.pop(),n=t.obj[t.prop];if(i(n)){for(var r=[],a=0;a<n.length;++a)n[a]!==void 0&&r.push(n[a]);t.obj[t.prop]=r}}},s=function(e,t){for(var n=t&&t.plainObjects?{__proto__:null}:{},r=0;r<e.length;++r)e[r]!==void 0&&(n[r]=e[r]);return n},c=function e(t,n,a){if(!n)return t;if(typeof n!=`object`&&typeof n!=`function`){if(i(t))t.push(n);else if(t&&typeof t==`object`)(a&&(a.plainObjects||a.allowPrototypes)||!r.call(Object.prototype,n))&&(t[n]=!0);else return[t,n];return t}if(!t||typeof t!=`object`)return[t].concat(n);var o=t;return i(t)&&!i(n)&&(o=s(t,a)),i(t)&&i(n)?(n.forEach(function(n,i){if(r.call(t,i)){var o=t[i];o&&typeof o==`object`&&n&&typeof n==`object`?t[i]=e(o,n,a):t.push(n)}else t[i]=n}),t):Object.keys(n).reduce(function(t,i){var o=n[i];return r.call(t,i)?t[i]=e(t[i],o,a):t[i]=o,t},o)},l=function(e,t){return Object.keys(t).reduce(function(e,n){return e[n]=t[n],e},e)},u=function(e,t,n){var r=e.replace(/\+/g,` `);if(n===`iso-8859-1`)return r.replace(/%[0-9a-f]{2}/gi,unescape);try{return decodeURIComponent(r)}catch{return r}},d=1024,f=function(e,t,r,i,o){if(e.length===0)return e;var s=e;if(typeof e==`symbol`?s=Symbol.prototype.toString.call(e):typeof e!=`string`&&(s=String(e)),r===`iso-8859-1`)return escape(s).replace(/%u[0-9a-f]{4}/gi,function(e){return`%26%23`+parseInt(e.slice(2),16)+`%3B`});for(var c=``,l=0;l<s.length;l+=d){for(var u=s.length>=d?s.slice(l,l+d):s,f=[],p=0;p<u.length;++p){var m=u.charCodeAt(p);if(m===45||m===46||m===95||m===126||m>=48&&m<=57||m>=65&&m<=90||m>=97&&m<=122||o===n.RFC1738&&(m===40||m===41)){f[f.length]=u.charAt(p);continue}if(m<128){f[f.length]=a[m];continue}if(m<2048){f[f.length]=a[192|m>>6]+a[128|m&63];continue}if(m<55296||m>=57344){f[f.length]=a[224|m>>12]+a[128|m>>6&63]+a[128|m&63];continue}p+=1,m=65536+((m&1023)<<10|u.charCodeAt(p)&1023),f[f.length]=a[240|m>>18]+a[128|m>>12&63]+a[128|m>>6&63]+a[128|m&63]}c+=f.join(``)}return c},p=function(e){for(var t=[{obj:{o:e},prop:`o`}],n=[],r=0;r<t.length;++r)for(var i=t[r],a=i.obj[i.prop],s=Object.keys(a),c=0;c<s.length;++c){var l=s[c],u=a[l];typeof u==`object`&&u&&n.indexOf(u)===-1&&(t.push({obj:a,prop:l}),n.push(u))}return o(t),e},m=function(e){return Object.prototype.toString.call(e)===`[object RegExp]`},h=function(e){return!e||typeof e!=`object`?!1:!!(e.constructor&&e.constructor.isBuffer&&e.constructor.isBuffer(e))},g=function(e,t){return[].concat(e,t)},_=function(e,t){if(i(e)){for(var n=[],r=0;r<e.length;r+=1)n.push(t(e[r]));return n}return t(e)};t.exports={arrayToObject:s,assign:l,combine:g,compact:p,decode:u,encode:f,isBuffer:h,isRegExp:m,maybeMap:_,merge:c}}),ie=e.__commonJSMin((exports,t)=>{var n=ne(),r=re(),i=z(),a=Object.prototype.hasOwnProperty,o={brackets:function(e){return e+`[]`},comma:`comma`,indices:function(e,t){return e+`[`+t+`]`},repeat:function(e){return e}},s=Array.isArray,c=Array.prototype.push,l=function(e,t){c.apply(e,s(t)?t:[t])},u=Date.prototype.toISOString,d=i.default,f={addQueryPrefix:!1,allowDots:!1,allowEmptyArrays:!1,arrayFormat:`indices`,charset:`utf-8`,charsetSentinel:!1,commaRoundTrip:!1,delimiter:`&`,encode:!0,encodeDotInKeys:!1,encoder:r.encode,encodeValuesOnly:!1,filter:void 0,format:d,formatter:i.formatters[d],indices:!1,serializeDate:function(e){return u.call(e)},skipNulls:!1,strictNullHandling:!1},p=function(e){return typeof e==`string`||typeof e==`number`||typeof e==`boolean`||typeof e==`symbol`||typeof e==`bigint`},m={},h=function e(t,i,a,o,c,u,d,h,g,_,v,y,b,x,S,C,w,T){for(var E=t,D=T,O=0,k=!1;(D=D.get(m))!==void 0&&!k;){var ee=D.get(t);if(O+=1,ee!==void 0){if(ee===O)throw RangeError(`Cyclic object value`);k=!0}D.get(m)===void 0&&(O=0)}if(typeof _==`function`?E=_(i,E):E instanceof Date?E=b(E):a===`comma`&&s(E)&&(E=r.maybeMap(E,function(e){return e instanceof Date?b(e):e})),E===null){if(u)return g&&!C?g(i,f.encoder,w,`key`,x):i;E=``}if(p(E)||r.isBuffer(E)){if(g){var A=C?i:g(i,f.encoder,w,`key`,x);return[S(A)+`=`+S(g(E,f.encoder,w,`value`,x))]}return[S(i)+`=`+S(String(E))]}var j=[];if(E===void 0)return j;var M;if(a===`comma`&&s(E))C&&g&&(E=r.maybeMap(E,g)),M=[{value:E.length>0?E.join(`,`)||null:void 0}];else if(s(_))M=_;else{var N=Object.keys(E);M=v?N.sort(v):N}var te=h?String(i).replace(/\./g,`%2E`):String(i),P=o&&s(E)&&E.length===1?te+`[]`:te;if(c&&s(E)&&E.length===0)return P+`[]`;for(var F=0;F<M.length;++F){var I=M[F],L=typeof I==`object`&&I&&I.value!==void 0?I.value:E[I];if(!(d&&L===null)){var R=y&&h?String(I).replace(/\./g,`%2E`):String(I),ne=s(E)?typeof a==`function`?a(P,R):P:P+(y?`.`+R:`[`+R+`]`);T.set(t,O);var z=n();z.set(m,T),l(j,e(L,ne,a,o,c,u,d,h,a===`comma`&&C&&s(E)?null:g,_,v,y,b,x,S,C,w,z))}}return j},g=function(e){if(!e)return f;if(e.allowEmptyArrays!==void 0&&typeof e.allowEmptyArrays!=`boolean`)throw TypeError("`allowEmptyArrays` option can only be `true` or `false`, when provided");if(e.encodeDotInKeys!==void 0&&typeof e.encodeDotInKeys!=`boolean`)throw TypeError("`encodeDotInKeys` option can only be `true` or `false`, when provided");if(e.encoder!==null&&e.encoder!==void 0&&typeof e.encoder!=`function`)throw TypeError(`Encoder has to be a function.`);var t=e.charset||f.charset;if(e.charset!==void 0&&e.charset!==`utf-8`&&e.charset!==`iso-8859-1`)throw TypeError(`The charset option must be either utf-8, iso-8859-1, or undefined`);var n=i.default;if(e.format!==void 0){if(!a.call(i.formatters,e.format))throw TypeError(`Unknown format option provided.`);n=e.format}var r=i.formatters[n],c=f.filter;(typeof e.filter==`function`||s(e.filter))&&(c=e.filter);var l;if(l=e.arrayFormat in o?e.arrayFormat:`indices`in e?e.indices?`indices`:`repeat`:f.arrayFormat,`commaRoundTrip`in e&&typeof e.commaRoundTrip!=`boolean`)throw TypeError("`commaRoundTrip` must be a boolean, or absent");var u=e.allowDots===void 0?e.encodeDotInKeys===!0?!0:f.allowDots:!!e.allowDots;return{addQueryPrefix:typeof e.addQueryPrefix==`boolean`?e.addQueryPrefix:f.addQueryPrefix,allowDots:u,allowEmptyArrays:typeof e.allowEmptyArrays==`boolean`?!!e.allowEmptyArrays:f.allowEmptyArrays,arrayFormat:l,charset:t,charsetSentinel:typeof e.charsetSentinel==`boolean`?e.charsetSentinel:f.charsetSentinel,commaRoundTrip:!!e.commaRoundTrip,delimiter:e.delimiter===void 0?f.delimiter:e.delimiter,encode:typeof e.encode==`boolean`?e.encode:f.encode,encodeDotInKeys:typeof e.encodeDotInKeys==`boolean`?e.encodeDotInKeys:f.encodeDotInKeys,encoder:typeof e.encoder==`function`?e.encoder:f.encoder,encodeValuesOnly:typeof e.encodeValuesOnly==`boolean`?e.encodeValuesOnly:f.encodeValuesOnly,filter:c,format:n,formatter:r,serializeDate:typeof e.serializeDate==`function`?e.serializeDate:f.serializeDate,skipNulls:typeof e.skipNulls==`boolean`?e.skipNulls:f.skipNulls,sort:typeof e.sort==`function`?e.sort:null,strictNullHandling:typeof e.strictNullHandling==`boolean`?e.strictNullHandling:f.strictNullHandling}};t.exports=function(e,t){var r=e,i=g(t),a,c;typeof i.filter==`function`?(c=i.filter,r=c(``,r)):s(i.filter)&&(c=i.filter,a=c);var u=[];if(typeof r!=`object`||!r)return``;var d=o[i.arrayFormat],f=d===`comma`&&i.commaRoundTrip;a||=Object.keys(r),i.sort&&a.sort(i.sort);for(var p=n(),m=0;m<a.length;++m){var _=a[m],v=r[_];i.skipNulls&&v===null||l(u,h(v,_,d,f,i.allowEmptyArrays,i.strictNullHandling,i.skipNulls,i.encodeDotInKeys,i.encode?i.encoder:null,i.filter,i.sort,i.allowDots,i.serializeDate,i.format,i.formatter,i.encodeValuesOnly,i.charset,p))}var y=u.join(i.delimiter),b=i.addQueryPrefix===!0?`?`:``;return i.charsetSentinel&&(i.charset===`iso-8859-1`?b+=`utf8=%26%2310003%3B&`:b+=`utf8=%E2%9C%93&`),y.length>0?b+y:``}}),B=e.__commonJSMin((exports,t)=>{var n=re(),r=Object.prototype.hasOwnProperty,i=Array.isArray,a={allowDots:!1,allowEmptyArrays:!1,allowPrototypes:!1,allowSparse:!1,arrayLimit:20,charset:`utf-8`,charsetSentinel:!1,comma:!1,decodeDotInKeys:!1,decoder:n.decode,delimiter:`&`,depth:5,duplicates:`combine`,ignoreQueryPrefix:!1,interpretNumericEntities:!1,parameterLimit:1e3,parseArrays:!0,plainObjects:!1,strictDepth:!1,strictNullHandling:!1,throwOnLimitExceeded:!1},o=function(e){return e.replace(/&#(\d+);/g,function(e,t){return String.fromCharCode(parseInt(t,10))})},s=function(e,t,n){if(e&&typeof e==`string`&&t.comma&&e.indexOf(`,`)>-1)return e.split(`,`);if(t.throwOnLimitExceeded&&n>=t.arrayLimit)throw RangeError(`Array limit exceeded. Only `+t.arrayLimit+` element`+(t.arrayLimit===1?``:`s`)+` allowed in an array.`);return e},c=`utf8=%26%2310003%3B`,l=`utf8=%E2%9C%93`,u=function(e,t){var u={__proto__:null},d=t.ignoreQueryPrefix?e.replace(/^\?/,``):e;d=d.replace(/%5B/gi,`[`).replace(/%5D/gi,`]`);var f=t.parameterLimit===1/0?void 0:t.parameterLimit,p=d.split(t.delimiter,t.throwOnLimitExceeded?f+1:f);if(t.throwOnLimitExceeded&&p.length>f)throw RangeError(`Parameter limit exceeded. Only `+f+` parameter`+(f===1?``:`s`)+` allowed.`);var m=-1,h,g=t.charset;if(t.charsetSentinel)for(h=0;h<p.length;++h)p[h].indexOf(`utf8=`)===0&&(p[h]===l?g=`utf-8`:p[h]===c&&(g=`iso-8859-1`),m=h,h=p.length);for(h=0;h<p.length;++h)if(h!==m){var _=p[h],v=_.indexOf(`]=`),y=v===-1?_.indexOf(`=`):v+1,b,x;y===-1?(b=t.decoder(_,a.decoder,g,`key`),x=t.strictNullHandling?null:``):(b=t.decoder(_.slice(0,y),a.decoder,g,`key`),x=n.maybeMap(s(_.slice(y+1),t,i(u[b])?u[b].length:0),function(e){return t.decoder(e,a.decoder,g,`value`)})),x&&t.interpretNumericEntities&&g===`iso-8859-1`&&(x=o(String(x))),_.indexOf(`[]=`)>-1&&(x=i(x)?[x]:x);var S=r.call(u,b);S&&t.duplicates===`combine`?u[b]=n.combine(u[b],x):(!S||t.duplicates===`last`)&&(u[b]=x)}return u},d=function(e,t,r,i){var a=0;if(e.length>0&&e[e.length-1]===`[]`){var o=e.slice(0,-1).join(``);a=Array.isArray(t)&&t[o]?t[o].length:0}for(var c=i?t:s(t,r,a),l=e.length-1;l>=0;--l){var u,d=e[l];if(d===`[]`&&r.parseArrays)u=r.allowEmptyArrays&&(c===``||r.strictNullHandling&&c===null)?[]:n.combine([],c);else{u=r.plainObjects?{__proto__:null}:{};var f=d.charAt(0)===`[`&&d.charAt(d.length-1)===`]`?d.slice(1,-1):d,p=r.decodeDotInKeys?f.replace(/%2E/g,`.`):f,m=parseInt(p,10);!r.parseArrays&&p===``?u={0:c}:!isNaN(m)&&d!==p&&String(m)===p&&m>=0&&r.parseArrays&&m<=r.arrayLimit?(u=[],u[m]=c):p!==`__proto__`&&(u[p]=c)}c=u}return c},f=function(e,t,n,i){if(e){var a=n.allowDots?e.replace(/\.([^.[]+)/g,`[$1]`):e,o=/(\[[^[\]]*])/,s=/(\[[^[\]]*])/g,c=n.depth>0&&o.exec(a),l=c?a.slice(0,c.index):a,u=[];if(l){if(!n.plainObjects&&r.call(Object.prototype,l)&&!n.allowPrototypes)return;u.push(l)}for(var f=0;n.depth>0&&(c=s.exec(a))!==null&&f<n.depth;){if(f+=1,!n.plainObjects&&r.call(Object.prototype,c[1].slice(1,-1))&&!n.allowPrototypes)return;u.push(c[1])}if(c){if(n.strictDepth===!0)throw RangeError(`Input depth exceeded depth option of `+n.depth+` and strictDepth is true`);u.push(`[`+a.slice(c.index)+`]`)}return d(u,t,n,i)}},p=function(e){if(!e)return a;if(e.allowEmptyArrays!==void 0&&typeof e.allowEmptyArrays!=`boolean`)throw TypeError("`allowEmptyArrays` option can only be `true` or `false`, when provided");if(e.decodeDotInKeys!==void 0&&typeof e.decodeDotInKeys!=`boolean`)throw TypeError("`decodeDotInKeys` option can only be `true` or `false`, when provided");if(e.decoder!==null&&e.decoder!==void 0&&typeof e.decoder!=`function`)throw TypeError(`Decoder has to be a function.`);if(e.charset!==void 0&&e.charset!==`utf-8`&&e.charset!==`iso-8859-1`)throw TypeError(`The charset option must be either utf-8, iso-8859-1, or undefined`);if(e.throwOnLimitExceeded!==void 0&&typeof e.throwOnLimitExceeded!=`boolean`)throw TypeError("`throwOnLimitExceeded` option must be a boolean");var t=e.charset===void 0?a.charset:e.charset,r=e.duplicates===void 0?a.duplicates:e.duplicates;if(r!==`combine`&&r!==`first`&&r!==`last`)throw TypeError(`The duplicates option must be either combine, first, or last`);var i=e.allowDots===void 0?e.decodeDotInKeys===!0?!0:a.allowDots:!!e.allowDots;return{allowDots:i,allowEmptyArrays:typeof e.allowEmptyArrays==`boolean`?!!e.allowEmptyArrays:a.allowEmptyArrays,allowPrototypes:typeof e.allowPrototypes==`boolean`?e.allowPrototypes:a.allowPrototypes,allowSparse:typeof e.allowSparse==`boolean`?e.allowSparse:a.allowSparse,arrayLimit:typeof e.arrayLimit==`number`?e.arrayLimit:a.arrayLimit,charset:t,charsetSentinel:typeof e.charsetSentinel==`boolean`?e.charsetSentinel:a.charsetSentinel,comma:typeof e.comma==`boolean`?e.comma:a.comma,decodeDotInKeys:typeof e.decodeDotInKeys==`boolean`?e.decodeDotInKeys:a.decodeDotInKeys,decoder:typeof e.decoder==`function`?e.decoder:a.decoder,delimiter:typeof e.delimiter==`string`||n.isRegExp(e.delimiter)?e.delimiter:a.delimiter,depth:typeof e.depth==`number`||e.depth===!1?+e.depth:a.depth,duplicates:r,ignoreQueryPrefix:e.ignoreQueryPrefix===!0,interpretNumericEntities:typeof e.interpretNumericEntities==`boolean`?e.interpretNumericEntities:a.interpretNumericEntities,parameterLimit:typeof e.parameterLimit==`number`?e.parameterLimit:a.parameterLimit,parseArrays:e.parseArrays!==!1,plainObjects:typeof e.plainObjects==`boolean`?e.plainObjects:a.plainObjects,strictDepth:typeof e.strictDepth==`boolean`?!!e.strictDepth:a.strictDepth,strictNullHandling:typeof e.strictNullHandling==`boolean`?e.strictNullHandling:a.strictNullHandling,throwOnLimitExceeded:typeof e.throwOnLimitExceeded==`boolean`?e.throwOnLimitExceeded:!1}};t.exports=function(e,t){var r=p(t);if(e===``||e==null)return r.plainObjects?{__proto__:null}:{};for(var i=typeof e==`string`?u(e,r):e,a=r.plainObjects?{__proto__:null}:{},o=Object.keys(i),s=0;s<o.length;++s){var c=o[s],l=f(c,i[c],r,typeof e==`string`);a=n.merge(a,l,r)}return r.allowSparse===!0?a:n.compact(a)}}),ae=e.__commonJSMin((exports,t)=>{var n=ie(),r=B(),i=z();t.exports={formats:i,parse:r,stringify:n}});const oe=(e,t)=>e?!t||t.length===0?e:t.reduce((e,t)=>(delete e[t],e),{...e}):{};let V=function(e){return e.JSON=`application/json`,e.FORM_URLENCODED=`application/x-www-form-urlencoded`,e.FORM_DATA=`multipart/form-data`,e.TEXT=`text/plain`,e.HTML=`text/html`,e.XML=`text/xml`,e.CSV=`text/csv`,e.STREAM=`application/octet-stream`,e}({}),H=function(e){return e[e.TIME_OUT=408]=`TIME_OUT`,e[e.ABORTED=499]=`ABORTED`,e[e.NETWORK_ERROR=599]=`NETWORK_ERROR`,e[e.BODY_NULL=502]=`BODY_NULL`,e[e.UNKNOWN=601]=`UNKNOWN`,e}({}),U=function(e){return e.GET=`GET`,e.POST=`POST`,e.PUT=`PUT`,e.DELETE=`DELETE`,e.PATCH=`PATCH`,e.HEAD=`HEAD`,e.OPTIONS=`OPTIONS`,e}({});var se=e.__toESM(ae()),W=function(e){return e.JSON=`json`,e.BLOB=`blob`,e.TEXT=`text`,e.ARRAY_BUFFER=`arrayBuffer`,e.FORM_DATA=`formData`,e.BYTES=`bytes`,e}(W||{}),G=class extends Error{#message;#name;#status;#statusText;#response;#config;constructor({message:e,status:t,statusText:n,response:r,config:i,name:a}){super(e),this.#message=e,this.#status=t,this.#statusText=n,this.#response=r,this.#config=i,this.#name=a??e}get message(){return this.#message}get status(){return this.#status}get statusText(){return this.#statusText}get response(){return this.#response}get config(){return this.#config}get name(){return this.#name}};const ce=e=>{let t=new Map;e.forEach(e=>{t.set(e.name,e)});let n=Array.from(t.values()).sort((e,t)=>(e.priority??0)-(t.priority??0)),r=[],i=[],a=[],o=[],s=[],c=[];return n.forEach(e=>{e.beforeRequest&&r.push(e.beforeRequest),e.afterResponse&&i.push(e.afterResponse),e.onError&&a.push(e.onError),e.onFinally&&o.push(e.onFinally),e.transformStreamChunk&&s.push(e.transformStreamChunk),e.beforeStream&&c.push(e.beforeStream)}),{beforeRequestPlugins:r,afterResponsePlugins:i,errorPlugins:a,finallyPlugins:o,beforeStreamPlugins:c,transformStreamChunkPlugins:s}},K=(e,t,n=`repeat`)=>{if(t){let r=se.default.stringify(t,{arrayFormat:n});r&&(e=e.includes(`?`)?`${e}&${r}`:`${e}?${r}`)}return e},q=(e={},t={})=>{let n=e instanceof Headers?e:new Headers(e),r=e=>{e instanceof Headers||(e=new Headers(e)),e.forEach((e,t)=>{n.set(t,e)})};return r(t),n},J=[`PATCH`,`POST`,`PUT`,`DELETE`,`OPTIONS`],le=[`GET`,`HEAD`],ue=(e,t,n,r=`repeat`)=>{if(!e)return null;if(e instanceof FormData)return e;let i=null;if(J.includes(t.toUpperCase())){let t=new Headers(n||{}),a=t.get(`Content-Type`)||V.JSON;if(a.includes(V.JSON))i=JSON.stringify(e);else if(a.includes(V.FORM_URLENCODED))i=se.default.stringify(e,{arrayFormat:r});else if(a.includes(V.FORM_DATA)){let t=new FormData;if(!(e instanceof FormData)&&typeof e==`object`){let n=e;Object.keys(n).forEach(e=>{n.prototype.hasOwnProperty.call(e)&&t.append(e,n[e])}),i=t}}}return le.includes(t.toUpperCase())&&(i=null),i};var de=class e{#plugins;#controller;#config;#promise;#isTimeout=!1;#executor=null;#finallyCallbacks=new Set;#responseType=`json`;#fullOptions;constructor(e){this.#fullOptions=e;let{plugins:t=[],controller:n,url:r,baseURL:i=``,params:a,data:o,qsArrayFormat:s=`repeat`,withCredentials:c,extra:l,method:u=`GET`,headers:d}=e;this.#controller=n??new AbortController,this.#plugins=ce(t),this.#config={url:r,baseURL:i,params:a,data:o,withCredentials:c,extra:l,method:u,headers:d,qsArrayFormat:s},this.#promise=this.#init(e)}#init({timeout:e}){return new Promise(async(t,n)=>{let r=this.#config,{beforeRequestPlugins:i}=this.#plugins;for(let e of i)r=await e(r);let a=K(r.baseURL+r.url,r.params,r.qsArrayFormat),o=ue(r.data,r.method,r.headers,r.qsArrayFormat),s=oe(r??{},[`baseURL`,`data`,`extra`,`headers`,`method`,`params`,`url`,`withCredentials`]),c={...s,method:r.method,headers:r.headers,signal:this.#controller.signal,credentials:r.withCredentials?`include`:`omit`,body:o},l=fetch(a,c),u=[l],d=null;if(e){let t=new Promise(t=>{d=setTimeout(()=>{this.#isTimeout=!0,this.#controller?.abort()},e)});u.push(t)}let f=null;try{let e=await Promise.race(u);e?(e.ok&&t(e),f=new G({message:`Fail Request`,status:e.status,statusText:e.statusText,config:this.#config,name:`Fail Request`,response:e})):f=new G({message:`NETWORK_ERROR`,status:H.NETWORK_ERROR,statusText:`Network Error`,config:this.#config,name:`Network Error`})}catch(e){f=e}finally{f&&n(f),d&&clearTimeout(d)}})}async#createNormalizeError(e){return e instanceof G?e:e instanceof TypeError?e.name===`AbortError`?this.#isTimeout?new G({message:`Request timeout`,status:H.TIME_OUT,statusText:`Request timeout`,config:this.#config,name:`Request timeout`,response:await this.#response}):new G({message:`Request aborted`,status:H.ABORTED,statusText:`Request aborted`,config:this.#config,name:`Request aborted`,response:await this.#response}):new G({message:e.message,status:H.NETWORK_ERROR,statusText:`Unknown Request Error`,config:this.#config,name:e.name,response:await this.#response}):new G({message:e?.message??`Unknown Request Error`,status:H.UNKNOWN,statusText:`Unknown Request Error`,config:this.#config,name:`Unknown Request Error`,response:await this.#response})}async#normalizeError(e){let t=await this.#createNormalizeError(e);for(let e of this.#plugins.errorPlugins)t=await e(t,this.#config);return t}json(){return this.#then(W.JSON,this.#response.then(e=>e.json()))}#execFinally(){for(let e of this.#finallyCallbacks)e();this.#finallyCallbacks.clear()}get#getExecutor(){return this.#executor?this.#executor:this.#response}async#resolve(e){let t=this.#plugins.afterResponsePlugins,n={config:this.#config,response:await this.#response.then(e=>e.clone()),responseType:this.#responseType,controller:this.#controller,result:e};for(let e of t)n=await e(n,this.#config);return n.result}then(e,t){return this.#getExecutor.then(async t=>e?.call(this,await this.#resolve(t)),async e=>t?.call(this,await this.#normalizeError(e)))}catch(e){return this.#getExecutor.catch(e)}finally(e){this.#finallyCallbacks.add(e)}abort(){this.#controller.abort()}get#response(){return this.#promise.then(e=>e.clone())}blob(){return this.#then(W.BLOB,this.#response.then(e=>e.blob()))}text(){return this.#then(W.TEXT,this.#response.then(e=>e.text()))}arrayBuffer(){return this.#then(W.ARRAY_BUFFER,this.#response.then(e=>e.arrayBuffer()))}#then(e,t){return this.#executor=t.then(t=>(this.#responseType=e,this.#resolve(t))).catch(t=>(this.#responseType=e,this.#normalizeError(t))).finally(this.#execFinally.bind(this)),this.#executor}formData(){return this.#then(W.FORM_DATA,this.#response.then(e=>e.formData()))}bytes(){return this.#then(W.BYTES,this.#response.then(e=>e.bytes()))}async*stream(){let e=(await this.#response)?.body;if(!e)throw Error(`Response body is null`);for(let t of this.#plugins.beforeStreamPlugins)e=await t(e,this.#config);let t=e.getReader();if(!t)throw Error(`Response body reader is null`);try{for(;;){let{done:e,value:n}=await t.read();if(e)break;let r={source:n,result:n,error:null};try{for(let e of this.#plugins.transformStreamChunkPlugins)r=await e(r,this.#config);if(r.result&&(Y(r.result)||fe(r.result)))for await(let e of r.result){let t={source:r.source,result:e,error:null};yield t}else yield r}catch(e){r.error=e,r.result=null,yield r}}}catch(e){return this.#normalizeError(e)}finally{t.releaseLock(),this.#execFinally()}}retry(){let{controller:t,...n}=this.#fullOptions;return new e(n)}get response(){return this.#response}};const Y=e=>e[Symbol.toStringTag]===`Generator`&&typeof e.next==`function`&&typeof e.return==`function`&&typeof e.throw==`function`&&typeof e[Symbol.iterator]==`function`,fe=e=>e[Symbol.toStringTag]===`AsyncGenerator`&&typeof e.next==`function`&&typeof e.return==`function`&&typeof e.throw==`function`&&typeof e[Symbol.asyncIterator]==`function`,pe=e=>new de(e);var me=class{#timeout;#baseURL;#commonHeaders;#queue=[];#plugins=[];#withCredentials;constructor({timeout:e=0,baseURL:t=``,headers:n={},plugins:r=[],withCredentials:i=!1}){this.#timeout=e,this.#baseURL=t,this.#commonHeaders=n,this.#plugins=r,this.#withCredentials=i,this.request=this.request.bind(this),this.get=this.get.bind(this),this.head=this.head.bind(this),this.options=this.options.bind(this),this.delete=this.delete.bind(this),this.post=this.post.bind(this),this.put=this.put.bind(this),this.patch=this.patch.bind(this),this.abortAll=this.abortAll.bind(this),this.use=this.use.bind(this)}use(e){return this.#plugins.push(e),this}request(e,{timeout:t,headers:n,method:r=`GET`,params:i={},data:a,qsArrayFormat:o,withCredentials:s,extra:c}={}){let l=new AbortController;this.#queue.push(l);let u=pe({url:e,baseURL:this.#baseURL,timeout:t??this.#timeout,plugins:this.#plugins,headers:q(this.#commonHeaders,n),controller:l,method:r,params:i,data:a,qsArrayFormat:o,withCredentials:s??this.#withCredentials,extra:c});return u.finally(()=>{this.#queue=this.#queue.filter(e=>e!==l)}),u}#requestWithParams(e,t={},n={}){return this.request(e,{...n,params:t})}#requestWithBody(e,t={},n={}){return this.request(e,{...n,data:t})}get(e,t={},n){return this.#requestWithParams(e,t,{...n,method:`GET`})}head(e,t={},n){return this.#requestWithParams(e,t,{...n,method:`HEAD`})}options(e,t={},n){return this.request(e,{...n,method:`OPTIONS`,params:t})}delete(e,t){return this.request(e,{...t,method:`DELETE`})}post(e,t,n){return this.#requestWithBody(e,t,{...n,method:`POST`})}upload(e,t,n){let r=new FormData;for(let e in t)if(Object.prototype.hasOwnProperty.call(t,e)){let n=t[e];n instanceof File||n instanceof Blob?r.append(e,n):r.append(e,String(n))}return this.#requestWithBody(e,r,{...n,method:`POST`})}put(e,t,n){return this.#requestWithBody(e,t,{...n,method:`PUT`})}patch(e,t,n){return this.#requestWithBody(e,t,{...n,method:`PATCH`})}abortAll(){this.#queue.forEach(e=>e.abort()),this.#queue=[]}};const X=(e,t={})=>pe({url:e,baseURL:``,...t}),Z=(e,t,n={})=>X(e,{...n,params:t}),Q=(e,t=null,n={})=>X(e,{...n,data:t}),he=X,ge=(e,t={},n)=>Z(e,t,{...n,method:`GET`}),_e=(e,t={},n)=>Z(e,t,{...n,method:`HEAD`}),ve=(e,t={},n)=>X(e,{...n,params:t,method:`OPTIONS`}),ye=(e,t)=>X(e,{...t,method:`DELETE`}),be=(e,t,n)=>Q(e,t,{...n,method:`POST`}),xe=(e,t,n)=>{let r=new FormData;for(let e in t)if(Object.prototype.hasOwnProperty.call(t,e)){let n=t[e];n instanceof File||n instanceof Blob?r.append(e,n):r.append(e,String(n))}return Q(e,r,{...n,method:`POST`})},Se=(e,t,n)=>Q(e,t,{...n,method:`PUT`}),Ce=(e,t,n)=>Q(e,t,{...n,method:`PATCH`}),$=X;$.create=e=>{let t=new me(e),n=t.request.bind(void 0);return Object.assign(n,me.prototype,t),n},$.get=ge,$.head=_e,$.options=ve,$.delete=ye,$.post=be,$.put=Se,$.patch=Ce,$.upload=xe;var we=$,Te=class extends Error{#message;#name;#status;#statusText;#response;#config;constructor({message:e,status:t,statusText:n,response:r,config:i,name:a}){super(e),this.#message=e,this.#status=t,this.#statusText=n,this.#response=r,this.#config=i,this.#name=a??e}get message(){return this.#message}get status(){return this.#status}get statusText(){return this.#statusText}get response(){return this.#response}get config(){return this.#config}get name(){return this.#name}},Ee=we;exports.ContentType=V,exports.Method=U,exports.ResponseError=Te,exports.StatusCode=H,exports.default=Ee,exports.del=ye,exports.get=ge,exports.head=_e,exports.options=ve,exports.patch=Ce,exports.post=be,exports.put=Se,exports.request=he,exports.upload=xe;
|
|
4
|
+
`+t.prev}function xe(e,t){var n=ae(e),r=[];if(n){r.length=e.length;for(var i=0;i<e.length;i++)r[i]=q(e,i)?t(e[i],e):``}var a=typeof A==`function`?A(e):[],o;if(M){o={};for(var s=0;s<a.length;s++)o[`$`+a[s]]=a[s]}for(var c in e){if(!q(e,c)||n&&String(Number(c))===c&&c<e.length||M&&o[`$`+c]instanceof Symbol)continue;T.call(/[^\w$]/,c)?r.push(t(c,e)+`: `+t(e[c],e)):r.push(c+`: `+t(e[c],e))}if(typeof A==`function`)for(var l=0;l<a.length;l++)te.call(e,a[l])&&r.push(`[`+t(a[l])+`]: `+t(e[a[l]],e));return r}}),i=e.__commonJSMin((exports,n)=>{var i=r(),a=t(),o=function(e,t,n){for(var r=e,i;(i=r.next)!=null;r=i)if(i.key===t)return r.next=i.next,n||(i.next=e.next,e.next=i),i},s=function(e,t){if(e){var n=o(e,t);return n&&n.value}},c=function(e,t,n){var r=o(e,t);r?r.value=n:e.next={key:t,next:e.next,value:n}},l=function(e,t){return e?!!o(e,t):!1},u=function(e,t){if(e)return o(e,t,!0)};n.exports=function(){var e,t={assert:function(e){if(!t.has(e))throw new a(`Side channel does not contain `+i(e))},delete:function(t){var n=e&&e.next,r=u(e,t);return r&&n&&n===r&&(e=void 0),!!r},get:function(t){return s(e,t)},has:function(t){return l(e,t)},set:function(t,n){e||={next:void 0},c(e,t,n)}};return t}}),a=e.__commonJSMin((exports,t)=>{t.exports=Object}),o=e.__commonJSMin((exports,t)=>{t.exports=Error}),s=e.__commonJSMin((exports,t)=>{t.exports=EvalError}),c=e.__commonJSMin((exports,t)=>{t.exports=RangeError}),l=e.__commonJSMin((exports,t)=>{t.exports=ReferenceError}),u=e.__commonJSMin((exports,t)=>{t.exports=SyntaxError}),d=e.__commonJSMin((exports,t)=>{t.exports=URIError}),f=e.__commonJSMin((exports,t)=>{t.exports=Math.abs}),p=e.__commonJSMin((exports,t)=>{t.exports=Math.floor}),m=e.__commonJSMin((exports,t)=>{t.exports=Math.max}),h=e.__commonJSMin((exports,t)=>{t.exports=Math.min}),g=e.__commonJSMin((exports,t)=>{t.exports=Math.pow}),_=e.__commonJSMin((exports,t)=>{t.exports=Math.round}),v=e.__commonJSMin((exports,t)=>{t.exports=Number.isNaN||function(e){return e!==e}}),y=e.__commonJSMin((exports,t)=>{var n=v();t.exports=function(e){return n(e)||e===0?e:e<0?-1:1}}),b=e.__commonJSMin((exports,t)=>{t.exports=Object.getOwnPropertyDescriptor}),x=e.__commonJSMin((exports,t)=>{var n=b();if(n)try{n([],`length`)}catch{n=null}t.exports=n}),S=e.__commonJSMin((exports,t)=>{var n=Object.defineProperty||!1;if(n)try{n({},`a`,{value:1})}catch{n=!1}t.exports=n}),C=e.__commonJSMin((exports,t)=>{t.exports=function(){if(typeof Symbol!=`function`||typeof Object.getOwnPropertySymbols!=`function`)return!1;if(typeof Symbol.iterator==`symbol`)return!0;var e={},t=Symbol(`test`),n=Object(t);if(typeof t==`string`||Object.prototype.toString.call(t)!==`[object Symbol]`||Object.prototype.toString.call(n)!==`[object Symbol]`)return!1;var r=42;for(var i in e[t]=r,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]!==t||!Object.prototype.propertyIsEnumerable.call(e,t))return!1;if(typeof Object.getOwnPropertyDescriptor==`function`){var o=Object.getOwnPropertyDescriptor(e,t);if(o.value!==r||o.enumerable!==!0)return!1}return!0}}),w=e.__commonJSMin((exports,t)=>{var n=typeof Symbol<`u`&&Symbol,r=C();t.exports=function(){return typeof n!=`function`||typeof Symbol!=`function`||typeof n(`foo`)!=`symbol`||typeof Symbol(`bar`)!=`symbol`?!1:r()}}),T=e.__commonJSMin((exports,t)=>{t.exports=typeof Reflect<`u`&&Reflect.getPrototypeOf||null}),E=e.__commonJSMin((exports,t)=>{var n=a();t.exports=n.getPrototypeOf||null}),D=e.__commonJSMin((exports,t)=>{var n=`Function.prototype.bind called on incompatible `,r=Object.prototype.toString,i=Math.max,a=`[object Function]`,o=function(e,t){for(var n=[],r=0;r<e.length;r+=1)n[r]=e[r];for(var i=0;i<t.length;i+=1)n[i+e.length]=t[i];return n},s=function(e,t){for(var n=[],r=t||0,i=0;r<e.length;r+=1,i+=1)n[i]=e[r];return n},c=function(e,t){for(var n=``,r=0;r<e.length;r+=1)n+=e[r],r+1<e.length&&(n+=t);return n};t.exports=function(e){var t=this;if(typeof t!=`function`||r.apply(t)!==a)throw TypeError(n+t);for(var l=s(arguments,1),u,d=function(){if(this instanceof u){var n=t.apply(this,o(l,arguments));return Object(n)===n?n:this}return t.apply(e,o(l,arguments))},f=i(0,t.length-l.length),p=[],m=0;m<f;m++)p[m]=`$`+m;if(u=Function(`binder`,`return function (`+c(p,`,`)+`){ return binder.apply(this,arguments); }`)(d),t.prototype){var h=function(){};h.prototype=t.prototype,u.prototype=new h,h.prototype=null}return u}}),O=e.__commonJSMin((exports,t)=>{var n=D();t.exports=Function.prototype.bind||n}),k=e.__commonJSMin((exports,t)=>{t.exports=Function.prototype.call}),ee=e.__commonJSMin((exports,t)=>{t.exports=Function.prototype.apply}),A=e.__commonJSMin((exports,t)=>{t.exports=typeof Reflect<`u`&&Reflect&&Reflect.apply}),j=e.__commonJSMin((exports,t)=>{var n=O(),r=ee(),i=k(),a=A();t.exports=a||n.call(i,r)}),M=e.__commonJSMin((exports,n)=>{var r=O(),i=t(),a=k(),o=j();n.exports=function(e){if(e.length<1||typeof e[0]!=`function`)throw new i(`a function is required`);return o(r,a,e)}}),N=e.__commonJSMin((exports,t)=>{var n=M(),r=x(),i;try{i=[].__proto__===Array.prototype}catch(e){if(!e||typeof e!=`object`||!(`code`in e)||e.code!==`ERR_PROTO_ACCESS`)throw e}var a=!!i&&r&&r(Object.prototype,`__proto__`),o=Object,s=o.getPrototypeOf;t.exports=a&&typeof a.get==`function`?n([a.get]):typeof s==`function`?function(e){return s(e==null?e:o(e))}:!1}),te=e.__commonJSMin((exports,t)=>{var n=T(),r=E(),i=N();t.exports=n?function(e){return n(e)}:r?function(e){if(!e||typeof e!=`object`&&typeof e!=`function`)throw TypeError(`getProto: not an object`);return r(e)}:i?function(e){return i(e)}:null}),P=e.__commonJSMin((exports,t)=>{var n=Function.prototype.call,r=Object.prototype.hasOwnProperty,i=O();t.exports=i.call(n,r)}),F=e.__commonJSMin((exports,n)=>{var r,i=a(),v=o(),b=s(),C=c(),D=l(),A=u(),j=t(),M=d(),N=f(),F=p(),I=m(),L=h(),R=g(),ne=_(),z=y(),re=Function,ie=function(e){try{return re(`"use strict"; return (`+e+`).constructor;`)()}catch{}},B=x(),ae=S(),oe=function(){throw new j},V=B?function(){try{return arguments.callee,oe}catch{try{return B(arguments,`callee`).get}catch{return oe}}}():oe,H=w()(),U=te(),W=E(),se=T(),G=ee(),ce=k(),K={},q=typeof Uint8Array>`u`||!U?r:U(Uint8Array),J={__proto__:null,"%AggregateError%":typeof AggregateError>`u`?r:AggregateError,"%Array%":Array,"%ArrayBuffer%":typeof ArrayBuffer>`u`?r:ArrayBuffer,"%ArrayIteratorPrototype%":H&&U?U([][Symbol.iterator]()):r,"%AsyncFromSyncIteratorPrototype%":r,"%AsyncFunction%":K,"%AsyncGenerator%":K,"%AsyncGeneratorFunction%":K,"%AsyncIteratorPrototype%":K,"%Atomics%":typeof Atomics>`u`?r:Atomics,"%BigInt%":typeof BigInt>`u`?r:BigInt,"%BigInt64Array%":typeof BigInt64Array>`u`?r:BigInt64Array,"%BigUint64Array%":typeof BigUint64Array>`u`?r:BigUint64Array,"%Boolean%":Boolean,"%DataView%":typeof DataView>`u`?r:DataView,"%Date%":Date,"%decodeURI%":decodeURI,"%decodeURIComponent%":decodeURIComponent,"%encodeURI%":encodeURI,"%encodeURIComponent%":encodeURIComponent,"%Error%":v,"%eval%":eval,"%EvalError%":b,"%Float16Array%":typeof Float16Array>`u`?r:Float16Array,"%Float32Array%":typeof Float32Array>`u`?r:Float32Array,"%Float64Array%":typeof Float64Array>`u`?r:Float64Array,"%FinalizationRegistry%":typeof FinalizationRegistry>`u`?r:FinalizationRegistry,"%Function%":re,"%GeneratorFunction%":K,"%Int8Array%":typeof Int8Array>`u`?r:Int8Array,"%Int16Array%":typeof Int16Array>`u`?r:Int16Array,"%Int32Array%":typeof Int32Array>`u`?r:Int32Array,"%isFinite%":isFinite,"%isNaN%":isNaN,"%IteratorPrototype%":H&&U?U(U([][Symbol.iterator]())):r,"%JSON%":typeof JSON==`object`?JSON:r,"%Map%":typeof Map>`u`?r:Map,"%MapIteratorPrototype%":typeof Map>`u`||!H||!U?r:U(new Map()[Symbol.iterator]()),"%Math%":Math,"%Number%":Number,"%Object%":i,"%Object.getOwnPropertyDescriptor%":B,"%parseFloat%":parseFloat,"%parseInt%":parseInt,"%Promise%":typeof Promise>`u`?r:Promise,"%Proxy%":typeof Proxy>`u`?r:Proxy,"%RangeError%":C,"%ReferenceError%":D,"%Reflect%":typeof Reflect>`u`?r:Reflect,"%RegExp%":RegExp,"%Set%":typeof Set>`u`?r:Set,"%SetIteratorPrototype%":typeof Set>`u`||!H||!U?r:U(new Set()[Symbol.iterator]()),"%SharedArrayBuffer%":typeof SharedArrayBuffer>`u`?r:SharedArrayBuffer,"%String%":String,"%StringIteratorPrototype%":H&&U?U(``[Symbol.iterator]()):r,"%Symbol%":H?Symbol:r,"%SyntaxError%":A,"%ThrowTypeError%":V,"%TypedArray%":q,"%TypeError%":j,"%Uint8Array%":typeof Uint8Array>`u`?r:Uint8Array,"%Uint8ClampedArray%":typeof Uint8ClampedArray>`u`?r:Uint8ClampedArray,"%Uint16Array%":typeof Uint16Array>`u`?r:Uint16Array,"%Uint32Array%":typeof Uint32Array>`u`?r:Uint32Array,"%URIError%":M,"%WeakMap%":typeof WeakMap>`u`?r:WeakMap,"%WeakRef%":typeof WeakRef>`u`?r:WeakRef,"%WeakSet%":typeof WeakSet>`u`?r:WeakSet,"%Function.prototype.call%":ce,"%Function.prototype.apply%":G,"%Object.defineProperty%":ae,"%Object.getPrototypeOf%":W,"%Math.abs%":N,"%Math.floor%":F,"%Math.max%":I,"%Math.min%":L,"%Math.pow%":R,"%Math.round%":ne,"%Math.sign%":z,"%Reflect.getPrototypeOf%":se};if(U)try{null.error}catch(e){var le=U(U(e));J[`%Error.prototype%`]=le}var ue=function e(t){var n;if(t===`%AsyncFunction%`)n=ie(`async function () {}`);else if(t===`%GeneratorFunction%`)n=ie(`function* () {}`);else if(t===`%AsyncGeneratorFunction%`)n=ie(`async function* () {}`);else if(t===`%AsyncGenerator%`){var r=e(`%AsyncGeneratorFunction%`);r&&(n=r.prototype)}else if(t===`%AsyncIteratorPrototype%`){var i=e(`%AsyncGenerator%`);i&&U&&(n=U(i.prototype))}return J[t]=n,n},de={__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`]},Y=O(),fe=P(),pe=Y.call(ce,Array.prototype.concat),me=Y.call(G,Array.prototype.splice),X=Y.call(ce,String.prototype.replace),Z=Y.call(ce,String.prototype.slice),Q=Y.call(ce,RegExp.prototype.exec),he=/[^%.[\]]+|\[(?:(-?\d+(?:\.\d+)?)|(["'])((?:(?!\2)[^\\]|\\.)*?)\2)\]|(?=(?:\.|\[\])(?:\.|\[\]|%$))/g,ge=/\\(\\)?/g,_e=function(e){var t=Z(e,0,1),n=Z(e,-1);if(t===`%`&&n!==`%`)throw new A("invalid intrinsic syntax, expected closing `%`");if(n===`%`&&t!==`%`)throw new A("invalid intrinsic syntax, expected opening `%`");var r=[];return X(e,he,function(e,t,n,i){r[r.length]=n?X(i,ge,`$1`):t||e}),r},ve=function(e,t){var n=e,r;if(fe(de,n)&&(r=de[n],n=`%`+r[0]+`%`),fe(J,n)){var i=J[n];if(i===K&&(i=ue(n)),i===void 0&&!t)throw new j(`intrinsic `+e+` exists, but is not available. Please file an issue!`);return{alias:r,name:n,value:i}}throw new A(`intrinsic `+e+` does not exist!`)};n.exports=function(e,t){if(typeof e!=`string`||e.length===0)throw new j(`intrinsic name must be a non-empty string`);if(arguments.length>1&&typeof t!=`boolean`)throw new j(`"allowMissing" argument must be a boolean`);if(Q(/^%?[^%]*%?$/,e)===null)throw new A("`%` may not be present anywhere but at the beginning and end of the intrinsic name");var n=_e(e),r=n.length>0?n[0]:``,i=ve(`%`+r+`%`,t),a=i.name,o=i.value,s=!1,c=i.alias;c&&(r=c[0],me(n,pe([0,1],c)));for(var l=1,u=!0;l<n.length;l+=1){var d=n[l],f=Z(d,0,1),p=Z(d,-1);if((f===`"`||f===`'`||f==="`"||p===`"`||p===`'`||p==="`")&&f!==p)throw new A(`property names with quotes must have matching quotes`);if((d===`constructor`||!u)&&(s=!0),r+=`.`+d,a=`%`+r+`%`,fe(J,a))o=J[a];else if(o!=null){if(!(d in o)){if(!t)throw new j(`base intrinsic for `+e+` exists, but the property is not available.`);return}if(B&&l+1>=n.length){var m=B(o,d);u=!!m,o=u&&`get`in m&&!(`originalValue`in m.get)?m.get:o[d]}else u=fe(o,d),o=o[d];u&&!s&&(J[a]=o)}}return o}}),I=e.__commonJSMin((exports,t)=>{var n=F(),r=M(),i=r([n(`%String.prototype.indexOf%`)]);t.exports=function(e,t){var a=n(e,!!t);return typeof a==`function`&&i(e,`.prototype.`)>-1?r([a]):a}}),L=e.__commonJSMin((exports,n)=>{var i=F(),a=I(),o=r(),s=t(),c=i(`%Map%`,!0),l=a(`Map.prototype.get`,!0),u=a(`Map.prototype.set`,!0),d=a(`Map.prototype.has`,!0),f=a(`Map.prototype.delete`,!0),p=a(`Map.prototype.size`,!0);n.exports=!!c&&function(){var e,t={assert:function(e){if(!t.has(e))throw new s(`Side channel does not contain `+o(e))},delete:function(t){if(e){var n=f(e,t);return p(e)===0&&(e=void 0),n}return!1},get:function(t){if(e)return l(e,t)},has:function(t){return e?d(e,t):!1},set:function(t,n){e||=new c,u(e,t,n)}};return t}}),R=e.__commonJSMin((exports,n)=>{var i=F(),a=I(),o=r(),s=L(),c=t(),l=i(`%WeakMap%`,!0),u=a(`WeakMap.prototype.get`,!0),d=a(`WeakMap.prototype.set`,!0),f=a(`WeakMap.prototype.has`,!0),p=a(`WeakMap.prototype.delete`,!0);n.exports=l?function(){var e,t,n={assert:function(e){if(!n.has(e))throw new c(`Side channel does not contain `+o(e))},delete:function(n){if(l&&n&&(typeof n==`object`||typeof n==`function`)){if(e)return p(e,n)}else if(s&&t)return t.delete(n);return!1},get:function(n){return l&&n&&(typeof n==`object`||typeof n==`function`)&&e?u(e,n):t&&t.get(n)},has:function(n){return l&&n&&(typeof n==`object`||typeof n==`function`)&&e?f(e,n):!!t&&t.has(n)},set:function(n,r){l&&n&&(typeof n==`object`||typeof n==`function`)?(e||=new l,d(e,n,r)):s&&(t||=s(),t.set(n,r))}};return n}:s}),ne=e.__commonJSMin((exports,n)=>{var a=t(),o=r(),s=i(),c=L(),l=R(),u=l||c||s;n.exports=function(){var e,t={assert:function(e){if(!t.has(e))throw new a(`Side channel does not contain `+o(e))},delete:function(t){return!!e&&e.delete(t)},get:function(t){return e&&e.get(t)},has:function(t){return!!e&&e.has(t)},set:function(t,n){e||=u(),e.set(t,n)}};return t}}),z=e.__commonJSMin((exports,t)=>{var n=String.prototype.replace,r=/%20/g,i={RFC1738:`RFC1738`,RFC3986:`RFC3986`};t.exports={default:i.RFC3986,formatters:{RFC1738:function(e){return n.call(e,r,`+`)},RFC3986:function(e){return String(e)}},RFC1738:i.RFC1738,RFC3986:i.RFC3986}}),re=e.__commonJSMin((exports,t)=>{var n=z(),r=Object.prototype.hasOwnProperty,i=Array.isArray,a=function(){for(var e=[],t=0;t<256;++t)e.push(`%`+((t<16?`0`:``)+t.toString(16)).toUpperCase());return e}(),o=function(e){for(;e.length>1;){var t=e.pop(),n=t.obj[t.prop];if(i(n)){for(var r=[],a=0;a<n.length;++a)n[a]!==void 0&&r.push(n[a]);t.obj[t.prop]=r}}},s=function(e,t){for(var n=t&&t.plainObjects?{__proto__:null}:{},r=0;r<e.length;++r)e[r]!==void 0&&(n[r]=e[r]);return n},c=function e(t,n,a){if(!n)return t;if(typeof n!=`object`&&typeof n!=`function`){if(i(t))t.push(n);else if(t&&typeof t==`object`)(a&&(a.plainObjects||a.allowPrototypes)||!r.call(Object.prototype,n))&&(t[n]=!0);else return[t,n];return t}if(!t||typeof t!=`object`)return[t].concat(n);var o=t;return i(t)&&!i(n)&&(o=s(t,a)),i(t)&&i(n)?(n.forEach(function(n,i){if(r.call(t,i)){var o=t[i];o&&typeof o==`object`&&n&&typeof n==`object`?t[i]=e(o,n,a):t.push(n)}else t[i]=n}),t):Object.keys(n).reduce(function(t,i){var o=n[i];return r.call(t,i)?t[i]=e(t[i],o,a):t[i]=o,t},o)},l=function(e,t){return Object.keys(t).reduce(function(e,n){return e[n]=t[n],e},e)},u=function(e,t,n){var r=e.replace(/\+/g,` `);if(n===`iso-8859-1`)return r.replace(/%[0-9a-f]{2}/gi,unescape);try{return decodeURIComponent(r)}catch{return r}},d=1024,f=function(e,t,r,i,o){if(e.length===0)return e;var s=e;if(typeof e==`symbol`?s=Symbol.prototype.toString.call(e):typeof e!=`string`&&(s=String(e)),r===`iso-8859-1`)return escape(s).replace(/%u[0-9a-f]{4}/gi,function(e){return`%26%23`+parseInt(e.slice(2),16)+`%3B`});for(var c=``,l=0;l<s.length;l+=d){for(var u=s.length>=d?s.slice(l,l+d):s,f=[],p=0;p<u.length;++p){var m=u.charCodeAt(p);if(m===45||m===46||m===95||m===126||m>=48&&m<=57||m>=65&&m<=90||m>=97&&m<=122||o===n.RFC1738&&(m===40||m===41)){f[f.length]=u.charAt(p);continue}if(m<128){f[f.length]=a[m];continue}if(m<2048){f[f.length]=a[192|m>>6]+a[128|m&63];continue}if(m<55296||m>=57344){f[f.length]=a[224|m>>12]+a[128|m>>6&63]+a[128|m&63];continue}p+=1,m=65536+((m&1023)<<10|u.charCodeAt(p)&1023),f[f.length]=a[240|m>>18]+a[128|m>>12&63]+a[128|m>>6&63]+a[128|m&63]}c+=f.join(``)}return c},p=function(e){for(var t=[{obj:{o:e},prop:`o`}],n=[],r=0;r<t.length;++r)for(var i=t[r],a=i.obj[i.prop],s=Object.keys(a),c=0;c<s.length;++c){var l=s[c],u=a[l];typeof u==`object`&&u&&n.indexOf(u)===-1&&(t.push({obj:a,prop:l}),n.push(u))}return o(t),e},m=function(e){return Object.prototype.toString.call(e)===`[object RegExp]`},h=function(e){return!e||typeof e!=`object`?!1:!!(e.constructor&&e.constructor.isBuffer&&e.constructor.isBuffer(e))},g=function(e,t){return[].concat(e,t)},_=function(e,t){if(i(e)){for(var n=[],r=0;r<e.length;r+=1)n.push(t(e[r]));return n}return t(e)};t.exports={arrayToObject:s,assign:l,combine:g,compact:p,decode:u,encode:f,isBuffer:h,isRegExp:m,maybeMap:_,merge:c}}),ie=e.__commonJSMin((exports,t)=>{var n=ne(),r=re(),i=z(),a=Object.prototype.hasOwnProperty,o={brackets:function(e){return e+`[]`},comma:`comma`,indices:function(e,t){return e+`[`+t+`]`},repeat:function(e){return e}},s=Array.isArray,c=Array.prototype.push,l=function(e,t){c.apply(e,s(t)?t:[t])},u=Date.prototype.toISOString,d=i.default,f={addQueryPrefix:!1,allowDots:!1,allowEmptyArrays:!1,arrayFormat:`indices`,charset:`utf-8`,charsetSentinel:!1,commaRoundTrip:!1,delimiter:`&`,encode:!0,encodeDotInKeys:!1,encoder:r.encode,encodeValuesOnly:!1,filter:void 0,format:d,formatter:i.formatters[d],indices:!1,serializeDate:function(e){return u.call(e)},skipNulls:!1,strictNullHandling:!1},p=function(e){return typeof e==`string`||typeof e==`number`||typeof e==`boolean`||typeof e==`symbol`||typeof e==`bigint`},m={},h=function e(t,i,a,o,c,u,d,h,g,_,v,y,b,x,S,C,w,T){for(var E=t,D=T,O=0,k=!1;(D=D.get(m))!==void 0&&!k;){var ee=D.get(t);if(O+=1,ee!==void 0){if(ee===O)throw RangeError(`Cyclic object value`);k=!0}D.get(m)===void 0&&(O=0)}if(typeof _==`function`?E=_(i,E):E instanceof Date?E=b(E):a===`comma`&&s(E)&&(E=r.maybeMap(E,function(e){return e instanceof Date?b(e):e})),E===null){if(u)return g&&!C?g(i,f.encoder,w,`key`,x):i;E=``}if(p(E)||r.isBuffer(E)){if(g){var A=C?i:g(i,f.encoder,w,`key`,x);return[S(A)+`=`+S(g(E,f.encoder,w,`value`,x))]}return[S(i)+`=`+S(String(E))]}var j=[];if(E===void 0)return j;var M;if(a===`comma`&&s(E))C&&g&&(E=r.maybeMap(E,g)),M=[{value:E.length>0?E.join(`,`)||null:void 0}];else if(s(_))M=_;else{var N=Object.keys(E);M=v?N.sort(v):N}var te=h?String(i).replace(/\./g,`%2E`):String(i),P=o&&s(E)&&E.length===1?te+`[]`:te;if(c&&s(E)&&E.length===0)return P+`[]`;for(var F=0;F<M.length;++F){var I=M[F],L=typeof I==`object`&&I&&I.value!==void 0?I.value:E[I];if(!(d&&L===null)){var R=y&&h?String(I).replace(/\./g,`%2E`):String(I),ne=s(E)?typeof a==`function`?a(P,R):P:P+(y?`.`+R:`[`+R+`]`);T.set(t,O);var z=n();z.set(m,T),l(j,e(L,ne,a,o,c,u,d,h,a===`comma`&&C&&s(E)?null:g,_,v,y,b,x,S,C,w,z))}}return j},g=function(e){if(!e)return f;if(e.allowEmptyArrays!==void 0&&typeof e.allowEmptyArrays!=`boolean`)throw TypeError("`allowEmptyArrays` option can only be `true` or `false`, when provided");if(e.encodeDotInKeys!==void 0&&typeof e.encodeDotInKeys!=`boolean`)throw TypeError("`encodeDotInKeys` option can only be `true` or `false`, when provided");if(e.encoder!==null&&e.encoder!==void 0&&typeof e.encoder!=`function`)throw TypeError(`Encoder has to be a function.`);var t=e.charset||f.charset;if(e.charset!==void 0&&e.charset!==`utf-8`&&e.charset!==`iso-8859-1`)throw TypeError(`The charset option must be either utf-8, iso-8859-1, or undefined`);var n=i.default;if(e.format!==void 0){if(!a.call(i.formatters,e.format))throw TypeError(`Unknown format option provided.`);n=e.format}var r=i.formatters[n],c=f.filter;(typeof e.filter==`function`||s(e.filter))&&(c=e.filter);var l;if(l=e.arrayFormat in o?e.arrayFormat:`indices`in e?e.indices?`indices`:`repeat`:f.arrayFormat,`commaRoundTrip`in e&&typeof e.commaRoundTrip!=`boolean`)throw TypeError("`commaRoundTrip` must be a boolean, or absent");var u=e.allowDots===void 0?e.encodeDotInKeys===!0?!0:f.allowDots:!!e.allowDots;return{addQueryPrefix:typeof e.addQueryPrefix==`boolean`?e.addQueryPrefix:f.addQueryPrefix,allowDots:u,allowEmptyArrays:typeof e.allowEmptyArrays==`boolean`?!!e.allowEmptyArrays:f.allowEmptyArrays,arrayFormat:l,charset:t,charsetSentinel:typeof e.charsetSentinel==`boolean`?e.charsetSentinel:f.charsetSentinel,commaRoundTrip:!!e.commaRoundTrip,delimiter:e.delimiter===void 0?f.delimiter:e.delimiter,encode:typeof e.encode==`boolean`?e.encode:f.encode,encodeDotInKeys:typeof e.encodeDotInKeys==`boolean`?e.encodeDotInKeys:f.encodeDotInKeys,encoder:typeof e.encoder==`function`?e.encoder:f.encoder,encodeValuesOnly:typeof e.encodeValuesOnly==`boolean`?e.encodeValuesOnly:f.encodeValuesOnly,filter:c,format:n,formatter:r,serializeDate:typeof e.serializeDate==`function`?e.serializeDate:f.serializeDate,skipNulls:typeof e.skipNulls==`boolean`?e.skipNulls:f.skipNulls,sort:typeof e.sort==`function`?e.sort:null,strictNullHandling:typeof e.strictNullHandling==`boolean`?e.strictNullHandling:f.strictNullHandling}};t.exports=function(e,t){var r=e,i=g(t),a,c;typeof i.filter==`function`?(c=i.filter,r=c(``,r)):s(i.filter)&&(c=i.filter,a=c);var u=[];if(typeof r!=`object`||!r)return``;var d=o[i.arrayFormat],f=d===`comma`&&i.commaRoundTrip;a||=Object.keys(r),i.sort&&a.sort(i.sort);for(var p=n(),m=0;m<a.length;++m){var _=a[m],v=r[_];i.skipNulls&&v===null||l(u,h(v,_,d,f,i.allowEmptyArrays,i.strictNullHandling,i.skipNulls,i.encodeDotInKeys,i.encode?i.encoder:null,i.filter,i.sort,i.allowDots,i.serializeDate,i.format,i.formatter,i.encodeValuesOnly,i.charset,p))}var y=u.join(i.delimiter),b=i.addQueryPrefix===!0?`?`:``;return i.charsetSentinel&&(i.charset===`iso-8859-1`?b+=`utf8=%26%2310003%3B&`:b+=`utf8=%E2%9C%93&`),y.length>0?b+y:``}}),B=e.__commonJSMin((exports,t)=>{var n=re(),r=Object.prototype.hasOwnProperty,i=Array.isArray,a={allowDots:!1,allowEmptyArrays:!1,allowPrototypes:!1,allowSparse:!1,arrayLimit:20,charset:`utf-8`,charsetSentinel:!1,comma:!1,decodeDotInKeys:!1,decoder:n.decode,delimiter:`&`,depth:5,duplicates:`combine`,ignoreQueryPrefix:!1,interpretNumericEntities:!1,parameterLimit:1e3,parseArrays:!0,plainObjects:!1,strictDepth:!1,strictNullHandling:!1,throwOnLimitExceeded:!1},o=function(e){return e.replace(/&#(\d+);/g,function(e,t){return String.fromCharCode(parseInt(t,10))})},s=function(e,t,n){if(e&&typeof e==`string`&&t.comma&&e.indexOf(`,`)>-1)return e.split(`,`);if(t.throwOnLimitExceeded&&n>=t.arrayLimit)throw RangeError(`Array limit exceeded. Only `+t.arrayLimit+` element`+(t.arrayLimit===1?``:`s`)+` allowed in an array.`);return e},c=`utf8=%26%2310003%3B`,l=`utf8=%E2%9C%93`,u=function(e,t){var u={__proto__:null},d=t.ignoreQueryPrefix?e.replace(/^\?/,``):e;d=d.replace(/%5B/gi,`[`).replace(/%5D/gi,`]`);var f=t.parameterLimit===1/0?void 0:t.parameterLimit,p=d.split(t.delimiter,t.throwOnLimitExceeded?f+1:f);if(t.throwOnLimitExceeded&&p.length>f)throw RangeError(`Parameter limit exceeded. Only `+f+` parameter`+(f===1?``:`s`)+` allowed.`);var m=-1,h,g=t.charset;if(t.charsetSentinel)for(h=0;h<p.length;++h)p[h].indexOf(`utf8=`)===0&&(p[h]===l?g=`utf-8`:p[h]===c&&(g=`iso-8859-1`),m=h,h=p.length);for(h=0;h<p.length;++h)if(h!==m){var _=p[h],v=_.indexOf(`]=`),y=v===-1?_.indexOf(`=`):v+1,b,x;y===-1?(b=t.decoder(_,a.decoder,g,`key`),x=t.strictNullHandling?null:``):(b=t.decoder(_.slice(0,y),a.decoder,g,`key`),x=n.maybeMap(s(_.slice(y+1),t,i(u[b])?u[b].length:0),function(e){return t.decoder(e,a.decoder,g,`value`)})),x&&t.interpretNumericEntities&&g===`iso-8859-1`&&(x=o(String(x))),_.indexOf(`[]=`)>-1&&(x=i(x)?[x]:x);var S=r.call(u,b);S&&t.duplicates===`combine`?u[b]=n.combine(u[b],x):(!S||t.duplicates===`last`)&&(u[b]=x)}return u},d=function(e,t,r,i){var a=0;if(e.length>0&&e[e.length-1]===`[]`){var o=e.slice(0,-1).join(``);a=Array.isArray(t)&&t[o]?t[o].length:0}for(var c=i?t:s(t,r,a),l=e.length-1;l>=0;--l){var u,d=e[l];if(d===`[]`&&r.parseArrays)u=r.allowEmptyArrays&&(c===``||r.strictNullHandling&&c===null)?[]:n.combine([],c);else{u=r.plainObjects?{__proto__:null}:{};var f=d.charAt(0)===`[`&&d.charAt(d.length-1)===`]`?d.slice(1,-1):d,p=r.decodeDotInKeys?f.replace(/%2E/g,`.`):f,m=parseInt(p,10);!r.parseArrays&&p===``?u={0:c}:!isNaN(m)&&d!==p&&String(m)===p&&m>=0&&r.parseArrays&&m<=r.arrayLimit?(u=[],u[m]=c):p!==`__proto__`&&(u[p]=c)}c=u}return c},f=function(e,t,n,i){if(e){var a=n.allowDots?e.replace(/\.([^.[]+)/g,`[$1]`):e,o=/(\[[^[\]]*])/,s=/(\[[^[\]]*])/g,c=n.depth>0&&o.exec(a),l=c?a.slice(0,c.index):a,u=[];if(l){if(!n.plainObjects&&r.call(Object.prototype,l)&&!n.allowPrototypes)return;u.push(l)}for(var f=0;n.depth>0&&(c=s.exec(a))!==null&&f<n.depth;){if(f+=1,!n.plainObjects&&r.call(Object.prototype,c[1].slice(1,-1))&&!n.allowPrototypes)return;u.push(c[1])}if(c){if(n.strictDepth===!0)throw RangeError(`Input depth exceeded depth option of `+n.depth+` and strictDepth is true`);u.push(`[`+a.slice(c.index)+`]`)}return d(u,t,n,i)}},p=function(e){if(!e)return a;if(e.allowEmptyArrays!==void 0&&typeof e.allowEmptyArrays!=`boolean`)throw TypeError("`allowEmptyArrays` option can only be `true` or `false`, when provided");if(e.decodeDotInKeys!==void 0&&typeof e.decodeDotInKeys!=`boolean`)throw TypeError("`decodeDotInKeys` option can only be `true` or `false`, when provided");if(e.decoder!==null&&e.decoder!==void 0&&typeof e.decoder!=`function`)throw TypeError(`Decoder has to be a function.`);if(e.charset!==void 0&&e.charset!==`utf-8`&&e.charset!==`iso-8859-1`)throw TypeError(`The charset option must be either utf-8, iso-8859-1, or undefined`);if(e.throwOnLimitExceeded!==void 0&&typeof e.throwOnLimitExceeded!=`boolean`)throw TypeError("`throwOnLimitExceeded` option must be a boolean");var t=e.charset===void 0?a.charset:e.charset,r=e.duplicates===void 0?a.duplicates:e.duplicates;if(r!==`combine`&&r!==`first`&&r!==`last`)throw TypeError(`The duplicates option must be either combine, first, or last`);var i=e.allowDots===void 0?e.decodeDotInKeys===!0?!0:a.allowDots:!!e.allowDots;return{allowDots:i,allowEmptyArrays:typeof e.allowEmptyArrays==`boolean`?!!e.allowEmptyArrays:a.allowEmptyArrays,allowPrototypes:typeof e.allowPrototypes==`boolean`?e.allowPrototypes:a.allowPrototypes,allowSparse:typeof e.allowSparse==`boolean`?e.allowSparse:a.allowSparse,arrayLimit:typeof e.arrayLimit==`number`?e.arrayLimit:a.arrayLimit,charset:t,charsetSentinel:typeof e.charsetSentinel==`boolean`?e.charsetSentinel:a.charsetSentinel,comma:typeof e.comma==`boolean`?e.comma:a.comma,decodeDotInKeys:typeof e.decodeDotInKeys==`boolean`?e.decodeDotInKeys:a.decodeDotInKeys,decoder:typeof e.decoder==`function`?e.decoder:a.decoder,delimiter:typeof e.delimiter==`string`||n.isRegExp(e.delimiter)?e.delimiter:a.delimiter,depth:typeof e.depth==`number`||e.depth===!1?+e.depth:a.depth,duplicates:r,ignoreQueryPrefix:e.ignoreQueryPrefix===!0,interpretNumericEntities:typeof e.interpretNumericEntities==`boolean`?e.interpretNumericEntities:a.interpretNumericEntities,parameterLimit:typeof e.parameterLimit==`number`?e.parameterLimit:a.parameterLimit,parseArrays:e.parseArrays!==!1,plainObjects:typeof e.plainObjects==`boolean`?e.plainObjects:a.plainObjects,strictDepth:typeof e.strictDepth==`boolean`?!!e.strictDepth:a.strictDepth,strictNullHandling:typeof e.strictNullHandling==`boolean`?e.strictNullHandling:a.strictNullHandling,throwOnLimitExceeded:typeof e.throwOnLimitExceeded==`boolean`?e.throwOnLimitExceeded:!1}};t.exports=function(e,t){var r=p(t);if(e===``||e==null)return r.plainObjects?{__proto__:null}:{};for(var i=typeof e==`string`?u(e,r):e,a=r.plainObjects?{__proto__:null}:{},o=Object.keys(i),s=0;s<o.length;++s){var c=o[s],l=f(c,i[c],r,typeof e==`string`);a=n.merge(a,l,r)}return r.allowSparse===!0?a:n.compact(a)}}),ae=e.__commonJSMin((exports,t)=>{var n=ie(),r=B(),i=z();t.exports={formats:i,parse:r,stringify:n}});const oe=(e,t)=>e?!t||t.length===0?e:t.reduce((e,t)=>(delete e[t],e),{...e}):{};let V=function(e){return e.JSON=`application/json`,e.FORM_URLENCODED=`application/x-www-form-urlencoded`,e.FORM_DATA=`multipart/form-data`,e.TEXT=`text/plain`,e.HTML=`text/html`,e.XML=`text/xml`,e.CSV=`text/csv`,e.STREAM=`application/octet-stream`,e}({}),H=function(e){return e[e.TIME_OUT=408]=`TIME_OUT`,e[e.ABORTED=499]=`ABORTED`,e[e.NETWORK_ERROR=599]=`NETWORK_ERROR`,e[e.BODY_NULL=502]=`BODY_NULL`,e[e.UNKNOWN=601]=`UNKNOWN`,e}({}),U=function(e){return e.GET=`GET`,e.POST=`POST`,e.PUT=`PUT`,e.DELETE=`DELETE`,e.PATCH=`PATCH`,e.HEAD=`HEAD`,e.OPTIONS=`OPTIONS`,e}({});var W=class extends Error{#message;#name;#status;#statusText;#response;#config;constructor({message:e,status:t,statusText:n,response:r,config:i,name:a}){super(e),this.#message=e,this.#status=t,this.#statusText=n,this.#response=r,this.#config=i,this.#name=a??e}get message(){return this.#message}get status(){return this.#status}get statusText(){return this.#statusText}get response(){return this.#response}get config(){return this.#config}get name(){return this.#name}},se=e.__toESM(ae(),1),G=function(e){return e.JSON=`json`,e.BLOB=`blob`,e.TEXT=`text`,e.ARRAY_BUFFER=`arrayBuffer`,e.FORM_DATA=`formData`,e.BYTES=`bytes`,e}(G||{});const ce=e=>{let t=new Map;e.forEach(e=>{t.set(e.name,e)});let n=Array.from(t.values()).sort((e,t)=>(e.priority??0)-(t.priority??0)),r=[],i=[],a=[],o=[],s=[],c=[];return n.forEach(e=>{e.beforeRequest&&r.push(e.beforeRequest),e.afterResponse&&i.push(e.afterResponse),e.onError&&a.push(e.onError),e.onFinally&&o.push(e.onFinally),e.transformStreamChunk&&s.push(e.transformStreamChunk),e.beforeStream&&c.push(e.beforeStream)}),{beforeRequestPlugins:r,afterResponsePlugins:i,errorPlugins:a,finallyPlugins:o,beforeStreamPlugins:c,transformStreamChunkPlugins:s}},K=(e,t,n=`repeat`)=>{if(t){let r=se.default.stringify(t,{arrayFormat:n});r&&(e=e.includes(`?`)?`${e}&${r}`:`${e}?${r}`)}return e},q=(e={},t={})=>{let n=e instanceof Headers?e:new Headers(e),r=e=>{e instanceof Headers||(e=new Headers(e)),e.forEach((e,t)=>{n.set(t,e)})};return r(t),n},J=[`PATCH`,`POST`,`PUT`,`DELETE`,`OPTIONS`],le=[`GET`,`HEAD`],ue=(e,t,n,r=`repeat`)=>{if(!e)return null;if(e instanceof FormData)return e;let i=null;if(J.includes(t.toUpperCase())){let t=new Headers(n||{}),a=t.get(`Content-Type`)||V.JSON;if(a.includes(V.JSON))i=JSON.stringify(e);else if(a.includes(V.FORM_URLENCODED))i=se.default.stringify(e,{arrayFormat:r});else if(a.includes(V.FORM_DATA)){let t=new FormData;if(!(e instanceof FormData)&&typeof e==`object`){let n=e;Object.keys(n).forEach(e=>{n.prototype.hasOwnProperty.call(e)&&t.append(e,n[e])}),i=t}}}return le.includes(t.toUpperCase())&&(i=null),i};var de=class e{#plugins;#controller;#config;#promise;#isTimeout=!1;#executor=null;#finallyCallbacks=new Set;#responseType=`json`;#fullOptions;constructor(e){this.#fullOptions=e;let{plugins:t=[],controller:n,url:r,baseURL:i=``,params:a,data:o,qsArrayFormat:s=`repeat`,withCredentials:c=!1,extra:l,method:u=`GET`,headers:d={}}=e;this.#controller=n??new AbortController,this.#plugins=ce(t),this.#config={url:r,baseURL:i,params:a,data:o,withCredentials:c,extra:l,method:u,headers:d,qsArrayFormat:s},this.#promise=this.#init(e)}#init({timeout:e}){return new Promise(async(t,n)=>{let r=this.#config,{beforeRequestPlugins:i}=this.#plugins;for(let e of i)r=await e(r);let a=K(r.baseURL+r.url,r.params,r.qsArrayFormat),o=ue(r.data,r.method,r.headers,r.qsArrayFormat),s=oe(r??{},[`baseURL`,`data`,`extra`,`headers`,`method`,`params`,`url`,`withCredentials`]),c={...s,method:r.method,headers:r.headers,signal:this.#controller.signal,credentials:r.withCredentials?`include`:`omit`,body:o},l=fetch(a,c),u=[l],d=null;if(e){let t=new Promise(t=>{d=setTimeout(()=>{this.#isTimeout=!0,this.#controller?.abort()},e)});u.push(t)}let f=null;try{let e=await Promise.race(u);e?(e.ok&&t(e),f=new W({message:`Fail Request`,status:e.status,statusText:e.statusText,config:this.#config,name:`Fail Request`,response:e})):f=new W({message:`NETWORK_ERROR`,status:H.NETWORK_ERROR,statusText:`Network Error`,config:this.#config,name:`Network Error`})}catch(e){f=e}finally{f&&n(f),d&&clearTimeout(d)}})}async#createNormalizeError(e){return e instanceof W?e:e instanceof TypeError?e.name===`AbortError`?this.#isTimeout?new W({message:`Request timeout`,status:H.TIME_OUT,statusText:`Request timeout`,config:this.#config,name:`Request timeout`,response:await this.#response}):new W({message:`Request aborted`,status:H.ABORTED,statusText:`Request aborted`,config:this.#config,name:`Request aborted`,response:await this.#response}):new W({message:e.message,status:H.NETWORK_ERROR,statusText:`Unknown Request Error`,config:this.#config,name:e.name,response:await this.#response}):new W({message:e?.message??`Unknown Request Error`,status:H.UNKNOWN,statusText:`Unknown Request Error`,config:this.#config,name:`Unknown Request Error`,response:await this.#response})}async#normalizeError(e){let t=await this.#createNormalizeError(e);for(let e of this.#plugins.errorPlugins)t=await e(t,this.#config);return t}#execFinally(){for(let e of this.#finallyCallbacks)e();this.#finallyCallbacks.clear()}get#getExecutor(){return this.#executor?this.#executor:this.#response}async#resolve(e){let t=this.#plugins.afterResponsePlugins,n={config:this.#config,response:await this.#response.then(e=>e.clone()),responseType:this.#responseType,controller:this.#controller,result:e};try{for(let e of t)n=await e(n,this.#config);return n.result}catch(e){return Promise.reject(e)}}then(e,t){return this.#getExecutor.then(async t=>e?.call(this,await this.#resolve(t)),async e=>t?.call(this,await this.#normalizeError(e)))}catch(e){return this.#getExecutor.catch(e)}finally(e){this.#finallyCallbacks.add(e)}abort(){this.#controller.abort()}get#response(){return this.#promise.then(e=>e.clone())}json(){return this.#then(G.JSON,this.#response.then(e=>e.json()))}blob(){return this.#then(G.BLOB,this.#response.then(e=>e.blob()))}text(){return this.#then(G.TEXT,this.#response.then(e=>e.text()))}arrayBuffer(){return this.#then(G.ARRAY_BUFFER,this.#response.then(e=>e.arrayBuffer()))}#then(e,t){return this.#executor=t.then(t=>(this.#responseType=e,this.#resolve(t))).catch(async t=>{throw this.#responseType=e,await this.#normalizeError(t)}).finally(this.#execFinally.bind(this)),this.#executor}formData(){return this.#then(G.FORM_DATA,this.#response.then(e=>e.formData()))}bytes(){return this.#then(G.BYTES,this.#response.then(e=>e.bytes()))}async*stream(){let e=(await this.#response)?.body;if(!e)throw Error(`Response body is null`);for(let t of this.#plugins.beforeStreamPlugins)e=await t(e,this.#config);let t=e.getReader();if(!t)throw Error(`Response body reader is null`);try{for(;;){let{done:e,value:n}=await t.read();if(e)break;let r={source:n,result:n,error:null};try{for(let e of this.#plugins.transformStreamChunkPlugins)r=await e(r,this.#config);if(r.result&&(Y(r.result)||fe(r.result)))for await(let e of r.result){let t={source:r.source,result:e,error:null};yield t}else yield r}catch(e){r.error=e,r.result=null,yield r}}}catch(e){return this.#normalizeError(e)}finally{t.releaseLock(),this.#execFinally()}}retry(){let{controller:t,...n}=this.#fullOptions;return new e(n)}get response(){return this.#response}};const Y=e=>e[Symbol.toStringTag]===`Generator`&&typeof e.next==`function`&&typeof e.return==`function`&&typeof e.throw==`function`&&typeof e[Symbol.iterator]==`function`,fe=e=>e[Symbol.toStringTag]===`AsyncGenerator`&&typeof e.next==`function`&&typeof e.return==`function`&&typeof e.throw==`function`&&typeof e[Symbol.asyncIterator]==`function`,pe=e=>new de(e);var me=class{#timeout;#baseURL;#commonHeaders;#queue=[];#plugins=[];#withCredentials;constructor({timeout:e=0,baseURL:t=``,headers:n={},plugins:r=[],withCredentials:i=!1}){this.#timeout=e,this.#baseURL=t,this.#commonHeaders=n,this.#plugins=r,this.#withCredentials=i,this.request=this.request.bind(this),this.get=this.get.bind(this),this.head=this.head.bind(this),this.options=this.options.bind(this),this.delete=this.delete.bind(this),this.post=this.post.bind(this),this.put=this.put.bind(this),this.patch=this.patch.bind(this),this.abortAll=this.abortAll.bind(this),this.use=this.use.bind(this)}use(e){return this.#plugins.push(e),this}request(e,{timeout:t,headers:n,method:r=`GET`,params:i={},data:a={},qsArrayFormat:o,withCredentials:s,extra:c={}}={}){let l=new AbortController;this.#queue.push(l);let u=pe({url:e,baseURL:this.#baseURL,timeout:t??this.#timeout,plugins:this.#plugins,headers:q(this.#commonHeaders,n),controller:l,method:r,params:i,data:a,qsArrayFormat:o,withCredentials:s??this.#withCredentials,extra:c});return u.finally(()=>{this.#queue=this.#queue.filter(e=>e!==l)}),u}#requestWithParams(e,t={},n={}){return this.request(e,{...n,params:t})}#requestWithBody(e,t={},n={}){return this.request(e,{...n,data:t})}get(e,t={},n){return this.#requestWithParams(e,t,{...n,method:`GET`})}head(e,t={},n){return this.#requestWithParams(e,t,{...n,method:`HEAD`})}options(e,t={},n){return this.request(e,{...n,method:`OPTIONS`,params:t})}delete(e,t){return this.request(e,{...t,method:`DELETE`})}post(e,t,n){return this.#requestWithBody(e,t,{...n,method:`POST`})}upload(e,t,n){let r=new FormData;for(let e in t)if(Object.prototype.hasOwnProperty.call(t,e)){let n=t[e];n instanceof File||n instanceof Blob?r.append(e,n):r.append(e,String(n))}return this.#requestWithBody(e,r,{...n,method:`POST`})}put(e,t,n){return this.#requestWithBody(e,t,{...n,method:`PUT`})}patch(e,t,n){return this.#requestWithBody(e,t,{...n,method:`PATCH`})}abortAll(){this.#queue.forEach(e=>e.abort()),this.#queue=[]}};const X=(e,t={})=>pe({url:e,baseURL:``,...t}),Z=(e,t,n={})=>X(e,{...n,params:t}),Q=(e,t=null,n={})=>X(e,{...n,data:t}),he=X,ge=(e,t={},n)=>Z(e,t,{...n,method:`GET`}),_e=(e,t={},n)=>Z(e,t,{...n,method:`HEAD`}),ve=(e,t={},n)=>X(e,{...n,params:t,method:`OPTIONS`}),ye=(e,t)=>X(e,{...t,method:`DELETE`}),be=(e,t,n)=>Q(e,t,{...n,method:`POST`}),xe=(e,t,n)=>{let r=new FormData;for(let e in t)if(Object.prototype.hasOwnProperty.call(t,e)){let n=t[e];n instanceof File||n instanceof Blob?r.append(e,n):r.append(e,String(n))}return Q(e,r,{...n,method:`POST`})},Se=(e,t,n)=>Q(e,t,{...n,method:`PUT`}),Ce=(e,t,n)=>Q(e,t,{...n,method:`PATCH`}),$=X;$.create=e=>{let t=new me(e),n=t.request.bind(void 0);return Object.assign(n,me.prototype,t),n},$.get=ge,$.head=_e,$.options=ve,$.delete=ye,$.post=be,$.put=Se,$.patch=Ce,$.upload=xe;var we=$,Te=we;exports.ContentType=V,exports.Method=U,exports.ResponseError=W,exports.StatusCode=H,exports.default=Te,exports.del=ye,exports.get=ge,exports.head=_e,exports.options=ve,exports.patch=Ce,exports.post=be,exports.put=Se,exports.request=he,exports.upload=xe;
|
|
5
|
+
//# sourceMappingURL=index.cjs.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
const e=require(
|
|
1
|
+
const e=require(`../sse.cjs`);exports.sseTextDecoderPlugin=e.sseTextDecoderPlugin;
|
package/dist/cjs/plugins/sse.cjs
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
const e=require(
|
|
1
|
+
const e=require(`../sse.cjs`);exports.sseTextDecoderPlugin=e.sseTextDecoderPlugin;
|
package/dist/cjs/react/index.cjs
CHANGED
|
@@ -1 +1,2 @@
|
|
|
1
|
-
const e=require(
|
|
1
|
+
const e=require(`../chunk.cjs`),t=e.__toESM(require(`react`)),n=({request:e,onError:n})=>{let r=(0,t.useRef)(null),[i,a]=(0,t.useState)(!1),o=(...t)=>(r.current=e(...t),r),s=(...t)=>(r.current=e(...t),a(!0),r.current?.catch(e=>{e instanceof Error&&!e.message.includes(`Unexpected token`)&&e.name!==`AbortError`&&n?.(e)}),r.current?.finally(()=>{a(!1)}),r),c=(...e)=>(s(...e),r.current.text()),l=(...e)=>(s(...e),r.current.stream()),u=(...e)=>(s(...e),r.current.blob()),d=(...e)=>(s(...e),r.current.arrayBuffer()),f=(...e)=>(s(...e),r.current.formData()),p=(...e)=>(s(...e),r.current.bytes()),m=()=>{if(a(!1),r)try{r.current?.abort()}catch(e){console.error(`cancel error`,e)}};return{request:o,stream:l,text:c,blob:u,arrayBufferData:d,formDataResult:f,bytesData:p,cancel:m,loading:i,setLoading:a}};exports.useHookFetch=n;
|
|
2
|
+
//# sourceMappingURL=index.cjs.map
|
|
@@ -2,4 +2,5 @@ const e=({splitSeparator:e=`
|
|
|
2
2
|
|
|
3
3
|
`,lineSeparator:t=void 0,trim:i=!0,json:a=!1,prefix:o=``,doneSymbol:s=void 0}={})=>({name:`sse`,async beforeStream(c,l){if(!(l.extra?.sseAble??!0))return c;let u=new TextDecoderStream,d=new n({splitSeparator:e}),f=new r({splitSeparator:t,trim:i,json:a,prefix:o,doneSymbol:s});return c.pipeThrough(u).pipeThrough(d).pipeThrough(f)}}),t=e=>(e??``).trim()!==``;var n=class extends TransformStream{constructor({splitSeparator:e=`
|
|
4
4
|
|
|
5
|
-
`}={}){let n=``,r={transform(r,i){n+=r;let a=n.split(e);a.slice(0,-1).forEach(e=>{t(e)&&i.enqueue(e)}),n=a[a.length-1]},flush(e){t(n)&&e.enqueue(n)}};super(r)}},r=class extends TransformStream{constructor({splitSeparator:e=void 0,trim:t=!0,json:n=!1,prefix:r=``,doneSymbol:i=void 0}={}){let a=(e,t)=>t?e.trim():e,o=e=>!!i&&e.slice(r.length).trim()===i,s={transform(i,s){let c=e?i.split(e):[i];for(let e of c)if(n)try{let t=JSON.parse(e.slice(r.length).trim());s.enqueue(t)}catch{o(e)?s.terminate():s.enqueue(a(e,t))}else o(e)?s.terminate():s.enqueue(a(e,t))}};super(s)}};Object.defineProperty(exports,`sseTextDecoderPlugin`,{enumerable:!0,get:function(){return e}});
|
|
5
|
+
`}={}){let n=``,r={transform(r,i){n+=r;let a=n.split(e);a.slice(0,-1).forEach(e=>{t(e)&&i.enqueue(e)}),n=a[a.length-1]},flush(e){t(n)&&e.enqueue(n)}};super(r)}},r=class extends TransformStream{constructor({splitSeparator:e=void 0,trim:t=!0,json:n=!1,prefix:r=``,doneSymbol:i=void 0}={}){let a=(e,t)=>t?e.trim():e,o=e=>!!i&&e.slice(r.length).trim()===i,s={transform(i,s){let c=e?i.split(e):[i];for(let e of c)if(n)try{let t=JSON.parse(e.slice(r.length).trim());s.enqueue(t)}catch{o(e)?s.terminate():s.enqueue(a(e,t))}else o(e)?s.terminate():s.enqueue(a(e,t))}};super(s)}};Object.defineProperty(exports,`sseTextDecoderPlugin`,{enumerable:!0,get:function(){return e}});
|
|
6
|
+
//# sourceMappingURL=sse.cjs.map
|
package/dist/cjs/vue/index.cjs
CHANGED
|
@@ -1 +1,2 @@
|
|
|
1
|
-
const e=require(
|
|
1
|
+
const e=require(`../chunk.cjs`),t=e.__toESM(require(`vue`)),n=({request:e,onError:n})=>{let r=null,i=(0,t.ref)(!1),a=(...t)=>r||(r=e(...t),r),o=(...t)=>(r=e(...t),i.value=!0,r?.catch(e=>{e instanceof Error&&!e.message.includes(`Unexpected token`)&&e.name!==`AbortError`&&n?.(e)}),r?.finally(()=>{i.value=!1}),r),s=(...e)=>(o(...e),r.text()),c=(...e)=>(o(...e),r.stream()),l=(...e)=>(o(...e),r.blob()),u=(...e)=>(o(...e),r.arrayBuffer()),d=(...e)=>(o(...e),r.formData()),f=(...e)=>(o(...e),r.bytes()),p=()=>{if(i.value=!1,r)try{r?.abort()}catch(e){console.error(`cancel error`,e)}};return{request:a,stream:c,text:s,blob:l,arrayBufferData:u,formDataResult:d,bytesData:f,cancel:p,loading:i}};exports.useHookFetch=n;
|
|
2
|
+
//# sourceMappingURL=index.cjs.map
|