@scayle/storefront-nuxt 7.89.0 → 7.91.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/CHANGELOG.md CHANGED
@@ -1,5 +1,23 @@
1
1
  # @scayle/storefront-nuxt
2
2
 
3
+ ## 7.91.0
4
+
5
+ ### Minor Changes
6
+
7
+ - Remove `category` utils
8
+
9
+ ### Patch Changes
10
+
11
+ **Dependencies**
12
+
13
+ - Updated dependency to @scayle/storefront-core@7.66.2
14
+
15
+ ## 7.90.0
16
+
17
+ ### Minor Changes
18
+
19
+ - Fix RPC context test factory `Log` import
20
+
3
21
  ## 7.89.0
4
22
 
5
23
  ### Minor Changes
package/dist/index.d.mts CHANGED
@@ -1,7 +1,6 @@
1
1
  export { e as AdditionalShopConfig, A as AppKeys, B as BapiConfig, i as CheckoutEvent, C as CheckoutShopConfig, M as ModuleBaseOptions, j as ModulePublicRuntimeConfig, P as PublicShopConfig, R as RedisConfig, d as SapiConfig, a as SessionConfig, f as ShopConfig, g as ShopConfigIndexed, c as StorageConfig, b as StorageEntity, S as StorageProvider, h as StorefrontConfig } from './shared/storefront-nuxt.80aa5060.mjs';
2
2
  export { rpcCall } from '../dist/runtime/rpc/rpcCall.js';
3
3
  export { extendPromise } from '../dist/runtime/utils/promise.js';
4
- export * from '../dist/runtime/utils/category.js';
5
4
  export * from '../dist/runtime/utils/seo.js';
6
5
  export * from '@scayle/storefront-core';
7
6
  export { LogLevel } from '@scayle/storefront-core';
package/dist/index.d.ts CHANGED
@@ -1,7 +1,6 @@
1
1
  export { e as AdditionalShopConfig, A as AppKeys, B as BapiConfig, i as CheckoutEvent, C as CheckoutShopConfig, M as ModuleBaseOptions, j as ModulePublicRuntimeConfig, P as PublicShopConfig, R as RedisConfig, d as SapiConfig, a as SessionConfig, f as ShopConfig, g as ShopConfigIndexed, c as StorageConfig, b as StorageEntity, S as StorageProvider, h as StorefrontConfig } from './shared/storefront-nuxt.80aa5060.js';
2
2
  export { rpcCall } from '../dist/runtime/rpc/rpcCall.js';
3
3
  export { extendPromise } from '../dist/runtime/utils/promise.js';
4
- export * from '../dist/runtime/utils/category.js';
5
4
  export * from '../dist/runtime/utils/seo.js';
6
5
  export * from '@scayle/storefront-core';
7
6
  export { LogLevel } from '@scayle/storefront-core';
package/dist/index.mjs CHANGED
@@ -1,6 +1,5 @@
1
1
  export { rpcCall } from '../dist/runtime/rpc/rpcCall.js';
2
2
  export { extendPromise } from '../dist/runtime/utils/promise.js';
3
- export * from '../dist/runtime/utils/category.js';
4
3
  export * from '../dist/runtime/utils/seo.js';
5
4
  export * from '@scayle/storefront-core';
6
5
  export { unwrap } from '@scayle/storefront-core/dist/utils/response';
package/dist/module.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@scayle/storefront-nuxt",
3
- "version": "7.89.0",
3
+ "version": "7.91.0",
4
4
  "configKey": "storefront",
5
5
  "compatibility": {
6
6
  "nuxt": "^3.9.0"
package/dist/module.mjs CHANGED
@@ -48,7 +48,7 @@ export default {
48
48
  }`;
49
49
  }
50
50
  const PACKAGE_NAME = "@scayle/storefront-nuxt";
51
- const PACKAGE_VERSION = "7.89.0";
51
+ const PACKAGE_VERSION = "7.91.0";
52
52
  const logger = createConsola({
53
53
  fancy: true,
54
54
  formatOptions: {
@@ -1,4 +1,4 @@
1
- declare const _default: import("h3").EventHandler<import("h3").EventHandlerRequest, Promise<string | true | string[] | import("@scayle/storefront-core").ShopUser | import("@scayle/storefront-api").Product | import("@scayle/storefront-api").Product[] | {
1
+ declare const _default: import("h3").EventHandler<import("h3").EventHandlerRequest, Promise<string | true | string[] | import("@scayle/storefront-core").ShopUser | Response | import("@scayle/storefront-api").Product | import("@scayle/storefront-api").Product[] | {
2
2
  count: number;
3
3
  } | {
4
4
  filters: import("@scayle/storefront-api").FiltersEndpointResponseData;
@@ -34,7 +34,7 @@ declare const _default: import("h3").EventHandler<import("h3").EventHandlerReque
34
34
  activeNode: import("@scayle/storefront-api").Category;
35
35
  } | import("@scayle/storefront-core").Order | import("@scayle/storefront-api").TypeaheadSuggestionsEndpointResponseData | import("@scayle/storefront-api").SearchV2SuggestionsEndpointResponseData | import("@scayle/storefront-api").SearchEntity | import("@scayle/storefront-api").ShopConfiguration | {
36
36
  user: import("@scayle/storefront-core").ShopUser | undefined;
37
- } | import("@scayle/storefront-api").Wishlist | Response | import("@scayle/storefront-core").ShopUserAddress[] | {
37
+ } | import("@scayle/storefront-api").Wishlist | import("@scayle/storefront-core").ShopUserAddress[] | {
38
38
  accessToken: string;
39
39
  checkoutJwt: string;
40
40
  } | import("@scayle/storefront-api").VariantDetail[] | import("@scayle/storefront-api").NavigationAllEndpointResponseData | import("@scayle/storefront-api").NavigationTree | {
@@ -1,4 +1,4 @@
1
1
  import type { ConsolaInstance, ConsolaOptions } from 'consola';
2
2
  import type { LogLevel } from '../types/module.js';
3
- import { Log } from './log.js';
3
+ import { Log } from '@scayle/storefront-core';
4
4
  export default function createLog(createConsola: (options?: Partial<ConsolaOptions>) => ConsolaInstance, space: string | undefined, level: LogLevel): Log;
@@ -1,4 +1,4 @@
1
- import { Log } from "./log.js";
1
+ import { Log } from "@scayle/storefront-core";
2
2
  const levelMap = {
3
3
  error: 0,
4
4
  warn: 1,
@@ -1,8 +1,9 @@
1
+ import type { Log } from '@scayle/storefront-core';
1
2
  declare const _default: import("nuxt/app").Plugin<{
2
- log: import("../log").Log;
3
- coreLog: import("../log").Log;
3
+ log: Log;
4
+ coreLog: Log;
4
5
  }> & import("nuxt/app").ObjectPlugin<{
5
- log: import("../log").Log;
6
- coreLog: import("../log").Log;
6
+ log: Log;
7
+ coreLog: Log;
7
8
  }>;
8
9
  export default _default;
@@ -1,8 +1,8 @@
1
1
  declare const _default: import("nuxt/app").Plugin<{
2
- currentShop: import("../../module").PublicShopConfig;
3
- availableShops: import("../../module").PublicShopConfig[];
2
+ currentShop: import("../..").PublicShopConfig;
3
+ availableShops: import("../..").PublicShopConfig[];
4
4
  }> & import("nuxt/app").ObjectPlugin<{
5
- currentShop: import("../../module").PublicShopConfig;
6
- availableShops: import("../../module").PublicShopConfig[];
5
+ currentShop: import("../..").PublicShopConfig;
6
+ availableShops: import("../..").PublicShopConfig[];
7
7
  }>;
8
8
  export default _default;