@expofp/loader 1.0.100 → 1.0.101
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/bundle/bundle.js +129 -125
- package/dist/bundle/bundle.js.map +1 -1
- package/dist/esm/resolve.js +5 -0
- package/package.json +1 -1
package/dist/bundle/bundle.js
CHANGED
|
@@ -1,185 +1,185 @@
|
|
|
1
|
-
const
|
|
2
|
-
function
|
|
3
|
-
return
|
|
1
|
+
const j = ["1.0.101", "2025-12-24T16:34:33.744Z"];
|
|
2
|
+
function T(n) {
|
|
3
|
+
return n && n.__esModule && Object.prototype.hasOwnProperty.call(n, "default") ? n.default : n;
|
|
4
4
|
}
|
|
5
|
-
var
|
|
6
|
-
function
|
|
7
|
-
if (x) return
|
|
5
|
+
var v = { exports: {} }, A, x;
|
|
6
|
+
function q() {
|
|
7
|
+
if (x) return A;
|
|
8
8
|
x = 1;
|
|
9
|
-
var
|
|
10
|
-
|
|
9
|
+
var n = 1e3, r = n * 60, c = r * 60, e = c * 24, a = e * 7, l = e * 365.25;
|
|
10
|
+
A = function(s, t) {
|
|
11
11
|
t = t || {};
|
|
12
|
-
var
|
|
13
|
-
if (
|
|
14
|
-
return m(
|
|
15
|
-
if (
|
|
16
|
-
return t.long ? i(
|
|
12
|
+
var o = typeof s;
|
|
13
|
+
if (o === "string" && s.length > 0)
|
|
14
|
+
return m(s);
|
|
15
|
+
if (o === "number" && isFinite(s))
|
|
16
|
+
return t.long ? i(s) : p(s);
|
|
17
17
|
throw new Error(
|
|
18
|
-
"val is not a non-empty string or a valid number. val=" + JSON.stringify(
|
|
18
|
+
"val is not a non-empty string or a valid number. val=" + JSON.stringify(s)
|
|
19
19
|
);
|
|
20
20
|
};
|
|
21
|
-
function m(
|
|
22
|
-
if (
|
|
21
|
+
function m(s) {
|
|
22
|
+
if (s = String(s), !(s.length > 100)) {
|
|
23
23
|
var t = /^(-?(?:\d+)?\.?\d+) *(milliseconds?|msecs?|ms|seconds?|secs?|s|minutes?|mins?|m|hours?|hrs?|h|days?|d|weeks?|w|years?|yrs?|y)?$/i.exec(
|
|
24
|
-
|
|
24
|
+
s
|
|
25
25
|
);
|
|
26
26
|
if (t) {
|
|
27
|
-
var
|
|
27
|
+
var o = parseFloat(t[1]), u = (t[2] || "ms").toLowerCase();
|
|
28
28
|
switch (u) {
|
|
29
29
|
case "years":
|
|
30
30
|
case "year":
|
|
31
31
|
case "yrs":
|
|
32
32
|
case "yr":
|
|
33
33
|
case "y":
|
|
34
|
-
return
|
|
34
|
+
return o * l;
|
|
35
35
|
case "weeks":
|
|
36
36
|
case "week":
|
|
37
37
|
case "w":
|
|
38
|
-
return
|
|
38
|
+
return o * a;
|
|
39
39
|
case "days":
|
|
40
40
|
case "day":
|
|
41
41
|
case "d":
|
|
42
|
-
return
|
|
42
|
+
return o * e;
|
|
43
43
|
case "hours":
|
|
44
44
|
case "hour":
|
|
45
45
|
case "hrs":
|
|
46
46
|
case "hr":
|
|
47
47
|
case "h":
|
|
48
|
-
return
|
|
48
|
+
return o * c;
|
|
49
49
|
case "minutes":
|
|
50
50
|
case "minute":
|
|
51
51
|
case "mins":
|
|
52
52
|
case "min":
|
|
53
53
|
case "m":
|
|
54
|
-
return
|
|
54
|
+
return o * r;
|
|
55
55
|
case "seconds":
|
|
56
56
|
case "second":
|
|
57
57
|
case "secs":
|
|
58
58
|
case "sec":
|
|
59
59
|
case "s":
|
|
60
|
-
return
|
|
60
|
+
return o * n;
|
|
61
61
|
case "milliseconds":
|
|
62
62
|
case "millisecond":
|
|
63
63
|
case "msecs":
|
|
64
64
|
case "msec":
|
|
65
65
|
case "ms":
|
|
66
|
-
return
|
|
66
|
+
return o;
|
|
67
67
|
default:
|
|
68
68
|
return;
|
|
69
69
|
}
|
|
70
70
|
}
|
|
71
71
|
}
|
|
72
72
|
}
|
|
73
|
-
function p(
|
|
74
|
-
var t = Math.abs(
|
|
75
|
-
return t >= e ? Math.round(
|
|
73
|
+
function p(s) {
|
|
74
|
+
var t = Math.abs(s);
|
|
75
|
+
return t >= e ? Math.round(s / e) + "d" : t >= c ? Math.round(s / c) + "h" : t >= r ? Math.round(s / r) + "m" : t >= n ? Math.round(s / n) + "s" : s + "ms";
|
|
76
76
|
}
|
|
77
|
-
function i(
|
|
78
|
-
var t = Math.abs(
|
|
79
|
-
return t >= e ? d(
|
|
77
|
+
function i(s) {
|
|
78
|
+
var t = Math.abs(s);
|
|
79
|
+
return t >= e ? d(s, t, e, "day") : t >= c ? d(s, t, c, "hour") : t >= r ? d(s, t, r, "minute") : t >= n ? d(s, t, n, "second") : s + " ms";
|
|
80
80
|
}
|
|
81
|
-
function d(
|
|
82
|
-
var f = t >=
|
|
83
|
-
return Math.round(
|
|
81
|
+
function d(s, t, o, u) {
|
|
82
|
+
var f = t >= o * 1.5;
|
|
83
|
+
return Math.round(s / o) + " " + u + (f ? "s" : "");
|
|
84
84
|
}
|
|
85
|
-
return
|
|
85
|
+
return A;
|
|
86
86
|
}
|
|
87
|
-
var
|
|
88
|
-
function
|
|
89
|
-
if (
|
|
90
|
-
|
|
91
|
-
function
|
|
92
|
-
e.debug = e, e.default = e, e.coerce = d, e.disable = p, e.enable = l, e.enabled = i, e.humanize =
|
|
87
|
+
var E, S;
|
|
88
|
+
function P() {
|
|
89
|
+
if (S) return E;
|
|
90
|
+
S = 1;
|
|
91
|
+
function n(r) {
|
|
92
|
+
e.debug = e, e.default = e, e.coerce = d, e.disable = p, e.enable = l, e.enabled = i, e.humanize = q(), e.destroy = s, Object.keys(r).forEach((t) => {
|
|
93
93
|
e[t] = r[t];
|
|
94
94
|
}), e.names = [], e.skips = [], e.formatters = {};
|
|
95
95
|
function c(t) {
|
|
96
|
-
let
|
|
96
|
+
let o = 0;
|
|
97
97
|
for (let u = 0; u < t.length; u++)
|
|
98
|
-
|
|
99
|
-
return e.colors[Math.abs(
|
|
98
|
+
o = (o << 5) - o + t.charCodeAt(u), o |= 0;
|
|
99
|
+
return e.colors[Math.abs(o) % e.colors.length];
|
|
100
100
|
}
|
|
101
101
|
e.selectColor = c;
|
|
102
102
|
function e(t) {
|
|
103
|
-
let
|
|
103
|
+
let o, u = null, f, g;
|
|
104
104
|
function C(...h) {
|
|
105
105
|
if (!C.enabled)
|
|
106
106
|
return;
|
|
107
|
-
const w = C,
|
|
108
|
-
w.diff =
|
|
109
|
-
let
|
|
110
|
-
h[0] = h[0].replace(/%([a-zA-Z%])/g, (
|
|
111
|
-
if (
|
|
107
|
+
const w = C, F = Number(/* @__PURE__ */ new Date()), R = F - (o || F);
|
|
108
|
+
w.diff = R, w.prev = o, w.curr = F, o = F, h[0] = e.coerce(h[0]), typeof h[0] != "string" && h.unshift("%O");
|
|
109
|
+
let b = 0;
|
|
110
|
+
h[0] = h[0].replace(/%([a-zA-Z%])/g, (k, M) => {
|
|
111
|
+
if (k === "%%")
|
|
112
112
|
return "%";
|
|
113
|
-
|
|
114
|
-
const _ = e.formatters[
|
|
113
|
+
b++;
|
|
114
|
+
const _ = e.formatters[M];
|
|
115
115
|
if (typeof _ == "function") {
|
|
116
|
-
const
|
|
117
|
-
|
|
116
|
+
const U = h[b];
|
|
117
|
+
k = _.call(w, U), h.splice(b, 1), b--;
|
|
118
118
|
}
|
|
119
|
-
return
|
|
119
|
+
return k;
|
|
120
120
|
}), e.formatArgs.call(w, h), (w.log || e.log).apply(w, h);
|
|
121
121
|
}
|
|
122
122
|
return C.namespace = t, C.useColors = e.useColors(), C.color = e.selectColor(t), C.extend = a, C.destroy = e.destroy, Object.defineProperty(C, "enabled", {
|
|
123
123
|
enumerable: !0,
|
|
124
124
|
configurable: !1,
|
|
125
|
-
get: () => u !== null ? u : (f !== e.namespaces && (f = e.namespaces,
|
|
125
|
+
get: () => u !== null ? u : (f !== e.namespaces && (f = e.namespaces, g = e.enabled(t)), g),
|
|
126
126
|
set: (h) => {
|
|
127
127
|
u = h;
|
|
128
128
|
}
|
|
129
129
|
}), typeof e.init == "function" && e.init(C), C;
|
|
130
130
|
}
|
|
131
|
-
function a(t,
|
|
132
|
-
const u = e(this.namespace + (typeof
|
|
131
|
+
function a(t, o) {
|
|
132
|
+
const u = e(this.namespace + (typeof o > "u" ? ":" : o) + t);
|
|
133
133
|
return u.log = this.log, u;
|
|
134
134
|
}
|
|
135
135
|
function l(t) {
|
|
136
136
|
e.save(t), e.namespaces = t, e.names = [], e.skips = [];
|
|
137
|
-
const
|
|
138
|
-
for (const u of
|
|
137
|
+
const o = (typeof t == "string" ? t : "").trim().replace(/\s+/g, ",").split(",").filter(Boolean);
|
|
138
|
+
for (const u of o)
|
|
139
139
|
u[0] === "-" ? e.skips.push(u.slice(1)) : e.names.push(u);
|
|
140
140
|
}
|
|
141
|
-
function m(t,
|
|
142
|
-
let u = 0, f = 0,
|
|
141
|
+
function m(t, o) {
|
|
142
|
+
let u = 0, f = 0, g = -1, C = 0;
|
|
143
143
|
for (; u < t.length; )
|
|
144
|
-
if (f <
|
|
145
|
-
|
|
146
|
-
else if (
|
|
147
|
-
f =
|
|
144
|
+
if (f < o.length && (o[f] === t[u] || o[f] === "*"))
|
|
145
|
+
o[f] === "*" ? (g = f, C = u, f++) : (u++, f++);
|
|
146
|
+
else if (g !== -1)
|
|
147
|
+
f = g + 1, C++, u = C;
|
|
148
148
|
else
|
|
149
149
|
return !1;
|
|
150
|
-
for (; f <
|
|
150
|
+
for (; f < o.length && o[f] === "*"; )
|
|
151
151
|
f++;
|
|
152
|
-
return f ===
|
|
152
|
+
return f === o.length;
|
|
153
153
|
}
|
|
154
154
|
function p() {
|
|
155
155
|
const t = [
|
|
156
156
|
...e.names,
|
|
157
|
-
...e.skips.map((
|
|
157
|
+
...e.skips.map((o) => "-" + o)
|
|
158
158
|
].join(",");
|
|
159
159
|
return e.enable(""), t;
|
|
160
160
|
}
|
|
161
161
|
function i(t) {
|
|
162
|
-
for (const
|
|
163
|
-
if (m(t,
|
|
162
|
+
for (const o of e.skips)
|
|
163
|
+
if (m(t, o))
|
|
164
164
|
return !1;
|
|
165
|
-
for (const
|
|
166
|
-
if (m(t,
|
|
165
|
+
for (const o of e.names)
|
|
166
|
+
if (m(t, o))
|
|
167
167
|
return !0;
|
|
168
168
|
return !1;
|
|
169
169
|
}
|
|
170
170
|
function d(t) {
|
|
171
171
|
return t instanceof Error ? t.stack || t.message : t;
|
|
172
172
|
}
|
|
173
|
-
function
|
|
173
|
+
function s() {
|
|
174
174
|
console.warn("Instance method `debug.destroy()` is deprecated and no longer does anything. It will be removed in the next major version of `debug`.");
|
|
175
175
|
}
|
|
176
176
|
return e.enable(e.load()), e;
|
|
177
177
|
}
|
|
178
|
-
return
|
|
178
|
+
return E = n, E;
|
|
179
179
|
}
|
|
180
|
-
var
|
|
180
|
+
var J;
|
|
181
181
|
function z() {
|
|
182
|
-
return
|
|
182
|
+
return J || (J = 1, (function(n, r) {
|
|
183
183
|
r.formatArgs = e, r.save = a, r.load = l, r.useColors = c, r.storage = m(), r.destroy = /* @__PURE__ */ (() => {
|
|
184
184
|
let i = !1;
|
|
185
185
|
return () => {
|
|
@@ -276,13 +276,13 @@ function z() {
|
|
|
276
276
|
typeof navigator < "u" && navigator.userAgent && navigator.userAgent.toLowerCase().match(/applewebkit\/(\d+)/);
|
|
277
277
|
}
|
|
278
278
|
function e(i) {
|
|
279
|
-
if (i[0] = (this.useColors ? "%c" : "") + this.namespace + (this.useColors ? " %c" : " ") + i[0] + (this.useColors ? "%c " : " ") + "+" +
|
|
279
|
+
if (i[0] = (this.useColors ? "%c" : "") + this.namespace + (this.useColors ? " %c" : " ") + i[0] + (this.useColors ? "%c " : " ") + "+" + n.exports.humanize(this.diff), !this.useColors)
|
|
280
280
|
return;
|
|
281
281
|
const d = "color: " + this.color;
|
|
282
282
|
i.splice(1, 0, d, "color: inherit");
|
|
283
|
-
let
|
|
284
|
-
i[0].replace(/%[a-zA-Z%]/g, (
|
|
285
|
-
|
|
283
|
+
let s = 0, t = 0;
|
|
284
|
+
i[0].replace(/%[a-zA-Z%]/g, (o) => {
|
|
285
|
+
o !== "%%" && (s++, o === "%c" && (t = s));
|
|
286
286
|
}), i.splice(t, 0, d);
|
|
287
287
|
}
|
|
288
288
|
r.log = console.debug || console.log || (() => {
|
|
@@ -307,8 +307,8 @@ function z() {
|
|
|
307
307
|
} catch {
|
|
308
308
|
}
|
|
309
309
|
}
|
|
310
|
-
|
|
311
|
-
const { formatters: p } =
|
|
310
|
+
n.exports = P()(r);
|
|
311
|
+
const { formatters: p } = n.exports;
|
|
312
312
|
p.j = function(i) {
|
|
313
313
|
try {
|
|
314
314
|
return JSON.stringify(i);
|
|
@@ -316,41 +316,41 @@ function z() {
|
|
|
316
316
|
return "[UnexpectedJSONParseError]: " + d.message;
|
|
317
317
|
}
|
|
318
318
|
};
|
|
319
|
-
})(
|
|
319
|
+
})(v, v.exports)), v.exports;
|
|
320
320
|
}
|
|
321
321
|
var B = z();
|
|
322
|
-
const
|
|
323
|
-
let
|
|
324
|
-
const
|
|
325
|
-
return
|
|
322
|
+
const N = /* @__PURE__ */ T(B);
|
|
323
|
+
let I;
|
|
324
|
+
const L = async function(...r) {
|
|
325
|
+
return I || (typeof window < "u" && typeof document < "u" ? I = window.fetch.bind(window) : I = (await import("./fetch-retry.umd-g1itNdNw.js").then((a) => a.f)).default(globalThis.fetch)), I.apply(null, r);
|
|
326
326
|
};
|
|
327
|
-
async function D(
|
|
327
|
+
async function D(n) {
|
|
328
328
|
if (typeof window < "u" && typeof document < "u")
|
|
329
329
|
return await import(
|
|
330
330
|
/* @vite-ignore */
|
|
331
|
-
|
|
331
|
+
n
|
|
332
332
|
);
|
|
333
333
|
{
|
|
334
334
|
const { nodeImportHttpRuntime: r } = await import("./ImportHttpRuntime.node-B85BNHJG.js");
|
|
335
|
-
return r(
|
|
335
|
+
return r(n, { fetchImpl: L });
|
|
336
336
|
}
|
|
337
337
|
}
|
|
338
|
-
const
|
|
339
|
-
async function
|
|
338
|
+
const y = N("efp:loader:resolve");
|
|
339
|
+
async function $(n, r = {}) {
|
|
340
340
|
var l, m, p;
|
|
341
341
|
const c = (l = r.maxHops) != null ? l : 32, e = /* @__PURE__ */ new Set();
|
|
342
|
-
let a =
|
|
342
|
+
let a = n;
|
|
343
343
|
for (let i = 0; i < c; i++) {
|
|
344
344
|
if (a && typeof a == "object" && "$ref" in a) {
|
|
345
|
-
const
|
|
346
|
-
if (typeof
|
|
347
|
-
throw new Error(`$ref must be a string, got: ${typeof
|
|
348
|
-
if (H(
|
|
349
|
-
if (e.has(
|
|
350
|
-
throw new Error(`Circular $ref detected at: ${
|
|
351
|
-
e.add(
|
|
352
|
-
const t = await W(
|
|
353
|
-
(p = r.onHop) == null || p.call(r, { hop: i, ref:
|
|
345
|
+
const s = a.$ref;
|
|
346
|
+
if (typeof s != "string")
|
|
347
|
+
throw new Error(`$ref must be a string, got: ${typeof s}`);
|
|
348
|
+
if (H(s)) {
|
|
349
|
+
if (e.has(s))
|
|
350
|
+
throw new Error(`Circular $ref detected at: ${s}`);
|
|
351
|
+
e.add(s), y("Loading JSON ref:", s), (m = r.fetchCallback) == null || m.call(r, s);
|
|
352
|
+
const t = await W(s, r.signal);
|
|
353
|
+
(p = r.onHop) == null || p.call(r, { hop: i, ref: s, via: t.__via }), a = t.value;
|
|
354
354
|
continue;
|
|
355
355
|
}
|
|
356
356
|
return a;
|
|
@@ -359,13 +359,15 @@ async function M(s, r = {}) {
|
|
|
359
359
|
}
|
|
360
360
|
throw new Error(`Too many ref hops (>${c}). Possible loop or unexpectedly deep chain.`);
|
|
361
361
|
}
|
|
362
|
-
function H(
|
|
363
|
-
return
|
|
362
|
+
function H(n) {
|
|
363
|
+
return n.startsWith("http://") || n.startsWith("https://");
|
|
364
364
|
}
|
|
365
|
-
async function W(
|
|
366
|
-
|
|
365
|
+
async function W(n, r) {
|
|
366
|
+
y("Loading JSON from URL:", n);
|
|
367
|
+
const c = await G(n);
|
|
367
368
|
if (c.ok) return { value: c.value, __via: "import" };
|
|
368
|
-
|
|
369
|
+
y("Importing JSON failed, falling back to fetch():", n);
|
|
370
|
+
const e = await L(n, {
|
|
369
371
|
method: "GET",
|
|
370
372
|
signal: r,
|
|
371
373
|
headers: {
|
|
@@ -374,7 +376,7 @@ async function W(s, r) {
|
|
|
374
376
|
}
|
|
375
377
|
});
|
|
376
378
|
if (!e.ok)
|
|
377
|
-
throw new Error(`Failed to fetch JSON ref: ${
|
|
379
|
+
throw new Error(`Failed to fetch JSON ref: ${n} (${e.status} ${e.statusText})`);
|
|
378
380
|
const a = e.headers.get("content-type") || "";
|
|
379
381
|
if (a.includes("application/json") || a.includes("+json"))
|
|
380
382
|
return { value: await e.json(), __via: "fetch" };
|
|
@@ -385,46 +387,48 @@ async function W(s, r) {
|
|
|
385
387
|
return { value: l, __via: "fetch" };
|
|
386
388
|
}
|
|
387
389
|
}
|
|
388
|
-
async function G(
|
|
390
|
+
async function G(n) {
|
|
389
391
|
var r, c;
|
|
390
392
|
try {
|
|
393
|
+
y("Trying to import JSON via import():", n);
|
|
391
394
|
const e = await import(
|
|
392
395
|
/* @vite-ignore */
|
|
393
|
-
|
|
396
|
+
n
|
|
394
397
|
);
|
|
395
|
-
return
|
|
398
|
+
return y("Imported JSON via import():", n), { ok: !0, value: (r = e == null ? void 0 : e.default) != null ? r : e };
|
|
396
399
|
} catch (e) {
|
|
397
400
|
try {
|
|
401
|
+
y("Trying to import JSON via import() with assert:", n);
|
|
398
402
|
const a = await import(
|
|
399
403
|
/* @vite-ignore */
|
|
400
|
-
|
|
404
|
+
n
|
|
401
405
|
);
|
|
402
|
-
return { ok: !0, value: (c = a == null ? void 0 : a.default) != null ? c : a };
|
|
406
|
+
return y("Imported JSON via import() with assert:", n), { ok: !0, value: (c = a == null ? void 0 : a.default) != null ? c : a };
|
|
403
407
|
} catch (a) {
|
|
404
408
|
return { ok: !1, error: a != null ? a : e };
|
|
405
409
|
}
|
|
406
410
|
}
|
|
407
411
|
}
|
|
408
|
-
const
|
|
409
|
-
typeof
|
|
410
|
-
async function Z(
|
|
411
|
-
let c = await
|
|
412
|
+
const O = N("efp:loader");
|
|
413
|
+
typeof j < "u" ? O("Initialized", { version: j[0], builtAt: j[1] }) : O("Initialized");
|
|
414
|
+
async function Z(n, r) {
|
|
415
|
+
let c = await $(n, {
|
|
412
416
|
fetchCallback: r == null ? void 0 : r.fetchCallback
|
|
413
417
|
}), e;
|
|
414
|
-
if (typeof c == "string" ? e = c : typeof c == "object" && "runtimeUrl" in c && (e = await
|
|
418
|
+
if (typeof c == "string" ? e = c : typeof c == "object" && "runtimeUrl" in c && (e = await $(c.runtimeUrl, {
|
|
415
419
|
fetchCallback: r == null ? void 0 : r.fetchCallback
|
|
416
420
|
})), e === void 0)
|
|
417
421
|
throw new Error(
|
|
418
422
|
"Could not determine runtime URL. It must be resolvable to a string or to a manifest with a runtimeUrl property."
|
|
419
423
|
);
|
|
420
|
-
if (
|
|
424
|
+
if (O("Loading runtime:", e), typeof e != "string")
|
|
421
425
|
throw new Error("Runtime URL must be a string");
|
|
422
426
|
return { ...await D(e), meta: { runtimeUrl: e } };
|
|
423
427
|
}
|
|
424
428
|
const K = new Proxy(
|
|
425
429
|
{},
|
|
426
430
|
{
|
|
427
|
-
get: (
|
|
431
|
+
get: (n, r) => async (...c) => {
|
|
428
432
|
const e = c[0];
|
|
429
433
|
if (e == null || typeof e != "object")
|
|
430
434
|
throw new Error(`First argument must be a manifest object, got: ${typeof e}`);
|
|
@@ -435,13 +439,13 @@ const K = new Proxy(
|
|
|
435
439
|
}
|
|
436
440
|
}
|
|
437
441
|
);
|
|
438
|
-
async function V(
|
|
439
|
-
return K.load(
|
|
442
|
+
async function V(n, ...r) {
|
|
443
|
+
return K.load(n, ...r);
|
|
440
444
|
}
|
|
441
445
|
export {
|
|
442
|
-
|
|
446
|
+
N as d,
|
|
443
447
|
K as default,
|
|
444
|
-
|
|
448
|
+
T as g,
|
|
445
449
|
V as load,
|
|
446
450
|
Z as loadApi
|
|
447
451
|
};
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"bundle.js","sources":["../../node_modules/.pnpm/ms@2.1.3/node_modules/ms/index.js","../../node_modules/.pnpm/debug@4.4.3/node_modules/debug/src/common.js","../../node_modules/.pnpm/debug@4.4.3/node_modules/debug/src/browser.js","../../src/fetch.ts","../../src/importHttpRuntime.ts","../../src/resolve.ts","../../src/index.ts"],"sourcesContent":["/**\n * Helpers.\n */\n\nvar s = 1000;\nvar m = s * 60;\nvar h = m * 60;\nvar d = h * 24;\nvar w = d * 7;\nvar y = d * 365.25;\n\n/**\n * Parse or format the given `val`.\n *\n * Options:\n *\n * - `long` verbose formatting [false]\n *\n * @param {String|Number} val\n * @param {Object} [options]\n * @throws {Error} throw an error if val is not a non-empty string or a number\n * @return {String|Number}\n * @api public\n */\n\nmodule.exports = function (val, options) {\n options = options || {};\n var type = typeof val;\n if (type === 'string' && val.length > 0) {\n return parse(val);\n } else if (type === 'number' && isFinite(val)) {\n return options.long ? fmtLong(val) : fmtShort(val);\n }\n throw new Error(\n 'val is not a non-empty string or a valid number. val=' +\n JSON.stringify(val)\n );\n};\n\n/**\n * Parse the given `str` and return milliseconds.\n *\n * @param {String} str\n * @return {Number}\n * @api private\n */\n\nfunction parse(str) {\n str = String(str);\n if (str.length > 100) {\n return;\n }\n var match = /^(-?(?:\\d+)?\\.?\\d+) *(milliseconds?|msecs?|ms|seconds?|secs?|s|minutes?|mins?|m|hours?|hrs?|h|days?|d|weeks?|w|years?|yrs?|y)?$/i.exec(\n str\n );\n if (!match) {\n return;\n }\n var n = parseFloat(match[1]);\n var type = (match[2] || 'ms').toLowerCase();\n switch (type) {\n case 'years':\n case 'year':\n case 'yrs':\n case 'yr':\n case 'y':\n return n * y;\n case 'weeks':\n case 'week':\n case 'w':\n return n * w;\n case 'days':\n case 'day':\n case 'd':\n return n * d;\n case 'hours':\n case 'hour':\n case 'hrs':\n case 'hr':\n case 'h':\n return n * h;\n case 'minutes':\n case 'minute':\n case 'mins':\n case 'min':\n case 'm':\n return n * m;\n case 'seconds':\n case 'second':\n case 'secs':\n case 'sec':\n case 's':\n return n * s;\n case 'milliseconds':\n case 'millisecond':\n case 'msecs':\n case 'msec':\n case 'ms':\n return n;\n default:\n return undefined;\n }\n}\n\n/**\n * Short format for `ms`.\n *\n * @param {Number} ms\n * @return {String}\n * @api private\n */\n\nfunction fmtShort(ms) {\n var msAbs = Math.abs(ms);\n if (msAbs >= d) {\n return Math.round(ms / d) + 'd';\n }\n if (msAbs >= h) {\n return Math.round(ms / h) + 'h';\n }\n if (msAbs >= m) {\n return Math.round(ms / m) + 'm';\n }\n if (msAbs >= s) {\n return Math.round(ms / s) + 's';\n }\n return ms + 'ms';\n}\n\n/**\n * Long format for `ms`.\n *\n * @param {Number} ms\n * @return {String}\n * @api private\n */\n\nfunction fmtLong(ms) {\n var msAbs = Math.abs(ms);\n if (msAbs >= d) {\n return plural(ms, msAbs, d, 'day');\n }\n if (msAbs >= h) {\n return plural(ms, msAbs, h, 'hour');\n }\n if (msAbs >= m) {\n return plural(ms, msAbs, m, 'minute');\n }\n if (msAbs >= s) {\n return plural(ms, msAbs, s, 'second');\n }\n return ms + ' ms';\n}\n\n/**\n * Pluralization helper.\n */\n\nfunction plural(ms, msAbs, n, name) {\n var isPlural = msAbs >= n * 1.5;\n return Math.round(ms / n) + ' ' + name + (isPlural ? 's' : '');\n}\n","\n/**\n * This is the common logic for both the Node.js and web browser\n * implementations of `debug()`.\n */\n\nfunction setup(env) {\n\tcreateDebug.debug = createDebug;\n\tcreateDebug.default = createDebug;\n\tcreateDebug.coerce = coerce;\n\tcreateDebug.disable = disable;\n\tcreateDebug.enable = enable;\n\tcreateDebug.enabled = enabled;\n\tcreateDebug.humanize = require('ms');\n\tcreateDebug.destroy = destroy;\n\n\tObject.keys(env).forEach(key => {\n\t\tcreateDebug[key] = env[key];\n\t});\n\n\t/**\n\t* The currently active debug mode names, and names to skip.\n\t*/\n\n\tcreateDebug.names = [];\n\tcreateDebug.skips = [];\n\n\t/**\n\t* Map of special \"%n\" handling functions, for the debug \"format\" argument.\n\t*\n\t* Valid key names are a single, lower or upper-case letter, i.e. \"n\" and \"N\".\n\t*/\n\tcreateDebug.formatters = {};\n\n\t/**\n\t* Selects a color for a debug namespace\n\t* @param {String} namespace The namespace string for the debug instance to be colored\n\t* @return {Number|String} An ANSI color code for the given namespace\n\t* @api private\n\t*/\n\tfunction selectColor(namespace) {\n\t\tlet hash = 0;\n\n\t\tfor (let i = 0; i < namespace.length; i++) {\n\t\t\thash = ((hash << 5) - hash) + namespace.charCodeAt(i);\n\t\t\thash |= 0; // Convert to 32bit integer\n\t\t}\n\n\t\treturn createDebug.colors[Math.abs(hash) % createDebug.colors.length];\n\t}\n\tcreateDebug.selectColor = selectColor;\n\n\t/**\n\t* Create a debugger with the given `namespace`.\n\t*\n\t* @param {String} namespace\n\t* @return {Function}\n\t* @api public\n\t*/\n\tfunction createDebug(namespace) {\n\t\tlet prevTime;\n\t\tlet enableOverride = null;\n\t\tlet namespacesCache;\n\t\tlet enabledCache;\n\n\t\tfunction debug(...args) {\n\t\t\t// Disabled?\n\t\t\tif (!debug.enabled) {\n\t\t\t\treturn;\n\t\t\t}\n\n\t\t\tconst self = debug;\n\n\t\t\t// Set `diff` timestamp\n\t\t\tconst curr = Number(new Date());\n\t\t\tconst ms = curr - (prevTime || curr);\n\t\t\tself.diff = ms;\n\t\t\tself.prev = prevTime;\n\t\t\tself.curr = curr;\n\t\t\tprevTime = curr;\n\n\t\t\targs[0] = createDebug.coerce(args[0]);\n\n\t\t\tif (typeof args[0] !== 'string') {\n\t\t\t\t// Anything else let's inspect with %O\n\t\t\t\targs.unshift('%O');\n\t\t\t}\n\n\t\t\t// Apply any `formatters` transformations\n\t\t\tlet index = 0;\n\t\t\targs[0] = args[0].replace(/%([a-zA-Z%])/g, (match, format) => {\n\t\t\t\t// If we encounter an escaped % then don't increase the array index\n\t\t\t\tif (match === '%%') {\n\t\t\t\t\treturn '%';\n\t\t\t\t}\n\t\t\t\tindex++;\n\t\t\t\tconst formatter = createDebug.formatters[format];\n\t\t\t\tif (typeof formatter === 'function') {\n\t\t\t\t\tconst val = args[index];\n\t\t\t\t\tmatch = formatter.call(self, val);\n\n\t\t\t\t\t// Now we need to remove `args[index]` since it's inlined in the `format`\n\t\t\t\t\targs.splice(index, 1);\n\t\t\t\t\tindex--;\n\t\t\t\t}\n\t\t\t\treturn match;\n\t\t\t});\n\n\t\t\t// Apply env-specific formatting (colors, etc.)\n\t\t\tcreateDebug.formatArgs.call(self, args);\n\n\t\t\tconst logFn = self.log || createDebug.log;\n\t\t\tlogFn.apply(self, args);\n\t\t}\n\n\t\tdebug.namespace = namespace;\n\t\tdebug.useColors = createDebug.useColors();\n\t\tdebug.color = createDebug.selectColor(namespace);\n\t\tdebug.extend = extend;\n\t\tdebug.destroy = createDebug.destroy; // XXX Temporary. Will be removed in the next major release.\n\n\t\tObject.defineProperty(debug, 'enabled', {\n\t\t\tenumerable: true,\n\t\t\tconfigurable: false,\n\t\t\tget: () => {\n\t\t\t\tif (enableOverride !== null) {\n\t\t\t\t\treturn enableOverride;\n\t\t\t\t}\n\t\t\t\tif (namespacesCache !== createDebug.namespaces) {\n\t\t\t\t\tnamespacesCache = createDebug.namespaces;\n\t\t\t\t\tenabledCache = createDebug.enabled(namespace);\n\t\t\t\t}\n\n\t\t\t\treturn enabledCache;\n\t\t\t},\n\t\t\tset: v => {\n\t\t\t\tenableOverride = v;\n\t\t\t}\n\t\t});\n\n\t\t// Env-specific initialization logic for debug instances\n\t\tif (typeof createDebug.init === 'function') {\n\t\t\tcreateDebug.init(debug);\n\t\t}\n\n\t\treturn debug;\n\t}\n\n\tfunction extend(namespace, delimiter) {\n\t\tconst newDebug = createDebug(this.namespace + (typeof delimiter === 'undefined' ? ':' : delimiter) + namespace);\n\t\tnewDebug.log = this.log;\n\t\treturn newDebug;\n\t}\n\n\t/**\n\t* Enables a debug mode by namespaces. This can include modes\n\t* separated by a colon and wildcards.\n\t*\n\t* @param {String} namespaces\n\t* @api public\n\t*/\n\tfunction enable(namespaces) {\n\t\tcreateDebug.save(namespaces);\n\t\tcreateDebug.namespaces = namespaces;\n\n\t\tcreateDebug.names = [];\n\t\tcreateDebug.skips = [];\n\n\t\tconst split = (typeof namespaces === 'string' ? namespaces : '')\n\t\t\t.trim()\n\t\t\t.replace(/\\s+/g, ',')\n\t\t\t.split(',')\n\t\t\t.filter(Boolean);\n\n\t\tfor (const ns of split) {\n\t\t\tif (ns[0] === '-') {\n\t\t\t\tcreateDebug.skips.push(ns.slice(1));\n\t\t\t} else {\n\t\t\t\tcreateDebug.names.push(ns);\n\t\t\t}\n\t\t}\n\t}\n\n\t/**\n\t * Checks if the given string matches a namespace template, honoring\n\t * asterisks as wildcards.\n\t *\n\t * @param {String} search\n\t * @param {String} template\n\t * @return {Boolean}\n\t */\n\tfunction matchesTemplate(search, template) {\n\t\tlet searchIndex = 0;\n\t\tlet templateIndex = 0;\n\t\tlet starIndex = -1;\n\t\tlet matchIndex = 0;\n\n\t\twhile (searchIndex < search.length) {\n\t\t\tif (templateIndex < template.length && (template[templateIndex] === search[searchIndex] || template[templateIndex] === '*')) {\n\t\t\t\t// Match character or proceed with wildcard\n\t\t\t\tif (template[templateIndex] === '*') {\n\t\t\t\t\tstarIndex = templateIndex;\n\t\t\t\t\tmatchIndex = searchIndex;\n\t\t\t\t\ttemplateIndex++; // Skip the '*'\n\t\t\t\t} else {\n\t\t\t\t\tsearchIndex++;\n\t\t\t\t\ttemplateIndex++;\n\t\t\t\t}\n\t\t\t} else if (starIndex !== -1) { // eslint-disable-line no-negated-condition\n\t\t\t\t// Backtrack to the last '*' and try to match more characters\n\t\t\t\ttemplateIndex = starIndex + 1;\n\t\t\t\tmatchIndex++;\n\t\t\t\tsearchIndex = matchIndex;\n\t\t\t} else {\n\t\t\t\treturn false; // No match\n\t\t\t}\n\t\t}\n\n\t\t// Handle trailing '*' in template\n\t\twhile (templateIndex < template.length && template[templateIndex] === '*') {\n\t\t\ttemplateIndex++;\n\t\t}\n\n\t\treturn templateIndex === template.length;\n\t}\n\n\t/**\n\t* Disable debug output.\n\t*\n\t* @return {String} namespaces\n\t* @api public\n\t*/\n\tfunction disable() {\n\t\tconst namespaces = [\n\t\t\t...createDebug.names,\n\t\t\t...createDebug.skips.map(namespace => '-' + namespace)\n\t\t].join(',');\n\t\tcreateDebug.enable('');\n\t\treturn namespaces;\n\t}\n\n\t/**\n\t* Returns true if the given mode name is enabled, false otherwise.\n\t*\n\t* @param {String} name\n\t* @return {Boolean}\n\t* @api public\n\t*/\n\tfunction enabled(name) {\n\t\tfor (const skip of createDebug.skips) {\n\t\t\tif (matchesTemplate(name, skip)) {\n\t\t\t\treturn false;\n\t\t\t}\n\t\t}\n\n\t\tfor (const ns of createDebug.names) {\n\t\t\tif (matchesTemplate(name, ns)) {\n\t\t\t\treturn true;\n\t\t\t}\n\t\t}\n\n\t\treturn false;\n\t}\n\n\t/**\n\t* Coerce `val`.\n\t*\n\t* @param {Mixed} val\n\t* @return {Mixed}\n\t* @api private\n\t*/\n\tfunction coerce(val) {\n\t\tif (val instanceof Error) {\n\t\t\treturn val.stack || val.message;\n\t\t}\n\t\treturn val;\n\t}\n\n\t/**\n\t* XXX DO NOT USE. This is a temporary stub function.\n\t* XXX It WILL be removed in the next major release.\n\t*/\n\tfunction destroy() {\n\t\tconsole.warn('Instance method `debug.destroy()` is deprecated and no longer does anything. It will be removed in the next major version of `debug`.');\n\t}\n\n\tcreateDebug.enable(createDebug.load());\n\n\treturn createDebug;\n}\n\nmodule.exports = setup;\n","/* eslint-env browser */\n\n/**\n * This is the web browser implementation of `debug()`.\n */\n\nexports.formatArgs = formatArgs;\nexports.save = save;\nexports.load = load;\nexports.useColors = useColors;\nexports.storage = localstorage();\nexports.destroy = (() => {\n\tlet warned = false;\n\n\treturn () => {\n\t\tif (!warned) {\n\t\t\twarned = true;\n\t\t\tconsole.warn('Instance method `debug.destroy()` is deprecated and no longer does anything. It will be removed in the next major version of `debug`.');\n\t\t}\n\t};\n})();\n\n/**\n * Colors.\n */\n\nexports.colors = [\n\t'#0000CC',\n\t'#0000FF',\n\t'#0033CC',\n\t'#0033FF',\n\t'#0066CC',\n\t'#0066FF',\n\t'#0099CC',\n\t'#0099FF',\n\t'#00CC00',\n\t'#00CC33',\n\t'#00CC66',\n\t'#00CC99',\n\t'#00CCCC',\n\t'#00CCFF',\n\t'#3300CC',\n\t'#3300FF',\n\t'#3333CC',\n\t'#3333FF',\n\t'#3366CC',\n\t'#3366FF',\n\t'#3399CC',\n\t'#3399FF',\n\t'#33CC00',\n\t'#33CC33',\n\t'#33CC66',\n\t'#33CC99',\n\t'#33CCCC',\n\t'#33CCFF',\n\t'#6600CC',\n\t'#6600FF',\n\t'#6633CC',\n\t'#6633FF',\n\t'#66CC00',\n\t'#66CC33',\n\t'#9900CC',\n\t'#9900FF',\n\t'#9933CC',\n\t'#9933FF',\n\t'#99CC00',\n\t'#99CC33',\n\t'#CC0000',\n\t'#CC0033',\n\t'#CC0066',\n\t'#CC0099',\n\t'#CC00CC',\n\t'#CC00FF',\n\t'#CC3300',\n\t'#CC3333',\n\t'#CC3366',\n\t'#CC3399',\n\t'#CC33CC',\n\t'#CC33FF',\n\t'#CC6600',\n\t'#CC6633',\n\t'#CC9900',\n\t'#CC9933',\n\t'#CCCC00',\n\t'#CCCC33',\n\t'#FF0000',\n\t'#FF0033',\n\t'#FF0066',\n\t'#FF0099',\n\t'#FF00CC',\n\t'#FF00FF',\n\t'#FF3300',\n\t'#FF3333',\n\t'#FF3366',\n\t'#FF3399',\n\t'#FF33CC',\n\t'#FF33FF',\n\t'#FF6600',\n\t'#FF6633',\n\t'#FF9900',\n\t'#FF9933',\n\t'#FFCC00',\n\t'#FFCC33'\n];\n\n/**\n * Currently only WebKit-based Web Inspectors, Firefox >= v31,\n * and the Firebug extension (any Firefox version) are known\n * to support \"%c\" CSS customizations.\n *\n * TODO: add a `localStorage` variable to explicitly enable/disable colors\n */\n\n// eslint-disable-next-line complexity\nfunction useColors() {\n\t// NB: In an Electron preload script, document will be defined but not fully\n\t// initialized. Since we know we're in Chrome, we'll just detect this case\n\t// explicitly\n\tif (typeof window !== 'undefined' && window.process && (window.process.type === 'renderer' || window.process.__nwjs)) {\n\t\treturn true;\n\t}\n\n\t// Internet Explorer and Edge do not support colors.\n\tif (typeof navigator !== 'undefined' && navigator.userAgent && navigator.userAgent.toLowerCase().match(/(edge|trident)\\/(\\d+)/)) {\n\t\treturn false;\n\t}\n\n\tlet m;\n\n\t// Is webkit? http://stackoverflow.com/a/16459606/376773\n\t// document is undefined in react-native: https://github.com/facebook/react-native/pull/1632\n\t// eslint-disable-next-line no-return-assign\n\treturn (typeof document !== 'undefined' && document.documentElement && document.documentElement.style && document.documentElement.style.WebkitAppearance) ||\n\t\t// Is firebug? http://stackoverflow.com/a/398120/376773\n\t\t(typeof window !== 'undefined' && window.console && (window.console.firebug || (window.console.exception && window.console.table))) ||\n\t\t// Is firefox >= v31?\n\t\t// https://developer.mozilla.org/en-US/docs/Tools/Web_Console#Styling_messages\n\t\t(typeof navigator !== 'undefined' && navigator.userAgent && (m = navigator.userAgent.toLowerCase().match(/firefox\\/(\\d+)/)) && parseInt(m[1], 10) >= 31) ||\n\t\t// Double check webkit in userAgent just in case we are in a worker\n\t\t(typeof navigator !== 'undefined' && navigator.userAgent && navigator.userAgent.toLowerCase().match(/applewebkit\\/(\\d+)/));\n}\n\n/**\n * Colorize log arguments if enabled.\n *\n * @api public\n */\n\nfunction formatArgs(args) {\n\targs[0] = (this.useColors ? '%c' : '') +\n\t\tthis.namespace +\n\t\t(this.useColors ? ' %c' : ' ') +\n\t\targs[0] +\n\t\t(this.useColors ? '%c ' : ' ') +\n\t\t'+' + module.exports.humanize(this.diff);\n\n\tif (!this.useColors) {\n\t\treturn;\n\t}\n\n\tconst c = 'color: ' + this.color;\n\targs.splice(1, 0, c, 'color: inherit');\n\n\t// The final \"%c\" is somewhat tricky, because there could be other\n\t// arguments passed either before or after the %c, so we need to\n\t// figure out the correct index to insert the CSS into\n\tlet index = 0;\n\tlet lastC = 0;\n\targs[0].replace(/%[a-zA-Z%]/g, match => {\n\t\tif (match === '%%') {\n\t\t\treturn;\n\t\t}\n\t\tindex++;\n\t\tif (match === '%c') {\n\t\t\t// We only are interested in the *last* %c\n\t\t\t// (the user may have provided their own)\n\t\t\tlastC = index;\n\t\t}\n\t});\n\n\targs.splice(lastC, 0, c);\n}\n\n/**\n * Invokes `console.debug()` when available.\n * No-op when `console.debug` is not a \"function\".\n * If `console.debug` is not available, falls back\n * to `console.log`.\n *\n * @api public\n */\nexports.log = console.debug || console.log || (() => {});\n\n/**\n * Save `namespaces`.\n *\n * @param {String} namespaces\n * @api private\n */\nfunction save(namespaces) {\n\ttry {\n\t\tif (namespaces) {\n\t\t\texports.storage.setItem('debug', namespaces);\n\t\t} else {\n\t\t\texports.storage.removeItem('debug');\n\t\t}\n\t} catch (error) {\n\t\t// Swallow\n\t\t// XXX (@Qix-) should we be logging these?\n\t}\n}\n\n/**\n * Load `namespaces`.\n *\n * @return {String} returns the previously persisted debug modes\n * @api private\n */\nfunction load() {\n\tlet r;\n\ttry {\n\t\tr = exports.storage.getItem('debug') || exports.storage.getItem('DEBUG') ;\n\t} catch (error) {\n\t\t// Swallow\n\t\t// XXX (@Qix-) should we be logging these?\n\t}\n\n\t// If debug isn't set in LS, and we're in Electron, try to load $DEBUG\n\tif (!r && typeof process !== 'undefined' && 'env' in process) {\n\t\tr = process.env.DEBUG;\n\t}\n\n\treturn r;\n}\n\n/**\n * Localstorage attempts to return the localstorage.\n *\n * This is necessary because safari throws\n * when a user disables cookies/localstorage\n * and you attempt to access it.\n *\n * @return {LocalStorage}\n * @api private\n */\n\nfunction localstorage() {\n\ttry {\n\t\t// TVMLKit (Apple TV JS Runtime) does not have a window object, just localStorage in the global context\n\t\t// The Browser also has localStorage in the global context.\n\t\treturn localStorage;\n\t} catch (error) {\n\t\t// Swallow\n\t\t// XXX (@Qix-) should we be logging these?\n\t}\n}\n\nmodule.exports = require('./common')(exports);\n\nconst {formatters} = module.exports;\n\n/**\n * Map %j to `JSON.stringify()`, since no Web Inspectors do that by default.\n */\n\nformatters.j = function (v) {\n\ttry {\n\t\treturn JSON.stringify(v);\n\t} catch (error) {\n\t\treturn '[UnexpectedJSONParseError]: ' + error.message;\n\t}\n};\n","let fn: typeof fetch;\nexport const fetch = async function fetch(\n ...args: Parameters<typeof window.fetch>\n): ReturnType<typeof window.fetch> {\n if (!fn) {\n if (typeof window !== 'undefined' && typeof document !== 'undefined') {\n fn = window.fetch.bind(window);\n } else {\n const fr = await import('fetch-retry');\n const fetchWithRetry = fr.default(globalThis.fetch);\n fn = fetchWithRetry;\n }\n }\n return fn.apply(null, args);\n};\n","import { fetch } from './fetch.js';\n\nexport async function importHttpRuntime<TModule = any>(runtime: string): Promise<TModule> {\n // if browser, use dynamic import\n if (typeof window !== 'undefined' && typeof document !== 'undefined') {\n const module = await import(/* @vite-ignore */ runtime);\n return module as TModule;\n } else {\n const { nodeImportHttpRuntime } = await import('./ImportHttpRuntime.node.js');\n return nodeImportHttpRuntime<TModule>(runtime, { fetchImpl: fetch });\n }\n}\n","// resolveHttpRefToString.ts\n// Follows $ref chains until finding a value without $ref.\n//\n// Rules:\n// - If value is an object with {$ref: string} -> follow it (fetch if http/https URL)\n// - Otherwise -> return the value as-is\n//\n// Browser: tries `import(url, { with: { type: 'json' } })` first, falls back to fetch.\n// Node: uses fetch (Node 18+ has global fetch).\n\nimport debug from 'debug';\nimport { fetch } from './fetch.js';\n\nconst log = debug('efp:loader:resolve');\n\nexport type ResolveOptions = {\n maxHops?: number;\n signal?: AbortSignal;\n // Hook if you want to observe each hop (debug/log/preload metrics)\n onHop?: (info: { hop: number; ref: string; via: 'import' | 'fetch' }) => void;\n fetchCallback?: (ref: string) => void;\n};\n\nexport async function resolve<T>(input: unknown, options: ResolveOptions = {}): Promise<T> {\n const maxHops = options.maxHops ?? 32;\n const seen = new Set<string>();\n\n let cur: unknown = input;\n\n for (let hop = 0; hop < maxHops; hop++) {\n // If it's an object with $ref, follow it\n if (cur && typeof cur === 'object' && '$ref' in cur) {\n const obj = cur as any;\n const ref = obj.$ref;\n\n if (typeof ref !== 'string') {\n throw new Error(`$ref must be a string, got: ${typeof ref}`);\n }\n\n // If it's an http/https URL, fetch it\n if (isHttpUrl(ref)) {\n if (seen.has(ref)) {\n throw new Error(`Circular $ref detected at: ${ref}`);\n }\n seen.add(ref);\n log('Loading JSON ref:', ref);\n options.fetchCallback?.(ref);\n const json = await loadJson(ref, options.signal);\n options.onHop?.({ hop, ref, via: json.__via });\n cur = json.value;\n continue;\n }\n\n // Non-http $ref (e.g., relative, custom schema) - return the object as-is\n // (caller is responsible for handling these)\n return cur as T;\n }\n\n // No $ref found - return current value\n return cur as T;\n }\n\n throw new Error(`Too many ref hops (>${maxHops}). Possible loop or unexpectedly deep chain.`);\n}\n\nfunction isHttpUrl(s: string): boolean {\n return s.startsWith('http://') || s.startsWith('https://');\n}\n\nasync function loadJson(\n url: string,\n signal?: AbortSignal\n): Promise<{ value: unknown; __via: 'import' | 'fetch' }> {\n // Try import() JSON first (browser-friendly; depends on runtime/bundler support + CORS)\n const imported = await tryImportJson(url);\n if (imported.ok) return { value: imported.value, __via: 'import' };\n\n // Fallback to fetch\n const res = await fetch(url, {\n method: 'GET',\n signal,\n headers: {\n // Helps some CDNs/content negotiation setups\n Accept: 'application/json, text/plain;q=0.9, */*;q=0.1',\n },\n });\n\n if (!res.ok) {\n throw new Error(`Failed to fetch JSON ref: ${url} (${res.status} ${res.statusText})`);\n }\n\n // Prefer JSON; if server mislabels, fallback to text->JSON parse.\n const ct = res.headers.get('content-type') || '';\n if (ct.includes('application/json') || ct.includes('+json')) {\n return { value: await res.json(), __via: 'fetch' };\n }\n\n const text = await res.text();\n try {\n return { value: JSON.parse(text), __via: 'fetch' };\n } catch {\n // If the endpoint literally returns a plain string (not JSON), accept it.\n return { value: text, __via: 'fetch' };\n }\n}\n\nasync function tryImportJson(\n url: string\n): Promise<{ ok: true; value: unknown } | { ok: false; error: unknown }> {\n // `with: { type: 'json' }` is the modern import assertion form.\n // Some environments still only accept `assert: { type: 'json' }`.\n try {\n //// @ts-expect-error - TS lib definitions differ across versions\n const mod = await import(/* @vite-ignore */ url, { with: { type: 'json' } });\n log('Imported JSON via import():', url);\n return { ok: true, value: mod?.default ?? mod };\n } catch (e1) {\n try {\n //// @ts-expect-error - fallback for older assertion syntax\n const mod = await import(/* @vite-ignore */ url, { assert: { type: 'json' } });\n return { ok: true, value: mod?.default ?? mod };\n } catch (e2) {\n return { ok: false, error: e2 ?? e1 };\n }\n }\n}\n","import debug from 'debug';\nimport { importHttpRuntime } from './importHttpRuntime.js';\nimport { resolve } from './resolve.js';\nimport type { LoaderApi, LoaderApiWithMeta, Manifest, Ref } from './types.js';\n\nconst log = debug('efp:loader');\n\ndeclare global {\n const __efpLoaderBuildInfo: [version: string, builtAt: string] | undefined;\n}\n\nif (typeof __efpLoaderBuildInfo !== 'undefined') {\n log('Initialized', { version: __efpLoaderBuildInfo[0], builtAt: __efpLoaderBuildInfo[1] });\n} else {\n log('Initialized');\n}\n\nexport async function loadApi(\n /**\n * \"url\" or { $ref: \"url\" }, or { runtimeUrl: \"url\" | { $ref: \"url\" } }\n */\n runtimeUrlOrManifest: string | Ref | Manifest,\n options?: {\n fetchCallback?: (ref: string) => void;\n }\n): Promise<LoaderApiWithMeta> {\n let resolvedRoot = await resolve<string>(runtimeUrlOrManifest, {\n fetchCallback: options?.fetchCallback,\n });\n let runtimeUrl: string | undefined = undefined;\n if (typeof resolvedRoot === 'string') {\n runtimeUrl = resolvedRoot;\n } else if (typeof resolvedRoot === 'object' && 'runtimeUrl' in resolvedRoot) {\n const manifest = resolvedRoot as Manifest;\n runtimeUrl = await resolve<string>(manifest.runtimeUrl, {\n fetchCallback: options?.fetchCallback,\n });\n }\n\n if (runtimeUrl === undefined) {\n throw new Error(\n 'Could not determine runtime URL. It must be resolvable to a string or to a manifest with a runtimeUrl property.'\n );\n }\n\n log('Loading runtime:', runtimeUrl);\n // if (typeof manifest === 'string') {\n // manifest = { $ref: manifest };\n // }\n // manifest = await resolve<Manifest>(manifest, { fetchCallback: options?.fetchCallback });\n // const runtime = await resolve<string>(manifest.runtime, {\n // fetchCallback: options?.fetchCallback,\n // });\n\n // log('Resolved runtime URL:', runtime);\n if (typeof runtimeUrl !== 'string') {\n throw new Error('Runtime URL must be a string');\n }\n\n const api = { ...(await importHttpRuntime(runtimeUrl)), meta: { runtimeUrl } } as LoaderApiWithMeta;\n return api; //{ ...api, runtime } as LoaderApi;\n}\n\n// allow calling api functions directly from here\nconst api: LoaderApi = new Proxy(\n {},\n {\n get: (_, prop: string) => {\n return async (...args: any[]) => {\n const param0 = args[0];\n if (param0 == null || typeof param0 !== 'object') {\n throw new Error(`First argument must be a manifest object, got: ${typeof param0}`);\n }\n // const manifest = await resolve<Manifest>(param0);\n // const runtimeUrl = await resolve<string>(manifest.runtimeUrl);\n // if (typeof runtimeUrl !== 'string') {\n // throw new Error('Resolved runtime URL must be a string');\n // }\n\n const runtimeApi = await loadApi(param0);\n const fn = runtimeApi[prop];\n if (typeof fn !== 'function') {\n throw new Error(`API has no function named '${prop}'`);\n }\n return fn.apply(runtimeApi, args as any);\n };\n },\n }\n);\n\nexport async function load(manifest: Manifest | Ref, ...args: unknown[]) {\n return api.load!(manifest, ...args);\n}\n\n// export { resolve } from './resolve';\n\nexport default api;\n"],"names":["hasRequiredMs","m","h","d","w","ms","val","options","type","parse","fmtLong","fmtShort","str","match","y","msAbs","plural","name","isPlural","hasRequiredCommon","setup","env","createDebug","coerce","disable","enable","enabled","requireMs","key","selectColor","namespace","i","hash","prevTime","enableOverride","namespacesCache","debug","args","curr","self","index","format","formatter","enabledCache","v","delimiter","newDebug","namespaces","split","ns","matchesTemplate","search","template","searchIndex","templateIndex","starIndex","matchIndex","skip","destroy","module","exports","formatArgs","save","load","localstorage","warned","useColors","c","lastC","r","formatters","error","fn","fetch","n","importHttpRuntime","runtime","nodeImportHttpRuntime","log$1","resolve","maxHops","_a","seen","cur","input","hop","ref","log","_b","json","loadJson","_c","isHttpUrl","signal","imported","url","res","ct","text","tryImportJson","mod","e1","e2","__efpLoaderBuildInfo","loadApi","resolvedRoot","runtimeUrlOrManifest","runtimeUrl","api","_","prop","param0","runtimeApi","manifest"],"mappings":"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","x_google_ignoreList":[0,1,2]}
|
|
1
|
+
{"version":3,"file":"bundle.js","sources":["../../node_modules/.pnpm/ms@2.1.3/node_modules/ms/index.js","../../node_modules/.pnpm/debug@4.4.3/node_modules/debug/src/common.js","../../node_modules/.pnpm/debug@4.4.3/node_modules/debug/src/browser.js","../../src/fetch.ts","../../src/importHttpRuntime.ts","../../src/resolve.ts","../../src/index.ts"],"sourcesContent":["/**\n * Helpers.\n */\n\nvar s = 1000;\nvar m = s * 60;\nvar h = m * 60;\nvar d = h * 24;\nvar w = d * 7;\nvar y = d * 365.25;\n\n/**\n * Parse or format the given `val`.\n *\n * Options:\n *\n * - `long` verbose formatting [false]\n *\n * @param {String|Number} val\n * @param {Object} [options]\n * @throws {Error} throw an error if val is not a non-empty string or a number\n * @return {String|Number}\n * @api public\n */\n\nmodule.exports = function (val, options) {\n options = options || {};\n var type = typeof val;\n if (type === 'string' && val.length > 0) {\n return parse(val);\n } else if (type === 'number' && isFinite(val)) {\n return options.long ? fmtLong(val) : fmtShort(val);\n }\n throw new Error(\n 'val is not a non-empty string or a valid number. val=' +\n JSON.stringify(val)\n );\n};\n\n/**\n * Parse the given `str` and return milliseconds.\n *\n * @param {String} str\n * @return {Number}\n * @api private\n */\n\nfunction parse(str) {\n str = String(str);\n if (str.length > 100) {\n return;\n }\n var match = /^(-?(?:\\d+)?\\.?\\d+) *(milliseconds?|msecs?|ms|seconds?|secs?|s|minutes?|mins?|m|hours?|hrs?|h|days?|d|weeks?|w|years?|yrs?|y)?$/i.exec(\n str\n );\n if (!match) {\n return;\n }\n var n = parseFloat(match[1]);\n var type = (match[2] || 'ms').toLowerCase();\n switch (type) {\n case 'years':\n case 'year':\n case 'yrs':\n case 'yr':\n case 'y':\n return n * y;\n case 'weeks':\n case 'week':\n case 'w':\n return n * w;\n case 'days':\n case 'day':\n case 'd':\n return n * d;\n case 'hours':\n case 'hour':\n case 'hrs':\n case 'hr':\n case 'h':\n return n * h;\n case 'minutes':\n case 'minute':\n case 'mins':\n case 'min':\n case 'm':\n return n * m;\n case 'seconds':\n case 'second':\n case 'secs':\n case 'sec':\n case 's':\n return n * s;\n case 'milliseconds':\n case 'millisecond':\n case 'msecs':\n case 'msec':\n case 'ms':\n return n;\n default:\n return undefined;\n }\n}\n\n/**\n * Short format for `ms`.\n *\n * @param {Number} ms\n * @return {String}\n * @api private\n */\n\nfunction fmtShort(ms) {\n var msAbs = Math.abs(ms);\n if (msAbs >= d) {\n return Math.round(ms / d) + 'd';\n }\n if (msAbs >= h) {\n return Math.round(ms / h) + 'h';\n }\n if (msAbs >= m) {\n return Math.round(ms / m) + 'm';\n }\n if (msAbs >= s) {\n return Math.round(ms / s) + 's';\n }\n return ms + 'ms';\n}\n\n/**\n * Long format for `ms`.\n *\n * @param {Number} ms\n * @return {String}\n * @api private\n */\n\nfunction fmtLong(ms) {\n var msAbs = Math.abs(ms);\n if (msAbs >= d) {\n return plural(ms, msAbs, d, 'day');\n }\n if (msAbs >= h) {\n return plural(ms, msAbs, h, 'hour');\n }\n if (msAbs >= m) {\n return plural(ms, msAbs, m, 'minute');\n }\n if (msAbs >= s) {\n return plural(ms, msAbs, s, 'second');\n }\n return ms + ' ms';\n}\n\n/**\n * Pluralization helper.\n */\n\nfunction plural(ms, msAbs, n, name) {\n var isPlural = msAbs >= n * 1.5;\n return Math.round(ms / n) + ' ' + name + (isPlural ? 's' : '');\n}\n","\n/**\n * This is the common logic for both the Node.js and web browser\n * implementations of `debug()`.\n */\n\nfunction setup(env) {\n\tcreateDebug.debug = createDebug;\n\tcreateDebug.default = createDebug;\n\tcreateDebug.coerce = coerce;\n\tcreateDebug.disable = disable;\n\tcreateDebug.enable = enable;\n\tcreateDebug.enabled = enabled;\n\tcreateDebug.humanize = require('ms');\n\tcreateDebug.destroy = destroy;\n\n\tObject.keys(env).forEach(key => {\n\t\tcreateDebug[key] = env[key];\n\t});\n\n\t/**\n\t* The currently active debug mode names, and names to skip.\n\t*/\n\n\tcreateDebug.names = [];\n\tcreateDebug.skips = [];\n\n\t/**\n\t* Map of special \"%n\" handling functions, for the debug \"format\" argument.\n\t*\n\t* Valid key names are a single, lower or upper-case letter, i.e. \"n\" and \"N\".\n\t*/\n\tcreateDebug.formatters = {};\n\n\t/**\n\t* Selects a color for a debug namespace\n\t* @param {String} namespace The namespace string for the debug instance to be colored\n\t* @return {Number|String} An ANSI color code for the given namespace\n\t* @api private\n\t*/\n\tfunction selectColor(namespace) {\n\t\tlet hash = 0;\n\n\t\tfor (let i = 0; i < namespace.length; i++) {\n\t\t\thash = ((hash << 5) - hash) + namespace.charCodeAt(i);\n\t\t\thash |= 0; // Convert to 32bit integer\n\t\t}\n\n\t\treturn createDebug.colors[Math.abs(hash) % createDebug.colors.length];\n\t}\n\tcreateDebug.selectColor = selectColor;\n\n\t/**\n\t* Create a debugger with the given `namespace`.\n\t*\n\t* @param {String} namespace\n\t* @return {Function}\n\t* @api public\n\t*/\n\tfunction createDebug(namespace) {\n\t\tlet prevTime;\n\t\tlet enableOverride = null;\n\t\tlet namespacesCache;\n\t\tlet enabledCache;\n\n\t\tfunction debug(...args) {\n\t\t\t// Disabled?\n\t\t\tif (!debug.enabled) {\n\t\t\t\treturn;\n\t\t\t}\n\n\t\t\tconst self = debug;\n\n\t\t\t// Set `diff` timestamp\n\t\t\tconst curr = Number(new Date());\n\t\t\tconst ms = curr - (prevTime || curr);\n\t\t\tself.diff = ms;\n\t\t\tself.prev = prevTime;\n\t\t\tself.curr = curr;\n\t\t\tprevTime = curr;\n\n\t\t\targs[0] = createDebug.coerce(args[0]);\n\n\t\t\tif (typeof args[0] !== 'string') {\n\t\t\t\t// Anything else let's inspect with %O\n\t\t\t\targs.unshift('%O');\n\t\t\t}\n\n\t\t\t// Apply any `formatters` transformations\n\t\t\tlet index = 0;\n\t\t\targs[0] = args[0].replace(/%([a-zA-Z%])/g, (match, format) => {\n\t\t\t\t// If we encounter an escaped % then don't increase the array index\n\t\t\t\tif (match === '%%') {\n\t\t\t\t\treturn '%';\n\t\t\t\t}\n\t\t\t\tindex++;\n\t\t\t\tconst formatter = createDebug.formatters[format];\n\t\t\t\tif (typeof formatter === 'function') {\n\t\t\t\t\tconst val = args[index];\n\t\t\t\t\tmatch = formatter.call(self, val);\n\n\t\t\t\t\t// Now we need to remove `args[index]` since it's inlined in the `format`\n\t\t\t\t\targs.splice(index, 1);\n\t\t\t\t\tindex--;\n\t\t\t\t}\n\t\t\t\treturn match;\n\t\t\t});\n\n\t\t\t// Apply env-specific formatting (colors, etc.)\n\t\t\tcreateDebug.formatArgs.call(self, args);\n\n\t\t\tconst logFn = self.log || createDebug.log;\n\t\t\tlogFn.apply(self, args);\n\t\t}\n\n\t\tdebug.namespace = namespace;\n\t\tdebug.useColors = createDebug.useColors();\n\t\tdebug.color = createDebug.selectColor(namespace);\n\t\tdebug.extend = extend;\n\t\tdebug.destroy = createDebug.destroy; // XXX Temporary. Will be removed in the next major release.\n\n\t\tObject.defineProperty(debug, 'enabled', {\n\t\t\tenumerable: true,\n\t\t\tconfigurable: false,\n\t\t\tget: () => {\n\t\t\t\tif (enableOverride !== null) {\n\t\t\t\t\treturn enableOverride;\n\t\t\t\t}\n\t\t\t\tif (namespacesCache !== createDebug.namespaces) {\n\t\t\t\t\tnamespacesCache = createDebug.namespaces;\n\t\t\t\t\tenabledCache = createDebug.enabled(namespace);\n\t\t\t\t}\n\n\t\t\t\treturn enabledCache;\n\t\t\t},\n\t\t\tset: v => {\n\t\t\t\tenableOverride = v;\n\t\t\t}\n\t\t});\n\n\t\t// Env-specific initialization logic for debug instances\n\t\tif (typeof createDebug.init === 'function') {\n\t\t\tcreateDebug.init(debug);\n\t\t}\n\n\t\treturn debug;\n\t}\n\n\tfunction extend(namespace, delimiter) {\n\t\tconst newDebug = createDebug(this.namespace + (typeof delimiter === 'undefined' ? ':' : delimiter) + namespace);\n\t\tnewDebug.log = this.log;\n\t\treturn newDebug;\n\t}\n\n\t/**\n\t* Enables a debug mode by namespaces. This can include modes\n\t* separated by a colon and wildcards.\n\t*\n\t* @param {String} namespaces\n\t* @api public\n\t*/\n\tfunction enable(namespaces) {\n\t\tcreateDebug.save(namespaces);\n\t\tcreateDebug.namespaces = namespaces;\n\n\t\tcreateDebug.names = [];\n\t\tcreateDebug.skips = [];\n\n\t\tconst split = (typeof namespaces === 'string' ? namespaces : '')\n\t\t\t.trim()\n\t\t\t.replace(/\\s+/g, ',')\n\t\t\t.split(',')\n\t\t\t.filter(Boolean);\n\n\t\tfor (const ns of split) {\n\t\t\tif (ns[0] === '-') {\n\t\t\t\tcreateDebug.skips.push(ns.slice(1));\n\t\t\t} else {\n\t\t\t\tcreateDebug.names.push(ns);\n\t\t\t}\n\t\t}\n\t}\n\n\t/**\n\t * Checks if the given string matches a namespace template, honoring\n\t * asterisks as wildcards.\n\t *\n\t * @param {String} search\n\t * @param {String} template\n\t * @return {Boolean}\n\t */\n\tfunction matchesTemplate(search, template) {\n\t\tlet searchIndex = 0;\n\t\tlet templateIndex = 0;\n\t\tlet starIndex = -1;\n\t\tlet matchIndex = 0;\n\n\t\twhile (searchIndex < search.length) {\n\t\t\tif (templateIndex < template.length && (template[templateIndex] === search[searchIndex] || template[templateIndex] === '*')) {\n\t\t\t\t// Match character or proceed with wildcard\n\t\t\t\tif (template[templateIndex] === '*') {\n\t\t\t\t\tstarIndex = templateIndex;\n\t\t\t\t\tmatchIndex = searchIndex;\n\t\t\t\t\ttemplateIndex++; // Skip the '*'\n\t\t\t\t} else {\n\t\t\t\t\tsearchIndex++;\n\t\t\t\t\ttemplateIndex++;\n\t\t\t\t}\n\t\t\t} else if (starIndex !== -1) { // eslint-disable-line no-negated-condition\n\t\t\t\t// Backtrack to the last '*' and try to match more characters\n\t\t\t\ttemplateIndex = starIndex + 1;\n\t\t\t\tmatchIndex++;\n\t\t\t\tsearchIndex = matchIndex;\n\t\t\t} else {\n\t\t\t\treturn false; // No match\n\t\t\t}\n\t\t}\n\n\t\t// Handle trailing '*' in template\n\t\twhile (templateIndex < template.length && template[templateIndex] === '*') {\n\t\t\ttemplateIndex++;\n\t\t}\n\n\t\treturn templateIndex === template.length;\n\t}\n\n\t/**\n\t* Disable debug output.\n\t*\n\t* @return {String} namespaces\n\t* @api public\n\t*/\n\tfunction disable() {\n\t\tconst namespaces = [\n\t\t\t...createDebug.names,\n\t\t\t...createDebug.skips.map(namespace => '-' + namespace)\n\t\t].join(',');\n\t\tcreateDebug.enable('');\n\t\treturn namespaces;\n\t}\n\n\t/**\n\t* Returns true if the given mode name is enabled, false otherwise.\n\t*\n\t* @param {String} name\n\t* @return {Boolean}\n\t* @api public\n\t*/\n\tfunction enabled(name) {\n\t\tfor (const skip of createDebug.skips) {\n\t\t\tif (matchesTemplate(name, skip)) {\n\t\t\t\treturn false;\n\t\t\t}\n\t\t}\n\n\t\tfor (const ns of createDebug.names) {\n\t\t\tif (matchesTemplate(name, ns)) {\n\t\t\t\treturn true;\n\t\t\t}\n\t\t}\n\n\t\treturn false;\n\t}\n\n\t/**\n\t* Coerce `val`.\n\t*\n\t* @param {Mixed} val\n\t* @return {Mixed}\n\t* @api private\n\t*/\n\tfunction coerce(val) {\n\t\tif (val instanceof Error) {\n\t\t\treturn val.stack || val.message;\n\t\t}\n\t\treturn val;\n\t}\n\n\t/**\n\t* XXX DO NOT USE. This is a temporary stub function.\n\t* XXX It WILL be removed in the next major release.\n\t*/\n\tfunction destroy() {\n\t\tconsole.warn('Instance method `debug.destroy()` is deprecated and no longer does anything. It will be removed in the next major version of `debug`.');\n\t}\n\n\tcreateDebug.enable(createDebug.load());\n\n\treturn createDebug;\n}\n\nmodule.exports = setup;\n","/* eslint-env browser */\n\n/**\n * This is the web browser implementation of `debug()`.\n */\n\nexports.formatArgs = formatArgs;\nexports.save = save;\nexports.load = load;\nexports.useColors = useColors;\nexports.storage = localstorage();\nexports.destroy = (() => {\n\tlet warned = false;\n\n\treturn () => {\n\t\tif (!warned) {\n\t\t\twarned = true;\n\t\t\tconsole.warn('Instance method `debug.destroy()` is deprecated and no longer does anything. It will be removed in the next major version of `debug`.');\n\t\t}\n\t};\n})();\n\n/**\n * Colors.\n */\n\nexports.colors = [\n\t'#0000CC',\n\t'#0000FF',\n\t'#0033CC',\n\t'#0033FF',\n\t'#0066CC',\n\t'#0066FF',\n\t'#0099CC',\n\t'#0099FF',\n\t'#00CC00',\n\t'#00CC33',\n\t'#00CC66',\n\t'#00CC99',\n\t'#00CCCC',\n\t'#00CCFF',\n\t'#3300CC',\n\t'#3300FF',\n\t'#3333CC',\n\t'#3333FF',\n\t'#3366CC',\n\t'#3366FF',\n\t'#3399CC',\n\t'#3399FF',\n\t'#33CC00',\n\t'#33CC33',\n\t'#33CC66',\n\t'#33CC99',\n\t'#33CCCC',\n\t'#33CCFF',\n\t'#6600CC',\n\t'#6600FF',\n\t'#6633CC',\n\t'#6633FF',\n\t'#66CC00',\n\t'#66CC33',\n\t'#9900CC',\n\t'#9900FF',\n\t'#9933CC',\n\t'#9933FF',\n\t'#99CC00',\n\t'#99CC33',\n\t'#CC0000',\n\t'#CC0033',\n\t'#CC0066',\n\t'#CC0099',\n\t'#CC00CC',\n\t'#CC00FF',\n\t'#CC3300',\n\t'#CC3333',\n\t'#CC3366',\n\t'#CC3399',\n\t'#CC33CC',\n\t'#CC33FF',\n\t'#CC6600',\n\t'#CC6633',\n\t'#CC9900',\n\t'#CC9933',\n\t'#CCCC00',\n\t'#CCCC33',\n\t'#FF0000',\n\t'#FF0033',\n\t'#FF0066',\n\t'#FF0099',\n\t'#FF00CC',\n\t'#FF00FF',\n\t'#FF3300',\n\t'#FF3333',\n\t'#FF3366',\n\t'#FF3399',\n\t'#FF33CC',\n\t'#FF33FF',\n\t'#FF6600',\n\t'#FF6633',\n\t'#FF9900',\n\t'#FF9933',\n\t'#FFCC00',\n\t'#FFCC33'\n];\n\n/**\n * Currently only WebKit-based Web Inspectors, Firefox >= v31,\n * and the Firebug extension (any Firefox version) are known\n * to support \"%c\" CSS customizations.\n *\n * TODO: add a `localStorage` variable to explicitly enable/disable colors\n */\n\n// eslint-disable-next-line complexity\nfunction useColors() {\n\t// NB: In an Electron preload script, document will be defined but not fully\n\t// initialized. Since we know we're in Chrome, we'll just detect this case\n\t// explicitly\n\tif (typeof window !== 'undefined' && window.process && (window.process.type === 'renderer' || window.process.__nwjs)) {\n\t\treturn true;\n\t}\n\n\t// Internet Explorer and Edge do not support colors.\n\tif (typeof navigator !== 'undefined' && navigator.userAgent && navigator.userAgent.toLowerCase().match(/(edge|trident)\\/(\\d+)/)) {\n\t\treturn false;\n\t}\n\n\tlet m;\n\n\t// Is webkit? http://stackoverflow.com/a/16459606/376773\n\t// document is undefined in react-native: https://github.com/facebook/react-native/pull/1632\n\t// eslint-disable-next-line no-return-assign\n\treturn (typeof document !== 'undefined' && document.documentElement && document.documentElement.style && document.documentElement.style.WebkitAppearance) ||\n\t\t// Is firebug? http://stackoverflow.com/a/398120/376773\n\t\t(typeof window !== 'undefined' && window.console && (window.console.firebug || (window.console.exception && window.console.table))) ||\n\t\t// Is firefox >= v31?\n\t\t// https://developer.mozilla.org/en-US/docs/Tools/Web_Console#Styling_messages\n\t\t(typeof navigator !== 'undefined' && navigator.userAgent && (m = navigator.userAgent.toLowerCase().match(/firefox\\/(\\d+)/)) && parseInt(m[1], 10) >= 31) ||\n\t\t// Double check webkit in userAgent just in case we are in a worker\n\t\t(typeof navigator !== 'undefined' && navigator.userAgent && navigator.userAgent.toLowerCase().match(/applewebkit\\/(\\d+)/));\n}\n\n/**\n * Colorize log arguments if enabled.\n *\n * @api public\n */\n\nfunction formatArgs(args) {\n\targs[0] = (this.useColors ? '%c' : '') +\n\t\tthis.namespace +\n\t\t(this.useColors ? ' %c' : ' ') +\n\t\targs[0] +\n\t\t(this.useColors ? '%c ' : ' ') +\n\t\t'+' + module.exports.humanize(this.diff);\n\n\tif (!this.useColors) {\n\t\treturn;\n\t}\n\n\tconst c = 'color: ' + this.color;\n\targs.splice(1, 0, c, 'color: inherit');\n\n\t// The final \"%c\" is somewhat tricky, because there could be other\n\t// arguments passed either before or after the %c, so we need to\n\t// figure out the correct index to insert the CSS into\n\tlet index = 0;\n\tlet lastC = 0;\n\targs[0].replace(/%[a-zA-Z%]/g, match => {\n\t\tif (match === '%%') {\n\t\t\treturn;\n\t\t}\n\t\tindex++;\n\t\tif (match === '%c') {\n\t\t\t// We only are interested in the *last* %c\n\t\t\t// (the user may have provided their own)\n\t\t\tlastC = index;\n\t\t}\n\t});\n\n\targs.splice(lastC, 0, c);\n}\n\n/**\n * Invokes `console.debug()` when available.\n * No-op when `console.debug` is not a \"function\".\n * If `console.debug` is not available, falls back\n * to `console.log`.\n *\n * @api public\n */\nexports.log = console.debug || console.log || (() => {});\n\n/**\n * Save `namespaces`.\n *\n * @param {String} namespaces\n * @api private\n */\nfunction save(namespaces) {\n\ttry {\n\t\tif (namespaces) {\n\t\t\texports.storage.setItem('debug', namespaces);\n\t\t} else {\n\t\t\texports.storage.removeItem('debug');\n\t\t}\n\t} catch (error) {\n\t\t// Swallow\n\t\t// XXX (@Qix-) should we be logging these?\n\t}\n}\n\n/**\n * Load `namespaces`.\n *\n * @return {String} returns the previously persisted debug modes\n * @api private\n */\nfunction load() {\n\tlet r;\n\ttry {\n\t\tr = exports.storage.getItem('debug') || exports.storage.getItem('DEBUG') ;\n\t} catch (error) {\n\t\t// Swallow\n\t\t// XXX (@Qix-) should we be logging these?\n\t}\n\n\t// If debug isn't set in LS, and we're in Electron, try to load $DEBUG\n\tif (!r && typeof process !== 'undefined' && 'env' in process) {\n\t\tr = process.env.DEBUG;\n\t}\n\n\treturn r;\n}\n\n/**\n * Localstorage attempts to return the localstorage.\n *\n * This is necessary because safari throws\n * when a user disables cookies/localstorage\n * and you attempt to access it.\n *\n * @return {LocalStorage}\n * @api private\n */\n\nfunction localstorage() {\n\ttry {\n\t\t// TVMLKit (Apple TV JS Runtime) does not have a window object, just localStorage in the global context\n\t\t// The Browser also has localStorage in the global context.\n\t\treturn localStorage;\n\t} catch (error) {\n\t\t// Swallow\n\t\t// XXX (@Qix-) should we be logging these?\n\t}\n}\n\nmodule.exports = require('./common')(exports);\n\nconst {formatters} = module.exports;\n\n/**\n * Map %j to `JSON.stringify()`, since no Web Inspectors do that by default.\n */\n\nformatters.j = function (v) {\n\ttry {\n\t\treturn JSON.stringify(v);\n\t} catch (error) {\n\t\treturn '[UnexpectedJSONParseError]: ' + error.message;\n\t}\n};\n","let fn: typeof fetch;\nexport const fetch = async function fetch(\n ...args: Parameters<typeof window.fetch>\n): ReturnType<typeof window.fetch> {\n if (!fn) {\n if (typeof window !== 'undefined' && typeof document !== 'undefined') {\n fn = window.fetch.bind(window);\n } else {\n const fr = await import('fetch-retry');\n const fetchWithRetry = fr.default(globalThis.fetch);\n fn = fetchWithRetry;\n }\n }\n return fn.apply(null, args);\n};\n","import { fetch } from './fetch.js';\n\nexport async function importHttpRuntime<TModule = any>(runtime: string): Promise<TModule> {\n // if browser, use dynamic import\n if (typeof window !== 'undefined' && typeof document !== 'undefined') {\n const module = await import(/* @vite-ignore */ runtime);\n return module as TModule;\n } else {\n const { nodeImportHttpRuntime } = await import('./ImportHttpRuntime.node.js');\n return nodeImportHttpRuntime<TModule>(runtime, { fetchImpl: fetch });\n }\n}\n","// resolveHttpRefToString.ts\n// Follows $ref chains until finding a value without $ref.\n//\n// Rules:\n// - If value is an object with {$ref: string} -> follow it (fetch if http/https URL)\n// - Otherwise -> return the value as-is\n//\n// Browser: tries `import(url, { with: { type: 'json' } })` first, falls back to fetch.\n// Node: uses fetch (Node 18+ has global fetch).\n\nimport debug from 'debug';\nimport { fetch } from './fetch.js';\n\nconst log = debug('efp:loader:resolve');\n\nexport type ResolveOptions = {\n maxHops?: number;\n signal?: AbortSignal;\n // Hook if you want to observe each hop (debug/log/preload metrics)\n onHop?: (info: { hop: number; ref: string; via: 'import' | 'fetch' }) => void;\n fetchCallback?: (ref: string) => void;\n};\n\nexport async function resolve<T>(input: unknown, options: ResolveOptions = {}): Promise<T> {\n const maxHops = options.maxHops ?? 32;\n const seen = new Set<string>();\n\n let cur: unknown = input;\n\n for (let hop = 0; hop < maxHops; hop++) {\n // If it's an object with $ref, follow it\n if (cur && typeof cur === 'object' && '$ref' in cur) {\n const obj = cur as any;\n const ref = obj.$ref;\n\n if (typeof ref !== 'string') {\n throw new Error(`$ref must be a string, got: ${typeof ref}`);\n }\n\n // If it's an http/https URL, fetch it\n if (isHttpUrl(ref)) {\n if (seen.has(ref)) {\n throw new Error(`Circular $ref detected at: ${ref}`);\n }\n seen.add(ref);\n log('Loading JSON ref:', ref);\n options.fetchCallback?.(ref);\n const json = await loadJson(ref, options.signal);\n options.onHop?.({ hop, ref, via: json.__via });\n cur = json.value;\n continue;\n }\n\n // Non-http $ref (e.g., relative, custom schema) - return the object as-is\n // (caller is responsible for handling these)\n return cur as T;\n }\n\n // No $ref found - return current value\n return cur as T;\n }\n\n throw new Error(`Too many ref hops (>${maxHops}). Possible loop or unexpectedly deep chain.`);\n}\n\nfunction isHttpUrl(s: string): boolean {\n return s.startsWith('http://') || s.startsWith('https://');\n}\n\nasync function loadJson(\n url: string,\n signal?: AbortSignal\n): Promise<{ value: unknown; __via: 'import' | 'fetch' }> {\n log('Loading JSON from URL:', url);\n // Try import() JSON first (browser-friendly; depends on runtime/bundler support + CORS)\n const imported = await tryImportJson(url);\n if (imported.ok) return { value: imported.value, __via: 'import' };\n\n log('Importing JSON failed, falling back to fetch():', url);\n // Fallback to fetch\n const res = await fetch(url, {\n method: 'GET',\n signal,\n headers: {\n // Helps some CDNs/content negotiation setups\n Accept: 'application/json, text/plain;q=0.9, */*;q=0.1',\n },\n });\n\n if (!res.ok) {\n throw new Error(`Failed to fetch JSON ref: ${url} (${res.status} ${res.statusText})`);\n }\n\n // Prefer JSON; if server mislabels, fallback to text->JSON parse.\n const ct = res.headers.get('content-type') || '';\n if (ct.includes('application/json') || ct.includes('+json')) {\n return { value: await res.json(), __via: 'fetch' };\n }\n\n const text = await res.text();\n try {\n return { value: JSON.parse(text), __via: 'fetch' };\n } catch {\n // If the endpoint literally returns a plain string (not JSON), accept it.\n return { value: text, __via: 'fetch' };\n }\n}\n\nasync function tryImportJson(\n url: string\n): Promise<{ ok: true; value: unknown } | { ok: false; error: unknown }> {\n // `with: { type: 'json' }` is the modern import assertion form.\n // Some environments still only accept `assert: { type: 'json' }`.\n try {\n log('Trying to import JSON via import():', url);\n //// @ts-expect-error - TS lib definitions differ across versions\n const mod = await import(/* @vite-ignore */ url, { with: { type: 'json' } });\n log('Imported JSON via import():', url);\n return { ok: true, value: mod?.default ?? mod };\n } catch (e1) {\n try {\n //// @ts-expect-error - fallback for older assertion syntax\n log('Trying to import JSON via import() with assert:', url);\n const mod = await import(/* @vite-ignore */ url, { assert: { type: 'json' } });\n log('Imported JSON via import() with assert:', url);\n return { ok: true, value: mod?.default ?? mod };\n } catch (e2) {\n return { ok: false, error: e2 ?? e1 };\n }\n }\n}\n","import debug from 'debug';\nimport { importHttpRuntime } from './importHttpRuntime.js';\nimport { resolve } from './resolve.js';\nimport type { LoaderApi, LoaderApiWithMeta, Manifest, Ref } from './types.js';\n\nconst log = debug('efp:loader');\n\ndeclare global {\n const __efpLoaderBuildInfo: [version: string, builtAt: string] | undefined;\n}\n\nif (typeof __efpLoaderBuildInfo !== 'undefined') {\n log('Initialized', { version: __efpLoaderBuildInfo[0], builtAt: __efpLoaderBuildInfo[1] });\n} else {\n log('Initialized');\n}\n\nexport async function loadApi(\n /**\n * \"url\" or { $ref: \"url\" }, or { runtimeUrl: \"url\" | { $ref: \"url\" } }\n */\n runtimeUrlOrManifest: string | Ref | Manifest,\n options?: {\n fetchCallback?: (ref: string) => void;\n }\n): Promise<LoaderApiWithMeta> {\n let resolvedRoot = await resolve<string>(runtimeUrlOrManifest, {\n fetchCallback: options?.fetchCallback,\n });\n let runtimeUrl: string | undefined = undefined;\n if (typeof resolvedRoot === 'string') {\n runtimeUrl = resolvedRoot;\n } else if (typeof resolvedRoot === 'object' && 'runtimeUrl' in resolvedRoot) {\n const manifest = resolvedRoot as Manifest;\n runtimeUrl = await resolve<string>(manifest.runtimeUrl, {\n fetchCallback: options?.fetchCallback,\n });\n }\n\n if (runtimeUrl === undefined) {\n throw new Error(\n 'Could not determine runtime URL. It must be resolvable to a string or to a manifest with a runtimeUrl property.'\n );\n }\n\n log('Loading runtime:', runtimeUrl);\n // if (typeof manifest === 'string') {\n // manifest = { $ref: manifest };\n // }\n // manifest = await resolve<Manifest>(manifest, { fetchCallback: options?.fetchCallback });\n // const runtime = await resolve<string>(manifest.runtime, {\n // fetchCallback: options?.fetchCallback,\n // });\n\n // log('Resolved runtime URL:', runtime);\n if (typeof runtimeUrl !== 'string') {\n throw new Error('Runtime URL must be a string');\n }\n\n const api = { ...(await importHttpRuntime(runtimeUrl)), meta: { runtimeUrl } } as LoaderApiWithMeta;\n return api; //{ ...api, runtime } as LoaderApi;\n}\n\n// allow calling api functions directly from here\nconst api: LoaderApi = new Proxy(\n {},\n {\n get: (_, prop: string) => {\n return async (...args: any[]) => {\n const param0 = args[0];\n if (param0 == null || typeof param0 !== 'object') {\n throw new Error(`First argument must be a manifest object, got: ${typeof param0}`);\n }\n // const manifest = await resolve<Manifest>(param0);\n // const runtimeUrl = await resolve<string>(manifest.runtimeUrl);\n // if (typeof runtimeUrl !== 'string') {\n // throw new Error('Resolved runtime URL must be a string');\n // }\n\n const runtimeApi = await loadApi(param0);\n const fn = runtimeApi[prop];\n if (typeof fn !== 'function') {\n throw new Error(`API has no function named '${prop}'`);\n }\n return fn.apply(runtimeApi, args as any);\n };\n },\n }\n);\n\nexport async function load(manifest: Manifest | Ref, ...args: unknown[]) {\n return api.load!(manifest, ...args);\n}\n\n// export { resolve } from './resolve';\n\nexport default api;\n"],"names":["hasRequiredMs","s","m","h","d","w","ms","val","options","type","parse","fmtLong","fmtShort","str","match","n","y","msAbs","plural","name","isPlural","hasRequiredCommon","setup","env","createDebug","coerce","disable","enable","enabled","requireMs","key","selectColor","namespace","i","hash","prevTime","enableOverride","namespacesCache","debug","args","curr","self","index","format","formatter","enabledCache","v","delimiter","newDebug","namespaces","split","ns","matchesTemplate","search","template","searchIndex","templateIndex","starIndex","matchIndex","skip","destroy","module","exports","formatArgs","save","load","localstorage","warned","useColors","c","lastC","r","formatters","error","fn","fetch","importHttpRuntime","runtime","nodeImportHttpRuntime","log$1","resolve","maxHops","_a","seen","cur","input","hop","ref","log","_b","json","loadJson","_c","isHttpUrl","url","signal","imported","res","ct","text","tryImportJson","mod","e1","e2","__efpLoaderBuildInfo","loadApi","resolvedRoot","runtimeUrlOrManifest","runtimeUrl","api","_","prop","param0","runtimeApi","manifest"],"mappings":"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","x_google_ignoreList":[0,1,2]}
|
package/dist/esm/resolve.js
CHANGED
|
@@ -48,10 +48,12 @@ function isHttpUrl(s) {
|
|
|
48
48
|
return s.startsWith('http://') || s.startsWith('https://');
|
|
49
49
|
}
|
|
50
50
|
async function loadJson(url, signal) {
|
|
51
|
+
log('Loading JSON from URL:', url);
|
|
51
52
|
// Try import() JSON first (browser-friendly; depends on runtime/bundler support + CORS)
|
|
52
53
|
const imported = await tryImportJson(url);
|
|
53
54
|
if (imported.ok)
|
|
54
55
|
return { value: imported.value, __via: 'import' };
|
|
56
|
+
log('Importing JSON failed, falling back to fetch():', url);
|
|
55
57
|
// Fallback to fetch
|
|
56
58
|
const res = await fetch(url, {
|
|
57
59
|
method: 'GET',
|
|
@@ -82,6 +84,7 @@ async function tryImportJson(url) {
|
|
|
82
84
|
// `with: { type: 'json' }` is the modern import assertion form.
|
|
83
85
|
// Some environments still only accept `assert: { type: 'json' }`.
|
|
84
86
|
try {
|
|
87
|
+
log('Trying to import JSON via import():', url);
|
|
85
88
|
//// @ts-expect-error - TS lib definitions differ across versions
|
|
86
89
|
const mod = await import(/* @vite-ignore */ url, { with: { type: 'json' } });
|
|
87
90
|
log('Imported JSON via import():', url);
|
|
@@ -90,7 +93,9 @@ async function tryImportJson(url) {
|
|
|
90
93
|
catch (e1) {
|
|
91
94
|
try {
|
|
92
95
|
//// @ts-expect-error - fallback for older assertion syntax
|
|
96
|
+
log('Trying to import JSON via import() with assert:', url);
|
|
93
97
|
const mod = await import(/* @vite-ignore */ url, { assert: { type: 'json' } });
|
|
98
|
+
log('Imported JSON via import() with assert:', url);
|
|
94
99
|
return { ok: true, value: mod?.default ?? mod };
|
|
95
100
|
}
|
|
96
101
|
catch (e2) {
|