@wix/astro 1.0.26 → 1.0.28
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/build/index.js +11 -0
- package/build/index.js.map +1 -1
- package/build-browser-runtime/setup.js +69 -1
- package/build-runtime/chunk-B6RICTPP.js +94 -0
- package/build-runtime/chunk-FR26HCAT.js +471 -0
- package/build-runtime/context/elevated.js +8 -1
- package/build-runtime/context/nonElevated.js +5 -1
- package/build-runtime/middleware/auth.js +1 -0
- package/build-runtime/middleware/html-embeds.js +8 -431
- package/build-runtime/routes/paylink/paylink.d.ts +5 -0
- package/build-runtime/routes/paylink/paylink.js +1099 -0
- package/package.json +6 -2
- package/src/client-context/utils.ts +2 -0
- package/src/context/elevated.ts +2 -0
- package/src/context/hostProxy.ts +38 -0
- package/src/context/nonElevated.ts +2 -0
- package/src/index.ts +9 -0
- package/src/middleware/auth.ts +1 -0
- package/src/plugins/setupSsrContext.ts +3 -0
- package/src/routes/paylink/paylink.ts +27 -0
- package/src/utils/authAsyncLocalStorage.ts +1 -0
- package/tsup.config.mjs +3 -0
package/build/index.js
CHANGED
|
@@ -11633,6 +11633,9 @@ var whitelistedFilePaths = [
|
|
|
11633
11633
|
),
|
|
11634
11634
|
fileURLToPath2(
|
|
11635
11635
|
new URL("../build-runtime/routes/auth/logout-callback.js", import.meta.url)
|
|
11636
|
+
),
|
|
11637
|
+
fileURLToPath2(
|
|
11638
|
+
new URL("../build-runtime/routes/paylink/paylink.js", import.meta.url)
|
|
11636
11639
|
)
|
|
11637
11640
|
];
|
|
11638
11641
|
function setupSsrContext(rootDir) {
|
|
@@ -16970,6 +16973,14 @@ var createIntegration = (options = {
|
|
|
16970
16973
|
prerender: false
|
|
16971
16974
|
});
|
|
16972
16975
|
}
|
|
16976
|
+
injectRoute({
|
|
16977
|
+
entrypoint: new URL(
|
|
16978
|
+
"../build-runtime/routes/paylink/paylink.js",
|
|
16979
|
+
import.meta.url
|
|
16980
|
+
),
|
|
16981
|
+
pattern: "/_paylink/[id]",
|
|
16982
|
+
prerender: false
|
|
16983
|
+
});
|
|
16973
16984
|
updateConfig({
|
|
16974
16985
|
env: {
|
|
16975
16986
|
schema: {
|