@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.
@@ -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.1";
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.1";
4351
+ const SDK_VERSION = "0.14.2";
4352
4352
  const registry = {};
4353
4353
  function register(type, info) {
4354
4354
  let typeList = registry[type];
@@ -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.1";
7584
+ const SDK_VERSION = "0.14.2";
7585
7585
  const registry = {};
7586
7586
  function register(type, info) {
7587
7587
  let typeList = registry[type];
@@ -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.1";
7582
+ const SDK_VERSION = "0.14.2";
7583
7583
  const registry = {};
7584
7584
  function register(type, info) {
7585
7585
  let typeList = registry[type];
@@ -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.1";
4455
+ const SDK_VERSION = "0.14.2";
4456
4456
  const registry = {};
4457
4457
  function register(type, info) {
4458
4458
  let typeList = registry[type];
@@ -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.1";
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,6 +1,6 @@
1
1
  {
2
2
  "name": "@builder.io/sdk-qwik",
3
- "version": "0.14.1",
3
+ "version": "0.14.2",
4
4
  "homepage": "https://github.com/BuilderIO/builder/tree/main/packages/sdks/output/qwik",
5
5
  "repository": {
6
6
  "type": "git",
@@ -1 +1 @@
1
- export declare const SDK_VERSION = "0.14.1";
1
+ export declare const SDK_VERSION = "0.14.2";
@@ -22,7 +22,7 @@ export interface GetContentOptions {
22
22
  * }
23
23
  * ```
24
24
  */
25
- userAttributes?: (Record<string, string> & {
25
+ userAttributes?: (Record<string, any> & {
26
26
  urlPath?: string;
27
27
  }) | null;
28
28
  /**