@eventcatalog/sdk 2.5.1 → 2.5.3

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.mjs CHANGED
@@ -400,7 +400,7 @@ import { join as join6, dirname as dirname4, extname } from "path";
400
400
  var getService = (directory) => async (id, version) => getResource(directory, id, version, { type: "service" });
401
401
  var getServices = (directory) => async (options) => getResources(directory, {
402
402
  type: "services",
403
- ignore: ["**/events/**", "**/commands/**", "**/queries/**"],
403
+ ignore: ["**/events/**", "**/commands/**", "**/queries/**", "**/entities/**", "**/subdomains/**/entities/**"],
404
404
  ...options
405
405
  });
406
406
  var writeService = (directory) => async (service, options = {
@@ -502,7 +502,7 @@ import matter3 from "gray-matter";
502
502
  var getDomain = (directory) => async (id, version) => getResource(directory, id, version, { type: "domain" });
503
503
  var getDomains = (directory) => async (options) => getResources(directory, {
504
504
  type: "domains",
505
- ignore: ["**/services/**", "**/events/**", "**/commands/**", "**/queries/**", "**/flows/**"],
505
+ ignore: ["**/services/**", "**/events/**", "**/commands/**", "**/queries/**", "**/flows/**", "**/entities/**"],
506
506
  ...options
507
507
  });
508
508
  var writeDomain = (directory) => async (domain, options = {