@instockng/storefront-ui 1.0.1 → 1.0.2

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/dist/index64.mjs CHANGED
@@ -1,136 +1,237 @@
1
- import d from "./index62.mjs";
2
- import U from "./index81.mjs";
3
- import q from "./index82.mjs";
4
- import R from "./index83.mjs";
5
- import w from "./index65.mjs";
6
- import A from "./index84.mjs";
7
- import m from "./index85.mjs";
8
- import T from "./index76.mjs";
9
- const i = m.validators;
10
- class k {
11
- constructor(t) {
12
- this.defaults = t || {}, this.interceptors = {
13
- request: new q(),
14
- response: new q()
15
- };
1
+ import R from "./index65.mjs";
2
+ const { toString: T } = Object.prototype, { getPrototypeOf: A } = Object, { iterator: g, toStringTag: S } = Symbol, F = /* @__PURE__ */ ((e) => (t) => {
3
+ const n = T.call(t);
4
+ return e[n] || (e[n] = n.slice(8, -1).toLowerCase());
5
+ })(/* @__PURE__ */ Object.create(null)), f = (e) => (e = e.toLowerCase(), (t) => F(t) === e), O = (e) => (t) => typeof t === e, { isArray: p } = Array, a = O("undefined");
6
+ function d(e) {
7
+ return e !== null && !a(e) && e.constructor !== null && !a(e.constructor) && c(e.constructor.isBuffer) && e.constructor.isBuffer(e);
8
+ }
9
+ const B = f("ArrayBuffer");
10
+ function M(e) {
11
+ let t;
12
+ return typeof ArrayBuffer < "u" && ArrayBuffer.isView ? t = ArrayBuffer.isView(e) : t = e && e.buffer && B(e.buffer), t;
13
+ }
14
+ const k = O("string"), c = O("function"), E = O("number"), y = (e) => e !== null && typeof e == "object", N = (e) => e === !0 || e === !1, w = (e) => {
15
+ if (F(e) !== "object")
16
+ return !1;
17
+ const t = A(e);
18
+ return (t === null || t === Object.prototype || Object.getPrototypeOf(t) === null) && !(S in e) && !(g in e);
19
+ }, U = (e) => {
20
+ if (!y(e) || d(e))
21
+ return !1;
22
+ try {
23
+ return Object.keys(e).length === 0 && Object.getPrototypeOf(e) === Object.prototype;
24
+ } catch {
25
+ return !1;
16
26
  }
17
- /**
18
- * Dispatch a request
19
- *
20
- * @param {String|Object} configOrUrl The config specific for this request (merged with this.defaults)
21
- * @param {?Object} config
22
- *
23
- * @returns {Promise} The Promise to be fulfilled
24
- */
25
- async request(t, e) {
26
- try {
27
- return await this._request(t, e);
28
- } catch (r) {
29
- if (r instanceof Error) {
30
- let o = {};
31
- Error.captureStackTrace ? Error.captureStackTrace(o) : o = new Error();
32
- const s = o.stack ? o.stack.replace(/^.+\n/, "") : "";
33
- try {
34
- r.stack ? s && !String(r.stack).endsWith(s.replace(/^.+\n.+\n/, "")) && (r.stack += `
35
- ` + s) : r.stack = s;
36
- } catch {
37
- }
38
- }
39
- throw r;
40
- }
27
+ }, I = f("Date"), V = f("File"), _ = f("Blob"), q = f("FileList"), H = (e) => y(e) && c(e.pipe), z = (e) => {
28
+ let t;
29
+ return e && (typeof FormData == "function" && e instanceof FormData || c(e.append) && ((t = F(e)) === "formdata" || // detect form-data instance
30
+ t === "object" && c(e.toString) && e.toString() === "[object FormData]"));
31
+ }, J = f("URLSearchParams"), [K, $, W, G] = ["ReadableStream", "Request", "Response", "Headers"].map(f), Q = (e) => e.trim ? e.trim() : e.replace(/^[\s\uFEFF\xA0]+|[\s\uFEFF\xA0]+$/g, "");
32
+ function m(e, t, { allOwnKeys: n = !1 } = {}) {
33
+ if (e === null || typeof e > "u")
34
+ return;
35
+ let r, s;
36
+ if (typeof e != "object" && (e = [e]), p(e))
37
+ for (r = 0, s = e.length; r < s; r++)
38
+ t.call(null, e[r], r, e);
39
+ else {
40
+ if (d(e))
41
+ return;
42
+ const o = n ? Object.getOwnPropertyNames(e) : Object.keys(e), i = o.length;
43
+ let l;
44
+ for (r = 0; r < i; r++)
45
+ l = o[r], t.call(null, e[l], l, e);
41
46
  }
42
- _request(t, e) {
43
- typeof t == "string" ? (e = e || {}, e.url = t) : e = t || {}, e = w(this.defaults, e);
44
- const { transitional: r, paramsSerializer: o, headers: s } = e;
45
- r !== void 0 && m.assertOptions(r, {
46
- silentJSONParsing: i.transitional(i.boolean),
47
- forcedJSONParsing: i.transitional(i.boolean),
48
- clarifyTimeoutError: i.transitional(i.boolean)
49
- }, !1), o != null && (d.isFunction(o) ? e.paramsSerializer = {
50
- serialize: o
51
- } : m.assertOptions(o, {
52
- encode: i.function,
53
- serialize: i.function
54
- }, !0)), e.allowAbsoluteUrls !== void 0 || (this.defaults.allowAbsoluteUrls !== void 0 ? e.allowAbsoluteUrls = this.defaults.allowAbsoluteUrls : e.allowAbsoluteUrls = !0), m.assertOptions(e, {
55
- baseUrl: i.spelling("baseURL"),
56
- withXsrfToken: i.spelling("withXSRFToken")
57
- }, !0), e.method = (e.method || this.defaults.method || "get").toLowerCase();
58
- let f = s && d.merge(
59
- s.common,
60
- s[e.method]
61
- );
62
- s && d.forEach(
63
- ["delete", "get", "head", "post", "put", "patch", "common"],
64
- (a) => {
65
- delete s[a];
47
+ }
48
+ function P(e, t) {
49
+ if (d(e))
50
+ return null;
51
+ t = t.toLowerCase();
52
+ const n = Object.keys(e);
53
+ let r = n.length, s;
54
+ for (; r-- > 0; )
55
+ if (s = n[r], t === s.toLowerCase())
56
+ return s;
57
+ return null;
58
+ }
59
+ const u = typeof globalThis < "u" ? globalThis : typeof self < "u" ? self : typeof window < "u" ? window : global, L = (e) => !a(e) && e !== u;
60
+ function h() {
61
+ const { caseless: e, skipUndefined: t } = L(this) && this || {}, n = {}, r = (s, o) => {
62
+ const i = e && P(n, o) || o;
63
+ w(n[i]) && w(s) ? n[i] = h(n[i], s) : w(s) ? n[i] = h({}, s) : p(s) ? n[i] = s.slice() : (!t || !a(s)) && (n[i] = s);
64
+ };
65
+ for (let s = 0, o = arguments.length; s < o; s++)
66
+ arguments[s] && m(arguments[s], r);
67
+ return n;
68
+ }
69
+ const X = (e, t, n, { allOwnKeys: r } = {}) => (m(t, (s, o) => {
70
+ n && c(s) ? e[o] = R(s, n) : e[o] = s;
71
+ }, { allOwnKeys: r }), e), Y = (e) => (e.charCodeAt(0) === 65279 && (e = e.slice(1)), e), Z = (e, t, n, r) => {
72
+ e.prototype = Object.create(t.prototype, r), e.prototype.constructor = e, Object.defineProperty(e, "super", {
73
+ value: t.prototype
74
+ }), n && Object.assign(e.prototype, n);
75
+ }, j = (e, t, n, r) => {
76
+ let s, o, i;
77
+ const l = {};
78
+ if (t = t || {}, e == null) return t;
79
+ do {
80
+ for (s = Object.getOwnPropertyNames(e), o = s.length; o-- > 0; )
81
+ i = s[o], (!r || r(i, e, t)) && !l[i] && (t[i] = e[i], l[i] = !0);
82
+ e = n !== !1 && A(e);
83
+ } while (e && (!n || n(e, t)) && e !== Object.prototype);
84
+ return t;
85
+ }, v = (e, t, n) => {
86
+ e = String(e), (n === void 0 || n > e.length) && (n = e.length), n -= t.length;
87
+ const r = e.indexOf(t, n);
88
+ return r !== -1 && r === n;
89
+ }, ee = (e) => {
90
+ if (!e) return null;
91
+ if (p(e)) return e;
92
+ let t = e.length;
93
+ if (!E(t)) return null;
94
+ const n = new Array(t);
95
+ for (; t-- > 0; )
96
+ n[t] = e[t];
97
+ return n;
98
+ }, te = /* @__PURE__ */ ((e) => (t) => e && t instanceof e)(typeof Uint8Array < "u" && A(Uint8Array)), ne = (e, t) => {
99
+ const r = (e && e[g]).call(e);
100
+ let s;
101
+ for (; (s = r.next()) && !s.done; ) {
102
+ const o = s.value;
103
+ t.call(e, o[0], o[1]);
104
+ }
105
+ }, re = (e, t) => {
106
+ let n;
107
+ const r = [];
108
+ for (; (n = e.exec(t)) !== null; )
109
+ r.push(n);
110
+ return r;
111
+ }, se = f("HTMLFormElement"), oe = (e) => e.toLowerCase().replace(
112
+ /[-_\s]([a-z\d])(\w*)/g,
113
+ function(n, r, s) {
114
+ return r.toUpperCase() + s;
115
+ }
116
+ ), x = (({ hasOwnProperty: e }) => (t, n) => e.call(t, n))(Object.prototype), ie = f("RegExp"), C = (e, t) => {
117
+ const n = Object.getOwnPropertyDescriptors(e), r = {};
118
+ m(n, (s, o) => {
119
+ let i;
120
+ (i = t(s, o, e)) !== !1 && (r[o] = i || s);
121
+ }), Object.defineProperties(e, r);
122
+ }, ce = (e) => {
123
+ C(e, (t, n) => {
124
+ if (c(e) && ["arguments", "caller", "callee"].indexOf(n) !== -1)
125
+ return !1;
126
+ const r = e[n];
127
+ if (c(r)) {
128
+ if (t.enumerable = !1, "writable" in t) {
129
+ t.writable = !1;
130
+ return;
66
131
  }
67
- ), e.headers = T.concat(f, s);
68
- const h = [];
69
- let b = !0;
70
- this.interceptors.request.forEach(function(n) {
71
- typeof n.runWhen == "function" && n.runWhen(e) === !1 || (b = b && n.synchronous, h.unshift(n.fulfilled, n.rejected));
72
- });
73
- const c = [];
74
- this.interceptors.response.forEach(function(n) {
75
- c.push(n.fulfilled, n.rejected);
76
- });
77
- let u, l = 0, p;
78
- if (!b) {
79
- const a = [R.bind(this), void 0];
80
- for (a.unshift(...h), a.push(...c), p = a.length, u = Promise.resolve(e); l < p; )
81
- u = u.then(a[l++], a[l++]);
82
- return u;
132
+ t.set || (t.set = () => {
133
+ throw Error("Can not rewrite read-only method '" + n + "'");
134
+ });
83
135
  }
84
- p = h.length;
85
- let y = e;
86
- for (; l < p; ) {
87
- const a = h[l++], n = h[l++];
88
- try {
89
- y = a(y);
90
- } catch (S) {
91
- n.call(this, S);
92
- break;
136
+ });
137
+ }, fe = (e, t) => {
138
+ const n = {}, r = (s) => {
139
+ s.forEach((o) => {
140
+ n[o] = !0;
141
+ });
142
+ };
143
+ return p(e) ? r(e) : r(String(e).split(t)), n;
144
+ }, le = () => {
145
+ }, ue = (e, t) => e != null && Number.isFinite(e = +e) ? e : t;
146
+ function ae(e) {
147
+ return !!(e && c(e.append) && e[S] === "FormData" && e[g]);
148
+ }
149
+ const pe = (e) => {
150
+ const t = new Array(10), n = (r, s) => {
151
+ if (y(r)) {
152
+ if (t.indexOf(r) >= 0)
153
+ return;
154
+ if (d(r))
155
+ return r;
156
+ if (!("toJSON" in r)) {
157
+ t[s] = r;
158
+ const o = p(r) ? [] : {};
159
+ return m(r, (i, l) => {
160
+ const b = n(i, s + 1);
161
+ !a(b) && (o[l] = b);
162
+ }), t[s] = void 0, o;
93
163
  }
94
164
  }
95
- try {
96
- u = R.call(this, y);
97
- } catch (a) {
98
- return Promise.reject(a);
99
- }
100
- for (l = 0, p = c.length; l < p; )
101
- u = u.then(c[l++], c[l++]);
102
- return u;
103
- }
104
- getUri(t) {
105
- t = w(this.defaults, t);
106
- const e = A(t.baseURL, t.url, t.allowAbsoluteUrls);
107
- return U(e, t.params, t.paramsSerializer);
108
- }
109
- }
110
- d.forEach(["delete", "get", "head", "options"], function(t) {
111
- k.prototype[t] = function(e, r) {
112
- return this.request(w(r || {}, {
113
- method: t,
114
- url: e,
115
- data: (r || {}).data
116
- }));
165
+ return r;
117
166
  };
118
- });
119
- d.forEach(["post", "put", "patch"], function(t) {
120
- function e(r) {
121
- return function(s, f, h) {
122
- return this.request(w(h || {}, {
123
- method: t,
124
- headers: r ? {
125
- "Content-Type": "multipart/form-data"
126
- } : {},
127
- url: s,
128
- data: f
129
- }));
130
- };
131
- }
132
- k.prototype[t] = e(), k.prototype[t + "Form"] = e(!0);
133
- });
167
+ return n(e, 0);
168
+ }, de = f("AsyncFunction"), ye = (e) => e && (y(e) || c(e)) && c(e.then) && c(e.catch), D = ((e, t) => e ? setImmediate : t ? ((n, r) => (u.addEventListener("message", ({ source: s, data: o }) => {
169
+ s === u && o === n && r.length && r.shift()();
170
+ }, !1), (s) => {
171
+ r.push(s), u.postMessage(n, "*");
172
+ }))(`axios@${Math.random()}`, []) : (n) => setTimeout(n))(
173
+ typeof setImmediate == "function",
174
+ c(u.postMessage)
175
+ ), me = typeof queueMicrotask < "u" ? queueMicrotask.bind(u) : typeof process < "u" && process.nextTick || D, we = (e) => e != null && c(e[g]), Fe = {
176
+ isArray: p,
177
+ isArrayBuffer: B,
178
+ isBuffer: d,
179
+ isFormData: z,
180
+ isArrayBufferView: M,
181
+ isString: k,
182
+ isNumber: E,
183
+ isBoolean: N,
184
+ isObject: y,
185
+ isPlainObject: w,
186
+ isEmptyObject: U,
187
+ isReadableStream: K,
188
+ isRequest: $,
189
+ isResponse: W,
190
+ isHeaders: G,
191
+ isUndefined: a,
192
+ isDate: I,
193
+ isFile: V,
194
+ isBlob: _,
195
+ isRegExp: ie,
196
+ isFunction: c,
197
+ isStream: H,
198
+ isURLSearchParams: J,
199
+ isTypedArray: te,
200
+ isFileList: q,
201
+ forEach: m,
202
+ merge: h,
203
+ extend: X,
204
+ trim: Q,
205
+ stripBOM: Y,
206
+ inherits: Z,
207
+ toFlatObject: j,
208
+ kindOf: F,
209
+ kindOfTest: f,
210
+ endsWith: v,
211
+ toArray: ee,
212
+ forEachEntry: ne,
213
+ matchAll: re,
214
+ isHTMLForm: se,
215
+ hasOwnProperty: x,
216
+ hasOwnProp: x,
217
+ // an alias to avoid ESLint no-prototype-builtins detection
218
+ reduceDescriptors: C,
219
+ freezeMethods: ce,
220
+ toObjectSet: fe,
221
+ toCamelCase: oe,
222
+ noop: le,
223
+ toFiniteNumber: ue,
224
+ findKey: P,
225
+ global: u,
226
+ isContextDefined: L,
227
+ isSpecCompliantForm: ae,
228
+ toJSONObject: pe,
229
+ isAsyncFn: de,
230
+ isThenable: ye,
231
+ setImmediate: D,
232
+ asap: me,
233
+ isIterable: we
234
+ };
134
235
  export {
135
- k as default
236
+ Fe as default
136
237
  };
package/dist/index65.mjs CHANGED
@@ -1,70 +1,8 @@
1
- import i from "./index62.mjs";
2
- import h from "./index76.mjs";
3
- const c = (s) => s instanceof h ? { ...s } : s;
4
- function C(s, f) {
5
- f = f || {};
6
- const u = {};
7
- function d(t, e, r, o) {
8
- return i.isPlainObject(t) && i.isPlainObject(e) ? i.merge.call({ caseless: o }, t, e) : i.isPlainObject(e) ? i.merge({}, e) : i.isArray(e) ? e.slice() : e;
9
- }
10
- function l(t, e, r, o) {
11
- if (i.isUndefined(e)) {
12
- if (!i.isUndefined(t))
13
- return d(void 0, t, r, o);
14
- } else return d(t, e, r, o);
15
- }
16
- function a(t, e) {
17
- if (!i.isUndefined(e))
18
- return d(void 0, e);
19
- }
20
- function n(t, e) {
21
- if (i.isUndefined(e)) {
22
- if (!i.isUndefined(t))
23
- return d(void 0, t);
24
- } else return d(void 0, e);
25
- }
26
- function m(t, e, r) {
27
- if (r in f)
28
- return d(t, e);
29
- if (r in s)
30
- return d(void 0, t);
31
- }
32
- const g = {
33
- url: a,
34
- method: a,
35
- data: a,
36
- baseURL: n,
37
- transformRequest: n,
38
- transformResponse: n,
39
- paramsSerializer: n,
40
- timeout: n,
41
- timeoutMessage: n,
42
- withCredentials: n,
43
- withXSRFToken: n,
44
- adapter: n,
45
- responseType: n,
46
- xsrfCookieName: n,
47
- xsrfHeaderName: n,
48
- onUploadProgress: n,
49
- onDownloadProgress: n,
50
- decompress: n,
51
- maxContentLength: n,
52
- maxBodyLength: n,
53
- beforeRedirect: n,
54
- transport: n,
55
- httpAgent: n,
56
- httpsAgent: n,
57
- cancelToken: n,
58
- socketPath: n,
59
- responseEncoding: n,
60
- validateStatus: m,
61
- headers: (t, e, r) => l(c(t), c(e), r, !0)
1
+ function u(n, r) {
2
+ return function() {
3
+ return n.apply(r, arguments);
62
4
  };
63
- return i.forEach(Object.keys({ ...s, ...f }), function(e) {
64
- const r = g[e] || l, o = r(s[e], f[e], e);
65
- i.isUndefined(o) && r !== m || (u[e] = o);
66
- }), u;
67
5
  }
68
6
  export {
69
- C as default
7
+ u as default
70
8
  };
package/dist/index66.mjs CHANGED
@@ -1,89 +1,136 @@
1
- import t from "./index62.mjs";
2
- import c from "./index73.mjs";
3
- import u from "./index86.mjs";
4
- import S from "./index72.mjs";
5
- import h from "./index87.mjs";
6
- import a from "./index88.mjs";
7
- import O from "./index67.mjs";
8
- function y(i, r, e) {
9
- if (t.isString(i))
1
+ import d from "./index64.mjs";
2
+ import U from "./index81.mjs";
3
+ import q from "./index82.mjs";
4
+ import R from "./index83.mjs";
5
+ import w from "./index67.mjs";
6
+ import A from "./index84.mjs";
7
+ import m from "./index85.mjs";
8
+ import T from "./index78.mjs";
9
+ const i = m.validators;
10
+ class k {
11
+ constructor(t) {
12
+ this.defaults = t || {}, this.interceptors = {
13
+ request: new q(),
14
+ response: new q()
15
+ };
16
+ }
17
+ /**
18
+ * Dispatch a request
19
+ *
20
+ * @param {String|Object} configOrUrl The config specific for this request (merged with this.defaults)
21
+ * @param {?Object} config
22
+ *
23
+ * @returns {Promise} The Promise to be fulfilled
24
+ */
25
+ async request(t, e) {
10
26
  try {
11
- return (r || JSON.parse)(i), t.trim(i);
12
- } catch (n) {
13
- if (n.name !== "SyntaxError")
14
- throw n;
27
+ return await this._request(t, e);
28
+ } catch (r) {
29
+ if (r instanceof Error) {
30
+ let o = {};
31
+ Error.captureStackTrace ? Error.captureStackTrace(o) : o = new Error();
32
+ const s = o.stack ? o.stack.replace(/^.+\n/, "") : "";
33
+ try {
34
+ r.stack ? s && !String(r.stack).endsWith(s.replace(/^.+\n.+\n/, "")) && (r.stack += `
35
+ ` + s) : r.stack = s;
36
+ } catch {
37
+ }
38
+ }
39
+ throw r;
15
40
  }
16
- return (e || JSON.stringify)(i);
17
- }
18
- const l = {
19
- transitional: u,
20
- adapter: ["xhr", "http", "fetch"],
21
- transformRequest: [function(r, e) {
22
- const n = e.getContentType() || "", s = n.indexOf("application/json") > -1, f = t.isObject(r);
23
- if (f && t.isHTMLForm(r) && (r = new FormData(r)), t.isFormData(r))
24
- return s ? JSON.stringify(O(r)) : r;
25
- if (t.isArrayBuffer(r) || t.isBuffer(r) || t.isStream(r) || t.isFile(r) || t.isBlob(r) || t.isReadableStream(r))
26
- return r;
27
- if (t.isArrayBufferView(r))
28
- return r.buffer;
29
- if (t.isURLSearchParams(r))
30
- return e.setContentType("application/x-www-form-urlencoded;charset=utf-8", !1), r.toString();
31
- let o;
32
- if (f) {
33
- if (n.indexOf("application/x-www-form-urlencoded") > -1)
34
- return h(r, this.formSerializer).toString();
35
- if ((o = t.isFileList(r)) || n.indexOf("multipart/form-data") > -1) {
36
- const p = this.env && this.env.FormData;
37
- return S(
38
- o ? { "files[]": r } : r,
39
- p && new p(),
40
- this.formSerializer
41
- );
41
+ }
42
+ _request(t, e) {
43
+ typeof t == "string" ? (e = e || {}, e.url = t) : e = t || {}, e = w(this.defaults, e);
44
+ const { transitional: r, paramsSerializer: o, headers: s } = e;
45
+ r !== void 0 && m.assertOptions(r, {
46
+ silentJSONParsing: i.transitional(i.boolean),
47
+ forcedJSONParsing: i.transitional(i.boolean),
48
+ clarifyTimeoutError: i.transitional(i.boolean)
49
+ }, !1), o != null && (d.isFunction(o) ? e.paramsSerializer = {
50
+ serialize: o
51
+ } : m.assertOptions(o, {
52
+ encode: i.function,
53
+ serialize: i.function
54
+ }, !0)), e.allowAbsoluteUrls !== void 0 || (this.defaults.allowAbsoluteUrls !== void 0 ? e.allowAbsoluteUrls = this.defaults.allowAbsoluteUrls : e.allowAbsoluteUrls = !0), m.assertOptions(e, {
55
+ baseUrl: i.spelling("baseURL"),
56
+ withXsrfToken: i.spelling("withXSRFToken")
57
+ }, !0), e.method = (e.method || this.defaults.method || "get").toLowerCase();
58
+ let f = s && d.merge(
59
+ s.common,
60
+ s[e.method]
61
+ );
62
+ s && d.forEach(
63
+ ["delete", "get", "head", "post", "put", "patch", "common"],
64
+ (a) => {
65
+ delete s[a];
42
66
  }
67
+ ), e.headers = T.concat(f, s);
68
+ const h = [];
69
+ let b = !0;
70
+ this.interceptors.request.forEach(function(n) {
71
+ typeof n.runWhen == "function" && n.runWhen(e) === !1 || (b = b && n.synchronous, h.unshift(n.fulfilled, n.rejected));
72
+ });
73
+ const c = [];
74
+ this.interceptors.response.forEach(function(n) {
75
+ c.push(n.fulfilled, n.rejected);
76
+ });
77
+ let u, l = 0, p;
78
+ if (!b) {
79
+ const a = [R.bind(this), void 0];
80
+ for (a.unshift(...h), a.push(...c), p = a.length, u = Promise.resolve(e); l < p; )
81
+ u = u.then(a[l++], a[l++]);
82
+ return u;
43
83
  }
44
- return f || s ? (e.setContentType("application/json", !1), y(r)) : r;
45
- }],
46
- transformResponse: [function(r) {
47
- const e = this.transitional || l.transitional, n = e && e.forcedJSONParsing, s = this.responseType === "json";
48
- if (t.isResponse(r) || t.isReadableStream(r))
49
- return r;
50
- if (r && t.isString(r) && (n && !this.responseType || s)) {
51
- const m = !(e && e.silentJSONParsing) && s;
84
+ p = h.length;
85
+ let y = e;
86
+ for (; l < p; ) {
87
+ const a = h[l++], n = h[l++];
52
88
  try {
53
- return JSON.parse(r, this.parseReviver);
54
- } catch (o) {
55
- if (m)
56
- throw o.name === "SyntaxError" ? c.from(o, c.ERR_BAD_RESPONSE, this, null, this.response) : o;
89
+ y = a(y);
90
+ } catch (S) {
91
+ n.call(this, S);
92
+ break;
57
93
  }
58
94
  }
59
- return r;
60
- }],
61
- /**
62
- * A timeout in milliseconds to abort a request. If set to 0 (default) a
63
- * timeout is not created.
64
- */
65
- timeout: 0,
66
- xsrfCookieName: "XSRF-TOKEN",
67
- xsrfHeaderName: "X-XSRF-TOKEN",
68
- maxContentLength: -1,
69
- maxBodyLength: -1,
70
- env: {
71
- FormData: a.classes.FormData,
72
- Blob: a.classes.Blob
73
- },
74
- validateStatus: function(r) {
75
- return r >= 200 && r < 300;
76
- },
77
- headers: {
78
- common: {
79
- Accept: "application/json, text/plain, */*",
80
- "Content-Type": void 0
95
+ try {
96
+ u = R.call(this, y);
97
+ } catch (a) {
98
+ return Promise.reject(a);
81
99
  }
100
+ for (l = 0, p = c.length; l < p; )
101
+ u = u.then(c[l++], c[l++]);
102
+ return u;
82
103
  }
83
- };
84
- t.forEach(["delete", "get", "head", "post", "put", "patch"], (i) => {
85
- l.headers[i] = {};
104
+ getUri(t) {
105
+ t = w(this.defaults, t);
106
+ const e = A(t.baseURL, t.url, t.allowAbsoluteUrls);
107
+ return U(e, t.params, t.paramsSerializer);
108
+ }
109
+ }
110
+ d.forEach(["delete", "get", "head", "options"], function(t) {
111
+ k.prototype[t] = function(e, r) {
112
+ return this.request(w(r || {}, {
113
+ method: t,
114
+ url: e,
115
+ data: (r || {}).data
116
+ }));
117
+ };
118
+ });
119
+ d.forEach(["post", "put", "patch"], function(t) {
120
+ function e(r) {
121
+ return function(s, f, h) {
122
+ return this.request(w(h || {}, {
123
+ method: t,
124
+ headers: r ? {
125
+ "Content-Type": "multipart/form-data"
126
+ } : {},
127
+ url: s,
128
+ data: f
129
+ }));
130
+ };
131
+ }
132
+ k.prototype[t] = e(), k.prototype[t + "Form"] = e(!0);
86
133
  });
87
134
  export {
88
- l as default
135
+ k as default
89
136
  };