@riddledc/riddle-proof 0.7.191 → 0.7.192
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-BG5GVTGM.js → chunk-UKMTTGQ4.js} +13 -9
- package/dist/cli.cjs +13 -9
- package/dist/cli.js +1 -1
- package/dist/index.cjs +13 -9
- package/dist/index.js +1 -1
- package/dist/profile.cjs +13 -9
- package/dist/profile.js +1 -1
- package/package.json +1 -1
|
@@ -5841,19 +5841,23 @@ async function ensureProfilePageHelpers(context) {
|
|
|
5841
5841
|
const existing = window.__riddleProofProfile && typeof window.__riddleProofProfile === "object"
|
|
5842
5842
|
? window.__riddleProofProfile
|
|
5843
5843
|
: {};
|
|
5844
|
-
|
|
5845
|
-
|
|
5846
|
-
|
|
5847
|
-
|
|
5848
|
-
|
|
5849
|
-
|
|
5850
|
-
|
|
5851
|
-
|
|
5852
|
-
|
|
5844
|
+
const refreshSnapshot = () => {
|
|
5845
|
+
const route = currentRoute();
|
|
5846
|
+
existing.current = route;
|
|
5847
|
+
existing.appPath = route.appPath;
|
|
5848
|
+
existing.appRoute = route.appRoute;
|
|
5849
|
+
existing.basePath = route.basePath;
|
|
5850
|
+
existing.previewMountPrefix = route.previewMountPrefix;
|
|
5851
|
+
existing.mountedPath = route.mountedPath;
|
|
5852
|
+
existing.mountedRoute = route.mountedRoute;
|
|
5853
|
+
return route;
|
|
5854
|
+
};
|
|
5853
5855
|
existing.version = "riddle-proof.profile-helper.v1";
|
|
5854
5856
|
existing.route = currentRoute;
|
|
5855
5857
|
existing.getRoute = currentRoute;
|
|
5858
|
+
existing.refresh = refreshSnapshot;
|
|
5856
5859
|
existing.joinRoute = joinRoute;
|
|
5860
|
+
refreshSnapshot();
|
|
5857
5861
|
window.__riddleProofProfile = existing;
|
|
5858
5862
|
}, { targetUrl });
|
|
5859
5863
|
} catch {
|
package/dist/cli.cjs
CHANGED
|
@@ -12782,19 +12782,23 @@ async function ensureProfilePageHelpers(context) {
|
|
|
12782
12782
|
const existing = window.__riddleProofProfile && typeof window.__riddleProofProfile === "object"
|
|
12783
12783
|
? window.__riddleProofProfile
|
|
12784
12784
|
: {};
|
|
12785
|
-
|
|
12786
|
-
|
|
12787
|
-
|
|
12788
|
-
|
|
12789
|
-
|
|
12790
|
-
|
|
12791
|
-
|
|
12792
|
-
|
|
12793
|
-
|
|
12785
|
+
const refreshSnapshot = () => {
|
|
12786
|
+
const route = currentRoute();
|
|
12787
|
+
existing.current = route;
|
|
12788
|
+
existing.appPath = route.appPath;
|
|
12789
|
+
existing.appRoute = route.appRoute;
|
|
12790
|
+
existing.basePath = route.basePath;
|
|
12791
|
+
existing.previewMountPrefix = route.previewMountPrefix;
|
|
12792
|
+
existing.mountedPath = route.mountedPath;
|
|
12793
|
+
existing.mountedRoute = route.mountedRoute;
|
|
12794
|
+
return route;
|
|
12795
|
+
};
|
|
12794
12796
|
existing.version = "riddle-proof.profile-helper.v1";
|
|
12795
12797
|
existing.route = currentRoute;
|
|
12796
12798
|
existing.getRoute = currentRoute;
|
|
12799
|
+
existing.refresh = refreshSnapshot;
|
|
12797
12800
|
existing.joinRoute = joinRoute;
|
|
12801
|
+
refreshSnapshot();
|
|
12798
12802
|
window.__riddleProofProfile = existing;
|
|
12799
12803
|
}, { targetUrl });
|
|
12800
12804
|
} catch {
|
package/dist/cli.js
CHANGED
package/dist/index.cjs
CHANGED
|
@@ -14574,19 +14574,23 @@ async function ensureProfilePageHelpers(context) {
|
|
|
14574
14574
|
const existing = window.__riddleProofProfile && typeof window.__riddleProofProfile === "object"
|
|
14575
14575
|
? window.__riddleProofProfile
|
|
14576
14576
|
: {};
|
|
14577
|
-
|
|
14578
|
-
|
|
14579
|
-
|
|
14580
|
-
|
|
14581
|
-
|
|
14582
|
-
|
|
14583
|
-
|
|
14584
|
-
|
|
14585
|
-
|
|
14577
|
+
const refreshSnapshot = () => {
|
|
14578
|
+
const route = currentRoute();
|
|
14579
|
+
existing.current = route;
|
|
14580
|
+
existing.appPath = route.appPath;
|
|
14581
|
+
existing.appRoute = route.appRoute;
|
|
14582
|
+
existing.basePath = route.basePath;
|
|
14583
|
+
existing.previewMountPrefix = route.previewMountPrefix;
|
|
14584
|
+
existing.mountedPath = route.mountedPath;
|
|
14585
|
+
existing.mountedRoute = route.mountedRoute;
|
|
14586
|
+
return route;
|
|
14587
|
+
};
|
|
14586
14588
|
existing.version = "riddle-proof.profile-helper.v1";
|
|
14587
14589
|
existing.route = currentRoute;
|
|
14588
14590
|
existing.getRoute = currentRoute;
|
|
14591
|
+
existing.refresh = refreshSnapshot;
|
|
14589
14592
|
existing.joinRoute = joinRoute;
|
|
14593
|
+
refreshSnapshot();
|
|
14590
14594
|
window.__riddleProofProfile = existing;
|
|
14591
14595
|
}, { targetUrl });
|
|
14592
14596
|
} catch {
|
package/dist/index.js
CHANGED
|
@@ -62,7 +62,7 @@ import {
|
|
|
62
62
|
resolveRiddleProofProfileTimeoutSec,
|
|
63
63
|
slugifyRiddleProofProfileName,
|
|
64
64
|
summarizeRiddleProofProfileResult
|
|
65
|
-
} from "./chunk-
|
|
65
|
+
} from "./chunk-UKMTTGQ4.js";
|
|
66
66
|
import {
|
|
67
67
|
DEFAULT_RIDDLE_API_BASE_URL,
|
|
68
68
|
DEFAULT_RIDDLE_API_KEY_FILE,
|
package/dist/profile.cjs
CHANGED
|
@@ -5888,19 +5888,23 @@ async function ensureProfilePageHelpers(context) {
|
|
|
5888
5888
|
const existing = window.__riddleProofProfile && typeof window.__riddleProofProfile === "object"
|
|
5889
5889
|
? window.__riddleProofProfile
|
|
5890
5890
|
: {};
|
|
5891
|
-
|
|
5892
|
-
|
|
5893
|
-
|
|
5894
|
-
|
|
5895
|
-
|
|
5896
|
-
|
|
5897
|
-
|
|
5898
|
-
|
|
5899
|
-
|
|
5891
|
+
const refreshSnapshot = () => {
|
|
5892
|
+
const route = currentRoute();
|
|
5893
|
+
existing.current = route;
|
|
5894
|
+
existing.appPath = route.appPath;
|
|
5895
|
+
existing.appRoute = route.appRoute;
|
|
5896
|
+
existing.basePath = route.basePath;
|
|
5897
|
+
existing.previewMountPrefix = route.previewMountPrefix;
|
|
5898
|
+
existing.mountedPath = route.mountedPath;
|
|
5899
|
+
existing.mountedRoute = route.mountedRoute;
|
|
5900
|
+
return route;
|
|
5901
|
+
};
|
|
5900
5902
|
existing.version = "riddle-proof.profile-helper.v1";
|
|
5901
5903
|
existing.route = currentRoute;
|
|
5902
5904
|
existing.getRoute = currentRoute;
|
|
5905
|
+
existing.refresh = refreshSnapshot;
|
|
5903
5906
|
existing.joinRoute = joinRoute;
|
|
5907
|
+
refreshSnapshot();
|
|
5904
5908
|
window.__riddleProofProfile = existing;
|
|
5905
5909
|
}, { targetUrl });
|
|
5906
5910
|
} catch {
|
package/dist/profile.js
CHANGED
|
@@ -23,7 +23,7 @@ import {
|
|
|
23
23
|
resolveRiddleProofProfileTimeoutSec,
|
|
24
24
|
slugifyRiddleProofProfileName,
|
|
25
25
|
summarizeRiddleProofProfileResult
|
|
26
|
-
} from "./chunk-
|
|
26
|
+
} from "./chunk-UKMTTGQ4.js";
|
|
27
27
|
export {
|
|
28
28
|
RIDDLE_PROOF_PROFILE_CHECK_TYPES,
|
|
29
29
|
RIDDLE_PROOF_PROFILE_EVIDENCE_VERSION,
|