@akad/sdk 1.0.1 → 1.0.3

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/base.d.ts CHANGED
@@ -1,4 +1,4 @@
1
- import { AxiosResponse, AxiosError } from 'axios';
1
+ import { AxiosError, AxiosResponse, ResponseType } from 'axios';
2
2
 
3
3
  export type Config = {
4
4
  apiVersion: string;
@@ -14,5 +14,6 @@ export declare const createBase: (config: Config) => {
14
14
  method: string;
15
15
  data: string;
16
16
  contentType?: string;
17
+ responseType?: ResponseType;
17
18
  }) => Promise<T>;
18
19
  };
package/main.d.ts CHANGED
@@ -12,6 +12,7 @@ export default function sdkInitialize(config: Config): {
12
12
  postQuickQuote: (data: import('./quotation/quickQuoteType').quickQuoteType) => Promise<import('./quotation/quickQuoteType').quickQuoteType>;
13
13
  postFullQuote: (data: import('./quotation/fullQuoteType').fullQuoteType) => Promise<import('./quotation/fullQuoteType').fullQuoteType>;
14
14
  postBind: (data: import('./quotation/bindType').bindType) => Promise<import('./quotation/bindType').bindType>;
15
+ getQuotation: (data: import('./quotation/quotationType').quotationType) => Promise<import('./quotation/quotationType').quotationType>;
15
16
  };
16
17
  payment: {
17
18
  postPayment: (data: import('./payment/types').paymentType) => Promise<import('./payment/types').paymentType>;
@@ -28,6 +29,6 @@ export default function sdkInitialize(config: Config): {
28
29
  getCnpjStatus: (cnpj: string) => Promise<import('./plugin/types').CnpjStatus>;
29
30
  };
30
31
  report: {
31
- getCertificateReport: (data: import('./report/types').certificateReportType) => Promise<import('./report/types').certificateReportType>;
32
+ getReportStream: (data: import('./report/types').certificateReportType) => Promise<import('./report/types').certificateReportType>;
32
33
  };
33
34
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@akad/sdk",
3
- "version": "1.0.1",
3
+ "version": "1.0.3",
4
4
  "main": "./ts-lib.umd.cjs",
5
5
  "module": "./ts-lib.js",
6
6
  "exports": {
@@ -2,9 +2,11 @@ import { Config } from '../base';
2
2
  import { bindType } from './bindType';
3
3
  import { fullQuoteType } from './fullQuoteType';
4
4
  import { quickQuoteType } from './quickQuoteType';
5
+ import { quotationType } from './quotationType';
5
6
 
6
7
  export declare const createQuote: (config: Config) => {
7
8
  postQuickQuote: (data: quickQuoteType) => Promise<quickQuoteType>;
8
9
  postFullQuote: (data: fullQuoteType) => Promise<fullQuoteType>;
9
10
  postBind: (data: bindType) => Promise<bindType>;
11
+ getQuotation: (data: quotationType) => Promise<quotationType>;
10
12
  };
@@ -0,0 +1,3 @@
1
+ export interface quotationType {
2
+ policyId: string;
3
+ }
package/report/index.d.ts CHANGED
@@ -2,5 +2,5 @@ import { Config } from '../base';
2
2
  import { certificateReportType } from './types';
3
3
 
4
4
  export declare const createReport: (config: Config) => {
5
- getCertificateReport: (data: certificateReportType) => Promise<certificateReportType>;
5
+ getReportStream: (data: certificateReportType) => Promise<certificateReportType>;
6
6
  };
package/report/types.d.ts CHANGED
@@ -1,3 +1,5 @@
1
1
  export interface certificateReportType {
2
2
  policyId: string;
3
+ documentType: string;
4
+ additionalParams?: object;
3
5
  }
package/ts-lib.js CHANGED
@@ -1,28 +1,28 @@
1
- function Ce(e, t) {
1
+ function xe(e, t) {
2
2
  return function() {
3
3
  return e.apply(t, arguments);
4
4
  };
5
5
  }
6
- const { toString: Ze } = Object.prototype, { getPrototypeOf: ce } = Object, J = /* @__PURE__ */ ((e) => (t) => {
6
+ const { toString: Ze } = Object.prototype, { getPrototypeOf: ce } = Object, V = /* @__PURE__ */ ((e) => (t) => {
7
7
  const n = Ze.call(t);
8
8
  return e[n] || (e[n] = n.slice(8, -1).toLowerCase());
9
- })(/* @__PURE__ */ Object.create(null)), A = (e) => (e = e.toLowerCase(), (t) => J(t) === e), V = (e) => (t) => typeof t === e, { isArray: _ } = Array, q = V("undefined");
9
+ })(/* @__PURE__ */ Object.create(null)), A = (e) => (e = e.toLowerCase(), (t) => V(t) === e), W = (e) => (t) => typeof t === e, { isArray: _ } = Array, q = W("undefined");
10
10
  function Ye(e) {
11
11
  return e !== null && !q(e) && e.constructor !== null && !q(e.constructor) && T(e.constructor.isBuffer) && e.constructor.isBuffer(e);
12
12
  }
13
- const xe = A("ArrayBuffer");
13
+ const Ce = A("ArrayBuffer");
14
14
  function et(e) {
15
15
  let t;
16
- return typeof ArrayBuffer < "u" && ArrayBuffer.isView ? t = ArrayBuffer.isView(e) : t = e && e.buffer && xe(e.buffer), t;
16
+ return typeof ArrayBuffer < "u" && ArrayBuffer.isView ? t = ArrayBuffer.isView(e) : t = e && e.buffer && Ce(e.buffer), t;
17
17
  }
18
- const tt = V("string"), T = V("function"), Fe = V("number"), W = (e) => e !== null && typeof e == "object", nt = (e) => e === !0 || e === !1, $ = (e) => {
19
- if (J(e) !== "object")
18
+ const tt = W("string"), T = W("function"), Fe = W("number"), K = (e) => e !== null && typeof e == "object", nt = (e) => e === !0 || e === !1, H = (e) => {
19
+ if (V(e) !== "object")
20
20
  return !1;
21
21
  const t = ce(e);
22
22
  return (t === null || t === Object.prototype || Object.getPrototypeOf(t) === null) && !(Symbol.toStringTag in e) && !(Symbol.iterator in e);
23
- }, rt = A("Date"), st = A("File"), ot = A("Blob"), it = A("FileList"), at = (e) => W(e) && T(e.pipe), ct = (e) => {
23
+ }, rt = A("Date"), st = A("File"), ot = A("Blob"), it = A("FileList"), at = (e) => K(e) && T(e.pipe), ct = (e) => {
24
24
  let t;
25
- return e && (typeof FormData == "function" && e instanceof FormData || T(e.append) && ((t = J(e)) === "formdata" || // detect form-data instance
25
+ return e && (typeof FormData == "function" && e instanceof FormData || T(e.append) && ((t = V(e)) === "formdata" || // detect form-data instance
26
26
  t === "object" && T(e.toString) && e.toString() === "[object FormData]"));
27
27
  }, ut = A("URLSearchParams"), [lt, ft, dt, pt] = ["ReadableStream", "Request", "Response", "Headers"].map(A), ht = (e) => e.trim ? e.trim() : e.replace(/^[\s\uFEFF\xA0]+|[\s\uFEFF\xA0]+$/g, "");
28
28
  function j(e, t, { allOwnKeys: n = !1 } = {}) {
@@ -52,14 +52,14 @@ const Le = typeof globalThis < "u" ? globalThis : typeof self < "u" ? self : typ
52
52
  function te() {
53
53
  const { caseless: e } = _e(this) && this || {}, t = {}, n = (r, s) => {
54
54
  const o = e && Be(t, s) || s;
55
- $(t[o]) && $(r) ? t[o] = te(t[o], r) : $(r) ? t[o] = te({}, r) : _(r) ? t[o] = r.slice() : t[o] = r;
55
+ H(t[o]) && H(r) ? t[o] = te(t[o], r) : H(r) ? t[o] = te({}, r) : _(r) ? t[o] = r.slice() : t[o] = r;
56
56
  };
57
57
  for (let r = 0, s = arguments.length; r < s; r++)
58
58
  arguments[r] && j(arguments[r], n);
59
59
  return t;
60
60
  }
61
61
  const mt = (e, t, n, { allOwnKeys: r } = {}) => (j(t, (s, o) => {
62
- n && T(s) ? e[o] = Ce(s, n) : e[o] = s;
62
+ n && T(s) ? e[o] = xe(s, n) : e[o] = s;
63
63
  }, { allOwnKeys: r }), e), yt = (e) => (e.charCodeAt(0) === 65279 && (e = e.slice(1)), e), wt = (e, t, n, r) => {
64
64
  e.prototype = Object.create(t.prototype, r), e.prototype.constructor = e, Object.defineProperty(e, "super", {
65
65
  value: t.prototype
@@ -109,13 +109,13 @@ const mt = (e, t, n, { allOwnKeys: r } = {}) => (j(t, (s, o) => {
109
109
  function(n, r, s) {
110
110
  return r.toUpperCase() + s;
111
111
  }
112
- ), he = (({ hasOwnProperty: e }) => (t, n) => e.call(t, n))(Object.prototype), Nt = A("RegExp"), ke = (e, t) => {
112
+ ), he = (({ hasOwnProperty: e }) => (t, n) => e.call(t, n))(Object.prototype), Pt = A("RegExp"), ke = (e, t) => {
113
113
  const n = Object.getOwnPropertyDescriptors(e), r = {};
114
114
  j(n, (s, o) => {
115
115
  let i;
116
116
  (i = t(s, o, e)) !== !1 && (r[o] = i || s);
117
117
  }), Object.defineProperties(e, r);
118
- }, Pt = (e) => {
118
+ }, Nt = (e) => {
119
119
  ke(e, (t, n) => {
120
120
  if (T(e) && ["arguments", "caller", "callee"].indexOf(n) !== -1)
121
121
  return !1;
@@ -130,14 +130,14 @@ const mt = (e, t, n, { allOwnKeys: r } = {}) => (j(t, (s, o) => {
130
130
  });
131
131
  }
132
132
  });
133
- }, Ct = (e, t) => {
133
+ }, xt = (e, t) => {
134
134
  const n = {}, r = (s) => {
135
135
  s.forEach((o) => {
136
136
  n[o] = !0;
137
137
  });
138
138
  };
139
139
  return _(e) ? r(e) : r(String(e).split(t)), n;
140
- }, xt = () => {
140
+ }, Ct = () => {
141
141
  }, Ft = (e, t) => e != null && Number.isFinite(e = +e) ? e : t, v = "abcdefghijklmnopqrstuvwxyz", me = "0123456789", De = {
142
142
  DIGIT: me,
143
143
  ALPHA: v,
@@ -154,7 +154,7 @@ function Lt(e) {
154
154
  }
155
155
  const _t = (e) => {
156
156
  const t = new Array(10), n = (r, s) => {
157
- if (W(r)) {
157
+ if (K(r)) {
158
158
  if (t.indexOf(r) >= 0)
159
159
  return;
160
160
  if (!("toJSON" in r)) {
@@ -169,17 +169,17 @@ const _t = (e) => {
169
169
  return r;
170
170
  };
171
171
  return n(e, 0);
172
- }, kt = A("AsyncFunction"), Dt = (e) => e && (W(e) || T(e)) && T(e.then) && T(e.catch), a = {
172
+ }, kt = A("AsyncFunction"), Dt = (e) => e && (K(e) || T(e)) && T(e.then) && T(e.catch), a = {
173
173
  isArray: _,
174
- isArrayBuffer: xe,
174
+ isArrayBuffer: Ce,
175
175
  isBuffer: Ye,
176
176
  isFormData: ct,
177
177
  isArrayBufferView: et,
178
178
  isString: tt,
179
179
  isNumber: Fe,
180
180
  isBoolean: nt,
181
- isObject: W,
182
- isPlainObject: $,
181
+ isObject: K,
182
+ isPlainObject: H,
183
183
  isReadableStream: lt,
184
184
  isRequest: ft,
185
185
  isResponse: dt,
@@ -188,7 +188,7 @@ const _t = (e) => {
188
188
  isDate: rt,
189
189
  isFile: st,
190
190
  isBlob: ot,
191
- isRegExp: Nt,
191
+ isRegExp: Pt,
192
192
  isFunction: T,
193
193
  isStream: at,
194
194
  isURLSearchParams: ut,
@@ -201,7 +201,7 @@ const _t = (e) => {
201
201
  stripBOM: yt,
202
202
  inherits: wt,
203
203
  toFlatObject: bt,
204
- kindOf: J,
204
+ kindOf: V,
205
205
  kindOfTest: A,
206
206
  endsWith: Et,
207
207
  toArray: St,
@@ -212,10 +212,10 @@ const _t = (e) => {
212
212
  hasOwnProp: he,
213
213
  // an alias to avoid ESLint no-prototype-builtins detection
214
214
  reduceDescriptors: ke,
215
- freezeMethods: Pt,
216
- toObjectSet: Ct,
215
+ freezeMethods: Nt,
216
+ toObjectSet: xt,
217
217
  toCamelCase: At,
218
- noop: xt,
218
+ noop: Ct,
219
219
  toFiniteNumber: Ft,
220
220
  findKey: Be,
221
221
  global: Le,
@@ -295,7 +295,7 @@ function qt(e) {
295
295
  const jt = a.toFlatObject(a, {}, null, function(t) {
296
296
  return /^is[A-Z]/.test(t);
297
297
  });
298
- function K(e, t, n) {
298
+ function G(e, t, n) {
299
299
  if (!a.isObject(e))
300
300
  throw new TypeError("target must be an object");
301
301
  t = t || new FormData(), n = a.toFlatObject(n, {
@@ -342,14 +342,14 @@ function K(e, t, n) {
342
342
  if (!a.isUndefined(p)) {
343
343
  if (d.indexOf(p) !== -1)
344
344
  throw Error("Circular reference detected in " + m.join("."));
345
- d.push(p), a.forEach(p, function(g, N) {
345
+ d.push(p), a.forEach(p, function(g, P) {
346
346
  (!(a.isUndefined(g) || g === null) && s.call(
347
347
  t,
348
348
  g,
349
- a.isString(N) ? N.trim() : N,
349
+ a.isString(P) ? P.trim() : P,
350
350
  m,
351
351
  w
352
- )) === !0 && y(g, m ? m.concat(N) : [N]);
352
+ )) === !0 && y(g, m ? m.concat(P) : [P]);
353
353
  }), d.pop();
354
354
  }
355
355
  }
@@ -372,7 +372,7 @@ function we(e) {
372
372
  });
373
373
  }
374
374
  function ue(e, t) {
375
- this._pairs = [], e && K(e, this, t);
375
+ this._pairs = [], e && G(e, this, t);
376
376
  }
377
377
  const Ie = ue.prototype;
378
378
  Ie.append = function(t, n) {
@@ -478,16 +478,16 @@ self instanceof WorkerGlobalScope && typeof self.importScripts == "function", Wt
478
478
  ...zt
479
479
  };
480
480
  function Gt(e, t) {
481
- return K(e, new O.classes.URLSearchParams(), Object.assign({
481
+ return G(e, new O.classes.URLSearchParams(), Object.assign({
482
482
  visitor: function(n, r, s, o) {
483
483
  return O.isNode && a.isBuffer(n) ? (this.append(r, n.toString("base64")), !1) : o.defaultVisitor.apply(this, arguments);
484
484
  }
485
485
  }, t));
486
486
  }
487
- function vt(e) {
487
+ function Qt(e) {
488
488
  return a.matchAll(/\w+|\[(\w*)]/g, e).map((t) => t[0] === "[]" ? "" : t[1] || t[0]);
489
489
  }
490
- function Qt(e) {
490
+ function vt(e) {
491
491
  const t = {}, n = Object.keys(e);
492
492
  let r;
493
493
  const s = n.length;
@@ -502,12 +502,12 @@ function Me(e) {
502
502
  if (i === "__proto__")
503
503
  return !0;
504
504
  const c = Number.isFinite(+i), f = o >= n.length;
505
- return i = !i && a.isArray(s) ? s.length : i, f ? (a.hasOwnProp(s, i) ? s[i] = [s[i], r] : s[i] = r, !c) : ((!s[i] || !a.isObject(s[i])) && (s[i] = []), t(n, r, s[i], o) && a.isArray(s[i]) && (s[i] = Qt(s[i])), !c);
505
+ return i = !i && a.isArray(s) ? s.length : i, f ? (a.hasOwnProp(s, i) ? s[i] = [s[i], r] : s[i] = r, !c) : ((!s[i] || !a.isObject(s[i])) && (s[i] = []), t(n, r, s[i], o) && a.isArray(s[i]) && (s[i] = vt(s[i])), !c);
506
506
  }
507
507
  if (a.isFormData(e) && a.isFunction(e.entries)) {
508
508
  const n = {};
509
509
  return a.forEachEntry(e, (r, s) => {
510
- t(vt(r), s, n, 0);
510
+ t(Qt(r), s, n, 0);
511
511
  }), n;
512
512
  }
513
513
  return null;
@@ -541,7 +541,7 @@ const I = {
541
541
  return Gt(t, this.formSerializer).toString();
542
542
  if ((c = a.isFileList(t)) || r.indexOf("multipart/form-data") > -1) {
543
543
  const f = this.env && this.env.FormData;
544
- return K(
544
+ return G(
545
545
  c ? { "files[]": t } : t,
546
546
  f && new f(),
547
547
  this.formSerializer
@@ -620,8 +620,8 @@ const Zt = a.toObjectSet([
620
620
  function U(e) {
621
621
  return e && String(e).trim().toLowerCase();
622
622
  }
623
- function H(e) {
624
- return e === !1 || e == null ? e : a.isArray(e) ? e.map(H) : String(e);
623
+ function M(e) {
624
+ return e === !1 || e == null ? e : a.isArray(e) ? e.map(M) : String(e);
625
625
  }
626
626
  function en(e) {
627
627
  const t = /* @__PURE__ */ Object.create(null), n = /([^\s,;=]+)\s*(?:=\s*([^,;]+))?/g;
@@ -631,7 +631,7 @@ function en(e) {
631
631
  return t;
632
632
  }
633
633
  const tn = (e) => /^[-_a-zA-Z0-9^`|~,!#$%&'*+.]+$/.test(e.trim());
634
- function Q(e, t, n, r, s) {
634
+ function X(e, t, n, r, s) {
635
635
  if (a.isFunction(r))
636
636
  return r.call(this, t, n);
637
637
  if (s && (t = n), !!a.isString(t)) {
@@ -666,7 +666,7 @@ class R {
666
666
  if (!u)
667
667
  throw new Error("header name must be a non-empty string");
668
668
  const d = a.findKey(s, u);
669
- (!d || s[d] === void 0 || l === !0 || l === void 0 && s[d] !== !1) && (s[d || f] = H(c));
669
+ (!d || s[d] === void 0 || l === !0 || l === void 0 && s[d] !== !1) && (s[d || f] = M(c));
670
670
  }
671
671
  const i = (c, f) => a.forEach(c, (l, u) => o(l, u, f));
672
672
  if (a.isPlainObject(t) || t instanceof this.constructor)
@@ -700,7 +700,7 @@ class R {
700
700
  has(t, n) {
701
701
  if (t = U(t), t) {
702
702
  const r = a.findKey(this, t);
703
- return !!(r && this[r] !== void 0 && (!n || Q(this, this[r], r, n)));
703
+ return !!(r && this[r] !== void 0 && (!n || X(this, this[r], r, n)));
704
704
  }
705
705
  return !1;
706
706
  }
@@ -710,7 +710,7 @@ class R {
710
710
  function o(i) {
711
711
  if (i = U(i), i) {
712
712
  const c = a.findKey(r, i);
713
- c && (!n || Q(r, r[c], c, n)) && (delete r[c], s = !0);
713
+ c && (!n || X(r, r[c], c, n)) && (delete r[c], s = !0);
714
714
  }
715
715
  }
716
716
  return a.isArray(t) ? t.forEach(o) : o(t), s;
@@ -720,7 +720,7 @@ class R {
720
720
  let r = n.length, s = !1;
721
721
  for (; r--; ) {
722
722
  const o = n[r];
723
- (!t || Q(this, this[o], o, t, !0)) && (delete this[o], s = !0);
723
+ (!t || X(this, this[o], o, t, !0)) && (delete this[o], s = !0);
724
724
  }
725
725
  return s;
726
726
  }
@@ -729,11 +729,11 @@ class R {
729
729
  return a.forEach(this, (s, o) => {
730
730
  const i = a.findKey(r, o);
731
731
  if (i) {
732
- n[i] = H(s), delete n[o];
732
+ n[i] = M(s), delete n[o];
733
733
  return;
734
734
  }
735
735
  const c = t ? nn(o) : String(o).trim();
736
- c !== o && delete n[o], n[c] = H(s), r[c] = !0;
736
+ c !== o && delete n[o], n[c] = M(s), r[c] = !0;
737
737
  }), this;
738
738
  }
739
739
  concat(...t) {
@@ -784,7 +784,7 @@ a.reduceDescriptors(R.prototype, ({ value: e }, t) => {
784
784
  };
785
785
  });
786
786
  a.freezeMethods(R);
787
- function X(e, t) {
787
+ function Z(e, t) {
788
788
  const n = this || I, r = t || n, s = R.from(r.headers);
789
789
  let o = r.data;
790
790
  return a.forEach(e, function(c) {
@@ -841,7 +841,7 @@ function an(e, t) {
841
841
  s || (s = setTimeout(() => (s = null, n = Date.now(), e.apply(null, arguments)), r - (c - n)));
842
842
  };
843
843
  }
844
- const M = (e, t, n = 3) => {
844
+ const z = (e, t, n = 3) => {
845
845
  let r = 0;
846
846
  const s = on(50, 250);
847
847
  return an((o) => {
@@ -1061,7 +1061,7 @@ const We = (e) => {
1061
1061
  )), u = null;
1062
1062
  }, o === void 0 && i.setContentType(null), "setRequestHeader" in u && a.forEach(i.toJSON(), function(p, m) {
1063
1063
  u.setRequestHeader(m, p);
1064
- }), a.isUndefined(s.withCredentials) || (u.withCredentials = !!s.withCredentials), c && c !== "json" && (u.responseType = s.responseType), typeof s.onDownloadProgress == "function" && u.addEventListener("progress", M(s.onDownloadProgress, !0)), typeof s.onUploadProgress == "function" && u.upload && u.upload.addEventListener("progress", M(s.onUploadProgress)), (s.cancelToken || s.signal) && (f = (y) => {
1064
+ }), a.isUndefined(s.withCredentials) || (u.withCredentials = !!s.withCredentials), c && c !== "json" && (u.responseType = s.responseType), typeof s.onDownloadProgress == "function" && u.addEventListener("progress", z(s.onDownloadProgress, !0)), typeof s.onUploadProgress == "function" && u.upload && u.upload.addEventListener("progress", z(s.onUploadProgress)), (s.cancelToken || s.signal) && (f = (y) => {
1065
1065
  u && (r(!y || y.type ? new k(null, e, u) : y), u.abort(), u = null);
1066
1066
  }, s.cancelToken && s.cancelToken.subscribe(f), s.signal && (s.signal.aborted ? f() : s.signal.addEventListener("abort", f)));
1067
1067
  const w = sn(s.url);
@@ -1132,7 +1132,7 @@ const We = (e) => {
1132
1132
  total: e,
1133
1133
  loaded: r
1134
1134
  }));
1135
- }, G = typeof fetch == "function" && typeof Request == "function" && typeof Response == "function", Ke = G && typeof ReadableStream == "function", re = G && (typeof TextEncoder == "function" ? /* @__PURE__ */ ((e) => (t) => e.encode(t))(new TextEncoder()) : async (e) => new Uint8Array(await new Response(e).arrayBuffer())), wn = Ke && (() => {
1135
+ }, Q = typeof fetch == "function" && typeof Request == "function" && typeof Response == "function", Ke = Q && typeof ReadableStream == "function", re = Q && (typeof TextEncoder == "function" ? /* @__PURE__ */ ((e) => (t) => e.encode(t))(new TextEncoder()) : async (e) => new Uint8Array(await new Response(e).arrayBuffer())), wn = Ke && (() => {
1136
1136
  let e = !1;
1137
1137
  const t = new Request(O.origin, {
1138
1138
  body: new ReadableStream(),
@@ -1147,12 +1147,12 @@ const We = (e) => {
1147
1147
  return a.isReadableStream(new Response("").body);
1148
1148
  } catch {
1149
1149
  }
1150
- })(), z = {
1150
+ })(), J = {
1151
1151
  stream: se && ((e) => e.body)
1152
1152
  };
1153
- G && ((e) => {
1153
+ Q && ((e) => {
1154
1154
  ["text", "arrayBuffer", "blob", "formData", "stream"].forEach((t) => {
1155
- !z[t] && (z[t] = a.isFunction(e[t]) ? (n) => n[t]() : (n, r) => {
1155
+ !J[t] && (J[t] = a.isFunction(e[t]) ? (n) => n[t]() : (n, r) => {
1156
1156
  throw new h(`Response type '${t}' is not supported`, h.ERR_NOT_SUPPORT, r);
1157
1157
  });
1158
1158
  });
@@ -1171,7 +1171,7 @@ const bn = async (e) => {
1171
1171
  }, En = async (e, t) => {
1172
1172
  const n = a.toFiniteNumber(e.getContentLength());
1173
1173
  return n ?? bn(t);
1174
- }, Sn = G && (async (e) => {
1174
+ }, Sn = Q && (async (e) => {
1175
1175
  let {
1176
1176
  url: t,
1177
1177
  method: n,
@@ -1193,17 +1193,17 @@ const bn = async (e) => {
1193
1193
  y && y.unsubscribe();
1194
1194
  }), m = !0;
1195
1195
  };
1196
- let N;
1196
+ let P;
1197
1197
  try {
1198
- if (f && wn && n !== "get" && n !== "head" && (N = await En(u, r)) !== 0) {
1199
- let P = new Request(t, {
1198
+ if (f && wn && n !== "get" && n !== "head" && (P = await En(u, r)) !== 0) {
1199
+ let N = new Request(t, {
1200
1200
  method: "POST",
1201
1201
  body: r,
1202
1202
  duplex: "half"
1203
1203
  }), L;
1204
- a.isFormData(r) && (L = P.headers.get("content-type")) && u.setContentType(L), P.body && (r = ge(P.body, Te, Re(
1205
- N,
1206
- M(f)
1204
+ a.isFormData(r) && (L = N.headers.get("content-type")) && u.setContentType(L), N.body && (r = ge(N.body, Te, Re(
1205
+ P,
1206
+ z(f)
1207
1207
  ), null, re));
1208
1208
  }
1209
1209
  a.isString(d) || (d = d ? "cors" : "omit"), S = new Request(t, {
@@ -1218,23 +1218,23 @@ const bn = async (e) => {
1218
1218
  let b = await fetch(S);
1219
1219
  const D = se && (l === "stream" || l === "response");
1220
1220
  if (se && (c || D)) {
1221
- const P = {};
1221
+ const N = {};
1222
1222
  ["status", "statusText", "headers"].forEach((pe) => {
1223
- P[pe] = b[pe];
1223
+ N[pe] = b[pe];
1224
1224
  });
1225
1225
  const L = a.toFiniteNumber(b.headers.get("content-length"));
1226
1226
  b = new Response(
1227
1227
  ge(b.body, Te, c && Re(
1228
1228
  L,
1229
- M(c, !0)
1229
+ z(c, !0)
1230
1230
  ), D && g, re),
1231
- P
1231
+ N
1232
1232
  );
1233
1233
  }
1234
1234
  l = l || "text";
1235
- let Xe = await z[a.findKey(z, l) || "text"](b, e);
1236
- return !D && g(), p && p(), await new Promise((P, L) => {
1237
- Je(P, L, {
1235
+ let Xe = await J[a.findKey(J, l) || "text"](b, e);
1236
+ return !D && g(), p && p(), await new Promise((N, L) => {
1237
+ Je(N, L, {
1238
1238
  data: Xe,
1239
1239
  headers: R.from(b.headers),
1240
1240
  status: b.status,
@@ -1296,38 +1296,38 @@ const Oe = (e) => `- ${e}`, gn = (e) => a.isFunction(e) || e === null || e === !
1296
1296
  },
1297
1297
  adapters: oe
1298
1298
  };
1299
- function Z(e) {
1299
+ function Y(e) {
1300
1300
  if (e.cancelToken && e.cancelToken.throwIfRequested(), e.signal && e.signal.aborted)
1301
1301
  throw new k(null, e);
1302
1302
  }
1303
1303
  function Ae(e) {
1304
- return Z(e), e.headers = R.from(e.headers), e.data = X.call(
1304
+ return Y(e), e.headers = R.from(e.headers), e.data = Z.call(
1305
1305
  e,
1306
1306
  e.transformRequest
1307
1307
  ), ["post", "put", "patch"].indexOf(e.method) !== -1 && e.headers.setContentType("application/x-www-form-urlencoded", !1), Ge.getAdapter(e.adapter || I.adapter)(e).then(function(r) {
1308
- return Z(e), r.data = X.call(
1308
+ return Y(e), r.data = Z.call(
1309
1309
  e,
1310
1310
  e.transformResponse,
1311
1311
  r
1312
1312
  ), r.headers = R.from(r.headers), r;
1313
1313
  }, function(r) {
1314
- return ze(r) || (Z(e), r && r.response && (r.response.data = X.call(
1314
+ return ze(r) || (Y(e), r && r.response && (r.response.data = Z.call(
1315
1315
  e,
1316
1316
  e.transformResponse,
1317
1317
  r.response
1318
1318
  ), r.response.headers = R.from(r.response.headers))), Promise.reject(r);
1319
1319
  });
1320
1320
  }
1321
- const ve = "1.7.2", fe = {};
1321
+ const Qe = "1.7.2", fe = {};
1322
1322
  ["object", "boolean", "number", "function", "string", "symbol"].forEach((e, t) => {
1323
1323
  fe[e] = function(r) {
1324
1324
  return typeof r === e || "a" + (t < 1 ? "n " : " ") + e;
1325
1325
  };
1326
1326
  });
1327
- const Ne = {};
1327
+ const Pe = {};
1328
1328
  fe.transitional = function(t, n, r) {
1329
1329
  function s(o, i) {
1330
- return "[Axios v" + ve + "] Transitional option '" + o + "'" + i + (r ? ". " + r : "");
1330
+ return "[Axios v" + Qe + "] Transitional option '" + o + "'" + i + (r ? ". " + r : "");
1331
1331
  }
1332
1332
  return (o, i, c) => {
1333
1333
  if (t === !1)
@@ -1335,7 +1335,7 @@ fe.transitional = function(t, n, r) {
1335
1335
  s(i, " has been removed" + (n ? " in " + n : "")),
1336
1336
  h.ERR_DEPRECATED
1337
1337
  );
1338
- return n && !Ne[i] && (Ne[i] = !0, console.warn(
1338
+ return n && !Pe[i] && (Pe[i] = !0, console.warn(
1339
1339
  s(
1340
1340
  i,
1341
1341
  " has been deprecated since v" + n + " and will be removed in the near future"
@@ -1363,7 +1363,7 @@ function Rn(e, t, n) {
1363
1363
  const ie = {
1364
1364
  assertOptions: Rn,
1365
1365
  validators: fe
1366
- }, C = ie.validators;
1366
+ }, x = ie.validators;
1367
1367
  class F {
1368
1368
  constructor(t) {
1369
1369
  this.defaults = t, this.interceptors = {
@@ -1400,14 +1400,14 @@ class F {
1400
1400
  typeof t == "string" ? (n = n || {}, n.url = t) : n = t || {}, n = B(this.defaults, n);
1401
1401
  const { transitional: r, paramsSerializer: s, headers: o } = n;
1402
1402
  r !== void 0 && ie.assertOptions(r, {
1403
- silentJSONParsing: C.transitional(C.boolean),
1404
- forcedJSONParsing: C.transitional(C.boolean),
1405
- clarifyTimeoutError: C.transitional(C.boolean)
1403
+ silentJSONParsing: x.transitional(x.boolean),
1404
+ forcedJSONParsing: x.transitional(x.boolean),
1405
+ clarifyTimeoutError: x.transitional(x.boolean)
1406
1406
  }, !1), s != null && (a.isFunction(s) ? n.paramsSerializer = {
1407
1407
  serialize: s
1408
1408
  } : ie.assertOptions(s, {
1409
- encode: C.function,
1410
- serialize: C.function
1409
+ encode: x.function,
1410
+ serialize: x.function
1411
1411
  }, !0)), n.method = (n.method || this.defaults.method || "get").toLowerCase();
1412
1412
  let i = o && a.merge(
1413
1413
  o.common,
@@ -1629,19 +1629,19 @@ const ae = {
1629
1629
  Object.entries(ae).forEach(([e, t]) => {
1630
1630
  ae[t] = e;
1631
1631
  });
1632
- function Qe(e) {
1633
- const t = new F(e), n = Ce(F.prototype.request, t);
1632
+ function ve(e) {
1633
+ const t = new F(e), n = xe(F.prototype.request, t);
1634
1634
  return a.extend(n, F.prototype, t, { allOwnKeys: !0 }), a.extend(n, t, null, { allOwnKeys: !0 }), n.create = function(s) {
1635
- return Qe(B(e, s));
1635
+ return ve(B(e, s));
1636
1636
  }, n;
1637
1637
  }
1638
- const E = Qe(I);
1638
+ const E = ve(I);
1639
1639
  E.Axios = F;
1640
1640
  E.CanceledError = k;
1641
1641
  E.CancelToken = de;
1642
1642
  E.isCancel = ze;
1643
- E.VERSION = ve;
1644
- E.toFormData = K;
1643
+ E.VERSION = Qe;
1644
+ E.toFormData = G;
1645
1645
  E.AxiosError = h;
1646
1646
  E.Cancel = E.CanceledError;
1647
1647
  E.all = function(t) {
@@ -1655,7 +1655,7 @@ E.formToJSON = (e) => Me(a.isHTMLForm(e) ? new FormData(e) : e);
1655
1655
  E.getAdapter = Ge.getAdapter;
1656
1656
  E.HttpStatusCode = ae;
1657
1657
  E.default = E;
1658
- const x = (e) => {
1658
+ const C = (e) => {
1659
1659
  var i, c;
1660
1660
  const t = E.create(), n = e.apiVersion, r = e.productCode, s = e.baseUrl;
1661
1661
  return e.responseInterceptor && t.interceptors.response.use(
@@ -1673,14 +1673,15 @@ const x = (e) => {
1673
1673
  method: (l == null ? void 0 : l.method) || "GET",
1674
1674
  headers: d,
1675
1675
  url: u,
1676
- data: l == null ? void 0 : l.data
1676
+ data: l == null ? void 0 : l.data,
1677
+ responseType: l == null ? void 0 : l.responseType
1677
1678
  };
1678
1679
  return await t.request(w);
1679
1680
  }
1680
1681
  };
1681
1682
  }, An = "cep";
1682
- function Nn(e) {
1683
- const t = x(e);
1683
+ function Pn(e) {
1684
+ const t = C(e);
1684
1685
  function n(r) {
1685
1686
  return t.request(`/${An}`, {
1686
1687
  method: "POST",
@@ -1691,54 +1692,54 @@ function Nn(e) {
1691
1692
  getAddress: n
1692
1693
  };
1693
1694
  }
1694
- const Pe = "auth", Pn = (e) => {
1695
- const t = x(e);
1695
+ const Ne = "auth", Nn = (e) => {
1696
+ const t = C(e);
1696
1697
  return {
1697
1698
  postLogin: async (s) => {
1698
1699
  var i;
1699
- const o = await t.request(`/${Pe}/login`, {
1700
+ const o = await t.request(`/${Ne}/login`, {
1700
1701
  method: "POST",
1701
1702
  data: JSON.stringify(s)
1702
1703
  });
1703
1704
  return o.status === 200 && ((i = o.data) != null && i.accessToken) && localStorage.setItem("accessToken", o.data.accessToken), o;
1704
1705
  },
1705
- getToken: async (s) => await t.request(`/${Pe}?code=${s}`, {
1706
+ getToken: async (s) => await t.request(`/${Ne}?code=${s}`, {
1706
1707
  method: "GET",
1707
1708
  data: ""
1708
1709
  })
1709
1710
  };
1710
- }, Cn = "digital", xn = (e) => {
1711
- const t = x(e);
1711
+ }, xn = "digital", Cn = (e) => {
1712
+ const t = C(e);
1712
1713
  return {
1713
- getBroker: () => t.request(`/${Cn}/getBroker`, {
1714
+ getBroker: () => t.request(`/${xn}/getBroker`, {
1714
1715
  method: "GET",
1715
1716
  data: ""
1716
1717
  })
1717
1718
  };
1718
1719
  }, Fn = "data", Bn = (e) => {
1719
- const t = x(e);
1720
+ const t = C(e);
1720
1721
  return {
1721
1722
  postData: async (r) => await t.request(`/${Fn}`, {
1722
1723
  method: "POST",
1723
1724
  data: JSON.stringify(r)
1724
1725
  })
1725
1726
  };
1726
- }, Y = "payment", Ln = (e) => {
1727
- const t = x(e);
1727
+ }, ee = "payment", Ln = (e) => {
1728
+ const t = C(e);
1728
1729
  return {
1729
- postPayment: (o) => t.request(`/${Y}`, {
1730
+ postPayment: (o) => t.request(`/${ee}`, {
1730
1731
  method: "POST",
1731
1732
  data: JSON.stringify(o)
1732
1733
  }),
1733
1734
  getPaymentStatus: (o) => t.request(
1734
- `/${Y}/status?policyId=${o.policyId}`,
1735
+ `/${ee}/status?policyId=${o.policyId}`,
1735
1736
  {
1736
1737
  method: "GET",
1737
1738
  data: ""
1738
1739
  }
1739
1740
  ),
1740
1741
  getPaymentSummary: (o) => t.request(
1741
- `/${Y}/summary?policyId=${o.policyId}`,
1742
+ `/${ee}/summary?policyId=${o.policyId}`,
1742
1743
  {
1743
1744
  method: "GET",
1744
1745
  data: ""
@@ -1746,44 +1747,55 @@ const Pe = "auth", Pn = (e) => {
1746
1747
  )
1747
1748
  };
1748
1749
  }, _n = "product/action", kn = (e) => {
1749
- const t = x(e);
1750
+ const t = C(e);
1750
1751
  return {
1751
1752
  getCnpjStatus: (r) => t.request(`/${_n}/Custom/CnpjCheck?cnpj=${r}`, {
1752
1753
  method: "GET",
1753
1754
  data: ""
1754
1755
  })
1755
1756
  };
1756
- }, ee = "quotation", Dn = (e) => {
1757
- const t = x(e);
1757
+ }, $ = "quotation", Dn = (e) => {
1758
+ const t = C(e);
1758
1759
  return {
1759
- postQuickQuote: (o) => t.request(`/${ee}/QuickQuote`, {
1760
+ postQuickQuote: (i) => t.request(`/${$}/QuickQuote`, {
1760
1761
  method: "POST",
1761
- data: JSON.stringify(o)
1762
+ data: JSON.stringify(i)
1762
1763
  }),
1763
- postFullQuote: (o) => t.request(`/${ee}/FullQuote`, {
1764
+ postFullQuote: (i) => t.request(`/${$}/FullQuote`, {
1764
1765
  method: "POST",
1765
- data: JSON.stringify(o)
1766
+ data: JSON.stringify(i)
1766
1767
  }),
1767
- postBind: (o) => t.request(`/${ee}/Bind`, {
1768
+ postBind: (i) => t.request(`/${$}/Bind`, {
1768
1769
  method: "POST",
1769
- data: JSON.stringify(o)
1770
+ data: JSON.stringify(i)
1771
+ }),
1772
+ getQuotation: (i) => t.request(`/${$}?id=${i.policyId}`, {
1773
+ method: "GET",
1774
+ data: ""
1770
1775
  })
1771
1776
  };
1772
1777
  }, Un = "report", qn = (e) => {
1773
- const t = x(e);
1778
+ const t = C(e);
1774
1779
  return {
1775
- getCertificateReport: (r) => t.request(
1776
- `/${Un}/generate-stream?policyId=${r.policyId}&documentType=certificate`,
1777
- {
1778
- method: "GET",
1779
- data: "",
1780
- contentType: "blob"
1781
- }
1782
- )
1780
+ getReportStream: (r) => {
1781
+ const s = new URLSearchParams({
1782
+ policyId: r.policyId,
1783
+ documentType: r.documentType || "certificate",
1784
+ ...r.additionalParams
1785
+ });
1786
+ return t.request(
1787
+ `/${Un}/generate-stream?${s.toString()}`,
1788
+ {
1789
+ method: "GET",
1790
+ data: "",
1791
+ responseType: "blob"
1792
+ }
1793
+ );
1794
+ }
1783
1795
  };
1784
1796
  };
1785
1797
  function jn(e) {
1786
- const t = Pn(e), n = Bn(e), r = Dn(e), s = Ln(e), o = Nn(e), i = xn(e), c = kn(e), f = qn(e);
1798
+ const t = Nn(e), n = Bn(e), r = Dn(e), s = Ln(e), o = Pn(e), i = Cn(e), c = kn(e), f = qn(e);
1787
1799
  return {
1788
1800
  auth: t,
1789
1801
  data: n,
package/ts-lib.umd.cjs CHANGED
@@ -1,6 +1,6 @@
1
- (function(L,U){typeof exports=="object"&&typeof module<"u"?module.exports=U():typeof define=="function"&&define.amd?define(U):(L=typeof globalThis<"u"?globalThis:L||self,L["ts-lib"]=U())})(this,function(){"use strict";function L(e,t){return function(){return e.apply(t,arguments)}}const{toString:U}=Object.prototype,{getPrototypeOf:X}=Object,M=(e=>t=>{const n=U.call(t);return e[n]||(e[n]=n.slice(8,-1).toLowerCase())})(Object.create(null)),O=e=>(e=e.toLowerCase(),t=>M(t)===e),z=e=>t=>typeof t===e,{isArray:_}=Array,q=z("undefined");function Ze(e){return e!==null&&!q(e)&&e.constructor!==null&&!q(e.constructor)&&T(e.constructor.isBuffer)&&e.constructor.isBuffer(e)}const me=O("ArrayBuffer");function Ye(e){let t;return typeof ArrayBuffer<"u"&&ArrayBuffer.isView?t=ArrayBuffer.isView(e):t=e&&e.buffer&&me(e.buffer),t}const et=z("string"),T=z("function"),ye=z("number"),J=e=>e!==null&&typeof e=="object",tt=e=>e===!0||e===!1,V=e=>{if(M(e)!=="object")return!1;const t=X(e);return(t===null||t===Object.prototype||Object.getPrototypeOf(t)===null)&&!(Symbol.toStringTag in e)&&!(Symbol.iterator in e)},nt=O("Date"),rt=O("File"),st=O("Blob"),ot=O("FileList"),it=e=>J(e)&&T(e.pipe),at=e=>{let t;return e&&(typeof FormData=="function"&&e instanceof FormData||T(e.append)&&((t=M(e))==="formdata"||t==="object"&&T(e.toString)&&e.toString()==="[object FormData]"))},ct=O("URLSearchParams"),[ut,lt,ft,dt]=["ReadableStream","Request","Response","Headers"].map(O),pt=e=>e.trim?e.trim():e.replace(/^[\s\uFEFF\xA0]+|[\s\uFEFF\xA0]+$/g,"");function j(e,t,{allOwnKeys:n=!1}={}){if(e===null||typeof e>"u")return;let r,s;if(typeof e!="object"&&(e=[e]),_(e))for(r=0,s=e.length;r<s;r++)t.call(null,e[r],r,e);else{const o=n?Object.getOwnPropertyNames(e):Object.keys(e),i=o.length;let c;for(r=0;r<i;r++)c=o[r],t.call(null,e[c],c,e)}}function be(e,t){t=t.toLowerCase();const n=Object.keys(e);let r=n.length,s;for(;r-- >0;)if(s=n[r],t===s.toLowerCase())return s;return null}const we=typeof globalThis<"u"?globalThis:typeof self<"u"?self:typeof window<"u"?window:global,Ee=e=>!q(e)&&e!==we;function Z(){const{caseless:e}=Ee(this)&&this||{},t={},n=(r,s)=>{const o=e&&be(t,s)||s;V(t[o])&&V(r)?t[o]=Z(t[o],r):V(r)?t[o]=Z({},r):_(r)?t[o]=r.slice():t[o]=r};for(let r=0,s=arguments.length;r<s;r++)arguments[r]&&j(arguments[r],n);return t}const ht=(e,t,n,{allOwnKeys:r}={})=>(j(t,(s,o)=>{n&&T(s)?e[o]=L(s,n):e[o]=s},{allOwnKeys:r}),e),mt=e=>(e.charCodeAt(0)===65279&&(e=e.slice(1)),e),yt=(e,t,n,r)=>{e.prototype=Object.create(t.prototype,r),e.prototype.constructor=e,Object.defineProperty(e,"super",{value:t.prototype}),n&&Object.assign(e.prototype,n)},bt=(e,t,n,r)=>{let s,o,i;const c={};if(t=t||{},e==null)return t;do{for(s=Object.getOwnPropertyNames(e),o=s.length;o-- >0;)i=s[o],(!r||r(i,e,t))&&!c[i]&&(t[i]=e[i],c[i]=!0);e=n!==!1&&X(e)}while(e&&(!n||n(e,t))&&e!==Object.prototype);return t},wt=(e,t,n)=>{e=String(e),(n===void 0||n>e.length)&&(n=e.length),n-=t.length;const r=e.indexOf(t,n);return r!==-1&&r===n},Et=e=>{if(!e)return null;if(_(e))return e;let t=e.length;if(!ye(t))return null;const n=new Array(t);for(;t-- >0;)n[t]=e[t];return n},St=(e=>t=>e&&t instanceof e)(typeof Uint8Array<"u"&&X(Uint8Array)),gt=(e,t)=>{const r=(e&&e[Symbol.iterator]).call(e);let s;for(;(s=r.next())&&!s.done;){const o=s.value;t.call(e,o[0],o[1])}},Rt=(e,t)=>{let n;const r=[];for(;(n=e.exec(t))!==null;)r.push(n);return r},Tt=O("HTMLFormElement"),Ot=e=>e.toLowerCase().replace(/[-_\s]([a-z\d])(\w*)/g,function(n,r,s){return r.toUpperCase()+s}),Se=(({hasOwnProperty:e})=>(t,n)=>e.call(t,n))(Object.prototype),At=O("RegExp"),ge=(e,t)=>{const n=Object.getOwnPropertyDescriptors(e),r={};j(n,(s,o)=>{let i;(i=t(s,o,e))!==!1&&(r[o]=i||s)}),Object.defineProperties(e,r)},Nt=e=>{ge(e,(t,n)=>{if(T(e)&&["arguments","caller","callee"].indexOf(n)!==-1)return!1;const r=e[n];if(T(r)){if(t.enumerable=!1,"writable"in t){t.writable=!1;return}t.set||(t.set=()=>{throw Error("Can not rewrite read-only method '"+n+"'")})}})},Pt=(e,t)=>{const n={},r=s=>{s.forEach(o=>{n[o]=!0})};return _(e)?r(e):r(String(e).split(t)),n},Ct=()=>{},xt=(e,t)=>e!=null&&Number.isFinite(e=+e)?e:t,Y="abcdefghijklmnopqrstuvwxyz",Re="0123456789",Te={DIGIT:Re,ALPHA:Y,ALPHA_DIGIT:Y+Y.toUpperCase()+Re},Ft=(e=16,t=Te.ALPHA_DIGIT)=>{let n="";const{length:r}=t;for(;e--;)n+=t[Math.random()*r|0];return n};function Bt(e){return!!(e&&T(e.append)&&e[Symbol.toStringTag]==="FormData"&&e[Symbol.iterator])}const Lt=e=>{const t=new Array(10),n=(r,s)=>{if(J(r)){if(t.indexOf(r)>=0)return;if(!("toJSON"in r)){t[s]=r;const o=_(r)?[]:{};return j(r,(i,c)=>{const f=n(i,s+1);!q(f)&&(o[c]=f)}),t[s]=void 0,o}}return r};return n(e,0)},_t=O("AsyncFunction"),a={isArray:_,isArrayBuffer:me,isBuffer:Ze,isFormData:at,isArrayBufferView:Ye,isString:et,isNumber:ye,isBoolean:tt,isObject:J,isPlainObject:V,isReadableStream:ut,isRequest:lt,isResponse:ft,isHeaders:dt,isUndefined:q,isDate:nt,isFile:rt,isBlob:st,isRegExp:At,isFunction:T,isStream:it,isURLSearchParams:ct,isTypedArray:St,isFileList:ot,forEach:j,merge:Z,extend:ht,trim:pt,stripBOM:mt,inherits:yt,toFlatObject:bt,kindOf:M,kindOfTest:O,endsWith:wt,toArray:Et,forEachEntry:gt,matchAll:Rt,isHTMLForm:Tt,hasOwnProperty:Se,hasOwnProp:Se,reduceDescriptors:ge,freezeMethods:Nt,toObjectSet:Pt,toCamelCase:Ot,noop:Ct,toFiniteNumber:xt,findKey:be,global:we,isContextDefined:Ee,ALPHABET:Te,generateString:Ft,isSpecCompliantForm:Bt,toJSONObject:Lt,isAsyncFn:_t,isThenable:e=>e&&(J(e)||T(e))&&T(e.then)&&T(e.catch)};function h(e,t,n,r,s){Error.call(this),Error.captureStackTrace?Error.captureStackTrace(this,this.constructor):this.stack=new Error().stack,this.message=e,this.name="AxiosError",t&&(this.code=t),n&&(this.config=n),r&&(this.request=r),s&&(this.response=s)}a.inherits(h,Error,{toJSON:function(){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:a.toJSONObject(this.config),code:this.code,status:this.response&&this.response.status?this.response.status:null}}});const Oe=h.prototype,Ae={};["ERR_BAD_OPTION_VALUE","ERR_BAD_OPTION","ECONNABORTED","ETIMEDOUT","ERR_NETWORK","ERR_FR_TOO_MANY_REDIRECTS","ERR_DEPRECATED","ERR_BAD_RESPONSE","ERR_BAD_REQUEST","ERR_CANCELED","ERR_NOT_SUPPORT","ERR_INVALID_URL"].forEach(e=>{Ae[e]={value:e}}),Object.defineProperties(h,Ae),Object.defineProperty(Oe,"isAxiosError",{value:!0}),h.from=(e,t,n,r,s,o)=>{const i=Object.create(Oe);return a.toFlatObject(e,i,function(f){return f!==Error.prototype},c=>c!=="isAxiosError"),h.call(i,e.message,t,n,r,s),i.cause=e,i.name=e.name,o&&Object.assign(i,o),i};const Dt=null;function ee(e){return a.isPlainObject(e)||a.isArray(e)}function Ne(e){return a.endsWith(e,"[]")?e.slice(0,-2):e}function Pe(e,t,n){return e?e.concat(t).map(function(s,o){return s=Ne(s),!n&&o?"["+s+"]":s}).join(n?".":""):t}function kt(e){return a.isArray(e)&&!e.some(ee)}const Ut=a.toFlatObject(a,{},null,function(t){return/^is[A-Z]/.test(t)});function W(e,t,n){if(!a.isObject(e))throw new TypeError("target must be an object");t=t||new FormData,n=a.toFlatObject(n,{metaTokens:!0,dots:!1,indexes:!1},!1,function(m,S){return!a.isUndefined(S[m])});const r=n.metaTokens,s=n.visitor||u,o=n.dots,i=n.indexes,f=(n.Blob||typeof Blob<"u"&&Blob)&&a.isSpecCompliantForm(t);if(!a.isFunction(s))throw new TypeError("visitor must be a function");function l(p){if(p===null)return"";if(a.isDate(p))return p.toISOString();if(!f&&a.isBlob(p))throw new h("Blob is not supported. Use a Buffer instead.");return a.isArrayBuffer(p)||a.isTypedArray(p)?f&&typeof Blob=="function"?new Blob([p]):Buffer.from(p):p}function u(p,m,S){let g=p;if(p&&!S&&typeof p=="object"){if(a.endsWith(m,"{}"))m=r?m:m.slice(0,-2),p=JSON.stringify(p);else if(a.isArray(p)&&kt(p)||(a.isFileList(p)||a.endsWith(m,"[]"))&&(g=a.toArray(p)))return m=Ne(m),g.forEach(function(w,H){!(a.isUndefined(w)||w===null)&&t.append(i===!0?Pe([m],H,o):i===null?m:m+"[]",l(w))}),!1}return ee(p)?!0:(t.append(Pe(S,m,o),l(p)),!1)}const d=[],b=Object.assign(Ut,{defaultVisitor:u,convertValue:l,isVisitable:ee});function y(p,m){if(!a.isUndefined(p)){if(d.indexOf(p)!==-1)throw Error("Circular reference detected in "+m.join("."));d.push(p),a.forEach(p,function(g,N){(!(a.isUndefined(g)||g===null)&&s.call(t,g,a.isString(N)?N.trim():N,m,b))===!0&&y(g,m?m.concat(N):[N])}),d.pop()}}if(!a.isObject(e))throw new TypeError("data must be an object");return y(e),t}function Ce(e){const t={"!":"%21","'":"%27","(":"%28",")":"%29","~":"%7E","%20":"+","%00":"\0"};return encodeURIComponent(e).replace(/[!'()~]|%20|%00/g,function(r){return t[r]})}function te(e,t){this._pairs=[],e&&W(e,this,t)}const xe=te.prototype;xe.append=function(t,n){this._pairs.push([t,n])},xe.toString=function(t){const n=t?function(r){return t.call(this,r,Ce)}:Ce;return this._pairs.map(function(s){return n(s[0])+"="+n(s[1])},"").join("&")};function qt(e){return encodeURIComponent(e).replace(/%3A/gi,":").replace(/%24/g,"$").replace(/%2C/gi,",").replace(/%20/g,"+").replace(/%5B/gi,"[").replace(/%5D/gi,"]")}function Fe(e,t,n){if(!t)return e;const r=n&&n.encode||qt,s=n&&n.serialize;let o;if(s?o=s(t,n):o=a.isURLSearchParams(t)?t.toString():new te(t,n).toString(r),o){const i=e.indexOf("#");i!==-1&&(e=e.slice(0,i)),e+=(e.indexOf("?")===-1?"?":"&")+o}return e}class Be{constructor(){this.handlers=[]}use(t,n,r){return this.handlers.push({fulfilled:t,rejected:n,synchronous:r?r.synchronous:!1,runWhen:r?r.runWhen:null}),this.handlers.length-1}eject(t){this.handlers[t]&&(this.handlers[t]=null)}clear(){this.handlers&&(this.handlers=[])}forEach(t){a.forEach(this.handlers,function(r){r!==null&&t(r)})}}const Le={silentJSONParsing:!0,forcedJSONParsing:!0,clarifyTimeoutError:!1},jt={isBrowser:!0,classes:{URLSearchParams:typeof URLSearchParams<"u"?URLSearchParams:te,FormData:typeof FormData<"u"?FormData:null,Blob:typeof Blob<"u"?Blob:null},protocols:["http","https","file","blob","url","data"]},ne=typeof window<"u"&&typeof document<"u",It=(e=>ne&&["ReactNative","NativeScript","NS"].indexOf(e)<0)(typeof navigator<"u"&&navigator.product),$t=typeof WorkerGlobalScope<"u"&&self instanceof WorkerGlobalScope&&typeof self.importScripts=="function",Ht=ne&&window.location.href||"http://localhost",A={...Object.freeze(Object.defineProperty({__proto__:null,hasBrowserEnv:ne,hasStandardBrowserEnv:It,hasStandardBrowserWebWorkerEnv:$t,origin:Ht},Symbol.toStringTag,{value:"Module"})),...jt};function Mt(e,t){return W(e,new A.classes.URLSearchParams,Object.assign({visitor:function(n,r,s,o){return A.isNode&&a.isBuffer(n)?(this.append(r,n.toString("base64")),!1):o.defaultVisitor.apply(this,arguments)}},t))}function zt(e){return a.matchAll(/\w+|\[(\w*)]/g,e).map(t=>t[0]==="[]"?"":t[1]||t[0])}function Jt(e){const t={},n=Object.keys(e);let r;const s=n.length;let o;for(r=0;r<s;r++)o=n[r],t[o]=e[o];return t}function _e(e){function t(n,r,s,o){let i=n[o++];if(i==="__proto__")return!0;const c=Number.isFinite(+i),f=o>=n.length;return i=!i&&a.isArray(s)?s.length:i,f?(a.hasOwnProp(s,i)?s[i]=[s[i],r]:s[i]=r,!c):((!s[i]||!a.isObject(s[i]))&&(s[i]=[]),t(n,r,s[i],o)&&a.isArray(s[i])&&(s[i]=Jt(s[i])),!c)}if(a.isFormData(e)&&a.isFunction(e.entries)){const n={};return a.forEachEntry(e,(r,s)=>{t(zt(r),s,n,0)}),n}return null}function Vt(e,t,n){if(a.isString(e))try{return(t||JSON.parse)(e),a.trim(e)}catch(r){if(r.name!=="SyntaxError")throw r}return(n||JSON.stringify)(e)}const I={transitional:Le,adapter:["xhr","http","fetch"],transformRequest:[function(t,n){const r=n.getContentType()||"",s=r.indexOf("application/json")>-1,o=a.isObject(t);if(o&&a.isHTMLForm(t)&&(t=new FormData(t)),a.isFormData(t))return s?JSON.stringify(_e(t)):t;if(a.isArrayBuffer(t)||a.isBuffer(t)||a.isStream(t)||a.isFile(t)||a.isBlob(t)||a.isReadableStream(t))return t;if(a.isArrayBufferView(t))return t.buffer;if(a.isURLSearchParams(t))return n.setContentType("application/x-www-form-urlencoded;charset=utf-8",!1),t.toString();let c;if(o){if(r.indexOf("application/x-www-form-urlencoded")>-1)return Mt(t,this.formSerializer).toString();if((c=a.isFileList(t))||r.indexOf("multipart/form-data")>-1){const f=this.env&&this.env.FormData;return W(c?{"files[]":t}:t,f&&new f,this.formSerializer)}}return o||s?(n.setContentType("application/json",!1),Vt(t)):t}],transformResponse:[function(t){const n=this.transitional||I.transitional,r=n&&n.forcedJSONParsing,s=this.responseType==="json";if(a.isResponse(t)||a.isReadableStream(t))return t;if(t&&a.isString(t)&&(r&&!this.responseType||s)){const i=!(n&&n.silentJSONParsing)&&s;try{return JSON.parse(t)}catch(c){if(i)throw c.name==="SyntaxError"?h.from(c,h.ERR_BAD_RESPONSE,this,null,this.response):c}}return t}],timeout:0,xsrfCookieName:"XSRF-TOKEN",xsrfHeaderName:"X-XSRF-TOKEN",maxContentLength:-1,maxBodyLength:-1,env:{FormData:A.classes.FormData,Blob:A.classes.Blob},validateStatus:function(t){return t>=200&&t<300},headers:{common:{Accept:"application/json, text/plain, */*","Content-Type":void 0}}};a.forEach(["delete","get","head","post","put","patch"],e=>{I.headers[e]={}});const Wt=a.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"]),Kt=e=>{const t={};let n,r,s;return e&&e.split(`
2
- `).forEach(function(i){s=i.indexOf(":"),n=i.substring(0,s).trim().toLowerCase(),r=i.substring(s+1).trim(),!(!n||t[n]&&Wt[n])&&(n==="set-cookie"?t[n]?t[n].push(r):t[n]=[r]:t[n]=t[n]?t[n]+", "+r:r)}),t},De=Symbol("internals");function $(e){return e&&String(e).trim().toLowerCase()}function K(e){return e===!1||e==null?e:a.isArray(e)?e.map(K):String(e)}function Gt(e){const t=Object.create(null),n=/([^\s,;=]+)\s*(?:=\s*([^,;]+))?/g;let r;for(;r=n.exec(e);)t[r[1]]=r[2];return t}const vt=e=>/^[-_a-zA-Z0-9^`|~,!#$%&'*+.]+$/.test(e.trim());function re(e,t,n,r,s){if(a.isFunction(r))return r.call(this,t,n);if(s&&(t=n),!!a.isString(t)){if(a.isString(r))return t.indexOf(r)!==-1;if(a.isRegExp(r))return r.test(t)}}function Qt(e){return e.trim().toLowerCase().replace(/([a-z\d])(\w*)/g,(t,n,r)=>n.toUpperCase()+r)}function Xt(e,t){const n=a.toCamelCase(" "+t);["get","set","has"].forEach(r=>{Object.defineProperty(e,r+n,{value:function(s,o,i){return this[r].call(this,t,s,o,i)},configurable:!0})})}class R{constructor(t){t&&this.set(t)}set(t,n,r){const s=this;function o(c,f,l){const u=$(f);if(!u)throw new Error("header name must be a non-empty string");const d=a.findKey(s,u);(!d||s[d]===void 0||l===!0||l===void 0&&s[d]!==!1)&&(s[d||f]=K(c))}const i=(c,f)=>a.forEach(c,(l,u)=>o(l,u,f));if(a.isPlainObject(t)||t instanceof this.constructor)i(t,n);else if(a.isString(t)&&(t=t.trim())&&!vt(t))i(Kt(t),n);else if(a.isHeaders(t))for(const[c,f]of t.entries())o(f,c,r);else t!=null&&o(n,t,r);return this}get(t,n){if(t=$(t),t){const r=a.findKey(this,t);if(r){const s=this[r];if(!n)return s;if(n===!0)return Gt(s);if(a.isFunction(n))return n.call(this,s,r);if(a.isRegExp(n))return n.exec(s);throw new TypeError("parser must be boolean|regexp|function")}}}has(t,n){if(t=$(t),t){const r=a.findKey(this,t);return!!(r&&this[r]!==void 0&&(!n||re(this,this[r],r,n)))}return!1}delete(t,n){const r=this;let s=!1;function o(i){if(i=$(i),i){const c=a.findKey(r,i);c&&(!n||re(r,r[c],c,n))&&(delete r[c],s=!0)}}return a.isArray(t)?t.forEach(o):o(t),s}clear(t){const n=Object.keys(this);let r=n.length,s=!1;for(;r--;){const o=n[r];(!t||re(this,this[o],o,t,!0))&&(delete this[o],s=!0)}return s}normalize(t){const n=this,r={};return a.forEach(this,(s,o)=>{const i=a.findKey(r,o);if(i){n[i]=K(s),delete n[o];return}const c=t?Qt(o):String(o).trim();c!==o&&delete n[o],n[c]=K(s),r[c]=!0}),this}concat(...t){return this.constructor.concat(this,...t)}toJSON(t){const n=Object.create(null);return a.forEach(this,(r,s)=>{r!=null&&r!==!1&&(n[s]=t&&a.isArray(r)?r.join(", "):r)}),n}[Symbol.iterator](){return Object.entries(this.toJSON())[Symbol.iterator]()}toString(){return Object.entries(this.toJSON()).map(([t,n])=>t+": "+n).join(`
3
- `)}get[Symbol.toStringTag](){return"AxiosHeaders"}static from(t){return t instanceof this?t:new this(t)}static concat(t,...n){const r=new this(t);return n.forEach(s=>r.set(s)),r}static accessor(t){const r=(this[De]=this[De]={accessors:{}}).accessors,s=this.prototype;function o(i){const c=$(i);r[c]||(Xt(s,i),r[c]=!0)}return a.isArray(t)?t.forEach(o):o(t),this}}R.accessor(["Content-Type","Content-Length","Accept","Accept-Encoding","User-Agent","Authorization"]),a.reduceDescriptors(R.prototype,({value:e},t)=>{let n=t[0].toUpperCase()+t.slice(1);return{get:()=>e,set(r){this[n]=r}}}),a.freezeMethods(R);function se(e,t){const n=this||I,r=t||n,s=R.from(r.headers);let o=r.data;return a.forEach(e,function(c){o=c.call(n,o,s.normalize(),t?t.status:void 0)}),s.normalize(),o}function ke(e){return!!(e&&e.__CANCEL__)}function D(e,t,n){h.call(this,e??"canceled",h.ERR_CANCELED,t,n),this.name="CanceledError"}a.inherits(D,h,{__CANCEL__:!0});function Ue(e,t,n){const r=n.config.validateStatus;!n.status||!r||r(n.status)?e(n):t(new h("Request failed with status code "+n.status,[h.ERR_BAD_REQUEST,h.ERR_BAD_RESPONSE][Math.floor(n.status/100)-4],n.config,n.request,n))}function Zt(e){const t=/^([-+\w]{1,25})(:?\/\/|:)/.exec(e);return t&&t[1]||""}function Yt(e,t){e=e||10;const n=new Array(e),r=new Array(e);let s=0,o=0,i;return t=t!==void 0?t:1e3,function(f){const l=Date.now(),u=r[o];i||(i=l),n[s]=f,r[s]=l;let d=o,b=0;for(;d!==s;)b+=n[d++],d=d%e;if(s=(s+1)%e,s===o&&(o=(o+1)%e),l-i<t)return;const y=u&&l-u;return y?Math.round(b*1e3/y):void 0}}function en(e,t){let n=0;const r=1e3/t;let s=null;return function(){const i=this===!0,c=Date.now();if(i||c-n>r)return s&&(clearTimeout(s),s=null),n=c,e.apply(null,arguments);s||(s=setTimeout(()=>(s=null,n=Date.now(),e.apply(null,arguments)),r-(c-n)))}}const G=(e,t,n=3)=>{let r=0;const s=Yt(50,250);return en(o=>{const i=o.loaded,c=o.lengthComputable?o.total:void 0,f=i-r,l=s(f),u=i<=c;r=i;const d={loaded:i,total:c,progress:c?i/c:void 0,bytes:f,rate:l||void 0,estimated:l&&c&&u?(c-i)/l:void 0,event:o,lengthComputable:c!=null};d[t?"download":"upload"]=!0,e(d)},n)},tn=A.hasStandardBrowserEnv?function(){const t=/(msie|trident)/i.test(navigator.userAgent),n=document.createElement("a");let r;function s(o){let i=o;return t&&(n.setAttribute("href",i),i=n.href),n.setAttribute("href",i),{href:n.href,protocol:n.protocol?n.protocol.replace(/:$/,""):"",host:n.host,search:n.search?n.search.replace(/^\?/,""):"",hash:n.hash?n.hash.replace(/^#/,""):"",hostname:n.hostname,port:n.port,pathname:n.pathname.charAt(0)==="/"?n.pathname:"/"+n.pathname}}return r=s(window.location.href),function(i){const c=a.isString(i)?s(i):i;return c.protocol===r.protocol&&c.host===r.host}}():function(){return function(){return!0}}(),nn=A.hasStandardBrowserEnv?{write(e,t,n,r,s,o){const i=[e+"="+encodeURIComponent(t)];a.isNumber(n)&&i.push("expires="+new Date(n).toGMTString()),a.isString(r)&&i.push("path="+r),a.isString(s)&&i.push("domain="+s),o===!0&&i.push("secure"),document.cookie=i.join("; ")},read(e){const t=document.cookie.match(new RegExp("(^|;\\s*)("+e+")=([^;]*)"));return t?decodeURIComponent(t[3]):null},remove(e){this.write(e,"",Date.now()-864e5)}}:{write(){},read(){return null},remove(){}};function rn(e){return/^([a-z][a-z\d+\-.]*:)?\/\//i.test(e)}function sn(e,t){return t?e.replace(/\/?\/$/,"")+"/"+t.replace(/^\/+/,""):e}function qe(e,t){return e&&!rn(t)?sn(e,t):t}const je=e=>e instanceof R?{...e}:e;function F(e,t){t=t||{};const n={};function r(l,u,d){return a.isPlainObject(l)&&a.isPlainObject(u)?a.merge.call({caseless:d},l,u):a.isPlainObject(u)?a.merge({},u):a.isArray(u)?u.slice():u}function s(l,u,d){if(a.isUndefined(u)){if(!a.isUndefined(l))return r(void 0,l,d)}else return r(l,u,d)}function o(l,u){if(!a.isUndefined(u))return r(void 0,u)}function i(l,u){if(a.isUndefined(u)){if(!a.isUndefined(l))return r(void 0,l)}else return r(void 0,u)}function c(l,u,d){if(d in t)return r(l,u);if(d in e)return r(void 0,l)}const f={url:o,method:o,data:o,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,responseEncoding:i,validateStatus:c,headers:(l,u)=>s(je(l),je(u),!0)};return a.forEach(Object.keys(Object.assign({},e,t)),function(u){const d=f[u]||s,b=d(e[u],t[u],u);a.isUndefined(b)&&d!==c||(n[u]=b)}),n}const Ie=e=>{const t=F({},e);let{data:n,withXSRFToken:r,xsrfHeaderName:s,xsrfCookieName:o,headers:i,auth:c}=t;t.headers=i=R.from(i),t.url=Fe(qe(t.baseURL,t.url),e.params,e.paramsSerializer),c&&i.set("Authorization","Basic "+btoa((c.username||"")+":"+(c.password?unescape(encodeURIComponent(c.password)):"")));let f;if(a.isFormData(n)){if(A.hasStandardBrowserEnv||A.hasStandardBrowserWebWorkerEnv)i.setContentType(void 0);else if((f=i.getContentType())!==!1){const[l,...u]=f?f.split(";").map(d=>d.trim()).filter(Boolean):[];i.setContentType([l||"multipart/form-data",...u].join("; "))}}if(A.hasStandardBrowserEnv&&(r&&a.isFunction(r)&&(r=r(t)),r||r!==!1&&tn(t.url))){const l=s&&o&&nn.read(o);l&&i.set(s,l)}return t},on=typeof XMLHttpRequest<"u"&&function(e){return new Promise(function(n,r){const s=Ie(e);let o=s.data;const i=R.from(s.headers).normalize();let{responseType:c}=s,f;function l(){s.cancelToken&&s.cancelToken.unsubscribe(f),s.signal&&s.signal.removeEventListener("abort",f)}let u=new XMLHttpRequest;u.open(s.method.toUpperCase(),s.url,!0),u.timeout=s.timeout;function d(){if(!u)return;const y=R.from("getAllResponseHeaders"in u&&u.getAllResponseHeaders()),m={data:!c||c==="text"||c==="json"?u.responseText:u.response,status:u.status,statusText:u.statusText,headers:y,config:e,request:u};Ue(function(g){n(g),l()},function(g){r(g),l()},m),u=null}"onloadend"in u?u.onloadend=d:u.onreadystatechange=function(){!u||u.readyState!==4||u.status===0&&!(u.responseURL&&u.responseURL.indexOf("file:")===0)||setTimeout(d)},u.onabort=function(){u&&(r(new h("Request aborted",h.ECONNABORTED,s,u)),u=null)},u.onerror=function(){r(new h("Network Error",h.ERR_NETWORK,s,u)),u=null},u.ontimeout=function(){let p=s.timeout?"timeout of "+s.timeout+"ms exceeded":"timeout exceeded";const m=s.transitional||Le;s.timeoutErrorMessage&&(p=s.timeoutErrorMessage),r(new h(p,m.clarifyTimeoutError?h.ETIMEDOUT:h.ECONNABORTED,s,u)),u=null},o===void 0&&i.setContentType(null),"setRequestHeader"in u&&a.forEach(i.toJSON(),function(p,m){u.setRequestHeader(m,p)}),a.isUndefined(s.withCredentials)||(u.withCredentials=!!s.withCredentials),c&&c!=="json"&&(u.responseType=s.responseType),typeof s.onDownloadProgress=="function"&&u.addEventListener("progress",G(s.onDownloadProgress,!0)),typeof s.onUploadProgress=="function"&&u.upload&&u.upload.addEventListener("progress",G(s.onUploadProgress)),(s.cancelToken||s.signal)&&(f=y=>{u&&(r(!y||y.type?new D(null,e,u):y),u.abort(),u=null)},s.cancelToken&&s.cancelToken.subscribe(f),s.signal&&(s.signal.aborted?f():s.signal.addEventListener("abort",f)));const b=Zt(s.url);if(b&&A.protocols.indexOf(b)===-1){r(new h("Unsupported protocol "+b+":",h.ERR_BAD_REQUEST,e));return}u.send(o||null)})},an=(e,t)=>{let n=new AbortController,r;const s=function(f){if(!r){r=!0,i();const l=f instanceof Error?f:this.reason;n.abort(l instanceof h?l:new D(l instanceof Error?l.message:l))}};let o=t&&setTimeout(()=>{s(new h(`timeout ${t} of ms exceeded`,h.ETIMEDOUT))},t);const i=()=>{e&&(o&&clearTimeout(o),o=null,e.forEach(f=>{f&&(f.removeEventListener?f.removeEventListener("abort",s):f.unsubscribe(s))}),e=null)};e.forEach(f=>f&&f.addEventListener&&f.addEventListener("abort",s));const{signal:c}=n;return c.unsubscribe=i,[c,()=>{o&&clearTimeout(o),o=null}]},cn=function*(e,t){let n=e.byteLength;if(!t||n<t){yield e;return}let r=0,s;for(;r<n;)s=r+t,yield e.slice(r,s),r=s},un=async function*(e,t,n){for await(const r of e)yield*cn(ArrayBuffer.isView(r)?r:await n(String(r)),t)},$e=(e,t,n,r,s)=>{const o=un(e,t,s);let i=0;return new ReadableStream({type:"bytes",async pull(c){const{done:f,value:l}=await o.next();if(f){c.close(),r();return}let u=l.byteLength;n&&n(i+=u),c.enqueue(new Uint8Array(l))},cancel(c){return r(c),o.return()}},{highWaterMark:2})},He=(e,t)=>{const n=e!=null;return r=>setTimeout(()=>t({lengthComputable:n,total:e,loaded:r}))},v=typeof fetch=="function"&&typeof Request=="function"&&typeof Response=="function",Me=v&&typeof ReadableStream=="function",oe=v&&(typeof TextEncoder=="function"?(e=>t=>e.encode(t))(new TextEncoder):async e=>new Uint8Array(await new Response(e).arrayBuffer())),ln=Me&&(()=>{let e=!1;const t=new Request(A.origin,{body:new ReadableStream,method:"POST",get duplex(){return e=!0,"half"}}).headers.has("Content-Type");return e&&!t})(),ze=64*1024,ie=Me&&!!(()=>{try{return a.isReadableStream(new Response("").body)}catch{}})(),Q={stream:ie&&(e=>e.body)};v&&(e=>{["text","arrayBuffer","blob","formData","stream"].forEach(t=>{!Q[t]&&(Q[t]=a.isFunction(e[t])?n=>n[t]():(n,r)=>{throw new h(`Response type '${t}' is not supported`,h.ERR_NOT_SUPPORT,r)})})})(new Response);const fn=async e=>{if(e==null)return 0;if(a.isBlob(e))return e.size;if(a.isSpecCompliantForm(e))return(await new Request(e).arrayBuffer()).byteLength;if(a.isArrayBufferView(e))return e.byteLength;if(a.isURLSearchParams(e)&&(e=e+""),a.isString(e))return(await oe(e)).byteLength},dn=async(e,t)=>{const n=a.toFiniteNumber(e.getContentLength());return n??fn(t)},ae={http:Dt,xhr:on,fetch:v&&(async e=>{let{url:t,method:n,data:r,signal:s,cancelToken:o,timeout:i,onDownloadProgress:c,onUploadProgress:f,responseType:l,headers:u,withCredentials:d="same-origin",fetchOptions:b}=Ie(e);l=l?(l+"").toLowerCase():"text";let[y,p]=s||o||i?an([s,o],i):[],m,S;const g=()=>{!m&&setTimeout(()=>{y&&y.unsubscribe()}),m=!0};let N;try{if(f&&ln&&n!=="get"&&n!=="head"&&(N=await dn(u,r))!==0){let x=new Request(t,{method:"POST",body:r,duplex:"half"}),k;a.isFormData(r)&&(k=x.headers.get("content-type"))&&u.setContentType(k),x.body&&(r=$e(x.body,ze,He(N,G(f)),null,oe))}a.isString(d)||(d=d?"cors":"omit"),S=new Request(t,{...b,signal:y,method:n.toUpperCase(),headers:u.normalize().toJSON(),body:r,duplex:"half",withCredentials:d});let w=await fetch(S);const H=ie&&(l==="stream"||l==="response");if(ie&&(c||H)){const x={};["status","statusText","headers"].forEach(Xe=>{x[Xe]=w[Xe]});const k=a.toFiniteNumber(w.headers.get("content-length"));w=new Response($e(w.body,ze,c&&He(k,G(c,!0)),H&&g,oe),x)}l=l||"text";let Bn=await Q[a.findKey(Q,l)||"text"](w,e);return!H&&g(),p&&p(),await new Promise((x,k)=>{Ue(x,k,{data:Bn,headers:R.from(w.headers),status:w.status,statusText:w.statusText,config:e,request:S})})}catch(w){throw g(),w&&w.name==="TypeError"&&/fetch/i.test(w.message)?Object.assign(new h("Network Error",h.ERR_NETWORK,e,S),{cause:w.cause||w}):h.from(w,w&&w.code,e,S)}})};a.forEach(ae,(e,t)=>{if(e){try{Object.defineProperty(e,"name",{value:t})}catch{}Object.defineProperty(e,"adapterName",{value:t})}});const Je=e=>`- ${e}`,pn=e=>a.isFunction(e)||e===null||e===!1,Ve={getAdapter:e=>{e=a.isArray(e)?e:[e];const{length:t}=e;let n,r;const s={};for(let o=0;o<t;o++){n=e[o];let i;if(r=n,!pn(n)&&(r=ae[(i=String(n)).toLowerCase()],r===void 0))throw new h(`Unknown adapter '${i}'`);if(r)break;s[i||"#"+o]=r}if(!r){const o=Object.entries(s).map(([c,f])=>`adapter ${c} `+(f===!1?"is not supported by the environment":"is not available in the build"));let i=t?o.length>1?`since :
1
+ (function(L,U){typeof exports=="object"&&typeof module<"u"?module.exports=U():typeof define=="function"&&define.amd?define(U):(L=typeof globalThis<"u"?globalThis:L||self,L["ts-lib"]=U())})(this,function(){"use strict";function L(e,t){return function(){return e.apply(t,arguments)}}const{toString:U}=Object.prototype,{getPrototypeOf:Z}=Object,M=(e=>t=>{const n=U.call(t);return e[n]||(e[n]=n.slice(8,-1).toLowerCase())})(Object.create(null)),O=e=>(e=e.toLowerCase(),t=>M(t)===e),z=e=>t=>typeof t===e,{isArray:_}=Array,q=z("undefined");function Ze(e){return e!==null&&!q(e)&&e.constructor!==null&&!q(e.constructor)&&T(e.constructor.isBuffer)&&e.constructor.isBuffer(e)}const me=O("ArrayBuffer");function Ye(e){let t;return typeof ArrayBuffer<"u"&&ArrayBuffer.isView?t=ArrayBuffer.isView(e):t=e&&e.buffer&&me(e.buffer),t}const et=z("string"),T=z("function"),ye=z("number"),J=e=>e!==null&&typeof e=="object",tt=e=>e===!0||e===!1,V=e=>{if(M(e)!=="object")return!1;const t=Z(e);return(t===null||t===Object.prototype||Object.getPrototypeOf(t)===null)&&!(Symbol.toStringTag in e)&&!(Symbol.iterator in e)},nt=O("Date"),rt=O("File"),st=O("Blob"),ot=O("FileList"),it=e=>J(e)&&T(e.pipe),at=e=>{let t;return e&&(typeof FormData=="function"&&e instanceof FormData||T(e.append)&&((t=M(e))==="formdata"||t==="object"&&T(e.toString)&&e.toString()==="[object FormData]"))},ct=O("URLSearchParams"),[ut,lt,ft,dt]=["ReadableStream","Request","Response","Headers"].map(O),pt=e=>e.trim?e.trim():e.replace(/^[\s\uFEFF\xA0]+|[\s\uFEFF\xA0]+$/g,"");function j(e,t,{allOwnKeys:n=!1}={}){if(e===null||typeof e>"u")return;let r,s;if(typeof e!="object"&&(e=[e]),_(e))for(r=0,s=e.length;r<s;r++)t.call(null,e[r],r,e);else{const o=n?Object.getOwnPropertyNames(e):Object.keys(e),i=o.length;let c;for(r=0;r<i;r++)c=o[r],t.call(null,e[c],c,e)}}function be(e,t){t=t.toLowerCase();const n=Object.keys(e);let r=n.length,s;for(;r-- >0;)if(s=n[r],t===s.toLowerCase())return s;return null}const we=typeof globalThis<"u"?globalThis:typeof self<"u"?self:typeof window<"u"?window:global,Ee=e=>!q(e)&&e!==we;function Y(){const{caseless:e}=Ee(this)&&this||{},t={},n=(r,s)=>{const o=e&&be(t,s)||s;V(t[o])&&V(r)?t[o]=Y(t[o],r):V(r)?t[o]=Y({},r):_(r)?t[o]=r.slice():t[o]=r};for(let r=0,s=arguments.length;r<s;r++)arguments[r]&&j(arguments[r],n);return t}const ht=(e,t,n,{allOwnKeys:r}={})=>(j(t,(s,o)=>{n&&T(s)?e[o]=L(s,n):e[o]=s},{allOwnKeys:r}),e),mt=e=>(e.charCodeAt(0)===65279&&(e=e.slice(1)),e),yt=(e,t,n,r)=>{e.prototype=Object.create(t.prototype,r),e.prototype.constructor=e,Object.defineProperty(e,"super",{value:t.prototype}),n&&Object.assign(e.prototype,n)},bt=(e,t,n,r)=>{let s,o,i;const c={};if(t=t||{},e==null)return t;do{for(s=Object.getOwnPropertyNames(e),o=s.length;o-- >0;)i=s[o],(!r||r(i,e,t))&&!c[i]&&(t[i]=e[i],c[i]=!0);e=n!==!1&&Z(e)}while(e&&(!n||n(e,t))&&e!==Object.prototype);return t},wt=(e,t,n)=>{e=String(e),(n===void 0||n>e.length)&&(n=e.length),n-=t.length;const r=e.indexOf(t,n);return r!==-1&&r===n},Et=e=>{if(!e)return null;if(_(e))return e;let t=e.length;if(!ye(t))return null;const n=new Array(t);for(;t-- >0;)n[t]=e[t];return n},St=(e=>t=>e&&t instanceof e)(typeof Uint8Array<"u"&&Z(Uint8Array)),gt=(e,t)=>{const r=(e&&e[Symbol.iterator]).call(e);let s;for(;(s=r.next())&&!s.done;){const o=s.value;t.call(e,o[0],o[1])}},Rt=(e,t)=>{let n;const r=[];for(;(n=e.exec(t))!==null;)r.push(n);return r},Tt=O("HTMLFormElement"),Ot=e=>e.toLowerCase().replace(/[-_\s]([a-z\d])(\w*)/g,function(n,r,s){return r.toUpperCase()+s}),Se=(({hasOwnProperty:e})=>(t,n)=>e.call(t,n))(Object.prototype),At=O("RegExp"),ge=(e,t)=>{const n=Object.getOwnPropertyDescriptors(e),r={};j(n,(s,o)=>{let i;(i=t(s,o,e))!==!1&&(r[o]=i||s)}),Object.defineProperties(e,r)},Pt=e=>{ge(e,(t,n)=>{if(T(e)&&["arguments","caller","callee"].indexOf(n)!==-1)return!1;const r=e[n];if(T(r)){if(t.enumerable=!1,"writable"in t){t.writable=!1;return}t.set||(t.set=()=>{throw Error("Can not rewrite read-only method '"+n+"'")})}})},Nt=(e,t)=>{const n={},r=s=>{s.forEach(o=>{n[o]=!0})};return _(e)?r(e):r(String(e).split(t)),n},xt=()=>{},Ct=(e,t)=>e!=null&&Number.isFinite(e=+e)?e:t,ee="abcdefghijklmnopqrstuvwxyz",Re="0123456789",Te={DIGIT:Re,ALPHA:ee,ALPHA_DIGIT:ee+ee.toUpperCase()+Re},Ft=(e=16,t=Te.ALPHA_DIGIT)=>{let n="";const{length:r}=t;for(;e--;)n+=t[Math.random()*r|0];return n};function Bt(e){return!!(e&&T(e.append)&&e[Symbol.toStringTag]==="FormData"&&e[Symbol.iterator])}const Lt=e=>{const t=new Array(10),n=(r,s)=>{if(J(r)){if(t.indexOf(r)>=0)return;if(!("toJSON"in r)){t[s]=r;const o=_(r)?[]:{};return j(r,(i,c)=>{const f=n(i,s+1);!q(f)&&(o[c]=f)}),t[s]=void 0,o}}return r};return n(e,0)},_t=O("AsyncFunction"),a={isArray:_,isArrayBuffer:me,isBuffer:Ze,isFormData:at,isArrayBufferView:Ye,isString:et,isNumber:ye,isBoolean:tt,isObject:J,isPlainObject:V,isReadableStream:ut,isRequest:lt,isResponse:ft,isHeaders:dt,isUndefined:q,isDate:nt,isFile:rt,isBlob:st,isRegExp:At,isFunction:T,isStream:it,isURLSearchParams:ct,isTypedArray:St,isFileList:ot,forEach:j,merge:Y,extend:ht,trim:pt,stripBOM:mt,inherits:yt,toFlatObject:bt,kindOf:M,kindOfTest:O,endsWith:wt,toArray:Et,forEachEntry:gt,matchAll:Rt,isHTMLForm:Tt,hasOwnProperty:Se,hasOwnProp:Se,reduceDescriptors:ge,freezeMethods:Pt,toObjectSet:Nt,toCamelCase:Ot,noop:xt,toFiniteNumber:Ct,findKey:be,global:we,isContextDefined:Ee,ALPHABET:Te,generateString:Ft,isSpecCompliantForm:Bt,toJSONObject:Lt,isAsyncFn:_t,isThenable:e=>e&&(J(e)||T(e))&&T(e.then)&&T(e.catch)};function h(e,t,n,r,s){Error.call(this),Error.captureStackTrace?Error.captureStackTrace(this,this.constructor):this.stack=new Error().stack,this.message=e,this.name="AxiosError",t&&(this.code=t),n&&(this.config=n),r&&(this.request=r),s&&(this.response=s)}a.inherits(h,Error,{toJSON:function(){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:a.toJSONObject(this.config),code:this.code,status:this.response&&this.response.status?this.response.status:null}}});const Oe=h.prototype,Ae={};["ERR_BAD_OPTION_VALUE","ERR_BAD_OPTION","ECONNABORTED","ETIMEDOUT","ERR_NETWORK","ERR_FR_TOO_MANY_REDIRECTS","ERR_DEPRECATED","ERR_BAD_RESPONSE","ERR_BAD_REQUEST","ERR_CANCELED","ERR_NOT_SUPPORT","ERR_INVALID_URL"].forEach(e=>{Ae[e]={value:e}}),Object.defineProperties(h,Ae),Object.defineProperty(Oe,"isAxiosError",{value:!0}),h.from=(e,t,n,r,s,o)=>{const i=Object.create(Oe);return a.toFlatObject(e,i,function(f){return f!==Error.prototype},c=>c!=="isAxiosError"),h.call(i,e.message,t,n,r,s),i.cause=e,i.name=e.name,o&&Object.assign(i,o),i};const Dt=null;function te(e){return a.isPlainObject(e)||a.isArray(e)}function Pe(e){return a.endsWith(e,"[]")?e.slice(0,-2):e}function Ne(e,t,n){return e?e.concat(t).map(function(s,o){return s=Pe(s),!n&&o?"["+s+"]":s}).join(n?".":""):t}function kt(e){return a.isArray(e)&&!e.some(te)}const Ut=a.toFlatObject(a,{},null,function(t){return/^is[A-Z]/.test(t)});function W(e,t,n){if(!a.isObject(e))throw new TypeError("target must be an object");t=t||new FormData,n=a.toFlatObject(n,{metaTokens:!0,dots:!1,indexes:!1},!1,function(m,S){return!a.isUndefined(S[m])});const r=n.metaTokens,s=n.visitor||u,o=n.dots,i=n.indexes,f=(n.Blob||typeof Blob<"u"&&Blob)&&a.isSpecCompliantForm(t);if(!a.isFunction(s))throw new TypeError("visitor must be a function");function l(p){if(p===null)return"";if(a.isDate(p))return p.toISOString();if(!f&&a.isBlob(p))throw new h("Blob is not supported. Use a Buffer instead.");return a.isArrayBuffer(p)||a.isTypedArray(p)?f&&typeof Blob=="function"?new Blob([p]):Buffer.from(p):p}function u(p,m,S){let g=p;if(p&&!S&&typeof p=="object"){if(a.endsWith(m,"{}"))m=r?m:m.slice(0,-2),p=JSON.stringify(p);else if(a.isArray(p)&&kt(p)||(a.isFileList(p)||a.endsWith(m,"[]"))&&(g=a.toArray(p)))return m=Pe(m),g.forEach(function(w,H){!(a.isUndefined(w)||w===null)&&t.append(i===!0?Ne([m],H,o):i===null?m:m+"[]",l(w))}),!1}return te(p)?!0:(t.append(Ne(S,m,o),l(p)),!1)}const d=[],b=Object.assign(Ut,{defaultVisitor:u,convertValue:l,isVisitable:te});function y(p,m){if(!a.isUndefined(p)){if(d.indexOf(p)!==-1)throw Error("Circular reference detected in "+m.join("."));d.push(p),a.forEach(p,function(g,P){(!(a.isUndefined(g)||g===null)&&s.call(t,g,a.isString(P)?P.trim():P,m,b))===!0&&y(g,m?m.concat(P):[P])}),d.pop()}}if(!a.isObject(e))throw new TypeError("data must be an object");return y(e),t}function xe(e){const t={"!":"%21","'":"%27","(":"%28",")":"%29","~":"%7E","%20":"+","%00":"\0"};return encodeURIComponent(e).replace(/[!'()~]|%20|%00/g,function(r){return t[r]})}function ne(e,t){this._pairs=[],e&&W(e,this,t)}const Ce=ne.prototype;Ce.append=function(t,n){this._pairs.push([t,n])},Ce.toString=function(t){const n=t?function(r){return t.call(this,r,xe)}:xe;return this._pairs.map(function(s){return n(s[0])+"="+n(s[1])},"").join("&")};function qt(e){return encodeURIComponent(e).replace(/%3A/gi,":").replace(/%24/g,"$").replace(/%2C/gi,",").replace(/%20/g,"+").replace(/%5B/gi,"[").replace(/%5D/gi,"]")}function Fe(e,t,n){if(!t)return e;const r=n&&n.encode||qt,s=n&&n.serialize;let o;if(s?o=s(t,n):o=a.isURLSearchParams(t)?t.toString():new ne(t,n).toString(r),o){const i=e.indexOf("#");i!==-1&&(e=e.slice(0,i)),e+=(e.indexOf("?")===-1?"?":"&")+o}return e}class Be{constructor(){this.handlers=[]}use(t,n,r){return this.handlers.push({fulfilled:t,rejected:n,synchronous:r?r.synchronous:!1,runWhen:r?r.runWhen:null}),this.handlers.length-1}eject(t){this.handlers[t]&&(this.handlers[t]=null)}clear(){this.handlers&&(this.handlers=[])}forEach(t){a.forEach(this.handlers,function(r){r!==null&&t(r)})}}const Le={silentJSONParsing:!0,forcedJSONParsing:!0,clarifyTimeoutError:!1},jt={isBrowser:!0,classes:{URLSearchParams:typeof URLSearchParams<"u"?URLSearchParams:ne,FormData:typeof FormData<"u"?FormData:null,Blob:typeof Blob<"u"?Blob:null},protocols:["http","https","file","blob","url","data"]},re=typeof window<"u"&&typeof document<"u",It=(e=>re&&["ReactNative","NativeScript","NS"].indexOf(e)<0)(typeof navigator<"u"&&navigator.product),$t=typeof WorkerGlobalScope<"u"&&self instanceof WorkerGlobalScope&&typeof self.importScripts=="function",Ht=re&&window.location.href||"http://localhost",A={...Object.freeze(Object.defineProperty({__proto__:null,hasBrowserEnv:re,hasStandardBrowserEnv:It,hasStandardBrowserWebWorkerEnv:$t,origin:Ht},Symbol.toStringTag,{value:"Module"})),...jt};function Mt(e,t){return W(e,new A.classes.URLSearchParams,Object.assign({visitor:function(n,r,s,o){return A.isNode&&a.isBuffer(n)?(this.append(r,n.toString("base64")),!1):o.defaultVisitor.apply(this,arguments)}},t))}function zt(e){return a.matchAll(/\w+|\[(\w*)]/g,e).map(t=>t[0]==="[]"?"":t[1]||t[0])}function Jt(e){const t={},n=Object.keys(e);let r;const s=n.length;let o;for(r=0;r<s;r++)o=n[r],t[o]=e[o];return t}function _e(e){function t(n,r,s,o){let i=n[o++];if(i==="__proto__")return!0;const c=Number.isFinite(+i),f=o>=n.length;return i=!i&&a.isArray(s)?s.length:i,f?(a.hasOwnProp(s,i)?s[i]=[s[i],r]:s[i]=r,!c):((!s[i]||!a.isObject(s[i]))&&(s[i]=[]),t(n,r,s[i],o)&&a.isArray(s[i])&&(s[i]=Jt(s[i])),!c)}if(a.isFormData(e)&&a.isFunction(e.entries)){const n={};return a.forEachEntry(e,(r,s)=>{t(zt(r),s,n,0)}),n}return null}function Vt(e,t,n){if(a.isString(e))try{return(t||JSON.parse)(e),a.trim(e)}catch(r){if(r.name!=="SyntaxError")throw r}return(n||JSON.stringify)(e)}const I={transitional:Le,adapter:["xhr","http","fetch"],transformRequest:[function(t,n){const r=n.getContentType()||"",s=r.indexOf("application/json")>-1,o=a.isObject(t);if(o&&a.isHTMLForm(t)&&(t=new FormData(t)),a.isFormData(t))return s?JSON.stringify(_e(t)):t;if(a.isArrayBuffer(t)||a.isBuffer(t)||a.isStream(t)||a.isFile(t)||a.isBlob(t)||a.isReadableStream(t))return t;if(a.isArrayBufferView(t))return t.buffer;if(a.isURLSearchParams(t))return n.setContentType("application/x-www-form-urlencoded;charset=utf-8",!1),t.toString();let c;if(o){if(r.indexOf("application/x-www-form-urlencoded")>-1)return Mt(t,this.formSerializer).toString();if((c=a.isFileList(t))||r.indexOf("multipart/form-data")>-1){const f=this.env&&this.env.FormData;return W(c?{"files[]":t}:t,f&&new f,this.formSerializer)}}return o||s?(n.setContentType("application/json",!1),Vt(t)):t}],transformResponse:[function(t){const n=this.transitional||I.transitional,r=n&&n.forcedJSONParsing,s=this.responseType==="json";if(a.isResponse(t)||a.isReadableStream(t))return t;if(t&&a.isString(t)&&(r&&!this.responseType||s)){const i=!(n&&n.silentJSONParsing)&&s;try{return JSON.parse(t)}catch(c){if(i)throw c.name==="SyntaxError"?h.from(c,h.ERR_BAD_RESPONSE,this,null,this.response):c}}return t}],timeout:0,xsrfCookieName:"XSRF-TOKEN",xsrfHeaderName:"X-XSRF-TOKEN",maxContentLength:-1,maxBodyLength:-1,env:{FormData:A.classes.FormData,Blob:A.classes.Blob},validateStatus:function(t){return t>=200&&t<300},headers:{common:{Accept:"application/json, text/plain, */*","Content-Type":void 0}}};a.forEach(["delete","get","head","post","put","patch"],e=>{I.headers[e]={}});const Wt=a.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"]),Kt=e=>{const t={};let n,r,s;return e&&e.split(`
2
+ `).forEach(function(i){s=i.indexOf(":"),n=i.substring(0,s).trim().toLowerCase(),r=i.substring(s+1).trim(),!(!n||t[n]&&Wt[n])&&(n==="set-cookie"?t[n]?t[n].push(r):t[n]=[r]:t[n]=t[n]?t[n]+", "+r:r)}),t},De=Symbol("internals");function $(e){return e&&String(e).trim().toLowerCase()}function K(e){return e===!1||e==null?e:a.isArray(e)?e.map(K):String(e)}function Gt(e){const t=Object.create(null),n=/([^\s,;=]+)\s*(?:=\s*([^,;]+))?/g;let r;for(;r=n.exec(e);)t[r[1]]=r[2];return t}const Qt=e=>/^[-_a-zA-Z0-9^`|~,!#$%&'*+.]+$/.test(e.trim());function se(e,t,n,r,s){if(a.isFunction(r))return r.call(this,t,n);if(s&&(t=n),!!a.isString(t)){if(a.isString(r))return t.indexOf(r)!==-1;if(a.isRegExp(r))return r.test(t)}}function vt(e){return e.trim().toLowerCase().replace(/([a-z\d])(\w*)/g,(t,n,r)=>n.toUpperCase()+r)}function Xt(e,t){const n=a.toCamelCase(" "+t);["get","set","has"].forEach(r=>{Object.defineProperty(e,r+n,{value:function(s,o,i){return this[r].call(this,t,s,o,i)},configurable:!0})})}class R{constructor(t){t&&this.set(t)}set(t,n,r){const s=this;function o(c,f,l){const u=$(f);if(!u)throw new Error("header name must be a non-empty string");const d=a.findKey(s,u);(!d||s[d]===void 0||l===!0||l===void 0&&s[d]!==!1)&&(s[d||f]=K(c))}const i=(c,f)=>a.forEach(c,(l,u)=>o(l,u,f));if(a.isPlainObject(t)||t instanceof this.constructor)i(t,n);else if(a.isString(t)&&(t=t.trim())&&!Qt(t))i(Kt(t),n);else if(a.isHeaders(t))for(const[c,f]of t.entries())o(f,c,r);else t!=null&&o(n,t,r);return this}get(t,n){if(t=$(t),t){const r=a.findKey(this,t);if(r){const s=this[r];if(!n)return s;if(n===!0)return Gt(s);if(a.isFunction(n))return n.call(this,s,r);if(a.isRegExp(n))return n.exec(s);throw new TypeError("parser must be boolean|regexp|function")}}}has(t,n){if(t=$(t),t){const r=a.findKey(this,t);return!!(r&&this[r]!==void 0&&(!n||se(this,this[r],r,n)))}return!1}delete(t,n){const r=this;let s=!1;function o(i){if(i=$(i),i){const c=a.findKey(r,i);c&&(!n||se(r,r[c],c,n))&&(delete r[c],s=!0)}}return a.isArray(t)?t.forEach(o):o(t),s}clear(t){const n=Object.keys(this);let r=n.length,s=!1;for(;r--;){const o=n[r];(!t||se(this,this[o],o,t,!0))&&(delete this[o],s=!0)}return s}normalize(t){const n=this,r={};return a.forEach(this,(s,o)=>{const i=a.findKey(r,o);if(i){n[i]=K(s),delete n[o];return}const c=t?vt(o):String(o).trim();c!==o&&delete n[o],n[c]=K(s),r[c]=!0}),this}concat(...t){return this.constructor.concat(this,...t)}toJSON(t){const n=Object.create(null);return a.forEach(this,(r,s)=>{r!=null&&r!==!1&&(n[s]=t&&a.isArray(r)?r.join(", "):r)}),n}[Symbol.iterator](){return Object.entries(this.toJSON())[Symbol.iterator]()}toString(){return Object.entries(this.toJSON()).map(([t,n])=>t+": "+n).join(`
3
+ `)}get[Symbol.toStringTag](){return"AxiosHeaders"}static from(t){return t instanceof this?t:new this(t)}static concat(t,...n){const r=new this(t);return n.forEach(s=>r.set(s)),r}static accessor(t){const r=(this[De]=this[De]={accessors:{}}).accessors,s=this.prototype;function o(i){const c=$(i);r[c]||(Xt(s,i),r[c]=!0)}return a.isArray(t)?t.forEach(o):o(t),this}}R.accessor(["Content-Type","Content-Length","Accept","Accept-Encoding","User-Agent","Authorization"]),a.reduceDescriptors(R.prototype,({value:e},t)=>{let n=t[0].toUpperCase()+t.slice(1);return{get:()=>e,set(r){this[n]=r}}}),a.freezeMethods(R);function oe(e,t){const n=this||I,r=t||n,s=R.from(r.headers);let o=r.data;return a.forEach(e,function(c){o=c.call(n,o,s.normalize(),t?t.status:void 0)}),s.normalize(),o}function ke(e){return!!(e&&e.__CANCEL__)}function D(e,t,n){h.call(this,e??"canceled",h.ERR_CANCELED,t,n),this.name="CanceledError"}a.inherits(D,h,{__CANCEL__:!0});function Ue(e,t,n){const r=n.config.validateStatus;!n.status||!r||r(n.status)?e(n):t(new h("Request failed with status code "+n.status,[h.ERR_BAD_REQUEST,h.ERR_BAD_RESPONSE][Math.floor(n.status/100)-4],n.config,n.request,n))}function Zt(e){const t=/^([-+\w]{1,25})(:?\/\/|:)/.exec(e);return t&&t[1]||""}function Yt(e,t){e=e||10;const n=new Array(e),r=new Array(e);let s=0,o=0,i;return t=t!==void 0?t:1e3,function(f){const l=Date.now(),u=r[o];i||(i=l),n[s]=f,r[s]=l;let d=o,b=0;for(;d!==s;)b+=n[d++],d=d%e;if(s=(s+1)%e,s===o&&(o=(o+1)%e),l-i<t)return;const y=u&&l-u;return y?Math.round(b*1e3/y):void 0}}function en(e,t){let n=0;const r=1e3/t;let s=null;return function(){const i=this===!0,c=Date.now();if(i||c-n>r)return s&&(clearTimeout(s),s=null),n=c,e.apply(null,arguments);s||(s=setTimeout(()=>(s=null,n=Date.now(),e.apply(null,arguments)),r-(c-n)))}}const G=(e,t,n=3)=>{let r=0;const s=Yt(50,250);return en(o=>{const i=o.loaded,c=o.lengthComputable?o.total:void 0,f=i-r,l=s(f),u=i<=c;r=i;const d={loaded:i,total:c,progress:c?i/c:void 0,bytes:f,rate:l||void 0,estimated:l&&c&&u?(c-i)/l:void 0,event:o,lengthComputable:c!=null};d[t?"download":"upload"]=!0,e(d)},n)},tn=A.hasStandardBrowserEnv?function(){const t=/(msie|trident)/i.test(navigator.userAgent),n=document.createElement("a");let r;function s(o){let i=o;return t&&(n.setAttribute("href",i),i=n.href),n.setAttribute("href",i),{href:n.href,protocol:n.protocol?n.protocol.replace(/:$/,""):"",host:n.host,search:n.search?n.search.replace(/^\?/,""):"",hash:n.hash?n.hash.replace(/^#/,""):"",hostname:n.hostname,port:n.port,pathname:n.pathname.charAt(0)==="/"?n.pathname:"/"+n.pathname}}return r=s(window.location.href),function(i){const c=a.isString(i)?s(i):i;return c.protocol===r.protocol&&c.host===r.host}}():function(){return function(){return!0}}(),nn=A.hasStandardBrowserEnv?{write(e,t,n,r,s,o){const i=[e+"="+encodeURIComponent(t)];a.isNumber(n)&&i.push("expires="+new Date(n).toGMTString()),a.isString(r)&&i.push("path="+r),a.isString(s)&&i.push("domain="+s),o===!0&&i.push("secure"),document.cookie=i.join("; ")},read(e){const t=document.cookie.match(new RegExp("(^|;\\s*)("+e+")=([^;]*)"));return t?decodeURIComponent(t[3]):null},remove(e){this.write(e,"",Date.now()-864e5)}}:{write(){},read(){return null},remove(){}};function rn(e){return/^([a-z][a-z\d+\-.]*:)?\/\//i.test(e)}function sn(e,t){return t?e.replace(/\/?\/$/,"")+"/"+t.replace(/^\/+/,""):e}function qe(e,t){return e&&!rn(t)?sn(e,t):t}const je=e=>e instanceof R?{...e}:e;function F(e,t){t=t||{};const n={};function r(l,u,d){return a.isPlainObject(l)&&a.isPlainObject(u)?a.merge.call({caseless:d},l,u):a.isPlainObject(u)?a.merge({},u):a.isArray(u)?u.slice():u}function s(l,u,d){if(a.isUndefined(u)){if(!a.isUndefined(l))return r(void 0,l,d)}else return r(l,u,d)}function o(l,u){if(!a.isUndefined(u))return r(void 0,u)}function i(l,u){if(a.isUndefined(u)){if(!a.isUndefined(l))return r(void 0,l)}else return r(void 0,u)}function c(l,u,d){if(d in t)return r(l,u);if(d in e)return r(void 0,l)}const f={url:o,method:o,data:o,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,responseEncoding:i,validateStatus:c,headers:(l,u)=>s(je(l),je(u),!0)};return a.forEach(Object.keys(Object.assign({},e,t)),function(u){const d=f[u]||s,b=d(e[u],t[u],u);a.isUndefined(b)&&d!==c||(n[u]=b)}),n}const Ie=e=>{const t=F({},e);let{data:n,withXSRFToken:r,xsrfHeaderName:s,xsrfCookieName:o,headers:i,auth:c}=t;t.headers=i=R.from(i),t.url=Fe(qe(t.baseURL,t.url),e.params,e.paramsSerializer),c&&i.set("Authorization","Basic "+btoa((c.username||"")+":"+(c.password?unescape(encodeURIComponent(c.password)):"")));let f;if(a.isFormData(n)){if(A.hasStandardBrowserEnv||A.hasStandardBrowserWebWorkerEnv)i.setContentType(void 0);else if((f=i.getContentType())!==!1){const[l,...u]=f?f.split(";").map(d=>d.trim()).filter(Boolean):[];i.setContentType([l||"multipart/form-data",...u].join("; "))}}if(A.hasStandardBrowserEnv&&(r&&a.isFunction(r)&&(r=r(t)),r||r!==!1&&tn(t.url))){const l=s&&o&&nn.read(o);l&&i.set(s,l)}return t},on=typeof XMLHttpRequest<"u"&&function(e){return new Promise(function(n,r){const s=Ie(e);let o=s.data;const i=R.from(s.headers).normalize();let{responseType:c}=s,f;function l(){s.cancelToken&&s.cancelToken.unsubscribe(f),s.signal&&s.signal.removeEventListener("abort",f)}let u=new XMLHttpRequest;u.open(s.method.toUpperCase(),s.url,!0),u.timeout=s.timeout;function d(){if(!u)return;const y=R.from("getAllResponseHeaders"in u&&u.getAllResponseHeaders()),m={data:!c||c==="text"||c==="json"?u.responseText:u.response,status:u.status,statusText:u.statusText,headers:y,config:e,request:u};Ue(function(g){n(g),l()},function(g){r(g),l()},m),u=null}"onloadend"in u?u.onloadend=d:u.onreadystatechange=function(){!u||u.readyState!==4||u.status===0&&!(u.responseURL&&u.responseURL.indexOf("file:")===0)||setTimeout(d)},u.onabort=function(){u&&(r(new h("Request aborted",h.ECONNABORTED,s,u)),u=null)},u.onerror=function(){r(new h("Network Error",h.ERR_NETWORK,s,u)),u=null},u.ontimeout=function(){let p=s.timeout?"timeout of "+s.timeout+"ms exceeded":"timeout exceeded";const m=s.transitional||Le;s.timeoutErrorMessage&&(p=s.timeoutErrorMessage),r(new h(p,m.clarifyTimeoutError?h.ETIMEDOUT:h.ECONNABORTED,s,u)),u=null},o===void 0&&i.setContentType(null),"setRequestHeader"in u&&a.forEach(i.toJSON(),function(p,m){u.setRequestHeader(m,p)}),a.isUndefined(s.withCredentials)||(u.withCredentials=!!s.withCredentials),c&&c!=="json"&&(u.responseType=s.responseType),typeof s.onDownloadProgress=="function"&&u.addEventListener("progress",G(s.onDownloadProgress,!0)),typeof s.onUploadProgress=="function"&&u.upload&&u.upload.addEventListener("progress",G(s.onUploadProgress)),(s.cancelToken||s.signal)&&(f=y=>{u&&(r(!y||y.type?new D(null,e,u):y),u.abort(),u=null)},s.cancelToken&&s.cancelToken.subscribe(f),s.signal&&(s.signal.aborted?f():s.signal.addEventListener("abort",f)));const b=Zt(s.url);if(b&&A.protocols.indexOf(b)===-1){r(new h("Unsupported protocol "+b+":",h.ERR_BAD_REQUEST,e));return}u.send(o||null)})},an=(e,t)=>{let n=new AbortController,r;const s=function(f){if(!r){r=!0,i();const l=f instanceof Error?f:this.reason;n.abort(l instanceof h?l:new D(l instanceof Error?l.message:l))}};let o=t&&setTimeout(()=>{s(new h(`timeout ${t} of ms exceeded`,h.ETIMEDOUT))},t);const i=()=>{e&&(o&&clearTimeout(o),o=null,e.forEach(f=>{f&&(f.removeEventListener?f.removeEventListener("abort",s):f.unsubscribe(s))}),e=null)};e.forEach(f=>f&&f.addEventListener&&f.addEventListener("abort",s));const{signal:c}=n;return c.unsubscribe=i,[c,()=>{o&&clearTimeout(o),o=null}]},cn=function*(e,t){let n=e.byteLength;if(!t||n<t){yield e;return}let r=0,s;for(;r<n;)s=r+t,yield e.slice(r,s),r=s},un=async function*(e,t,n){for await(const r of e)yield*cn(ArrayBuffer.isView(r)?r:await n(String(r)),t)},$e=(e,t,n,r,s)=>{const o=un(e,t,s);let i=0;return new ReadableStream({type:"bytes",async pull(c){const{done:f,value:l}=await o.next();if(f){c.close(),r();return}let u=l.byteLength;n&&n(i+=u),c.enqueue(new Uint8Array(l))},cancel(c){return r(c),o.return()}},{highWaterMark:2})},He=(e,t)=>{const n=e!=null;return r=>setTimeout(()=>t({lengthComputable:n,total:e,loaded:r}))},Q=typeof fetch=="function"&&typeof Request=="function"&&typeof Response=="function",Me=Q&&typeof ReadableStream=="function",ie=Q&&(typeof TextEncoder=="function"?(e=>t=>e.encode(t))(new TextEncoder):async e=>new Uint8Array(await new Response(e).arrayBuffer())),ln=Me&&(()=>{let e=!1;const t=new Request(A.origin,{body:new ReadableStream,method:"POST",get duplex(){return e=!0,"half"}}).headers.has("Content-Type");return e&&!t})(),ze=64*1024,ae=Me&&!!(()=>{try{return a.isReadableStream(new Response("").body)}catch{}})(),v={stream:ae&&(e=>e.body)};Q&&(e=>{["text","arrayBuffer","blob","formData","stream"].forEach(t=>{!v[t]&&(v[t]=a.isFunction(e[t])?n=>n[t]():(n,r)=>{throw new h(`Response type '${t}' is not supported`,h.ERR_NOT_SUPPORT,r)})})})(new Response);const fn=async e=>{if(e==null)return 0;if(a.isBlob(e))return e.size;if(a.isSpecCompliantForm(e))return(await new Request(e).arrayBuffer()).byteLength;if(a.isArrayBufferView(e))return e.byteLength;if(a.isURLSearchParams(e)&&(e=e+""),a.isString(e))return(await ie(e)).byteLength},dn=async(e,t)=>{const n=a.toFiniteNumber(e.getContentLength());return n??fn(t)},ce={http:Dt,xhr:on,fetch:Q&&(async e=>{let{url:t,method:n,data:r,signal:s,cancelToken:o,timeout:i,onDownloadProgress:c,onUploadProgress:f,responseType:l,headers:u,withCredentials:d="same-origin",fetchOptions:b}=Ie(e);l=l?(l+"").toLowerCase():"text";let[y,p]=s||o||i?an([s,o],i):[],m,S;const g=()=>{!m&&setTimeout(()=>{y&&y.unsubscribe()}),m=!0};let P;try{if(f&&ln&&n!=="get"&&n!=="head"&&(P=await dn(u,r))!==0){let C=new Request(t,{method:"POST",body:r,duplex:"half"}),k;a.isFormData(r)&&(k=C.headers.get("content-type"))&&u.setContentType(k),C.body&&(r=$e(C.body,ze,He(P,G(f)),null,ie))}a.isString(d)||(d=d?"cors":"omit"),S=new Request(t,{...b,signal:y,method:n.toUpperCase(),headers:u.normalize().toJSON(),body:r,duplex:"half",withCredentials:d});let w=await fetch(S);const H=ae&&(l==="stream"||l==="response");if(ae&&(c||H)){const C={};["status","statusText","headers"].forEach(Xe=>{C[Xe]=w[Xe]});const k=a.toFiniteNumber(w.headers.get("content-length"));w=new Response($e(w.body,ze,c&&He(k,G(c,!0)),H&&g,ie),C)}l=l||"text";let Bn=await v[a.findKey(v,l)||"text"](w,e);return!H&&g(),p&&p(),await new Promise((C,k)=>{Ue(C,k,{data:Bn,headers:R.from(w.headers),status:w.status,statusText:w.statusText,config:e,request:S})})}catch(w){throw g(),w&&w.name==="TypeError"&&/fetch/i.test(w.message)?Object.assign(new h("Network Error",h.ERR_NETWORK,e,S),{cause:w.cause||w}):h.from(w,w&&w.code,e,S)}})};a.forEach(ce,(e,t)=>{if(e){try{Object.defineProperty(e,"name",{value:t})}catch{}Object.defineProperty(e,"adapterName",{value:t})}});const Je=e=>`- ${e}`,pn=e=>a.isFunction(e)||e===null||e===!1,Ve={getAdapter:e=>{e=a.isArray(e)?e:[e];const{length:t}=e;let n,r;const s={};for(let o=0;o<t;o++){n=e[o];let i;if(r=n,!pn(n)&&(r=ce[(i=String(n)).toLowerCase()],r===void 0))throw new h(`Unknown adapter '${i}'`);if(r)break;s[i||"#"+o]=r}if(!r){const o=Object.entries(s).map(([c,f])=>`adapter ${c} `+(f===!1?"is not supported by the environment":"is not available in the build"));let i=t?o.length>1?`since :
4
4
  `+o.map(Je).join(`
5
- `):" "+Je(o[0]):"as no adapter specified";throw new h("There is no suitable adapter to dispatch the request "+i,"ERR_NOT_SUPPORT")}return r},adapters:ae};function ce(e){if(e.cancelToken&&e.cancelToken.throwIfRequested(),e.signal&&e.signal.aborted)throw new D(null,e)}function We(e){return ce(e),e.headers=R.from(e.headers),e.data=se.call(e,e.transformRequest),["post","put","patch"].indexOf(e.method)!==-1&&e.headers.setContentType("application/x-www-form-urlencoded",!1),Ve.getAdapter(e.adapter||I.adapter)(e).then(function(r){return ce(e),r.data=se.call(e,e.transformResponse,r),r.headers=R.from(r.headers),r},function(r){return ke(r)||(ce(e),r&&r.response&&(r.response.data=se.call(e,e.transformResponse,r.response),r.response.headers=R.from(r.response.headers))),Promise.reject(r)})}const Ke="1.7.2",ue={};["object","boolean","number","function","string","symbol"].forEach((e,t)=>{ue[e]=function(r){return typeof r===e||"a"+(t<1?"n ":" ")+e}});const Ge={};ue.transitional=function(t,n,r){function s(o,i){return"[Axios v"+Ke+"] Transitional option '"+o+"'"+i+(r?". "+r:"")}return(o,i,c)=>{if(t===!1)throw new h(s(i," has been removed"+(n?" in "+n:"")),h.ERR_DEPRECATED);return n&&!Ge[i]&&(Ge[i]=!0,console.warn(s(i," has been deprecated since v"+n+" and will be removed in the near future"))),t?t(o,i,c):!0}};function hn(e,t,n){if(typeof e!="object")throw new h("options must be an object",h.ERR_BAD_OPTION_VALUE);const r=Object.keys(e);let s=r.length;for(;s-- >0;){const o=r[s],i=t[o];if(i){const c=e[o],f=c===void 0||i(c,o,e);if(f!==!0)throw new h("option "+o+" must be "+f,h.ERR_BAD_OPTION_VALUE);continue}if(n!==!0)throw new h("Unknown option "+o,h.ERR_BAD_OPTION)}}const le={assertOptions:hn,validators:ue},P=le.validators;class B{constructor(t){this.defaults=t,this.interceptors={request:new Be,response:new Be}}async request(t,n){try{return await this._request(t,n)}catch(r){if(r instanceof Error){let s;Error.captureStackTrace?Error.captureStackTrace(s={}):s=new Error;const o=s.stack?s.stack.replace(/^.+\n/,""):"";try{r.stack?o&&!String(r.stack).endsWith(o.replace(/^.+\n.+\n/,""))&&(r.stack+=`
6
- `+o):r.stack=o}catch{}}throw r}}_request(t,n){typeof t=="string"?(n=n||{},n.url=t):n=t||{},n=F(this.defaults,n);const{transitional:r,paramsSerializer:s,headers:o}=n;r!==void 0&&le.assertOptions(r,{silentJSONParsing:P.transitional(P.boolean),forcedJSONParsing:P.transitional(P.boolean),clarifyTimeoutError:P.transitional(P.boolean)},!1),s!=null&&(a.isFunction(s)?n.paramsSerializer={serialize:s}:le.assertOptions(s,{encode:P.function,serialize:P.function},!0)),n.method=(n.method||this.defaults.method||"get").toLowerCase();let i=o&&a.merge(o.common,o[n.method]);o&&a.forEach(["delete","get","head","post","put","patch","common"],p=>{delete o[p]}),n.headers=R.concat(i,o);const c=[];let f=!0;this.interceptors.request.forEach(function(m){typeof m.runWhen=="function"&&m.runWhen(n)===!1||(f=f&&m.synchronous,c.unshift(m.fulfilled,m.rejected))});const l=[];this.interceptors.response.forEach(function(m){l.push(m.fulfilled,m.rejected)});let u,d=0,b;if(!f){const p=[We.bind(this),void 0];for(p.unshift.apply(p,c),p.push.apply(p,l),b=p.length,u=Promise.resolve(n);d<b;)u=u.then(p[d++],p[d++]);return u}b=c.length;let y=n;for(d=0;d<b;){const p=c[d++],m=c[d++];try{y=p(y)}catch(S){m.call(this,S);break}}try{u=We.call(this,y)}catch(p){return Promise.reject(p)}for(d=0,b=l.length;d<b;)u=u.then(l[d++],l[d++]);return u}getUri(t){t=F(this.defaults,t);const n=qe(t.baseURL,t.url);return Fe(n,t.params,t.paramsSerializer)}}a.forEach(["delete","get","head","options"],function(t){B.prototype[t]=function(n,r){return this.request(F(r||{},{method:t,url:n,data:(r||{}).data}))}}),a.forEach(["post","put","patch"],function(t){function n(r){return function(o,i,c){return this.request(F(c||{},{method:t,headers:r?{"Content-Type":"multipart/form-data"}:{},url:o,data:i}))}}B.prototype[t]=n(),B.prototype[t+"Form"]=n(!0)});class fe{constructor(t){if(typeof t!="function")throw new TypeError("executor must be a function.");let n;this.promise=new Promise(function(o){n=o});const r=this;this.promise.then(s=>{if(!r._listeners)return;let o=r._listeners.length;for(;o-- >0;)r._listeners[o](s);r._listeners=null}),this.promise.then=s=>{let o;const i=new Promise(c=>{r.subscribe(c),o=c}).then(s);return i.cancel=function(){r.unsubscribe(o)},i},t(function(o,i,c){r.reason||(r.reason=new D(o,i,c),n(r.reason))})}throwIfRequested(){if(this.reason)throw this.reason}subscribe(t){if(this.reason){t(this.reason);return}this._listeners?this._listeners.push(t):this._listeners=[t]}unsubscribe(t){if(!this._listeners)return;const n=this._listeners.indexOf(t);n!==-1&&this._listeners.splice(n,1)}static source(){let t;return{token:new fe(function(s){t=s}),cancel:t}}}function mn(e){return function(n){return e.apply(null,n)}}function yn(e){return a.isObject(e)&&e.isAxiosError===!0}const de={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};Object.entries(de).forEach(([e,t])=>{de[t]=e});function ve(e){const t=new B(e),n=L(B.prototype.request,t);return a.extend(n,B.prototype,t,{allOwnKeys:!0}),a.extend(n,t,null,{allOwnKeys:!0}),n.create=function(s){return ve(F(e,s))},n}const E=ve(I);E.Axios=B,E.CanceledError=D,E.CancelToken=fe,E.isCancel=ke,E.VERSION=Ke,E.toFormData=W,E.AxiosError=h,E.Cancel=E.CanceledError,E.all=function(t){return Promise.all(t)},E.spread=mn,E.isAxiosError=yn,E.mergeConfig=F,E.AxiosHeaders=R,E.formToJSON=e=>_e(a.isHTMLForm(e)?new FormData(e):e),E.getAdapter=Ve.getAdapter,E.HttpStatusCode=de,E.default=E;const C=e=>{var i,c;const t=E.create(),n=e.apiVersion,r=e.productCode,s=e.baseUrl;return e.responseInterceptor&&t.interceptors.response.use((i=e.responseInterceptor)==null?void 0:i.onFulfilled,(c=e.responseInterceptor)==null?void 0:c.onReject),{request:async(f,l)=>{const u=`${s}/${r}/${n}${f}`,d={"Content-Type":(l==null?void 0:l.contentType)||"application/json",apiVersion:n,Authorization:""};localStorage.getItem("accessToken")&&(d.Authorization="Bearer "+localStorage.getItem("accessToken"));const b={method:(l==null?void 0:l.method)||"GET",headers:d,url:u,data:l==null?void 0:l.data};return await t.request(b)}}},bn="cep";function wn(e){const t=C(e);function n(r){return t.request(`/${bn}`,{method:"POST",data:JSON.stringify(r)})}return{getAddress:n}}const Qe="auth",En=e=>{const t=C(e);return{postLogin:async s=>{var i;const o=await t.request(`/${Qe}/login`,{method:"POST",data:JSON.stringify(s)});return o.status===200&&((i=o.data)!=null&&i.accessToken)&&localStorage.setItem("accessToken",o.data.accessToken),o},getToken:async s=>await t.request(`/${Qe}?code=${s}`,{method:"GET",data:""})}},Sn="digital",gn=e=>{const t=C(e);return{getBroker:()=>t.request(`/${Sn}/getBroker`,{method:"GET",data:""})}},Rn="data",Tn=e=>{const t=C(e);return{postData:async r=>await t.request(`/${Rn}`,{method:"POST",data:JSON.stringify(r)})}},pe="payment",On=e=>{const t=C(e);return{postPayment:o=>t.request(`/${pe}`,{method:"POST",data:JSON.stringify(o)}),getPaymentStatus:o=>t.request(`/${pe}/status?policyId=${o.policyId}`,{method:"GET",data:""}),getPaymentSummary:o=>t.request(`/${pe}/summary?policyId=${o.policyId}`,{method:"GET",data:""})}},An="product/action",Nn=e=>{const t=C(e);return{getCnpjStatus:r=>t.request(`/${An}/Custom/CnpjCheck?cnpj=${r}`,{method:"GET",data:""})}},he="quotation",Pn=e=>{const t=C(e);return{postQuickQuote:o=>t.request(`/${he}/QuickQuote`,{method:"POST",data:JSON.stringify(o)}),postFullQuote:o=>t.request(`/${he}/FullQuote`,{method:"POST",data:JSON.stringify(o)}),postBind:o=>t.request(`/${he}/Bind`,{method:"POST",data:JSON.stringify(o)})}},Cn="report",xn=e=>{const t=C(e);return{getCertificateReport:r=>t.request(`/${Cn}/generate-stream?policyId=${r.policyId}&documentType=certificate`,{method:"GET",data:"",contentType:"blob"})}};function Fn(e){const t=En(e),n=Tn(e),r=Pn(e),s=On(e),o=wn(e),i=gn(e),c=Nn(e),f=xn(e);return{auth:t,data:n,quotation:r,payment:s,address:o,broker:i,plugin:c,report:f}}return Fn});
5
+ `):" "+Je(o[0]):"as no adapter specified";throw new h("There is no suitable adapter to dispatch the request "+i,"ERR_NOT_SUPPORT")}return r},adapters:ce};function ue(e){if(e.cancelToken&&e.cancelToken.throwIfRequested(),e.signal&&e.signal.aborted)throw new D(null,e)}function We(e){return ue(e),e.headers=R.from(e.headers),e.data=oe.call(e,e.transformRequest),["post","put","patch"].indexOf(e.method)!==-1&&e.headers.setContentType("application/x-www-form-urlencoded",!1),Ve.getAdapter(e.adapter||I.adapter)(e).then(function(r){return ue(e),r.data=oe.call(e,e.transformResponse,r),r.headers=R.from(r.headers),r},function(r){return ke(r)||(ue(e),r&&r.response&&(r.response.data=oe.call(e,e.transformResponse,r.response),r.response.headers=R.from(r.response.headers))),Promise.reject(r)})}const Ke="1.7.2",le={};["object","boolean","number","function","string","symbol"].forEach((e,t)=>{le[e]=function(r){return typeof r===e||"a"+(t<1?"n ":" ")+e}});const Ge={};le.transitional=function(t,n,r){function s(o,i){return"[Axios v"+Ke+"] Transitional option '"+o+"'"+i+(r?". "+r:"")}return(o,i,c)=>{if(t===!1)throw new h(s(i," has been removed"+(n?" in "+n:"")),h.ERR_DEPRECATED);return n&&!Ge[i]&&(Ge[i]=!0,console.warn(s(i," has been deprecated since v"+n+" and will be removed in the near future"))),t?t(o,i,c):!0}};function hn(e,t,n){if(typeof e!="object")throw new h("options must be an object",h.ERR_BAD_OPTION_VALUE);const r=Object.keys(e);let s=r.length;for(;s-- >0;){const o=r[s],i=t[o];if(i){const c=e[o],f=c===void 0||i(c,o,e);if(f!==!0)throw new h("option "+o+" must be "+f,h.ERR_BAD_OPTION_VALUE);continue}if(n!==!0)throw new h("Unknown option "+o,h.ERR_BAD_OPTION)}}const fe={assertOptions:hn,validators:le},N=fe.validators;class B{constructor(t){this.defaults=t,this.interceptors={request:new Be,response:new Be}}async request(t,n){try{return await this._request(t,n)}catch(r){if(r instanceof Error){let s;Error.captureStackTrace?Error.captureStackTrace(s={}):s=new Error;const o=s.stack?s.stack.replace(/^.+\n/,""):"";try{r.stack?o&&!String(r.stack).endsWith(o.replace(/^.+\n.+\n/,""))&&(r.stack+=`
6
+ `+o):r.stack=o}catch{}}throw r}}_request(t,n){typeof t=="string"?(n=n||{},n.url=t):n=t||{},n=F(this.defaults,n);const{transitional:r,paramsSerializer:s,headers:o}=n;r!==void 0&&fe.assertOptions(r,{silentJSONParsing:N.transitional(N.boolean),forcedJSONParsing:N.transitional(N.boolean),clarifyTimeoutError:N.transitional(N.boolean)},!1),s!=null&&(a.isFunction(s)?n.paramsSerializer={serialize:s}:fe.assertOptions(s,{encode:N.function,serialize:N.function},!0)),n.method=(n.method||this.defaults.method||"get").toLowerCase();let i=o&&a.merge(o.common,o[n.method]);o&&a.forEach(["delete","get","head","post","put","patch","common"],p=>{delete o[p]}),n.headers=R.concat(i,o);const c=[];let f=!0;this.interceptors.request.forEach(function(m){typeof m.runWhen=="function"&&m.runWhen(n)===!1||(f=f&&m.synchronous,c.unshift(m.fulfilled,m.rejected))});const l=[];this.interceptors.response.forEach(function(m){l.push(m.fulfilled,m.rejected)});let u,d=0,b;if(!f){const p=[We.bind(this),void 0];for(p.unshift.apply(p,c),p.push.apply(p,l),b=p.length,u=Promise.resolve(n);d<b;)u=u.then(p[d++],p[d++]);return u}b=c.length;let y=n;for(d=0;d<b;){const p=c[d++],m=c[d++];try{y=p(y)}catch(S){m.call(this,S);break}}try{u=We.call(this,y)}catch(p){return Promise.reject(p)}for(d=0,b=l.length;d<b;)u=u.then(l[d++],l[d++]);return u}getUri(t){t=F(this.defaults,t);const n=qe(t.baseURL,t.url);return Fe(n,t.params,t.paramsSerializer)}}a.forEach(["delete","get","head","options"],function(t){B.prototype[t]=function(n,r){return this.request(F(r||{},{method:t,url:n,data:(r||{}).data}))}}),a.forEach(["post","put","patch"],function(t){function n(r){return function(o,i,c){return this.request(F(c||{},{method:t,headers:r?{"Content-Type":"multipart/form-data"}:{},url:o,data:i}))}}B.prototype[t]=n(),B.prototype[t+"Form"]=n(!0)});class de{constructor(t){if(typeof t!="function")throw new TypeError("executor must be a function.");let n;this.promise=new Promise(function(o){n=o});const r=this;this.promise.then(s=>{if(!r._listeners)return;let o=r._listeners.length;for(;o-- >0;)r._listeners[o](s);r._listeners=null}),this.promise.then=s=>{let o;const i=new Promise(c=>{r.subscribe(c),o=c}).then(s);return i.cancel=function(){r.unsubscribe(o)},i},t(function(o,i,c){r.reason||(r.reason=new D(o,i,c),n(r.reason))})}throwIfRequested(){if(this.reason)throw this.reason}subscribe(t){if(this.reason){t(this.reason);return}this._listeners?this._listeners.push(t):this._listeners=[t]}unsubscribe(t){if(!this._listeners)return;const n=this._listeners.indexOf(t);n!==-1&&this._listeners.splice(n,1)}static source(){let t;return{token:new de(function(s){t=s}),cancel:t}}}function mn(e){return function(n){return e.apply(null,n)}}function yn(e){return a.isObject(e)&&e.isAxiosError===!0}const pe={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};Object.entries(pe).forEach(([e,t])=>{pe[t]=e});function Qe(e){const t=new B(e),n=L(B.prototype.request,t);return a.extend(n,B.prototype,t,{allOwnKeys:!0}),a.extend(n,t,null,{allOwnKeys:!0}),n.create=function(s){return Qe(F(e,s))},n}const E=Qe(I);E.Axios=B,E.CanceledError=D,E.CancelToken=de,E.isCancel=ke,E.VERSION=Ke,E.toFormData=W,E.AxiosError=h,E.Cancel=E.CanceledError,E.all=function(t){return Promise.all(t)},E.spread=mn,E.isAxiosError=yn,E.mergeConfig=F,E.AxiosHeaders=R,E.formToJSON=e=>_e(a.isHTMLForm(e)?new FormData(e):e),E.getAdapter=Ve.getAdapter,E.HttpStatusCode=pe,E.default=E;const x=e=>{var i,c;const t=E.create(),n=e.apiVersion,r=e.productCode,s=e.baseUrl;return e.responseInterceptor&&t.interceptors.response.use((i=e.responseInterceptor)==null?void 0:i.onFulfilled,(c=e.responseInterceptor)==null?void 0:c.onReject),{request:async(f,l)=>{const u=`${s}/${r}/${n}${f}`,d={"Content-Type":(l==null?void 0:l.contentType)||"application/json",apiVersion:n,Authorization:""};localStorage.getItem("accessToken")&&(d.Authorization="Bearer "+localStorage.getItem("accessToken"));const b={method:(l==null?void 0:l.method)||"GET",headers:d,url:u,data:l==null?void 0:l.data,responseType:l==null?void 0:l.responseType};return await t.request(b)}}},bn="cep";function wn(e){const t=x(e);function n(r){return t.request(`/${bn}`,{method:"POST",data:JSON.stringify(r)})}return{getAddress:n}}const ve="auth",En=e=>{const t=x(e);return{postLogin:async s=>{var i;const o=await t.request(`/${ve}/login`,{method:"POST",data:JSON.stringify(s)});return o.status===200&&((i=o.data)!=null&&i.accessToken)&&localStorage.setItem("accessToken",o.data.accessToken),o},getToken:async s=>await t.request(`/${ve}?code=${s}`,{method:"GET",data:""})}},Sn="digital",gn=e=>{const t=x(e);return{getBroker:()=>t.request(`/${Sn}/getBroker`,{method:"GET",data:""})}},Rn="data",Tn=e=>{const t=x(e);return{postData:async r=>await t.request(`/${Rn}`,{method:"POST",data:JSON.stringify(r)})}},he="payment",On=e=>{const t=x(e);return{postPayment:o=>t.request(`/${he}`,{method:"POST",data:JSON.stringify(o)}),getPaymentStatus:o=>t.request(`/${he}/status?policyId=${o.policyId}`,{method:"GET",data:""}),getPaymentSummary:o=>t.request(`/${he}/summary?policyId=${o.policyId}`,{method:"GET",data:""})}},An="product/action",Pn=e=>{const t=x(e);return{getCnpjStatus:r=>t.request(`/${An}/Custom/CnpjCheck?cnpj=${r}`,{method:"GET",data:""})}},X="quotation",Nn=e=>{const t=x(e);return{postQuickQuote:i=>t.request(`/${X}/QuickQuote`,{method:"POST",data:JSON.stringify(i)}),postFullQuote:i=>t.request(`/${X}/FullQuote`,{method:"POST",data:JSON.stringify(i)}),postBind:i=>t.request(`/${X}/Bind`,{method:"POST",data:JSON.stringify(i)}),getQuotation:i=>t.request(`/${X}?id=${i.policyId}`,{method:"GET",data:""})}},xn="report",Cn=e=>{const t=x(e);return{getReportStream:r=>{const s=new URLSearchParams({policyId:r.policyId,documentType:r.documentType||"certificate",...r.additionalParams});return t.request(`/${xn}/generate-stream?${s.toString()}`,{method:"GET",data:"",responseType:"blob"})}}};function Fn(e){const t=En(e),n=Tn(e),r=Nn(e),s=On(e),o=wn(e),i=gn(e),c=Pn(e),f=Cn(e);return{auth:t,data:n,quotation:r,payment:s,address:o,broker:i,plugin:c,report:f}}return Fn});