npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2025 – Pkg Stats / Ryan Hefner

@shopware/api-gen

v1.4.0

Published

Shopware CLI for API client generation.

Readme

shopware/frontends - api-gen

Welcome to @shopware/api-gen CLI. Generate TypeScript schemas from Shopware OpenAPI specification.

After generating schemas, you can use them in fully typed API Client.

Usage

# ✨ Auto-detect
npx nypm install -D @shopware/api-gen

# npm
npm install -D @shopware/api-gen

# yarn
yarn add -D @shopware/api-gen

# pnpm
pnpm install -D @shopware/api-gen

# bun
bun install -D @shopware/api-gen

# deno
deno install --dev @shopware/api-gen

Features

Generator will create a new directory api-types with TypeScript schemas inside. Depending on the apiType parameter it will create storeApiTypes.ts or adminApiTypes.ts file.

Overriding

If your instance contains inacurate or outdated OpenAPI specification, you can override it by creating a new file inside api-types directory::

  • storeApiTypes.overrides.ts for store API
  • adminApiTypes.overrides.ts for admin API

Example of overrides file:

import type { components as mainComponents } from "./storeApiTypes";

export type components = mainComponents & {
  schemas: Schemas;
};

export type Schemas = {
  CustomerAddress: {
    qwe: string;
  };
};

export type operations = {
  "myNewEndpointWithDifferentBodys post /aaaaa/bbbbb":
    | {
        contentType?: "application/json";
        accept?: "application/json";
        body: components["schemas"]["CustomerAddress"];
        response: components["schemas"]["Country"];
        responseCode: 201;
      }
    | {
        contentType: "application/xml";
        accept?: "application/json";
        body: {
          someting: boolean;
        };
        response: {
          thisIs200Response: string;
        };
        responseCode: 200;
      };
  "updateCustomerAddress patch /account/address/{addressId}": {
    contentType?: "application/json";
    accept?: "application/json";
    /**
     * We're testing overrides, assuming update address can only update the city
     */
    body: {
      city: string;
    };
    response: components["schemas"]["CustomerAddress"];
    responseCode: 200;
  };
};

[!IMPORTANT]
Overriding components or operations in the TS files requires you to have a full object definitions!

Partial overrides

There is a possiblity to add patches (partial overrides) to the schema. Partial overrides are applied directly to the JSON schema, so the syntax needs to be correct. It can then be used by the backend CI tool to validate and apply these patches directly to the schema to fix inconsistencies.

By default CLI is fetching the patches from the api-client repository, but you can provide your own patches file by adding a path to the api-gen.config.json file.

API-specific configuration (Recommended)

You can configure patches and rules separately for Store API and Admin API:

{
  "$schema": "./node_modules/@shopware/api-gen/api-gen.schema.json",
  "store-api": {
    "patches": [
      "storeApiSchema.overrides.json",
      "./api-types/myStoreApiPatches.json"
    ],
    "rules": ["COMPONENTS_API_ALIAS"]
  },
  "admin-api": {
    "patches": ["adminApiSchema.overrides.json"],
    "rules": ["COMPONENTS_API_ALIAS"]
  }
}

This allows you to maintain different configurations for each API type.

Legacy configuration (Deprecated)

The root-level patches and rules properties are deprecated but still supported for backwards compatibility:

{
  "$schema": "./node_modules/@shopware/api-gen/api-gen.schema.json",
  "patches": ["storeApiTypes.overrides.json"]
}

[!WARNING] Root-level patches and rules are deprecated. Please migrate to the API-specific configuration (store-api or admin-api).

You could also use multiple patches and add your own overrides on top:

{
  "$schema": "./node_modules/@shopware/api-gen/api-gen.schema.json",
  "store-api": {
    "patches": [
      "./node_modules/@shopware/api-client/api-types/storeApiSchema.overrides.json",
      "./api-types/myOwnPatches.overrides.json"
    ]
  }
}

and then inside the storeApiTypes.overrides.json file you can add your patches:

{
  "components": {
    "Cart": [
      {
        "required": ["price"]
      },
      {
        "required": ["errors"]
      }
    ]
  }
}

you apply this as 2 independent patches, or combine it as a single patch without array:

{
  "components": {
    "Cart": {
      "required": ["price", "errors"]
    }
  }
}

Creating multiple patches is useful when you want to apply different changes to the same object, which can also be corrected on the backend side independently. This way specific patches are becoming outdated and you get the notification that you can remove them safely.

[!NOTE]
Check our current default patches to see more examples: source.

Commands

add shortcut to your package.json scripts

{
  "scripts": {
    "generate-types": "shopware-api-gen generate --apiType=store"
  }
}

then running pnpm generate-types will generate types in api-types directory.

generate

Transform OpenAPI specification from JSON file to Typescript schemas. Use loadSchema command first.

options:

pnpx @shopware/api-gen generate --help

# generate schemas from store API
pnpx @shopware/api-gen generate --apiType=store

# generate schemas from admin API
pnpx @shopware/api-gen generate --apiType=admin

flags:

  • --debug - display debug logs and additional information which can be helpful in case of issues
  • --logPatches - display patched logs, useful when you want to fix schema in original file

loadSchema

Load OpenAPI specification from Shopware instance and save it to JSON file.

options:

pnpx @shopware/api-gen loadSchema --help

# load schema from store API
pnpx @shopware/api-gen loadSchema --apiType=store

# load schema from admin API
pnpx @shopware/api-gen loadSchema --apiType=admin

flags:

  • --debug - display debug logs and additional information which can be helpful in case of issues
  • --logPatches - display patched logs, useful when you want to fix schema in original file

Remember to add .env file in order to authenticate with Shopware instance.

OPENAPI_JSON_URL="https://your-shop-instance.shopware.store"
## This one needed to fetch store API schema
OPENAPI_ACCESS_KEY="YOUR_STORE_API_ACCESS_KEY"
## These two needed to fetch admin API schema
SHOPWARE_ADMIN_USERNAME="[email protected]"
SHOPWARE_ADMIN_PASSWORD="my-password"

validateJson

This command allow to validate the output JSON file of your instance. You can configure which rules should be applied, we provide you with the schema configuration file, so you can easily modify it.

options:

pnpx @shopware/api-gen validateJson --help

# validate JSON file
pnpx @shopware/api-gen validateJson --apiType=store

this searches for api-types/storeApiTypes.json file and validates it. Use loadSchema command first to fetch your JSON file.

Prepare your config file named api-gen.config.json:

{
  "$schema": "./node_modules/@shopware/api-gen/api-gen.schema.json",
  "store-api": {
    "rules": ["COMPONENTS_API_ALIAS"],
    "patches": ["storeApiSchema.overrides.json"]
  },
  "admin-api": {
    "rules": ["COMPONENTS_API_ALIAS"],
    "patches": ["adminApiSchema.overrides.json"]
  }
}

[!NOTE] The rules configuration is API-type specific. When running validateJson --apiType=store, only the rules defined in store-api.rules will be applied.

split - Experimental

Split an OpenAPI schema into multiple files, organized by tags or paths. This is useful for breaking down a large schema into smaller, more manageable parts.

The main reason for this is that the complete JSON schema can be too large and complex for API clients like Postman or Insomnia to handle, sometimes causing performance issues or import failures due to the file size or circular references. This command helps developers to extract only the parts of the schema they need and then import it to the API client of their choice.

Example usage:

# Display all available tags
pnpx @shopware/api-gen split <path-to-schema-file> --list tags

# Display all available paths
pnpx @shopware/api-gen split <path-to-schema-file> --list paths

# Split schema by tags and show detailed linting errors
pnpx @shopware/api-gen split <path-to-schema-file> --splitBy=tags --outputDir <output-directory> --verbose-linting

# Split schema by a single tag
pnpx @shopware/api-gen split <path-to-schema-file> --splitBy=tags --outputDir <output-directory> --filterBy "media"

# Split schema by a single path
pnpx @shopware/api-gen split <path-to-schema-file> --splitBy=paths --outputDir <output-directory> --filterBy "/api/_action/media/{mediaId}/upload"

Programmatic usage

Each command can also be used programmatically within your own scripts:

generate

import { generate } from "@shopware/api-gen";

await generate({ 
  cwd: process.cwd(),
  filename: "storeApiTypes.ts",
  apiType: "store",
  debug: true,
  logPatches: true,
});

loadSchema

import { loadSchema } from "@shopware/api-gen";

await loadSchema({
  cwd: process.cwd(),
  filename: "storeApiTypes.json",
  apiType: "store",
});

validateJson

import { validateJson } from "@shopware/api-gen";

await validateJson({
  cwd: process.cwd(),
  filename: "storeApiTypes.json",
  apiType: "store",
  logPatches: true,
  debug: true,
});

split

import { split } from "@shopware/api-gen";

await split({
  schemaFile: "path/to/your/schema.json",
  outputDir: "path/to/output/directory",
  splitBy: "tags", // or "paths"
  // filterBy: "TagName" // optional filter
});

[!NOTE]
Make sure that the required environment variables are set for the node process when executing commands programmatically.

Links

Changelog

Full changelog for stable version is available here

Latest changes: 1.4.0

Minor Changes

  • #2181 ed72205 Thanks @patzick! - Add API-specific configuration support for store-api and admin-api in api-gen.config.json. This allows configuring rules and patches separately for each API type. Root-level rules and patches are now deprecated but still supported for backwards compatibility.

    Example:

    {
      "$schema": "./node_modules/@shopware/api-gen/api-gen.schema.json",
      "store-api": {
        "patches": ["storeApiSchema.overrides.json"],
        "rules": ["COMPONENTS_API_ALIAS"]
      },
      "admin-api": {
        "patches": ["adminApiSchema.overrides.json"]
      }
    }
  • #2126 e595bc1 Thanks @mdanilowicz! - Enhanced OpenAPI schema override merging to properly handle conflicts between $ref and composition keywords (oneOf, anyOf, allOf, not). When merging overrides:

    • Composition keywords now automatically remove conflicting $ref properties
    • $ref overrides can replace composition keywords entirely
    • Different composition keywords can replace each other (e.g., allOfoneOf)

    This ensures correct schema merging when using composition keywords in override files, preventing invalid OpenAPI schemas with conflicting $ref and composition keyword properties.

Patch Changes