@builder.io/sdk-qwik 0.14.1 → 0.14.2
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/lib/browser/index.qwik.cjs +1 -1
- package/lib/browser/index.qwik.mjs +1 -1
- package/lib/edge/index.qwik.cjs +1 -1
- package/lib/edge/index.qwik.mjs +1 -1
- package/lib/node/index.qwik.cjs +1 -1
- package/lib/node/index.qwik.mjs +1 -1
- package/package.json +1 -1
- package/types/src/constants/sdk-version.d.ts +1 -1
- package/types/src/functions/get-content/types.d.ts +1 -1
|
@@ -4350,7 +4350,7 @@ function isFromTrustedHost(trustedHosts, e) {
|
|
|
4350
4350
|
const url = new URL(e.origin), hostname = url.hostname;
|
|
4351
4351
|
return (trustedHosts || DEFAULT_TRUSTED_HOSTS).findIndex((trustedHost) => trustedHost.startsWith("*.") ? hostname.endsWith(trustedHost.slice(1)) : trustedHost === hostname) > -1;
|
|
4352
4352
|
}
|
|
4353
|
-
const SDK_VERSION = "0.14.
|
|
4353
|
+
const SDK_VERSION = "0.14.2";
|
|
4354
4354
|
const registry = {};
|
|
4355
4355
|
function register(type, info) {
|
|
4356
4356
|
let typeList = registry[type];
|
|
@@ -4348,7 +4348,7 @@ function isFromTrustedHost(trustedHosts, e) {
|
|
|
4348
4348
|
const url = new URL(e.origin), hostname = url.hostname;
|
|
4349
4349
|
return (trustedHosts || DEFAULT_TRUSTED_HOSTS).findIndex((trustedHost) => trustedHost.startsWith("*.") ? hostname.endsWith(trustedHost.slice(1)) : trustedHost === hostname) > -1;
|
|
4350
4350
|
}
|
|
4351
|
-
const SDK_VERSION = "0.14.
|
|
4351
|
+
const SDK_VERSION = "0.14.2";
|
|
4352
4352
|
const registry = {};
|
|
4353
4353
|
function register(type, info) {
|
|
4354
4354
|
let typeList = registry[type];
|
package/lib/edge/index.qwik.cjs
CHANGED
|
@@ -7581,7 +7581,7 @@ function isFromTrustedHost(trustedHosts, e) {
|
|
|
7581
7581
|
const url = new URL(e.origin), hostname = url.hostname;
|
|
7582
7582
|
return (trustedHosts || DEFAULT_TRUSTED_HOSTS).findIndex((trustedHost) => trustedHost.startsWith("*.") ? hostname.endsWith(trustedHost.slice(1)) : trustedHost === hostname) > -1;
|
|
7583
7583
|
}
|
|
7584
|
-
const SDK_VERSION = "0.14.
|
|
7584
|
+
const SDK_VERSION = "0.14.2";
|
|
7585
7585
|
const registry = {};
|
|
7586
7586
|
function register(type, info) {
|
|
7587
7587
|
let typeList = registry[type];
|
package/lib/edge/index.qwik.mjs
CHANGED
|
@@ -7579,7 +7579,7 @@ function isFromTrustedHost(trustedHosts, e) {
|
|
|
7579
7579
|
const url = new URL(e.origin), hostname = url.hostname;
|
|
7580
7580
|
return (trustedHosts || DEFAULT_TRUSTED_HOSTS).findIndex((trustedHost) => trustedHost.startsWith("*.") ? hostname.endsWith(trustedHost.slice(1)) : trustedHost === hostname) > -1;
|
|
7581
7581
|
}
|
|
7582
|
-
const SDK_VERSION = "0.14.
|
|
7582
|
+
const SDK_VERSION = "0.14.2";
|
|
7583
7583
|
const registry = {};
|
|
7584
7584
|
function register(type, info) {
|
|
7585
7585
|
let typeList = registry[type];
|
package/lib/node/index.qwik.cjs
CHANGED
|
@@ -4452,7 +4452,7 @@ function isFromTrustedHost(trustedHosts, e) {
|
|
|
4452
4452
|
const url = new URL(e.origin), hostname = url.hostname;
|
|
4453
4453
|
return (trustedHosts || DEFAULT_TRUSTED_HOSTS).findIndex((trustedHost) => trustedHost.startsWith("*.") ? hostname.endsWith(trustedHost.slice(1)) : trustedHost === hostname) > -1;
|
|
4454
4454
|
}
|
|
4455
|
-
const SDK_VERSION = "0.14.
|
|
4455
|
+
const SDK_VERSION = "0.14.2";
|
|
4456
4456
|
const registry = {};
|
|
4457
4457
|
function register(type, info) {
|
|
4458
4458
|
let typeList = registry[type];
|
package/lib/node/index.qwik.mjs
CHANGED
|
@@ -4450,7 +4450,7 @@ function isFromTrustedHost(trustedHosts, e) {
|
|
|
4450
4450
|
const url = new URL(e.origin), hostname = url.hostname;
|
|
4451
4451
|
return (trustedHosts || DEFAULT_TRUSTED_HOSTS).findIndex((trustedHost) => trustedHost.startsWith("*.") ? hostname.endsWith(trustedHost.slice(1)) : trustedHost === hostname) > -1;
|
|
4452
4452
|
}
|
|
4453
|
-
const SDK_VERSION = "0.14.
|
|
4453
|
+
const SDK_VERSION = "0.14.2";
|
|
4454
4454
|
const registry = {};
|
|
4455
4455
|
function register(type, info) {
|
|
4456
4456
|
let typeList = registry[type];
|
package/package.json
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export declare const SDK_VERSION = "0.14.
|
|
1
|
+
export declare const SDK_VERSION = "0.14.2";
|