@coze/cli 0.3.2 → 0.3.3-alpha.05e9c5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +36 -0
- package/lib/cli.js +3 -3
- package/lib/fetch-client-DmaLBNmf.js +1 -0
- package/lib/{index-JxWKC7px.js → index-CEfCTKR1.js} +1 -1
- package/lib/send-message.worker.js +1 -1
- package/lib/session-task-refresh.worker.js +1 -1
- package/lib/task-worker-DXd41LkV.js +1 -0
- package/package.json +7 -8
- package/skills/manifest.json +6 -6
- package/skills/using-coze-cli/SKILL.md +36 -3
- package/skills/using-coze-cli/coze-claw/MODULE.md +1 -1
- package/skills/using-coze-cli/coze-code/MODULE.md +77 -15
- package/skills/using-coze-cli/coze-code/references/coze-code-message.md +33 -12
- package/skills/using-coze-cli/coze-code/references/coze-code-project.md +6 -4
- package/skills/using-coze-cli/coze-file/MODULE.md +1 -1
- package/skills/using-coze-cli/coze-generate/MODULE.md +1 -1
- package/lib/fetch-client-CgQGE-CR.js +0 -1
- package/lib/task-worker-BJO9Ixaq.js +0 -1
|
@@ -112,24 +112,45 @@ cat spec.md | coze code message send "请按此规格实现" --stdin -p <project
|
|
|
112
112
|
| `--project-id` / `-p` | 是 | 项目 ID |
|
|
113
113
|
| `--format` | 否 | 输出格式,默认 `text` |
|
|
114
114
|
|
|
115
|
-
> `message status`
|
|
115
|
+
> `message status` 是**单次查询**,不会自动轮询。如需等待任务完成,**禁止把整段轮询 sleep 在一次工具调用里**:AI 开发是分钟级到几十分钟级的长任务,单次调用干等会撞穿宿主工具超时(通常约 10 分钟),表现就是"卡住"。请按宿主能力选非阻塞方式(详见 `coze-code/MODULE.md` 的「阻塞与超时铁律」与「长任务 follow-up」)。
|
|
116
116
|
|
|
117
117
|
### 推荐命令模板
|
|
118
118
|
|
|
119
|
+
**单次查询(默认,配合逐回合跟进):**
|
|
120
|
+
|
|
119
121
|
```bash
|
|
120
|
-
# 查询状态
|
|
121
122
|
coze code message status --project-id <project-id> --format json
|
|
123
|
+
```
|
|
124
|
+
|
|
125
|
+
**优先 / 分支 A:子 session 后台任务(subagent / 独立子会话)** —— 先探测 agent 是否支持起独立子会话 / subagent。支持就派一个子任务去做下面这件事,当前回合立即 ACK 返回;子会话自行跑完并把结果回报到原上下文,**天然避免"结果石沉大海"**:
|
|
126
|
+
|
|
127
|
+
> 子任务的职责:循环 `coze code message status -p <project-id> --format json`(间隔 30s,约 30 分钟封顶)→ 到 `done` / `completed` 终态 → 整理成「开发完成结果 + answer + `project_url`」回报给用户。
|
|
128
|
+
|
|
129
|
+
**次选 / 分支 A':宿主其它后台执行** —— agent 不支持子 session,但宿主有 `run_in_background` / cron / delayed job 时,把轮询丢后台,当前回合 ACK 返回。**写文件只是中转,必须再配一个回唤 / 回读动作把结果交付出去**,否则就是"非阻塞后没有返回开发完成结果":
|
|
122
130
|
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
131
|
+
```bash
|
|
132
|
+
# 后台轮询直到终态,结果写文件供后续回合读取(间隔 30s,约 30 分钟封顶)
|
|
133
|
+
nohup bash -c '
|
|
134
|
+
for i in $(seq 1 60); do
|
|
135
|
+
result=$(coze code message status -p <project-id> --format json)
|
|
136
|
+
case "$result" in
|
|
137
|
+
*\"status\":\"done\"*|*\"status\":\"completed\"*)
|
|
138
|
+
printf "%s" "$result" > /tmp/coze-code-status.json; break;;
|
|
139
|
+
esac
|
|
140
|
+
sleep 30
|
|
141
|
+
done
|
|
142
|
+
' >/tmp/coze-code-poll.log 2>&1 &
|
|
143
|
+
|
|
144
|
+
# 后续回合回读后台结果;存在且为终态就整理成「开发完成结果 + answer + project_url」交付给用户
|
|
145
|
+
[ -f /tmp/coze-code-status.json ] && cat /tmp/coze-code-status.json
|
|
146
|
+
```
|
|
147
|
+
|
|
148
|
+
**兜底 / 分支 B:都不支持** —— **每个回合只查一次 + 让出回合**,下个回合再查;不要在一个调用里长 sleep:
|
|
149
|
+
|
|
150
|
+
```bash
|
|
151
|
+
# 单回合查一次,未到 done 就把当前进度回给用户,由下一回合继续
|
|
152
|
+
result=$(coze code message status -p <project-id> --format json)
|
|
153
|
+
printf "%s\n" "$result" # 解析 status:非 done 则报进度、收尾本回合,下一回合再查;done 则把 answer + project_url 交付给用户
|
|
133
154
|
```
|
|
134
155
|
|
|
135
156
|
### 状态含义
|
|
@@ -34,20 +34,23 @@
|
|
|
34
34
|
| `--model-name` | 否 | 项目使用的模型名 |
|
|
35
35
|
| `--tool-name` | 否 | 启用的工具名(可多次传入) |
|
|
36
36
|
| `--design` | 否 | 启用设计向导(`--chat-mode plan` 时自动开启) |
|
|
37
|
+
| `--create-source` | 否 | 创建来源,取值 `agent_cli` / `coze_agent_cli`。**通过本 skill 创建时必须传**:你(当前 agent)若身份含 `扣子`/`Coze`/`coze` 则传 `coze_agent_cli`,否则传 `agent_cli`。不传则视为人工执行(`cli`)。Coze Claw 环境下 CLI 会据 `COZE_CLAW_AGENT_ID` 自动判为 `coze_agent_cli` |
|
|
37
38
|
| `--org-id` / `--space-id` | 否 | 组织/空间 ID(缺省读取上下文) |
|
|
38
39
|
| `--format` | 否 | 输出格式,默认 `text` |
|
|
39
40
|
|
|
41
|
+
> ⚠️ **强制规则**:你(agent)通过本 skill 执行 `project create` 时,**必须始终带上 `--create-source`**,按自身身份**如实**取值:身份含 `扣子`/`Coze`/`coze` → `coze_agent_cli`;其它 agent(如 `Claude Code` / `Cursor`)→ `agent_cli`。**不要伪报**。下方模板示例用 `agent_cli`,你是扣子/Coze 系 agent 时请改为 `coze_agent_cli`。
|
|
42
|
+
|
|
40
43
|
### 推荐命令模板
|
|
41
44
|
|
|
42
45
|
```bash
|
|
43
46
|
# 创建 Web 项目(最常用)
|
|
44
|
-
coze code project create --message "创建一个聊天机器人" --type web --format json
|
|
47
|
+
coze code project create --message "创建一个聊天机器人" --type web --create-source agent_cli --format json
|
|
45
48
|
|
|
46
49
|
# 创建 App 项目
|
|
47
|
-
coze code project create --message "移动端应用" --type app --format json
|
|
50
|
+
coze code project create --message "移动端应用" --type app --create-source agent_cli --format json
|
|
48
51
|
|
|
49
52
|
# 等待创建完成(含首次 AI 响应)
|
|
50
|
-
coze code project create --message "电商网站" --type web --wait --format json
|
|
53
|
+
coze code project create --message "电商网站" --type web --create-source agent_cli --wait --format json
|
|
51
54
|
```
|
|
52
55
|
|
|
53
56
|
### 项目类型识别(按"产品形态"判定)
|
|
@@ -84,7 +87,6 @@ coze code project create --message "电商网站" --type web --wait --format jso
|
|
|
84
87
|
- `project_url` 由 CLI 按**项目类型**自动生成(`web` / `app` / `miniprogram` 为 `https://www.coze.cn/p/<project_id>`;其它类型为 `https://code.coze.cn/p/<project_id>`),**优先直接使用该字段**。
|
|
85
88
|
- **必须主动跟进到开发完成**:创建后不能停在"正在开发中"。查询状态**优先主动轮询** `coze code message status -p <project_id>` 直到 `done`(`--wait` 仅备选),不要让用户自己查状态。
|
|
86
89
|
- **开发任务完成后**(轮询到 `done`)给出后续引导:继续开发(`message send`)、部署应用(`deploy`,需要时再执行)、打开项目(`project_url`)。
|
|
87
|
-
- **「预览效果」一行仅 `web` 类型显示**:当 `--type web` 时,先执行 `coze code preview <project_id> --format json` 取回 `preview_url`,把预览地址**直接展示**给用户(沙盒初始化需 1-3 分钟,未就绪可重试一次);非 `web` 类型(`app` / `miniprogram` / `agent` / `workflow` / `skill` / `assistant`)**省略整行**,不展示预览地址。
|
|
88
90
|
|
|
89
91
|
### 创建失败时的回复
|
|
90
92
|
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
"use strict";const e=require("form-data"),t=require("crypto"),r=require("url"),n=require("https-proxy-agent"),o=require("http"),s=require("https"),i=require("http2"),a=require("util"),c=require("path"),u=require("stream"),l=require("assert"),f=require("tty"),p=require("zlib"),d=require("events"),h=require("undici"),m=require("lodash");var y="object"==typeof global&&global&&global.Object===Object&&global,g="object"==typeof self&&self&&self.Object===Object&&self,b=y||g||Function("return this")(),E=b.Symbol,_=Object.prototype,w=_.hasOwnProperty,R=_.toString,O=E?E.toStringTag:void 0;var v=Object.prototype.toString;var C=E?E.toStringTag:void 0;function A(e){return null==e?void 0===e?"[object Undefined]":"[object Null]":C&&C in Object(e)?function(e){var t=w.call(e,O),r=e[O];try{e[O]=void 0;var n=!0}catch(e){}var o=R.call(e);return n&&(t?e[O]=r:delete e[O]),o}(e):function(e){return v.call(e)}(e)}function x(e){return null!=e&&"object"==typeof e}function S(e){return"symbol"==typeof e||x(e)&&"[object Symbol]"==A(e)}function T(e,t){for(var r=-1,n=null==e?0:e.length,o=Array(n);++r<n;)o[r]=t(e[r],r,e);return o}var j=Array.isArray,N=E?E.prototype:void 0,L=N?N.toString:void 0;function P(e){if("string"==typeof e)return e;if(j(e))return T(e,P)+"";if(S(e))return L?L.call(e):"";var t=e+"";return"0"==t&&1/e==-1/0?"-0":t}function D(e){var t=typeof e;return null!=e&&("object"==t||"function"==t)}function F(e){if(!D(e))return!1;var t=A(e);return"[object Function]"==t||"[object GeneratorFunction]"==t||"[object AsyncFunction]"==t||"[object Proxy]"==t}var U,I=b["__core-js_shared__"],B=(U=/[^.]+$/.exec(I&&I.keys&&I.keys.IE_PROTO||""))?"Symbol(src)_1."+U:"";var k=Function.prototype.toString;function q(e){if(null!=e){try{return k.call(e)}catch(e){}try{return e+""}catch(e){}}return""}var M=/^\[object .+?Constructor\]$/,z=Function.prototype,H=Object.prototype,$=z.toString,W=H.hasOwnProperty,G=RegExp("^"+$.call(W).replace(/[\\^$.*+?()[\]{}|]/g,"\\$&").replace(/hasOwnProperty|(function).*?(?=\\\()| for .+?(?=\\\])/g,"$1.*?")+"$");function V(e){return!(!D(e)||(t=e,B&&B in t))&&(F(e)?G:M).test(q(e));var t}function J(e,t){var r=function(e,t){return null==e?void 0:e[t]}(e,t);return V(r)?r:void 0}var K=J(b,"WeakMap"),X=Object.create,Z=function(){function e(){}return function(t){if(!D(t))return{};if(X)return X(t);e.prototype=t;var r=new e;return e.prototype=void 0,r}}(),Q=function(){try{var e=J(Object,"defineProperty");return e({},"",{}),e}catch(e){}}();var Y=/^(?:0|[1-9]\d*)$/;function ee(e,t){var r=typeof e;return!!(t=null==t?9007199254740991:t)&&("number"==r||"symbol"!=r&&Y.test(e))&&e>-1&&e%1==0&&e<t}function te(e,t,r){"__proto__"==t&&Q?Q(e,t,{configurable:!0,enumerable:!0,value:r,writable:!0}):e[t]=r}function re(e,t){return e===t||e!=e&&t!=t}var ne=Object.prototype.hasOwnProperty;function oe(e,t,r){var n=e[t];ne.call(e,t)&&re(n,r)&&(void 0!==r||t in e)||te(e,t,r)}function se(e){return"number"==typeof e&&e>-1&&e%1==0&&e<=9007199254740991}function ie(e){return null!=e&&se(e.length)&&!F(e)}var ae=Object.prototype;function ce(e){var t=e&&e.constructor;return e===("function"==typeof t&&t.prototype||ae)}function ue(e){return x(e)&&"[object Arguments]"==A(e)}var le=Object.prototype,fe=le.hasOwnProperty,pe=le.propertyIsEnumerable,de=ue(function(){return arguments}())?ue:function(e){return x(e)&&fe.call(e,"callee")&&!pe.call(e,"callee")};var he="object"==typeof exports&&exports&&!exports.nodeType&&exports,me=he&&"object"==typeof module&&module&&!module.nodeType&&module,ye=me&&me.exports===he?b.Buffer:void 0,ge=(ye?ye.isBuffer:void 0)||function(){return!1},be={};function Ee(e){return function(t){return e(t)}}be["[object Float32Array]"]=be["[object Float64Array]"]=be["[object Int8Array]"]=be["[object Int16Array]"]=be["[object Int32Array]"]=be["[object Uint8Array]"]=be["[object Uint8ClampedArray]"]=be["[object Uint16Array]"]=be["[object Uint32Array]"]=!0,be["[object Arguments]"]=be["[object Array]"]=be["[object ArrayBuffer]"]=be["[object Boolean]"]=be["[object DataView]"]=be["[object Date]"]=be["[object Error]"]=be["[object Function]"]=be["[object Map]"]=be["[object Number]"]=be["[object Object]"]=be["[object RegExp]"]=be["[object Set]"]=be["[object String]"]=be["[object WeakMap]"]=!1;var _e="object"==typeof exports&&exports&&!exports.nodeType&&exports,we=_e&&"object"==typeof module&&module&&!module.nodeType&&module,Re=we&&we.exports===_e&&y.process,Oe=function(){try{var e=we&&we.require&&we.require("util").types;return e||Re&&Re.binding&&Re.binding("util")}catch(e){}}(),ve=Oe&&Oe.isTypedArray,Ce=ve?Ee(ve):function(e){return x(e)&&se(e.length)&&!!be[A(e)]},Ae=Object.prototype.hasOwnProperty;function xe(e,t){var r=j(e),n=!r&&de(e),o=!r&&!n&&ge(e),s=!r&&!n&&!o&&Ce(e),i=r||n||o||s,a=i?function(e,t){for(var r=-1,n=Array(e);++r<e;)n[r]=t(r);return n}(e.length,String):[],c=a.length;for(var u in e)!t&&!Ae.call(e,u)||i&&("length"==u||o&&("offset"==u||"parent"==u)||s&&("buffer"==u||"byteLength"==u||"byteOffset"==u)||ee(u,c))||a.push(u);return a}function Se(e,t){return function(r){return e(t(r))}}var Te=Se(Object.keys,Object),je=Object.prototype.hasOwnProperty;function Ne(e){return ie(e)?xe(e):function(e){if(!ce(e))return Te(e);var t=[];for(var r in Object(e))je.call(e,r)&&"constructor"!=r&&t.push(r);return t}(e)}var Le=/\.|\[(?:[^[\]]*|(["'])(?:(?!\1)[^\\]|\\.)*?\1)\]/,Pe=/^\w*$/;function De(e,t){if(j(e))return!1;var r=typeof e;return!("number"!=r&&"symbol"!=r&&"boolean"!=r&&null!=e&&!S(e))||(Pe.test(e)||!Le.test(e)||null!=t&&e in Object(t))}var Fe=J(Object,"create");var Ue=Object.prototype.hasOwnProperty;var Ie=Object.prototype.hasOwnProperty;function Be(e){var t=-1,r=null==e?0:e.length;for(this.clear();++t<r;){var n=e[t];this.set(n[0],n[1])}}function ke(e,t){for(var r=e.length;r--;)if(re(e[r][0],t))return r;return-1}Be.prototype.clear=function(){this.__data__=Fe?Fe(null):{},this.size=0},Be.prototype.delete=function(e){var t=this.has(e)&&delete this.__data__[e];return this.size-=t?1:0,t},Be.prototype.get=function(e){var t=this.__data__;if(Fe){var r=t[e];return"__lodash_hash_undefined__"===r?void 0:r}return Ue.call(t,e)?t[e]:void 0},Be.prototype.has=function(e){var t=this.__data__;return Fe?void 0!==t[e]:Ie.call(t,e)},Be.prototype.set=function(e,t){var r=this.__data__;return this.size+=this.has(e)?0:1,r[e]=Fe&&void 0===t?"__lodash_hash_undefined__":t,this};var qe=Array.prototype.splice;function Me(e){var t=-1,r=null==e?0:e.length;for(this.clear();++t<r;){var n=e[t];this.set(n[0],n[1])}}Me.prototype.clear=function(){this.__data__=[],this.size=0},Me.prototype.delete=function(e){var t=this.__data__,r=ke(t,e);return!(r<0)&&(r==t.length-1?t.pop():qe.call(t,r,1),--this.size,!0)},Me.prototype.get=function(e){var t=this.__data__,r=ke(t,e);return r<0?void 0:t[r][1]},Me.prototype.has=function(e){return ke(this.__data__,e)>-1},Me.prototype.set=function(e,t){var r=this.__data__,n=ke(r,e);return n<0?(++this.size,r.push([e,t])):r[n][1]=t,this};var ze=J(b,"Map");function He(e,t){var r,n,o=e.__data__;return("string"==(n=typeof(r=t))||"number"==n||"symbol"==n||"boolean"==n?"__proto__"!==r:null===r)?o["string"==typeof t?"string":"hash"]:o.map}function $e(e){var t=-1,r=null==e?0:e.length;for(this.clear();++t<r;){var n=e[t];this.set(n[0],n[1])}}$e.prototype.clear=function(){this.size=0,this.__data__={hash:new Be,map:new(ze||Me),string:new Be}},$e.prototype.delete=function(e){var t=He(this,e).delete(e);return this.size-=t?1:0,t},$e.prototype.get=function(e){return He(this,e).get(e)},$e.prototype.has=function(e){return He(this,e).has(e)},$e.prototype.set=function(e,t){var r=He(this,e),n=r.size;return r.set(e,t),this.size+=r.size==n?0:1,this};function We(e,t){if("function"!=typeof e||null!=t&&"function"!=typeof t)throw new TypeError("Expected a function");var r=function(){var n=arguments,o=t?t.apply(this,n):n[0],s=r.cache;if(s.has(o))return s.get(o);var i=e.apply(this,n);return r.cache=s.set(o,i)||s,i};return r.cache=new(We.Cache||$e),r}We.Cache=$e;var Ge,Ve,Je,Ke=/[^.[\]]+|\[(?:(-?\d+(?:\.\d+)?)|(["'])((?:(?!\2)[^\\]|\\.)*?)\2)\]|(?=(?:\.|\[\])(?:\.|\[\]|$))/g,Xe=/\\(\\)?/g,Ze=(Ge=function(e){var t=[];return 46===e.charCodeAt(0)&&t.push(""),e.replace(Ke,(function(e,r,n,o){t.push(n?o.replace(Xe,"$1"):r||e)})),t},Ve=We(Ge,(function(e){return 500===Je.size&&Je.clear(),e})),Je=Ve.cache,Ve);function Qe(e,t){return j(e)?e:De(e,t)?[e]:Ze(function(e){return null==e?"":P(e)}(e))}function Ye(e){if("string"==typeof e||S(e))return e;var t=e+"";return"0"==t&&1/e==-1/0?"-0":t}function et(e,t){for(var r=0,n=(t=Qe(t,e)).length;null!=e&&r<n;)e=e[Ye(t[r++])];return r&&r==n?e:void 0}function tt(e,t,r){var n=null==e?void 0:et(e,t);return void 0===n?r:n}function rt(e,t){for(var r=-1,n=t.length,o=e.length;++r<n;)e[o+r]=t[r];return e}var nt=Se(Object.getPrototypeOf,Object);function ot(e){var t=this.__data__=new Me(e);this.size=t.size}ot.prototype.clear=function(){this.__data__=new Me,this.size=0},ot.prototype.delete=function(e){var t=this.__data__,r=t.delete(e);return this.size=t.size,r},ot.prototype.get=function(e){return this.__data__.get(e)},ot.prototype.has=function(e){return this.__data__.has(e)},ot.prototype.set=function(e,t){var r=this.__data__;if(r instanceof Me){var n=r.__data__;if(!ze||n.length<199)return n.push([e,t]),this.size=++r.size,this;r=this.__data__=new $e(n)}return r.set(e,t),this.size=r.size,this};var st="object"==typeof exports&&exports&&!exports.nodeType&&exports,it=st&&"object"==typeof module&&module&&!module.nodeType&&module,at=it&&it.exports===st?b.Buffer:void 0,ct=at?at.allocUnsafe:void 0;function ut(e,t){if(t)return e.slice();var r=e.length,n=ct?ct(r):new e.constructor(r);return e.copy(n),n}function lt(){return[]}var ft=Object.prototype.propertyIsEnumerable,pt=Object.getOwnPropertySymbols,dt=pt?function(e){return null==e?[]:(e=Object(e),function(e,t){for(var r=-1,n=null==e?0:e.length,o=0,s=[];++r<n;){var i=e[r];t(i,r,e)&&(s[o++]=i)}return s}(pt(e),(function(t){return ft.call(e,t)})))}:lt;function ht(e,t,r){var n=t(e);return j(e)?n:rt(n,r(e))}function mt(e){return ht(e,Ne,dt)}var yt=J(b,"DataView"),gt=J(b,"Promise"),bt=J(b,"Set"),Et="[object Map]",_t="[object Promise]",wt="[object Set]",Rt="[object WeakMap]",Ot="[object DataView]",vt=q(yt),Ct=q(ze),At=q(gt),xt=q(bt),St=q(K);exports.getTag=A,(yt&&exports.getTag(new yt(new ArrayBuffer(1)))!=Ot||ze&&exports.getTag(new ze)!=Et||gt&&exports.getTag(gt.resolve())!=_t||bt&&exports.getTag(new bt)!=wt||K&&exports.getTag(new K)!=Rt)&&(exports.getTag=function(e){var t=A(e),r="[object Object]"==t?e.constructor:void 0,n=r?q(r):"";if(n)switch(n){case vt:return Ot;case Ct:return Et;case At:return _t;case xt:return wt;case St:return Rt}return t});var Tt=Object.prototype.hasOwnProperty;var jt=b.Uint8Array;function Nt(e){var t=new e.constructor(e.byteLength);return new jt(t).set(new jt(e)),t}var Lt=/\w*$/;var Pt=E?E.prototype:void 0,Dt=Pt?Pt.valueOf:void 0;function Ft(e,t){var r=t?Nt(e.buffer):e.buffer;return new e.constructor(r,e.byteOffset,e.length)}function Ut(e,t,r){var n,o,s,i=e.constructor;switch(t){case"[object ArrayBuffer]":return Nt(e);case"[object Boolean]":case"[object Date]":return new i(+e);case"[object DataView]":return s=Nt((o=e).buffer),new o.constructor(s,o.byteOffset,o.byteLength);case"[object Float32Array]":case"[object Float64Array]":case"[object Int8Array]":case"[object Int16Array]":case"[object Int32Array]":case"[object Uint8Array]":case"[object Uint8ClampedArray]":case"[object Uint16Array]":case"[object Uint32Array]":return Ft(e,r);case"[object Map]":case"[object Set]":return new i;case"[object Number]":case"[object String]":return new i(e);case"[object RegExp]":return function(e){var t=new e.constructor(e.source,Lt.exec(e));return t.lastIndex=e.lastIndex,t}(e);case"[object Symbol]":return n=e,Dt?Object(Dt.call(n)):{}}}function It(e){return"function"!=typeof e.constructor||ce(e)?{}:Z(nt(e))}var Bt=Oe&&Oe.isMap,kt=Bt?Ee(Bt):function(e){return x(e)&&"[object Map]"==exports.getTag(e)};var qt=Oe&&Oe.isSet,Mt=qt?Ee(qt):function(e){return x(e)&&"[object Set]"==exports.getTag(e)},zt="[object Arguments]",Ht="[object Function]",$t="[object Object]",Wt={};function Gt(e,t,r,n,o,s){var i,a=1&t;if(void 0!==i)return i;if(!D(e))return e;var c=j(e);if(c)i=function(e){var t=e.length,r=new e.constructor(t);return t&&"string"==typeof e[0]&&Tt.call(e,"index")&&(r.index=e.index,r.input=e.input),r}(e);else{var u=exports.getTag(e),l=u==Ht||"[object GeneratorFunction]"==u;if(ge(e))return ut(e,a);if(u==$t||u==zt||l&&!o)i=l?{}:It(e);else{if(!Wt[u])return o?e:{};i=Ut(e,u,a)}}s||(s=new ot);var f=s.get(e);if(f)return f;s.set(e,i),Mt(e)?e.forEach((function(n){i.add(Gt(n,t,r,n,e,s))})):kt(e)&&e.forEach((function(n,o){i.set(o,Gt(n,t,r,o,e,s))}));var p=c?void 0:mt(e);return function(e,t){for(var r=-1,n=null==e?0:e.length;++r<n&&!1!==t(e[r],r,e););}(p||e,(function(n,o){p&&(n=e[o=n]),oe(i,o,Gt(n,t,r,o,e,s))})),i}Wt[zt]=Wt["[object Array]"]=Wt["[object ArrayBuffer]"]=Wt["[object DataView]"]=Wt["[object Boolean]"]=Wt["[object Date]"]=Wt["[object Float32Array]"]=Wt["[object Float64Array]"]=Wt["[object Int8Array]"]=Wt["[object Int16Array]"]=Wt["[object Int32Array]"]=Wt["[object Map]"]=Wt["[object Number]"]=Wt[$t]=Wt["[object RegExp]"]=Wt["[object Set]"]=Wt["[object String]"]=Wt["[object Symbol]"]=Wt["[object Uint8Array]"]=Wt["[object Uint8ClampedArray]"]=Wt["[object Uint16Array]"]=Wt["[object Uint32Array]"]=!0,Wt["[object Error]"]=Wt[Ht]=Wt["[object WeakMap]"]=!1;function Vt(e){return Gt(e,5)}function Jt(e,t,r,n){if(!D(e))return e;for(var o=-1,s=(t=Qe(t,e)).length,i=s-1,a=e;null!=a&&++o<s;){var c=Ye(t[o]),u=r;if("__proto__"===c||"constructor"===c||"prototype"===c)return e;if(o!=i){var l=a[c];void 0===(u=void 0)&&(u=D(l)?l:ee(t[o+1])?[]:{})}oe(a,c,u),a=a[c]}return e}function Kt(e,t,r){return null==e?e:Jt(e,t,r)}function Xt(e){let t,r=e[0],n=1;for(;n<e.length;){const o=e[n],s=e[n+1];if(n+=2,("optionalAccess"===o||"optionalCall"===o)&&null==r)return;"access"===o||"optionalAccess"===o?(t=r,r=s(r)):"call"!==o&&"optionalCall"!==o||(r=s(((...e)=>r.call(t,...e))),t=void 0)}return r}class Zt extends Error{constructor(e,t={}){super(e),this.name="HttpError",this.status=t.status,this.code=t.code,this.config=t.config,this.response=t.response,this.data=t.data,Error.captureStackTrace&&Error.captureStackTrace(this,Zt)}toString(){const e=[];let t=this.name;if(this.status||this.code){const e=[];this.status&&e.push(String(this.status)),this.code&&e.push(String(this.code)),t+=` [${e.join(" ")}]`}if(t+=`: ${this.message}`,e.push(t),this.config){const t=Xt([this,"access",e=>e.config,"access",e=>e.method,"optionalAccess",e=>e.toUpperCase,"call",e=>e()])||"GET",r=this.config.url||"unknown",n=(this.config.baseURL?`${this.config.baseURL}`:"")+r;e.push(` URL: ${t} ${n}`)}if(this.data)try{const t=JSON.stringify(this.data);t.length<200?e.push(` Data: ${t}`):e.push(` Data: [${t.length} bytes]`)}catch(t){const r=t instanceof Error?t.constructor.name:"unknown";e.push(` Data: [non-serializable: ${r}]`)}return e.join("\n")}toJSON(){return{name:this.name,message:this.message,status:this.status,code:this.code,data:this.data,url:Xt([this,"access",e=>e.config,"optionalAccess",e=>e.url]),method:Xt([this,"access",e=>e.config,"optionalAccess",e=>e.method]),baseURL:Xt([this,"access",e=>e.config,"optionalAccess",e=>e.baseURL])}}}function Qt(e,t){return function(){return e.apply(t,arguments)}}const{toString:Yt}=Object.prototype,{getPrototypeOf:er}=Object,{iterator:tr,toStringTag:rr}=Symbol,nr=(e=>t=>{const r=Yt.call(t);return e[r]||(e[r]=r.slice(8,-1).toLowerCase())})(Object.create(null)),or=e=>(e=e.toLowerCase(),t=>nr(t)===e),sr=e=>t=>typeof t===e,{isArray:ir}=Array,ar=sr("undefined");function cr(e){return null!==e&&!ar(e)&&null!==e.constructor&&!ar(e.constructor)&&fr(e.constructor.isBuffer)&&e.constructor.isBuffer(e)}const ur=or("ArrayBuffer");const lr=sr("string"),fr=sr("function"),pr=sr("number"),dr=e=>null!==e&&"object"==typeof e,hr=e=>{if("object"!==nr(e))return!1;const t=er(e);return!(null!==t&&t!==Object.prototype&&null!==Object.getPrototypeOf(t)||rr in e||tr in e)},mr=or("Date"),yr=or("File"),gr=or("Blob"),br=or("FileList");const Er="undefined"!=typeof globalThis?globalThis:"undefined"!=typeof self?self:"undefined"!=typeof window?window:"undefined"!=typeof global?global:{},_r=void 0!==Er.FormData?Er.FormData:void 0,wr=or("URLSearchParams"),[Rr,Or,vr,Cr]=["ReadableStream","Request","Response","Headers"].map(or);function Ar(e,t,{allOwnKeys:r=!1}={}){if(null==e)return;let n,o;if("object"!=typeof e&&(e=[e]),ir(e))for(n=0,o=e.length;n<o;n++)t.call(null,e[n],n,e);else{if(cr(e))return;const o=r?Object.getOwnPropertyNames(e):Object.keys(e),s=o.length;let i;for(n=0;n<s;n++)i=o[n],t.call(null,e[i],i,e)}}function xr(e,t){if(cr(e))return null;t=t.toLowerCase();const r=Object.keys(e);let n,o=r.length;for(;o-- >0;)if(n=r[o],t===n.toLowerCase())return n;return null}const Sr="undefined"!=typeof globalThis?globalThis:"undefined"!=typeof self?self:"undefined"!=typeof window?window:global,Tr=e=>!ar(e)&&e!==Sr;const jr=(Nr="undefined"!=typeof Uint8Array&&er(Uint8Array),e=>Nr&&e instanceof Nr);var Nr;const Lr=or("HTMLFormElement"),Pr=(({hasOwnProperty:e})=>(t,r)=>e.call(t,r))(Object.prototype),{propertyIsEnumerable:Dr}=Object.prototype,Fr=or("RegExp"),Ur=(e,t)=>{const r=Object.getOwnPropertyDescriptors(e),n={};Ar(r,((r,o)=>{let s;!1!==(s=t(r,o,e))&&(n[o]=s||r)})),Object.defineProperties(e,n)};const Ir=or("AsyncFunction"),Br=(kr="function"==typeof setImmediate,qr=fr(Sr.postMessage),kr?setImmediate:qr?(Mr=`axios@${Math.random()}`,zr=[],Sr.addEventListener("message",(({source:e,data:t})=>{e===Sr&&t===Mr&&zr.length&&zr.shift()()}),!1),e=>{zr.push(e),Sr.postMessage(Mr,"*")}):e=>setTimeout(e));var kr,qr,Mr,zr;const Hr="undefined"!=typeof queueMicrotask?queueMicrotask.bind(Sr):"undefined"!=typeof process&&process.nextTick||Br,$r={isArray:ir,isArrayBuffer:ur,isBuffer:cr,isFormData:e=>{if(!e)return!1;if(_r&&e instanceof _r)return!0;const t=er(e);if(!t||t===Object.prototype)return!1;if(!fr(e.append))return!1;const r=nr(e);return"formdata"===r||"object"===r&&fr(e.toString)&&"[object FormData]"===e.toString()},isArrayBufferView:function(e){let t;return t="undefined"!=typeof ArrayBuffer&&ArrayBuffer.isView?ArrayBuffer.isView(e):e&&e.buffer&&ur(e.buffer),t},isString:lr,isNumber:pr,isBoolean:e=>!0===e||!1===e,isObject:dr,isPlainObject:hr,isEmptyObject:e=>{if(!dr(e)||cr(e))return!1;try{return 0===Object.keys(e).length&&Object.getPrototypeOf(e)===Object.prototype}catch(e){return!1}},isReadableStream:Rr,isRequest:Or,isResponse:vr,isHeaders:Cr,isUndefined:ar,isDate:mr,isFile:yr,isReactNativeBlob:e=>!(!e||void 0===e.uri),isReactNative:e=>e&&void 0!==e.getParts,isBlob:gr,isRegExp:Fr,isFunction:fr,isStream:e=>dr(e)&&fr(e.pipe),isURLSearchParams:wr,isTypedArray:jr,isFileList:br,forEach:Ar,merge:function e(...t){const{caseless:r,skipUndefined:n}=Tr(this)&&this||{},o={},s=(t,s)=>{if("__proto__"===s||"constructor"===s||"prototype"===s)return;const i=r&&"string"==typeof s&&xr(o,s)||s,a=Pr(o,i)?o[i]:void 0;hr(a)&&hr(t)?o[i]=e(a,t):hr(t)?o[i]=e({},t):ir(t)?o[i]=t.slice():n&&ar(t)||(o[i]=t)};for(let e=0,r=t.length;e<r;e++){const r=t[e];if(!r||cr(r))continue;if(Ar(r,s),"object"!=typeof r||ir(r))continue;const n=Object.getOwnPropertySymbols(r);for(let e=0;e<n.length;e++){const t=n[e];Dr.call(r,t)&&s(r[t],t)}}return o},extend:(e,t,r,{allOwnKeys:n}={})=>(Ar(t,((t,n)=>{r&&fr(t)?Object.defineProperty(e,n,{__proto__:null,value:Qt(t,r),writable:!0,enumerable:!0,configurable:!0}):Object.defineProperty(e,n,{__proto__:null,value:t,writable:!0,enumerable:!0,configurable:!0})}),{allOwnKeys:n}),e),trim:e=>e.trim?e.trim():e.replace(/^[\s\uFEFF\xA0]+|[\s\uFEFF\xA0]+$/g,""),stripBOM:e=>(65279===e.charCodeAt(0)&&(e=e.slice(1)),e),inherits:(e,t,r,n)=>{e.prototype=Object.create(t.prototype,n),Object.defineProperty(e.prototype,"constructor",{__proto__:null,value:e,writable:!0,enumerable:!1,configurable:!0}),Object.defineProperty(e,"super",{__proto__:null,value:t.prototype}),r&&Object.assign(e.prototype,r)},toFlatObject:(e,t,r,n)=>{let o,s,i;const a={};if(t=t||{},null==e)return t;do{for(o=Object.getOwnPropertyNames(e),s=o.length;s-- >0;)i=o[s],n&&!n(i,e,t)||a[i]||(t[i]=e[i],a[i]=!0);e=!1!==r&&er(e)}while(e&&(!r||r(e,t))&&e!==Object.prototype);return t},kindOf:nr,kindOfTest:or,endsWith:(e,t,r)=>{e=String(e),(void 0===r||r>e.length)&&(r=e.length),r-=t.length;const n=e.indexOf(t,r);return-1!==n&&n===r},toArray:e=>{if(!e)return null;if(ir(e))return e;let t=e.length;if(!pr(t))return null;const r=new Array(t);for(;t-- >0;)r[t]=e[t];return r},forEachEntry:(e,t)=>{const r=(e&&e[tr]).call(e);let n;for(;(n=r.next())&&!n.done;){const r=n.value;t.call(e,r[0],r[1])}},matchAll:(e,t)=>{let r;const n=[];for(;null!==(r=e.exec(t));)n.push(r);return n},isHTMLForm:Lr,hasOwnProperty:Pr,hasOwnProp:Pr,reduceDescriptors:Ur,freezeMethods:e=>{Ur(e,((t,r)=>{if(fr(e)&&["arguments","caller","callee"].includes(r))return!1;const n=e[r];fr(n)&&(t.enumerable=!1,"writable"in t?t.writable=!1:t.set||(t.set=()=>{throw Error("Can not rewrite read-only method '"+r+"'")}))}))},toObjectSet:(e,t)=>{const r={},n=e=>{e.forEach((e=>{r[e]=!0}))};return ir(e)?n(e):n(String(e).split(t)),r},toCamelCase:e=>e.toLowerCase().replace(/[-_\s]([a-z\d])(\w*)/g,(function(e,t,r){return t.toUpperCase()+r})),noop:()=>{},toFiniteNumber:(e,t)=>null!=e&&Number.isFinite(e=+e)?e:t,findKey:xr,global:Sr,isContextDefined:Tr,isSpecCompliantForm:function(e){return!!(e&&fr(e.append)&&"FormData"===e[rr]&&e[tr])},toJSONObject:e=>{const t=new WeakSet,r=e=>{if(dr(e)){if(t.has(e))return;if(cr(e))return e;if(!("toJSON"in e)){t.add(e);const n=ir(e)?[]:{};return Ar(e,((e,t)=>{const o=r(e);!ar(o)&&(n[t]=o)})),t.delete(e),n}}return e};return r(e)},isAsyncFn:Ir,isThenable:e=>e&&(dr(e)||fr(e))&&fr(e.then)&&fr(e.catch),setImmediate:Br,asap:Hr,isIterable:e=>null!=e&&fr(e[tr])},Wr=$r.toObjectSet(["age","authorization","content-length","content-type","etag","expires","from","host","if-modified-since","if-unmodified-since","last-modified","location","max-forwards","proxy-authorization","referer","retry-after","user-agent"]);const Gr=new RegExp("[\\u0000-\\u0008\\u000a-\\u001f\\u007f]+","g"),Vr=new RegExp("[^\\u0009\\u0020-\\u007e\\u0080-\\u00ff]+","g");function Jr(e,t){return $r.isArray(e)?e.map((e=>Jr(e,t))):function(e){let t=0,r=e.length;for(;t<r;){const r=e.charCodeAt(t);if(9!==r&&32!==r)break;t+=1}for(;r>t;){const t=e.charCodeAt(r-1);if(9!==t&&32!==t)break;r-=1}return 0===t&&r===e.length?e:e.slice(t,r)}(String(e).replace(t,""))}function Kr(e){const t=Object.create(null);return $r.forEach(e.toJSON(),((e,r)=>{t[r]=(e=>Jr(e,Vr))(e)})),t}const Xr=Symbol("internals");function Zr(e){return e&&String(e).trim().toLowerCase()}function Qr(e){return!1===e||null==e?e:$r.isArray(e)?e.map(Qr):(e=>Jr(e,Gr))(String(e))}function Yr(e,t,r,n,o){return $r.isFunction(n)?n.call(this,t,r):(o&&(t=r),$r.isString(t)?$r.isString(n)?-1!==t.indexOf(n):$r.isRegExp(n)?n.test(t):void 0:void 0)}let en=class{constructor(e){e&&this.set(e)}set(e,t,r){const n=this;function o(e,t,r){const o=Zr(t);if(!o)return;const s=$r.findKey(n,o);(!s||void 0===n[s]||!0===r||void 0===r&&!1!==n[s])&&(n[s||t]=Qr(e))}const s=(e,t)=>$r.forEach(e,((e,r)=>o(e,r,t)));if($r.isPlainObject(e)||e instanceof this.constructor)s(e,t);else if($r.isString(e)&&(e=e.trim())&&!/^[-_a-zA-Z0-9^`|~,!#$%&'*+.]+$/.test(e.trim()))s((e=>{const t={};let r,n,o;return e&&e.split("\n").forEach((function(e){o=e.indexOf(":"),r=e.substring(0,o).trim().toLowerCase(),n=e.substring(o+1).trim(),!r||t[r]&&Wr[r]||("set-cookie"===r?t[r]?t[r].push(n):t[r]=[n]:t[r]=t[r]?t[r]+", "+n:n)})),t})(e),t);else if($r.isObject(e)&&$r.isIterable(e)){let r,n,o={};for(const t of e){if(!$r.isArray(t))throw new TypeError("Object iterator must return a key-value pair");o[n=t[0]]=(r=o[n])?$r.isArray(r)?[...r,t[1]]:[r,t[1]]:t[1]}s(o,t)}else null!=e&&o(t,e,r);return this}get(e,t){if(e=Zr(e)){const r=$r.findKey(this,e);if(r){const e=this[r];if(!t)return e;if(!0===t)return function(e){const t=Object.create(null),r=/([^\s,;=]+)\s*(?:=\s*([^,;]+))?/g;let n;for(;n=r.exec(e);)t[n[1]]=n[2];return t}(e);if($r.isFunction(t))return t.call(this,e,r);if($r.isRegExp(t))return t.exec(e);throw new TypeError("parser must be boolean|regexp|function")}}}has(e,t){if(e=Zr(e)){const r=$r.findKey(this,e);return!(!r||void 0===this[r]||t&&!Yr(0,this[r],r,t))}return!1}delete(e,t){const r=this;let n=!1;function o(e){if(e=Zr(e)){const o=$r.findKey(r,e);!o||t&&!Yr(0,r[o],o,t)||(delete r[o],n=!0)}}return $r.isArray(e)?e.forEach(o):o(e),n}clear(e){const t=Object.keys(this);let r=t.length,n=!1;for(;r--;){const o=t[r];e&&!Yr(0,this[o],o,e,!0)||(delete this[o],n=!0)}return n}normalize(e){const t=this,r={};return $r.forEach(this,((n,o)=>{const s=$r.findKey(r,o);if(s)return t[s]=Qr(n),void delete t[o];const i=e?function(e){return e.trim().toLowerCase().replace(/([a-z\d])(\w*)/g,((e,t,r)=>t.toUpperCase()+r))}(o):String(o).trim();i!==o&&delete t[o],t[i]=Qr(n),r[i]=!0})),this}concat(...e){return this.constructor.concat(this,...e)}toJSON(e){const t=Object.create(null);return $r.forEach(this,((r,n)=>{null!=r&&!1!==r&&(t[n]=e&&$r.isArray(r)?r.join(", "):r)})),t}[Symbol.iterator](){return Object.entries(this.toJSON())[Symbol.iterator]()}toString(){return Object.entries(this.toJSON()).map((([e,t])=>e+": "+t)).join("\n")}getSetCookie(){return this.get("set-cookie")||[]}get[Symbol.toStringTag](){return"AxiosHeaders"}static from(e){return e instanceof this?e:new this(e)}static concat(e,...t){const r=new this(e);return t.forEach((e=>r.set(e))),r}static accessor(e){const t=(this[Xr]=this[Xr]={accessors:{}}).accessors,r=this.prototype;function n(e){const n=Zr(e);t[n]||(!function(e,t){const r=$r.toCamelCase(" "+t);["get","set","has"].forEach((n=>{Object.defineProperty(e,n+r,{__proto__:null,value:function(e,r,o){return this[n].call(this,t,e,r,o)},configurable:!0})}))}(r,e),t[n]=!0)}return $r.isArray(e)?e.forEach(n):n(e),this}};en.accessor(["Content-Type","Content-Length","Accept","Accept-Encoding","User-Agent","Authorization"]),$r.reduceDescriptors(en.prototype,(({value:e},t)=>{let r=t[0].toUpperCase()+t.slice(1);return{get:()=>e,set(e){this[r]=e}}})),$r.freezeMethods(en);function tn(e,t){const r=new Set(t.map((e=>String(e).toLowerCase()))),n=[],o=e=>{if(null===e||"object"!=typeof e)return e;if($r.isBuffer(e))return e;if(-1!==n.indexOf(e))return;let t;if(e instanceof en&&(e=e.toJSON()),n.push(e),$r.isArray(e))t=[],e.forEach(((e,r)=>{const n=o(e);$r.isUndefined(n)||(t[r]=n)}));else{if(!$r.isPlainObject(e)&&function(e){if($r.hasOwnProp(e,"toJSON"))return!0;let t=Object.getPrototypeOf(e);for(;t&&t!==Object.prototype;){if($r.hasOwnProp(t,"toJSON"))return!0;t=Object.getPrototypeOf(t)}return!1}(e))return n.pop(),e;t=Object.create(null);for(const[n,s]of Object.entries(e)){const e=r.has(n.toLowerCase())?"[REDACTED ****]":o(s);$r.isUndefined(e)||(t[n]=e)}}return n.pop(),t};return o(e)}let rn=class e extends Error{static from(t,r,n,o,s,i){const a=new e(t.message,r||t.code,n,o,s);return a.cause=t,a.name=t.name,null!=t.status&&null==a.status&&(a.status=t.status),i&&Object.assign(a,i),a}constructor(e,t,r,n,o){super(e),Object.defineProperty(this,"message",{__proto__:null,value:e,enumerable:!0,writable:!0,configurable:!0}),this.name="AxiosError",this.isAxiosError=!0,t&&(this.code=t),r&&(this.config=r),n&&(this.request=n),o&&(this.response=o,this.status=o.status)}toJSON(){const e=this.config,t=e&&$r.hasOwnProp(e,"redact")?e.redact:void 0,r=$r.isArray(t)&&t.length>0?tn(e,t):$r.toJSONObject(e);return{message:this.message,name:this.name,description:this.description,number:this.number,fileName:this.fileName,lineNumber:this.lineNumber,columnNumber:this.columnNumber,stack:this.stack,config:r,code:this.code,status:this.status}}};function nn(e){return $r.isPlainObject(e)||$r.isArray(e)}function on(e){return $r.endsWith(e,"[]")?e.slice(0,-2):e}function sn(e,t,r){return e?e.concat(t).map((function(e,t){return e=on(e),!r&&t?"["+e+"]":e})).join(r?".":""):t}rn.ERR_BAD_OPTION_VALUE="ERR_BAD_OPTION_VALUE",rn.ERR_BAD_OPTION="ERR_BAD_OPTION",rn.ECONNABORTED="ECONNABORTED",rn.ETIMEDOUT="ETIMEDOUT",rn.ECONNREFUSED="ECONNREFUSED",rn.ERR_NETWORK="ERR_NETWORK",rn.ERR_FR_TOO_MANY_REDIRECTS="ERR_FR_TOO_MANY_REDIRECTS",rn.ERR_DEPRECATED="ERR_DEPRECATED",rn.ERR_BAD_RESPONSE="ERR_BAD_RESPONSE",rn.ERR_BAD_REQUEST="ERR_BAD_REQUEST",rn.ERR_CANCELED="ERR_CANCELED",rn.ERR_NOT_SUPPORT="ERR_NOT_SUPPORT",rn.ERR_INVALID_URL="ERR_INVALID_URL",rn.ERR_FORM_DATA_DEPTH_EXCEEDED="ERR_FORM_DATA_DEPTH_EXCEEDED";const an=$r.toFlatObject($r,{},null,(function(e){return/^is[A-Z]/.test(e)}));function cn(t,r,n){if(!$r.isObject(t))throw new TypeError("target must be an object");r=r||new(e||FormData);const o=(n=$r.toFlatObject(n,{metaTokens:!0,dots:!1,indexes:!1},!1,(function(e,t){return!$r.isUndefined(t[e])}))).metaTokens,s=n.visitor||p,i=n.dots,a=n.indexes,c=n.Blob||"undefined"!=typeof Blob&&Blob,u=void 0===n.maxDepth?100:n.maxDepth,l=c&&$r.isSpecCompliantForm(r);if(!$r.isFunction(s))throw new TypeError("visitor must be a function");function f(e){if(null===e)return"";if($r.isDate(e))return e.toISOString();if($r.isBoolean(e))return e.toString();if(!l&&$r.isBlob(e))throw new rn("Blob is not supported. Use a Buffer instead.");return $r.isArrayBuffer(e)||$r.isTypedArray(e)?l&&"function"==typeof Blob?new Blob([e]):Buffer.from(e):e}function p(e,t,n){let s=e;if($r.isReactNative(r)&&$r.isReactNativeBlob(e))return r.append(sn(n,t,i),f(e)),!1;if(e&&!n&&"object"==typeof e)if($r.endsWith(t,"{}"))t=o?t:t.slice(0,-2),e=JSON.stringify(e);else if($r.isArray(e)&&function(e){return $r.isArray(e)&&!e.some(nn)}(e)||($r.isFileList(e)||$r.endsWith(t,"[]"))&&(s=$r.toArray(e)))return t=on(t),s.forEach((function(e,n){!$r.isUndefined(e)&&null!==e&&r.append(!0===a?sn([t],n,i):null===a?t:t+"[]",f(e))})),!1;return!!nn(e)||(r.append(sn(n,t,i),f(e)),!1)}const d=[],h=Object.assign(an,{defaultVisitor:p,convertValue:f,isVisitable:nn});if(!$r.isObject(t))throw new TypeError("data must be an object");return function e(t,n,o=0){if(!$r.isUndefined(t)){if(o>u)throw new rn("Object is too deeply nested ("+o+" levels). Max depth: "+u,rn.ERR_FORM_DATA_DEPTH_EXCEEDED);if(-1!==d.indexOf(t))throw new Error("Circular reference detected in "+n.join("."));d.push(t),$r.forEach(t,(function(t,i){!0===(!($r.isUndefined(t)||null===t)&&s.call(r,t,$r.isString(i)?i.trim():i,n,h))&&e(t,n?n.concat(i):[i],o+1)})),d.pop()}}(t),r}function un(e){const t={"!":"%21","'":"%27","(":"%28",")":"%29","~":"%7E","%20":"+"};return encodeURIComponent(e).replace(/[!'()~]|%20/g,(function(e){return t[e]}))}function ln(e,t){this._pairs=[],e&&cn(e,this,t)}const fn=ln.prototype;function pn(e){return encodeURIComponent(e).replace(/%3A/gi,":").replace(/%24/g,"$").replace(/%2C/gi,",").replace(/%20/g,"+")}function dn(e,t,r){if(!t)return e;const n=r&&r.encode||pn,o=$r.isFunction(r)?{serialize:r}:r,s=o&&o.serialize;let i;if(i=s?s(t,o):$r.isURLSearchParams(t)?t.toString():new ln(t,o).toString(n),i){const t=e.indexOf("#");-1!==t&&(e=e.slice(0,t)),e+=(-1===e.indexOf("?")?"?":"&")+i}return e}fn.append=function(e,t){this._pairs.push([e,t])},fn.toString=function(e){const t=e?function(t){return e.call(this,t,un)}:un;return this._pairs.map((function(e){return t(e[0])+"="+t(e[1])}),"").join("&")};class hn{constructor(){this.handlers=[]}use(e,t,r){return this.handlers.push({fulfilled:e,rejected:t,synchronous:!!r&&r.synchronous,runWhen:r?r.runWhen:null}),this.handlers.length-1}eject(e){this.handlers[e]&&(this.handlers[e]=null)}clear(){this.handlers&&(this.handlers=[])}forEach(e){$r.forEach(this.handlers,(function(t){null!==t&&e(t)}))}}const mn={silentJSONParsing:!0,forcedJSONParsing:!0,clarifyTimeoutError:!1,legacyInterceptorReqResOrdering:!0,advertiseZstdAcceptEncoding:!1},yn=r.URLSearchParams,gn="abcdefghijklmnopqrstuvwxyz",bn="0123456789",En={DIGIT:bn,ALPHA:gn,ALPHA_DIGIT:gn+gn.toUpperCase()+bn},_n={isNode:!0,classes:{URLSearchParams:yn,FormData:e,Blob:"undefined"!=typeof Blob&&Blob||null},ALPHABET:En,generateString:(e=16,r=En.ALPHA_DIGIT)=>{let n="";const{length:o}=r,s=new Uint32Array(e);t.randomFillSync(s);for(let t=0;t<e;t++)n+=r[s[t]%o];return n},protocols:["http","https","file","data"]},wn="undefined"!=typeof window&&"undefined"!=typeof document,Rn="object"==typeof navigator&&navigator||void 0,On=wn&&(!Rn||["ReactNative","NativeScript","NS"].indexOf(Rn.product)<0),vn="undefined"!=typeof WorkerGlobalScope&&self instanceof WorkerGlobalScope&&"function"==typeof self.importScripts,Cn=wn&&window.location.href||"http://localhost",An={...Object.freeze({__proto__:null,hasBrowserEnv:wn,hasStandardBrowserEnv:On,hasStandardBrowserWebWorkerEnv:vn,navigator:Rn,origin:Cn}),..._n};function xn(e){function t(e,r,n,o){let s=e[o++];if("__proto__"===s)return!0;const i=Number.isFinite(+s),a=o>=e.length;if(s=!s&&$r.isArray(n)?n.length:s,a)return $r.hasOwnProp(n,s)?n[s]=$r.isArray(n[s])?n[s].concat(r):[n[s],r]:n[s]=r,!i;$r.hasOwnProp(n,s)&&$r.isObject(n[s])||(n[s]=[]);return t(e,r,n[s],o)&&$r.isArray(n[s])&&(n[s]=function(e){const t={},r=Object.keys(e);let n;const o=r.length;let s;for(n=0;n<o;n++)s=r[n],t[s]=e[s];return t}(n[s])),!i}if($r.isFormData(e)&&$r.isFunction(e.entries)){const r={};return $r.forEachEntry(e,((e,n)=>{t(function(e){return $r.matchAll(/\w+|\[(\w*)]/g,e).map((e=>"[]"===e[0]?"":e[1]||e[0]))}(e),n,r,0)})),r}return null}const Sn=(e,t)=>null!=e&&$r.hasOwnProp(e,t)?e[t]:void 0;const Tn={transitional:mn,adapter:["xhr","http","fetch"],transformRequest:[function(e,t){const r=t.getContentType()||"",n=r.indexOf("application/json")>-1,o=$r.isObject(e);o&&$r.isHTMLForm(e)&&(e=new FormData(e));if($r.isFormData(e))return n?JSON.stringify(xn(e)):e;if($r.isArrayBuffer(e)||$r.isBuffer(e)||$r.isStream(e)||$r.isFile(e)||$r.isBlob(e)||$r.isReadableStream(e))return e;if($r.isArrayBufferView(e))return e.buffer;if($r.isURLSearchParams(e))return t.setContentType("application/x-www-form-urlencoded;charset=utf-8",!1),e.toString();let s;if(o){const t=Sn(this,"formSerializer");if(r.indexOf("application/x-www-form-urlencoded")>-1)return function(e,t){return cn(e,new An.classes.URLSearchParams,{visitor:function(e,t,r,n){return An.isNode&&$r.isBuffer(e)?(this.append(t,e.toString("base64")),!1):n.defaultVisitor.apply(this,arguments)},...t})}(e,t).toString();if((s=$r.isFileList(e))||r.indexOf("multipart/form-data")>-1){const r=Sn(this,"env"),n=r&&r.FormData;return cn(s?{"files[]":e}:e,n&&new n,t)}}return o||n?(t.setContentType("application/json",!1),function(e,t,r){if($r.isString(e))try{return(t||JSON.parse)(e),$r.trim(e)}catch(e){if("SyntaxError"!==e.name)throw e}return(r||JSON.stringify)(e)}(e)):e}],transformResponse:[function(e){const t=Sn(this,"transitional")||Tn.transitional,r=t&&t.forcedJSONParsing,n=Sn(this,"responseType"),o="json"===n;if($r.isResponse(e)||$r.isReadableStream(e))return e;if(e&&$r.isString(e)&&(r&&!n||o)){const r=!(t&&t.silentJSONParsing)&&o;try{return JSON.parse(e,Sn(this,"parseReviver"))}catch(e){if(r){if("SyntaxError"===e.name)throw rn.from(e,rn.ERR_BAD_RESPONSE,this,null,Sn(this,"response"));throw e}}}return e}],timeout:0,xsrfCookieName:"XSRF-TOKEN",xsrfHeaderName:"X-XSRF-TOKEN",maxContentLength:-1,maxBodyLength:-1,env:{FormData:An.classes.FormData,Blob:An.classes.Blob},validateStatus:function(e){return e>=200&&e<300},headers:{common:{Accept:"application/json, text/plain, */*","Content-Type":void 0}}};function jn(e,t){const r=this||Tn,n=t||r,o=en.from(n.headers);let s=n.data;return $r.forEach(e,(function(e){s=e.call(r,s,o.normalize(),t?t.status:void 0)})),o.normalize(),s}function Nn(e){return!(!e||!e.__CANCEL__)}$r.forEach(["delete","get","head","post","put","patch","query"],(e=>{Tn.headers[e]={}}));let Ln=class extends rn{constructor(e,t,r){super(null==e?"canceled":e,rn.ERR_CANCELED,t,r),this.name="CanceledError",this.__CANCEL__=!0}};function Pn(e,t,r){const n=r.config.validateStatus;r.status&&n&&!n(r.status)?t(new rn("Request failed with status code "+r.status,r.status>=400&&r.status<500?rn.ERR_BAD_REQUEST:rn.ERR_BAD_RESPONSE,r.config,r.request,r)):e(r)}function Dn(e,t,r){let n=!function(e){return"string"==typeof e&&/^([a-z][a-z\d+\-.]*:)?\/\//i.test(e)}(t);return e&&(n||!1===r)?function(e,t){return t?e.replace(/\/?\/$/,"")+"/"+t.replace(/^\/+/,""):e}(e,t):t}var Fn={ftp:21,gopher:70,http:80,https:443,ws:80,wss:443};function Un(e){var t=("string"==typeof e?function(e){try{return new URL(e)}catch(e){return null}}(e):e)||{},r=t.protocol,n=t.host,o=t.port;if("string"!=typeof n||!n||"string"!=typeof r)return"";if(r=r.split(":",1)[0],!function(e,t){var r=In("no_proxy").toLowerCase();if(!r)return!0;if("*"===r)return!1;return r.split(/[,\s]/).every((function(r){if(!r)return!0;var n=r.match(/^(.+):(\d+)$/),o=n?n[1]:r,s=n?parseInt(n[2]):0;return!(!s||s===t)||(/^[.*]/.test(o)?("*"===o.charAt(0)&&(o=o.slice(1)),!e.endsWith(o)):e!==o)}))}(n=n.replace(/:\d*$/,""),o=parseInt(o)||Fn[r]||0))return"";var s=In(r+"_proxy")||In("all_proxy");return s&&-1===s.indexOf("://")&&(s=r+"://"+s),s}function In(e){return process.env[e.toLowerCase()]||process.env[e.toUpperCase()]||""}function Bn(e){return e&&e.__esModule&&Object.prototype.hasOwnProperty.call(e,"default")?e.default:e}function kn(e){if(Object.prototype.hasOwnProperty.call(e,"__esModule"))return e;var t=e.default;if("function"==typeof t){var r=function e(){var r=!1;try{r=this instanceof e}catch{}return r?Reflect.construct(t,arguments,this.constructor):t.apply(this,arguments)};r.prototype=t.prototype}else r={};return Object.defineProperty(r,"__esModule",{value:!0}),Object.keys(e).forEach((function(t){var n=Object.getOwnPropertyDescriptor(e,t);Object.defineProperty(r,t,n.get?n:{enumerable:!0,get:function(){return e[t]}})})),r}var qn,Mn,zn,Hn,$n,Wn={exports:{}},Gn={exports:{}},Vn={exports:{}};function Jn(){if(Mn)return qn;Mn=1;var e=1e3,t=60*e,r=60*t,n=24*r,o=7*n,s=365.25*n;function i(e,t,r,n){var o=t>=1.5*r;return Math.round(e/r)+" "+n+(o?"s":"")}return qn=function(a,c){c=c||{};var u=typeof a;if("string"===u&&a.length>0)return function(i){if((i=String(i)).length>100)return;var a=/^(-?(?:\d+)?\.?\d+) *(milliseconds?|msecs?|ms|seconds?|secs?|s|minutes?|mins?|m|hours?|hrs?|h|days?|d|weeks?|w|years?|yrs?|y)?$/i.exec(i);if(!a)return;var c=parseFloat(a[1]);switch((a[2]||"ms").toLowerCase()){case"years":case"year":case"yrs":case"yr":case"y":return c*s;case"weeks":case"week":case"w":return c*o;case"days":case"day":case"d":return c*n;case"hours":case"hour":case"hrs":case"hr":case"h":return c*r;case"minutes":case"minute":case"mins":case"min":case"m":return c*t;case"seconds":case"second":case"secs":case"sec":case"s":return c*e;case"milliseconds":case"millisecond":case"msecs":case"msec":case"ms":return c;default:return}}(a);if("number"===u&&isFinite(a))return c.long?function(o){var s=Math.abs(o);if(s>=n)return i(o,s,n,"day");if(s>=r)return i(o,s,r,"hour");if(s>=t)return i(o,s,t,"minute");if(s>=e)return i(o,s,e,"second");return o+" ms"}(a):function(o){var s=Math.abs(o);if(s>=n)return Math.round(o/n)+"d";if(s>=r)return Math.round(o/r)+"h";if(s>=t)return Math.round(o/t)+"m";if(s>=e)return Math.round(o/e)+"s";return o+"ms"}(a);throw new Error("val is not a non-empty string or a valid number. val="+JSON.stringify(a))}}function Kn(){if(Hn)return zn;return Hn=1,zn=function(e){function t(e){let n,o,s,i=null;function a(...e){if(!a.enabled)return;const r=a,o=Number(new Date),s=o-(n||o);r.diff=s,r.prev=n,r.curr=o,n=o,e[0]=t.coerce(e[0]),"string"!=typeof e[0]&&e.unshift("%O");let i=0;e[0]=e[0].replace(/%([a-zA-Z%])/g,((n,o)=>{if("%%"===n)return"%";i++;const s=t.formatters[o];if("function"==typeof s){const t=e[i];n=s.call(r,t),e.splice(i,1),i--}return n})),t.formatArgs.call(r,e);(r.log||t.log).apply(r,e)}return a.namespace=e,a.useColors=t.useColors(),a.color=t.selectColor(e),a.extend=r,a.destroy=t.destroy,Object.defineProperty(a,"enabled",{enumerable:!0,configurable:!1,get:()=>null!==i?i:(o!==t.namespaces&&(o=t.namespaces,s=t.enabled(e)),s),set:e=>{i=e}}),"function"==typeof t.init&&t.init(a),a}function r(e,r){const n=t(this.namespace+(void 0===r?":":r)+e);return n.log=this.log,n}function n(e,t){let r=0,n=0,o=-1,s=0;for(;r<e.length;)if(n<t.length&&(t[n]===e[r]||"*"===t[n]))"*"===t[n]?(o=n,s=r,n++):(r++,n++);else{if(-1===o)return!1;n=o+1,s++,r=s}for(;n<t.length&&"*"===t[n];)n++;return n===t.length}return t.debug=t,t.default=t,t.coerce=function(e){if(e instanceof Error)return e.stack||e.message;return e},t.disable=function(){const e=[...t.names,...t.skips.map((e=>"-"+e))].join(",");return t.enable(""),e},t.enable=function(e){t.save(e),t.namespaces=e,t.names=[],t.skips=[];const r=("string"==typeof e?e:"").trim().replace(/\s+/g,",").split(",").filter(Boolean);for(const e of r)"-"===e[0]?t.skips.push(e.slice(1)):t.names.push(e)},t.enabled=function(e){for(const r of t.skips)if(n(e,r))return!1;for(const r of t.names)if(n(e,r))return!0;return!1},t.humanize=Jn(),t.destroy=function(){console.warn("Instance method `debug.destroy()` is deprecated and no longer does anything. It will be removed in the next major version of `debug`.")},Object.keys(e).forEach((r=>{t[r]=e[r]})),t.names=[],t.skips=[],t.formatters={},t.selectColor=function(e){let r=0;for(let t=0;t<e.length;t++)r=(r<<5)-r+e.charCodeAt(t),r|=0;return t.colors[Math.abs(r)%t.colors.length]},t.enable(t.load()),t},zn}var Xn={exports:{}};const Zn=(()=>{if(navigator.userAgentData){if(function(e){let t,r=e[0],n=1;for(;n<e.length;){const o=e[n],s=e[n+1];if(n+=2,("optionalAccess"===o||"optionalCall"===o)&&null==r)return;"access"===o||"optionalAccess"===o?(t=r,r=s(r)):"call"!==o&&"optionalCall"!==o||(r=s(((...e)=>r.call(t,...e))),t=void 0)}return r}([navigator.userAgentData.brands.find((({brand:e})=>"Chromium"===e)),"optionalAccess",e=>e.version])>93)return 3}return/\b(Chrome|Chromium)\//.test(navigator.userAgent)?1:0})(),Qn=0!==Zn&&{level:Zn,hasBasic:!0,has256:Zn>=2,has16m:Zn>=3},Yn={stdout:Qn,stderr:Qn},eo=kn(Object.freeze({__proto__:null,default:Yn}));var to,ro,no,oo,so;function io(){return to||(to=1,function(e,t){const r=f,n=a;t.init=function(e){e.inspectOpts={};const r=Object.keys(t.inspectOpts);for(let n=0;n<r.length;n++)e.inspectOpts[r[n]]=t.inspectOpts[r[n]]},t.log=function(...e){return process.stderr.write(n.formatWithOptions(t.inspectOpts,...e)+"\n")},t.formatArgs=function(r){const{namespace:n,useColors:o}=this;if(o){const t=this.color,o="[3"+(t<8?t:"8;5;"+t),s=` ${o};1m${n} [0m`;r[0]=s+r[0].split("\n").join("\n"+s),r.push(o+"m+"+e.exports.humanize(this.diff)+"[0m")}else r[0]=function(){if(t.inspectOpts.hideDate)return"";return(new Date).toISOString()+" "}()+n+" "+r[0]},t.save=function(e){e?process.env.DEBUG=e:delete process.env.DEBUG},t.load=function(){return process.env.DEBUG},t.useColors=function(){return"colors"in t.inspectOpts?Boolean(t.inspectOpts.colors):r.isatty(process.stderr.fd)},t.destroy=n.deprecate((()=>{}),"Instance method `debug.destroy()` is deprecated and no longer does anything. It will be removed in the next major version of `debug`."),t.colors=[6,2,3,4,5,1];try{const e=eo;e&&(e.stderr||e).level>=2&&(t.colors=[20,21,26,27,32,33,38,39,40,41,42,43,44,45,56,57,62,63,68,69,74,75,76,77,78,79,80,81,92,93,98,99,112,113,128,129,134,135,148,149,160,161,162,163,164,165,166,167,168,169,170,171,172,173,178,179,184,185,196,197,198,199,200,201,202,203,204,205,206,207,208,209,214,215,220,221])}catch(e){}t.inspectOpts=Object.keys(process.env).filter((e=>/^debug_/i.test(e))).reduce(((e,t)=>{const r=t.substring(6).toLowerCase().replace(/_([a-z])/g,((e,t)=>t.toUpperCase()));let n=process.env[t];return n=!!/^(yes|on|true|enabled)$/i.test(n)||!/^(no|off|false|disabled)$/i.test(n)&&("null"===n?null:Number(n)),e[r]=n,e}),{}),e.exports=Kn()(t);const{formatters:o}=e.exports;o.o=function(e){return this.inspectOpts.colors=this.useColors,n.inspect(e,this.inspectOpts).split("\n").map((e=>e.trim())).join(" ")},o.O=function(e){return this.inspectOpts.colors=this.useColors,n.inspect(e,this.inspectOpts)}}(Xn,Xn.exports)),Xn.exports}function ao(){return ro||(ro=1,"undefined"==typeof process||"renderer"===process.type||!0===process.browser||process.__nwjs?Gn.exports=($n||($n=1,function(e,t){t.formatArgs=function(t){if(t[0]=(this.useColors?"%c":"")+this.namespace+(this.useColors?" %c":" ")+t[0]+(this.useColors?"%c ":" ")+"+"+e.exports.humanize(this.diff),!this.useColors)return;const r="color: "+this.color;t.splice(1,0,r,"color: inherit");let n=0,o=0;t[0].replace(/%[a-zA-Z%]/g,(e=>{"%%"!==e&&(n++,"%c"===e&&(o=n))})),t.splice(o,0,r)},t.save=function(e){try{e?t.storage.setItem("debug",e):t.storage.removeItem("debug")}catch(e){}},t.load=function(){let e;try{e=t.storage.getItem("debug")||t.storage.getItem("DEBUG")}catch(e){}return!e&&"undefined"!=typeof process&&"env"in process&&(e=process.env.DEBUG),e},t.useColors=function(){if("undefined"!=typeof window&&window.process&&("renderer"===window.process.type||window.process.__nwjs))return!0;if("undefined"!=typeof navigator&&navigator.userAgent&&navigator.userAgent.toLowerCase().match(/(edge|trident)\/(\d+)/))return!1;let e;return"undefined"!=typeof document&&document.documentElement&&document.documentElement.style&&document.documentElement.style.WebkitAppearance||"undefined"!=typeof window&&window.console&&(window.console.firebug||window.console.exception&&window.console.table)||"undefined"!=typeof navigator&&navigator.userAgent&&(e=navigator.userAgent.toLowerCase().match(/firefox\/(\d+)/))&&parseInt(e[1],10)>=31||"undefined"!=typeof navigator&&navigator.userAgent&&navigator.userAgent.toLowerCase().match(/applewebkit\/(\d+)/)},t.storage=function(){try{return localStorage}catch(e){}}(),t.destroy=(()=>{let e=!1;return()=>{e||(e=!0,console.warn("Instance method `debug.destroy()` is deprecated and no longer does anything. It will be removed in the next major version of `debug`."))}})(),t.colors=["#0000CC","#0000FF","#0033CC","#0033FF","#0066CC","#0066FF","#0099CC","#0099FF","#00CC00","#00CC33","#00CC66","#00CC99","#00CCCC","#00CCFF","#3300CC","#3300FF","#3333CC","#3333FF","#3366CC","#3366FF","#3399CC","#3399FF","#33CC00","#33CC33","#33CC66","#33CC99","#33CCCC","#33CCFF","#6600CC","#6600FF","#6633CC","#6633FF","#66CC00","#66CC33","#9900CC","#9900FF","#9933CC","#9933FF","#99CC00","#99CC33","#CC0000","#CC0033","#CC0066","#CC0099","#CC00CC","#CC00FF","#CC3300","#CC3333","#CC3366","#CC3399","#CC33CC","#CC33FF","#CC6600","#CC6633","#CC9900","#CC9933","#CCCC00","#CCCC33","#FF0000","#FF0033","#FF0066","#FF0099","#FF00CC","#FF00FF","#FF3300","#FF3333","#FF3366","#FF3399","#FF33CC","#FF33FF","#FF6600","#FF6633","#FF9900","#FF9933","#FFCC00","#FFCC33"],t.log=console.debug||console.log||(()=>{}),e.exports=Kn()(t);const{formatters:r}=e.exports;r.j=function(e){try{return JSON.stringify(e)}catch(e){return"[UnexpectedJSONParseError]: "+e.message}}}(Vn,Vn.exports)),Vn.exports):Gn.exports=io()),Gn.exports}var co=function(){if(so)return Wn.exports;so=1;var e,t,n,i=r,a=i.URL,c=o,f=s,p=u.Writable,d=l,h=function(){return oo||(oo=1,no=function(){if(!e){try{e=ao()("follow-redirects")}catch(e){}"function"!=typeof e&&(e=function(){})}e.apply(null,arguments)}),no;var e}();e="undefined"!=typeof process,t="undefined"!=typeof window&&"undefined"!=typeof document,n=U(Error.captureStackTrace),e||!t&&n||console.warn("The follow-redirects package should be excluded from browser builds.");var m=!1;try{d(new a(""))}catch(e){m="ERR_INVALID_URL"===e.code}var y=["Authorization","Proxy-Authorization","Cookie"],g=["auth","host","hostname","href","path","pathname","port","protocol","query","search","hash"],b=["abort","aborted","connect","error","socket","timeout"],E=Object.create(null);b.forEach((function(e){E[e]=function(t,r,n){this._redirectable.emit(e,t,r,n)}}));var _=P("ERR_INVALID_URL","Invalid URL",TypeError),w=P("ERR_FR_REDIRECTION_FAILURE","Redirected request failed"),R=P("ERR_FR_TOO_MANY_REDIRECTS","Maximum number of redirects exceeded",w),O=P("ERR_FR_MAX_BODY_LENGTH_EXCEEDED","Request body larger than maxBodyLength limit"),v=P("ERR_STREAM_WRITE_AFTER_END","write after end"),C=p.prototype.destroy||S;function A(e,t){p.call(this),this._sanitizeOptions(e),this._options=e,this._ended=!1,this._ending=!1,this._redirectCount=0,this._redirects=[],this._requestBodyLength=0,this._requestBodyBuffers=[],t&&this.on("response",t);var r=this;this._onNativeResponse=function(e){try{r._processResponse(e)}catch(e){r.emit("error",e instanceof w?e:new w({cause:e}))}},this._headerFilter=new RegExp("^(?:"+y.concat(e.sensitiveHeaders).map(I).join("|")+")$","i"),this._performRequest()}function x(e){var t={maxRedirects:21,maxBodyLength:10485760},r={};return Object.keys(e).forEach((function(n){var o=n+":",s=r[o]=e[n],i=t[n]=Object.create(s);Object.defineProperties(i,{request:{value:function(e,n,s){var i;return i=e,a&&i instanceof a?e=N(e):F(e)?e=N(T(e)):(s=n,n=j(e),e={protocol:o}),U(n)&&(s=n,n=null),(n=Object.assign({maxRedirects:t.maxRedirects,maxBodyLength:t.maxBodyLength},e,n)).nativeProtocols=r,F(n.host)||F(n.hostname)||(n.hostname="::1"),d.equal(n.protocol,o,"protocol mismatch"),h("options",n),new A(n,s)},configurable:!0,enumerable:!0,writable:!0},get:{value:function(e,t,r){var n=i.request(e,t,r);return n.end(),n},configurable:!0,enumerable:!0,writable:!0}})})),t}function S(){}function T(e){var t;if(m)t=new a(e);else if(!F((t=j(i.parse(e))).protocol))throw new _({input:e});return t}function j(e){if(/^\[/.test(e.hostname)&&!/^\[[:0-9a-f]+\]$/i.test(e.hostname))throw new _({input:e.href||e});if(/^\[/.test(e.host)&&!/^\[[:0-9a-f]+\](:\d+)?$/i.test(e.host))throw new _({input:e.href||e});return e}function N(e,t){var r=t||{};for(var n of g)r[n]=e[n];return r.hostname.startsWith("[")&&(r.hostname=r.hostname.slice(1,-1)),""!==r.port&&(r.port=Number(r.port)),r.path=r.search?r.pathname+r.search:r.pathname,r}function L(e,t){var r;for(var n in t)e.test(n)&&(r=t[n],delete t[n]);return null==r?void 0:String(r).trim()}function P(e,t,r){function n(r){U(Error.captureStackTrace)&&Error.captureStackTrace(this,this.constructor),Object.assign(this,r||{}),this.code=e,this.message=this.cause?t+": "+this.cause.message:t}return n.prototype=new(r||Error),Object.defineProperties(n.prototype,{constructor:{value:n,enumerable:!1},name:{value:"Error ["+e+"]",enumerable:!1}}),n}function D(e,t){for(var r of b)e.removeListener(r,E[r]);e.on("error",S),e.destroy(t)}function F(e){return"string"==typeof e||e instanceof String}function U(e){return"function"==typeof e}function I(e){return e.replace(/[\]\\/()*+?.$]/g,"\\$&")}return A.prototype=Object.create(p.prototype),A.prototype.abort=function(){D(this._currentRequest),this._currentRequest.abort(),this.emit("abort")},A.prototype.destroy=function(e){return D(this._currentRequest,e),C.call(this,e),this},A.prototype.write=function(e,t,r){if(this._ending)throw new v;if(!F(e)&&("object"!=typeof(n=e)||!("length"in n)))throw new TypeError("data should be a string, Buffer or Uint8Array");var n;U(t)&&(r=t,t=null),0!==e.length?this._requestBodyLength+e.length<=this._options.maxBodyLength?(this._requestBodyLength+=e.length,this._requestBodyBuffers.push({data:e,encoding:t}),this._currentRequest.write(e,t,r)):(this.emit("error",new O),this.abort()):r&&r()},A.prototype.end=function(e,t,r){if(U(e)?(r=e,e=t=null):U(t)&&(r=t,t=null),e){var n=this,o=this._currentRequest;this.write(e,t,(function(){n._ended=!0,o.end(null,null,r)})),this._ending=!0}else this._ended=this._ending=!0,this._currentRequest.end(null,null,r)},A.prototype.setHeader=function(e,t){this._options.headers[e]=t,this._currentRequest.setHeader(e,t)},A.prototype.removeHeader=function(e){delete this._options.headers[e],this._currentRequest.removeHeader(e)},A.prototype.setTimeout=function(e,t){var r=this;function n(t){t.setTimeout(e),t.removeListener("timeout",t.destroy),t.addListener("timeout",t.destroy)}function o(t){r._timeout&&clearTimeout(r._timeout),r._timeout=setTimeout((function(){r.emit("timeout"),s()}),e),n(t)}function s(){r._timeout&&(clearTimeout(r._timeout),r._timeout=null),r.removeListener("abort",s),r.removeListener("error",s),r.removeListener("response",s),r.removeListener("close",s),t&&r.removeListener("timeout",t),r.socket||r._currentRequest.removeListener("socket",o)}return t&&this.on("timeout",t),this.socket?o(this.socket):this._currentRequest.once("socket",o),this.on("socket",n),this.on("abort",s),this.on("error",s),this.on("response",s),this.on("close",s),this},["flushHeaders","getHeader","setNoDelay","setSocketKeepAlive"].forEach((function(e){A.prototype[e]=function(t,r){return this._currentRequest[e](t,r)}})),["aborted","connection","socket"].forEach((function(e){Object.defineProperty(A.prototype,e,{get:function(){return this._currentRequest[e]}})})),A.prototype._sanitizeOptions=function(e){if(e.headers||(e.headers={}),e.sensitiveHeaders instanceof Array||(e.sensitiveHeaders=[]),e.host&&(e.hostname||(e.hostname=e.host),delete e.host),!e.pathname&&e.path){var t=e.path.indexOf("?");t<0?e.pathname=e.path:(e.pathname=e.path.substring(0,t),e.search=e.path.substring(t))}},A.prototype._performRequest=function(){var e=this._options.protocol,t=this._options.nativeProtocols[e];if(!t)throw new TypeError("Unsupported protocol "+e);if(this._options.agents){var r=e.slice(0,-1);this._options.agent=this._options.agents[r]}var n=this._currentRequest=t.request(this._options,this._onNativeResponse);for(var o of(n._redirectable=this,b))n.on(o,E[o]);if(this._currentUrl=/^\//.test(this._options.path)?i.format(this._options):this._options.path,this._isRedirect){var s=0,a=this,c=this._requestBodyBuffers;!function e(t){if(n===a._currentRequest)if(t)a.emit("error",t);else if(s<c.length){var r=c[s++];n.finished||n.write(r.data,r.encoding,e)}else a._ended&&n.end()}()}},A.prototype._processResponse=function(e){var t=e.statusCode;this._options.trackRedirects&&this._redirects.push({url:this._currentUrl,headers:e.headers,statusCode:t});var r,n=e.headers.location;if(!n||!1===this._options.followRedirects||t<300||t>=400)return e.responseUrl=this._currentUrl,e.redirects=this._redirects,this.emit("response",e),void(this._requestBodyBuffers=[]);if(D(this._currentRequest),e.destroy(),++this._redirectCount>this._options.maxRedirects)throw new R;var o=this._options.beforeRedirect;o&&(r=Object.assign({Host:e.req.getHeader("host")},this._options.headers));var s=this._options.method;((301===t||302===t)&&"POST"===this._options.method||303===t&&!/^(?:GET|HEAD)$/.test(this._options.method))&&(this._options.method="GET",this._requestBodyBuffers=[],L(/^content-/i,this._options.headers));var c,u,l=L(/^host$/i,this._options.headers),f=T(this._currentUrl),p=l||f.host,y=/^\w+:/.test(n)?this._currentUrl:i.format(Object.assign(f,{host:p})),g=(c=n,u=y,m?new a(c,u):T(i.resolve(u,c)));if(h("redirecting to",g.href),this._isRedirect=!0,N(g,this._options),(g.protocol!==f.protocol&&"https:"!==g.protocol||g.host!==p&&!function(e,t){d(F(e)&&F(t));var r=e.length-t.length-1;return r>0&&"."===e[r]&&e.endsWith(t)}(g.host,p))&&L(this._headerFilter,this._options.headers),U(o)){var b={headers:e.headers,statusCode:t},E={url:y,method:s,headers:r};o(this._options,b,E),this._sanitizeOptions(this._options)}this._performRequest()},Wn.exports=x({http:c,https:f}),Wn.exports.wrap=x,Wn.exports}();const uo=Bn(co),lo="1.17.0";function fo(e){const t=/^([-+\w]{1,25}):(?:\/\/)?/.exec(e);return t&&t[1]||""}const po=/^([^,;]+\/[^,;]+)?((?:;[^,;=]+=[^,;]+)*)(;base64)?,([\s\S]*)$/;const ho=Symbol("internals");class mo extends u.Transform{constructor(e){super({readableHighWaterMark:(e=$r.toFlatObject(e,{maxRate:0,chunkSize:65536,minChunkSize:100,timeWindow:500,ticksRate:2,samplesCount:15},null,((e,t)=>!$r.isUndefined(t[e])))).chunkSize});const t=this[ho]={timeWindow:e.timeWindow,chunkSize:e.chunkSize,maxRate:e.maxRate,minChunkSize:e.minChunkSize,bytesSeen:0,isCaptured:!1,notifiedBytesLoaded:0,ts:Date.now(),bytes:0,onReadCallback:null};this.on("newListener",(e=>{"progress"===e&&(t.isCaptured||(t.isCaptured=!0))}))}_read(e){const t=this[ho];return t.onReadCallback&&t.onReadCallback(),super._read(e)}_transform(e,t,r){const n=this[ho],o=n.maxRate,s=this.readableHighWaterMark,i=n.timeWindow,a=o/(1e3/i),c=!1!==n.minChunkSize?Math.max(n.minChunkSize,.01*a):0,u=(e,t)=>{const r=Buffer.byteLength(e);n.bytesSeen+=r,n.bytes+=r,n.isCaptured&&this.emit("progress",n.bytesSeen),this.push(e)?process.nextTick(t):n.onReadCallback=()=>{n.onReadCallback=null,process.nextTick(t)}},l=(e,t)=>{const r=Buffer.byteLength(e);let l,f=null,p=s,d=0;if(o){const e=Date.now();(!n.ts||(d=e-n.ts)>=i)&&(n.ts=e,l=a-n.bytes,n.bytes=l<0?-l:0,d=0),l=a-n.bytes}if(o){if(l<=0)return setTimeout((()=>{t(null,e)}),i-d);l<p&&(p=l)}p&&r>p&&r-p>c&&(f=e.subarray(p),e=e.subarray(0,p)),u(e,f?()=>{process.nextTick(t,null,f)}:t)};l(e,(function e(t,n){if(t)return r(t);n?l(n,e):r(null)}))}}const{asyncIterator:yo}=Symbol,go=async function*(e){e.stream?yield*e.stream():e.arrayBuffer?yield await e.arrayBuffer():e[yo]?yield*e[yo]():yield e},bo=An.ALPHABET.ALPHA_DIGIT+"-_",Eo="function"==typeof TextEncoder?new TextEncoder:new a.TextEncoder,_o="\r\n",wo=Eo.encode(_o);class Ro{constructor(e,t){const{escapeName:r}=this.constructor,n=$r.isString(t);let o=`Content-Disposition: form-data; name="${r(e)}"${!n&&t.name?`; filename="${r(t.name)}"`:""}${_o}`;if(n)t=Eo.encode(String(t).replace(/\r?\n|\r\n?/g,_o));else{o+=`Content-Type: ${String(t.type||"application/octet-stream").replace(/[\r\n]/g,"")}${_o}`}this.headers=Eo.encode(o+_o),this.contentLength=n?t.byteLength:t.size,this.size=this.headers.byteLength+this.contentLength+2,this.name=e,this.value=t}async*encode(){yield this.headers;const{value:e}=this;$r.isTypedArray(e)?yield e:yield*go(e),yield wo}static escapeName(e){return String(e).replace(/[\r\n"]/g,(e=>({"\r":"%0D","\n":"%0A",'"':"%22"}[e])))}}class Oo extends u.Transform{__transform(e,t,r){this.push(e),r()}_transform(e,t,r){if(0!==e.length&&(this._transform=this.__transform,120!==e[0])){const e=Buffer.alloc(2);e[0]=120,e[1]=156,this.push(e,t)}this.__transform(e,t,r)}}const vo=(e,t)=>$r.isAsyncFn(e)?function(...r){const n=r.pop();e.apply(this,r).then((e=>{try{t?n(null,...t(e)):n(null,e)}catch(e){n(e)}}),n)}:e,Co=new Set(["localhost"]),Ao=e=>{const t=e.split(".");return 4===t.length&&("127"===t[0]&&t.every((e=>/^\d+$/.test(e)&&Number(e)>=0&&Number(e)<=255)))},xo=e=>!!e&&(!!Co.has(e)||(!!Ao(e)||(e=>{if("::1"===e)return!0;const t=e.match(/^::ffff:(\d+\.\d+\.\d+\.\d+)$/i);if(t)return Ao(t[1]);const r=e.match(/^::ffff:([0-9a-f]{1,4}):([0-9a-f]{1,4})$/i);if(r){const e=parseInt(r[1],16);return e>=32512&&e<=32767}const n=e.split(":");if(8===n.length){for(let e=0;e<7;e++)if(!/^0+$/.test(n[e]))return!1;return/^0*1$/.test(n[7])}return!1})(e))),So={http:80,https:443,ws:80,wss:443,ftp:21},To=/^(?:::|(?:0{1,4}:){1,4}:|(?:0{1,4}:){5})ffff:(\d+\.\d+\.\d+\.\d+)$/i,jo=/^(?:::|(?:0{1,4}:){1,4}:|(?:0{1,4}:){5})ffff:([0-9a-f]{1,4}):([0-9a-f]{1,4})$/i,No=e=>e?("["===e.charAt(0)&&"]"===e.charAt(e.length-1)&&(e=e.slice(1,-1)),(e=>{if("string"!=typeof e||-1===e.indexOf(":"))return e;const t=e.match(To);if(t)return t[1];const r=e.match(jo);if(r){const e=parseInt(r[1],16),t=parseInt(r[2],16);return`${e>>8}.${255&e}.${t>>8}.${255&t}`}return e})(e.replace(/\.+$/,""))):e;function Lo(e){let t;try{t=new URL(e)}catch(e){return!1}const r=(process.env.no_proxy||process.env.NO_PROXY||"").toLowerCase();if(!r)return!1;if("*"===r)return!0;const n=Number.parseInt(t.port,10)||So[t.protocol.split(":",1)[0]]||0,o=No(t.hostname.toLowerCase());return r.split(/[\s,]+/).some((e=>{if(!e)return!1;let[t,r]=(e=>{let t=e,r=0;if("["===t.charAt(0)){const e=t.indexOf("]");if(-1!==e){const n=t.slice(1,e),o=t.slice(e+1);return":"===o.charAt(0)&&/^\d+$/.test(o.slice(1))&&(r=Number.parseInt(o.slice(1),10)),[n,r]}}const n=t.indexOf(":"),o=t.lastIndexOf(":");return-1!==n&&n===o&&/^\d+$/.test(t.slice(o+1))&&(r=Number.parseInt(t.slice(o+1),10),t=t.slice(0,o)),[t,r]})(e);return t=No(t),!!t&&((!r||r===n)&&("*"===t.charAt(0)&&(t=t.slice(1)),"."===t.charAt(0)?o.endsWith(t):o===t||xo(o)&&xo(t)))}))}const Po=(e,t,r=3)=>{let n=0;const o=function(e,t){e=e||10;const r=new Array(e),n=new Array(e);let o,s=0,i=0;return t=void 0!==t?t:1e3,function(a){const c=Date.now(),u=n[i];o||(o=c),r[s]=a,n[s]=c;let l=i,f=0;for(;l!==s;)f+=r[l++],l%=e;if(s=(s+1)%e,s===i&&(i=(i+1)%e),c-o<t)return;const p=u&&c-u;return p?Math.round(1e3*f/p):void 0}}(50,250);return function(e,t){let r,n,o=0,s=1e3/t;const i=(t,s=Date.now())=>{o=s,r=null,n&&(clearTimeout(n),n=null),e(...t)};return[(...e)=>{const t=Date.now(),a=t-o;a>=s?i(e,t):(r=e,n||(n=setTimeout((()=>{n=null,i(r)}),s-a)))},()=>r&&i(r)]}((r=>{if(!r||"number"!=typeof r.loaded)return;const s=r.loaded,i=r.lengthComputable?r.total:void 0,a=null!=i?Math.min(s,i):s,c=Math.max(0,a-n),u=o(c);n=Math.max(n,a);e({loaded:a,total:i,progress:i?a/i:void 0,bytes:c,rate:u||void 0,estimated:u&&i?(i-a)/u:void 0,event:r,lengthComputable:null!=i,[t?"download":"upload"]:!0})}),r)},Do=(e,t)=>{const r=null!=e;return[n=>t[0]({lengthComputable:r,total:e,loaded:n}),t[1]]},Fo=e=>(...t)=>$r.asap((()=>e(...t)));function Uo(e){if(!e||"string"!=typeof e)return 0;if(!e.startsWith("data:"))return 0;const t=e.indexOf(",");if(t<0)return 0;const r=e.slice(5,t),n=e.slice(t+1);if(/;base64/i.test(r)){let e=n.length;const t=n.length;for(let r=0;r<t;r++)if(37===n.charCodeAt(r)&&r+2<t){const t=n.charCodeAt(r+1),o=n.charCodeAt(r+2);(t>=48&&t<=57||t>=65&&t<=70||t>=97&&t<=102)&&(o>=48&&o<=57||o>=65&&o<=70||o>=97&&o<=102)&&(e-=2,r+=2)}let r=0,o=t-1;const s=e=>e>=2&&37===n.charCodeAt(e-2)&&51===n.charCodeAt(e-1)&&(68===n.charCodeAt(e)||100===n.charCodeAt(e));o>=0&&(61===n.charCodeAt(o)?(r++,o--):s(o)&&(r++,o-=3)),1===r&&o>=0&&(61===n.charCodeAt(o)||s(o))&&r++;const i=3*Math.floor(e/4)-(r||0);return i>0?i:0}if("undefined"!=typeof Buffer&&"function"==typeof Buffer.byteLength)return Buffer.byteLength(n,"utf8");let o=0;for(let e=0,t=n.length;e<t;e++){const r=n.charCodeAt(e);if(r<128)o+=1;else if(r<2048)o+=2;else if(r>=55296&&r<=56319&&e+1<t){const t=n.charCodeAt(e+1);t>=56320&&t<=57343?(o+=4,e++):o+=3}else o+=3}return o}const Io={flush:p.constants.Z_SYNC_FLUSH,finishFlush:p.constants.Z_SYNC_FLUSH},Bo={flush:p.constants.BROTLI_OPERATION_FLUSH,finishFlush:p.constants.BROTLI_OPERATION_FLUSH},ko={flush:p.constants.ZSTD_e_flush,finishFlush:p.constants.ZSTD_e_flush},qo=$r.isFunction(p.createBrotliDecompress),Mo=$r.isFunction(p.createZstdDecompress),zo="gzip, compress, deflate"+(qo?", br":""),Ho=zo+(Mo?", zstd":""),{http:$o,https:Wo}=uo,Go=/https:?/,Vo=["content-type","content-length"];const Jo=Symbol("axios.http.socketListener"),Ko=Symbol("axios.http.currentReq"),Xo=Symbol("axios.http.installedTunnel"),Zo=new Map,Qo=new WeakMap;const Yo=An.protocols.map((e=>e+":")),es=e=>{if(!$r.isString(e))return e;try{return decodeURIComponent(e)}catch(t){return e}},ts=(e,[t,r])=>(e.on("end",r).on("error",r),t),rs=new class{constructor(){this.sessions=Object.create(null)}getSession(e,t){t=Object.assign({sessionTimeout:1e3},t);let r=this.sessions[e];if(r){let e=r.length;for(let n=0;n<e;n++){const[e,o]=r[n];if(!e.destroyed&&!e.closed&&a.isDeepStrictEqual(o,t))return e}}const n=i.connect(e,t);let o,s;const c=()=>{if(o)return;o=!0,s&&(clearTimeout(s),s=null);let t=r,i=t.length,a=i;for(;a--;)if(t[a][0]===n)return 1===i?delete this.sessions[e]:t.splice(a,1),void(n.closed||n.close())},u=n.request,{sessionTimeout:l}=t;if(null!=l){let e=0;n.request=function(){const t=u.apply(this,arguments);return e++,s&&(clearTimeout(s),s=null),t.once("close",(()=>{--e||(s=setTimeout((()=>{s=null,c()}),l))})),t}}n.once("close",c);let f=[n,t];return r?r.push(f):r=this.sessions[e]=[f],n}};function ns(e,t,r){e.beforeRedirects.proxy&&e.beforeRedirects.proxy(e),e.beforeRedirects.auth&&e.beforeRedirects.auth(e),e.beforeRedirects.config&&e.beforeRedirects.config(e,t,r)}function os(e,t,r,o,s){let i=t;if(!i&&!1!==i){const e=Un(r);e&&(Lo(r)||(i=new URL(e)))}if(o&&e.headers)for(const t of Object.keys(e.headers))"proxy-authorization"===t.toLowerCase()&&delete e.headers[t];if(o&&e.agent&&e.agent[Xo]&&(e.agent=void 0),i){const t=i instanceof URL,o=e=>t||$r.hasOwnProp(i,e)?i[e]:void 0,a=o("username"),c=o("password");let u=$r.hasOwnProp(i,"auth")?i.auth:void 0;if(a&&(u=(a||"")+":"+(c||"")),u){const e="object"==typeof u,t=e&&$r.hasOwnProp(u,"username")?u.username:void 0,r=e&&$r.hasOwnProp(u,"password")?u.password:void 0;if(Boolean(t||r))u=(t||"")+":"+(r||"");else if(e)throw new rn("Invalid proxy authorization",rn.ERR_BAD_OPTION,{proxy:i})}if(Go.test(e.protocol)){if(!(s instanceof n)){const t=o("hostname")||o("host"),r=o("port"),i=o("protocol"),a=i?i.includes(":")?i:`${i}:`:"http:",c=t&&t.includes(":")&&!t.startsWith("[")?`[${t}]`:t,l=new URL(`${a}//${c}${r?":"+r:""}`),f={protocol:l.protocol,hostname:l.hostname.replace(/^\[|\]$/g,""),port:l.port,auth:u&&"string"==typeof u?u:void 0};"https:"===l.protocol&&(f.ALPNProtocols=["http/1.1"]);const p=function(e,t){const r=e.protocol+"//"+e.hostname+":"+(e.port||"")+"#"+(e.auth||""),o=t?Qo.get(t)||Qo.set(t,new Map).get(t):Zo;let s=o.get(r);if(s)return s;const i=t&&t.options?{...t.options,...e}:e;if(s=new n(i),t&&t.options){const e={...t.options},r=s.callback;s.callback=function(t,n){return r.call(this,t,{...e,...n})}}return s[Xo]=!0,o.set(r,s),s}(f,s);e.agent=p,e.agents&&(e.agents.https=p)}}else{if(u){const t=Buffer.from(u,"utf8").toString("base64");e.headers["Proxy-Authorization"]="Basic "+t}let t=!1;for(const r of Object.keys(e.headers))if("host"===r.toLowerCase()){t=!0;break}t||(e.headers.host=e.hostname+(e.port?":"+e.port:""));const n=o("hostname")||o("host");e.hostname=n,e.host=n,e.port=o("port"),e.path=r;const s=o("protocol");s&&(e.protocol=s.includes(":")?s:`${s}:`)}}e.beforeRedirects.proxy=function(e){os(e,t,e.href,!0,s)}}const ss="undefined"!=typeof process&&"process"===$r.kindOf(process),is=(e,t)=>(({address:e,family:t})=>{if(!$r.isString(e))throw TypeError("address must be a string");return{address:e,family:t||(e.indexOf(".")<0?6:4)}})($r.isObject(e)?e:{address:e,family:t}),as={request(e,t){const r=e.protocol+"//"+e.hostname+":"+(e.port||("https:"===e.protocol?443:80)),{http2Options:n,headers:o}=e,s=rs.getSession(r,n),{HTTP2_HEADER_SCHEME:a,HTTP2_HEADER_METHOD:c,HTTP2_HEADER_PATH:u,HTTP2_HEADER_STATUS:l}=i.constants,f={[a]:e.protocol.replace(":",""),[c]:e.method,[u]:e.path};$r.forEach(o,((e,t)=>{":"!==t.charAt(0)&&(f[t]=e)}));const p=s.request(f);return p.once("response",(e=>{const r=p,n=(e=Object.assign({},e))[l];delete e[l],r.headers=e,r.statusCode=+n,t(r)})),p}},cs=ss&&function(e){return t=async function(t,r,n){const i=t=>$r.hasOwnProp(e,t)?e[t]:void 0,l=i("transitional")||mn;let f=i("data"),h=i("lookup"),m=i("family"),y=i("httpVersion");void 0===y&&(y=1);let g=i("http2Options");const b=i("responseType"),E=i("responseEncoding"),_=e.method.toUpperCase();let w,R,O,v=!1;if(y=+y,Number.isNaN(y))throw TypeError(`Invalid protocol version: '${e.httpVersion}' is not a number`);if(1!==y&&2!==y)throw TypeError(`Unsupported protocol version '${y}'`);const C=2===y;if(h){const e=vo(h,(e=>$r.isArray(e)?e:[e]));h=(t,r,n)=>{e(t,r,((e,t,o)=>{if(e)return n(e);const s=$r.isArray(t)?t.map((e=>is(e))):[is(t,o)];r.all?n(e,s):n(e,s[0].address,s[0].family)}))}}const A=new d.EventEmitter;function x(t){try{A.emit("abort",!t||t.type?new Ln(null,e,R):t)}catch(e){}}function S(){O&&(clearTimeout(O),O=null)}A.once("abort",r);const T=()=>{S(),e.cancelToken&&e.cancelToken.unsubscribe(x),e.signal&&e.signal.removeEventListener("abort",x),A.removeAllListeners()};(e.cancelToken||e.signal)&&(e.cancelToken&&e.cancelToken.subscribe(x),e.signal&&(e.signal.aborted?x():e.signal.addEventListener("abort",x))),n(((e,t)=>{if(w=!0,S(),t)return v=!0,void T();const{data:r}=e;if(r instanceof u.Readable||r instanceof u.Duplex){const e=u.finished(r,(()=>{e(),T()}))}else T()}));const j=Dn(e.baseURL,e.url,e.allowAbsoluteUrls),N=new URL(j,An.hasBrowserEnv?An.origin:void 0),L=N.protocol||Yo[0];if("data:"===L){if(e.maxContentLength>-1&&Uo(String(e.url||j||""))>e.maxContentLength)return r(new rn("maxContentLength size of "+e.maxContentLength+" exceeded",rn.ERR_BAD_RESPONSE,e));let n;if("GET"!==_)return Pn(t,r,{status:405,statusText:"method not allowed",headers:{},config:e});try{n=function(e,t,r){const n=r&&r.Blob||An.classes.Blob,o=fo(e);if(void 0===t&&n&&(t=!0),"data"===o){e=o.length?e.slice(o.length+1):e;const r=po.exec(e);if(!r)throw new rn("Invalid URL",rn.ERR_INVALID_URL);const s=r[1],i=r[2],a=r[3]?"base64":"utf8",c=r[4];let u;s?u=i?s+i:s:i&&(u="text/plain"+i);const l=Buffer.from(decodeURIComponent(c),a);if(t){if(!n)throw new rn("Blob is not supported",rn.ERR_NOT_SUPPORT);return new n([l],{type:u})}return l}throw new rn("Unsupported protocol "+o,rn.ERR_NOT_SUPPORT)}(e.url,"blob"===b,{Blob:e.env&&e.env.Blob})}catch(t){throw rn.from(t,rn.ERR_BAD_REQUEST,e)}return"text"===b?(n=n.toString(E),E&&"utf8"!==E||(n=$r.stripBOM(n))):"stream"===b&&(n=u.Readable.from(n)),Pn(t,r,{data:n,status:200,statusText:"OK",headers:new en,config:e})}if(-1===Yo.indexOf(L))return r(new rn("Unsupported protocol "+L,rn.ERR_BAD_REQUEST,e));const P=en.from(e.headers).normalize();P.set("User-Agent","axios/"+lo,!1);const{onUploadProgress:D,onDownloadProgress:F}=e,U=e.maxRate;let I,B;if($r.isSpecCompliantForm(f)){const e=P.getContentType(/boundary=([-_\w\d]{10,70})/i);f=((e,t,r)=>{const{tag:n="form-data-boundary",size:o=25,boundary:s=n+"-"+An.generateString(o,bo)}=r||{};if(!$r.isFormData(e))throw new TypeError("FormData instance required");if(s.length<1||s.length>70)throw new Error("boundary must be 1-70 characters long");const i=Eo.encode("--"+s+_o),a=Eo.encode("--"+s+"--"+_o);let c=a.byteLength;const l=Array.from(e.entries()).map((([e,t])=>{const r=new Ro(e,t);return c+=r.size,r}));c+=i.byteLength*l.length,c=$r.toFiniteNumber(c);const f={"Content-Type":`multipart/form-data; boundary=${s}`};return Number.isFinite(c)&&(f["Content-Length"]=c),t&&t(f),u.Readable.from(async function*(){for(const e of l)yield i,yield*e.encode();yield a}())})(f,(e=>{P.set(e)}),{tag:`axios-${lo}-boundary`,boundary:e&&e[1]||void 0})}else if($r.isFormData(f)&&$r.isFunction(f.getHeaders)&&f.getHeaders!==Object.prototype.getHeaders){if(function(e,t,r){"content-only"===r?Object.entries(t).forEach((([t,r])=>{Vo.includes(t.toLowerCase())&&e.set(t,r)})):e.set(t)}(P,f.getHeaders(),i("formDataHeaderPolicy")),!P.hasContentLength())try{const e=await a.promisify(f.getLength).call(f);Number.isFinite(e)&&e>=0&&P.setContentLength(e)}catch(e){}}else if($r.isBlob(f)||$r.isFile(f))f.size&&P.setContentType(f.type||"application/octet-stream"),P.setContentLength(f.size||0),f=u.Readable.from(go(f));else if(f&&!$r.isStream(f)){if(Buffer.isBuffer(f));else if($r.isArrayBuffer(f))f=Buffer.from(new Uint8Array(f));else{if(!$r.isString(f))return r(new rn("Data after transformation must be a string, an ArrayBuffer, a Buffer, or a Stream",rn.ERR_BAD_REQUEST,e));f=Buffer.from(f,"utf-8")}if(P.setContentLength(f.length,!1),e.maxBodyLength>-1&&f.length>e.maxBodyLength)return r(new rn("Request body larger than maxBodyLength limit",rn.ERR_BAD_REQUEST,e))}const k=$r.toFiniteNumber(P.getContentLength());let q;$r.isArray(U)?(I=U[0],B=U[1]):I=B=U,f&&(D||I)&&($r.isStream(f)||(f=u.Readable.from(f,{objectMode:!1})),f=u.pipeline([f,new mo({maxRate:$r.toFiniteNumber(I)})],$r.noop),D&&f.on("progress",ts(f,Do(k,Po(Fo(D),!1,3)))));const M=i("auth");let z;M&&(q=(M.username||"")+":"+(M.password||"")),q||!N.username&&!N.password||(q=es(N.username)+":"+es(N.password)),q&&P.delete("authorization");try{z=dn(N.pathname+N.search,e.params,e.paramsSerializer).replace(/^\?/,"")}catch(t){const n=new Error(t.message);return n.config=e,n.url=e.url,n.exists=!0,r(n)}P.set("Accept-Encoding",$r.hasOwnProp(l,"advertiseZstdAcceptEncoding")&&!0===l.advertiseZstdAcceptEncoding?Ho:zo,!1);const H=Object.assign(Object.create(null),{path:z,method:_,headers:Kr(P),agents:{http:e.httpAgent,https:e.httpsAgent},auth:q,protocol:L,family:m,beforeRedirect:ns,beforeRedirects:Object.create(null),http2Options:g});!$r.isUndefined(h)&&(H.lookup=h);const $=i("socketPath");if($){if("string"!=typeof $)return r(new rn("socketPath must be a string",rn.ERR_BAD_OPTION_VALUE,e));const t=i("allowedSocketPaths");if(null!=t){const n=Array.isArray(t)?t:[t],o=c.resolve($);if(!n.some((e=>"string"==typeof e&&c.resolve(e)===o)))return r(new rn(`socketPath "${$}" is not permitted by allowedSocketPaths`,rn.ERR_BAD_OPTION_VALUE,e))}H.socketPath=$}else H.hostname=N.hostname.startsWith("[")?N.hostname.slice(1,-1):N.hostname,H.port=N.port,os(H,e.proxy,L+"//"+N.hostname+(N.port?":"+N.port:"")+H.path,!1,e.httpsAgent);let W,G=!1;const V=Go.test(H.protocol);if(null==H.agent&&(H.agent=V?e.httpsAgent:e.httpAgent),C)W=as;else{const t=i("transport");if(t)W=t;else if(0===e.maxRedirects)W=V?s:o,G=!0;else{e.maxRedirects&&(H.maxRedirects=e.maxRedirects);const t=i("beforeRedirect");if(t&&(H.beforeRedirects.config=t),q){const e=N.origin,t=q;H.beforeRedirects.auth=function(r){try{new URL(r.href).origin===e&&(r.auth=t)}catch(e){}}}W=V?Wo:$o}}e.maxBodyLength>-1?H.maxBodyLength=e.maxBodyLength:H.maxBodyLength=1/0,H.insecureHTTPParser=Boolean(i("insecureHTTPParser")),R=W.request(H,(function(n){if(S(),R.destroyed)return;const o=[n],s=$r.toFiniteNumber(n.headers["content-length"]);if(F||B){const l=new mo({maxRate:$r.toFiniteNumber(B)});F&&l.on("progress",ts(l,Do(s,Po(Fo(F),!0,3)))),o.push(l)}let i=n;const a=n.req||R;if(!1!==e.decompress&&n.headers["content-encoding"])switch("HEAD"!==_&&204!==n.statusCode||delete n.headers["content-encoding"],(n.headers["content-encoding"]||"").toLowerCase()){case"gzip":case"x-gzip":case"compress":case"x-compress":o.push(p.createUnzip(Io)),delete n.headers["content-encoding"];break;case"deflate":o.push(new Oo),o.push(p.createUnzip(Io)),delete n.headers["content-encoding"];break;case"br":qo&&(o.push(p.createBrotliDecompress(Bo)),delete n.headers["content-encoding"]);break;case"zstd":Mo&&(o.push(p.createZstdDecompress(ko)),delete n.headers["content-encoding"])}i=o.length>1?u.pipeline(o,$r.noop):o[0];const c={status:n.statusCode,statusText:n.statusMessage,headers:new en(n.headers),config:e,request:a};if("stream"===b){if(e.maxContentLength>-1){const f=e.maxContentLength,d=i;async function*h(){let t=0;for await(const r of d){if(t+=r.length,t>f)throw new rn("maxContentLength size of "+f+" exceeded",rn.ERR_BAD_RESPONSE,e,a);yield r}}i=u.Readable.from(h(),{objectMode:!1})}c.data=i,Pn(t,r,c)}else{const m=[];let y=0;i.on("data",(function(t){m.push(t),y+=t.length,e.maxContentLength>-1&&y>e.maxContentLength&&(v=!0,i.destroy(),x(new rn("maxContentLength size of "+e.maxContentLength+" exceeded",rn.ERR_BAD_RESPONSE,e,a)))})),i.on("aborted",(function(){if(v)return;const t=new rn("stream has been aborted",rn.ERR_BAD_RESPONSE,e,a,c);i.destroy(t),r(t)})),i.on("error",(function(t){v||r(rn.from(t,null,e,a,c))})),i.on("end",(function(){try{let e=1===m.length?m[0]:Buffer.concat(m);"arraybuffer"!==b&&(e=e.toString(E),E&&"utf8"!==E||(e=$r.stripBOM(e))),c.data=e}catch(t){return r(rn.from(t,null,e,c.request,c))}Pn(t,r,c)}))}A.once("abort",(e=>{i.destroyed||(i.emit("error",e),i.destroy())}))})),A.once("abort",(e=>{R.close?R.close():R.destroy(e)})),R.on("error",(function(t){r(rn.from(t,null,e,R))}));const J=new Set;if(R.on("socket",(function(e){e.setKeepAlive(!0,6e4),e[Jo]||(e.on("error",(function(t){const r=e[Ko];r&&!r.destroyed&&r.destroy(t)})),e[Jo]=!0),e[Ko]=R,J.add(e)})),R.once("close",(function(){S();for(const e of J)e[Ko]===R&&(e[Ko]=null);J.clear()})),e.timeout){const t=parseInt(e.timeout,10);if(Number.isNaN(t))return void x(new rn("error trying to parse `config.timeout` to int",rn.ERR_BAD_OPTION_VALUE,e,R));const r=function(){w||x(function(){let t=e.timeout?"timeout of "+e.timeout+"ms exceeded":"timeout exceeded";return e.timeoutErrorMessage&&(t=e.timeoutErrorMessage),new rn(t,l.clarifyTimeoutError?rn.ETIMEDOUT:rn.ECONNABORTED,e,R)}())};G&&t>0&&(O=setTimeout(r,t)),R.setTimeout(t,r)}else R.setTimeout(0);if($r.isStream(f)){let t=!1,r=!1;f.on("end",(()=>{t=!0})),f.once("error",(e=>{r=!0,R.destroy(e)})),f.on("close",(()=>{t||r||x(new Ln("Request stream has been aborted",e,R))}));let n=f;if(e.maxBodyLength>-1&&0===e.maxRedirects){const t=e.maxBodyLength;let r=0;n=u.pipeline([f,new u.Transform({transform(n,o,s){if(r+=n.length,r>t)return s(new rn("Request body larger than maxBodyLength limit",rn.ERR_BAD_REQUEST,e,R));s(null,n)}})],$r.noop),n.on("error",(e=>{R.destroyed||R.destroy(e)}))}n.pipe(R)}else f&&R.write(f),R.end()},new Promise(((e,r)=>{let n,o;const s=(e,t)=>{o||(o=!0,n&&n(e,t))},i=e=>{s(e,!0),r(e)};t((t=>{s(t),e(t)}),i,(e=>n=e)).catch(i)}));var t},us=An.hasStandardBrowserEnv?((e,t)=>r=>(r=new URL(r,An.origin),e.protocol===r.protocol&&e.host===r.host&&(t||e.port===r.port)))(new URL(An.origin),An.navigator&&/(msie|trident)/i.test(An.navigator.userAgent)):()=>!0,ls=An.hasStandardBrowserEnv?{write(e,t,r,n,o,s,i){if("undefined"==typeof document)return;const a=[`${e}=${encodeURIComponent(t)}`];$r.isNumber(r)&&a.push(`expires=${new Date(r).toUTCString()}`),$r.isString(n)&&a.push(`path=${n}`),$r.isString(o)&&a.push(`domain=${o}`),!0===s&&a.push("secure"),$r.isString(i)&&a.push(`SameSite=${i}`),document.cookie=a.join("; ")},read(e){if("undefined"==typeof document)return null;const t=document.cookie.split(";");for(let r=0;r<t.length;r++){const n=t[r].replace(/^\s+/,""),o=n.indexOf("=");if(-1!==o&&n.slice(0,o)===e)return decodeURIComponent(n.slice(o+1))}return null},remove(e){this.write(e,"",Date.now()-864e5,"/")}}:{write(){},read:()=>null,remove(){}},fs=e=>e instanceof en?{...e}:e;function ps(e,t){t=t||{};const r=Object.create(null);function n(e,t,r,n){return $r.isPlainObject(e)&&$r.isPlainObject(t)?$r.merge.call({caseless:n},e,t):$r.isPlainObject(t)?$r.merge({},t):$r.isArray(t)?t.slice():t}function o(e,t,r,o){return $r.isUndefined(t)?$r.isUndefined(e)?void 0:n(void 0,e,0,o):n(e,t,0,o)}function s(e,t){if(!$r.isUndefined(t))return n(void 0,t)}function i(e,t){return $r.isUndefined(t)?$r.isUndefined(e)?void 0:n(void 0,e):n(void 0,t)}function a(r,o,s){return $r.hasOwnProp(t,s)?n(r,o):$r.hasOwnProp(e,s)?n(void 0,r):void 0}Object.defineProperty(r,"hasOwnProperty",{__proto__:null,value:Object.prototype.hasOwnProperty,enumerable:!1,writable:!0,configurable:!0});const c={url:s,method:s,data:s,baseURL:i,transformRequest:i,transformResponse:i,paramsSerializer:i,timeout:i,timeoutMessage:i,withCredentials:i,withXSRFToken:i,adapter:i,responseType:i,xsrfCookieName:i,xsrfHeaderName:i,onUploadProgress:i,onDownloadProgress:i,decompress:i,maxContentLength:i,maxBodyLength:i,beforeRedirect:i,transport:i,httpAgent:i,httpsAgent:i,cancelToken:i,socketPath:i,allowedSocketPaths:i,responseEncoding:i,validateStatus:a,headers:(e,t,r)=>o(fs(e),fs(t),0,!0)};return $r.forEach(Object.keys({...e,...t}),(function(n){if("__proto__"===n||"constructor"===n||"prototype"===n)return;const s=$r.hasOwnProp(c,n)?c[n]:o,i=s($r.hasOwnProp(e,n)?e[n]:void 0,$r.hasOwnProp(t,n)?t[n]:void 0,n);$r.isUndefined(i)&&s!==a||(r[n]=i)})),r}const ds=["content-type","content-length"];function hs(e){const t=ps({},e),r=e=>$r.hasOwnProp(t,e)?t[e]:void 0,n=r("data");let o=r("withXSRFToken");const s=r("xsrfHeaderName"),i=r("xsrfCookieName");let a=r("headers");const c=r("auth"),u=r("baseURL"),l=r("allowAbsoluteUrls"),f=r("url");var p;if(t.headers=a=en.from(a),t.url=dn(Dn(u,f,l),r("params"),r("paramsSerializer")),c&&a.set("Authorization","Basic "+btoa((c.username||"")+":"+(c.password?(p=c.password,encodeURIComponent(p).replace(/%([0-9A-F]{2})/gi,((e,t)=>String.fromCharCode(parseInt(t,16))))):""))),$r.isFormData(n)&&(An.hasStandardBrowserEnv||An.hasStandardBrowserWebWorkerEnv||$r.isReactNative(n)?a.setContentType(void 0):$r.isFunction(n.getHeaders)&&function(e,t,r){"content-only"===r?Object.entries(t).forEach((([t,r])=>{ds.includes(t.toLowerCase())&&e.set(t,r)})):e.set(t)}(a,n.getHeaders(),r("formDataHeaderPolicy"))),An.hasStandardBrowserEnv){$r.isFunction(o)&&(o=o(t));if(!0===o||null==o&&us(t.url)){const e=s&&i&&ls.read(i);e&&a.set(s,e)}}return t}const ms="undefined"!=typeof XMLHttpRequest&&function(e){return new Promise((function(t,r){const n=hs(e);let o=n.data;const s=en.from(n.headers).normalize();let i,a,c,u,l,{responseType:f,onUploadProgress:p,onDownloadProgress:d}=n;function h(){u&&u(),l&&l(),n.cancelToken&&n.cancelToken.unsubscribe(i),n.signal&&n.signal.removeEventListener("abort",i)}let m=new XMLHttpRequest;function y(){if(!m)return;const n=en.from("getAllResponseHeaders"in m&&m.getAllResponseHeaders());Pn((function(e){t(e),h()}),(function(e){r(e),h()}),{data:f&&"text"!==f&&"json"!==f?m.response:m.responseText,status:m.status,statusText:m.statusText,headers:n,config:e,request:m}),m=null}m.open(n.method.toUpperCase(),n.url,!0),m.timeout=n.timeout,"onloadend"in m?m.onloadend=y:m.onreadystatechange=function(){m&&4===m.readyState&&(0!==m.status||m.responseURL&&m.responseURL.startsWith("file:"))&&setTimeout(y)},m.onabort=function(){m&&(r(new rn("Request aborted",rn.ECONNABORTED,e,m)),h(),m=null)},m.onerror=function(t){const n=t&&t.message?t.message:"Network Error",o=new rn(n,rn.ERR_NETWORK,e,m);o.event=t||null,r(o),h(),m=null},m.ontimeout=function(){let t=n.timeout?"timeout of "+n.timeout+"ms exceeded":"timeout exceeded";const o=n.transitional||mn;n.timeoutErrorMessage&&(t=n.timeoutErrorMessage),r(new rn(t,o.clarifyTimeoutError?rn.ETIMEDOUT:rn.ECONNABORTED,e,m)),h(),m=null},void 0===o&&s.setContentType(null),"setRequestHeader"in m&&$r.forEach(Kr(s),(function(e,t){m.setRequestHeader(t,e)})),$r.isUndefined(n.withCredentials)||(m.withCredentials=!!n.withCredentials),f&&"json"!==f&&(m.responseType=n.responseType),d&&([c,l]=Po(d,!0),m.addEventListener("progress",c)),p&&m.upload&&([a,u]=Po(p),m.upload.addEventListener("progress",a),m.upload.addEventListener("loadend",u)),(n.cancelToken||n.signal)&&(i=t=>{m&&(r(!t||t.type?new Ln(null,e,m):t),m.abort(),h(),m=null)},n.cancelToken&&n.cancelToken.subscribe(i),n.signal&&(n.signal.aborted?i():n.signal.addEventListener("abort",i)));const g=fo(n.url);!g||An.protocols.includes(g)?m.send(o||null):r(new rn("Unsupported protocol "+g+":",rn.ERR_BAD_REQUEST,e))}))},ys=(e,t)=>{if(e=e?e.filter(Boolean):[],!t&&!e.length)return;const r=new AbortController;let n=!1;const o=function(e){if(!n){n=!0,i();const t=e instanceof Error?e:this.reason;r.abort(t instanceof rn?t:new Ln(t instanceof Error?t.message:t))}};let s=t&&setTimeout((()=>{s=null,o(new rn(`timeout of ${t}ms exceeded`,rn.ETIMEDOUT))}),t);const i=()=>{e&&(s&&clearTimeout(s),s=null,e.forEach((e=>{e.unsubscribe?e.unsubscribe(o):e.removeEventListener("abort",o)})),e=null)};e.forEach((e=>e.addEventListener("abort",o)));const{signal:a}=r;return a.unsubscribe=()=>$r.asap(i),a},gs=function*(e,t){let r=e.byteLength;if(r<t)return void(yield e);let n,o=0;for(;o<r;)n=o+t,yield e.slice(o,n),o=n},bs=async function*(e){if(e[Symbol.asyncIterator])return void(yield*e);const t=e.getReader();try{for(;;){const{done:e,value:r}=await t.read();if(e)break;yield r}}finally{await t.cancel()}},Es=(e,t,r,n)=>{const o=async function*(e,t){for await(const r of bs(e))yield*gs(r,t)}(e,t);let s,i=0,a=e=>{s||(s=!0,n&&n(e))};return new ReadableStream({async pull(e){try{const{done:t,value:n}=await o.next();if(t)return a(),void e.close();let s=n.byteLength;if(r){let e=i+=s;r(e)}e.enqueue(new Uint8Array(n))}catch(e){throw a(e),e}},cancel:e=>(a(e),o.return())},{highWaterMark:2})},{isFunction:_s}=$r,ws=e=>{if(!$r.isString(e))return e;try{return decodeURIComponent(e)}catch(t){return e}},Rs=(e,...t)=>{try{return!!e(...t)}catch(e){return!1}},Os=e=>{const t=void 0!==$r.global&&null!==$r.global?$r.global:globalThis,{ReadableStream:r,TextEncoder:n}=t;e=$r.merge.call({skipUndefined:!0},{Request:t.Request,Response:t.Response},e);const{fetch:o,Request:s,Response:i}=e,a=o?_s(o):"function"==typeof fetch,c=_s(s),u=_s(i);if(!a)return!1;const l=a&&_s(r),f=a&&("function"==typeof n?(p=new n,e=>p.encode(e)):async e=>new Uint8Array(await new s(e).arrayBuffer()));var p;const d=c&&l&&Rs((()=>{let e=!1;const t=new s(An.origin,{body:new r,method:"POST",get duplex(){return e=!0,"half"}}),n=t.headers.has("Content-Type");return null!=t.body&&t.body.cancel(),e&&!n})),h=u&&l&&Rs((()=>$r.isReadableStream(new i("").body))),m={stream:h&&(e=>e.body)};a&&["text","arrayBuffer","blob","formData","stream"].forEach((e=>{!m[e]&&(m[e]=(t,r)=>{let n=t&&t[e];if(n)return n.call(t);throw new rn(`Response type '${e}' is not supported`,rn.ERR_NOT_SUPPORT,r)})}));const y=async(e,t)=>{const r=$r.toFiniteNumber(e.getContentLength());return null==r?(async e=>{if(null==e)return 0;if($r.isBlob(e))return e.size;if($r.isSpecCompliantForm(e)){const t=new s(An.origin,{method:"POST",body:e});return(await t.arrayBuffer()).byteLength}return $r.isArrayBufferView(e)||$r.isArrayBuffer(e)?e.byteLength:($r.isURLSearchParams(e)&&(e+=""),$r.isString(e)?(await f(e)).byteLength:void 0)})(t):r};return async e=>{let{url:t,method:r,data:a,signal:u,cancelToken:l,timeout:f,onDownloadProgress:p,onUploadProgress:g,responseType:b,headers:E,withCredentials:_="same-origin",fetchOptions:w,maxContentLength:R,maxBodyLength:O}=hs(e);const v=$r.isNumber(R)&&R>-1,C=$r.isNumber(O)&&O>-1;let A=o||fetch;b=b?(b+"").toLowerCase():"text";let x=ys([u,l&&l.toAbortSignal()],f),S=null;const T=x&&x.unsubscribe&&(()=>{x.unsubscribe()});let j;try{let o;const u=(L="auth",$r.hasOwnProp(e,L)?e[L]:void 0);if(u){const e=u.username||"";o={username:e,password:u.password||""}}if((e=>{const t=e.indexOf("://");let r=e;return-1!==t&&(r=r.slice(t+3)),r.includes("@")||r.includes(":")})(t)){const e=new URL(t,An.origin);if(!o&&(e.username||e.password)){const t=ws(e.username);o={username:t,password:ws(e.password)}}(e.username||e.password)&&(e.username="",e.password="",t=e.href)}if(o&&(E.delete("authorization"),E.set("Authorization","Basic "+btoa((N=(o.username||"")+":"+(o.password||""),encodeURIComponent(N).replace(/%([0-9A-F]{2})/gi,((e,t)=>String.fromCharCode(parseInt(t,16)))))))),v&&"string"==typeof t&&t.startsWith("data:")){if(Uo(t)>R)throw new rn("maxContentLength size of "+R+" exceeded",rn.ERR_BAD_RESPONSE,e,S)}if(C&&"get"!==r&&"head"!==r){const t=await y(E,a);if("number"==typeof t&&isFinite(t)&&t>O)throw new rn("Request body larger than maxBodyLength limit",rn.ERR_BAD_REQUEST,e,S)}if(g&&d&&"get"!==r&&"head"!==r&&0!==(j=await y(E,a))){let e,r=new s(t,{method:"POST",body:a,duplex:"half"});if($r.isFormData(a)&&(e=r.headers.get("content-type"))&&E.setContentType(e),r.body){const[e,t]=Do(j,Po(Fo(g)));a=Es(r.body,65536,e,t)}}$r.isString(_)||(_=_?"include":"omit");const l=c&&"credentials"in s.prototype;if($r.isFormData(a)){const e=E.getContentType();e&&/^multipart\/form-data/i.test(e)&&!/boundary=/i.test(e)&&E.delete("content-type")}E.set("User-Agent","axios/"+lo,!1);const f={...w,signal:x,method:r.toUpperCase(),headers:Kr(E.normalize()),body:a,duplex:"half",credentials:l?_:void 0};S=c&&new s(t,f);let P=await(c?A(S,w):A(t,f));if(v){const t=$r.toFiniteNumber(P.headers.get("content-length"));if(null!=t&&t>R)throw new rn("maxContentLength size of "+R+" exceeded",rn.ERR_BAD_RESPONSE,e,S)}const D=h&&("stream"===b||"response"===b);if(h&&P.body&&(p||v||D&&T)){const t={};["status","statusText","headers"].forEach((e=>{t[e]=P[e]}));const r=$r.toFiniteNumber(P.headers.get("content-length")),[n,o]=p&&Do(r,Po(Fo(p),!0))||[];let s=0;const a=t=>{if(v&&(s=t,s>R))throw new rn("maxContentLength size of "+R+" exceeded",rn.ERR_BAD_RESPONSE,e,S);n&&n(t)};P=new i(Es(P.body,65536,a,(()=>{o&&o(),T&&T()})),t)}b=b||"text";let F=await m[$r.findKey(m,b)||"text"](P,e);if(v&&!h&&!D){let t;if(null!=F&&("number"==typeof F.byteLength?t=F.byteLength:"number"==typeof F.size?t=F.size:"string"==typeof F&&(t="function"==typeof n?(new n).encode(F).byteLength:F.length)),"number"==typeof t&&t>R)throw new rn("maxContentLength size of "+R+" exceeded",rn.ERR_BAD_RESPONSE,e,S)}return!D&&T&&T(),await new Promise(((t,r)=>{Pn(t,r,{data:F,headers:en.from(P.headers),status:P.status,statusText:P.statusText,config:e,request:S})}))}catch(t){if(T&&T(),x&&x.aborted&&x.reason instanceof rn){const r=x.reason;throw r.config=e,S&&(r.request=S),t!==r&&(r.cause=t),r}if(t&&"TypeError"===t.name&&/Load failed|fetch/i.test(t.message))throw Object.assign(new rn("Network Error",rn.ERR_NETWORK,e,S,t&&t.response),{cause:t.cause||t});throw rn.from(t,t&&t.code,e,S,t&&t.response)}var N,L}},vs=new Map,Cs=e=>{let t=e&&e.env||{};const{fetch:r,Request:n,Response:o}=t,s=[n,o,r];let i,a,c=s.length,u=vs;for(;c--;)i=s[c],a=u.get(i),void 0===a&&u.set(i,a=c?new Map:Os(t)),u=a;return a};Cs();const As={http:cs,xhr:ms,fetch:{get:Cs}};$r.forEach(As,((e,t)=>{if(e){try{Object.defineProperty(e,"name",{__proto__:null,value:t})}catch(e){}Object.defineProperty(e,"adapterName",{__proto__:null,value:t})}}));const xs=e=>`- ${e}`,Ss=e=>$r.isFunction(e)||null===e||!1===e;const Ts={getAdapter:function(e,t){e=$r.isArray(e)?e:[e];const{length:r}=e;let n,o;const s={};for(let i=0;i<r;i++){let r;if(n=e[i],o=n,!Ss(n)&&(o=As[(r=String(n)).toLowerCase()],void 0===o))throw new rn(`Unknown adapter '${r}'`);if(o&&($r.isFunction(o)||(o=o.get(t))))break;s[r||"#"+i]=o}if(!o){const e=Object.entries(s).map((([e,t])=>`adapter ${e} `+(!1===t?"is not supported by the environment":"is not available in the build")));let t=r?e.length>1?"since :\n"+e.map(xs).join("\n"):" "+xs(e[0]):"as no adapter specified";throw new rn("There is no suitable adapter to dispatch the request "+t,"ERR_NOT_SUPPORT")}return o},adapters:As};function js(e){if(e.cancelToken&&e.cancelToken.throwIfRequested(),e.signal&&e.signal.aborted)throw new Ln(null,e)}function Ns(e){js(e),e.headers=en.from(e.headers),e.data=jn.call(e,e.transformRequest),-1!==["post","put","patch"].indexOf(e.method)&&e.headers.setContentType("application/x-www-form-urlencoded",!1);return Ts.getAdapter(e.adapter||Tn.adapter,e)(e).then((function(t){js(e),e.response=t;try{t.data=jn.call(e,e.transformResponse,t)}finally{delete e.response}return t.headers=en.from(t.headers),t}),(function(t){if(!Nn(t)&&(js(e),t&&t.response)){e.response=t.response;try{t.response.data=jn.call(e,e.transformResponse,t.response)}finally{delete e.response}t.response.headers=en.from(t.response.headers)}return Promise.reject(t)}))}const Ls={};["object","boolean","number","function","string","symbol"].forEach(((e,t)=>{Ls[e]=function(r){return typeof r===e||"a"+(t<1?"n ":" ")+e}}));const Ps={};Ls.transitional=function(e,t,r){function n(e,t){return"[Axios v"+lo+"] Transitional option '"+e+"'"+t+(r?". "+r:"")}return(r,o,s)=>{if(!1===e)throw new rn(n(o," has been removed"+(t?" in "+t:"")),rn.ERR_DEPRECATED);return t&&!Ps[o]&&(Ps[o]=!0,console.warn(n(o," has been deprecated since v"+t+" and will be removed in the near future"))),!e||e(r,o,s)}},Ls.spelling=function(e){return(t,r)=>(console.warn(`${r} is likely a misspelling of ${e}`),!0)};const Ds={assertOptions:function(e,t,r){if("object"!=typeof e)throw new rn("options must be an object",rn.ERR_BAD_OPTION_VALUE);const n=Object.keys(e);let o=n.length;for(;o-- >0;){const s=n[o],i=Object.prototype.hasOwnProperty.call(t,s)?t[s]:void 0;if(i){const t=e[s],r=void 0===t||i(t,s,e);if(!0!==r)throw new rn("option "+s+" must be "+r,rn.ERR_BAD_OPTION_VALUE)}else if(!0!==r)throw new rn("Unknown option "+s,rn.ERR_BAD_OPTION)}},validators:Ls},Fs=Ds.validators;let Us=class{constructor(e){this.defaults=e||{},this.interceptors={request:new hn,response:new hn}}async request(e,t){try{return await this._request(e,t)}catch(e){if(e instanceof Error){let t={};Error.captureStackTrace?Error.captureStackTrace(t):t=new Error;const r=(()=>{if(!t.stack)return"";const e=t.stack.indexOf("\n");return-1===e?"":t.stack.slice(e+1)})();try{if(e.stack){if(r){const t=r.indexOf("\n"),n=-1===t?-1:r.indexOf("\n",t+1),o=-1===n?"":r.slice(n+1);String(e.stack).endsWith(o)||(e.stack+="\n"+r)}}else e.stack=r}catch(e){}}throw e}}_request(e,t){"string"==typeof e?(t=t||{}).url=e:t=e||{},t=ps(this.defaults,t);const{transitional:r,paramsSerializer:n,headers:o}=t;void 0!==r&&Ds.assertOptions(r,{silentJSONParsing:Fs.transitional(Fs.boolean),forcedJSONParsing:Fs.transitional(Fs.boolean),clarifyTimeoutError:Fs.transitional(Fs.boolean),legacyInterceptorReqResOrdering:Fs.transitional(Fs.boolean),advertiseZstdAcceptEncoding:Fs.transitional(Fs.boolean)},!1),null!=n&&($r.isFunction(n)?t.paramsSerializer={serialize:n}:Ds.assertOptions(n,{encode:Fs.function,serialize:Fs.function},!0)),void 0!==t.allowAbsoluteUrls||(void 0!==this.defaults.allowAbsoluteUrls?t.allowAbsoluteUrls=this.defaults.allowAbsoluteUrls:t.allowAbsoluteUrls=!0),Ds.assertOptions(t,{baseUrl:Fs.spelling("baseURL"),withXsrfToken:Fs.spelling("withXSRFToken")},!0),t.method=(t.method||this.defaults.method||"get").toLowerCase();let s=o&&$r.merge(o.common,o[t.method]);o&&$r.forEach(["delete","get","head","post","put","patch","query","common"],(e=>{delete o[e]})),t.headers=en.concat(s,o);const i=[];let a=!0;this.interceptors.request.forEach((function(e){if("function"==typeof e.runWhen&&!1===e.runWhen(t))return;a=a&&e.synchronous;const r=t.transitional||mn;r&&r.legacyInterceptorReqResOrdering?i.unshift(e.fulfilled,e.rejected):i.push(e.fulfilled,e.rejected)}));const c=[];let u;this.interceptors.response.forEach((function(e){c.push(e.fulfilled,e.rejected)}));let l,f=0;if(!a){const e=[Ns.bind(this),void 0];for(e.unshift(...i),e.push(...c),l=e.length,u=Promise.resolve(t);f<l;)u=u.then(e[f++],e[f++]);return u}l=i.length;let p=t;for(;f<l;){const e=i[f++],t=i[f++];try{p=e(p)}catch(e){t.call(this,e);break}}try{u=Ns.call(this,p)}catch(e){return Promise.reject(e)}for(f=0,l=c.length;f<l;)u=u.then(c[f++],c[f++]);return u}getUri(e){return dn(Dn((e=ps(this.defaults,e)).baseURL,e.url,e.allowAbsoluteUrls),e.params,e.paramsSerializer)}};$r.forEach(["delete","get","head","options"],(function(e){Us.prototype[e]=function(t,r){return this.request(ps(r||{},{method:e,url:t,data:(r||{}).data}))}})),$r.forEach(["post","put","patch","query"],(function(e){function t(t){return function(r,n,o){return this.request(ps(o||{},{method:e,headers:t?{"Content-Type":"multipart/form-data"}:{},url:r,data:n}))}}Us.prototype[e]=t(),"query"!==e&&(Us.prototype[e+"Form"]=t(!0))}));const Is={Continue:100,SwitchingProtocols:101,Processing:102,EarlyHints:103,Ok:200,Created:201,Accepted:202,NonAuthoritativeInformation:203,NoContent:204,ResetContent:205,PartialContent:206,MultiStatus:207,AlreadyReported:208,ImUsed:226,MultipleChoices:300,MovedPermanently:301,Found:302,SeeOther:303,NotModified:304,UseProxy:305,Unused:306,TemporaryRedirect:307,PermanentRedirect:308,BadRequest:400,Unauthorized:401,PaymentRequired:402,Forbidden:403,NotFound:404,MethodNotAllowed:405,NotAcceptable:406,ProxyAuthenticationRequired:407,RequestTimeout:408,Conflict:409,Gone:410,LengthRequired:411,PreconditionFailed:412,PayloadTooLarge:413,UriTooLong:414,UnsupportedMediaType:415,RangeNotSatisfiable:416,ExpectationFailed:417,ImATeapot:418,MisdirectedRequest:421,UnprocessableEntity:422,Locked:423,FailedDependency:424,TooEarly:425,UpgradeRequired:426,PreconditionRequired:428,TooManyRequests:429,RequestHeaderFieldsTooLarge:431,UnavailableForLegalReasons:451,InternalServerError:500,NotImplemented:501,BadGateway:502,ServiceUnavailable:503,GatewayTimeout:504,HttpVersionNotSupported:505,VariantAlsoNegotiates:506,InsufficientStorage:507,LoopDetected:508,NotExtended:510,NetworkAuthenticationRequired:511,WebServerIsDown:521,ConnectionTimedOut:522,OriginIsUnreachable:523,TimeoutOccurred:524,SslHandshakeFailed:525,InvalidSslCertificate:526};Object.entries(Is).forEach((([e,t])=>{Is[t]=e}));const Bs=function e(t){const r=new Us(t),n=Qt(Us.prototype.request,r);return $r.extend(n,Us.prototype,r,{allOwnKeys:!0}),$r.extend(n,r,null,{allOwnKeys:!0}),n.create=function(r){return e(ps(t,r))},n}(Tn);Bs.Axios=Us,Bs.CanceledError=Ln,Bs.CancelToken=class e{constructor(e){if("function"!=typeof e)throw new TypeError("executor must be a function.");let t;this.promise=new Promise((function(e){t=e}));const r=this;this.promise.then((e=>{if(!r._listeners)return;let t=r._listeners.length;for(;t-- >0;)r._listeners[t](e);r._listeners=null})),this.promise.then=e=>{let t;const n=new Promise((e=>{r.subscribe(e),t=e})).then(e);return n.cancel=function(){r.unsubscribe(t)},n},e((function(e,n,o){r.reason||(r.reason=new Ln(e,n,o),t(r.reason))}))}throwIfRequested(){if(this.reason)throw this.reason}subscribe(e){this.reason?e(this.reason):this._listeners?this._listeners.push(e):this._listeners=[e]}unsubscribe(e){if(!this._listeners)return;const t=this._listeners.indexOf(e);-1!==t&&this._listeners.splice(t,1)}toAbortSignal(){const e=new AbortController,t=t=>{e.abort(t)};return this.subscribe(t),e.signal.unsubscribe=()=>this.unsubscribe(t),e.signal}static source(){let t;return{token:new e((function(e){t=e})),cancel:t}}},Bs.isCancel=Nn,Bs.VERSION=lo,Bs.toFormData=cn,Bs.AxiosError=rn,Bs.Cancel=Bs.CanceledError,Bs.all=function(e){return Promise.all(e)},Bs.spread=function(e){return function(t){return e.apply(null,t)}},Bs.isAxiosError=function(e){return $r.isObject(e)&&!0===e.isAxiosError},Bs.mergeConfig=ps,Bs.AxiosHeaders=en,Bs.formToJSON=e=>xn($r.isHTMLForm(e)?new FormData(e):e),Bs.getAdapter=Ts.getAdapter,Bs.HttpStatusCode=Is,Bs.default=Bs;const{Axios:ks,AxiosError:qs,CanceledError:Ms,isCancel:zs,CancelToken:Hs,VERSION:$s,all:Ws,Cancel:Gs,isAxiosError:Vs,spread:Js,toFormData:Ks,AxiosHeaders:Xs,HttpStatusCode:Zs,formToJSON:Qs,getAdapter:Ys,mergeConfig:ei,create:ti}=Bs;function ri(e){let t,r=e[0],n=1;for(;n<e.length;){const o=e[n],s=e[n+1];if(n+=2,("optionalAccess"===o||"optionalCall"===o)&&null==r)return;"access"===o||"optionalAccess"===o?(t=r,r=s(r)):"call"!==o&&"optionalCall"!==o||(r=s(((...e)=>r.call(t,...e))),t=void 0)}return r}function ni(){return function(e={}){const{isSuccess:t=e=>0===e,getCode:r=e=>ri([e,"access",e=>e.data,"optionalAccess",e=>e.code]),getMessage:n=e=>ri([e,"access",e=>e.data,"optionalAccess",e=>e.message])||ri([e,"access",e=>e.data,"optionalAccess",e=>e.msg]),getData:o=e=>ri([e,"access",e=>e.data,"optionalAccess",e=>e.data]),throwOnError:s=!0,onError:i}=e;return{name:"response-validator",onResponse:e=>{const a=r(e);if(void 0===a)return e;if(t(a))return o(e);const c=n(e)||"Request failed";if(i&&!1===i(a,c,e))return e;if(s)throw new Zt(c,{status:e.status,code:a,config:e.config,response:e,data:e.data});return e}}}({isSuccess:e=>0===e,getCode:e=>ri([e,"access",e=>e.data,"optionalAccess",e=>e.code]),getMessage:e=>ri([e,"access",e=>e.data,"optionalAccess",e=>e.message])||ri([e,"access",e=>e.data,"optionalAccess",e=>e.msg]),getData:e=>e.data})}function oi(e){let t,r=e[0],n=1;for(;n<e.length;){const o=e[n],s=e[n+1];if(n+=2,("optionalAccess"===o||"optionalCall"===o)&&null==r)return;"access"===o||"optionalAccess"===o?(t=r,r=s(r)):"call"!==o&&"optionalCall"!==o||(r=s(((...e)=>r.call(t,...e))),t=void 0)}return r}const si={"/api/marketplace/trade/benefit/user/extra/create":{fields:["extra_benefit.item_info.start_at","extra_benefit.item_info.end_at"]},"/api/memory/volcano_database/list_instance":{fields:["page_num","page_size"]},"/api/memory/volcano_database/list_database":{fields:["page_num","page_size"]},"/api/memory/volcano_database/list_table":{fields:["page_num","page_size"]}};function ii(e){const{config:t}=e;return{name:"i64-transform",onRequest:e=>{const r=function(e,t){return r=t[e],n=()=>null,null!=r?r:n();var r,n}(e.url||"",t);return r?(e.data&&(e.data=function(e,t){if(null==e)return e;const r=Vt(e);for(const e of t){const t=tt(r,e);if("string"==typeof t){const n=Number(t);Number.isInteger(n)&&Kt(r,e,n)}else Array.isArray(t)&&Kt(r,e,t.map((e=>{if("string"==typeof e){const t=Number(e);if(Number.isInteger(t))return t}return e})))}return r}(e.data,r.fields)),e):e}}}function ai(e={}){const t=Bs.create({baseURL:e.baseURL,timeout:e.timeout,headers:e.headers,...e.axiosConfig}),r=[];return!1!==e.useDefaultPlugins&&r.push(function(e={}){const{xRequestedWith:t="XMLHttpRequest",autoContentTypeMethods:r=["post","get"],contentType:n="application/json",setEmptyDataForContentType:o=!0}=e;return{name:"request-headers",onRequest:e=>{const s=(t,r)=>{"function"==typeof oi([e,"access",e=>e.headers,"optionalAccess",e=>e.set])?e.headers.set(t,r):e.headers&&(e.headers[t]=r)};!1!==t&&s("x-requested-with",t);const i=oi([e,"access",e=>e.method,"optionalAccess",e=>e.toLowerCase,"call",e=>e()])||"get";var a;return r.includes(i)&&(a="content-type",!("function"==typeof oi([e,"access",e=>e.headers,"optionalAccess",e=>e.get])?e.headers.get(a):oi([e,"access",e=>e.headers,"optionalAccess",e=>e[a]])))&&(s("content-type",n),o&&!e.data&&(e.data={})),e}}}(),ii({config:si}),ni(),function(e={}){const t=new Set(e.interceptors||[]),r={name:"interceptor-chain",onResponse:e=>{let r=e;for(const e of t)r=e(r);return r}};return{plugin:r,add:e=>(t.add(e),()=>{t.delete(e)}),remove:e=>{t.delete(e)},clear:()=>{t.clear()},size:()=>t.size}}().plugin),e.plugins&&e.plugins.length>0&&r.push(...e.plugins),r.forEach((e=>{e.onRequest&&t.interceptors.request.use(e.onRequest,e.onError),(e.onResponse||e.onError)&&t.interceptors.response.use(e.onResponse,e.onError)})),t}const ci=ai({baseURL:"/",headers:{"Agw-Js-Conv":"str"}}),ui=ci;function li(e){let t,r=e[0],n=1;for(;n<e.length;){const o=e[n],s=e[n+1];if(n+=2,("optionalAccess"===o||"optionalCall"===o)&&null==r)return;"access"===o||"optionalAccess"===o?(t=r,r=s(r)):"call"!==o&&"optionalCall"!==o||(r=s(((...e)=>r.call(t,...e))),t=void 0)}return r}const fi={E1000:"INVALID_ARGUMENT",E1001:"MISSING_PROJECT_ID",E1002:"MISSING_MESSAGE",E1003:"MISSING_SPACE_ID",E1004:"INVALID_DOMAIN",E1005:"INVALID_PROJECT_TYPE",E1006:"UNSUPPORTED_PROJECT_TYPE",E1007:"DB_SQL_DANGEROUS",E1008:"MISSING_IMPORT_SOURCE",E1009:"MISSING_REPO",E1010:"MISSING_FILE",E1011:"INVALID_FILE_FORMAT",E1012:"FILE_TOO_LARGE",E1013:"MISSING_REPO_NAME",E1014:"MISSING_REPO_CREATION_NAME",E1015:"INVALID_PROVIDER",E1100:"UNKNOWN_OPTION",E1101:"UNKNOWN_COMMAND",E1102:"MISSING_ARGUMENT",E1103:"MISSING_OPTION",E2001:"AUTH_FAILED",E2002:"MINIPROGRAM_NOT_AUTHORIZED",E2003:"PERMISSION_DENIED",E2004:"GIT_NOT_AUTHORIZED",E2005:"OAUTH_TIMEOUT",E2006:"OAUTH_CANCELLED",E2007:"NOT_AUTHORIZED",E3000:"RESOURCE_NOT_FOUND",E3001:"PROJECT_NOT_FOUND",E3002:"SKILL_NOT_FOUND",E3003:"SECRET_NOT_FOUND",E3004:"SKILL_NOT_INSTALLED",E3005:"DELETE_FAILED",E3006:"NO_DEPLOYMENT_HISTORY",E3007:"MISSING_COMMIT_HASH",E3008:"SKILL_PROJECT_NOT_SUPPORTED",E3009:"CONFLICT",E3010:"DB_NOT_FOUND",E3011:"DB_CREATING",E3012:"DB_RESTORE_WINDOW_EXCEEDED",E3013:"DB_RESTORE_IN_PROGRESS",E3014:"REPO_NOT_BOUND",E3015:"REPO_NOT_EMPTY",E3016:"REPO_ALREADY_BOUND",E3017:"NOTHING_TO_PUSH",E3018:"REMOTE_HAS_UPDATES",E3019:"MERGE_CONFLICT",E3020:"WOULD_OVERWRITE",E4001:"QUOTA_EXCEEDED",E4002:"DB_QUOTA_EXCEEDED",E5000:"UNEXPECTED_ERROR",E5001:"NETWORK_ERROR",E5002:"SERVER_ERROR",E5003:"TIMEOUT",E5004:"DB_SQL_EXECUTION_FAILED",E5005:"DB_CONNECTION_FAILED",E5006:"DB_GEN_TYPES_FAILED",E5007:"DB_DUMP_FAILED"};function pi(e,t){return null!=e?e:t()}function di(e){let t,r=e[0],n=1;for(;n<e.length;){const o=e[n],s=e[n+1];if(n+=2,("optionalAccess"===o||"optionalCall"===o)&&null==r)return;"access"===o||"optionalAccess"===o?(t=r,r=s(r)):"call"!==o&&"optionalCall"!==o||(r=s(((...e)=>r.call(t,...e))),t=void 0)}return r}exports.ExitCode=void 0,function(e){e[e.SUCCESS=0]="SUCCESS";e[e.FAILURE=1]="FAILURE";e[e.AUTH_ERROR=2]="AUTH_ERROR";e[e.INPUT_ERROR=4]="INPUT_ERROR"}(exports.ExitCode||(exports.ExitCode={}));class hi extends Error{constructor(e,t,r,n){const o=pi(fi[e],(()=>"UNKNOWN_ERROR")),s=pi(t,(()=>o));super(s),this.name="CozeError",this.code=e,this.errorName=o,this.desc=s,this.details=r,this.trigger=di([n,"optionalAccess",e=>e.trigger]),this.fix=di([n,"optionalAccess",e=>e.fix]),this.example=di([n,"optionalAccess",e=>e.example]),this.isMessageExplicit=void 0!==t,Object.setPrototypeOf(this,hi.prototype)}}class mi{constructor(){mi.prototype.__init.call(this),mi.prototype.__init2.call(this)}__init(){this.headers={}}__init2(){this.scopedHeadersProviders=new Map}setHeaders(e){this.headers=m.merge({},this.headers,e)}getHeaders(){return this.headers}setScopedHeadersProvider(e,t){this.scopedHeadersProviders.set(e,t)}removeScopedHeadersProvider(e){this.scopedHeadersProviders.delete(e)}getRequestHeaders(e,t){const r={};return[...this.scopedHeadersProviders.values()].forEach((n=>{m.merge(r,n(e,t))})),m.merge({},this.headers,function(e){let t,r=e[0],n=1;for(;n<e.length;){const o=e[n],s=e[n+1];if(n+=2,("optionalAccess"===o||"optionalCall"===o)&&null==r)return;"access"===o||"optionalAccess"===o?(t=r,r=s(r)):"call"!==o&&"optionalCall"!==o||(r=s(((...e)=>r.call(t,...e))),t=void 0)}return r}([t,"optionalAccess",e=>e.headers]),r)}resetHeaders(){this.headers={}}setDispatcher(e){this.dispatcher=e}clearDispatcher(){this.dispatcher=void 0}async fetch(e,t){return h.fetch(e,{...t,headers:this.getRequestHeaders(e,t),dispatcher:this.dispatcher})}}const yi=new mi;exports.CozeError=hi,exports.ErrorCode={E1000:"E1000",E1001:"E1001",E1002:"E1002",E1003:"E1003",E1004:"E1004",E1005:"E1005",E1006:"E1006",E1007:"E1007",E1008:"E1008",E1009:"E1009",E1010:"E1010",E1011:"E1011",E1012:"E1012",E1013:"E1013",E1014:"E1014",E1015:"E1015",E1100:"E1100",E1101:"E1101",E1102:"E1102",E1103:"E1103",E2001:"E2001",E2002:"E2002",E2003:"E2003",E2004:"E2004",E2005:"E2005",E2006:"E2006",E2007:"E2007",E3000:"E3000",E3001:"E3001",E3002:"E3002",E3003:"E3003",E3004:"E3004",E3005:"E3005",E3006:"E3006",E3007:"E3007",E3008:"E3008",E3009:"E3009",E3010:"E3010",E3011:"E3011",E3012:"E3012",E3013:"E3013",E3014:"E3014",E3015:"E3015",E3016:"E3016",E3017:"E3017",E3018:"E3018",E3019:"E3019",E3020:"E3020",E4001:"E4001",E4002:"E4002",E5000:"E5000",E5001:"E5001",E5002:"E5002",E5003:"E5003",E5004:"E5004",E5005:"E5005",E5006:"E5006",E5007:"E5007"},exports.ErrorNameByCode=fi,exports.HttpError=Zt,exports.MapCache=$e,exports.Stack=ot,exports.Symbol=E,exports.Uint8Array=jt,exports.arrayLikeKeys=xe,exports.arrayMap=T,exports.arrayPush=rt,exports.assignValue=oe,exports.axiosInstance=ui,exports.axiosInstance$1=ci,exports.baseAssignValue=te,exports.baseGet=et,exports.baseGetAllKeys=ht,exports.baseGetTag=A,exports.baseSet=Jt,exports.castPath=Qe,exports.cloneBuffer=ut,exports.cloneDeep=Vt,exports.cloneTypedArray=Ft,exports.createRequestClient=ai,exports.customFetch=yi,exports.defineProperty=Q,exports.eq=re,exports.exitCodeForError=function(e){const t=Number.parseInt(e.slice(1),10);return t>=1e3&&t<2e3?exports.ExitCode.INPUT_ERROR:t>=2e3&&t<3e3?exports.ExitCode.AUTH_ERROR:exports.ExitCode.FAILURE},exports.get=tt,exports.getAllKeys=mt,exports.getDefaultExportFromCjs=Bn,exports.getPrototype=nt,exports.getSymbols=dt,exports.initCloneObject=It,exports.isArguments=de,exports.isArray=j,exports.isArrayLike=ie,exports.isBuffer=ge,exports.isFunction=F,exports.isHttpError=function(e){return e instanceof Zt},exports.isIndex=ee,exports.isKey=De,exports.isLength=se,exports.isObject=D,exports.isObjectLike=x,exports.isPrototype=ce,exports.isTypedArray=Ce,exports.keys=Ne,exports.request=(e,t)=>ui({...e,...t}),exports.requireSrc=ao,exports.safeJsonParse=function(e,t,r){let n,o;if(2===arguments.length?t&&"object"==typeof t&&("onError"in t||"validate"in t||"throwOnValidationError"in t)?(o=t,n=void 0):(n=t,o=void 0):3===arguments.length&&(n=t,o=r),"object"==typeof e&&null!==e)return e;try{const t=JSON.parse(String(e));if(li([o,"optionalAccess",e=>e.validate])){if(o.validate(t))return t;{const t=new Error("JSON validation failed");if(li([o,"access",e=>e.onError,"optionalCall",r=>r(t,e)]),o.throwOnValidationError)throw t;return n}}return t}catch(t){if(t instanceof Error&&"JSON validation failed"===t.message&&li([o,"optionalAccess",e=>e.throwOnValidationError]))throw t;return li([o,"optionalAccess",e=>e.onError,"optionalCall",r=>r(t,e)]),n}},exports.stubArray=lt,exports.toKey=Ye;
|