Vue Storefront Versions Save

Alokai is a Frontend as a Service solution that simplifies composable commerce. It connects all the technologies needed to build and deploy fast & scalable ecommerce frontends. It guides merchants to deliver exceptional customer experiences quickly and easily.

@vue-storefront/[email protected]

1 week ago

Patch Changes

  • [CHANGED] Do not run TS compilation in tests to improve test suite run times

@vue-storefront/[email protected]

1 week ago

Patch Changes

  • [CHANGED] Always clear rollup-plugin-typescript2 cache when building. If you built once with an error, you'd always get an error even if you fixed the underlying code issue that caused the build to fail. This could be fixed by removing node_modules/.cache, but it's better to never create the cache at all.

@vue-storefront/[email protected]

3 weeks ago

Minor Changes

  • [ADDED] Options as a second parameter of createServer. This allows you to pass additional options to cors, body-parser and cookie-parser express middlewares.
import { createServer } from "@vue-storefront/middleware";
import config from "../middleware.config";

createServer(config, {
  cors: {
    origin: "http://localhost:3000",
    credentials: true,
  },
  bodyParser: {
    limit: "50mb",
  },
  cookieParser: {
    secret: "secret",
  },
});
  • [ADDED] http://localhost:4000 to the default cors origin.

@vue-storefront/[email protected]

3 weeks ago

Patch Changes

Turn off @typescript-eslint/no-empty-interface rule

@vue-storefront/[email protected]

3 weeks ago

Patch Changes

  • [REMOVED] Plugin "eslint-plugin-no-unsanitized" was removed due to a license that was noncompliant with our Open Source Guidelines

@vue-storefront/[email protected]

1 month ago

Patch Changes

  • [FIXED] type issue with obligatory generic type argument for Extension interface. Now, it can be used without any type arg.
  • [FIXED] BaseConfig extensibility. Now, it allows to add additional custom properties.

@vue-storefront/[email protected]

1 month ago

Releases

@vue-storefront/[email protected]

Patch Changes

  • [FIXED] issue with type inference. Previously, types were not infered properly when there were no extension declared. Now it has been fixed.

@vue-storefront/[email protected]

1 month ago

Releases

@vue-storefront/[email protected]

Patch Changes

  • [FIXED] handling void response in middlewareModule. Previously an invalid-json error was thrown, now undefined will be returned.

@vue-storefront/[email protected]

1 month ago

Releases

@vue-storefront/[email protected]

Patch Changes

  • [FIXED] error handling for default HTTP client. Default HTTP Client was not throwing an error on each failed request, now it does.

@vue-storefront/[email protected]

1 month ago

Releases

@vue-storefront/[email protected]

Minor changes

  • [ADDED] middlewareModule to createSdk params.
- import { UnifiedApiExtension } from "storefront-middleware/types"
+ import { UnifiedEndpoints } from "storefront-middleware/types"

export const { getSdk } = createSdk(
  options,
-  ({ buildModule, middlewareUrl, getRequestHeaders }) => ({
-    commerce: buildModule(unifiedModule<UnifiedApiExtension>, {
-      apiUrl: `${middlewareUrl}/commerce`,
-      requestOptions: {
-        headers: getRequestHeaders,
+  ({ buildModule, middlewareModule, middlewareUrl, getRequestHeaders }) => ({
+    commerce: buildModule(middlewareModule<UnifiedEndpoints>, {
+      apiUrl: `${middlewareUrl}/commerce`,
+      defaultRequestConfig: {
+        headers: getRequestHeaders(),
      },
    }),
  })
);

@vue-storefront/[email protected]

Minor changes

  • [ADDED] middlewareModule to defineSdkConfig params.
- import { UnifiedApiExtension } from "storefront-middleware/types"
+ import { UnifiedEndpoints } from "storefront-middleware/types"

export default defineSdkConfig(
-  ({ buildModule, middlewareUrl, getRequestHeaders }) => ({
-    commerce: buildModule(unifiedModule<UnifiedApiExtension>, {
-      apiUrl: `${middlewareUrl}/commerce`,
-      requestOptions: { headers: getRequestHeaders },
+  ({ buildModule, middlewareModule, middlewareUrl, getRequestHeaders }) => ({
+      commerce: buildModule(middlewareModule<UnifiedEndpoints>, {
+        apiUrl: `${middlewareUrl}/commerce`,
+        defaultRequestConfig: { headers: getRequestHeaders() },
      }),
  })
);
  • [CHANGED] deprecate getCookieHeader, use getRequestHeaders instead
export default defineSdkConfig(
-  ({ buildModule, middlewareModule, middlewareUrl, getCookieHeader }) => ({
+  ({ buildModule, middlewareModule, middlewareUrl, getRequestHeaders }) => ({
      commerce: buildModule(middlewareModule<UnifiedEndpoints>, {
        apiUrl: `${middlewareUrl}/commerce`,
-        defaultRequestConfig: { headers: getCookieHeader() }, // Only cookie header is included.
+        defaultRequestConfig: { headers: getRequestHeaders() }, // All headers are included.
      }),
  })
);