@pod-os/core 0.11.2-dec48f2.0 → 0.11.2-e654d19.0
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/{chunk-NJZBRQIY.js → chunk-K3YKITD7.js} +0 -49
- package/dist/dist-L3AA3UET.js +905 -0
- package/dist/index.js +56 -9
- package/lib/index.js +642 -95
- package/package.json +2 -2
- package/types/authentication/index.d.ts +2 -1
- package/types/index.d.ts +2 -2
- package/dist/dist-D3HKZNEN.js +0 -384
|
@@ -25837,56 +25837,7 @@ var UpdateManager = /* @__PURE__ */ function() {
|
|
|
25837
25837
|
return UpdateManager2;
|
|
25838
25838
|
}();
|
|
25839
25839
|
|
|
25840
|
-
// ../node_modules/uuid/dist/esm-browser/native.js
|
|
25841
|
-
var randomUUID = typeof crypto !== "undefined" && crypto.randomUUID && crypto.randomUUID.bind(crypto);
|
|
25842
|
-
var native_default = {
|
|
25843
|
-
randomUUID
|
|
25844
|
-
};
|
|
25845
|
-
|
|
25846
|
-
// ../node_modules/uuid/dist/esm-browser/rng.js
|
|
25847
|
-
var getRandomValues;
|
|
25848
|
-
var rnds8 = new Uint8Array(16);
|
|
25849
|
-
function rng() {
|
|
25850
|
-
if (!getRandomValues) {
|
|
25851
|
-
getRandomValues = typeof crypto !== "undefined" && crypto.getRandomValues && crypto.getRandomValues.bind(crypto);
|
|
25852
|
-
if (!getRandomValues) {
|
|
25853
|
-
throw new Error("crypto.getRandomValues() not supported. See https://github.com/uuidjs/uuid#getrandomvalues-not-supported");
|
|
25854
|
-
}
|
|
25855
|
-
}
|
|
25856
|
-
return getRandomValues(rnds8);
|
|
25857
|
-
}
|
|
25858
|
-
|
|
25859
|
-
// ../node_modules/uuid/dist/esm-browser/stringify.js
|
|
25860
|
-
var byteToHex = [];
|
|
25861
|
-
for (let i = 0; i < 256; ++i) {
|
|
25862
|
-
byteToHex.push((i + 256).toString(16).slice(1));
|
|
25863
|
-
}
|
|
25864
|
-
function unsafeStringify(arr, offset = 0) {
|
|
25865
|
-
return byteToHex[arr[offset + 0]] + byteToHex[arr[offset + 1]] + byteToHex[arr[offset + 2]] + byteToHex[arr[offset + 3]] + "-" + byteToHex[arr[offset + 4]] + byteToHex[arr[offset + 5]] + "-" + byteToHex[arr[offset + 6]] + byteToHex[arr[offset + 7]] + "-" + byteToHex[arr[offset + 8]] + byteToHex[arr[offset + 9]] + "-" + byteToHex[arr[offset + 10]] + byteToHex[arr[offset + 11]] + byteToHex[arr[offset + 12]] + byteToHex[arr[offset + 13]] + byteToHex[arr[offset + 14]] + byteToHex[arr[offset + 15]];
|
|
25866
|
-
}
|
|
25867
|
-
|
|
25868
|
-
// ../node_modules/uuid/dist/esm-browser/v4.js
|
|
25869
|
-
function v4(options, buf, offset) {
|
|
25870
|
-
if (native_default.randomUUID && !buf && !options) {
|
|
25871
|
-
return native_default.randomUUID();
|
|
25872
|
-
}
|
|
25873
|
-
options = options || {};
|
|
25874
|
-
const rnds = options.random || (options.rng || rng)();
|
|
25875
|
-
rnds[6] = rnds[6] & 15 | 64;
|
|
25876
|
-
rnds[8] = rnds[8] & 63 | 128;
|
|
25877
|
-
if (buf) {
|
|
25878
|
-
offset = offset || 0;
|
|
25879
|
-
for (let i = 0; i < 16; ++i) {
|
|
25880
|
-
buf[offset + i] = rnds[i];
|
|
25881
|
-
}
|
|
25882
|
-
return buf;
|
|
25883
|
-
}
|
|
25884
|
-
return unsafeStringify(rnds);
|
|
25885
|
-
}
|
|
25886
|
-
var v4_default = v4;
|
|
25887
|
-
|
|
25888
25840
|
export {
|
|
25889
|
-
v4_default,
|
|
25890
25841
|
isLiteral,
|
|
25891
25842
|
isNamedNode,
|
|
25892
25843
|
isBlankNode,
|