@labdigital/commercetools-mock 2.50.0 → 2.50.1

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/dist/index.js CHANGED
@@ -7459,7 +7459,7 @@ var CommercetoolsMock = class {
7459
7459
  this._repositories = createRepositories(config);
7460
7460
  this._oauth2.setCustomerRepository(this._repositories.customer);
7461
7461
  const app = express();
7462
- app.use(express.json());
7462
+ app.use(express.json({ limit: "16mb" }));
7463
7463
  const projectRouter = express.Router({ mergeParams: true });
7464
7464
  if (!options?.silent) app.use(morgan("tiny"));
7465
7465
  app.use("/oauth", this._oauth2.createRouter());