@fractary/codex 0.10.0 → 0.11.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/dist/index.cjs CHANGED
@@ -3700,6 +3700,24 @@ var SyncManager = class {
3700
3700
  }
3701
3701
  return this.config.default_to_codex || [];
3702
3702
  }
3703
+ /**
3704
+ * Get resolved to-codex include patterns (public accessor)
3705
+ *
3706
+ * Returns the resolved patterns from config, handling both new format
3707
+ * (to_codex.include) and legacy format (default_to_codex).
3708
+ */
3709
+ getToCodexPatterns() {
3710
+ return this.resolveToCodexPatterns();
3711
+ }
3712
+ /**
3713
+ * Get resolved from-codex include patterns (public accessor)
3714
+ *
3715
+ * Returns the resolved patterns from config, handling both new format
3716
+ * (from_codex.include) and legacy format (default_from_codex).
3717
+ */
3718
+ getFromCodexPatterns() {
3719
+ return this.resolveFromCodexPatterns();
3720
+ }
3703
3721
  /**
3704
3722
  * Load the sync manifest
3705
3723
  */