@builtbystack/sq-shopify-theme-sdk 0.0.30 → 0.0.32
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 +255 -1
- package/dist/sq-shopify-theme-sdk.d.ts +118 -1
- package/dist/sq-shopify-theme-sdk.js +662 -469
- package/dist/sq-shopify-theme-sdk.umd.js +140 -52
- 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 ve = (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 r = t[n];
|
|
@@ -27,7 +27,7 @@ var ne = function() {
|
|
|
27
27
|
return t;
|
|
28
28
|
}, ne.apply(this, arguments);
|
|
29
29
|
};
|
|
30
|
-
function
|
|
30
|
+
function Z(e, t) {
|
|
31
31
|
if (!!!e)
|
|
32
32
|
throw new Error(t);
|
|
33
33
|
}
|
|
@@ -54,39 +54,39 @@ function he(e, t) {
|
|
|
54
54
|
};
|
|
55
55
|
}
|
|
56
56
|
function Ke(e) {
|
|
57
|
-
return
|
|
57
|
+
return Pe(
|
|
58
58
|
e.source,
|
|
59
59
|
he(e.source, e.start)
|
|
60
60
|
);
|
|
61
61
|
}
|
|
62
|
-
function
|
|
62
|
+
function Pe(e, t) {
|
|
63
63
|
const n = e.locationOffset.column - 1, r = "".padStart(n) + e.body, i = t.line - 1, s = e.locationOffset.line - 1, a = t.line + s, c = t.line === 1 ? n : 0, p = t.column + c, h = `${e.name}:${a}:${p}
|
|
64
|
-
`,
|
|
64
|
+
`, f = r.split(/\r\n|[\n\r]/g), C = f[i];
|
|
65
65
|
if (C.length > 120) {
|
|
66
|
-
const y = Math.floor(p / 80),
|
|
67
|
-
for (let
|
|
68
|
-
g.push(C.slice(
|
|
69
|
-
return h +
|
|
66
|
+
const y = Math.floor(p / 80), I = p % 80, g = [];
|
|
67
|
+
for (let T = 0; T < C.length; T += 80)
|
|
68
|
+
g.push(C.slice(T, T + 80));
|
|
69
|
+
return h + Ie([
|
|
70
70
|
[`${a} |`, g[0]],
|
|
71
|
-
...g.slice(1, y + 1).map((
|
|
72
|
-
["|", "^".padStart(
|
|
71
|
+
...g.slice(1, y + 1).map((T) => ["|", T]),
|
|
72
|
+
["|", "^".padStart(I)],
|
|
73
73
|
["|", g[y + 1]]
|
|
74
74
|
]);
|
|
75
75
|
}
|
|
76
|
-
return h +
|
|
76
|
+
return h + Ie([
|
|
77
77
|
// Lines specified like this: ["prefix", "string"],
|
|
78
|
-
[`${a - 1} |`,
|
|
78
|
+
[`${a - 1} |`, f[i - 1]],
|
|
79
79
|
[`${a} |`, C],
|
|
80
80
|
["|", "^".padStart(p)],
|
|
81
|
-
[`${a + 1} |`,
|
|
81
|
+
[`${a + 1} |`, f[i + 1]]
|
|
82
82
|
]);
|
|
83
83
|
}
|
|
84
|
-
function
|
|
84
|
+
function Ie(e) {
|
|
85
85
|
const t = e.filter(([r, i]) => i !== void 0), n = Math.max(...t.map(([r]) => r.length));
|
|
86
86
|
return t.map(([r, i]) => r.padStart(n) + (i ? " " + i : "")).join(`
|
|
87
87
|
`);
|
|
88
88
|
}
|
|
89
|
-
function
|
|
89
|
+
function Ze(e) {
|
|
90
90
|
const t = e[0];
|
|
91
91
|
return t == null || "kind" in t || "length" in t ? {
|
|
92
92
|
nodes: t,
|
|
@@ -138,18 +138,18 @@ class ye extends Error {
|
|
|
138
138
|
*/
|
|
139
139
|
constructor(t, ...n) {
|
|
140
140
|
var r, i, s;
|
|
141
|
-
const { nodes: a, source: c, positions: p, path: h, originalError:
|
|
142
|
-
super(t), this.name = "GraphQLError", this.path = h ?? void 0, this.originalError =
|
|
141
|
+
const { nodes: a, source: c, positions: p, path: h, originalError: f, extensions: C } = Ze(n);
|
|
142
|
+
super(t), this.name = "GraphQLError", this.path = h ?? void 0, this.originalError = f ?? void 0, this.nodes = Te(
|
|
143
143
|
Array.isArray(a) ? a : a ? [a] : void 0
|
|
144
144
|
);
|
|
145
|
-
const y =
|
|
145
|
+
const y = Te(
|
|
146
146
|
(r = this.nodes) === null || r === void 0 ? void 0 : r.map((g) => g.loc).filter((g) => g != null)
|
|
147
147
|
);
|
|
148
148
|
this.source = c ?? (y == null || (i = y[0]) === null || i === void 0 ? void 0 : i.source), this.positions = p ?? (y == null ? void 0 : y.map((g) => g.start)), this.locations = p && c ? p.map((g) => he(c, g)) : y == null ? void 0 : y.map((g) => he(g.source, g.start));
|
|
149
|
-
const
|
|
150
|
-
|
|
151
|
-
) ?
|
|
152
|
-
this.extensions = (s = C ??
|
|
149
|
+
const I = Je(
|
|
150
|
+
f == null ? void 0 : f.extensions
|
|
151
|
+
) ? f == null ? void 0 : f.extensions : void 0;
|
|
152
|
+
this.extensions = (s = C ?? I) !== null && s !== void 0 ? s : /* @__PURE__ */ Object.create(null), Object.defineProperties(this, {
|
|
153
153
|
message: {
|
|
154
154
|
writable: !0,
|
|
155
155
|
enumerable: !0
|
|
@@ -169,8 +169,8 @@ class ye extends Error {
|
|
|
169
169
|
originalError: {
|
|
170
170
|
enumerable: !1
|
|
171
171
|
}
|
|
172
|
-
}),
|
|
173
|
-
value:
|
|
172
|
+
}), f != null && f.stack ? Object.defineProperty(this, "stack", {
|
|
173
|
+
value: f.stack,
|
|
174
174
|
writable: !0,
|
|
175
175
|
configurable: !0
|
|
176
176
|
}) : Error.captureStackTrace ? Error.captureStackTrace(this, ye) : Object.defineProperty(this, "stack", {
|
|
@@ -193,7 +193,7 @@ class ye extends Error {
|
|
|
193
193
|
for (const n of this.locations)
|
|
194
194
|
t += `
|
|
195
195
|
|
|
196
|
-
` +
|
|
196
|
+
` + Pe(this.source, n);
|
|
197
197
|
return t;
|
|
198
198
|
}
|
|
199
199
|
toJSON() {
|
|
@@ -203,16 +203,16 @@ class ye extends Error {
|
|
|
203
203
|
return this.locations != null && (t.locations = this.locations), this.path != null && (t.path = this.path), this.extensions != null && Object.keys(this.extensions).length > 0 && (t.extensions = this.extensions), t;
|
|
204
204
|
}
|
|
205
205
|
}
|
|
206
|
-
function
|
|
206
|
+
function Te(e) {
|
|
207
207
|
return e === void 0 || e.length === 0 ? void 0 : e;
|
|
208
208
|
}
|
|
209
|
-
function
|
|
209
|
+
function R(e, t, n) {
|
|
210
210
|
return new ye(`Syntax Error: ${n}`, {
|
|
211
211
|
source: e,
|
|
212
212
|
positions: [t]
|
|
213
213
|
});
|
|
214
214
|
}
|
|
215
|
-
class
|
|
215
|
+
class We {
|
|
216
216
|
/**
|
|
217
217
|
* The character offset at which this Node begins.
|
|
218
218
|
*/
|
|
@@ -241,7 +241,7 @@ class Ze {
|
|
|
241
241
|
};
|
|
242
242
|
}
|
|
243
243
|
}
|
|
244
|
-
class
|
|
244
|
+
class De {
|
|
245
245
|
/**
|
|
246
246
|
* The kind of Token.
|
|
247
247
|
*/
|
|
@@ -283,7 +283,7 @@ class be {
|
|
|
283
283
|
};
|
|
284
284
|
}
|
|
285
285
|
}
|
|
286
|
-
const
|
|
286
|
+
const be = {
|
|
287
287
|
Name: [],
|
|
288
288
|
Document: ["definitions"],
|
|
289
289
|
OperationDefinition: [
|
|
@@ -357,24 +357,24 @@ const De = {
|
|
|
357
357
|
UnionTypeExtension: ["name", "directives", "types"],
|
|
358
358
|
EnumTypeExtension: ["name", "directives", "values"],
|
|
359
359
|
InputObjectTypeExtension: ["name", "directives", "fields"]
|
|
360
|
-
}, et = new Set(Object.keys(
|
|
361
|
-
function
|
|
360
|
+
}, et = new Set(Object.keys(be));
|
|
361
|
+
function xe(e) {
|
|
362
362
|
const t = e == null ? void 0 : e.kind;
|
|
363
363
|
return typeof t == "string" && et.has(t);
|
|
364
364
|
}
|
|
365
|
-
var
|
|
365
|
+
var q;
|
|
366
366
|
(function(e) {
|
|
367
367
|
e.QUERY = "query", e.MUTATION = "mutation", e.SUBSCRIPTION = "subscription";
|
|
368
|
-
})(
|
|
369
|
-
var
|
|
368
|
+
})(q || (q = {}));
|
|
369
|
+
var me;
|
|
370
370
|
(function(e) {
|
|
371
371
|
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";
|
|
372
|
-
})(
|
|
373
|
-
var
|
|
372
|
+
})(me || (me = {}));
|
|
373
|
+
var m;
|
|
374
374
|
(function(e) {
|
|
375
375
|
e.NAME = "Name", e.DOCUMENT = "Document", e.OPERATION_DEFINITION = "OperationDefinition", e.VARIABLE_DEFINITION = "VariableDefinition", e.SELECTION_SET = "SelectionSet", e.FIELD = "Field", e.ARGUMENT = "Argument", e.FRAGMENT_SPREAD = "FragmentSpread", e.INLINE_FRAGMENT = "InlineFragment", e.FRAGMENT_DEFINITION = "FragmentDefinition", e.VARIABLE = "Variable", e.INT = "IntValue", e.FLOAT = "FloatValue", e.STRING = "StringValue", e.BOOLEAN = "BooleanValue", e.NULL = "NullValue", e.ENUM = "EnumValue", e.LIST = "ListValue", e.OBJECT = "ObjectValue", e.OBJECT_FIELD = "ObjectField", e.DIRECTIVE = "Directive", e.NAMED_TYPE = "NamedType", e.LIST_TYPE = "ListType", e.NON_NULL_TYPE = "NonNullType", e.SCHEMA_DEFINITION = "SchemaDefinition", e.OPERATION_TYPE_DEFINITION = "OperationTypeDefinition", e.SCALAR_TYPE_DEFINITION = "ScalarTypeDefinition", e.OBJECT_TYPE_DEFINITION = "ObjectTypeDefinition", e.FIELD_DEFINITION = "FieldDefinition", e.INPUT_VALUE_DEFINITION = "InputValueDefinition", e.INTERFACE_TYPE_DEFINITION = "InterfaceTypeDefinition", e.UNION_TYPE_DEFINITION = "UnionTypeDefinition", e.ENUM_TYPE_DEFINITION = "EnumTypeDefinition", e.ENUM_VALUE_DEFINITION = "EnumValueDefinition", e.INPUT_OBJECT_TYPE_DEFINITION = "InputObjectTypeDefinition", e.DIRECTIVE_DEFINITION = "DirectiveDefinition", e.SCHEMA_EXTENSION = "SchemaExtension", e.SCALAR_TYPE_EXTENSION = "ScalarTypeExtension", e.OBJECT_TYPE_EXTENSION = "ObjectTypeExtension", e.INTERFACE_TYPE_EXTENSION = "InterfaceTypeExtension", e.UNION_TYPE_EXTENSION = "UnionTypeExtension", e.ENUM_TYPE_EXTENSION = "EnumTypeExtension", e.INPUT_OBJECT_TYPE_EXTENSION = "InputObjectTypeExtension";
|
|
376
|
-
})(
|
|
377
|
-
function
|
|
376
|
+
})(m || (m = {}));
|
|
377
|
+
function fe(e) {
|
|
378
378
|
return e === 9 || e === 32;
|
|
379
379
|
}
|
|
380
380
|
function Y(e) {
|
|
@@ -405,17 +405,17 @@ function nt(e) {
|
|
|
405
405
|
}
|
|
406
406
|
function it(e) {
|
|
407
407
|
let t = 0;
|
|
408
|
-
for (; t < e.length &&
|
|
408
|
+
for (; t < e.length && fe(e.charCodeAt(t)); )
|
|
409
409
|
++t;
|
|
410
410
|
return t;
|
|
411
411
|
}
|
|
412
412
|
function rt(e, t) {
|
|
413
|
-
const n = e.replace(/"""/g, '\\"""'), r = n.split(/\r\n|[\n\r]/g), i = r.length === 1, s = r.length > 1 && r.slice(1).every((
|
|
413
|
+
const n = e.replace(/"""/g, '\\"""'), r = n.split(/\r\n|[\n\r]/g), i = r.length === 1, s = r.length > 1 && r.slice(1).every((I) => I.length === 0 || fe(I.charCodeAt(0))), a = n.endsWith('\\"""'), c = e.endsWith('"') && !a, p = e.endsWith("\\"), h = c || p, f = !(t != null && t.minimize) && // add leading and trailing new lines only if it improves readability
|
|
414
414
|
(!i || e.length > 70 || h || s || a);
|
|
415
415
|
let C = "";
|
|
416
|
-
const y = i &&
|
|
417
|
-
return (
|
|
418
|
-
`), C += n, (
|
|
416
|
+
const y = i && fe(e.charCodeAt(0));
|
|
417
|
+
return (f && !y || s) && (C += `
|
|
418
|
+
`), C += n, (f || h) && (C += `
|
|
419
419
|
`), '"""' + C + '"""';
|
|
420
420
|
}
|
|
421
421
|
var u;
|
|
@@ -436,7 +436,7 @@ class st {
|
|
|
436
436
|
* The character offset at which the current line begins.
|
|
437
437
|
*/
|
|
438
438
|
constructor(t) {
|
|
439
|
-
const n = new
|
|
439
|
+
const n = new De(u.SOF, 0, 0, 0, 0);
|
|
440
440
|
this.source = t, this.lastToken = n, this.token = n, this.line = 1, this.lineStart = 0;
|
|
441
441
|
}
|
|
442
442
|
get [Symbol.toStringTag]() {
|
|
@@ -493,7 +493,7 @@ function F(e, t) {
|
|
|
493
493
|
}
|
|
494
494
|
function S(e, t, n, r, i) {
|
|
495
495
|
const s = e.line, a = 1 + n - e.lineStart;
|
|
496
|
-
return new
|
|
496
|
+
return new De(t, n, r, s, a, i);
|
|
497
497
|
}
|
|
498
498
|
function ot(e, t) {
|
|
499
499
|
const n = e.source.body, r = n.length;
|
|
@@ -546,13 +546,13 @@ function ot(e, t) {
|
|
|
546
546
|
case 125:
|
|
547
547
|
return S(e, u.BRACE_R, i, i + 1);
|
|
548
548
|
case 34:
|
|
549
|
-
return n.charCodeAt(i + 1) === 34 && n.charCodeAt(i + 2) === 34 ?
|
|
549
|
+
return n.charCodeAt(i + 1) === 34 && n.charCodeAt(i + 2) === 34 ? mt(e, i) : lt(e, i);
|
|
550
550
|
}
|
|
551
551
|
if (Y(s) || s === 45)
|
|
552
552
|
return ct(e, i, s);
|
|
553
553
|
if (_e(s))
|
|
554
|
-
return
|
|
555
|
-
throw
|
|
554
|
+
return ft(e, i);
|
|
555
|
+
throw R(
|
|
556
556
|
e.source,
|
|
557
557
|
i,
|
|
558
558
|
s === 39 ? `Unexpected single quote character ('), did you mean to use a double quote (")?` : G(s) || se(n, i) ? `Unexpected character: ${F(e, i)}.` : `Invalid character: ${F(e, i)}.`
|
|
@@ -587,7 +587,7 @@ function ct(e, t, n) {
|
|
|
587
587
|
let i = t, s = n, a = !1;
|
|
588
588
|
if (s === 45 && (s = r.charCodeAt(++i)), s === 48) {
|
|
589
589
|
if (s = r.charCodeAt(++i), Y(s))
|
|
590
|
-
throw
|
|
590
|
+
throw R(
|
|
591
591
|
e.source,
|
|
592
592
|
i,
|
|
593
593
|
`Invalid number, unexpected digit after 0: ${F(
|
|
@@ -598,7 +598,7 @@ function ct(e, t, n) {
|
|
|
598
598
|
} else
|
|
599
599
|
i = ce(e, i, s), s = r.charCodeAt(i);
|
|
600
600
|
if (s === 46 && (a = !0, s = r.charCodeAt(++i), i = ce(e, i, s), s = r.charCodeAt(i)), (s === 69 || s === 101) && (a = !0, s = r.charCodeAt(++i), (s === 43 || s === 45) && (s = r.charCodeAt(++i)), i = ce(e, i, s), s = r.charCodeAt(i)), s === 46 || _e(s))
|
|
601
|
-
throw
|
|
601
|
+
throw R(
|
|
602
602
|
e.source,
|
|
603
603
|
i,
|
|
604
604
|
`Invalid number, expected digit but got: ${F(
|
|
@@ -616,7 +616,7 @@ function ct(e, t, n) {
|
|
|
616
616
|
}
|
|
617
617
|
function ce(e, t, n) {
|
|
618
618
|
if (!Y(n))
|
|
619
|
-
throw
|
|
619
|
+
throw R(
|
|
620
620
|
e.source,
|
|
621
621
|
t,
|
|
622
622
|
`Invalid number, expected digit but got: ${F(
|
|
@@ -630,7 +630,7 @@ function ce(e, t, n) {
|
|
|
630
630
|
++i;
|
|
631
631
|
return i;
|
|
632
632
|
}
|
|
633
|
-
function
|
|
633
|
+
function lt(e, t) {
|
|
634
634
|
const n = e.source.body, r = n.length;
|
|
635
635
|
let i = t + 1, s = i, a = "";
|
|
636
636
|
for (; i < r; ) {
|
|
@@ -639,7 +639,7 @@ function dt(e, t) {
|
|
|
639
639
|
return a += n.slice(s, i), S(e, u.STRING, t, i + 1, a);
|
|
640
640
|
if (c === 92) {
|
|
641
641
|
a += n.slice(s, i);
|
|
642
|
-
const p = n.charCodeAt(i + 1) === 117 ? n.charCodeAt(i + 2) === 123 ?
|
|
642
|
+
const p = n.charCodeAt(i + 1) === 117 ? n.charCodeAt(i + 2) === 123 ? dt(e, i) : pt(e, i) : ht(e, i);
|
|
643
643
|
a += p.value, i += p.size, s = i;
|
|
644
644
|
continue;
|
|
645
645
|
}
|
|
@@ -650,7 +650,7 @@ function dt(e, t) {
|
|
|
650
650
|
else if (se(n, i))
|
|
651
651
|
i += 2;
|
|
652
652
|
else
|
|
653
|
-
throw
|
|
653
|
+
throw R(
|
|
654
654
|
e.source,
|
|
655
655
|
i,
|
|
656
656
|
`Invalid character within String: ${F(
|
|
@@ -659,9 +659,9 @@ function dt(e, t) {
|
|
|
659
659
|
)}.`
|
|
660
660
|
);
|
|
661
661
|
}
|
|
662
|
-
throw
|
|
662
|
+
throw R(e.source, i, "Unterminated string.");
|
|
663
663
|
}
|
|
664
|
-
function
|
|
664
|
+
function dt(e, t) {
|
|
665
665
|
const n = e.source.body;
|
|
666
666
|
let r = 0, i = 3;
|
|
667
667
|
for (; i < 12; ) {
|
|
@@ -677,7 +677,7 @@ function lt(e, t) {
|
|
|
677
677
|
if (r = r << 4 | j(s), r < 0)
|
|
678
678
|
break;
|
|
679
679
|
}
|
|
680
|
-
throw
|
|
680
|
+
throw R(
|
|
681
681
|
e.source,
|
|
682
682
|
t,
|
|
683
683
|
`Invalid Unicode escape sequence: "${n.slice(
|
|
@@ -687,27 +687,27 @@ function lt(e, t) {
|
|
|
687
687
|
);
|
|
688
688
|
}
|
|
689
689
|
function pt(e, t) {
|
|
690
|
-
const n = e.source.body, r =
|
|
690
|
+
const n = e.source.body, r = Se(n, t + 2);
|
|
691
691
|
if (G(r))
|
|
692
692
|
return {
|
|
693
693
|
value: String.fromCodePoint(r),
|
|
694
694
|
size: 6
|
|
695
695
|
};
|
|
696
696
|
if (Le(r) && n.charCodeAt(t + 6) === 92 && n.charCodeAt(t + 7) === 117) {
|
|
697
|
-
const i =
|
|
697
|
+
const i = Se(n, t + 8);
|
|
698
698
|
if (we(i))
|
|
699
699
|
return {
|
|
700
700
|
value: String.fromCodePoint(r, i),
|
|
701
701
|
size: 12
|
|
702
702
|
};
|
|
703
703
|
}
|
|
704
|
-
throw
|
|
704
|
+
throw R(
|
|
705
705
|
e.source,
|
|
706
706
|
t,
|
|
707
707
|
`Invalid Unicode escape sequence: "${n.slice(t, t + 6)}".`
|
|
708
708
|
);
|
|
709
709
|
}
|
|
710
|
-
function
|
|
710
|
+
function Se(e, t) {
|
|
711
711
|
return j(e.charCodeAt(t)) << 12 | j(e.charCodeAt(t + 1)) << 8 | j(e.charCodeAt(t + 2)) << 4 | j(e.charCodeAt(t + 3));
|
|
712
712
|
}
|
|
713
713
|
function j(e) {
|
|
@@ -758,7 +758,7 @@ function ht(e, t) {
|
|
|
758
758
|
size: 2
|
|
759
759
|
};
|
|
760
760
|
}
|
|
761
|
-
throw
|
|
761
|
+
throw R(
|
|
762
762
|
e.source,
|
|
763
763
|
t,
|
|
764
764
|
`Invalid character escape sequence: "${n.slice(
|
|
@@ -767,7 +767,7 @@ function ht(e, t) {
|
|
|
767
767
|
)}".`
|
|
768
768
|
);
|
|
769
769
|
}
|
|
770
|
-
function
|
|
770
|
+
function mt(e, t) {
|
|
771
771
|
const n = e.source.body, r = n.length;
|
|
772
772
|
let i = e.lineStart, s = t + 3, a = s, c = "";
|
|
773
773
|
const p = [];
|
|
@@ -775,7 +775,7 @@ function ft(e, t) {
|
|
|
775
775
|
const h = n.charCodeAt(s);
|
|
776
776
|
if (h === 34 && n.charCodeAt(s + 1) === 34 && n.charCodeAt(s + 2) === 34) {
|
|
777
777
|
c += n.slice(a, s), p.push(c);
|
|
778
|
-
const
|
|
778
|
+
const f = S(
|
|
779
779
|
e,
|
|
780
780
|
u.BLOCK_STRING,
|
|
781
781
|
t,
|
|
@@ -784,7 +784,7 @@ function ft(e, t) {
|
|
|
784
784
|
nt(p).join(`
|
|
785
785
|
`)
|
|
786
786
|
);
|
|
787
|
-
return e.line += p.length - 1, e.lineStart = i,
|
|
787
|
+
return e.line += p.length - 1, e.lineStart = i, f;
|
|
788
788
|
}
|
|
789
789
|
if (h === 92 && n.charCodeAt(s + 1) === 34 && n.charCodeAt(s + 2) === 34 && n.charCodeAt(s + 3) === 34) {
|
|
790
790
|
c += n.slice(a, s), a = s + 1, s += 4;
|
|
@@ -799,7 +799,7 @@ function ft(e, t) {
|
|
|
799
799
|
else if (se(n, s))
|
|
800
800
|
s += 2;
|
|
801
801
|
else
|
|
802
|
-
throw
|
|
802
|
+
throw R(
|
|
803
803
|
e.source,
|
|
804
804
|
s,
|
|
805
805
|
`Invalid character within String: ${F(
|
|
@@ -808,9 +808,9 @@ function ft(e, t) {
|
|
|
808
808
|
)}.`
|
|
809
809
|
);
|
|
810
810
|
}
|
|
811
|
-
throw
|
|
811
|
+
throw R(e.source, s, "Unterminated string.");
|
|
812
812
|
}
|
|
813
|
-
function
|
|
813
|
+
function ft(e, t) {
|
|
814
814
|
const n = e.source.body, r = n.length;
|
|
815
815
|
let i = t + 1;
|
|
816
816
|
for (; i < r; ) {
|
|
@@ -855,7 +855,7 @@ function Ct(e, t) {
|
|
|
855
855
|
if (r !== e)
|
|
856
856
|
return typeof r == "string" ? r : ae(r, n);
|
|
857
857
|
} else if (Array.isArray(e))
|
|
858
|
-
return
|
|
858
|
+
return At(e, n);
|
|
859
859
|
return Et(e, n);
|
|
860
860
|
}
|
|
861
861
|
function yt(e) {
|
|
@@ -863,11 +863,11 @@ function yt(e) {
|
|
|
863
863
|
}
|
|
864
864
|
function Et(e, t) {
|
|
865
865
|
const n = Object.entries(e);
|
|
866
|
-
return n.length === 0 ? "{}" : t.length > Fe ? "[" +
|
|
866
|
+
return n.length === 0 ? "{}" : t.length > Fe ? "[" + vt(e) + "]" : "{ " + n.map(
|
|
867
867
|
([i, s]) => i + ": " + ae(s, t)
|
|
868
868
|
).join(", ") + " }";
|
|
869
869
|
}
|
|
870
|
-
function
|
|
870
|
+
function At(e, t) {
|
|
871
871
|
if (e.length === 0)
|
|
872
872
|
return "[]";
|
|
873
873
|
if (t.length > Fe)
|
|
@@ -877,7 +877,7 @@ function vt(e, t) {
|
|
|
877
877
|
i.push(ae(e[s], t));
|
|
878
878
|
return r === 1 ? i.push("... 1 more item") : r > 1 && i.push(`... ${r} more items`), "[" + i.join(", ") + "]";
|
|
879
879
|
}
|
|
880
|
-
function
|
|
880
|
+
function vt(e) {
|
|
881
881
|
const t = Object.prototype.toString.call(e).replace(/^\[object /, "").replace(/]$/, "");
|
|
882
882
|
if (t === "Object" && typeof e.constructor == "function") {
|
|
883
883
|
const n = e.constructor.name;
|
|
@@ -886,7 +886,7 @@ function At(e) {
|
|
|
886
886
|
}
|
|
887
887
|
return t;
|
|
888
888
|
}
|
|
889
|
-
const
|
|
889
|
+
const It = (
|
|
890
890
|
/* c8 ignore next 6 */
|
|
891
891
|
// FIXME: https://github.com/graphql/graphql-js/issues/2317
|
|
892
892
|
globalThis.process && globalThis.process.env.NODE_ENV === "production" ? function(t, n) {
|
|
@@ -919,15 +919,15 @@ spurious results.`);
|
|
|
919
919
|
return !1;
|
|
920
920
|
}
|
|
921
921
|
);
|
|
922
|
-
class
|
|
922
|
+
class Me {
|
|
923
923
|
constructor(t, n = "GraphQL request", r = {
|
|
924
924
|
line: 1,
|
|
925
925
|
column: 1
|
|
926
926
|
}) {
|
|
927
|
-
typeof t == "string" ||
|
|
927
|
+
typeof t == "string" || Z(!1, `Body must be a string. Received: ${Ee(t)}.`), this.body = t, this.name = n, this.locationOffset = r, this.locationOffset.line > 0 || Z(
|
|
928
928
|
!1,
|
|
929
929
|
"line in locationOffset is 1-indexed and must be positive."
|
|
930
|
-
), this.locationOffset.column > 0 ||
|
|
930
|
+
), this.locationOffset.column > 0 || Z(
|
|
931
931
|
!1,
|
|
932
932
|
"column in locationOffset is 1-indexed and must be positive."
|
|
933
933
|
);
|
|
@@ -936,15 +936,15 @@ class Be {
|
|
|
936
936
|
return "Source";
|
|
937
937
|
}
|
|
938
938
|
}
|
|
939
|
-
function
|
|
940
|
-
return
|
|
939
|
+
function Tt(e) {
|
|
940
|
+
return It(e, Me);
|
|
941
941
|
}
|
|
942
|
-
function
|
|
943
|
-
return new
|
|
942
|
+
function Be(e, t) {
|
|
943
|
+
return new xt(e, t).parseDocument();
|
|
944
944
|
}
|
|
945
|
-
class
|
|
945
|
+
class xt {
|
|
946
946
|
constructor(t, n = {}) {
|
|
947
|
-
const r =
|
|
947
|
+
const r = Tt(t) ? t : new Me(t);
|
|
948
948
|
this._lexer = new st(r), this._options = n, this._tokenCounter = 0;
|
|
949
949
|
}
|
|
950
950
|
/**
|
|
@@ -953,7 +953,7 @@ class St {
|
|
|
953
953
|
parseName() {
|
|
954
954
|
const t = this.expectToken(u.NAME);
|
|
955
955
|
return this.node(t, {
|
|
956
|
-
kind:
|
|
956
|
+
kind: m.NAME,
|
|
957
957
|
value: t.value
|
|
958
958
|
});
|
|
959
959
|
}
|
|
@@ -963,7 +963,7 @@ class St {
|
|
|
963
963
|
*/
|
|
964
964
|
parseDocument() {
|
|
965
965
|
return this.node(this._lexer.token, {
|
|
966
|
-
kind:
|
|
966
|
+
kind: m.DOCUMENT,
|
|
967
967
|
definitions: this.many(
|
|
968
968
|
u.SOF,
|
|
969
969
|
this.parseDefinition,
|
|
@@ -1018,7 +1018,7 @@ class St {
|
|
|
1018
1018
|
return this.parseDirectiveDefinition();
|
|
1019
1019
|
}
|
|
1020
1020
|
if (t)
|
|
1021
|
-
throw
|
|
1021
|
+
throw R(
|
|
1022
1022
|
this._lexer.source,
|
|
1023
1023
|
this._lexer.token.start,
|
|
1024
1024
|
"Unexpected description, descriptions are supported only on type definitions."
|
|
@@ -1046,8 +1046,8 @@ class St {
|
|
|
1046
1046
|
const t = this._lexer.token;
|
|
1047
1047
|
if (this.peek(u.BRACE_L))
|
|
1048
1048
|
return this.node(t, {
|
|
1049
|
-
kind:
|
|
1050
|
-
operation:
|
|
1049
|
+
kind: m.OPERATION_DEFINITION,
|
|
1050
|
+
operation: q.QUERY,
|
|
1051
1051
|
name: void 0,
|
|
1052
1052
|
variableDefinitions: [],
|
|
1053
1053
|
directives: [],
|
|
@@ -1056,7 +1056,7 @@ class St {
|
|
|
1056
1056
|
const n = this.parseOperationType();
|
|
1057
1057
|
let r;
|
|
1058
1058
|
return this.peek(u.NAME) && (r = this.parseName()), this.node(t, {
|
|
1059
|
-
kind:
|
|
1059
|
+
kind: m.OPERATION_DEFINITION,
|
|
1060
1060
|
operation: n,
|
|
1061
1061
|
name: r,
|
|
1062
1062
|
variableDefinitions: this.parseVariableDefinitions(),
|
|
@@ -1071,11 +1071,11 @@ class St {
|
|
|
1071
1071
|
const t = this.expectToken(u.NAME);
|
|
1072
1072
|
switch (t.value) {
|
|
1073
1073
|
case "query":
|
|
1074
|
-
return
|
|
1074
|
+
return q.QUERY;
|
|
1075
1075
|
case "mutation":
|
|
1076
|
-
return
|
|
1076
|
+
return q.MUTATION;
|
|
1077
1077
|
case "subscription":
|
|
1078
|
-
return
|
|
1078
|
+
return q.SUBSCRIPTION;
|
|
1079
1079
|
}
|
|
1080
1080
|
throw this.unexpected(t);
|
|
1081
1081
|
}
|
|
@@ -1094,7 +1094,7 @@ class St {
|
|
|
1094
1094
|
*/
|
|
1095
1095
|
parseVariableDefinition() {
|
|
1096
1096
|
return this.node(this._lexer.token, {
|
|
1097
|
-
kind:
|
|
1097
|
+
kind: m.VARIABLE_DEFINITION,
|
|
1098
1098
|
variable: this.parseVariable(),
|
|
1099
1099
|
type: (this.expectToken(u.COLON), this.parseTypeReference()),
|
|
1100
1100
|
defaultValue: this.expectOptionalToken(u.EQUALS) ? this.parseConstValueLiteral() : void 0,
|
|
@@ -1107,7 +1107,7 @@ class St {
|
|
|
1107
1107
|
parseVariable() {
|
|
1108
1108
|
const t = this._lexer.token;
|
|
1109
1109
|
return this.expectToken(u.DOLLAR), this.node(t, {
|
|
1110
|
-
kind:
|
|
1110
|
+
kind: m.VARIABLE,
|
|
1111
1111
|
name: this.parseName()
|
|
1112
1112
|
});
|
|
1113
1113
|
}
|
|
@@ -1118,7 +1118,7 @@ class St {
|
|
|
1118
1118
|
*/
|
|
1119
1119
|
parseSelectionSet() {
|
|
1120
1120
|
return this.node(this._lexer.token, {
|
|
1121
|
-
kind:
|
|
1121
|
+
kind: m.SELECTION_SET,
|
|
1122
1122
|
selections: this.many(
|
|
1123
1123
|
u.BRACE_L,
|
|
1124
1124
|
this.parseSelection,
|
|
@@ -1144,7 +1144,7 @@ class St {
|
|
|
1144
1144
|
const t = this._lexer.token, n = this.parseName();
|
|
1145
1145
|
let r, i;
|
|
1146
1146
|
return this.expectOptionalToken(u.COLON) ? (r = n, i = this.parseName()) : i = n, this.node(t, {
|
|
1147
|
-
kind:
|
|
1147
|
+
kind: m.FIELD,
|
|
1148
1148
|
alias: r,
|
|
1149
1149
|
name: i,
|
|
1150
1150
|
arguments: this.parseArguments(!1),
|
|
@@ -1165,7 +1165,7 @@ class St {
|
|
|
1165
1165
|
parseArgument(t = !1) {
|
|
1166
1166
|
const n = this._lexer.token, r = this.parseName();
|
|
1167
1167
|
return this.expectToken(u.COLON), this.node(n, {
|
|
1168
|
-
kind:
|
|
1168
|
+
kind: m.ARGUMENT,
|
|
1169
1169
|
name: r,
|
|
1170
1170
|
value: this.parseValueLiteral(t)
|
|
1171
1171
|
});
|
|
@@ -1186,11 +1186,11 @@ class St {
|
|
|
1186
1186
|
this.expectToken(u.SPREAD);
|
|
1187
1187
|
const n = this.expectOptionalKeyword("on");
|
|
1188
1188
|
return !n && this.peek(u.NAME) ? this.node(t, {
|
|
1189
|
-
kind:
|
|
1189
|
+
kind: m.FRAGMENT_SPREAD,
|
|
1190
1190
|
name: this.parseFragmentName(),
|
|
1191
1191
|
directives: this.parseDirectives(!1)
|
|
1192
1192
|
}) : this.node(t, {
|
|
1193
|
-
kind:
|
|
1193
|
+
kind: m.INLINE_FRAGMENT,
|
|
1194
1194
|
typeCondition: n ? this.parseNamedType() : void 0,
|
|
1195
1195
|
directives: this.parseDirectives(!1),
|
|
1196
1196
|
selectionSet: this.parseSelectionSet()
|
|
@@ -1205,14 +1205,14 @@ class St {
|
|
|
1205
1205
|
parseFragmentDefinition() {
|
|
1206
1206
|
const t = this._lexer.token;
|
|
1207
1207
|
return this.expectKeyword("fragment"), this._options.allowLegacyFragmentVariables === !0 ? this.node(t, {
|
|
1208
|
-
kind:
|
|
1208
|
+
kind: m.FRAGMENT_DEFINITION,
|
|
1209
1209
|
name: this.parseFragmentName(),
|
|
1210
1210
|
variableDefinitions: this.parseVariableDefinitions(),
|
|
1211
1211
|
typeCondition: (this.expectKeyword("on"), this.parseNamedType()),
|
|
1212
1212
|
directives: this.parseDirectives(!1),
|
|
1213
1213
|
selectionSet: this.parseSelectionSet()
|
|
1214
1214
|
}) : this.node(t, {
|
|
1215
|
-
kind:
|
|
1215
|
+
kind: m.FRAGMENT_DEFINITION,
|
|
1216
1216
|
name: this.parseFragmentName(),
|
|
1217
1217
|
typeCondition: (this.expectKeyword("on"), this.parseNamedType()),
|
|
1218
1218
|
directives: this.parseDirectives(!1),
|
|
@@ -1255,12 +1255,12 @@ class St {
|
|
|
1255
1255
|
return this.parseObject(t);
|
|
1256
1256
|
case u.INT:
|
|
1257
1257
|
return this.advanceLexer(), this.node(n, {
|
|
1258
|
-
kind:
|
|
1258
|
+
kind: m.INT,
|
|
1259
1259
|
value: n.value
|
|
1260
1260
|
});
|
|
1261
1261
|
case u.FLOAT:
|
|
1262
1262
|
return this.advanceLexer(), this.node(n, {
|
|
1263
|
-
kind:
|
|
1263
|
+
kind: m.FLOAT,
|
|
1264
1264
|
value: n.value
|
|
1265
1265
|
});
|
|
1266
1266
|
case u.STRING:
|
|
@@ -1270,21 +1270,21 @@ class St {
|
|
|
1270
1270
|
switch (this.advanceLexer(), n.value) {
|
|
1271
1271
|
case "true":
|
|
1272
1272
|
return this.node(n, {
|
|
1273
|
-
kind:
|
|
1273
|
+
kind: m.BOOLEAN,
|
|
1274
1274
|
value: !0
|
|
1275
1275
|
});
|
|
1276
1276
|
case "false":
|
|
1277
1277
|
return this.node(n, {
|
|
1278
|
-
kind:
|
|
1278
|
+
kind: m.BOOLEAN,
|
|
1279
1279
|
value: !1
|
|
1280
1280
|
});
|
|
1281
1281
|
case "null":
|
|
1282
1282
|
return this.node(n, {
|
|
1283
|
-
kind:
|
|
1283
|
+
kind: m.NULL
|
|
1284
1284
|
});
|
|
1285
1285
|
default:
|
|
1286
1286
|
return this.node(n, {
|
|
1287
|
-
kind:
|
|
1287
|
+
kind: m.ENUM,
|
|
1288
1288
|
value: n.value
|
|
1289
1289
|
});
|
|
1290
1290
|
}
|
|
@@ -1292,7 +1292,7 @@ class St {
|
|
|
1292
1292
|
if (t)
|
|
1293
1293
|
if (this.expectToken(u.DOLLAR), this._lexer.token.kind === u.NAME) {
|
|
1294
1294
|
const r = this._lexer.token.value;
|
|
1295
|
-
throw
|
|
1295
|
+
throw R(
|
|
1296
1296
|
this._lexer.source,
|
|
1297
1297
|
n.start,
|
|
1298
1298
|
`Unexpected variable "$${r}" in constant value.`
|
|
@@ -1310,7 +1310,7 @@ class St {
|
|
|
1310
1310
|
parseStringLiteral() {
|
|
1311
1311
|
const t = this._lexer.token;
|
|
1312
1312
|
return this.advanceLexer(), this.node(t, {
|
|
1313
|
-
kind:
|
|
1313
|
+
kind: m.STRING,
|
|
1314
1314
|
value: t.value,
|
|
1315
1315
|
block: t.kind === u.BLOCK_STRING
|
|
1316
1316
|
});
|
|
@@ -1323,7 +1323,7 @@ class St {
|
|
|
1323
1323
|
parseList(t) {
|
|
1324
1324
|
const n = () => this.parseValueLiteral(t);
|
|
1325
1325
|
return this.node(this._lexer.token, {
|
|
1326
|
-
kind:
|
|
1326
|
+
kind: m.LIST,
|
|
1327
1327
|
values: this.any(u.BRACKET_L, n, u.BRACKET_R)
|
|
1328
1328
|
});
|
|
1329
1329
|
}
|
|
@@ -1337,7 +1337,7 @@ class St {
|
|
|
1337
1337
|
parseObject(t) {
|
|
1338
1338
|
const n = () => this.parseObjectField(t);
|
|
1339
1339
|
return this.node(this._lexer.token, {
|
|
1340
|
-
kind:
|
|
1340
|
+
kind: m.OBJECT,
|
|
1341
1341
|
fields: this.any(u.BRACE_L, n, u.BRACE_R)
|
|
1342
1342
|
});
|
|
1343
1343
|
}
|
|
@@ -1347,7 +1347,7 @@ class St {
|
|
|
1347
1347
|
parseObjectField(t) {
|
|
1348
1348
|
const n = this._lexer.token, r = this.parseName();
|
|
1349
1349
|
return this.expectToken(u.COLON), this.node(n, {
|
|
1350
|
-
kind:
|
|
1350
|
+
kind: m.OBJECT_FIELD,
|
|
1351
1351
|
name: r,
|
|
1352
1352
|
value: this.parseValueLiteral(t)
|
|
1353
1353
|
});
|
|
@@ -1373,7 +1373,7 @@ class St {
|
|
|
1373
1373
|
parseDirective(t) {
|
|
1374
1374
|
const n = this._lexer.token;
|
|
1375
1375
|
return this.expectToken(u.AT), this.node(n, {
|
|
1376
|
-
kind:
|
|
1376
|
+
kind: m.DIRECTIVE,
|
|
1377
1377
|
name: this.parseName(),
|
|
1378
1378
|
arguments: this.parseArguments(t)
|
|
1379
1379
|
});
|
|
@@ -1391,13 +1391,13 @@ class St {
|
|
|
1391
1391
|
if (this.expectOptionalToken(u.BRACKET_L)) {
|
|
1392
1392
|
const r = this.parseTypeReference();
|
|
1393
1393
|
this.expectToken(u.BRACKET_R), n = this.node(t, {
|
|
1394
|
-
kind:
|
|
1394
|
+
kind: m.LIST_TYPE,
|
|
1395
1395
|
type: r
|
|
1396
1396
|
});
|
|
1397
1397
|
} else
|
|
1398
1398
|
n = this.parseNamedType();
|
|
1399
1399
|
return this.expectOptionalToken(u.BANG) ? this.node(t, {
|
|
1400
|
-
kind:
|
|
1400
|
+
kind: m.NON_NULL_TYPE,
|
|
1401
1401
|
type: n
|
|
1402
1402
|
}) : n;
|
|
1403
1403
|
}
|
|
@@ -1406,7 +1406,7 @@ class St {
|
|
|
1406
1406
|
*/
|
|
1407
1407
|
parseNamedType() {
|
|
1408
1408
|
return this.node(this._lexer.token, {
|
|
1409
|
-
kind:
|
|
1409
|
+
kind: m.NAMED_TYPE,
|
|
1410
1410
|
name: this.parseName()
|
|
1411
1411
|
});
|
|
1412
1412
|
}
|
|
@@ -1435,7 +1435,7 @@ class St {
|
|
|
1435
1435
|
u.BRACE_R
|
|
1436
1436
|
);
|
|
1437
1437
|
return this.node(t, {
|
|
1438
|
-
kind:
|
|
1438
|
+
kind: m.SCHEMA_DEFINITION,
|
|
1439
1439
|
description: n,
|
|
1440
1440
|
directives: r,
|
|
1441
1441
|
operationTypes: i
|
|
@@ -1449,7 +1449,7 @@ class St {
|
|
|
1449
1449
|
this.expectToken(u.COLON);
|
|
1450
1450
|
const r = this.parseNamedType();
|
|
1451
1451
|
return this.node(t, {
|
|
1452
|
-
kind:
|
|
1452
|
+
kind: m.OPERATION_TYPE_DEFINITION,
|
|
1453
1453
|
operation: n,
|
|
1454
1454
|
type: r
|
|
1455
1455
|
});
|
|
@@ -1462,7 +1462,7 @@ class St {
|
|
|
1462
1462
|
this.expectKeyword("scalar");
|
|
1463
1463
|
const r = this.parseName(), i = this.parseConstDirectives();
|
|
1464
1464
|
return this.node(t, {
|
|
1465
|
-
kind:
|
|
1465
|
+
kind: m.SCALAR_TYPE_DEFINITION,
|
|
1466
1466
|
description: n,
|
|
1467
1467
|
name: r,
|
|
1468
1468
|
directives: i
|
|
@@ -1478,7 +1478,7 @@ class St {
|
|
|
1478
1478
|
this.expectKeyword("type");
|
|
1479
1479
|
const r = this.parseName(), i = this.parseImplementsInterfaces(), s = this.parseConstDirectives(), a = this.parseFieldsDefinition();
|
|
1480
1480
|
return this.node(t, {
|
|
1481
|
-
kind:
|
|
1481
|
+
kind: m.OBJECT_TYPE_DEFINITION,
|
|
1482
1482
|
description: n,
|
|
1483
1483
|
name: r,
|
|
1484
1484
|
interfaces: i,
|
|
@@ -1515,7 +1515,7 @@ class St {
|
|
|
1515
1515
|
this.expectToken(u.COLON);
|
|
1516
1516
|
const s = this.parseTypeReference(), a = this.parseConstDirectives();
|
|
1517
1517
|
return this.node(t, {
|
|
1518
|
-
kind:
|
|
1518
|
+
kind: m.FIELD_DEFINITION,
|
|
1519
1519
|
description: n,
|
|
1520
1520
|
name: r,
|
|
1521
1521
|
arguments: i,
|
|
@@ -1545,7 +1545,7 @@ class St {
|
|
|
1545
1545
|
this.expectOptionalToken(u.EQUALS) && (s = this.parseConstValueLiteral());
|
|
1546
1546
|
const a = this.parseConstDirectives();
|
|
1547
1547
|
return this.node(t, {
|
|
1548
|
-
kind:
|
|
1548
|
+
kind: m.INPUT_VALUE_DEFINITION,
|
|
1549
1549
|
description: n,
|
|
1550
1550
|
name: r,
|
|
1551
1551
|
type: i,
|
|
@@ -1562,7 +1562,7 @@ class St {
|
|
|
1562
1562
|
this.expectKeyword("interface");
|
|
1563
1563
|
const r = this.parseName(), i = this.parseImplementsInterfaces(), s = this.parseConstDirectives(), a = this.parseFieldsDefinition();
|
|
1564
1564
|
return this.node(t, {
|
|
1565
|
-
kind:
|
|
1565
|
+
kind: m.INTERFACE_TYPE_DEFINITION,
|
|
1566
1566
|
description: n,
|
|
1567
1567
|
name: r,
|
|
1568
1568
|
interfaces: i,
|
|
@@ -1579,7 +1579,7 @@ class St {
|
|
|
1579
1579
|
this.expectKeyword("union");
|
|
1580
1580
|
const r = this.parseName(), i = this.parseConstDirectives(), s = this.parseUnionMemberTypes();
|
|
1581
1581
|
return this.node(t, {
|
|
1582
|
-
kind:
|
|
1582
|
+
kind: m.UNION_TYPE_DEFINITION,
|
|
1583
1583
|
description: n,
|
|
1584
1584
|
name: r,
|
|
1585
1585
|
directives: i,
|
|
@@ -1603,7 +1603,7 @@ class St {
|
|
|
1603
1603
|
this.expectKeyword("enum");
|
|
1604
1604
|
const r = this.parseName(), i = this.parseConstDirectives(), s = this.parseEnumValuesDefinition();
|
|
1605
1605
|
return this.node(t, {
|
|
1606
|
-
kind:
|
|
1606
|
+
kind: m.ENUM_TYPE_DEFINITION,
|
|
1607
1607
|
description: n,
|
|
1608
1608
|
name: r,
|
|
1609
1609
|
directives: i,
|
|
@@ -1628,7 +1628,7 @@ class St {
|
|
|
1628
1628
|
parseEnumValueDefinition() {
|
|
1629
1629
|
const t = this._lexer.token, n = this.parseDescription(), r = this.parseEnumValueName(), i = this.parseConstDirectives();
|
|
1630
1630
|
return this.node(t, {
|
|
1631
|
-
kind:
|
|
1631
|
+
kind: m.ENUM_VALUE_DEFINITION,
|
|
1632
1632
|
description: n,
|
|
1633
1633
|
name: r,
|
|
1634
1634
|
directives: i
|
|
@@ -1639,7 +1639,7 @@ class St {
|
|
|
1639
1639
|
*/
|
|
1640
1640
|
parseEnumValueName() {
|
|
1641
1641
|
if (this._lexer.token.value === "true" || this._lexer.token.value === "false" || this._lexer.token.value === "null")
|
|
1642
|
-
throw
|
|
1642
|
+
throw R(
|
|
1643
1643
|
this._lexer.source,
|
|
1644
1644
|
this._lexer.token.start,
|
|
1645
1645
|
`${K(
|
|
@@ -1657,7 +1657,7 @@ class St {
|
|
|
1657
1657
|
this.expectKeyword("input");
|
|
1658
1658
|
const r = this.parseName(), i = this.parseConstDirectives(), s = this.parseInputFieldsDefinition();
|
|
1659
1659
|
return this.node(t, {
|
|
1660
|
-
kind:
|
|
1660
|
+
kind: m.INPUT_OBJECT_TYPE_DEFINITION,
|
|
1661
1661
|
description: n,
|
|
1662
1662
|
name: r,
|
|
1663
1663
|
directives: i,
|
|
@@ -1728,7 +1728,7 @@ class St {
|
|
|
1728
1728
|
if (n.length === 0 && r.length === 0)
|
|
1729
1729
|
throw this.unexpected();
|
|
1730
1730
|
return this.node(t, {
|
|
1731
|
-
kind:
|
|
1731
|
+
kind: m.SCHEMA_EXTENSION,
|
|
1732
1732
|
directives: n,
|
|
1733
1733
|
operationTypes: r
|
|
1734
1734
|
});
|
|
@@ -1744,7 +1744,7 @@ class St {
|
|
|
1744
1744
|
if (r.length === 0)
|
|
1745
1745
|
throw this.unexpected();
|
|
1746
1746
|
return this.node(t, {
|
|
1747
|
-
kind:
|
|
1747
|
+
kind: m.SCALAR_TYPE_EXTENSION,
|
|
1748
1748
|
name: n,
|
|
1749
1749
|
directives: r
|
|
1750
1750
|
});
|
|
@@ -1762,7 +1762,7 @@ class St {
|
|
|
1762
1762
|
if (r.length === 0 && i.length === 0 && s.length === 0)
|
|
1763
1763
|
throw this.unexpected();
|
|
1764
1764
|
return this.node(t, {
|
|
1765
|
-
kind:
|
|
1765
|
+
kind: m.OBJECT_TYPE_EXTENSION,
|
|
1766
1766
|
name: n,
|
|
1767
1767
|
interfaces: r,
|
|
1768
1768
|
directives: i,
|
|
@@ -1782,7 +1782,7 @@ class St {
|
|
|
1782
1782
|
if (r.length === 0 && i.length === 0 && s.length === 0)
|
|
1783
1783
|
throw this.unexpected();
|
|
1784
1784
|
return this.node(t, {
|
|
1785
|
-
kind:
|
|
1785
|
+
kind: m.INTERFACE_TYPE_EXTENSION,
|
|
1786
1786
|
name: n,
|
|
1787
1787
|
interfaces: r,
|
|
1788
1788
|
directives: i,
|
|
@@ -1801,7 +1801,7 @@ class St {
|
|
|
1801
1801
|
if (r.length === 0 && i.length === 0)
|
|
1802
1802
|
throw this.unexpected();
|
|
1803
1803
|
return this.node(t, {
|
|
1804
|
-
kind:
|
|
1804
|
+
kind: m.UNION_TYPE_EXTENSION,
|
|
1805
1805
|
name: n,
|
|
1806
1806
|
directives: r,
|
|
1807
1807
|
types: i
|
|
@@ -1819,7 +1819,7 @@ class St {
|
|
|
1819
1819
|
if (r.length === 0 && i.length === 0)
|
|
1820
1820
|
throw this.unexpected();
|
|
1821
1821
|
return this.node(t, {
|
|
1822
|
-
kind:
|
|
1822
|
+
kind: m.ENUM_TYPE_EXTENSION,
|
|
1823
1823
|
name: n,
|
|
1824
1824
|
directives: r,
|
|
1825
1825
|
values: i
|
|
@@ -1837,7 +1837,7 @@ class St {
|
|
|
1837
1837
|
if (r.length === 0 && i.length === 0)
|
|
1838
1838
|
throw this.unexpected();
|
|
1839
1839
|
return this.node(t, {
|
|
1840
|
-
kind:
|
|
1840
|
+
kind: m.INPUT_OBJECT_TYPE_EXTENSION,
|
|
1841
1841
|
name: n,
|
|
1842
1842
|
directives: r,
|
|
1843
1843
|
fields: i
|
|
@@ -1856,7 +1856,7 @@ class St {
|
|
|
1856
1856
|
this.expectKeyword("on");
|
|
1857
1857
|
const a = this.parseDirectiveLocations();
|
|
1858
1858
|
return this.node(t, {
|
|
1859
|
-
kind:
|
|
1859
|
+
kind: m.DIRECTIVE_DEFINITION,
|
|
1860
1860
|
description: n,
|
|
1861
1861
|
name: r,
|
|
1862
1862
|
arguments: i,
|
|
@@ -1901,7 +1901,7 @@ class St {
|
|
|
1901
1901
|
*/
|
|
1902
1902
|
parseDirectiveLocation() {
|
|
1903
1903
|
const t = this._lexer.token, n = this.parseName();
|
|
1904
|
-
if (Object.prototype.hasOwnProperty.call(
|
|
1904
|
+
if (Object.prototype.hasOwnProperty.call(me, n.value))
|
|
1905
1905
|
return n;
|
|
1906
1906
|
throw this.unexpected(t);
|
|
1907
1907
|
}
|
|
@@ -1912,7 +1912,7 @@ class St {
|
|
|
1912
1912
|
* given parsed object.
|
|
1913
1913
|
*/
|
|
1914
1914
|
node(t, n) {
|
|
1915
|
-
return this._options.noLocation !== !0 && (n.loc = new
|
|
1915
|
+
return this._options.noLocation !== !0 && (n.loc = new We(
|
|
1916
1916
|
t,
|
|
1917
1917
|
this._lexer.lastToken,
|
|
1918
1918
|
this._lexer.source
|
|
@@ -1932,10 +1932,10 @@ class St {
|
|
|
1932
1932
|
const n = this._lexer.token;
|
|
1933
1933
|
if (n.kind === t)
|
|
1934
1934
|
return this.advanceLexer(), n;
|
|
1935
|
-
throw
|
|
1935
|
+
throw R(
|
|
1936
1936
|
this._lexer.source,
|
|
1937
1937
|
n.start,
|
|
1938
|
-
`Expected ${
|
|
1938
|
+
`Expected ${qe(t)}, found ${K(n)}.`
|
|
1939
1939
|
);
|
|
1940
1940
|
}
|
|
1941
1941
|
/**
|
|
@@ -1954,7 +1954,7 @@ class St {
|
|
|
1954
1954
|
if (n.kind === u.NAME && n.value === t)
|
|
1955
1955
|
this.advanceLexer();
|
|
1956
1956
|
else
|
|
1957
|
-
throw
|
|
1957
|
+
throw R(
|
|
1958
1958
|
this._lexer.source,
|
|
1959
1959
|
n.start,
|
|
1960
1960
|
`Expected "${t}", found ${K(n)}.`
|
|
@@ -1973,7 +1973,7 @@ class St {
|
|
|
1973
1973
|
*/
|
|
1974
1974
|
unexpected(t) {
|
|
1975
1975
|
const n = t ?? this._lexer.token;
|
|
1976
|
-
return
|
|
1976
|
+
return R(
|
|
1977
1977
|
this._lexer.source,
|
|
1978
1978
|
n.start,
|
|
1979
1979
|
`Unexpected ${K(n)}.`
|
|
@@ -2036,7 +2036,7 @@ class St {
|
|
|
2036
2036
|
advanceLexer() {
|
|
2037
2037
|
const { maxTokens: t } = this._options, n = this._lexer.advance();
|
|
2038
2038
|
if (t !== void 0 && n.kind !== u.EOF && (++this._tokenCounter, this._tokenCounter > t))
|
|
2039
|
-
throw
|
|
2039
|
+
throw R(
|
|
2040
2040
|
this._lexer.source,
|
|
2041
2041
|
n.start,
|
|
2042
2042
|
`Document contains more that ${t} tokens. Parsing aborted.`
|
|
@@ -2045,19 +2045,19 @@ class St {
|
|
|
2045
2045
|
}
|
|
2046
2046
|
function K(e) {
|
|
2047
2047
|
const t = e.value;
|
|
2048
|
-
return
|
|
2048
|
+
return qe(e.kind) + (t != null ? ` "${t}"` : "");
|
|
2049
2049
|
}
|
|
2050
|
-
function
|
|
2050
|
+
function qe(e) {
|
|
2051
2051
|
return at(e) ? `"${e}"` : e;
|
|
2052
2052
|
}
|
|
2053
|
-
function
|
|
2054
|
-
return `"${e.replace(
|
|
2053
|
+
function St(e) {
|
|
2054
|
+
return `"${e.replace(Rt, Ot)}"`;
|
|
2055
2055
|
}
|
|
2056
|
-
const
|
|
2057
|
-
function
|
|
2058
|
-
return
|
|
2056
|
+
const Rt = /[\x00-\x1f\x22\x5c\x7f-\x9f]/g;
|
|
2057
|
+
function Ot(e) {
|
|
2058
|
+
return Nt[e.charCodeAt(0)];
|
|
2059
2059
|
}
|
|
2060
|
-
const
|
|
2060
|
+
const Nt = [
|
|
2061
2061
|
"\\u0000",
|
|
2062
2062
|
"\\u0001",
|
|
2063
2063
|
"\\u0002",
|
|
@@ -2223,75 +2223,75 @@ const xt = [
|
|
|
2223
2223
|
"\\u009D",
|
|
2224
2224
|
"\\u009E",
|
|
2225
2225
|
"\\u009F"
|
|
2226
|
-
],
|
|
2227
|
-
function
|
|
2226
|
+
], Pt = Object.freeze({});
|
|
2227
|
+
function Dt(e, t, n = be) {
|
|
2228
2228
|
const r = /* @__PURE__ */ new Map();
|
|
2229
|
-
for (const
|
|
2230
|
-
r.set(
|
|
2231
|
-
let i, s = Array.isArray(e), a = [e], c = -1, p = [], h = e,
|
|
2232
|
-
const y = [],
|
|
2229
|
+
for (const D of Object.values(m))
|
|
2230
|
+
r.set(D, bt(t, D));
|
|
2231
|
+
let i, s = Array.isArray(e), a = [e], c = -1, p = [], h = e, f, C;
|
|
2232
|
+
const y = [], I = [];
|
|
2233
2233
|
do {
|
|
2234
2234
|
c++;
|
|
2235
|
-
const
|
|
2236
|
-
if (
|
|
2237
|
-
if (
|
|
2235
|
+
const D = c === a.length, z = D && p.length !== 0;
|
|
2236
|
+
if (D) {
|
|
2237
|
+
if (f = I.length === 0 ? void 0 : y[y.length - 1], h = C, C = I.pop(), z)
|
|
2238
2238
|
if (s) {
|
|
2239
2239
|
h = h.slice();
|
|
2240
|
-
let
|
|
2241
|
-
for (const [
|
|
2242
|
-
const Q =
|
|
2243
|
-
J === null ? (h.splice(Q, 1),
|
|
2240
|
+
let b = 0;
|
|
2241
|
+
for (const [M, J] of p) {
|
|
2242
|
+
const Q = M - b;
|
|
2243
|
+
J === null ? (h.splice(Q, 1), b++) : h[Q] = J;
|
|
2244
2244
|
}
|
|
2245
2245
|
} else {
|
|
2246
2246
|
h = Object.defineProperties(
|
|
2247
2247
|
{},
|
|
2248
2248
|
Object.getOwnPropertyDescriptors(h)
|
|
2249
2249
|
);
|
|
2250
|
-
for (const [
|
|
2251
|
-
h[
|
|
2250
|
+
for (const [b, M] of p)
|
|
2251
|
+
h[b] = M;
|
|
2252
2252
|
}
|
|
2253
2253
|
c = i.index, a = i.keys, p = i.edits, s = i.inArray, i = i.prev;
|
|
2254
2254
|
} else if (C) {
|
|
2255
|
-
if (
|
|
2255
|
+
if (f = s ? c : a[c], h = C[f], h == null)
|
|
2256
2256
|
continue;
|
|
2257
|
-
y.push(
|
|
2257
|
+
y.push(f);
|
|
2258
2258
|
}
|
|
2259
2259
|
let _;
|
|
2260
2260
|
if (!Array.isArray(h)) {
|
|
2261
|
-
var g,
|
|
2262
|
-
|
|
2263
|
-
const
|
|
2264
|
-
if (_ =
|
|
2261
|
+
var g, T;
|
|
2262
|
+
xe(h) || Z(!1, `Invalid AST Node: ${Ee(h)}.`);
|
|
2263
|
+
const b = D ? (g = r.get(h.kind)) === null || g === void 0 ? void 0 : g.leave : (T = r.get(h.kind)) === null || T === void 0 ? void 0 : T.enter;
|
|
2264
|
+
if (_ = b == null ? void 0 : b.call(t, h, f, C, y, I), _ === Pt)
|
|
2265
2265
|
break;
|
|
2266
2266
|
if (_ === !1) {
|
|
2267
|
-
if (!
|
|
2267
|
+
if (!D) {
|
|
2268
2268
|
y.pop();
|
|
2269
2269
|
continue;
|
|
2270
2270
|
}
|
|
2271
|
-
} else if (_ !== void 0 && (p.push([
|
|
2272
|
-
if (
|
|
2271
|
+
} else if (_ !== void 0 && (p.push([f, _]), !D))
|
|
2272
|
+
if (xe(_))
|
|
2273
2273
|
h = _;
|
|
2274
2274
|
else {
|
|
2275
2275
|
y.pop();
|
|
2276
2276
|
continue;
|
|
2277
2277
|
}
|
|
2278
2278
|
}
|
|
2279
|
-
if (_ === void 0 && z && p.push([
|
|
2279
|
+
if (_ === void 0 && z && p.push([f, h]), D)
|
|
2280
2280
|
y.pop();
|
|
2281
2281
|
else {
|
|
2282
|
-
var
|
|
2282
|
+
var P;
|
|
2283
2283
|
i = {
|
|
2284
2284
|
inArray: s,
|
|
2285
2285
|
index: c,
|
|
2286
2286
|
keys: a,
|
|
2287
2287
|
edits: p,
|
|
2288
2288
|
prev: i
|
|
2289
|
-
}, s = Array.isArray(h), a = s ? h : (
|
|
2289
|
+
}, s = Array.isArray(h), a = s ? h : (P = n[h.kind]) !== null && P !== void 0 ? P : [], c = -1, p = [], C && I.push(C), C = h;
|
|
2290
2290
|
}
|
|
2291
2291
|
} while (i !== void 0);
|
|
2292
2292
|
return p.length !== 0 ? p[p.length - 1][1] : e;
|
|
2293
2293
|
}
|
|
2294
|
-
function
|
|
2294
|
+
function bt(e, t) {
|
|
2295
2295
|
const n = e[t];
|
|
2296
2296
|
return typeof n == "object" ? n : typeof n == "function" ? {
|
|
2297
2297
|
enter: n,
|
|
@@ -2302,7 +2302,7 @@ function Dt(e, t) {
|
|
|
2302
2302
|
};
|
|
2303
2303
|
}
|
|
2304
2304
|
function kt(e) {
|
|
2305
|
-
return
|
|
2305
|
+
return Dt(e, Lt);
|
|
2306
2306
|
}
|
|
2307
2307
|
const _t = 80, Lt = {
|
|
2308
2308
|
Name: {
|
|
@@ -2313,17 +2313,17 @@ const _t = 80, Lt = {
|
|
|
2313
2313
|
},
|
|
2314
2314
|
// Document
|
|
2315
2315
|
Document: {
|
|
2316
|
-
leave: (e) =>
|
|
2316
|
+
leave: (e) => d(e.definitions, `
|
|
2317
2317
|
|
|
2318
2318
|
`)
|
|
2319
2319
|
},
|
|
2320
2320
|
OperationDefinition: {
|
|
2321
2321
|
leave(e) {
|
|
2322
|
-
const t =
|
|
2322
|
+
const t = A("(", d(e.variableDefinitions, ", "), ")"), n = d(
|
|
2323
2323
|
[
|
|
2324
2324
|
e.operation,
|
|
2325
|
-
|
|
2326
|
-
|
|
2325
|
+
d([e.name, t]),
|
|
2326
|
+
d(e.directives, " ")
|
|
2327
2327
|
],
|
|
2328
2328
|
" "
|
|
2329
2329
|
);
|
|
@@ -2331,19 +2331,19 @@ const _t = 80, Lt = {
|
|
|
2331
2331
|
}
|
|
2332
2332
|
},
|
|
2333
2333
|
VariableDefinition: {
|
|
2334
|
-
leave: ({ variable: e, type: t, defaultValue: n, directives: r }) => e + ": " + t +
|
|
2334
|
+
leave: ({ variable: e, type: t, defaultValue: n, directives: r }) => e + ": " + t + A(" = ", n) + A(" ", d(r, " "))
|
|
2335
2335
|
},
|
|
2336
2336
|
SelectionSet: {
|
|
2337
2337
|
leave: ({ selections: e }) => k(e)
|
|
2338
2338
|
},
|
|
2339
2339
|
Field: {
|
|
2340
2340
|
leave({ alias: e, name: t, arguments: n, directives: r, selectionSet: i }) {
|
|
2341
|
-
const s =
|
|
2342
|
-
let a = s +
|
|
2343
|
-
return a.length > _t && (a = s +
|
|
2344
|
-
`,
|
|
2341
|
+
const s = A("", e, ": ") + t;
|
|
2342
|
+
let a = s + A("(", d(n, ", "), ")");
|
|
2343
|
+
return a.length > _t && (a = s + A(`(
|
|
2344
|
+
`, W(d(n, `
|
|
2345
2345
|
`)), `
|
|
2346
|
-
)`)),
|
|
2346
|
+
)`)), d([a, d(r, " "), i], " ");
|
|
2347
2347
|
}
|
|
2348
2348
|
},
|
|
2349
2349
|
Argument: {
|
|
@@ -2351,14 +2351,14 @@ const _t = 80, Lt = {
|
|
|
2351
2351
|
},
|
|
2352
2352
|
// Fragments
|
|
2353
2353
|
FragmentSpread: {
|
|
2354
|
-
leave: ({ name: e, directives: t }) => "..." + e +
|
|
2354
|
+
leave: ({ name: e, directives: t }) => "..." + e + A(" ", d(t, " "))
|
|
2355
2355
|
},
|
|
2356
2356
|
InlineFragment: {
|
|
2357
|
-
leave: ({ typeCondition: e, directives: t, selectionSet: n }) =>
|
|
2357
|
+
leave: ({ typeCondition: e, directives: t, selectionSet: n }) => d(
|
|
2358
2358
|
[
|
|
2359
2359
|
"...",
|
|
2360
|
-
|
|
2361
|
-
|
|
2360
|
+
A("on ", e),
|
|
2361
|
+
d(t, " "),
|
|
2362
2362
|
n
|
|
2363
2363
|
],
|
|
2364
2364
|
" "
|
|
@@ -2367,7 +2367,7 @@ const _t = 80, Lt = {
|
|
|
2367
2367
|
FragmentDefinition: {
|
|
2368
2368
|
leave: ({ name: e, typeCondition: t, variableDefinitions: n, directives: r, selectionSet: i }) => (
|
|
2369
2369
|
// or removed in the future.
|
|
2370
|
-
`fragment ${e}${
|
|
2370
|
+
`fragment ${e}${A("(", d(n, ", "), ")")} on ${t} ${A("", d(r, " "), " ")}` + i
|
|
2371
2371
|
)
|
|
2372
2372
|
},
|
|
2373
2373
|
// Value
|
|
@@ -2378,7 +2378,7 @@ const _t = 80, Lt = {
|
|
|
2378
2378
|
leave: ({ value: e }) => e
|
|
2379
2379
|
},
|
|
2380
2380
|
StringValue: {
|
|
2381
|
-
leave: ({ value: e, block: t }) => t ? rt(e) :
|
|
2381
|
+
leave: ({ value: e, block: t }) => t ? rt(e) : St(e)
|
|
2382
2382
|
},
|
|
2383
2383
|
BooleanValue: {
|
|
2384
2384
|
leave: ({ value: e }) => e ? "true" : "false"
|
|
@@ -2390,17 +2390,17 @@ const _t = 80, Lt = {
|
|
|
2390
2390
|
leave: ({ value: e }) => e
|
|
2391
2391
|
},
|
|
2392
2392
|
ListValue: {
|
|
2393
|
-
leave: ({ values: e }) => "[" +
|
|
2393
|
+
leave: ({ values: e }) => "[" + d(e, ", ") + "]"
|
|
2394
2394
|
},
|
|
2395
2395
|
ObjectValue: {
|
|
2396
|
-
leave: ({ fields: e }) => "{" +
|
|
2396
|
+
leave: ({ fields: e }) => "{" + d(e, ", ") + "}"
|
|
2397
2397
|
},
|
|
2398
2398
|
ObjectField: {
|
|
2399
2399
|
leave: ({ name: e, value: t }) => e + ": " + t
|
|
2400
2400
|
},
|
|
2401
2401
|
// Directive
|
|
2402
2402
|
Directive: {
|
|
2403
|
-
leave: ({ name: e, arguments: t }) => "@" + e +
|
|
2403
|
+
leave: ({ name: e, arguments: t }) => "@" + e + A("(", d(t, ", "), ")")
|
|
2404
2404
|
},
|
|
2405
2405
|
// Type
|
|
2406
2406
|
NamedType: {
|
|
@@ -2414,156 +2414,156 @@ const _t = 80, Lt = {
|
|
|
2414
2414
|
},
|
|
2415
2415
|
// Type System Definitions
|
|
2416
2416
|
SchemaDefinition: {
|
|
2417
|
-
leave: ({ description: e, directives: t, operationTypes: n }) =>
|
|
2418
|
-
`) +
|
|
2417
|
+
leave: ({ description: e, directives: t, operationTypes: n }) => A("", e, `
|
|
2418
|
+
`) + d(["schema", d(t, " "), k(n)], " ")
|
|
2419
2419
|
},
|
|
2420
2420
|
OperationTypeDefinition: {
|
|
2421
2421
|
leave: ({ operation: e, type: t }) => e + ": " + t
|
|
2422
2422
|
},
|
|
2423
2423
|
ScalarTypeDefinition: {
|
|
2424
|
-
leave: ({ description: e, name: t, directives: n }) =>
|
|
2425
|
-
`) +
|
|
2424
|
+
leave: ({ description: e, name: t, directives: n }) => A("", e, `
|
|
2425
|
+
`) + d(["scalar", t, d(n, " ")], " ")
|
|
2426
2426
|
},
|
|
2427
2427
|
ObjectTypeDefinition: {
|
|
2428
|
-
leave: ({ description: e, name: t, interfaces: n, directives: r, fields: i }) =>
|
|
2429
|
-
`) +
|
|
2428
|
+
leave: ({ description: e, name: t, interfaces: n, directives: r, fields: i }) => A("", e, `
|
|
2429
|
+
`) + d(
|
|
2430
2430
|
[
|
|
2431
2431
|
"type",
|
|
2432
2432
|
t,
|
|
2433
|
-
|
|
2434
|
-
|
|
2433
|
+
A("implements ", d(n, " & ")),
|
|
2434
|
+
d(r, " "),
|
|
2435
2435
|
k(i)
|
|
2436
2436
|
],
|
|
2437
2437
|
" "
|
|
2438
2438
|
)
|
|
2439
2439
|
},
|
|
2440
2440
|
FieldDefinition: {
|
|
2441
|
-
leave: ({ description: e, name: t, arguments: n, type: r, directives: i }) =>
|
|
2442
|
-
`) + t + (
|
|
2443
|
-
`,
|
|
2441
|
+
leave: ({ description: e, name: t, arguments: n, type: r, directives: i }) => A("", e, `
|
|
2442
|
+
`) + t + (Re(n) ? A(`(
|
|
2443
|
+
`, W(d(n, `
|
|
2444
2444
|
`)), `
|
|
2445
|
-
)`) :
|
|
2445
|
+
)`) : A("(", d(n, ", "), ")")) + ": " + r + A(" ", d(i, " "))
|
|
2446
2446
|
},
|
|
2447
2447
|
InputValueDefinition: {
|
|
2448
|
-
leave: ({ description: e, name: t, type: n, defaultValue: r, directives: i }) =>
|
|
2449
|
-
`) +
|
|
2450
|
-
[t + ": " + n,
|
|
2448
|
+
leave: ({ description: e, name: t, type: n, defaultValue: r, directives: i }) => A("", e, `
|
|
2449
|
+
`) + d(
|
|
2450
|
+
[t + ": " + n, A("= ", r), d(i, " ")],
|
|
2451
2451
|
" "
|
|
2452
2452
|
)
|
|
2453
2453
|
},
|
|
2454
2454
|
InterfaceTypeDefinition: {
|
|
2455
|
-
leave: ({ description: e, name: t, interfaces: n, directives: r, fields: i }) =>
|
|
2456
|
-
`) +
|
|
2455
|
+
leave: ({ description: e, name: t, interfaces: n, directives: r, fields: i }) => A("", e, `
|
|
2456
|
+
`) + d(
|
|
2457
2457
|
[
|
|
2458
2458
|
"interface",
|
|
2459
2459
|
t,
|
|
2460
|
-
|
|
2461
|
-
|
|
2460
|
+
A("implements ", d(n, " & ")),
|
|
2461
|
+
d(r, " "),
|
|
2462
2462
|
k(i)
|
|
2463
2463
|
],
|
|
2464
2464
|
" "
|
|
2465
2465
|
)
|
|
2466
2466
|
},
|
|
2467
2467
|
UnionTypeDefinition: {
|
|
2468
|
-
leave: ({ description: e, name: t, directives: n, types: r }) =>
|
|
2469
|
-
`) +
|
|
2470
|
-
["union", t,
|
|
2468
|
+
leave: ({ description: e, name: t, directives: n, types: r }) => A("", e, `
|
|
2469
|
+
`) + d(
|
|
2470
|
+
["union", t, d(n, " "), A("= ", d(r, " | "))],
|
|
2471
2471
|
" "
|
|
2472
2472
|
)
|
|
2473
2473
|
},
|
|
2474
2474
|
EnumTypeDefinition: {
|
|
2475
|
-
leave: ({ description: e, name: t, directives: n, values: r }) =>
|
|
2476
|
-
`) +
|
|
2475
|
+
leave: ({ description: e, name: t, directives: n, values: r }) => A("", e, `
|
|
2476
|
+
`) + d(["enum", t, d(n, " "), k(r)], " ")
|
|
2477
2477
|
},
|
|
2478
2478
|
EnumValueDefinition: {
|
|
2479
|
-
leave: ({ description: e, name: t, directives: n }) =>
|
|
2480
|
-
`) +
|
|
2479
|
+
leave: ({ description: e, name: t, directives: n }) => A("", e, `
|
|
2480
|
+
`) + d([t, d(n, " ")], " ")
|
|
2481
2481
|
},
|
|
2482
2482
|
InputObjectTypeDefinition: {
|
|
2483
|
-
leave: ({ description: e, name: t, directives: n, fields: r }) =>
|
|
2484
|
-
`) +
|
|
2483
|
+
leave: ({ description: e, name: t, directives: n, fields: r }) => A("", e, `
|
|
2484
|
+
`) + d(["input", t, d(n, " "), k(r)], " ")
|
|
2485
2485
|
},
|
|
2486
2486
|
DirectiveDefinition: {
|
|
2487
|
-
leave: ({ description: e, name: t, arguments: n, repeatable: r, locations: i }) =>
|
|
2488
|
-
`) + "directive @" + t + (
|
|
2489
|
-
`,
|
|
2487
|
+
leave: ({ description: e, name: t, arguments: n, repeatable: r, locations: i }) => A("", e, `
|
|
2488
|
+
`) + "directive @" + t + (Re(n) ? A(`(
|
|
2489
|
+
`, W(d(n, `
|
|
2490
2490
|
`)), `
|
|
2491
|
-
)`) :
|
|
2491
|
+
)`) : A("(", d(n, ", "), ")")) + (r ? " repeatable" : "") + " on " + d(i, " | ")
|
|
2492
2492
|
},
|
|
2493
2493
|
SchemaExtension: {
|
|
2494
|
-
leave: ({ directives: e, operationTypes: t }) =>
|
|
2495
|
-
["extend schema",
|
|
2494
|
+
leave: ({ directives: e, operationTypes: t }) => d(
|
|
2495
|
+
["extend schema", d(e, " "), k(t)],
|
|
2496
2496
|
" "
|
|
2497
2497
|
)
|
|
2498
2498
|
},
|
|
2499
2499
|
ScalarTypeExtension: {
|
|
2500
|
-
leave: ({ name: e, directives: t }) =>
|
|
2500
|
+
leave: ({ name: e, directives: t }) => d(["extend scalar", e, d(t, " ")], " ")
|
|
2501
2501
|
},
|
|
2502
2502
|
ObjectTypeExtension: {
|
|
2503
|
-
leave: ({ name: e, interfaces: t, directives: n, fields: r }) =>
|
|
2503
|
+
leave: ({ name: e, interfaces: t, directives: n, fields: r }) => d(
|
|
2504
2504
|
[
|
|
2505
2505
|
"extend type",
|
|
2506
2506
|
e,
|
|
2507
|
-
|
|
2508
|
-
|
|
2507
|
+
A("implements ", d(t, " & ")),
|
|
2508
|
+
d(n, " "),
|
|
2509
2509
|
k(r)
|
|
2510
2510
|
],
|
|
2511
2511
|
" "
|
|
2512
2512
|
)
|
|
2513
2513
|
},
|
|
2514
2514
|
InterfaceTypeExtension: {
|
|
2515
|
-
leave: ({ name: e, interfaces: t, directives: n, fields: r }) =>
|
|
2515
|
+
leave: ({ name: e, interfaces: t, directives: n, fields: r }) => d(
|
|
2516
2516
|
[
|
|
2517
2517
|
"extend interface",
|
|
2518
2518
|
e,
|
|
2519
|
-
|
|
2520
|
-
|
|
2519
|
+
A("implements ", d(t, " & ")),
|
|
2520
|
+
d(n, " "),
|
|
2521
2521
|
k(r)
|
|
2522
2522
|
],
|
|
2523
2523
|
" "
|
|
2524
2524
|
)
|
|
2525
2525
|
},
|
|
2526
2526
|
UnionTypeExtension: {
|
|
2527
|
-
leave: ({ name: e, directives: t, types: n }) =>
|
|
2527
|
+
leave: ({ name: e, directives: t, types: n }) => d(
|
|
2528
2528
|
[
|
|
2529
2529
|
"extend union",
|
|
2530
2530
|
e,
|
|
2531
|
-
|
|
2532
|
-
|
|
2531
|
+
d(t, " "),
|
|
2532
|
+
A("= ", d(n, " | "))
|
|
2533
2533
|
],
|
|
2534
2534
|
" "
|
|
2535
2535
|
)
|
|
2536
2536
|
},
|
|
2537
2537
|
EnumTypeExtension: {
|
|
2538
|
-
leave: ({ name: e, directives: t, values: n }) =>
|
|
2538
|
+
leave: ({ name: e, directives: t, values: n }) => d(["extend enum", e, d(t, " "), k(n)], " ")
|
|
2539
2539
|
},
|
|
2540
2540
|
InputObjectTypeExtension: {
|
|
2541
|
-
leave: ({ name: e, directives: t, fields: n }) =>
|
|
2541
|
+
leave: ({ name: e, directives: t, fields: n }) => d(["extend input", e, d(t, " "), k(n)], " ")
|
|
2542
2542
|
}
|
|
2543
2543
|
};
|
|
2544
|
-
function
|
|
2544
|
+
function d(e, t = "") {
|
|
2545
2545
|
var n;
|
|
2546
2546
|
return (n = e == null ? void 0 : e.filter((r) => r).join(t)) !== null && n !== void 0 ? n : "";
|
|
2547
2547
|
}
|
|
2548
2548
|
function k(e) {
|
|
2549
|
-
return
|
|
2550
|
-
`,
|
|
2549
|
+
return A(`{
|
|
2550
|
+
`, W(d(e, `
|
|
2551
2551
|
`)), `
|
|
2552
2552
|
}`);
|
|
2553
2553
|
}
|
|
2554
|
-
function
|
|
2554
|
+
function A(e, t, n = "") {
|
|
2555
2555
|
return t != null && t !== "" ? e + t + n : "";
|
|
2556
2556
|
}
|
|
2557
|
-
function
|
|
2558
|
-
return
|
|
2557
|
+
function W(e) {
|
|
2558
|
+
return A(" ", e.replace(/\n/g, `
|
|
2559
2559
|
`));
|
|
2560
2560
|
}
|
|
2561
|
-
function
|
|
2561
|
+
function Re(e) {
|
|
2562
2562
|
var t;
|
|
2563
2563
|
return (t = e == null ? void 0 : e.some((n) => n.includes(`
|
|
2564
2564
|
`))) !== null && t !== void 0 ? t : !1;
|
|
2565
2565
|
}
|
|
2566
|
-
var ee = /* @__PURE__ */ new Map(), ge = /* @__PURE__ */ new Map(),
|
|
2566
|
+
var ee = /* @__PURE__ */ new Map(), ge = /* @__PURE__ */ new Map(), Ue = !0, ie = !1;
|
|
2567
2567
|
function Ge(e) {
|
|
2568
2568
|
return e.replace(/[\s,]+/g, " ").trim();
|
|
2569
2569
|
}
|
|
@@ -2575,14 +2575,14 @@ function Ft(e) {
|
|
|
2575
2575
|
return e.definitions.forEach(function(r) {
|
|
2576
2576
|
if (r.kind === "FragmentDefinition") {
|
|
2577
2577
|
var i = r.name.value, s = wt(r.loc), a = ge.get(i);
|
|
2578
|
-
a && !a.has(s) ?
|
|
2578
|
+
a && !a.has(s) ? Ue && console.warn("Warning: fragment with name " + i + ` already exists.
|
|
2579
2579
|
graphql-tag enforces all fragment names across your application to be unique; read more about
|
|
2580
2580
|
this in the docs: http://dev.apollodata.com/core/fragments.html#unique-names`) : a || ge.set(i, a = /* @__PURE__ */ new Set()), a.add(s), t.has(s) || (t.add(s), n.push(r));
|
|
2581
2581
|
} else
|
|
2582
2582
|
n.push(r);
|
|
2583
2583
|
}), ne(ne({}, e), { definitions: n });
|
|
2584
2584
|
}
|
|
2585
|
-
function
|
|
2585
|
+
function Mt(e) {
|
|
2586
2586
|
var t = new Set(e.definitions);
|
|
2587
2587
|
t.forEach(function(r) {
|
|
2588
2588
|
r.loc && delete r.loc, Object.keys(r).forEach(function(i) {
|
|
@@ -2593,52 +2593,52 @@ function Bt(e) {
|
|
|
2593
2593
|
var n = e.loc;
|
|
2594
2594
|
return n && (delete n.startToken, delete n.endToken), e;
|
|
2595
2595
|
}
|
|
2596
|
-
function
|
|
2596
|
+
function Bt(e) {
|
|
2597
2597
|
var t = Ge(e);
|
|
2598
2598
|
if (!ee.has(t)) {
|
|
2599
|
-
var n =
|
|
2599
|
+
var n = Be(e, {
|
|
2600
2600
|
experimentalFragmentVariables: ie,
|
|
2601
2601
|
allowLegacyFragmentVariables: ie
|
|
2602
2602
|
});
|
|
2603
2603
|
if (!n || n.kind !== "Document")
|
|
2604
2604
|
throw new Error("Not a valid GraphQL document.");
|
|
2605
|
-
ee.set(t,
|
|
2605
|
+
ee.set(t, Mt(Ft(n)));
|
|
2606
2606
|
}
|
|
2607
2607
|
return ee.get(t);
|
|
2608
2608
|
}
|
|
2609
|
-
function
|
|
2609
|
+
function U(e) {
|
|
2610
2610
|
for (var t = [], n = 1; n < arguments.length; n++)
|
|
2611
2611
|
t[n - 1] = arguments[n];
|
|
2612
2612
|
typeof e == "string" && (e = [e]);
|
|
2613
2613
|
var r = e[0];
|
|
2614
2614
|
return t.forEach(function(i, s) {
|
|
2615
2615
|
i && i.kind === "Document" ? r += i.loc.source.body : r += i, r += e[s + 1];
|
|
2616
|
-
}),
|
|
2616
|
+
}), Bt(r);
|
|
2617
2617
|
}
|
|
2618
|
-
function
|
|
2618
|
+
function qt() {
|
|
2619
2619
|
ee.clear(), ge.clear();
|
|
2620
2620
|
}
|
|
2621
|
-
function
|
|
2622
|
-
|
|
2621
|
+
function Ut() {
|
|
2622
|
+
Ue = !1;
|
|
2623
2623
|
}
|
|
2624
2624
|
function Gt() {
|
|
2625
2625
|
ie = !0;
|
|
2626
2626
|
}
|
|
2627
|
-
function
|
|
2627
|
+
function $t() {
|
|
2628
2628
|
ie = !1;
|
|
2629
2629
|
}
|
|
2630
|
-
var
|
|
2631
|
-
gql:
|
|
2632
|
-
resetCaches:
|
|
2633
|
-
disableFragmentWarnings:
|
|
2630
|
+
var V = {
|
|
2631
|
+
gql: U,
|
|
2632
|
+
resetCaches: qt,
|
|
2633
|
+
disableFragmentWarnings: Ut,
|
|
2634
2634
|
enableExperimentalFragmentVariables: Gt,
|
|
2635
|
-
disableExperimentalFragmentVariables:
|
|
2635
|
+
disableExperimentalFragmentVariables: $t
|
|
2636
2636
|
};
|
|
2637
2637
|
(function(e) {
|
|
2638
|
-
e.gql =
|
|
2639
|
-
})(
|
|
2640
|
-
|
|
2641
|
-
const
|
|
2638
|
+
e.gql = V.gql, e.resetCaches = V.resetCaches, e.disableFragmentWarnings = V.disableFragmentWarnings, e.enableExperimentalFragmentVariables = V.enableExperimentalFragmentVariables, e.disableExperimentalFragmentVariables = V.disableExperimentalFragmentVariables;
|
|
2639
|
+
})(U || (U = {}));
|
|
2640
|
+
U.default = U;
|
|
2641
|
+
const x = U, Vt = x`
|
|
2642
2642
|
query GetLocationAvailabilities($sku: String!, $first: Int, $after: String, $isReverse: Boolean! = false) {
|
|
2643
2643
|
locationAvailabilities(
|
|
2644
2644
|
sku: $sku
|
|
@@ -2677,7 +2677,7 @@ const R = q, $t = R`
|
|
|
2677
2677
|
}
|
|
2678
2678
|
}
|
|
2679
2679
|
}
|
|
2680
|
-
`, jt =
|
|
2680
|
+
`, jt = x`
|
|
2681
2681
|
query GetLocationAvailability($sku: String!, $locationID: ID!) {
|
|
2682
2682
|
locationAvailability(sku: $sku, locationID: $locationID) {
|
|
2683
2683
|
location {
|
|
@@ -2703,7 +2703,7 @@ const R = q, $t = R`
|
|
|
2703
2703
|
inventoryQuantity
|
|
2704
2704
|
}
|
|
2705
2705
|
}
|
|
2706
|
-
`, Ht =
|
|
2706
|
+
`, Ht = x`
|
|
2707
2707
|
query GetPurchasingCustomerMetafield($namespace: String!, $key: String!) {
|
|
2708
2708
|
purchasingCustomerMetafield(namespace: $namespace, key: $key) {
|
|
2709
2709
|
id
|
|
@@ -2712,7 +2712,7 @@ const R = q, $t = R`
|
|
|
2712
2712
|
value
|
|
2713
2713
|
}
|
|
2714
2714
|
}
|
|
2715
|
-
`, Yt =
|
|
2715
|
+
`, Yt = x`
|
|
2716
2716
|
query GetPoints {
|
|
2717
2717
|
purchasingCustomer {
|
|
2718
2718
|
pointsApproved
|
|
@@ -2724,7 +2724,7 @@ const R = q, $t = R`
|
|
|
2724
2724
|
}
|
|
2725
2725
|
}
|
|
2726
2726
|
}
|
|
2727
|
-
`, zt =
|
|
2727
|
+
`, zt = x`
|
|
2728
2728
|
query GetLocations($first: Int, $after: String, $filter: LocationFilter, $isReverse: Boolean! = false) {
|
|
2729
2729
|
locations(first: $first, after: $after, filter: $filter, isReverse: $isReverse) {
|
|
2730
2730
|
nodes {
|
|
@@ -2755,7 +2755,7 @@ const R = q, $t = R`
|
|
|
2755
2755
|
}
|
|
2756
2756
|
}
|
|
2757
2757
|
}
|
|
2758
|
-
`, Jt =
|
|
2758
|
+
`, Jt = x`
|
|
2759
2759
|
query GetPurchasingCustomerDiscounts($first: Int, $after: String, $isReverse: Boolean! = false) {
|
|
2760
2760
|
purchasingCustomer {
|
|
2761
2761
|
id
|
|
@@ -2784,14 +2784,14 @@ const R = q, $t = R`
|
|
|
2784
2784
|
}
|
|
2785
2785
|
}
|
|
2786
2786
|
}
|
|
2787
|
-
`, Qt =
|
|
2787
|
+
`, Qt = x`
|
|
2788
2788
|
query GetPurchasingCustomerDiscountCodeCount {
|
|
2789
2789
|
purchasingCustomer {
|
|
2790
2790
|
id
|
|
2791
2791
|
orderPriceAdjustmentRuleCount
|
|
2792
2792
|
}
|
|
2793
2793
|
}
|
|
2794
|
-
`, Xt =
|
|
2794
|
+
`, Xt = x`
|
|
2795
2795
|
query GetPurchasingCustomerPointChangeActivities($first: Int, $after: String, $isReverse: Boolean! = false, $sortKeys: PointChangeActivitySortKey! = CREATED_AT) {
|
|
2796
2796
|
purchasingCustomer {
|
|
2797
2797
|
id
|
|
@@ -2851,7 +2851,7 @@ const R = q, $t = R`
|
|
|
2851
2851
|
}
|
|
2852
2852
|
}
|
|
2853
2853
|
}
|
|
2854
|
-
`, Kt =
|
|
2854
|
+
`, Kt = x`
|
|
2855
2855
|
query GetPurchasingCustomerRank {
|
|
2856
2856
|
purchasingCustomer {
|
|
2857
2857
|
currentCustomerRank {
|
|
@@ -2892,14 +2892,14 @@ const R = q, $t = R`
|
|
|
2892
2892
|
}
|
|
2893
2893
|
}
|
|
2894
2894
|
}
|
|
2895
|
-
`,
|
|
2895
|
+
`, Zt = x`
|
|
2896
2896
|
query GetSharingPurchasingCustomerCount {
|
|
2897
2897
|
purchasingCustomer {
|
|
2898
2898
|
id
|
|
2899
2899
|
sharingPurchasingCustomerCount
|
|
2900
2900
|
}
|
|
2901
2901
|
}
|
|
2902
|
-
`,
|
|
2902
|
+
`, Wt = x`
|
|
2903
2903
|
query GetPurchasingCustomerSharing {
|
|
2904
2904
|
purchasingCustomer {
|
|
2905
2905
|
id
|
|
@@ -2916,7 +2916,7 @@ const R = q, $t = R`
|
|
|
2916
2916
|
}
|
|
2917
2917
|
}
|
|
2918
2918
|
}
|
|
2919
|
-
`, en =
|
|
2919
|
+
`, en = x`
|
|
2920
2920
|
query GetProduct($id: String!, $first: Int, $after: String, $isReverse: Boolean! = false, $sortKeys: ProductVariantSortKeys! = CREATED_AT) {
|
|
2921
2921
|
productByProductShopifyLegacyResourceID(productShopifyLegacyResourceID: $id) {
|
|
2922
2922
|
id
|
|
@@ -2948,14 +2948,14 @@ const R = q, $t = R`
|
|
|
2948
2948
|
}
|
|
2949
2949
|
}
|
|
2950
2950
|
}
|
|
2951
|
-
`, tn =
|
|
2951
|
+
`, tn = x`
|
|
2952
2952
|
query GetHasBackOrderProductVariantsByProductShopifyLegacyResourceID($id: String!) {
|
|
2953
2953
|
productByProductShopifyLegacyResourceID(productShopifyLegacyResourceID: $id) {
|
|
2954
2954
|
id
|
|
2955
2955
|
hasBackOrderProductVariants
|
|
2956
2956
|
}
|
|
2957
2957
|
}
|
|
2958
|
-
`, nn =
|
|
2958
|
+
`, nn = x`
|
|
2959
2959
|
query GetPointCampaignOrderRuleTargetCustomerRank {
|
|
2960
2960
|
pointCampaignOrderRuleTargetCustomerRank {
|
|
2961
2961
|
pointCampaignOrderRule {
|
|
@@ -2968,7 +2968,7 @@ const R = q, $t = R`
|
|
|
2968
2968
|
fixedPoint
|
|
2969
2969
|
}
|
|
2970
2970
|
}
|
|
2971
|
-
`, rn =
|
|
2971
|
+
`, rn = x`
|
|
2972
2972
|
query GetEstimatedShopifyCartPoint($input: EstimatedShopifyCartPointInput!) {
|
|
2973
2973
|
estimatedShopifyCartPoint(input: $input) {
|
|
2974
2974
|
pointsEarning
|
|
@@ -2984,7 +2984,7 @@ const R = q, $t = R`
|
|
|
2984
2984
|
}
|
|
2985
2985
|
}
|
|
2986
2986
|
}
|
|
2987
|
-
`, sn =
|
|
2987
|
+
`, sn = x`
|
|
2988
2988
|
query GetEstimatedShopifyCartLineItemPoint($input: EstimatedShopifyCartLineItemPointInput!) {
|
|
2989
2989
|
estimatedShopifyCartLineItemPoint(input: $input) {
|
|
2990
2990
|
pointsEarning
|
|
@@ -3000,7 +3000,7 @@ const R = q, $t = R`
|
|
|
3000
3000
|
}
|
|
3001
3001
|
}
|
|
3002
3002
|
}
|
|
3003
|
-
`, an =
|
|
3003
|
+
`, an = x`
|
|
3004
3004
|
mutation PurchasingCustomerSendCustomerSharingActivationCode {
|
|
3005
3005
|
purchasingCustomerSendCustomerSharingActivationCode {
|
|
3006
3006
|
purchasingCustomer {
|
|
@@ -3016,7 +3016,7 @@ const R = q, $t = R`
|
|
|
3016
3016
|
}
|
|
3017
3017
|
}
|
|
3018
3018
|
}
|
|
3019
|
-
`, on =
|
|
3019
|
+
`, on = x`
|
|
3020
3020
|
mutation PurchasingCustomerActivateCustomerSharing($email: String!, $activationCode: String!) {
|
|
3021
3021
|
purchasingCustomerActivateCustomerSharing(
|
|
3022
3022
|
input: {email: $email, activationCode: $activationCode}
|
|
@@ -3031,13 +3031,13 @@ const R = q, $t = R`
|
|
|
3031
3031
|
}
|
|
3032
3032
|
}
|
|
3033
3033
|
}
|
|
3034
|
-
`, un =
|
|
3034
|
+
`, un = x`
|
|
3035
3035
|
query GetMiles {
|
|
3036
3036
|
purchasingCustomer {
|
|
3037
3037
|
miles
|
|
3038
3038
|
}
|
|
3039
3039
|
}
|
|
3040
|
-
`, cn =
|
|
3040
|
+
`, cn = x`
|
|
3041
3041
|
query GetPurchasingCustomerMileChangeActivities($first: Int, $after: String, $isReverse: Boolean! = false, $sortKeys: MileChangeActivitySortKey! = CREATED_AT) {
|
|
3042
3042
|
purchasingCustomer {
|
|
3043
3043
|
id
|
|
@@ -3066,11 +3066,99 @@ const R = q, $t = R`
|
|
|
3066
3066
|
}
|
|
3067
3067
|
}
|
|
3068
3068
|
}
|
|
3069
|
-
`,
|
|
3070
|
-
|
|
3069
|
+
`, ln = x`
|
|
3070
|
+
query GetMileItems($first: Int, $after: String, $isReverse: Boolean! = false, $sortKeys: ShopifyMileItemSortKey! = CREATED_AT) {
|
|
3071
|
+
mileItems(
|
|
3072
|
+
first: $first
|
|
3073
|
+
after: $after
|
|
3074
|
+
isReverse: $isReverse
|
|
3075
|
+
sortKeys: $sortKeys
|
|
3076
|
+
) {
|
|
3077
|
+
nodes {
|
|
3078
|
+
id
|
|
3079
|
+
title
|
|
3080
|
+
description
|
|
3081
|
+
miles
|
|
3082
|
+
sku
|
|
3083
|
+
isActive
|
|
3084
|
+
isScheduled
|
|
3085
|
+
customerExchangeable
|
|
3086
|
+
startsAt
|
|
3087
|
+
endsAt
|
|
3088
|
+
}
|
|
3089
|
+
pageInfo {
|
|
3090
|
+
startCursor
|
|
3091
|
+
endCursor
|
|
3092
|
+
hasNextPage
|
|
3093
|
+
hasPreviousPage
|
|
3094
|
+
}
|
|
3095
|
+
}
|
|
3096
|
+
}
|
|
3097
|
+
`, dn = x`
|
|
3098
|
+
query GetMileOrders($first: Int, $after: String, $isReverse: Boolean! = false, $sortKeys: MileOrderSortKey! = CREATED_AT) {
|
|
3099
|
+
purchasingCustomer {
|
|
3100
|
+
id
|
|
3101
|
+
mileOrders(
|
|
3102
|
+
first: $first
|
|
3103
|
+
after: $after
|
|
3104
|
+
isReverse: $isReverse
|
|
3105
|
+
sortKeys: $sortKeys
|
|
3106
|
+
) {
|
|
3107
|
+
nodes {
|
|
3108
|
+
id
|
|
3109
|
+
mileItem {
|
|
3110
|
+
id
|
|
3111
|
+
title
|
|
3112
|
+
description
|
|
3113
|
+
miles
|
|
3114
|
+
sku
|
|
3115
|
+
isActive
|
|
3116
|
+
isScheduled
|
|
3117
|
+
customerExchangeable
|
|
3118
|
+
startsAt
|
|
3119
|
+
endsAt
|
|
3120
|
+
}
|
|
3121
|
+
miles
|
|
3122
|
+
exchangedAt
|
|
3123
|
+
isCancelled
|
|
3124
|
+
}
|
|
3125
|
+
pageInfo {
|
|
3126
|
+
startCursor
|
|
3127
|
+
endCursor
|
|
3128
|
+
hasNextPage
|
|
3129
|
+
hasPreviousPage
|
|
3130
|
+
}
|
|
3131
|
+
}
|
|
3132
|
+
}
|
|
3133
|
+
}
|
|
3134
|
+
`, pn = x`
|
|
3135
|
+
mutation MileItemExchange($mileItemID: ID!) {
|
|
3136
|
+
mileItemExchange(input: {mileItemID: $mileItemID}) {
|
|
3137
|
+
mileOrder {
|
|
3138
|
+
id
|
|
3139
|
+
mileItem {
|
|
3140
|
+
id
|
|
3141
|
+
title
|
|
3142
|
+
description
|
|
3143
|
+
miles
|
|
3144
|
+
sku
|
|
3145
|
+
isActive
|
|
3146
|
+
isScheduled
|
|
3147
|
+
customerExchangeable
|
|
3148
|
+
startsAt
|
|
3149
|
+
endsAt
|
|
3150
|
+
}
|
|
3151
|
+
miles
|
|
3152
|
+
exchangedAt
|
|
3153
|
+
isCancelled
|
|
3154
|
+
}
|
|
3155
|
+
}
|
|
3156
|
+
}
|
|
3157
|
+
`, hn = (e, t, n, r) => e();
|
|
3158
|
+
function mn(e, t = hn) {
|
|
3071
3159
|
return {
|
|
3072
3160
|
GetLocationAvailabilities(n, r) {
|
|
3073
|
-
return t((i) => e.request(
|
|
3161
|
+
return t((i) => e.request(Vt, n, { ...r, ...i }), "GetLocationAvailabilities", "query", n);
|
|
3074
3162
|
},
|
|
3075
3163
|
GetLocationAvailability(n, r) {
|
|
3076
3164
|
return t((i) => e.request(jt, n, { ...r, ...i }), "GetLocationAvailability", "query", n);
|
|
@@ -3097,10 +3185,10 @@ function ln(e, t = dn) {
|
|
|
3097
3185
|
return t((i) => e.request(Kt, n, { ...r, ...i }), "GetPurchasingCustomerRank", "query", n);
|
|
3098
3186
|
},
|
|
3099
3187
|
GetSharingPurchasingCustomerCount(n, r) {
|
|
3100
|
-
return t((i) => e.request(
|
|
3188
|
+
return t((i) => e.request(Zt, n, { ...r, ...i }), "GetSharingPurchasingCustomerCount", "query", n);
|
|
3101
3189
|
},
|
|
3102
3190
|
GetPurchasingCustomerSharing(n, r) {
|
|
3103
|
-
return t((i) => e.request(
|
|
3191
|
+
return t((i) => e.request(Wt, n, { ...r, ...i }), "GetPurchasingCustomerSharing", "query", n);
|
|
3104
3192
|
},
|
|
3105
3193
|
GetProduct(n, r) {
|
|
3106
3194
|
return t((i) => e.request(en, n, { ...r, ...i }), "GetProduct", "query", n);
|
|
@@ -3128,44 +3216,53 @@ function ln(e, t = dn) {
|
|
|
3128
3216
|
},
|
|
3129
3217
|
GetPurchasingCustomerMileChangeActivities(n, r) {
|
|
3130
3218
|
return t((i) => e.request(cn, n, { ...r, ...i }), "GetPurchasingCustomerMileChangeActivities", "query", n);
|
|
3219
|
+
},
|
|
3220
|
+
GetMileItems(n, r) {
|
|
3221
|
+
return t((i) => e.request(ln, n, { ...r, ...i }), "GetMileItems", "query", n);
|
|
3222
|
+
},
|
|
3223
|
+
GetMileOrders(n, r) {
|
|
3224
|
+
return t((i) => e.request(dn, n, { ...r, ...i }), "GetMileOrders", "query", n);
|
|
3225
|
+
},
|
|
3226
|
+
MileItemExchange(n, r) {
|
|
3227
|
+
return t((i) => e.request(pn, n, { ...r, ...i }), "MileItemExchange", "mutation", n);
|
|
3131
3228
|
}
|
|
3132
3229
|
};
|
|
3133
3230
|
}
|
|
3134
|
-
const
|
|
3231
|
+
const Ae = JSON, fn = (e) => e.toUpperCase(), gn = (e) => {
|
|
3135
3232
|
const t = {};
|
|
3136
3233
|
return e.forEach((n, r) => {
|
|
3137
3234
|
t[r] = n;
|
|
3138
3235
|
}), t;
|
|
3139
|
-
},
|
|
3236
|
+
}, Cn = (e, t, n) => e.document ? e : {
|
|
3140
3237
|
document: e,
|
|
3141
3238
|
variables: t,
|
|
3142
3239
|
requestHeaders: n,
|
|
3143
3240
|
signal: void 0
|
|
3144
|
-
},
|
|
3241
|
+
}, yn = (e, t, n) => e.query ? e : {
|
|
3145
3242
|
query: e,
|
|
3146
3243
|
variables: t,
|
|
3147
3244
|
requestHeaders: n,
|
|
3148
3245
|
signal: void 0
|
|
3149
|
-
},
|
|
3246
|
+
}, En = (e, t) => e.documents ? e : {
|
|
3150
3247
|
documents: e,
|
|
3151
3248
|
requestHeaders: t,
|
|
3152
3249
|
signal: void 0
|
|
3153
|
-
},
|
|
3250
|
+
}, Oe = (e) => {
|
|
3154
3251
|
var r, i;
|
|
3155
3252
|
let t;
|
|
3156
3253
|
const n = e.definitions.filter((s) => s.kind === "OperationDefinition");
|
|
3157
3254
|
return n.length === 1 && (t = (i = (r = n[0]) == null ? void 0 : r.name) == null ? void 0 : i.value), t;
|
|
3158
|
-
},
|
|
3255
|
+
}, le = (e) => {
|
|
3159
3256
|
if (typeof e == "string") {
|
|
3160
3257
|
let n;
|
|
3161
3258
|
try {
|
|
3162
|
-
const r =
|
|
3163
|
-
n =
|
|
3259
|
+
const r = Be(e);
|
|
3260
|
+
n = Oe(r);
|
|
3164
3261
|
} catch {
|
|
3165
3262
|
}
|
|
3166
3263
|
return { query: e, operationName: n };
|
|
3167
3264
|
}
|
|
3168
|
-
const t =
|
|
3265
|
+
const t = Oe(e);
|
|
3169
3266
|
return { query: kt(e), operationName: t };
|
|
3170
3267
|
};
|
|
3171
3268
|
class H extends Error {
|
|
@@ -3181,13 +3278,13 @@ class H extends Error {
|
|
|
3181
3278
|
return ((r = (n = t.errors) == null ? void 0 : n[0]) == null ? void 0 : r.message) ?? `GraphQL Error (Code: ${t.status})`;
|
|
3182
3279
|
}
|
|
3183
3280
|
}
|
|
3184
|
-
var
|
|
3185
|
-
function
|
|
3281
|
+
var An = typeof globalThis < "u" ? globalThis : typeof window < "u" ? window : typeof global < "u" ? global : typeof self < "u" ? self : {};
|
|
3282
|
+
function vn(e) {
|
|
3186
3283
|
return e && e.__esModule && Object.prototype.hasOwnProperty.call(e, "default") ? e.default : e;
|
|
3187
3284
|
}
|
|
3188
3285
|
var Ce = { exports: {} };
|
|
3189
3286
|
(function(e, t) {
|
|
3190
|
-
var n = typeof self < "u" ? self :
|
|
3287
|
+
var n = typeof self < "u" ? self : An, r = function() {
|
|
3191
3288
|
function s() {
|
|
3192
3289
|
this.fetch = !1, this.DOMException = n.DOMException;
|
|
3193
3290
|
}
|
|
@@ -3222,7 +3319,7 @@ var Ce = { exports: {} };
|
|
|
3222
3319
|
"[object Uint32Array]",
|
|
3223
3320
|
"[object Float32Array]",
|
|
3224
3321
|
"[object Float64Array]"
|
|
3225
|
-
],
|
|
3322
|
+
], f = ArrayBuffer.isView || function(o) {
|
|
3226
3323
|
return o && h.indexOf(Object.prototype.toString.call(o)) > -1;
|
|
3227
3324
|
};
|
|
3228
3325
|
function C(o) {
|
|
@@ -3233,95 +3330,95 @@ var Ce = { exports: {} };
|
|
|
3233
3330
|
function y(o) {
|
|
3234
3331
|
return typeof o != "string" && (o = String(o)), o;
|
|
3235
3332
|
}
|
|
3236
|
-
function
|
|
3237
|
-
var
|
|
3333
|
+
function I(o) {
|
|
3334
|
+
var l = {
|
|
3238
3335
|
next: function() {
|
|
3239
3336
|
var E = o.shift();
|
|
3240
3337
|
return { done: E === void 0, value: E };
|
|
3241
3338
|
}
|
|
3242
3339
|
};
|
|
3243
|
-
return c.iterable && (
|
|
3244
|
-
return
|
|
3245
|
-
}),
|
|
3340
|
+
return c.iterable && (l[Symbol.iterator] = function() {
|
|
3341
|
+
return l;
|
|
3342
|
+
}), l;
|
|
3246
3343
|
}
|
|
3247
3344
|
function g(o) {
|
|
3248
|
-
this.map = {}, o instanceof g ? o.forEach(function(
|
|
3249
|
-
this.append(E,
|
|
3250
|
-
}, this) : Array.isArray(o) ? o.forEach(function(
|
|
3251
|
-
this.append(
|
|
3252
|
-
}, this) : o && Object.getOwnPropertyNames(o).forEach(function(
|
|
3253
|
-
this.append(
|
|
3345
|
+
this.map = {}, o instanceof g ? o.forEach(function(l, E) {
|
|
3346
|
+
this.append(E, l);
|
|
3347
|
+
}, this) : Array.isArray(o) ? o.forEach(function(l) {
|
|
3348
|
+
this.append(l[0], l[1]);
|
|
3349
|
+
}, this) : o && Object.getOwnPropertyNames(o).forEach(function(l) {
|
|
3350
|
+
this.append(l, o[l]);
|
|
3254
3351
|
}, this);
|
|
3255
3352
|
}
|
|
3256
|
-
g.prototype.append = function(o,
|
|
3257
|
-
o = C(o),
|
|
3353
|
+
g.prototype.append = function(o, l) {
|
|
3354
|
+
o = C(o), l = y(l);
|
|
3258
3355
|
var E = this.map[o];
|
|
3259
|
-
this.map[o] = E ? E + ", " +
|
|
3356
|
+
this.map[o] = E ? E + ", " + l : l;
|
|
3260
3357
|
}, g.prototype.delete = function(o) {
|
|
3261
3358
|
delete this.map[C(o)];
|
|
3262
3359
|
}, g.prototype.get = function(o) {
|
|
3263
3360
|
return o = C(o), this.has(o) ? this.map[o] : null;
|
|
3264
3361
|
}, g.prototype.has = function(o) {
|
|
3265
3362
|
return this.map.hasOwnProperty(C(o));
|
|
3266
|
-
}, g.prototype.set = function(o,
|
|
3267
|
-
this.map[C(o)] = y(
|
|
3268
|
-
}, g.prototype.forEach = function(o,
|
|
3363
|
+
}, g.prototype.set = function(o, l) {
|
|
3364
|
+
this.map[C(o)] = y(l);
|
|
3365
|
+
}, g.prototype.forEach = function(o, l) {
|
|
3269
3366
|
for (var E in this.map)
|
|
3270
|
-
this.map.hasOwnProperty(E) && o.call(
|
|
3367
|
+
this.map.hasOwnProperty(E) && o.call(l, this.map[E], E, this);
|
|
3271
3368
|
}, g.prototype.keys = function() {
|
|
3272
3369
|
var o = [];
|
|
3273
|
-
return this.forEach(function(
|
|
3370
|
+
return this.forEach(function(l, E) {
|
|
3274
3371
|
o.push(E);
|
|
3275
|
-
}),
|
|
3372
|
+
}), I(o);
|
|
3276
3373
|
}, g.prototype.values = function() {
|
|
3277
3374
|
var o = [];
|
|
3278
|
-
return this.forEach(function(
|
|
3279
|
-
o.push(
|
|
3280
|
-
}),
|
|
3375
|
+
return this.forEach(function(l) {
|
|
3376
|
+
o.push(l);
|
|
3377
|
+
}), I(o);
|
|
3281
3378
|
}, g.prototype.entries = function() {
|
|
3282
3379
|
var o = [];
|
|
3283
|
-
return this.forEach(function(
|
|
3284
|
-
o.push([E,
|
|
3285
|
-
}),
|
|
3380
|
+
return this.forEach(function(l, E) {
|
|
3381
|
+
o.push([E, l]);
|
|
3382
|
+
}), I(o);
|
|
3286
3383
|
}, c.iterable && (g.prototype[Symbol.iterator] = g.prototype.entries);
|
|
3287
|
-
function
|
|
3384
|
+
function T(o) {
|
|
3288
3385
|
if (o.bodyUsed)
|
|
3289
3386
|
return Promise.reject(new TypeError("Already read"));
|
|
3290
3387
|
o.bodyUsed = !0;
|
|
3291
3388
|
}
|
|
3292
|
-
function
|
|
3293
|
-
return new Promise(function(
|
|
3389
|
+
function P(o) {
|
|
3390
|
+
return new Promise(function(l, E) {
|
|
3294
3391
|
o.onload = function() {
|
|
3295
|
-
|
|
3392
|
+
l(o.result);
|
|
3296
3393
|
}, o.onerror = function() {
|
|
3297
3394
|
E(o.error);
|
|
3298
3395
|
};
|
|
3299
3396
|
});
|
|
3300
3397
|
}
|
|
3301
|
-
function
|
|
3302
|
-
var
|
|
3303
|
-
return
|
|
3398
|
+
function D(o) {
|
|
3399
|
+
var l = new FileReader(), E = P(l);
|
|
3400
|
+
return l.readAsArrayBuffer(o), E;
|
|
3304
3401
|
}
|
|
3305
3402
|
function z(o) {
|
|
3306
|
-
var
|
|
3307
|
-
return
|
|
3403
|
+
var l = new FileReader(), E = P(l);
|
|
3404
|
+
return l.readAsText(o), E;
|
|
3308
3405
|
}
|
|
3309
3406
|
function _(o) {
|
|
3310
|
-
for (var
|
|
3311
|
-
E[
|
|
3407
|
+
for (var l = new Uint8Array(o), E = new Array(l.length), N = 0; N < l.length; N++)
|
|
3408
|
+
E[N] = String.fromCharCode(l[N]);
|
|
3312
3409
|
return E.join("");
|
|
3313
3410
|
}
|
|
3314
|
-
function
|
|
3411
|
+
function b(o) {
|
|
3315
3412
|
if (o.slice)
|
|
3316
3413
|
return o.slice(0);
|
|
3317
|
-
var
|
|
3318
|
-
return
|
|
3414
|
+
var l = new Uint8Array(o.byteLength);
|
|
3415
|
+
return l.set(new Uint8Array(o)), l.buffer;
|
|
3319
3416
|
}
|
|
3320
|
-
function
|
|
3417
|
+
function M() {
|
|
3321
3418
|
return this.bodyUsed = !1, this._initBody = function(o) {
|
|
3322
|
-
this._bodyInit = o, o ? typeof o == "string" ? this._bodyText = o : c.blob && Blob.prototype.isPrototypeOf(o) ? this._bodyBlob = o : c.formData && FormData.prototype.isPrototypeOf(o) ? this._bodyFormData = o : c.searchParams && URLSearchParams.prototype.isPrototypeOf(o) ? this._bodyText = o.toString() : c.arrayBuffer && c.blob && p(o) ? (this._bodyArrayBuffer =
|
|
3419
|
+
this._bodyInit = o, o ? typeof o == "string" ? this._bodyText = o : c.blob && Blob.prototype.isPrototypeOf(o) ? this._bodyBlob = o : c.formData && FormData.prototype.isPrototypeOf(o) ? this._bodyFormData = o : c.searchParams && URLSearchParams.prototype.isPrototypeOf(o) ? this._bodyText = o.toString() : c.arrayBuffer && c.blob && p(o) ? (this._bodyArrayBuffer = b(o.buffer), this._bodyInit = new Blob([this._bodyArrayBuffer])) : c.arrayBuffer && (ArrayBuffer.prototype.isPrototypeOf(o) || f(o)) ? this._bodyArrayBuffer = b(o) : this._bodyText = o = Object.prototype.toString.call(o) : this._bodyText = "", this.headers.get("content-type") || (typeof o == "string" ? this.headers.set("content-type", "text/plain;charset=UTF-8") : this._bodyBlob && this._bodyBlob.type ? this.headers.set("content-type", this._bodyBlob.type) : c.searchParams && URLSearchParams.prototype.isPrototypeOf(o) && this.headers.set("content-type", "application/x-www-form-urlencoded;charset=UTF-8"));
|
|
3323
3420
|
}, c.blob && (this.blob = function() {
|
|
3324
|
-
var o =
|
|
3421
|
+
var o = T(this);
|
|
3325
3422
|
if (o)
|
|
3326
3423
|
return o;
|
|
3327
3424
|
if (this._bodyBlob)
|
|
@@ -3332,9 +3429,9 @@ var Ce = { exports: {} };
|
|
|
3332
3429
|
throw new Error("could not read FormData body as blob");
|
|
3333
3430
|
return Promise.resolve(new Blob([this._bodyText]));
|
|
3334
3431
|
}, this.arrayBuffer = function() {
|
|
3335
|
-
return this._bodyArrayBuffer ?
|
|
3432
|
+
return this._bodyArrayBuffer ? T(this) || Promise.resolve(this._bodyArrayBuffer) : this.blob().then(D);
|
|
3336
3433
|
}), this.text = function() {
|
|
3337
|
-
var o =
|
|
3434
|
+
var o = T(this);
|
|
3338
3435
|
if (o)
|
|
3339
3436
|
return o;
|
|
3340
3437
|
if (this._bodyBlob)
|
|
@@ -3345,56 +3442,56 @@ var Ce = { exports: {} };
|
|
|
3345
3442
|
throw new Error("could not read FormData body as text");
|
|
3346
3443
|
return Promise.resolve(this._bodyText);
|
|
3347
3444
|
}, c.formData && (this.formData = function() {
|
|
3348
|
-
return this.text().then(
|
|
3445
|
+
return this.text().then($e);
|
|
3349
3446
|
}), this.json = function() {
|
|
3350
3447
|
return this.text().then(JSON.parse);
|
|
3351
3448
|
}, this;
|
|
3352
3449
|
}
|
|
3353
3450
|
var J = ["DELETE", "GET", "HEAD", "OPTIONS", "POST", "PUT"];
|
|
3354
3451
|
function Q(o) {
|
|
3355
|
-
var
|
|
3356
|
-
return J.indexOf(
|
|
3452
|
+
var l = o.toUpperCase();
|
|
3453
|
+
return J.indexOf(l) > -1 ? l : o;
|
|
3357
3454
|
}
|
|
3358
|
-
function w(o,
|
|
3359
|
-
|
|
3360
|
-
var E =
|
|
3455
|
+
function w(o, l) {
|
|
3456
|
+
l = l || {};
|
|
3457
|
+
var E = l.body;
|
|
3361
3458
|
if (o instanceof w) {
|
|
3362
3459
|
if (o.bodyUsed)
|
|
3363
3460
|
throw new TypeError("Already read");
|
|
3364
|
-
this.url = o.url, this.credentials = o.credentials,
|
|
3461
|
+
this.url = o.url, this.credentials = o.credentials, l.headers || (this.headers = new g(o.headers)), this.method = o.method, this.mode = o.mode, this.signal = o.signal, !E && o._bodyInit != null && (E = o._bodyInit, o.bodyUsed = !0);
|
|
3365
3462
|
} else
|
|
3366
3463
|
this.url = String(o);
|
|
3367
|
-
if (this.credentials =
|
|
3464
|
+
if (this.credentials = l.credentials || this.credentials || "same-origin", (l.headers || !this.headers) && (this.headers = new g(l.headers)), this.method = Q(l.method || this.method || "GET"), this.mode = l.mode || this.mode || null, this.signal = l.signal || this.signal, this.referrer = null, (this.method === "GET" || this.method === "HEAD") && E)
|
|
3368
3465
|
throw new TypeError("Body not allowed for GET or HEAD requests");
|
|
3369
3466
|
this._initBody(E);
|
|
3370
3467
|
}
|
|
3371
3468
|
w.prototype.clone = function() {
|
|
3372
3469
|
return new w(this, { body: this._bodyInit });
|
|
3373
3470
|
};
|
|
3374
|
-
function
|
|
3375
|
-
var
|
|
3471
|
+
function $e(o) {
|
|
3472
|
+
var l = new FormData();
|
|
3376
3473
|
return o.trim().split("&").forEach(function(E) {
|
|
3377
3474
|
if (E) {
|
|
3378
|
-
var
|
|
3379
|
-
|
|
3475
|
+
var N = E.split("="), O = N.shift().replace(/\+/g, " "), v = N.join("=").replace(/\+/g, " ");
|
|
3476
|
+
l.append(decodeURIComponent(O), decodeURIComponent(v));
|
|
3380
3477
|
}
|
|
3381
|
-
}),
|
|
3478
|
+
}), l;
|
|
3382
3479
|
}
|
|
3383
|
-
function
|
|
3384
|
-
var
|
|
3385
|
-
return E.split(/\r?\n/).forEach(function(
|
|
3386
|
-
var
|
|
3387
|
-
if (
|
|
3388
|
-
var X =
|
|
3389
|
-
|
|
3480
|
+
function Ve(o) {
|
|
3481
|
+
var l = new g(), E = o.replace(/\r?\n[\t ]+/g, " ");
|
|
3482
|
+
return E.split(/\r?\n/).forEach(function(N) {
|
|
3483
|
+
var O = N.split(":"), v = O.shift().trim();
|
|
3484
|
+
if (v) {
|
|
3485
|
+
var X = O.join(":").trim();
|
|
3486
|
+
l.append(v, X);
|
|
3390
3487
|
}
|
|
3391
|
-
}),
|
|
3488
|
+
}), l;
|
|
3392
3489
|
}
|
|
3393
|
-
|
|
3394
|
-
function L(o,
|
|
3395
|
-
|
|
3490
|
+
M.call(w.prototype);
|
|
3491
|
+
function L(o, l) {
|
|
3492
|
+
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 g(l.headers), this.url = l.url || "", this._initBody(o);
|
|
3396
3493
|
}
|
|
3397
|
-
|
|
3494
|
+
M.call(L.prototype), L.prototype.clone = function() {
|
|
3398
3495
|
return new L(this._bodyInit, {
|
|
3399
3496
|
status: this.status,
|
|
3400
3497
|
statusText: this.statusText,
|
|
@@ -3406,49 +3503,49 @@ var Ce = { exports: {} };
|
|
|
3406
3503
|
return o.type = "error", o;
|
|
3407
3504
|
};
|
|
3408
3505
|
var je = [301, 302, 303, 307, 308];
|
|
3409
|
-
L.redirect = function(o,
|
|
3410
|
-
if (je.indexOf(
|
|
3506
|
+
L.redirect = function(o, l) {
|
|
3507
|
+
if (je.indexOf(l) === -1)
|
|
3411
3508
|
throw new RangeError("Invalid status code");
|
|
3412
|
-
return new L(null, { status:
|
|
3509
|
+
return new L(null, { status: l, headers: { location: o } });
|
|
3413
3510
|
}, a.DOMException = s.DOMException;
|
|
3414
3511
|
try {
|
|
3415
3512
|
new a.DOMException();
|
|
3416
3513
|
} catch {
|
|
3417
|
-
a.DOMException = function(
|
|
3418
|
-
this.message =
|
|
3419
|
-
var
|
|
3420
|
-
this.stack =
|
|
3514
|
+
a.DOMException = function(l, E) {
|
|
3515
|
+
this.message = l, this.name = E;
|
|
3516
|
+
var N = Error(l);
|
|
3517
|
+
this.stack = N.stack;
|
|
3421
3518
|
}, a.DOMException.prototype = Object.create(Error.prototype), a.DOMException.prototype.constructor = a.DOMException;
|
|
3422
3519
|
}
|
|
3423
|
-
function oe(o,
|
|
3424
|
-
return new Promise(function(E,
|
|
3425
|
-
var
|
|
3426
|
-
if (
|
|
3427
|
-
return
|
|
3428
|
-
var
|
|
3520
|
+
function oe(o, l) {
|
|
3521
|
+
return new Promise(function(E, N) {
|
|
3522
|
+
var O = new w(o, l);
|
|
3523
|
+
if (O.signal && O.signal.aborted)
|
|
3524
|
+
return N(new a.DOMException("Aborted", "AbortError"));
|
|
3525
|
+
var v = new XMLHttpRequest();
|
|
3429
3526
|
function X() {
|
|
3430
|
-
|
|
3527
|
+
v.abort();
|
|
3431
3528
|
}
|
|
3432
|
-
|
|
3433
|
-
var
|
|
3434
|
-
status:
|
|
3435
|
-
statusText:
|
|
3436
|
-
headers:
|
|
3529
|
+
v.onload = function() {
|
|
3530
|
+
var $ = {
|
|
3531
|
+
status: v.status,
|
|
3532
|
+
statusText: v.statusText,
|
|
3533
|
+
headers: Ve(v.getAllResponseHeaders() || "")
|
|
3437
3534
|
};
|
|
3438
|
-
|
|
3439
|
-
var ue = "response" in
|
|
3440
|
-
E(new L(ue,
|
|
3441
|
-
},
|
|
3442
|
-
|
|
3443
|
-
},
|
|
3444
|
-
|
|
3445
|
-
},
|
|
3446
|
-
|
|
3447
|
-
},
|
|
3448
|
-
|
|
3449
|
-
}),
|
|
3450
|
-
|
|
3451
|
-
}),
|
|
3535
|
+
$.url = "responseURL" in v ? v.responseURL : $.headers.get("X-Request-URL");
|
|
3536
|
+
var ue = "response" in v ? v.response : v.responseText;
|
|
3537
|
+
E(new L(ue, $));
|
|
3538
|
+
}, v.onerror = function() {
|
|
3539
|
+
N(new TypeError("Network request failed"));
|
|
3540
|
+
}, v.ontimeout = function() {
|
|
3541
|
+
N(new TypeError("Network request failed"));
|
|
3542
|
+
}, v.onabort = function() {
|
|
3543
|
+
N(new a.DOMException("Aborted", "AbortError"));
|
|
3544
|
+
}, v.open(O.method, O.url, !0), O.credentials === "include" ? v.withCredentials = !0 : O.credentials === "omit" && (v.withCredentials = !1), "responseType" in v && c.blob && (v.responseType = "blob"), O.headers.forEach(function($, ue) {
|
|
3545
|
+
v.setRequestHeader(ue, $);
|
|
3546
|
+
}), O.signal && (O.signal.addEventListener("abort", X), v.onreadystatechange = function() {
|
|
3547
|
+
v.readyState === 4 && O.signal.removeEventListener("abort", X);
|
|
3548
|
+
}), v.send(typeof O._bodyInit > "u" ? null : O._bodyInit);
|
|
3452
3549
|
});
|
|
3453
3550
|
}
|
|
3454
3551
|
return oe.polyfill = !0, s.fetch || (s.fetch = oe, s.Headers = g, s.Request = w, s.Response = L), a.Headers = g, a.Request = w, a.Response = L, a.fetch = oe, Object.defineProperty(a, "__esModule", { value: !0 }), a;
|
|
@@ -3458,34 +3555,34 @@ var Ce = { exports: {} };
|
|
|
3458
3555
|
t = i.fetch, t.default = i.fetch, t.fetch = i.fetch, t.Headers = i.Headers, t.Request = i.Request, t.Response = i.Response, e.exports = t;
|
|
3459
3556
|
})(Ce, Ce.exports);
|
|
3460
3557
|
var re = Ce.exports;
|
|
3461
|
-
const te = /* @__PURE__ */
|
|
3558
|
+
const te = /* @__PURE__ */ vn(re), In = /* @__PURE__ */ ze({
|
|
3462
3559
|
__proto__: null,
|
|
3463
3560
|
default: te
|
|
3464
|
-
}, [re]),
|
|
3561
|
+
}, [re]), B = (e) => {
|
|
3465
3562
|
let t = {};
|
|
3466
|
-
return e && (typeof Headers < "u" && e instanceof Headers ||
|
|
3563
|
+
return e && (typeof Headers < "u" && e instanceof Headers || In && re.Headers && e instanceof re.Headers ? t = gn(e) : Array.isArray(e) ? e.forEach(([n, r]) => {
|
|
3467
3564
|
n && r !== void 0 && (t[n] = r);
|
|
3468
3565
|
}) : t = e), t;
|
|
3469
|
-
},
|
|
3566
|
+
}, Ne = (e) => e.replace(/([\s,]|#[^\n\r]+)+/g, " ").trim(), Tn = (e) => {
|
|
3470
3567
|
if (!Array.isArray(e.query)) {
|
|
3471
|
-
const r = e, i = [`query=${encodeURIComponent(
|
|
3568
|
+
const r = e, i = [`query=${encodeURIComponent(Ne(r.query))}`];
|
|
3472
3569
|
return e.variables && i.push(`variables=${encodeURIComponent(r.jsonSerializer.stringify(r.variables))}`), r.operationName && i.push(`operationName=${encodeURIComponent(r.operationName)}`), i.join("&");
|
|
3473
3570
|
}
|
|
3474
3571
|
if (typeof e.variables < "u" && !Array.isArray(e.variables))
|
|
3475
3572
|
throw new Error("Cannot create query with given variable type, array expected");
|
|
3476
3573
|
const t = e, n = e.query.reduce((r, i, s) => (r.push({
|
|
3477
|
-
query:
|
|
3574
|
+
query: Ne(i),
|
|
3478
3575
|
variables: t.variables ? t.jsonSerializer.stringify(t.variables[s]) : void 0
|
|
3479
3576
|
}), r), []);
|
|
3480
3577
|
return `query=${encodeURIComponent(t.jsonSerializer.stringify(n))}`;
|
|
3481
|
-
},
|
|
3578
|
+
}, xn = (e) => async (t) => {
|
|
3482
3579
|
const { url: n, query: r, variables: i, operationName: s, fetch: a, fetchOptions: c, middleware: p } = t, h = { ...t.headers };
|
|
3483
|
-
let
|
|
3484
|
-
e === "POST" ? (C =
|
|
3580
|
+
let f = "", C;
|
|
3581
|
+
e === "POST" ? (C = Rn(r, i, s, c.jsonSerializer), typeof C == "string" && (h["Content-Type"] = "application/json")) : f = Tn({
|
|
3485
3582
|
query: r,
|
|
3486
3583
|
variables: i,
|
|
3487
3584
|
operationName: s,
|
|
3488
|
-
jsonSerializer: c.jsonSerializer ??
|
|
3585
|
+
jsonSerializer: c.jsonSerializer ?? Ae
|
|
3489
3586
|
});
|
|
3490
3587
|
const y = {
|
|
3491
3588
|
method: e,
|
|
@@ -3493,71 +3590,71 @@ const te = /* @__PURE__ */ yn(re), En = /* @__PURE__ */ ze({
|
|
|
3493
3590
|
body: C,
|
|
3494
3591
|
...c
|
|
3495
3592
|
};
|
|
3496
|
-
let
|
|
3593
|
+
let I = n, g = y;
|
|
3497
3594
|
if (p) {
|
|
3498
|
-
const
|
|
3499
|
-
|
|
3595
|
+
const T = await Promise.resolve(p({ ...y, url: n, operationName: s, variables: i })), { url: P, ...D } = T;
|
|
3596
|
+
I = P, g = D;
|
|
3500
3597
|
}
|
|
3501
|
-
return
|
|
3598
|
+
return f && (I = `${I}?${f}`), await a(I, g);
|
|
3502
3599
|
};
|
|
3503
|
-
class
|
|
3600
|
+
class Sn {
|
|
3504
3601
|
constructor(t, n = {}) {
|
|
3505
3602
|
this.url = t, this.requestConfig = n, this.rawRequest = async (...r) => {
|
|
3506
|
-
const [i, s, a] = r, c =
|
|
3507
|
-
c.signal !== void 0 && (
|
|
3508
|
-
const { operationName:
|
|
3509
|
-
return
|
|
3603
|
+
const [i, s, a] = r, c = yn(i, s, a), { headers: p, fetch: h = te, method: f = "POST", requestMiddleware: C, responseMiddleware: y, ...I } = this.requestConfig, { url: g } = this;
|
|
3604
|
+
c.signal !== void 0 && (I.signal = c.signal);
|
|
3605
|
+
const { operationName: T } = le(c.query);
|
|
3606
|
+
return de({
|
|
3510
3607
|
url: g,
|
|
3511
3608
|
query: c.query,
|
|
3512
3609
|
variables: c.variables,
|
|
3513
3610
|
headers: {
|
|
3514
|
-
...
|
|
3515
|
-
...
|
|
3611
|
+
...B(pe(p)),
|
|
3612
|
+
...B(c.requestHeaders)
|
|
3516
3613
|
},
|
|
3517
|
-
operationName:
|
|
3614
|
+
operationName: T,
|
|
3518
3615
|
fetch: h,
|
|
3519
|
-
method:
|
|
3520
|
-
fetchOptions:
|
|
3616
|
+
method: f,
|
|
3617
|
+
fetchOptions: I,
|
|
3521
3618
|
middleware: C
|
|
3522
|
-
}).then((
|
|
3523
|
-
throw y && y(
|
|
3619
|
+
}).then((P) => (y && y(P), P)).catch((P) => {
|
|
3620
|
+
throw y && y(P), P;
|
|
3524
3621
|
});
|
|
3525
3622
|
};
|
|
3526
3623
|
}
|
|
3527
3624
|
async request(t, ...n) {
|
|
3528
|
-
const [r, i] = n, s =
|
|
3625
|
+
const [r, i] = n, s = Cn(t, r, i), { headers: a, fetch: c = te, method: p = "POST", requestMiddleware: h, responseMiddleware: f, ...C } = this.requestConfig, { url: y } = this;
|
|
3529
3626
|
s.signal !== void 0 && (C.signal = s.signal);
|
|
3530
|
-
const { query:
|
|
3531
|
-
return
|
|
3627
|
+
const { query: I, operationName: g } = le(s.document);
|
|
3628
|
+
return de({
|
|
3532
3629
|
url: y,
|
|
3533
|
-
query:
|
|
3630
|
+
query: I,
|
|
3534
3631
|
variables: s.variables,
|
|
3535
3632
|
headers: {
|
|
3536
|
-
...
|
|
3537
|
-
...
|
|
3633
|
+
...B(pe(a)),
|
|
3634
|
+
...B(s.requestHeaders)
|
|
3538
3635
|
},
|
|
3539
3636
|
operationName: g,
|
|
3540
3637
|
fetch: c,
|
|
3541
3638
|
method: p,
|
|
3542
3639
|
fetchOptions: C,
|
|
3543
3640
|
middleware: h
|
|
3544
|
-
}).then((
|
|
3545
|
-
throw
|
|
3641
|
+
}).then((T) => (f && f(T), T.data)).catch((T) => {
|
|
3642
|
+
throw f && f(T), T;
|
|
3546
3643
|
});
|
|
3547
3644
|
}
|
|
3548
3645
|
// prettier-ignore
|
|
3549
3646
|
batchRequests(t, n) {
|
|
3550
|
-
const r =
|
|
3647
|
+
const r = En(t, n), { headers: i, ...s } = this.requestConfig;
|
|
3551
3648
|
r.signal !== void 0 && (s.signal = r.signal);
|
|
3552
|
-
const a = r.documents.map(({ document: p }) =>
|
|
3553
|
-
return
|
|
3649
|
+
const a = r.documents.map(({ document: p }) => le(p).query), c = r.documents.map(({ variables: p }) => p);
|
|
3650
|
+
return de({
|
|
3554
3651
|
url: this.url,
|
|
3555
3652
|
query: a,
|
|
3556
3653
|
// @ts-expect-error TODO reconcile batch variables into system.
|
|
3557
3654
|
variables: c,
|
|
3558
3655
|
headers: {
|
|
3559
|
-
...
|
|
3560
|
-
...
|
|
3656
|
+
...B(pe(i)),
|
|
3657
|
+
...B(r.requestHeaders)
|
|
3561
3658
|
},
|
|
3562
3659
|
operationName: void 0,
|
|
3563
3660
|
fetch: this.requestConfig.fetch ?? te,
|
|
@@ -3585,45 +3682,45 @@ class Tn {
|
|
|
3585
3682
|
return this.url = t, this;
|
|
3586
3683
|
}
|
|
3587
3684
|
}
|
|
3588
|
-
const
|
|
3589
|
-
const { query: t, variables: n, fetchOptions: r } = e, i =
|
|
3685
|
+
const de = async (e) => {
|
|
3686
|
+
const { query: t, variables: n, fetchOptions: r } = e, i = xn(fn(e.method ?? "post")), s = Array.isArray(e.query), a = await i(e), c = await On(a, r.jsonSerializer ?? Ae), p = Array.isArray(c) ? !c.some(({ data: f }) => !f) : !!c.data, h = Array.isArray(c) || !c.errors || Array.isArray(c.errors) && !c.errors.length || r.errorPolicy === "all" || r.errorPolicy === "ignore";
|
|
3590
3687
|
if (a.ok && h && p) {
|
|
3591
|
-
const { errors:
|
|
3688
|
+
const { errors: f, ...C } = (Array.isArray(c), c), y = r.errorPolicy === "ignore" ? C : c;
|
|
3592
3689
|
return {
|
|
3593
3690
|
...s ? { data: y } : y,
|
|
3594
3691
|
headers: a.headers,
|
|
3595
3692
|
status: a.status
|
|
3596
3693
|
};
|
|
3597
3694
|
} else {
|
|
3598
|
-
const
|
|
3695
|
+
const f = typeof c == "string" ? {
|
|
3599
3696
|
error: c
|
|
3600
3697
|
} : c;
|
|
3601
3698
|
throw new H(
|
|
3602
3699
|
// @ts-expect-error TODO
|
|
3603
|
-
{ ...
|
|
3700
|
+
{ ...f, status: a.status, headers: a.headers },
|
|
3604
3701
|
{ query: t, variables: n }
|
|
3605
3702
|
);
|
|
3606
3703
|
}
|
|
3607
|
-
},
|
|
3608
|
-
const i = r ??
|
|
3704
|
+
}, Rn = (e, t, n, r) => {
|
|
3705
|
+
const i = r ?? Ae;
|
|
3609
3706
|
if (!Array.isArray(e))
|
|
3610
3707
|
return i.stringify({ query: e, variables: t, operationName: n });
|
|
3611
3708
|
if (typeof t < "u" && !Array.isArray(t))
|
|
3612
3709
|
throw new Error("Cannot create request body with given variable type, array expected");
|
|
3613
3710
|
const s = e.reduce((a, c, p) => (a.push({ query: c, variables: t ? t[p] : void 0 }), a), []);
|
|
3614
3711
|
return i.stringify(s);
|
|
3615
|
-
},
|
|
3712
|
+
}, On = async (e, t) => {
|
|
3616
3713
|
let n;
|
|
3617
3714
|
return e.headers.forEach((r, i) => {
|
|
3618
3715
|
i.toLowerCase() === "content-type" && (n = r);
|
|
3619
3716
|
}), n && (n.toLowerCase().startsWith("application/json") || n.toLowerCase().startsWith("application/graphql+json") || n.toLowerCase().startsWith("application/graphql-response+json")) ? t.parse(await e.text()) : e.text();
|
|
3620
3717
|
}, pe = (e) => typeof e == "function" ? e() : e;
|
|
3621
|
-
var
|
|
3622
|
-
class
|
|
3718
|
+
var Nn = /* @__PURE__ */ ((e) => (e.Eur = "EUR", e.Jpy = "JPY", e.Usd = "USD", e))(Nn || {}), Pn = /* @__PURE__ */ ((e) => (e.Retail = "RETAIL", e.Warehouse = "WAREHOUSE", e))(Pn || {});
|
|
3719
|
+
class bn {
|
|
3623
3720
|
constructor(t) {
|
|
3624
|
-
|
|
3625
|
-
this.api =
|
|
3626
|
-
new
|
|
3721
|
+
ve(this, "api");
|
|
3722
|
+
this.api = mn(
|
|
3723
|
+
new Sn(`${t}/apps/sq-api`, {
|
|
3627
3724
|
headers: {
|
|
3628
3725
|
"X-SQ-CLIENT": "ShopifyAppProxy"
|
|
3629
3726
|
}
|
|
@@ -4129,9 +4226,105 @@ class xn {
|
|
|
4129
4226
|
pageInfo: s.purchasingCustomer.mileChangeActivities.pageInfo
|
|
4130
4227
|
} : null;
|
|
4131
4228
|
}
|
|
4229
|
+
/**
|
|
4230
|
+
* getMileItems は顧客が利用可能なマイル交換商品の一覧を返します。
|
|
4231
|
+
*
|
|
4232
|
+
* @param {number} [first] 取得してくる個数。デフォルトは250。
|
|
4233
|
+
* @param {string} [after] ページングの値。指定しない場合先頭から取得してくる。
|
|
4234
|
+
* @param {boolean} [isReverse] 並び順。デフォルトはfalse。
|
|
4235
|
+
* @param {ShopifyMileItemSortKey} [sortKeys] ソートキー。デフォルトはCREATED_AT。
|
|
4236
|
+
*/
|
|
4237
|
+
async getMileItems(t, n, r, i) {
|
|
4238
|
+
const s = await this.api.GetMileItems({
|
|
4239
|
+
first: t,
|
|
4240
|
+
after: n,
|
|
4241
|
+
isReverse: r,
|
|
4242
|
+
sortKeys: i
|
|
4243
|
+
});
|
|
4244
|
+
return s.mileItems ? {
|
|
4245
|
+
nodes: s.mileItems.nodes.map((a) => ({
|
|
4246
|
+
id: a.id,
|
|
4247
|
+
title: a.title,
|
|
4248
|
+
description: a.description,
|
|
4249
|
+
miles: a.miles,
|
|
4250
|
+
sku: a.sku,
|
|
4251
|
+
isActive: a.isActive,
|
|
4252
|
+
isScheduled: a.isScheduled,
|
|
4253
|
+
customerExchangeable: a.customerExchangeable,
|
|
4254
|
+
startsAt: new Date(a.startsAt),
|
|
4255
|
+
endsAt: a.endsAt ? new Date(a.endsAt) : void 0
|
|
4256
|
+
})),
|
|
4257
|
+
pageInfo: s.mileItems.pageInfo
|
|
4258
|
+
} : null;
|
|
4259
|
+
}
|
|
4260
|
+
/**
|
|
4261
|
+
* getMileOrders は顧客のマイル交換履歴の一覧を返します。
|
|
4262
|
+
*
|
|
4263
|
+
* @param {number} [first] 取得してくる個数。デフォルトは250。
|
|
4264
|
+
* @param {string} [after] ページングの値。指定しない場合先頭から取得してくる。
|
|
4265
|
+
* @param {boolean} [isReverse] 並び順。デフォルトはfalse。
|
|
4266
|
+
* @param {MileOrderSortKey} [sortKeys] ソートキー。デフォルトはCREATED_AT。
|
|
4267
|
+
*/
|
|
4268
|
+
async getMileOrders(t, n, r, i) {
|
|
4269
|
+
const s = await this.api.GetMileOrders({
|
|
4270
|
+
first: t,
|
|
4271
|
+
after: n,
|
|
4272
|
+
isReverse: r,
|
|
4273
|
+
sortKeys: i
|
|
4274
|
+
});
|
|
4275
|
+
return s.purchasingCustomer ? {
|
|
4276
|
+
nodes: s.purchasingCustomer.mileOrders.nodes.map((a) => ({
|
|
4277
|
+
id: a.id,
|
|
4278
|
+
mileItem: {
|
|
4279
|
+
id: a.mileItem.id,
|
|
4280
|
+
title: a.mileItem.title,
|
|
4281
|
+
description: a.mileItem.description,
|
|
4282
|
+
miles: a.mileItem.miles,
|
|
4283
|
+
sku: a.mileItem.sku,
|
|
4284
|
+
isActive: a.mileItem.isActive,
|
|
4285
|
+
isScheduled: a.mileItem.isScheduled,
|
|
4286
|
+
customerExchangeable: a.mileItem.customerExchangeable,
|
|
4287
|
+
startsAt: new Date(a.mileItem.startsAt),
|
|
4288
|
+
endsAt: a.mileItem.endsAt ? new Date(a.mileItem.endsAt) : void 0
|
|
4289
|
+
},
|
|
4290
|
+
miles: a.miles,
|
|
4291
|
+
exchangedAt: new Date(a.exchangedAt),
|
|
4292
|
+
isCancelled: a.isCancelled
|
|
4293
|
+
})),
|
|
4294
|
+
pageInfo: s.purchasingCustomer.mileOrders.pageInfo
|
|
4295
|
+
} : null;
|
|
4296
|
+
}
|
|
4297
|
+
/**
|
|
4298
|
+
* mileItemExchange は指定したマイル商品を交換します。
|
|
4299
|
+
*
|
|
4300
|
+
* @param {mileItemID} mileItemID 交換したいマイル商品のID。
|
|
4301
|
+
*/
|
|
4302
|
+
async mileItemExchange(t) {
|
|
4303
|
+
const n = await this.api.MileItemExchange({
|
|
4304
|
+
mileItemID: t
|
|
4305
|
+
});
|
|
4306
|
+
return n.mileItemExchange ? {
|
|
4307
|
+
id: n.mileItemExchange.mileOrder.id,
|
|
4308
|
+
mileItem: {
|
|
4309
|
+
id: n.mileItemExchange.mileOrder.mileItem.id,
|
|
4310
|
+
title: n.mileItemExchange.mileOrder.mileItem.title,
|
|
4311
|
+
description: n.mileItemExchange.mileOrder.mileItem.description,
|
|
4312
|
+
miles: n.mileItemExchange.mileOrder.mileItem.miles,
|
|
4313
|
+
sku: n.mileItemExchange.mileOrder.mileItem.sku,
|
|
4314
|
+
isActive: n.mileItemExchange.mileOrder.mileItem.isActive,
|
|
4315
|
+
isScheduled: n.mileItemExchange.mileOrder.mileItem.isScheduled,
|
|
4316
|
+
customerExchangeable: n.mileItemExchange.mileOrder.mileItem.customerExchangeable,
|
|
4317
|
+
startsAt: new Date(n.mileItemExchange.mileOrder.mileItem.startsAt),
|
|
4318
|
+
endsAt: n.mileItemExchange.mileOrder.mileItem.endsAt ? new Date(n.mileItemExchange.mileOrder.mileItem.endsAt) : void 0
|
|
4319
|
+
},
|
|
4320
|
+
miles: n.mileItemExchange.mileOrder.miles,
|
|
4321
|
+
exchangedAt: new Date(n.mileItemExchange.mileOrder.exchangedAt),
|
|
4322
|
+
isCancelled: n.mileItemExchange.mileOrder.isCancelled
|
|
4323
|
+
} : null;
|
|
4324
|
+
}
|
|
4132
4325
|
}
|
|
4133
4326
|
export {
|
|
4134
|
-
|
|
4135
|
-
|
|
4136
|
-
|
|
4327
|
+
Nn as CurrencyCode,
|
|
4328
|
+
Pn as LocationType,
|
|
4329
|
+
bn as SDK
|
|
4137
4330
|
};
|