@builtbystack/sq-shopify-theme-sdk 0.0.11 → 0.0.14
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +64 -0
- package/dist/sq-shopify-theme-sdk.d.ts +18 -0
- package/dist/sq-shopify-theme-sdk.js +328 -272
- package/dist/sq-shopify-theme-sdk.umd.js +55 -30
- package/package.json +1 -1
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
var He = Object.defineProperty;
|
|
2
2
|
var Ye = (e, t, n) => t in e ? He(e, t, { enumerable: !0, configurable: !0, writable: !0, value: n }) : e[t] = n;
|
|
3
|
-
var
|
|
3
|
+
var Ae = (e, t, n) => (Ye(e, typeof t != "symbol" ? t + "" : t, n), n);
|
|
4
4
|
function ze(e, t) {
|
|
5
5
|
for (var n = 0; n < t.length; n++) {
|
|
6
6
|
const i = t[n];
|
|
@@ -17,7 +17,7 @@ function ze(e, t) {
|
|
|
17
17
|
}
|
|
18
18
|
return Object.freeze(Object.defineProperty(e, Symbol.toStringTag, { value: "Module" }));
|
|
19
19
|
}
|
|
20
|
-
const
|
|
20
|
+
const Ee = JSON, Qe = (e) => e.toUpperCase(), Je = (e) => {
|
|
21
21
|
const t = {};
|
|
22
22
|
return e.forEach((n, i) => {
|
|
23
23
|
t[i] = n;
|
|
@@ -64,34 +64,34 @@ function pe(e, t) {
|
|
|
64
64
|
};
|
|
65
65
|
}
|
|
66
66
|
function nt(e) {
|
|
67
|
-
return
|
|
67
|
+
return Re(
|
|
68
68
|
e.source,
|
|
69
69
|
pe(e.source, e.start)
|
|
70
70
|
);
|
|
71
71
|
}
|
|
72
|
-
function
|
|
72
|
+
function Re(e, t) {
|
|
73
73
|
const n = e.locationOffset.column - 1, i = "".padStart(n) + e.body, r = t.line - 1, s = e.locationOffset.line - 1, o = t.line + s, u = t.line === 1 ? n : 0, h = t.column + u, p = `${e.name}:${o}:${h}
|
|
74
|
-
`, m = i.split(/\r\n|[\n\r]/g),
|
|
75
|
-
if (
|
|
76
|
-
const
|
|
77
|
-
for (let N = 0; N <
|
|
78
|
-
y.push(
|
|
79
|
-
return p +
|
|
74
|
+
`, m = i.split(/\r\n|[\n\r]/g), g = m[r];
|
|
75
|
+
if (g.length > 120) {
|
|
76
|
+
const E = Math.floor(h / 80), T = h % 80, y = [];
|
|
77
|
+
for (let N = 0; N < g.length; N += 80)
|
|
78
|
+
y.push(g.slice(N, N + 80));
|
|
79
|
+
return p + Te([
|
|
80
80
|
[`${o} |`, y[0]],
|
|
81
|
-
...y.slice(1,
|
|
82
|
-
["|", "^".padStart(
|
|
83
|
-
["|", y[
|
|
81
|
+
...y.slice(1, E + 1).map((N) => ["|", N]),
|
|
82
|
+
["|", "^".padStart(T)],
|
|
83
|
+
["|", y[E + 1]]
|
|
84
84
|
]);
|
|
85
85
|
}
|
|
86
|
-
return p +
|
|
86
|
+
return p + Te([
|
|
87
87
|
// Lines specified like this: ["prefix", "string"],
|
|
88
88
|
[`${o - 1} |`, m[r - 1]],
|
|
89
|
-
[`${o} |`,
|
|
89
|
+
[`${o} |`, g],
|
|
90
90
|
["|", "^".padStart(h)],
|
|
91
91
|
[`${o + 1} |`, m[r + 1]]
|
|
92
92
|
]);
|
|
93
93
|
}
|
|
94
|
-
function
|
|
94
|
+
function Te(e) {
|
|
95
95
|
const t = e.filter(([i, r]) => r !== void 0), n = Math.max(...t.map(([i]) => i.length));
|
|
96
96
|
return t.map(([i, r]) => i.padStart(n) + (r ? " " + r : "")).join(`
|
|
97
97
|
`);
|
|
@@ -148,18 +148,18 @@ class Ce extends Error {
|
|
|
148
148
|
*/
|
|
149
149
|
constructor(t, ...n) {
|
|
150
150
|
var i, r, s;
|
|
151
|
-
const { nodes: o, source: u, positions: h, path: p, originalError: m, extensions:
|
|
151
|
+
const { nodes: o, source: u, positions: h, path: p, originalError: m, extensions: g } = rt(n);
|
|
152
152
|
super(t), this.name = "GraphQLError", this.path = p ?? void 0, this.originalError = m ?? void 0, this.nodes = Ne(
|
|
153
153
|
Array.isArray(o) ? o : o ? [o] : void 0
|
|
154
154
|
);
|
|
155
|
-
const
|
|
155
|
+
const E = Ne(
|
|
156
156
|
(i = this.nodes) === null || i === void 0 ? void 0 : i.map((y) => y.loc).filter((y) => y != null)
|
|
157
157
|
);
|
|
158
|
-
this.source = u ?? (
|
|
159
|
-
const
|
|
158
|
+
this.source = u ?? (E == null || (r = E[0]) === null || r === void 0 ? void 0 : r.source), this.positions = h ?? (E == null ? void 0 : E.map((y) => y.start)), this.locations = h && u ? h.map((y) => pe(u, y)) : E == null ? void 0 : E.map((y) => pe(y.source, y.start));
|
|
159
|
+
const T = Ke(
|
|
160
160
|
m == null ? void 0 : m.extensions
|
|
161
161
|
) ? m == null ? void 0 : m.extensions : void 0;
|
|
162
|
-
this.extensions = (s =
|
|
162
|
+
this.extensions = (s = g ?? T) !== null && s !== void 0 ? s : /* @__PURE__ */ Object.create(null), Object.defineProperties(this, {
|
|
163
163
|
message: {
|
|
164
164
|
writable: !0,
|
|
165
165
|
enumerable: !0
|
|
@@ -203,7 +203,7 @@ class Ce extends Error {
|
|
|
203
203
|
for (const n of this.locations)
|
|
204
204
|
t += `
|
|
205
205
|
|
|
206
|
-
` +
|
|
206
|
+
` + Re(this.source, n);
|
|
207
207
|
return t;
|
|
208
208
|
}
|
|
209
209
|
toJSON() {
|
|
@@ -216,7 +216,7 @@ class Ce extends Error {
|
|
|
216
216
|
function Ne(e) {
|
|
217
217
|
return e === void 0 || e.length === 0 ? void 0 : e;
|
|
218
218
|
}
|
|
219
|
-
function
|
|
219
|
+
function x(e, t, n) {
|
|
220
220
|
return new Ce(`Syntax Error: ${n}`, {
|
|
221
221
|
source: e,
|
|
222
222
|
positions: [t]
|
|
@@ -251,7 +251,7 @@ class it {
|
|
|
251
251
|
};
|
|
252
252
|
}
|
|
253
253
|
}
|
|
254
|
-
class
|
|
254
|
+
class _e {
|
|
255
255
|
/**
|
|
256
256
|
* The kind of Token.
|
|
257
257
|
*/
|
|
@@ -293,7 +293,7 @@ class ke {
|
|
|
293
293
|
};
|
|
294
294
|
}
|
|
295
295
|
}
|
|
296
|
-
const
|
|
296
|
+
const Se = {
|
|
297
297
|
Name: [],
|
|
298
298
|
Document: ["definitions"],
|
|
299
299
|
OperationDefinition: [
|
|
@@ -367,15 +367,15 @@ const Re = {
|
|
|
367
367
|
UnionTypeExtension: ["name", "directives", "types"],
|
|
368
368
|
EnumTypeExtension: ["name", "directives", "values"],
|
|
369
369
|
InputObjectTypeExtension: ["name", "directives", "fields"]
|
|
370
|
-
}, st = new Set(Object.keys(
|
|
371
|
-
function
|
|
370
|
+
}, st = new Set(Object.keys(Se));
|
|
371
|
+
function be(e) {
|
|
372
372
|
const t = e == null ? void 0 : e.kind;
|
|
373
373
|
return typeof t == "string" && st.has(t);
|
|
374
374
|
}
|
|
375
|
-
var
|
|
375
|
+
var M;
|
|
376
376
|
(function(e) {
|
|
377
377
|
e.QUERY = "query", e.MUTATION = "mutation", e.SUBSCRIPTION = "subscription";
|
|
378
|
-
})(
|
|
378
|
+
})(M || (M = {}));
|
|
379
379
|
var fe;
|
|
380
380
|
(function(e) {
|
|
381
381
|
e.QUERY = "QUERY", e.MUTATION = "MUTATION", e.SUBSCRIPTION = "SUBSCRIPTION", e.FIELD = "FIELD", e.FRAGMENT_DEFINITION = "FRAGMENT_DEFINITION", e.FRAGMENT_SPREAD = "FRAGMENT_SPREAD", e.INLINE_FRAGMENT = "INLINE_FRAGMENT", e.VARIABLE_DEFINITION = "VARIABLE_DEFINITION", e.SCHEMA = "SCHEMA", e.SCALAR = "SCALAR", e.OBJECT = "OBJECT", e.FIELD_DEFINITION = "FIELD_DEFINITION", e.ARGUMENT_DEFINITION = "ARGUMENT_DEFINITION", e.INTERFACE = "INTERFACE", e.UNION = "UNION", e.ENUM = "ENUM", e.ENUM_VALUE = "ENUM_VALUE", e.INPUT_OBJECT = "INPUT_OBJECT", e.INPUT_FIELD_DEFINITION = "INPUT_FIELD_DEFINITION";
|
|
@@ -390,15 +390,15 @@ function me(e) {
|
|
|
390
390
|
function Y(e) {
|
|
391
391
|
return e >= 48 && e <= 57;
|
|
392
392
|
}
|
|
393
|
-
function
|
|
393
|
+
function ke(e) {
|
|
394
394
|
return e >= 97 && e <= 122 || // A-Z
|
|
395
395
|
e >= 65 && e <= 90;
|
|
396
396
|
}
|
|
397
397
|
function we(e) {
|
|
398
|
-
return
|
|
398
|
+
return ke(e) || e === 95;
|
|
399
399
|
}
|
|
400
400
|
function ot(e) {
|
|
401
|
-
return
|
|
401
|
+
return ke(e) || Y(e) || e === 95;
|
|
402
402
|
}
|
|
403
403
|
function at(e) {
|
|
404
404
|
var t;
|
|
@@ -420,13 +420,13 @@ function ct(e) {
|
|
|
420
420
|
return t;
|
|
421
421
|
}
|
|
422
422
|
function ut(e, t) {
|
|
423
|
-
const n = e.replace(/"""/g, '\\"""'), i = n.split(/\r\n|[\n\r]/g), r = i.length === 1, s = i.length > 1 && i.slice(1).every((
|
|
423
|
+
const n = e.replace(/"""/g, '\\"""'), i = n.split(/\r\n|[\n\r]/g), r = i.length === 1, s = i.length > 1 && i.slice(1).every((T) => T.length === 0 || me(T.charCodeAt(0))), o = n.endsWith('\\"""'), u = e.endsWith('"') && !o, h = e.endsWith("\\"), p = u || h, m = !(t != null && t.minimize) && // add leading and trailing new lines only if it improves readability
|
|
424
424
|
(!r || e.length > 70 || p || s || o);
|
|
425
|
-
let
|
|
426
|
-
const
|
|
427
|
-
return (m && !
|
|
428
|
-
`),
|
|
429
|
-
`), '"""' +
|
|
425
|
+
let g = "";
|
|
426
|
+
const E = r && me(e.charCodeAt(0));
|
|
427
|
+
return (m && !E || s) && (g += `
|
|
428
|
+
`), g += n, (m || p) && (g += `
|
|
429
|
+
`), '"""' + g + '"""';
|
|
430
430
|
}
|
|
431
431
|
var c;
|
|
432
432
|
(function(e) {
|
|
@@ -446,7 +446,7 @@ class lt {
|
|
|
446
446
|
* The character offset at which the current line begins.
|
|
447
447
|
*/
|
|
448
448
|
constructor(t) {
|
|
449
|
-
const n = new
|
|
449
|
+
const n = new _e(c.SOF, 0, 0, 0, 0);
|
|
450
450
|
this.source = t, this.lastToken = n, this.token = n, this.line = 1, this.lineStart = 0;
|
|
451
451
|
}
|
|
452
452
|
get [Symbol.toStringTag]() {
|
|
@@ -483,12 +483,12 @@ function V(e) {
|
|
|
483
483
|
return e >= 0 && e <= 55295 || e >= 57344 && e <= 1114111;
|
|
484
484
|
}
|
|
485
485
|
function se(e, t) {
|
|
486
|
-
return
|
|
486
|
+
return Le(e.charCodeAt(t)) && Pe(e.charCodeAt(t + 1));
|
|
487
487
|
}
|
|
488
|
-
function
|
|
488
|
+
function Le(e) {
|
|
489
489
|
return e >= 55296 && e <= 56319;
|
|
490
490
|
}
|
|
491
|
-
function
|
|
491
|
+
function Pe(e) {
|
|
492
492
|
return e >= 56320 && e <= 57343;
|
|
493
493
|
}
|
|
494
494
|
function F(e, t) {
|
|
@@ -501,9 +501,9 @@ function F(e, t) {
|
|
|
501
501
|
}
|
|
502
502
|
return "U+" + n.toString(16).toUpperCase().padStart(4, "0");
|
|
503
503
|
}
|
|
504
|
-
function
|
|
504
|
+
function b(e, t, n, i, r) {
|
|
505
505
|
const s = e.line, o = 1 + n - e.lineStart;
|
|
506
|
-
return new
|
|
506
|
+
return new _e(t, n, i, s, o, r);
|
|
507
507
|
}
|
|
508
508
|
function ht(e, t) {
|
|
509
509
|
const n = e.source.body, i = n.length;
|
|
@@ -526,35 +526,35 @@ function ht(e, t) {
|
|
|
526
526
|
case 35:
|
|
527
527
|
return pt(e, r);
|
|
528
528
|
case 33:
|
|
529
|
-
return
|
|
529
|
+
return b(e, c.BANG, r, r + 1);
|
|
530
530
|
case 36:
|
|
531
|
-
return
|
|
531
|
+
return b(e, c.DOLLAR, r, r + 1);
|
|
532
532
|
case 38:
|
|
533
|
-
return
|
|
533
|
+
return b(e, c.AMP, r, r + 1);
|
|
534
534
|
case 40:
|
|
535
|
-
return
|
|
535
|
+
return b(e, c.PAREN_L, r, r + 1);
|
|
536
536
|
case 41:
|
|
537
|
-
return
|
|
537
|
+
return b(e, c.PAREN_R, r, r + 1);
|
|
538
538
|
case 46:
|
|
539
539
|
if (n.charCodeAt(r + 1) === 46 && n.charCodeAt(r + 2) === 46)
|
|
540
|
-
return
|
|
540
|
+
return b(e, c.SPREAD, r, r + 3);
|
|
541
541
|
break;
|
|
542
542
|
case 58:
|
|
543
|
-
return
|
|
543
|
+
return b(e, c.COLON, r, r + 1);
|
|
544
544
|
case 61:
|
|
545
|
-
return
|
|
545
|
+
return b(e, c.EQUALS, r, r + 1);
|
|
546
546
|
case 64:
|
|
547
|
-
return
|
|
547
|
+
return b(e, c.AT, r, r + 1);
|
|
548
548
|
case 91:
|
|
549
|
-
return
|
|
549
|
+
return b(e, c.BRACKET_L, r, r + 1);
|
|
550
550
|
case 93:
|
|
551
|
-
return
|
|
551
|
+
return b(e, c.BRACKET_R, r, r + 1);
|
|
552
552
|
case 123:
|
|
553
|
-
return
|
|
553
|
+
return b(e, c.BRACE_L, r, r + 1);
|
|
554
554
|
case 124:
|
|
555
|
-
return
|
|
555
|
+
return b(e, c.PIPE, r, r + 1);
|
|
556
556
|
case 125:
|
|
557
|
-
return
|
|
557
|
+
return b(e, c.BRACE_R, r, r + 1);
|
|
558
558
|
case 34:
|
|
559
559
|
return n.charCodeAt(r + 1) === 34 && n.charCodeAt(r + 2) === 34 ? Ct(e, r) : mt(e, r);
|
|
560
560
|
}
|
|
@@ -562,13 +562,13 @@ function ht(e, t) {
|
|
|
562
562
|
return ft(e, r, s);
|
|
563
563
|
if (we(s))
|
|
564
564
|
return vt(e, r);
|
|
565
|
-
throw
|
|
565
|
+
throw x(
|
|
566
566
|
e.source,
|
|
567
567
|
r,
|
|
568
568
|
s === 39 ? `Unexpected single quote character ('), did you mean to use a double quote (")?` : V(s) || se(n, r) ? `Unexpected character: ${F(e, r)}.` : `Invalid character: ${F(e, r)}.`
|
|
569
569
|
);
|
|
570
570
|
}
|
|
571
|
-
return
|
|
571
|
+
return b(e, c.EOF, i, i);
|
|
572
572
|
}
|
|
573
573
|
function pt(e, t) {
|
|
574
574
|
const n = e.source.body, i = n.length;
|
|
@@ -584,7 +584,7 @@ function pt(e, t) {
|
|
|
584
584
|
else
|
|
585
585
|
break;
|
|
586
586
|
}
|
|
587
|
-
return
|
|
587
|
+
return b(
|
|
588
588
|
e,
|
|
589
589
|
c.COMMENT,
|
|
590
590
|
t,
|
|
@@ -597,7 +597,7 @@ function ft(e, t, n) {
|
|
|
597
597
|
let r = t, s = n, o = !1;
|
|
598
598
|
if (s === 45 && (s = i.charCodeAt(++r)), s === 48) {
|
|
599
599
|
if (s = i.charCodeAt(++r), Y(s))
|
|
600
|
-
throw
|
|
600
|
+
throw x(
|
|
601
601
|
e.source,
|
|
602
602
|
r,
|
|
603
603
|
`Invalid number, unexpected digit after 0: ${F(
|
|
@@ -608,7 +608,7 @@ function ft(e, t, n) {
|
|
|
608
608
|
} else
|
|
609
609
|
r = ue(e, r, s), s = i.charCodeAt(r);
|
|
610
610
|
if (s === 46 && (o = !0, s = i.charCodeAt(++r), r = ue(e, r, s), s = i.charCodeAt(r)), (s === 69 || s === 101) && (o = !0, s = i.charCodeAt(++r), (s === 43 || s === 45) && (s = i.charCodeAt(++r)), r = ue(e, r, s), s = i.charCodeAt(r)), s === 46 || we(s))
|
|
611
|
-
throw
|
|
611
|
+
throw x(
|
|
612
612
|
e.source,
|
|
613
613
|
r,
|
|
614
614
|
`Invalid number, expected digit but got: ${F(
|
|
@@ -616,7 +616,7 @@ function ft(e, t, n) {
|
|
|
616
616
|
r
|
|
617
617
|
)}.`
|
|
618
618
|
);
|
|
619
|
-
return
|
|
619
|
+
return b(
|
|
620
620
|
e,
|
|
621
621
|
o ? c.FLOAT : c.INT,
|
|
622
622
|
t,
|
|
@@ -626,7 +626,7 @@ function ft(e, t, n) {
|
|
|
626
626
|
}
|
|
627
627
|
function ue(e, t, n) {
|
|
628
628
|
if (!Y(n))
|
|
629
|
-
throw
|
|
629
|
+
throw x(
|
|
630
630
|
e.source,
|
|
631
631
|
t,
|
|
632
632
|
`Invalid number, expected digit but got: ${F(
|
|
@@ -646,10 +646,10 @@ function mt(e, t) {
|
|
|
646
646
|
for (; r < i; ) {
|
|
647
647
|
const u = n.charCodeAt(r);
|
|
648
648
|
if (u === 34)
|
|
649
|
-
return o += n.slice(s, r),
|
|
649
|
+
return o += n.slice(s, r), b(e, c.STRING, t, r + 1, o);
|
|
650
650
|
if (u === 92) {
|
|
651
651
|
o += n.slice(s, r);
|
|
652
|
-
const h = n.charCodeAt(r + 1) === 117 ? n.charCodeAt(r + 2) === 123 ? yt(e, r) :
|
|
652
|
+
const h = n.charCodeAt(r + 1) === 117 ? n.charCodeAt(r + 2) === 123 ? yt(e, r) : gt(e, r) : Et(e, r);
|
|
653
653
|
o += h.value, r += h.size, s = r;
|
|
654
654
|
continue;
|
|
655
655
|
}
|
|
@@ -660,7 +660,7 @@ function mt(e, t) {
|
|
|
660
660
|
else if (se(n, r))
|
|
661
661
|
r += 2;
|
|
662
662
|
else
|
|
663
|
-
throw
|
|
663
|
+
throw x(
|
|
664
664
|
e.source,
|
|
665
665
|
r,
|
|
666
666
|
`Invalid character within String: ${F(
|
|
@@ -669,7 +669,7 @@ function mt(e, t) {
|
|
|
669
669
|
)}.`
|
|
670
670
|
);
|
|
671
671
|
}
|
|
672
|
-
throw
|
|
672
|
+
throw x(e.source, r, "Unterminated string.");
|
|
673
673
|
}
|
|
674
674
|
function yt(e, t) {
|
|
675
675
|
const n = e.source.body;
|
|
@@ -687,7 +687,7 @@ function yt(e, t) {
|
|
|
687
687
|
if (i = i << 4 | $(s), i < 0)
|
|
688
688
|
break;
|
|
689
689
|
}
|
|
690
|
-
throw
|
|
690
|
+
throw x(
|
|
691
691
|
e.source,
|
|
692
692
|
t,
|
|
693
693
|
`Invalid Unicode escape sequence: "${n.slice(
|
|
@@ -696,34 +696,34 @@ function yt(e, t) {
|
|
|
696
696
|
)}".`
|
|
697
697
|
);
|
|
698
698
|
}
|
|
699
|
-
function
|
|
700
|
-
const n = e.source.body, i =
|
|
699
|
+
function gt(e, t) {
|
|
700
|
+
const n = e.source.body, i = xe(n, t + 2);
|
|
701
701
|
if (V(i))
|
|
702
702
|
return {
|
|
703
703
|
value: String.fromCodePoint(i),
|
|
704
704
|
size: 6
|
|
705
705
|
};
|
|
706
|
-
if (
|
|
707
|
-
const r =
|
|
708
|
-
if (
|
|
706
|
+
if (Le(i) && n.charCodeAt(t + 6) === 92 && n.charCodeAt(t + 7) === 117) {
|
|
707
|
+
const r = xe(n, t + 8);
|
|
708
|
+
if (Pe(r))
|
|
709
709
|
return {
|
|
710
710
|
value: String.fromCodePoint(i, r),
|
|
711
711
|
size: 12
|
|
712
712
|
};
|
|
713
713
|
}
|
|
714
|
-
throw
|
|
714
|
+
throw x(
|
|
715
715
|
e.source,
|
|
716
716
|
t,
|
|
717
717
|
`Invalid Unicode escape sequence: "${n.slice(t, t + 6)}".`
|
|
718
718
|
);
|
|
719
719
|
}
|
|
720
|
-
function
|
|
720
|
+
function xe(e, t) {
|
|
721
721
|
return $(e.charCodeAt(t)) << 12 | $(e.charCodeAt(t + 1)) << 8 | $(e.charCodeAt(t + 2)) << 4 | $(e.charCodeAt(t + 3));
|
|
722
722
|
}
|
|
723
723
|
function $(e) {
|
|
724
724
|
return e >= 48 && e <= 57 ? e - 48 : e >= 65 && e <= 70 ? e - 55 : e >= 97 && e <= 102 ? e - 87 : -1;
|
|
725
725
|
}
|
|
726
|
-
function
|
|
726
|
+
function Et(e, t) {
|
|
727
727
|
const n = e.source.body;
|
|
728
728
|
switch (n.charCodeAt(t + 1)) {
|
|
729
729
|
case 34:
|
|
@@ -768,7 +768,7 @@ function gt(e, t) {
|
|
|
768
768
|
size: 2
|
|
769
769
|
};
|
|
770
770
|
}
|
|
771
|
-
throw
|
|
771
|
+
throw x(
|
|
772
772
|
e.source,
|
|
773
773
|
t,
|
|
774
774
|
`Invalid character escape sequence: "${n.slice(
|
|
@@ -785,7 +785,7 @@ function Ct(e, t) {
|
|
|
785
785
|
const p = n.charCodeAt(s);
|
|
786
786
|
if (p === 34 && n.charCodeAt(s + 1) === 34 && n.charCodeAt(s + 2) === 34) {
|
|
787
787
|
u += n.slice(o, s), h.push(u);
|
|
788
|
-
const m =
|
|
788
|
+
const m = b(
|
|
789
789
|
e,
|
|
790
790
|
c.BLOCK_STRING,
|
|
791
791
|
t,
|
|
@@ -809,7 +809,7 @@ function Ct(e, t) {
|
|
|
809
809
|
else if (se(n, s))
|
|
810
810
|
s += 2;
|
|
811
811
|
else
|
|
812
|
-
throw
|
|
812
|
+
throw x(
|
|
813
813
|
e.source,
|
|
814
814
|
s,
|
|
815
815
|
`Invalid character within String: ${F(
|
|
@@ -818,7 +818,7 @@ function Ct(e, t) {
|
|
|
818
818
|
)}.`
|
|
819
819
|
);
|
|
820
820
|
}
|
|
821
|
-
throw
|
|
821
|
+
throw x(e.source, s, "Unterminated string.");
|
|
822
822
|
}
|
|
823
823
|
function vt(e, t) {
|
|
824
824
|
const n = e.source.body, i = n.length;
|
|
@@ -830,7 +830,7 @@ function vt(e, t) {
|
|
|
830
830
|
else
|
|
831
831
|
break;
|
|
832
832
|
}
|
|
833
|
-
return
|
|
833
|
+
return b(
|
|
834
834
|
e,
|
|
835
835
|
c.NAME,
|
|
836
836
|
t,
|
|
@@ -838,7 +838,7 @@ function vt(e, t) {
|
|
|
838
838
|
n.slice(t, r)
|
|
839
839
|
);
|
|
840
840
|
}
|
|
841
|
-
const
|
|
841
|
+
const At = 10, Fe = 2;
|
|
842
842
|
function ve(e) {
|
|
843
843
|
return oe(e, []);
|
|
844
844
|
}
|
|
@@ -849,12 +849,12 @@ function oe(e, t) {
|
|
|
849
849
|
case "function":
|
|
850
850
|
return e.name ? `[function ${e.name}]` : "[function]";
|
|
851
851
|
case "object":
|
|
852
|
-
return
|
|
852
|
+
return Tt(e, t);
|
|
853
853
|
default:
|
|
854
854
|
return String(e);
|
|
855
855
|
}
|
|
856
856
|
}
|
|
857
|
-
function
|
|
857
|
+
function Tt(e, t) {
|
|
858
858
|
if (e === null)
|
|
859
859
|
return "null";
|
|
860
860
|
if (t.includes(e))
|
|
@@ -865,24 +865,24 @@ function At(e, t) {
|
|
|
865
865
|
if (i !== e)
|
|
866
866
|
return typeof i == "string" ? i : oe(i, n);
|
|
867
867
|
} else if (Array.isArray(e))
|
|
868
|
-
return
|
|
869
|
-
return
|
|
868
|
+
return xt(e, n);
|
|
869
|
+
return bt(e, n);
|
|
870
870
|
}
|
|
871
871
|
function Nt(e) {
|
|
872
872
|
return typeof e.toJSON == "function";
|
|
873
873
|
}
|
|
874
|
-
function
|
|
874
|
+
function bt(e, t) {
|
|
875
875
|
const n = Object.entries(e);
|
|
876
876
|
return n.length === 0 ? "{}" : t.length > Fe ? "[" + It(e) + "]" : "{ " + n.map(
|
|
877
877
|
([r, s]) => r + ": " + oe(s, t)
|
|
878
878
|
).join(", ") + " }";
|
|
879
879
|
}
|
|
880
|
-
function
|
|
880
|
+
function xt(e, t) {
|
|
881
881
|
if (e.length === 0)
|
|
882
882
|
return "[]";
|
|
883
883
|
if (t.length > Fe)
|
|
884
884
|
return "[Array]";
|
|
885
|
-
const n = Math.min(
|
|
885
|
+
const n = Math.min(At, e.length), i = e.length - n, r = [];
|
|
886
886
|
for (let s = 0; s < n; ++s)
|
|
887
887
|
r.push(oe(e[s], t));
|
|
888
888
|
return i === 1 ? r.push("... 1 more item") : i > 1 && r.push(`... ${i} more items`), "[" + r.join(", ") + "]";
|
|
@@ -929,7 +929,7 @@ spurious results.`);
|
|
|
929
929
|
return !1;
|
|
930
930
|
}
|
|
931
931
|
);
|
|
932
|
-
class
|
|
932
|
+
class Ue {
|
|
933
933
|
constructor(t, n = "GraphQL request", i = {
|
|
934
934
|
line: 1,
|
|
935
935
|
column: 1
|
|
@@ -947,14 +947,14 @@ class Be {
|
|
|
947
947
|
}
|
|
948
948
|
}
|
|
949
949
|
function Ot(e) {
|
|
950
|
-
return Dt(e,
|
|
950
|
+
return Dt(e, Ue);
|
|
951
951
|
}
|
|
952
|
-
function
|
|
953
|
-
return new
|
|
952
|
+
function Be(e, t) {
|
|
953
|
+
return new Rt(e, t).parseDocument();
|
|
954
954
|
}
|
|
955
|
-
class
|
|
955
|
+
class Rt {
|
|
956
956
|
constructor(t, n = {}) {
|
|
957
|
-
const i = Ot(t) ? t : new
|
|
957
|
+
const i = Ot(t) ? t : new Ue(t);
|
|
958
958
|
this._lexer = new lt(i), this._options = n, this._tokenCounter = 0;
|
|
959
959
|
}
|
|
960
960
|
/**
|
|
@@ -1028,7 +1028,7 @@ class _t {
|
|
|
1028
1028
|
return this.parseDirectiveDefinition();
|
|
1029
1029
|
}
|
|
1030
1030
|
if (t)
|
|
1031
|
-
throw
|
|
1031
|
+
throw x(
|
|
1032
1032
|
this._lexer.source,
|
|
1033
1033
|
this._lexer.token.start,
|
|
1034
1034
|
"Unexpected description, descriptions are supported only on type definitions."
|
|
@@ -1057,7 +1057,7 @@ class _t {
|
|
|
1057
1057
|
if (this.peek(c.BRACE_L))
|
|
1058
1058
|
return this.node(t, {
|
|
1059
1059
|
kind: f.OPERATION_DEFINITION,
|
|
1060
|
-
operation:
|
|
1060
|
+
operation: M.QUERY,
|
|
1061
1061
|
name: void 0,
|
|
1062
1062
|
variableDefinitions: [],
|
|
1063
1063
|
directives: [],
|
|
@@ -1081,11 +1081,11 @@ class _t {
|
|
|
1081
1081
|
const t = this.expectToken(c.NAME);
|
|
1082
1082
|
switch (t.value) {
|
|
1083
1083
|
case "query":
|
|
1084
|
-
return
|
|
1084
|
+
return M.QUERY;
|
|
1085
1085
|
case "mutation":
|
|
1086
|
-
return
|
|
1086
|
+
return M.MUTATION;
|
|
1087
1087
|
case "subscription":
|
|
1088
|
-
return
|
|
1088
|
+
return M.SUBSCRIPTION;
|
|
1089
1089
|
}
|
|
1090
1090
|
throw this.unexpected(t);
|
|
1091
1091
|
}
|
|
@@ -1302,7 +1302,7 @@ class _t {
|
|
|
1302
1302
|
if (t)
|
|
1303
1303
|
if (this.expectToken(c.DOLLAR), this._lexer.token.kind === c.NAME) {
|
|
1304
1304
|
const i = this._lexer.token.value;
|
|
1305
|
-
throw
|
|
1305
|
+
throw x(
|
|
1306
1306
|
this._lexer.source,
|
|
1307
1307
|
n.start,
|
|
1308
1308
|
`Unexpected variable "$${i}" in constant value.`
|
|
@@ -1649,7 +1649,7 @@ class _t {
|
|
|
1649
1649
|
*/
|
|
1650
1650
|
parseEnumValueName() {
|
|
1651
1651
|
if (this._lexer.token.value === "true" || this._lexer.token.value === "false" || this._lexer.token.value === "null")
|
|
1652
|
-
throw
|
|
1652
|
+
throw x(
|
|
1653
1653
|
this._lexer.source,
|
|
1654
1654
|
this._lexer.token.start,
|
|
1655
1655
|
`${W(
|
|
@@ -1942,10 +1942,10 @@ class _t {
|
|
|
1942
1942
|
const n = this._lexer.token;
|
|
1943
1943
|
if (n.kind === t)
|
|
1944
1944
|
return this.advanceLexer(), n;
|
|
1945
|
-
throw
|
|
1945
|
+
throw x(
|
|
1946
1946
|
this._lexer.source,
|
|
1947
1947
|
n.start,
|
|
1948
|
-
`Expected ${
|
|
1948
|
+
`Expected ${Me(t)}, found ${W(n)}.`
|
|
1949
1949
|
);
|
|
1950
1950
|
}
|
|
1951
1951
|
/**
|
|
@@ -1964,7 +1964,7 @@ class _t {
|
|
|
1964
1964
|
if (n.kind === c.NAME && n.value === t)
|
|
1965
1965
|
this.advanceLexer();
|
|
1966
1966
|
else
|
|
1967
|
-
throw
|
|
1967
|
+
throw x(
|
|
1968
1968
|
this._lexer.source,
|
|
1969
1969
|
n.start,
|
|
1970
1970
|
`Expected "${t}", found ${W(n)}.`
|
|
@@ -1983,7 +1983,7 @@ class _t {
|
|
|
1983
1983
|
*/
|
|
1984
1984
|
unexpected(t) {
|
|
1985
1985
|
const n = t ?? this._lexer.token;
|
|
1986
|
-
return
|
|
1986
|
+
return x(
|
|
1987
1987
|
this._lexer.source,
|
|
1988
1988
|
n.start,
|
|
1989
1989
|
`Unexpected ${W(n)}.`
|
|
@@ -2046,7 +2046,7 @@ class _t {
|
|
|
2046
2046
|
advanceLexer() {
|
|
2047
2047
|
const { maxTokens: t } = this._options, n = this._lexer.advance();
|
|
2048
2048
|
if (t !== void 0 && n.kind !== c.EOF && (++this._tokenCounter, this._tokenCounter > t))
|
|
2049
|
-
throw
|
|
2049
|
+
throw x(
|
|
2050
2050
|
this._lexer.source,
|
|
2051
2051
|
n.start,
|
|
2052
2052
|
`Document contains more that ${t} tokens. Parsing aborted.`
|
|
@@ -2055,16 +2055,16 @@ class _t {
|
|
|
2055
2055
|
}
|
|
2056
2056
|
function W(e) {
|
|
2057
2057
|
const t = e.value;
|
|
2058
|
-
return
|
|
2058
|
+
return Me(e.kind) + (t != null ? ` "${t}"` : "");
|
|
2059
2059
|
}
|
|
2060
|
-
function
|
|
2060
|
+
function Me(e) {
|
|
2061
2061
|
return dt(e) ? `"${e}"` : e;
|
|
2062
2062
|
}
|
|
2063
|
-
function
|
|
2064
|
-
return `"${e.replace(
|
|
2063
|
+
function _t(e) {
|
|
2064
|
+
return `"${e.replace(St, kt)}"`;
|
|
2065
2065
|
}
|
|
2066
|
-
const
|
|
2067
|
-
function
|
|
2066
|
+
const St = /[\x00-\x1f\x22\x5c\x7f-\x9f]/g;
|
|
2067
|
+
function kt(e) {
|
|
2068
2068
|
return wt[e.charCodeAt(0)];
|
|
2069
2069
|
}
|
|
2070
2070
|
const wt = [
|
|
@@ -2233,61 +2233,61 @@ const wt = [
|
|
|
2233
2233
|
"\\u009D",
|
|
2234
2234
|
"\\u009E",
|
|
2235
2235
|
"\\u009F"
|
|
2236
|
-
],
|
|
2237
|
-
function
|
|
2236
|
+
], Lt = Object.freeze({});
|
|
2237
|
+
function Pt(e, t, n = Se) {
|
|
2238
2238
|
const i = /* @__PURE__ */ new Map();
|
|
2239
|
-
for (const
|
|
2240
|
-
i.set(
|
|
2241
|
-
let r, s = Array.isArray(e), o = [e], u = -1, h = [], p = e, m,
|
|
2242
|
-
const
|
|
2239
|
+
for (const R of Object.values(f))
|
|
2240
|
+
i.set(R, Ft(t, R));
|
|
2241
|
+
let r, s = Array.isArray(e), o = [e], u = -1, h = [], p = e, m, g;
|
|
2242
|
+
const E = [], T = [];
|
|
2243
2243
|
do {
|
|
2244
2244
|
u++;
|
|
2245
|
-
const
|
|
2246
|
-
if (
|
|
2247
|
-
if (m =
|
|
2245
|
+
const R = u === o.length, z = R && h.length !== 0;
|
|
2246
|
+
if (R) {
|
|
2247
|
+
if (m = T.length === 0 ? void 0 : E[E.length - 1], p = g, g = T.pop(), z)
|
|
2248
2248
|
if (s) {
|
|
2249
2249
|
p = p.slice();
|
|
2250
|
-
let
|
|
2251
|
-
for (const [
|
|
2252
|
-
const J =
|
|
2253
|
-
Q === null ? (p.splice(J, 1),
|
|
2250
|
+
let _ = 0;
|
|
2251
|
+
for (const [U, Q] of h) {
|
|
2252
|
+
const J = U - _;
|
|
2253
|
+
Q === null ? (p.splice(J, 1), _++) : p[J] = Q;
|
|
2254
2254
|
}
|
|
2255
2255
|
} else {
|
|
2256
2256
|
p = Object.defineProperties(
|
|
2257
2257
|
{},
|
|
2258
2258
|
Object.getOwnPropertyDescriptors(p)
|
|
2259
2259
|
);
|
|
2260
|
-
for (const [
|
|
2261
|
-
p[
|
|
2260
|
+
for (const [_, U] of h)
|
|
2261
|
+
p[_] = U;
|
|
2262
2262
|
}
|
|
2263
2263
|
u = r.index, o = r.keys, h = r.edits, s = r.inArray, r = r.prev;
|
|
2264
|
-
} else if (
|
|
2265
|
-
if (m = s ? u : o[u], p =
|
|
2264
|
+
} else if (g) {
|
|
2265
|
+
if (m = s ? u : o[u], p = g[m], p == null)
|
|
2266
2266
|
continue;
|
|
2267
|
-
|
|
2267
|
+
E.push(m);
|
|
2268
2268
|
}
|
|
2269
|
-
let
|
|
2269
|
+
let w;
|
|
2270
2270
|
if (!Array.isArray(p)) {
|
|
2271
2271
|
var y, N;
|
|
2272
|
-
|
|
2273
|
-
const
|
|
2274
|
-
if (
|
|
2272
|
+
be(p) || Z(!1, `Invalid AST Node: ${ve(p)}.`);
|
|
2273
|
+
const _ = R ? (y = i.get(p.kind)) === null || y === void 0 ? void 0 : y.leave : (N = i.get(p.kind)) === null || N === void 0 ? void 0 : N.enter;
|
|
2274
|
+
if (w = _ == null ? void 0 : _.call(t, p, m, g, E, T), w === Lt)
|
|
2275
2275
|
break;
|
|
2276
|
-
if (
|
|
2277
|
-
if (!
|
|
2278
|
-
|
|
2276
|
+
if (w === !1) {
|
|
2277
|
+
if (!R) {
|
|
2278
|
+
E.pop();
|
|
2279
2279
|
continue;
|
|
2280
2280
|
}
|
|
2281
|
-
} else if (
|
|
2282
|
-
if (
|
|
2283
|
-
p =
|
|
2281
|
+
} else if (w !== void 0 && (h.push([m, w]), !R))
|
|
2282
|
+
if (be(w))
|
|
2283
|
+
p = w;
|
|
2284
2284
|
else {
|
|
2285
|
-
|
|
2285
|
+
E.pop();
|
|
2286
2286
|
continue;
|
|
2287
2287
|
}
|
|
2288
2288
|
}
|
|
2289
|
-
if (
|
|
2290
|
-
|
|
2289
|
+
if (w === void 0 && z && h.push([m, p]), R)
|
|
2290
|
+
E.pop();
|
|
2291
2291
|
else {
|
|
2292
2292
|
var O;
|
|
2293
2293
|
r = {
|
|
@@ -2296,7 +2296,7 @@ function Lt(e, t, n = Re) {
|
|
|
2296
2296
|
keys: o,
|
|
2297
2297
|
edits: h,
|
|
2298
2298
|
prev: r
|
|
2299
|
-
}, s = Array.isArray(p), o = s ? p : (O = n[p.kind]) !== null && O !== void 0 ? O : [], u = -1, h = [],
|
|
2299
|
+
}, s = Array.isArray(p), o = s ? p : (O = n[p.kind]) !== null && O !== void 0 ? O : [], u = -1, h = [], g && T.push(g), g = p;
|
|
2300
2300
|
}
|
|
2301
2301
|
} while (r !== void 0);
|
|
2302
2302
|
return h.length !== 0 ? h[h.length - 1][1] : e;
|
|
@@ -2311,10 +2311,10 @@ function Ft(e, t) {
|
|
|
2311
2311
|
leave: e.leave
|
|
2312
2312
|
};
|
|
2313
2313
|
}
|
|
2314
|
-
function
|
|
2315
|
-
return
|
|
2314
|
+
function Ut(e) {
|
|
2315
|
+
return Pt(e, Mt);
|
|
2316
2316
|
}
|
|
2317
|
-
const
|
|
2317
|
+
const Bt = 80, Mt = {
|
|
2318
2318
|
Name: {
|
|
2319
2319
|
leave: (e) => e.value
|
|
2320
2320
|
},
|
|
@@ -2344,13 +2344,13 @@ const Mt = 80, Ut = {
|
|
|
2344
2344
|
leave: ({ variable: e, type: t, defaultValue: n, directives: i }) => e + ": " + t + v(" = ", n) + v(" ", d(i, " "))
|
|
2345
2345
|
},
|
|
2346
2346
|
SelectionSet: {
|
|
2347
|
-
leave: ({ selections: e }) =>
|
|
2347
|
+
leave: ({ selections: e }) => S(e)
|
|
2348
2348
|
},
|
|
2349
2349
|
Field: {
|
|
2350
2350
|
leave({ alias: e, name: t, arguments: n, directives: i, selectionSet: r }) {
|
|
2351
2351
|
const s = v("", e, ": ") + t;
|
|
2352
2352
|
let o = s + v("(", d(n, ", "), ")");
|
|
2353
|
-
return o.length >
|
|
2353
|
+
return o.length > Bt && (o = s + v(`(
|
|
2354
2354
|
`, K(d(n, `
|
|
2355
2355
|
`)), `
|
|
2356
2356
|
)`)), d([o, d(i, " "), r], " ");
|
|
@@ -2388,7 +2388,7 @@ const Mt = 80, Ut = {
|
|
|
2388
2388
|
leave: ({ value: e }) => e
|
|
2389
2389
|
},
|
|
2390
2390
|
StringValue: {
|
|
2391
|
-
leave: ({ value: e, block: t }) => t ? ut(e) :
|
|
2391
|
+
leave: ({ value: e, block: t }) => t ? ut(e) : _t(e)
|
|
2392
2392
|
},
|
|
2393
2393
|
BooleanValue: {
|
|
2394
2394
|
leave: ({ value: e }) => e ? "true" : "false"
|
|
@@ -2425,7 +2425,7 @@ const Mt = 80, Ut = {
|
|
|
2425
2425
|
// Type System Definitions
|
|
2426
2426
|
SchemaDefinition: {
|
|
2427
2427
|
leave: ({ description: e, directives: t, operationTypes: n }) => v("", e, `
|
|
2428
|
-
`) + d(["schema", d(t, " "),
|
|
2428
|
+
`) + d(["schema", d(t, " "), S(n)], " ")
|
|
2429
2429
|
},
|
|
2430
2430
|
OperationTypeDefinition: {
|
|
2431
2431
|
leave: ({ operation: e, type: t }) => e + ": " + t
|
|
@@ -2442,7 +2442,7 @@ const Mt = 80, Ut = {
|
|
|
2442
2442
|
t,
|
|
2443
2443
|
v("implements ", d(n, " & ")),
|
|
2444
2444
|
d(i, " "),
|
|
2445
|
-
|
|
2445
|
+
S(r)
|
|
2446
2446
|
],
|
|
2447
2447
|
" "
|
|
2448
2448
|
)
|
|
@@ -2469,7 +2469,7 @@ const Mt = 80, Ut = {
|
|
|
2469
2469
|
t,
|
|
2470
2470
|
v("implements ", d(n, " & ")),
|
|
2471
2471
|
d(i, " "),
|
|
2472
|
-
|
|
2472
|
+
S(r)
|
|
2473
2473
|
],
|
|
2474
2474
|
" "
|
|
2475
2475
|
)
|
|
@@ -2483,7 +2483,7 @@ const Mt = 80, Ut = {
|
|
|
2483
2483
|
},
|
|
2484
2484
|
EnumTypeDefinition: {
|
|
2485
2485
|
leave: ({ description: e, name: t, directives: n, values: i }) => v("", e, `
|
|
2486
|
-
`) + d(["enum", t, d(n, " "),
|
|
2486
|
+
`) + d(["enum", t, d(n, " "), S(i)], " ")
|
|
2487
2487
|
},
|
|
2488
2488
|
EnumValueDefinition: {
|
|
2489
2489
|
leave: ({ description: e, name: t, directives: n }) => v("", e, `
|
|
@@ -2491,7 +2491,7 @@ const Mt = 80, Ut = {
|
|
|
2491
2491
|
},
|
|
2492
2492
|
InputObjectTypeDefinition: {
|
|
2493
2493
|
leave: ({ description: e, name: t, directives: n, fields: i }) => v("", e, `
|
|
2494
|
-
`) + d(["input", t, d(n, " "),
|
|
2494
|
+
`) + d(["input", t, d(n, " "), S(i)], " ")
|
|
2495
2495
|
},
|
|
2496
2496
|
DirectiveDefinition: {
|
|
2497
2497
|
leave: ({ description: e, name: t, arguments: n, repeatable: i, locations: r }) => v("", e, `
|
|
@@ -2502,7 +2502,7 @@ const Mt = 80, Ut = {
|
|
|
2502
2502
|
},
|
|
2503
2503
|
SchemaExtension: {
|
|
2504
2504
|
leave: ({ directives: e, operationTypes: t }) => d(
|
|
2505
|
-
["extend schema", d(e, " "),
|
|
2505
|
+
["extend schema", d(e, " "), S(t)],
|
|
2506
2506
|
" "
|
|
2507
2507
|
)
|
|
2508
2508
|
},
|
|
@@ -2516,7 +2516,7 @@ const Mt = 80, Ut = {
|
|
|
2516
2516
|
e,
|
|
2517
2517
|
v("implements ", d(t, " & ")),
|
|
2518
2518
|
d(n, " "),
|
|
2519
|
-
|
|
2519
|
+
S(i)
|
|
2520
2520
|
],
|
|
2521
2521
|
" "
|
|
2522
2522
|
)
|
|
@@ -2528,7 +2528,7 @@ const Mt = 80, Ut = {
|
|
|
2528
2528
|
e,
|
|
2529
2529
|
v("implements ", d(t, " & ")),
|
|
2530
2530
|
d(n, " "),
|
|
2531
|
-
|
|
2531
|
+
S(i)
|
|
2532
2532
|
],
|
|
2533
2533
|
" "
|
|
2534
2534
|
)
|
|
@@ -2545,17 +2545,17 @@ const Mt = 80, Ut = {
|
|
|
2545
2545
|
)
|
|
2546
2546
|
},
|
|
2547
2547
|
EnumTypeExtension: {
|
|
2548
|
-
leave: ({ name: e, directives: t, values: n }) => d(["extend enum", e, d(t, " "),
|
|
2548
|
+
leave: ({ name: e, directives: t, values: n }) => d(["extend enum", e, d(t, " "), S(n)], " ")
|
|
2549
2549
|
},
|
|
2550
2550
|
InputObjectTypeExtension: {
|
|
2551
|
-
leave: ({ name: e, directives: t, fields: n }) => d(["extend input", e, d(t, " "),
|
|
2551
|
+
leave: ({ name: e, directives: t, fields: n }) => d(["extend input", e, d(t, " "), S(n)], " ")
|
|
2552
2552
|
}
|
|
2553
2553
|
};
|
|
2554
2554
|
function d(e, t = "") {
|
|
2555
2555
|
var n;
|
|
2556
2556
|
return (n = e == null ? void 0 : e.filter((i) => i).join(t)) !== null && n !== void 0 ? n : "";
|
|
2557
2557
|
}
|
|
2558
|
-
function
|
|
2558
|
+
function S(e) {
|
|
2559
2559
|
return v(`{
|
|
2560
2560
|
`, K(d(e, `
|
|
2561
2561
|
`)), `
|
|
@@ -2582,14 +2582,14 @@ const De = (e) => {
|
|
|
2582
2582
|
if (typeof e == "string") {
|
|
2583
2583
|
let n;
|
|
2584
2584
|
try {
|
|
2585
|
-
const i =
|
|
2585
|
+
const i = Be(e);
|
|
2586
2586
|
n = De(i);
|
|
2587
2587
|
} catch {
|
|
2588
2588
|
}
|
|
2589
2589
|
return { query: e, operationName: n };
|
|
2590
2590
|
}
|
|
2591
2591
|
const t = De(e);
|
|
2592
|
-
return { query:
|
|
2592
|
+
return { query: Ut(e), operationName: t };
|
|
2593
2593
|
};
|
|
2594
2594
|
class H extends Error {
|
|
2595
2595
|
constructor(t, n) {
|
|
@@ -2648,15 +2648,15 @@ var ye = { exports: {} };
|
|
|
2648
2648
|
], m = ArrayBuffer.isView || function(a) {
|
|
2649
2649
|
return a && p.indexOf(Object.prototype.toString.call(a)) > -1;
|
|
2650
2650
|
};
|
|
2651
|
-
function
|
|
2651
|
+
function g(a) {
|
|
2652
2652
|
if (typeof a != "string" && (a = String(a)), /[^a-z0-9\-#$%&'*+.^_`|~]/i.test(a))
|
|
2653
2653
|
throw new TypeError("Invalid character in header field name");
|
|
2654
2654
|
return a.toLowerCase();
|
|
2655
2655
|
}
|
|
2656
|
-
function
|
|
2656
|
+
function E(a) {
|
|
2657
2657
|
return typeof a != "string" && (a = String(a)), a;
|
|
2658
2658
|
}
|
|
2659
|
-
function
|
|
2659
|
+
function T(a) {
|
|
2660
2660
|
var l = {
|
|
2661
2661
|
next: function() {
|
|
2662
2662
|
var C = a.shift();
|
|
@@ -2677,17 +2677,17 @@ var ye = { exports: {} };
|
|
|
2677
2677
|
}, this);
|
|
2678
2678
|
}
|
|
2679
2679
|
y.prototype.append = function(a, l) {
|
|
2680
|
-
a =
|
|
2680
|
+
a = g(a), l = E(l);
|
|
2681
2681
|
var C = this.map[a];
|
|
2682
2682
|
this.map[a] = C ? C + ", " + l : l;
|
|
2683
2683
|
}, y.prototype.delete = function(a) {
|
|
2684
|
-
delete this.map[
|
|
2684
|
+
delete this.map[g(a)];
|
|
2685
2685
|
}, y.prototype.get = function(a) {
|
|
2686
|
-
return a =
|
|
2686
|
+
return a = g(a), this.has(a) ? this.map[a] : null;
|
|
2687
2687
|
}, y.prototype.has = function(a) {
|
|
2688
|
-
return this.map.hasOwnProperty(
|
|
2688
|
+
return this.map.hasOwnProperty(g(a));
|
|
2689
2689
|
}, y.prototype.set = function(a, l) {
|
|
2690
|
-
this.map[
|
|
2690
|
+
this.map[g(a)] = E(l);
|
|
2691
2691
|
}, y.prototype.forEach = function(a, l) {
|
|
2692
2692
|
for (var C in this.map)
|
|
2693
2693
|
this.map.hasOwnProperty(C) && a.call(l, this.map[C], C, this);
|
|
@@ -2695,17 +2695,17 @@ var ye = { exports: {} };
|
|
|
2695
2695
|
var a = [];
|
|
2696
2696
|
return this.forEach(function(l, C) {
|
|
2697
2697
|
a.push(C);
|
|
2698
|
-
}),
|
|
2698
|
+
}), T(a);
|
|
2699
2699
|
}, y.prototype.values = function() {
|
|
2700
2700
|
var a = [];
|
|
2701
2701
|
return this.forEach(function(l) {
|
|
2702
2702
|
a.push(l);
|
|
2703
|
-
}),
|
|
2703
|
+
}), T(a);
|
|
2704
2704
|
}, y.prototype.entries = function() {
|
|
2705
2705
|
var a = [];
|
|
2706
2706
|
return this.forEach(function(l, C) {
|
|
2707
2707
|
a.push([C, l]);
|
|
2708
|
-
}),
|
|
2708
|
+
}), T(a);
|
|
2709
2709
|
}, u.iterable && (y.prototype[Symbol.iterator] = y.prototype.entries);
|
|
2710
2710
|
function N(a) {
|
|
2711
2711
|
if (a.bodyUsed)
|
|
@@ -2721,7 +2721,7 @@ var ye = { exports: {} };
|
|
|
2721
2721
|
};
|
|
2722
2722
|
});
|
|
2723
2723
|
}
|
|
2724
|
-
function
|
|
2724
|
+
function R(a) {
|
|
2725
2725
|
var l = new FileReader(), C = O(l);
|
|
2726
2726
|
return l.readAsArrayBuffer(a), C;
|
|
2727
2727
|
}
|
|
@@ -2729,20 +2729,20 @@ var ye = { exports: {} };
|
|
|
2729
2729
|
var l = new FileReader(), C = O(l);
|
|
2730
2730
|
return l.readAsText(a), C;
|
|
2731
2731
|
}
|
|
2732
|
-
function
|
|
2732
|
+
function w(a) {
|
|
2733
2733
|
for (var l = new Uint8Array(a), C = new Array(l.length), D = 0; D < l.length; D++)
|
|
2734
2734
|
C[D] = String.fromCharCode(l[D]);
|
|
2735
2735
|
return C.join("");
|
|
2736
2736
|
}
|
|
2737
|
-
function
|
|
2737
|
+
function _(a) {
|
|
2738
2738
|
if (a.slice)
|
|
2739
2739
|
return a.slice(0);
|
|
2740
2740
|
var l = new Uint8Array(a.byteLength);
|
|
2741
2741
|
return l.set(new Uint8Array(a)), l.buffer;
|
|
2742
2742
|
}
|
|
2743
|
-
function
|
|
2743
|
+
function U() {
|
|
2744
2744
|
return this.bodyUsed = !1, this._initBody = function(a) {
|
|
2745
|
-
this._bodyInit = a, a ? typeof a == "string" ? this._bodyText = a : u.blob && Blob.prototype.isPrototypeOf(a) ? this._bodyBlob = a : u.formData && FormData.prototype.isPrototypeOf(a) ? this._bodyFormData = a : u.searchParams && URLSearchParams.prototype.isPrototypeOf(a) ? this._bodyText = a.toString() : u.arrayBuffer && u.blob && h(a) ? (this._bodyArrayBuffer =
|
|
2745
|
+
this._bodyInit = a, a ? typeof a == "string" ? this._bodyText = a : u.blob && Blob.prototype.isPrototypeOf(a) ? this._bodyBlob = a : u.formData && FormData.prototype.isPrototypeOf(a) ? this._bodyFormData = a : u.searchParams && URLSearchParams.prototype.isPrototypeOf(a) ? this._bodyText = a.toString() : u.arrayBuffer && u.blob && h(a) ? (this._bodyArrayBuffer = _(a.buffer), this._bodyInit = new Blob([this._bodyArrayBuffer])) : u.arrayBuffer && (ArrayBuffer.prototype.isPrototypeOf(a) || m(a)) ? this._bodyArrayBuffer = _(a) : this._bodyText = a = Object.prototype.toString.call(a) : this._bodyText = "", this.headers.get("content-type") || (typeof a == "string" ? this.headers.set("content-type", "text/plain;charset=UTF-8") : this._bodyBlob && this._bodyBlob.type ? this.headers.set("content-type", this._bodyBlob.type) : u.searchParams && URLSearchParams.prototype.isPrototypeOf(a) && this.headers.set("content-type", "application/x-www-form-urlencoded;charset=UTF-8"));
|
|
2746
2746
|
}, u.blob && (this.blob = function() {
|
|
2747
2747
|
var a = N(this);
|
|
2748
2748
|
if (a)
|
|
@@ -2755,7 +2755,7 @@ var ye = { exports: {} };
|
|
|
2755
2755
|
throw new Error("could not read FormData body as blob");
|
|
2756
2756
|
return Promise.resolve(new Blob([this._bodyText]));
|
|
2757
2757
|
}, this.arrayBuffer = function() {
|
|
2758
|
-
return this._bodyArrayBuffer ? N(this) || Promise.resolve(this._bodyArrayBuffer) : this.blob().then(
|
|
2758
|
+
return this._bodyArrayBuffer ? N(this) || Promise.resolve(this._bodyArrayBuffer) : this.blob().then(R);
|
|
2759
2759
|
}), this.text = function() {
|
|
2760
2760
|
var a = N(this);
|
|
2761
2761
|
if (a)
|
|
@@ -2763,7 +2763,7 @@ var ye = { exports: {} };
|
|
|
2763
2763
|
if (this._bodyBlob)
|
|
2764
2764
|
return z(this._bodyBlob);
|
|
2765
2765
|
if (this._bodyArrayBuffer)
|
|
2766
|
-
return Promise.resolve(
|
|
2766
|
+
return Promise.resolve(w(this._bodyArrayBuffer));
|
|
2767
2767
|
if (this._bodyFormData)
|
|
2768
2768
|
throw new Error("could not read FormData body as text");
|
|
2769
2769
|
return Promise.resolve(this._bodyText);
|
|
@@ -2778,10 +2778,10 @@ var ye = { exports: {} };
|
|
|
2778
2778
|
var l = a.toUpperCase();
|
|
2779
2779
|
return Q.indexOf(l) > -1 ? l : a;
|
|
2780
2780
|
}
|
|
2781
|
-
function
|
|
2781
|
+
function P(a, l) {
|
|
2782
2782
|
l = l || {};
|
|
2783
2783
|
var C = l.body;
|
|
2784
|
-
if (a instanceof
|
|
2784
|
+
if (a instanceof P) {
|
|
2785
2785
|
if (a.bodyUsed)
|
|
2786
2786
|
throw new TypeError("Already read");
|
|
2787
2787
|
this.url = a.url, this.credentials = a.credentials, l.headers || (this.headers = new y(a.headers)), this.method = a.method, this.mode = a.mode, this.signal = a.signal, !C && a._bodyInit != null && (C = a._bodyInit, a.bodyUsed = !0);
|
|
@@ -2791,48 +2791,48 @@ var ye = { exports: {} };
|
|
|
2791
2791
|
throw new TypeError("Body not allowed for GET or HEAD requests");
|
|
2792
2792
|
this._initBody(C);
|
|
2793
2793
|
}
|
|
2794
|
-
|
|
2795
|
-
return new
|
|
2794
|
+
P.prototype.clone = function() {
|
|
2795
|
+
return new P(this, { body: this._bodyInit });
|
|
2796
2796
|
};
|
|
2797
2797
|
function je(a) {
|
|
2798
2798
|
var l = new FormData();
|
|
2799
2799
|
return a.trim().split("&").forEach(function(C) {
|
|
2800
2800
|
if (C) {
|
|
2801
|
-
var D = C.split("="), I = D.shift().replace(/\+/g, " "),
|
|
2802
|
-
l.append(decodeURIComponent(I), decodeURIComponent(
|
|
2801
|
+
var D = C.split("="), I = D.shift().replace(/\+/g, " "), A = D.join("=").replace(/\+/g, " ");
|
|
2802
|
+
l.append(decodeURIComponent(I), decodeURIComponent(A));
|
|
2803
2803
|
}
|
|
2804
2804
|
}), l;
|
|
2805
2805
|
}
|
|
2806
2806
|
function Ge(a) {
|
|
2807
2807
|
var l = new y(), C = a.replace(/\r?\n[\t ]+/g, " ");
|
|
2808
2808
|
return C.split(/\r?\n/).forEach(function(D) {
|
|
2809
|
-
var I = D.split(":"),
|
|
2810
|
-
if (
|
|
2809
|
+
var I = D.split(":"), A = I.shift().trim();
|
|
2810
|
+
if (A) {
|
|
2811
2811
|
var X = I.join(":").trim();
|
|
2812
|
-
l.append(
|
|
2812
|
+
l.append(A, X);
|
|
2813
2813
|
}
|
|
2814
2814
|
}), l;
|
|
2815
2815
|
}
|
|
2816
|
-
|
|
2817
|
-
function
|
|
2816
|
+
U.call(P.prototype);
|
|
2817
|
+
function L(a, l) {
|
|
2818
2818
|
l || (l = {}), this.type = "default", this.status = l.status === void 0 ? 200 : l.status, this.ok = this.status >= 200 && this.status < 300, this.statusText = "statusText" in l ? l.statusText : "OK", this.headers = new y(l.headers), this.url = l.url || "", this._initBody(a);
|
|
2819
2819
|
}
|
|
2820
|
-
|
|
2821
|
-
return new
|
|
2820
|
+
U.call(L.prototype), L.prototype.clone = function() {
|
|
2821
|
+
return new L(this._bodyInit, {
|
|
2822
2822
|
status: this.status,
|
|
2823
2823
|
statusText: this.statusText,
|
|
2824
2824
|
headers: new y(this.headers),
|
|
2825
2825
|
url: this.url
|
|
2826
2826
|
});
|
|
2827
|
-
},
|
|
2828
|
-
var a = new
|
|
2827
|
+
}, L.error = function() {
|
|
2828
|
+
var a = new L(null, { status: 0, statusText: "" });
|
|
2829
2829
|
return a.type = "error", a;
|
|
2830
2830
|
};
|
|
2831
2831
|
var $e = [301, 302, 303, 307, 308];
|
|
2832
|
-
|
|
2832
|
+
L.redirect = function(a, l) {
|
|
2833
2833
|
if ($e.indexOf(l) === -1)
|
|
2834
2834
|
throw new RangeError("Invalid status code");
|
|
2835
|
-
return new
|
|
2835
|
+
return new L(null, { status: l, headers: { location: a } });
|
|
2836
2836
|
}, o.DOMException = s.DOMException;
|
|
2837
2837
|
try {
|
|
2838
2838
|
new o.DOMException();
|
|
@@ -2845,36 +2845,36 @@ var ye = { exports: {} };
|
|
|
2845
2845
|
}
|
|
2846
2846
|
function ae(a, l) {
|
|
2847
2847
|
return new Promise(function(C, D) {
|
|
2848
|
-
var I = new
|
|
2848
|
+
var I = new P(a, l);
|
|
2849
2849
|
if (I.signal && I.signal.aborted)
|
|
2850
2850
|
return D(new o.DOMException("Aborted", "AbortError"));
|
|
2851
|
-
var
|
|
2851
|
+
var A = new XMLHttpRequest();
|
|
2852
2852
|
function X() {
|
|
2853
|
-
|
|
2853
|
+
A.abort();
|
|
2854
2854
|
}
|
|
2855
|
-
|
|
2855
|
+
A.onload = function() {
|
|
2856
2856
|
var j = {
|
|
2857
|
-
status:
|
|
2858
|
-
statusText:
|
|
2859
|
-
headers: Ge(
|
|
2857
|
+
status: A.status,
|
|
2858
|
+
statusText: A.statusText,
|
|
2859
|
+
headers: Ge(A.getAllResponseHeaders() || "")
|
|
2860
2860
|
};
|
|
2861
|
-
j.url = "responseURL" in
|
|
2862
|
-
var ce = "response" in
|
|
2863
|
-
C(new
|
|
2864
|
-
},
|
|
2861
|
+
j.url = "responseURL" in A ? A.responseURL : j.headers.get("X-Request-URL");
|
|
2862
|
+
var ce = "response" in A ? A.response : A.responseText;
|
|
2863
|
+
C(new L(ce, j));
|
|
2864
|
+
}, A.onerror = function() {
|
|
2865
2865
|
D(new TypeError("Network request failed"));
|
|
2866
|
-
},
|
|
2866
|
+
}, A.ontimeout = function() {
|
|
2867
2867
|
D(new TypeError("Network request failed"));
|
|
2868
|
-
},
|
|
2868
|
+
}, A.onabort = function() {
|
|
2869
2869
|
D(new o.DOMException("Aborted", "AbortError"));
|
|
2870
|
-
},
|
|
2871
|
-
|
|
2872
|
-
}), I.signal && (I.signal.addEventListener("abort", X),
|
|
2873
|
-
|
|
2874
|
-
}),
|
|
2870
|
+
}, A.open(I.method, I.url, !0), I.credentials === "include" ? A.withCredentials = !0 : I.credentials === "omit" && (A.withCredentials = !1), "responseType" in A && u.blob && (A.responseType = "blob"), I.headers.forEach(function(j, ce) {
|
|
2871
|
+
A.setRequestHeader(ce, j);
|
|
2872
|
+
}), I.signal && (I.signal.addEventListener("abort", X), A.onreadystatechange = function() {
|
|
2873
|
+
A.readyState === 4 && I.signal.removeEventListener("abort", X);
|
|
2874
|
+
}), A.send(typeof I._bodyInit > "u" ? null : I._bodyInit);
|
|
2875
2875
|
});
|
|
2876
2876
|
}
|
|
2877
|
-
return ae.polyfill = !0, s.fetch || (s.fetch = ae, s.Headers = y, s.Request =
|
|
2877
|
+
return ae.polyfill = !0, s.fetch || (s.fetch = ae, s.Headers = y, s.Request = P, s.Response = L), o.Headers = y, o.Request = P, o.Response = L, o.fetch = ae, Object.defineProperty(o, "__esModule", { value: !0 }), o;
|
|
2878
2878
|
})({});
|
|
2879
2879
|
})(i), i.fetch.ponyfill = !0, delete i.fetch.polyfill;
|
|
2880
2880
|
var r = i;
|
|
@@ -2884,7 +2884,7 @@ var ne = ye.exports;
|
|
|
2884
2884
|
const ee = /* @__PURE__ */ Vt(ne), jt = /* @__PURE__ */ ze({
|
|
2885
2885
|
__proto__: null,
|
|
2886
2886
|
default: ee
|
|
2887
|
-
}, [ne]),
|
|
2887
|
+
}, [ne]), B = (e) => {
|
|
2888
2888
|
let t = {};
|
|
2889
2889
|
return e && (typeof Headers < "u" && e instanceof Headers || jt && ne.Headers && e instanceof ne.Headers ? t = Je(e) : Array.isArray(e) ? e.forEach(([n, i]) => {
|
|
2890
2890
|
n && i !== void 0 && (t[n] = i);
|
|
@@ -2903,66 +2903,66 @@ const ee = /* @__PURE__ */ Vt(ne), jt = /* @__PURE__ */ ze({
|
|
|
2903
2903
|
return `query=${encodeURIComponent(t.jsonSerializer.stringify(n))}`;
|
|
2904
2904
|
}, $t = (e) => async (t) => {
|
|
2905
2905
|
const { url: n, query: i, variables: r, operationName: s, fetch: o, fetchOptions: u, middleware: h } = t, p = { ...t.headers };
|
|
2906
|
-
let m = "",
|
|
2907
|
-
e === "POST" ? (
|
|
2906
|
+
let m = "", g;
|
|
2907
|
+
e === "POST" ? (g = Yt(i, r, s, u.jsonSerializer), typeof g == "string" && (p["Content-Type"] = "application/json")) : m = Gt({
|
|
2908
2908
|
query: i,
|
|
2909
2909
|
variables: r,
|
|
2910
2910
|
operationName: s,
|
|
2911
|
-
jsonSerializer: u.jsonSerializer ??
|
|
2911
|
+
jsonSerializer: u.jsonSerializer ?? Ee
|
|
2912
2912
|
});
|
|
2913
|
-
const
|
|
2913
|
+
const E = {
|
|
2914
2914
|
method: e,
|
|
2915
2915
|
headers: p,
|
|
2916
|
-
body:
|
|
2916
|
+
body: g,
|
|
2917
2917
|
...u
|
|
2918
2918
|
};
|
|
2919
|
-
let
|
|
2919
|
+
let T = n, y = E;
|
|
2920
2920
|
if (h) {
|
|
2921
|
-
const N = await Promise.resolve(h({ ...
|
|
2922
|
-
|
|
2921
|
+
const N = await Promise.resolve(h({ ...E, url: n, operationName: s, variables: r })), { url: O, ...R } = N;
|
|
2922
|
+
T = O, y = R;
|
|
2923
2923
|
}
|
|
2924
|
-
return m && (
|
|
2924
|
+
return m && (T = `${T}?${m}`), await o(T, y);
|
|
2925
2925
|
};
|
|
2926
2926
|
class Ht {
|
|
2927
2927
|
constructor(t, n = {}) {
|
|
2928
2928
|
this.url = t, this.requestConfig = n, this.rawRequest = async (...i) => {
|
|
2929
|
-
const [r, s, o] = i, u = We(r, s, o), { headers: h, fetch: p = ee, method: m = "POST", requestMiddleware:
|
|
2930
|
-
u.signal !== void 0 && (
|
|
2929
|
+
const [r, s, o] = i, u = We(r, s, o), { headers: h, fetch: p = ee, method: m = "POST", requestMiddleware: g, responseMiddleware: E, ...T } = this.requestConfig, { url: y } = this;
|
|
2930
|
+
u.signal !== void 0 && (T.signal = u.signal);
|
|
2931
2931
|
const { operationName: N } = le(u.query);
|
|
2932
2932
|
return de({
|
|
2933
2933
|
url: y,
|
|
2934
2934
|
query: u.query,
|
|
2935
2935
|
variables: u.variables,
|
|
2936
2936
|
headers: {
|
|
2937
|
-
...
|
|
2938
|
-
...
|
|
2937
|
+
...B(he(h)),
|
|
2938
|
+
...B(u.requestHeaders)
|
|
2939
2939
|
},
|
|
2940
2940
|
operationName: N,
|
|
2941
2941
|
fetch: p,
|
|
2942
2942
|
method: m,
|
|
2943
|
-
fetchOptions:
|
|
2944
|
-
middleware:
|
|
2945
|
-
}).then((O) => (
|
|
2946
|
-
throw
|
|
2943
|
+
fetchOptions: T,
|
|
2944
|
+
middleware: g
|
|
2945
|
+
}).then((O) => (E && E(O), O)).catch((O) => {
|
|
2946
|
+
throw E && E(O), O;
|
|
2947
2947
|
});
|
|
2948
2948
|
};
|
|
2949
2949
|
}
|
|
2950
2950
|
async request(t, ...n) {
|
|
2951
|
-
const [i, r] = n, s = Xe(t, i, r), { headers: o, fetch: u = ee, method: h = "POST", requestMiddleware: p, responseMiddleware: m, ...
|
|
2952
|
-
s.signal !== void 0 && (
|
|
2953
|
-
const { query:
|
|
2951
|
+
const [i, r] = n, s = Xe(t, i, r), { headers: o, fetch: u = ee, method: h = "POST", requestMiddleware: p, responseMiddleware: m, ...g } = this.requestConfig, { url: E } = this;
|
|
2952
|
+
s.signal !== void 0 && (g.signal = s.signal);
|
|
2953
|
+
const { query: T, operationName: y } = le(s.document);
|
|
2954
2954
|
return de({
|
|
2955
|
-
url:
|
|
2956
|
-
query:
|
|
2955
|
+
url: E,
|
|
2956
|
+
query: T,
|
|
2957
2957
|
variables: s.variables,
|
|
2958
2958
|
headers: {
|
|
2959
|
-
...
|
|
2960
|
-
...
|
|
2959
|
+
...B(he(o)),
|
|
2960
|
+
...B(s.requestHeaders)
|
|
2961
2961
|
},
|
|
2962
2962
|
operationName: y,
|
|
2963
2963
|
fetch: u,
|
|
2964
2964
|
method: h,
|
|
2965
|
-
fetchOptions:
|
|
2965
|
+
fetchOptions: g,
|
|
2966
2966
|
middleware: p
|
|
2967
2967
|
}).then((N) => (m && m(N), N.data)).catch((N) => {
|
|
2968
2968
|
throw m && m(N), N;
|
|
@@ -2979,8 +2979,8 @@ class Ht {
|
|
|
2979
2979
|
// @ts-expect-error TODO reconcile batch variables into system.
|
|
2980
2980
|
variables: u,
|
|
2981
2981
|
headers: {
|
|
2982
|
-
...
|
|
2983
|
-
...
|
|
2982
|
+
...B(he(r)),
|
|
2983
|
+
...B(i.requestHeaders)
|
|
2984
2984
|
},
|
|
2985
2985
|
operationName: void 0,
|
|
2986
2986
|
fetch: this.requestConfig.fetch ?? ee,
|
|
@@ -3009,11 +3009,11 @@ class Ht {
|
|
|
3009
3009
|
}
|
|
3010
3010
|
}
|
|
3011
3011
|
const de = async (e) => {
|
|
3012
|
-
const { query: t, variables: n, fetchOptions: i } = e, r = $t(Qe(e.method ?? "post")), s = Array.isArray(e.query), o = await r(e), u = await zt(o, i.jsonSerializer ??
|
|
3012
|
+
const { query: t, variables: n, fetchOptions: i } = e, r = $t(Qe(e.method ?? "post")), s = Array.isArray(e.query), o = await r(e), u = await zt(o, i.jsonSerializer ?? Ee), h = Array.isArray(u) ? !u.some(({ data: m }) => !m) : !!u.data, p = Array.isArray(u) || !u.errors || Array.isArray(u.errors) && !u.errors.length || i.errorPolicy === "all" || i.errorPolicy === "ignore";
|
|
3013
3013
|
if (o.ok && p && h) {
|
|
3014
|
-
const { errors: m, ...
|
|
3014
|
+
const { errors: m, ...g } = (Array.isArray(u), u), E = i.errorPolicy === "ignore" ? g : u;
|
|
3015
3015
|
return {
|
|
3016
|
-
...s ? { data:
|
|
3016
|
+
...s ? { data: E } : E,
|
|
3017
3017
|
headers: o.headers,
|
|
3018
3018
|
status: o.status
|
|
3019
3019
|
};
|
|
@@ -3028,7 +3028,7 @@ const de = async (e) => {
|
|
|
3028
3028
|
);
|
|
3029
3029
|
}
|
|
3030
3030
|
}, Yt = (e, t, n, i) => {
|
|
3031
|
-
const r = i ??
|
|
3031
|
+
const r = i ?? Ee;
|
|
3032
3032
|
if (!Array.isArray(e))
|
|
3033
3033
|
return r.stringify({ query: e, variables: t, operationName: n });
|
|
3034
3034
|
if (typeof t < "u" && !Array.isArray(t))
|
|
@@ -3051,7 +3051,7 @@ var re = function() {
|
|
|
3051
3051
|
return t;
|
|
3052
3052
|
}, re.apply(this, arguments);
|
|
3053
3053
|
};
|
|
3054
|
-
var te = /* @__PURE__ */ new Map(),
|
|
3054
|
+
var te = /* @__PURE__ */ new Map(), ge = /* @__PURE__ */ new Map(), qe = !0, ie = !1;
|
|
3055
3055
|
function Ve(e) {
|
|
3056
3056
|
return e.replace(/[\s,]+/g, " ").trim();
|
|
3057
3057
|
}
|
|
@@ -3062,10 +3062,10 @@ function Jt(e) {
|
|
|
3062
3062
|
var t = /* @__PURE__ */ new Set(), n = [];
|
|
3063
3063
|
return e.definitions.forEach(function(i) {
|
|
3064
3064
|
if (i.kind === "FragmentDefinition") {
|
|
3065
|
-
var r = i.name.value, s = Qt(i.loc), o =
|
|
3065
|
+
var r = i.name.value, s = Qt(i.loc), o = ge.get(r);
|
|
3066
3066
|
o && !o.has(s) ? qe && console.warn("Warning: fragment with name " + r + ` already exists.
|
|
3067
3067
|
graphql-tag enforces all fragment names across your application to be unique; read more about
|
|
3068
|
-
this in the docs: http://dev.apollodata.com/core/fragments.html#unique-names`) : o ||
|
|
3068
|
+
this in the docs: http://dev.apollodata.com/core/fragments.html#unique-names`) : o || ge.set(r, o = /* @__PURE__ */ new Set()), o.add(s), t.has(s) || (t.add(s), n.push(i));
|
|
3069
3069
|
} else
|
|
3070
3070
|
n.push(i);
|
|
3071
3071
|
}), re(re({}, e), { definitions: n });
|
|
@@ -3084,7 +3084,7 @@ function Xt(e) {
|
|
|
3084
3084
|
function Wt(e) {
|
|
3085
3085
|
var t = Ve(e);
|
|
3086
3086
|
if (!te.has(t)) {
|
|
3087
|
-
var n =
|
|
3087
|
+
var n = Be(e, {
|
|
3088
3088
|
experimentalFragmentVariables: ie,
|
|
3089
3089
|
allowLegacyFragmentVariables: ie
|
|
3090
3090
|
});
|
|
@@ -3104,7 +3104,7 @@ function q(e) {
|
|
|
3104
3104
|
}), Wt(i);
|
|
3105
3105
|
}
|
|
3106
3106
|
function Zt() {
|
|
3107
|
-
te.clear(),
|
|
3107
|
+
te.clear(), ge.clear();
|
|
3108
3108
|
}
|
|
3109
3109
|
function Kt() {
|
|
3110
3110
|
qe = !1;
|
|
@@ -3126,7 +3126,7 @@ var G = {
|
|
|
3126
3126
|
e.gql = G.gql, e.resetCaches = G.resetCaches, e.disableFragmentWarnings = G.disableFragmentWarnings, e.enableExperimentalFragmentVariables = G.enableExperimentalFragmentVariables, e.disableExperimentalFragmentVariables = G.disableExperimentalFragmentVariables;
|
|
3127
3127
|
})(q || (q = {}));
|
|
3128
3128
|
q.default = q;
|
|
3129
|
-
const
|
|
3129
|
+
const k = q, nn = k`
|
|
3130
3130
|
query GetLocationAvailabilities($sku: String!, $first: Int, $after: String, $isReverse: Boolean! = false) {
|
|
3131
3131
|
locationAvailabilities(
|
|
3132
3132
|
sku: $sku
|
|
@@ -3139,6 +3139,7 @@ const P = q, nn = P`
|
|
|
3139
3139
|
id
|
|
3140
3140
|
name
|
|
3141
3141
|
phone
|
|
3142
|
+
mapURL
|
|
3142
3143
|
address {
|
|
3143
3144
|
id
|
|
3144
3145
|
countryCode
|
|
@@ -3163,13 +3164,14 @@ const P = q, nn = P`
|
|
|
3163
3164
|
}
|
|
3164
3165
|
}
|
|
3165
3166
|
}
|
|
3166
|
-
`, rn =
|
|
3167
|
+
`, rn = k`
|
|
3167
3168
|
query GetLocationAvailability($sku: String!, $locationID: ID!) {
|
|
3168
3169
|
locationAvailability(sku: $sku, locationID: $locationID) {
|
|
3169
3170
|
location {
|
|
3170
3171
|
id
|
|
3171
3172
|
name
|
|
3172
3173
|
phone
|
|
3174
|
+
mapURL
|
|
3173
3175
|
address {
|
|
3174
3176
|
id
|
|
3175
3177
|
countryCode
|
|
@@ -3187,7 +3189,7 @@ const P = q, nn = P`
|
|
|
3187
3189
|
inventoryQuantity
|
|
3188
3190
|
}
|
|
3189
3191
|
}
|
|
3190
|
-
`, sn =
|
|
3192
|
+
`, sn = k`
|
|
3191
3193
|
query GetPurchasingCustomerMetafield($namespace: String!, $key: String!) {
|
|
3192
3194
|
purchasingCustomerMetafield(namespace: $namespace, key: $key) {
|
|
3193
3195
|
id
|
|
@@ -3196,20 +3198,21 @@ const P = q, nn = P`
|
|
|
3196
3198
|
value
|
|
3197
3199
|
}
|
|
3198
3200
|
}
|
|
3199
|
-
`, on =
|
|
3201
|
+
`, on = k`
|
|
3200
3202
|
query GetPoints {
|
|
3201
3203
|
purchasingCustomer {
|
|
3202
3204
|
pointsApproved
|
|
3203
3205
|
pointsPending
|
|
3204
3206
|
}
|
|
3205
3207
|
}
|
|
3206
|
-
`, an =
|
|
3208
|
+
`, an = k`
|
|
3207
3209
|
query GetLocations($first: Int, $after: String, $isReverse: Boolean! = false) {
|
|
3208
3210
|
locations(first: $first, after: $after, isReverse: $isReverse) {
|
|
3209
3211
|
nodes {
|
|
3210
3212
|
id
|
|
3211
3213
|
name
|
|
3212
3214
|
phone
|
|
3215
|
+
mapURL
|
|
3213
3216
|
address {
|
|
3214
3217
|
id
|
|
3215
3218
|
countryCode
|
|
@@ -3232,7 +3235,7 @@ const P = q, nn = P`
|
|
|
3232
3235
|
}
|
|
3233
3236
|
}
|
|
3234
3237
|
}
|
|
3235
|
-
`, cn =
|
|
3238
|
+
`, cn = k`
|
|
3236
3239
|
query GetPurchasingCustomerDiscounts($first: Int, $after: String, $isReverse: Boolean! = false) {
|
|
3237
3240
|
purchasingCustomer {
|
|
3238
3241
|
id
|
|
@@ -3244,6 +3247,9 @@ const P = q, nn = P`
|
|
|
3244
3247
|
description
|
|
3245
3248
|
code
|
|
3246
3249
|
customerApplicable
|
|
3250
|
+
shopifyStoreApplicable
|
|
3251
|
+
applicableLocationCount
|
|
3252
|
+
hasApplicableLocations
|
|
3247
3253
|
startsAt
|
|
3248
3254
|
endsAt
|
|
3249
3255
|
createdAt
|
|
@@ -3258,14 +3264,14 @@ const P = q, nn = P`
|
|
|
3258
3264
|
}
|
|
3259
3265
|
}
|
|
3260
3266
|
}
|
|
3261
|
-
`, un =
|
|
3267
|
+
`, un = k`
|
|
3262
3268
|
query GetPurchasingCustomerDiscountCodeCount {
|
|
3263
3269
|
purchasingCustomer {
|
|
3264
3270
|
id
|
|
3265
3271
|
orderPriceAdjustmentRuleCount
|
|
3266
3272
|
}
|
|
3267
3273
|
}
|
|
3268
|
-
`, ln =
|
|
3274
|
+
`, ln = k`
|
|
3269
3275
|
query GetPurchasingCustomerPointChangeActivities($first: Int, $after: String, $isReverse: Boolean! = false, $sortKeys: PointChangeActivitySortKey! = CREATED_AT) {
|
|
3270
3276
|
purchasingCustomer {
|
|
3271
3277
|
id
|
|
@@ -3291,6 +3297,7 @@ const P = q, nn = P`
|
|
|
3291
3297
|
id
|
|
3292
3298
|
name
|
|
3293
3299
|
phone
|
|
3300
|
+
mapURL
|
|
3294
3301
|
address {
|
|
3295
3302
|
id
|
|
3296
3303
|
countryCode
|
|
@@ -3315,7 +3322,7 @@ const P = q, nn = P`
|
|
|
3315
3322
|
}
|
|
3316
3323
|
}
|
|
3317
3324
|
}
|
|
3318
|
-
`, dn =
|
|
3325
|
+
`, dn = k`
|
|
3319
3326
|
query GetPurchasingCustomerRank {
|
|
3320
3327
|
purchasingCustomer {
|
|
3321
3328
|
currentCustomerRank {
|
|
@@ -3354,8 +3361,26 @@ const P = q, nn = P`
|
|
|
3354
3361
|
}
|
|
3355
3362
|
}
|
|
3356
3363
|
}
|
|
3357
|
-
`, hn =
|
|
3358
|
-
|
|
3364
|
+
`, hn = k`
|
|
3365
|
+
query GetSharingPurchasingCustomerCount {
|
|
3366
|
+
purchasingCustomer {
|
|
3367
|
+
id
|
|
3368
|
+
sharingPurchasingCustomerCount
|
|
3369
|
+
}
|
|
3370
|
+
}
|
|
3371
|
+
`, pn = k`
|
|
3372
|
+
mutation PurchasingCustomerSendCustomerSharingActivationCode {
|
|
3373
|
+
purchasingCustomerSendCustomerSharingActivationCode {
|
|
3374
|
+
purchasingCustomer {
|
|
3375
|
+
id
|
|
3376
|
+
}
|
|
3377
|
+
customerSharingActivationCode {
|
|
3378
|
+
id
|
|
3379
|
+
}
|
|
3380
|
+
}
|
|
3381
|
+
}
|
|
3382
|
+
`, fn = (e, t, n, i) => e();
|
|
3383
|
+
function mn(e, t = fn) {
|
|
3359
3384
|
return {
|
|
3360
3385
|
GetLocationAvailabilities(n, i) {
|
|
3361
3386
|
return t((r) => e.request(nn, n, { ...i, ...r }), "GetLocationAvailabilities", "query", n);
|
|
@@ -3383,13 +3408,19 @@ function pn(e, t = hn) {
|
|
|
3383
3408
|
},
|
|
3384
3409
|
GetPurchasingCustomerRank(n, i) {
|
|
3385
3410
|
return t((r) => e.request(dn, n, { ...i, ...r }), "GetPurchasingCustomerRank", "query", n);
|
|
3411
|
+
},
|
|
3412
|
+
GetSharingPurchasingCustomerCount(n, i) {
|
|
3413
|
+
return t((r) => e.request(hn, n, { ...i, ...r }), "GetSharingPurchasingCustomerCount", "query", n);
|
|
3414
|
+
},
|
|
3415
|
+
PurchasingCustomerSendCustomerSharingActivationCode(n, i) {
|
|
3416
|
+
return t((r) => e.request(pn, n, { ...i, ...r }), "PurchasingCustomerSendCustomerSharingActivationCode", "mutation", n);
|
|
3386
3417
|
}
|
|
3387
3418
|
};
|
|
3388
3419
|
}
|
|
3389
|
-
class
|
|
3420
|
+
class gn {
|
|
3390
3421
|
constructor(t) {
|
|
3391
|
-
|
|
3392
|
-
this.api =
|
|
3422
|
+
Ae(this, "api");
|
|
3423
|
+
this.api = mn(
|
|
3393
3424
|
new Ht(`${t}/apps/sq-api`, {
|
|
3394
3425
|
headers: {
|
|
3395
3426
|
"X-SQ-CLIENT": "ShopifyAppProxy"
|
|
@@ -3419,6 +3450,7 @@ class mn {
|
|
|
3419
3450
|
id: o.location.id,
|
|
3420
3451
|
name: o.location.name,
|
|
3421
3452
|
phone: o.location.phone,
|
|
3453
|
+
mapURL: o.location.mapURL,
|
|
3422
3454
|
address: o.location.address ? {
|
|
3423
3455
|
id: o.location.address.id,
|
|
3424
3456
|
countryCode: o.location.address.countryCode,
|
|
@@ -3449,6 +3481,7 @@ class mn {
|
|
|
3449
3481
|
id: i.locationAvailability.location.id,
|
|
3450
3482
|
name: i.locationAvailability.location.name,
|
|
3451
3483
|
phone: i.locationAvailability.location.phone,
|
|
3484
|
+
mapURL: i.locationAvailability.location.mapURL,
|
|
3452
3485
|
address: i.locationAvailability.location.address ? {
|
|
3453
3486
|
id: i.locationAvailability.location.address.id,
|
|
3454
3487
|
countryCode: i.locationAvailability.location.address.countryCode,
|
|
@@ -3502,6 +3535,7 @@ class mn {
|
|
|
3502
3535
|
id: s.id,
|
|
3503
3536
|
name: s.name,
|
|
3504
3537
|
phone: s.phone,
|
|
3538
|
+
mapURL: s.mapURL,
|
|
3505
3539
|
address: s.address ? {
|
|
3506
3540
|
id: s.address.id,
|
|
3507
3541
|
countryCode: s.address.countryCode,
|
|
@@ -3520,6 +3554,7 @@ class mn {
|
|
|
3520
3554
|
/**
|
|
3521
3555
|
* getPurchasingCustomerDiscounts は購入者の割引情報を返します。
|
|
3522
3556
|
*
|
|
3557
|
+
* @param {string} [retailLocationID] 取得したい割引情報が適用されているLocationのID。
|
|
3523
3558
|
* @param {number} [first] 取得してくる個数。デフォルトは250。
|
|
3524
3559
|
* @param {string} [after] ページングの値。指定しない場合先頭から取得してくる。
|
|
3525
3560
|
* @param {boolean} [isReverse] 並び順。デフォルトはfalse。
|
|
@@ -3540,6 +3575,9 @@ class mn {
|
|
|
3540
3575
|
description: s.description,
|
|
3541
3576
|
code: s.code,
|
|
3542
3577
|
customerApplicable: s.customerApplicable,
|
|
3578
|
+
shopifyStoreApplicable: s.shopifyStoreApplicable,
|
|
3579
|
+
applicableLocationCount: s.applicableLocationCount,
|
|
3580
|
+
hasApplicableLocations: s.hasApplicableLocations,
|
|
3543
3581
|
startsAt: new Date(s.startsAt),
|
|
3544
3582
|
endsAt: new Date(s.endsAt),
|
|
3545
3583
|
createdAt: new Date(s.createdAt),
|
|
@@ -3584,6 +3622,7 @@ class mn {
|
|
|
3584
3622
|
id: o.retailLocation.id,
|
|
3585
3623
|
name: o.retailLocation.name,
|
|
3586
3624
|
phone: o.retailLocation.phone,
|
|
3625
|
+
mapURL: o.retailLocation.mapURL,
|
|
3587
3626
|
address: o.retailLocation.address ? {
|
|
3588
3627
|
id: o.retailLocation.address.id,
|
|
3589
3628
|
countryCode: o.retailLocation.address.countryCode,
|
|
@@ -3653,7 +3692,24 @@ class mn {
|
|
|
3653
3692
|
var n;
|
|
3654
3693
|
return ((n = (await this.api.GetPurchasingCustomerDiscountCodeCount()).purchasingCustomer) == null ? void 0 : n.orderPriceAdjustmentRuleCount) ?? 0;
|
|
3655
3694
|
}
|
|
3695
|
+
/**
|
|
3696
|
+
* getSharingPurchasingCustomerCount は顧客が共有化している数を返します。
|
|
3697
|
+
*/
|
|
3698
|
+
async getSharingPurchasingCustomerCount() {
|
|
3699
|
+
var n;
|
|
3700
|
+
return ((n = (await this.api.GetSharingPurchasingCustomerCount()).purchasingCustomer) == null ? void 0 : n.sharingPurchasingCustomerCount) ?? 0;
|
|
3701
|
+
}
|
|
3702
|
+
/**
|
|
3703
|
+
* purchasingCustomerSendCustomerSharingActivationCode はログインしているアカウントのメールアドレスに顧客情報共有のためのアクティベーションコードを送信する。
|
|
3704
|
+
*/
|
|
3705
|
+
async purchasingCustomerSendCustomerSharingActivationCode() {
|
|
3706
|
+
const t = await this.api.PurchasingCustomerSendCustomerSharingActivationCode();
|
|
3707
|
+
return t.purchasingCustomerSendCustomerSharingActivationCode ? {
|
|
3708
|
+
purchasingCustomerID: t.purchasingCustomerSendCustomerSharingActivationCode.purchasingCustomer.id,
|
|
3709
|
+
customerSharingActivationCodeID: t.purchasingCustomerSendCustomerSharingActivationCode.customerSharingActivationCode.id
|
|
3710
|
+
} : null;
|
|
3711
|
+
}
|
|
3656
3712
|
}
|
|
3657
3713
|
export {
|
|
3658
|
-
|
|
3714
|
+
gn as SDK
|
|
3659
3715
|
};
|