@savvy-web/silk 3.10.0 → 3.10.2

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.
@@ -4975,8 +4975,14 @@ type DependencyAction = typeof DependencyActionSchema.Type;
4975
4975
  * @remarks
4976
4976
  * Unlike {@link DependencyTypeSchema} (which uses plural npm field names like
4977
4977
  * `"dependencies"`), this schema uses singular forms (`"dependency"`) and adds
4978
- * two additional types: `"workspace"` for monorepo workspace references and
4979
- * `"config"` for configuration toolchain updates (e.g., ESLint, TypeScript).
4978
+ * four additional types with no `package.json` dependency-field counterpart:
4979
+ * `"workspace"` for monorepo workspace references, `"config"` for
4980
+ * configuration toolchain updates (e.g., ESLint, TypeScript), `"runtime"` for
4981
+ * language-runtime upgrades (e.g., the Node.js engine itself), and
4982
+ * `"packageManager"` for the package manager's own self-upgrade (pnpm, bun,
4983
+ * npm). `"runtime"` and `"packageManager"` are release-neutral — like
4984
+ * `devDependency` rows they document toolchain movement without implying a
4985
+ * consumer-facing version bump.
4980
4986
  *
4981
4987
  * @example
4982
4988
  * ```typescript
@@ -4993,13 +4999,14 @@ type DependencyAction = typeof DependencyActionSchema.Type;
4993
4999
  *
4994
5000
  * @public
4995
5001
  */
4996
- declare const DependencyTableTypeSchema: Schema.Literals<readonly ["dependency", "devDependency", "peerDependency", "optionalDependency", "workspace", "config"]>;
5002
+ declare const DependencyTableTypeSchema: Schema.Literals<readonly ["dependency", "devDependency", "peerDependency", "optionalDependency", "workspace", "config", "runtime", "packageManager"]>;
4997
5003
  /**
4998
5004
  * Inferred type for {@link DependencyTableTypeSchema}.
4999
5005
  *
5000
5006
  * @remarks
5001
5007
  * One of `"dependency"`, `"devDependency"`, `"peerDependency"`,
5002
- * `"optionalDependency"`, `"workspace"`, or `"config"`.
5008
+ * `"optionalDependency"`, `"workspace"`, `"config"`, `"runtime"`, or
5009
+ * `"packageManager"`.
5003
5010
  *
5004
5011
  * @public
5005
5012
  */
@@ -5084,7 +5091,7 @@ declare const DependencyTableRowSchema: Schema.Struct<{
5084
5091
  /** Package or toolchain name. */
5085
5092
  readonly dependency: Schema.String;
5086
5093
  /** Dependency type. */
5087
- readonly type: Schema.Literals<readonly ["dependency", "devDependency", "peerDependency", "optionalDependency", "workspace", "config"]>;
5094
+ readonly type: Schema.Literals<readonly ["dependency", "devDependency", "peerDependency", "optionalDependency", "workspace", "config", "runtime", "packageManager"]>;
5088
5095
  /** Change action. */
5089
5096
  readonly action: Schema.Literals<readonly ["added", "updated", "removed"]>;
5090
5097
  /** Previous version (em dash for added). */
@@ -5139,7 +5146,7 @@ declare const DependencyTableSchema: Schema.$Array<Schema.Struct<{
5139
5146
  /** Package or toolchain name. */
5140
5147
  readonly dependency: Schema.String;
5141
5148
  /** Dependency type. */
5142
- readonly type: Schema.Literals<readonly ["dependency", "devDependency", "peerDependency", "optionalDependency", "workspace", "config"]>;
5149
+ readonly type: Schema.Literals<readonly ["dependency", "devDependency", "peerDependency", "optionalDependency", "workspace", "config", "runtime", "packageManager"]>;
5143
5150
  /** Change action. */
5144
5151
  readonly action: Schema.Literals<readonly ["added", "updated", "removed"]>;
5145
5152
  /** Previous version (em dash for added). */
@@ -5586,6 +5593,13 @@ declare const MaintenanceNotePlugin: Plugin$1<[MaintenanceNoteOptions], Root>;
5586
5593
  interface TransformOptions {
5587
5594
  /** Insert a Maintenance note into this version block when it ends up empty. */
5588
5595
  readonly maintenance?: MaintenanceNoteOptions;
5596
+ /**
5597
+ * Whether to aggregate `Thanks \@user!` attributions into a `### Thanks`
5598
+ * section (default `true`). When `false`, inline attributions and any
5599
+ * existing Thanks section are stripped and no section is emitted.
5600
+ * Mirrors the `thanks` changelog option in `.changeset/config.json`.
5601
+ */
5602
+ readonly thanks?: boolean;
5589
5603
  }
5590
5604
  /**
5591
5605
  * Static class for post-processing CHANGELOG.md files.
@@ -5662,8 +5676,9 @@ declare class ChangelogTransformer {
5662
5676
  * @remarks
5663
5677
  * The input is parsed with `remark-parse` and `remark-gfm` (for table
5664
5678
  * support), processed through every plugin in {@link SilkChangesetTransformPreset}
5665
- * in order, and stringified back to markdown. The operation is synchronous
5666
- * and idempotent.
5679
+ * in order, and emitted back to markdown through the canonical
5680
+ * `@effected/markdown` stringifier. The operation is synchronous and
5681
+ * idempotent.
5667
5682
  *
5668
5683
  * @param content - Raw CHANGELOG markdown string (may contain multiple
5669
5684
  * version blocks, GFM tables, footnotes, and reference links)
@@ -5703,6 +5718,33 @@ declare class ChangelogTransformer {
5703
5718
  */
5704
5719
  declare const changelogFunctions$1: ChangelogFunctions;
5705
5720
  //#endregion
5721
+ //#region src/changesets/changelog/vanilla.d.ts
5722
+ /**
5723
+ * The stock `\@changesets/changelog-git` changelog implementation.
5724
+ *
5725
+ * @remarks
5726
+ * This is the exact upstream default export (identity-equal, pinned by
5727
+ * test), typed against this package's re-exported {@link ChangelogFunctions}
5728
+ * interface. Use it wherever the plain changesets rendering is wanted
5729
+ * instead of the silk section-aware formatter — e.g. in
5730
+ * `.changeset/config.json` via a changelog module that forwards it, or
5731
+ * programmatically from a release pipeline.
5732
+ *
5733
+ * @example
5734
+ * ```typescript
5735
+ * import { Changesets } from "@savvy-web/silk-effects";
5736
+ *
5737
+ * const line = await Changesets.vanillaChangelogFunctions.getReleaseLine(
5738
+ * { id: "x", summary: "Fix a thing", releases: [{ name: "pkg", type: "patch" }] },
5739
+ * "patch",
5740
+ * null,
5741
+ * );
5742
+ * ```
5743
+ *
5744
+ * @public
5745
+ */
5746
+ declare const vanillaChangelogFunctions: ChangelogFunctions;
5747
+ //#endregion
5706
5748
  //#region src/changesets/errors.d.ts
5707
5749
  /**
5708
5750
  * Tagged errors for \@savvy-web/changesets.
@@ -6329,6 +6371,9 @@ declare const ClassificationReasonSchema: Schema.Union<readonly [Schema.Literal<
6329
6371
  }>, Schema.Struct<{
6330
6372
  readonly kind: Schema.Literal<"versionFile">;
6331
6373
  readonly glob: Schema.String;
6374
+ }>, Schema.Struct<{
6375
+ readonly kind: Schema.Literal<"unmappedHint">;
6376
+ readonly hint: Schema.String;
6332
6377
  }>, Schema.Null]>;
6333
6378
  /** Reason a path was attributed to a package (or left unmapped). @public */
6334
6379
  type ClassificationReason = typeof ClassificationReasonSchema.Type;
@@ -6342,6 +6387,9 @@ declare const ClassificationSchema: Schema.Struct<{
6342
6387
  }>, Schema.Struct<{
6343
6388
  readonly kind: Schema.Literal<"versionFile">;
6344
6389
  readonly glob: Schema.String;
6390
+ }>, Schema.Struct<{
6391
+ readonly kind: Schema.Literal<"unmappedHint">;
6392
+ readonly hint: Schema.String;
6345
6393
  }>, Schema.Null]>;
6346
6394
  }>;
6347
6395
  /** The result of classifying a single path against a resolved config. @public */
@@ -6381,6 +6429,25 @@ interface ConfigInspectorShape {
6381
6429
  * @returns An Effect that clears the cache and succeeds with `void`.
6382
6430
  */
6383
6431
  readonly refresh: () => Effect.Effect<void>;
6432
+ /**
6433
+ * Drop the cached {@link InspectedConfig} for ONE root — the workspace
6434
+ * containing `directory` — leaving every other root's cache and discovery
6435
+ * memo untouched. The per-root counterpart to
6436
+ * {@link ConfigInspectorShape.refresh} for a long-lived host serving many
6437
+ * roots (the savvy-mcp server): refreshing before a per-call `inspect`
6438
+ * should not discard sibling worktrees' state that did not change.
6439
+ *
6440
+ * @remarks
6441
+ * Best-effort by design: a `directory` in no workspace is ignored here and
6442
+ * fails with a proper `ConfigurationError` at the subsequent
6443
+ * `inspect`/`classify` call instead.
6444
+ *
6445
+ * @param directory - Absolute path to the project root (or any directory
6446
+ * inside it).
6447
+ * @returns An Effect that clears that root's cache and succeeds with
6448
+ * `void`.
6449
+ */
6450
+ readonly refreshIn: (directory: string) => Effect.Effect<void>;
6384
6451
  }
6385
6452
  declare const ConfigInspector_base: Context.ServiceClass<ConfigInspector, "ConfigInspector", ConfigInspectorShape>;
6386
6453
  /**
@@ -6441,6 +6508,9 @@ declare const BranchFileEntrySchema: Schema.Struct<{
6441
6508
  }>, Schema.Struct<{
6442
6509
  readonly kind: Schema.Literal<"versionFile">;
6443
6510
  readonly glob: Schema.String;
6511
+ }>, Schema.Struct<{
6512
+ readonly kind: Schema.Literal<"unmappedHint">;
6513
+ readonly hint: Schema.String;
6444
6514
  }>, Schema.Null]>;
6445
6515
  }>;
6446
6516
  /** One file entry in the branch analysis output. @public */
@@ -6459,6 +6529,9 @@ declare const BranchAnalysisSchema: Schema.Struct<{
6459
6529
  }>, Schema.Struct<{
6460
6530
  readonly kind: Schema.Literal<"versionFile">;
6461
6531
  readonly glob: Schema.String;
6532
+ }>, Schema.Struct<{
6533
+ readonly kind: Schema.Literal<"unmappedHint">;
6534
+ readonly hint: Schema.String;
6462
6535
  }>, Schema.Null]>;
6463
6536
  }>>;
6464
6537
  readonly packagesAffected: Schema.$Array<Schema.String>;
@@ -6614,6 +6687,14 @@ declare const ChangesetOptionsSchema: Schema.Struct<{
6614
6687
  readonly issueLinks: Schema.optional<Schema.Boolean>;
6615
6688
  /** Custom issue reference prefixes (e.g., `["#", "GH-"]`). */
6616
6689
  readonly issuePrefixes: Schema.optional<Schema.$Array<Schema.String>>;
6690
+ /**
6691
+ * Whether to credit contributors with `Thanks \@user!` attributions
6692
+ * (aggregated into a `### Thanks` section by the transform pipeline).
6693
+ * Defaults to `true`; set `false` to strip attribution entirely —
6694
+ * no inline thanks and no Thanks section. PR references are kept
6695
+ * either way.
6696
+ */
6697
+ readonly thanks: Schema.optional<Schema.Boolean>;
6617
6698
  /**
6618
6699
  * Per-package release surfaces. Each entry declares `additionalScopes`
6619
6700
  * (globs outside the workspace dir that belong to the package) and
@@ -7026,10 +7107,39 @@ declare function isPureDependencyChangeset(content: string): {
7026
7107
  isPure: boolean;
7027
7108
  package: string | null;
7028
7109
  };
7110
+ /**
7111
+ * Every package name a changeset's YAML frontmatter releases, parsed with the
7112
+ * same lenient `"@pkg": bump` line grammar {@link isPureDependencyChangeset}
7113
+ * uses. A file with no frontmatter, or one whose lines all fail the grammar,
7114
+ * yields an empty list — this feeds an informational surface, so lenient
7115
+ * degradation beats a typed failure.
7116
+ *
7117
+ * @param content - Raw `.changeset/*.md` file contents.
7118
+ *
7119
+ * @public
7120
+ */
7121
+ declare function parseChangesetPackages(content: string): ReadonlyArray<string>;
7122
+ /**
7123
+ * A prose-only changeset that coexists with the run: it releases at least one
7124
+ * package in scope for this run but was left untouched because it carries no
7125
+ * `## Dependencies` section. Purely informational (#279) — surfaced so the
7126
+ * regen/detect result accounts for every changeset touching an in-scope
7127
+ * package, instead of leaving prose entries invisible and forcing a manual
7128
+ * `.changeset/` cross-check.
7129
+ *
7130
+ * @public
7131
+ */
7132
+ interface CoexistingChangeset {
7133
+ /** Absolute path of the untouched prose changeset. */
7134
+ readonly file: string;
7135
+ /** The in-scope packages its frontmatter releases (out-of-scope names are dropped). */
7136
+ readonly packages: ReadonlyArray<string>;
7137
+ }
7029
7138
  /**
7030
7139
  * A complete, side-effect-free regen plan: which stale pure-dependency
7031
7140
  * changesets to delete, which fresh changesets to write (carrying the
7032
- * already-resolved diff), and which mixed changesets were left untouched.
7141
+ * already-resolved diff), which mixed changesets were left untouched, and
7142
+ * which coexisting prose changesets reference in-scope packages.
7033
7143
  *
7034
7144
  * @public
7035
7145
  */
@@ -7044,10 +7154,13 @@ interface RegenPlan {
7044
7154
  readonly diff: WorkspaceDependencyDiff;
7045
7155
  }>;
7046
7156
  readonly skippedMixed: ReadonlyArray<string>;
7157
+ /** Informational: untouched prose changesets releasing in-scope packages (#279). */
7158
+ readonly coexisting: ReadonlyArray<CoexistingChangeset>;
7047
7159
  }
7048
7160
  /**
7049
7161
  * The result of applying a {@link RegenPlan}: the files actually deleted
7050
- * and written, plus the mixed changesets that were skipped.
7162
+ * and written, plus the mixed changesets that were skipped and the
7163
+ * coexisting prose changesets carried through from the plan.
7051
7164
  *
7052
7165
  * @public
7053
7166
  */
@@ -7055,6 +7168,8 @@ interface RegenResult {
7055
7168
  readonly deleted: ReadonlyArray<string>;
7056
7169
  readonly written: ReadonlyArray<string>;
7057
7170
  readonly skippedMixed: ReadonlyArray<string>;
7171
+ /** Informational: untouched prose changesets releasing in-scope packages (#279). */
7172
+ readonly coexisting: ReadonlyArray<CoexistingChangeset>;
7058
7173
  }
7059
7174
  /**
7060
7175
  * Options for {@link DepsRegenShape.plan}.
@@ -7178,10 +7293,16 @@ declare class DepsRegen extends DepsRegen_base {
7178
7293
  * lazily); pass an explicit `cwd` when planning against a different root
7179
7294
  * (fixtures, multi-repo hosts).
7180
7295
  *
7181
- * `Workspaces.layerWithGit` mints a fresh layer reference per call, so the
7182
- * graph is bound ONCE per builder call and shared across every internal
7183
- * branch layer memoization by reference constructs each kit service
7184
- * exactly once.
7296
+ * The graph is `Workspaces.layerWithGitAndConfigDependenciesSubprocess`
7297
+ * `layerWithGit`'s service set with config-dependency hook replay in catalog
7298
+ * assembly, so hook-injected catalogs resolve to ranges (#539). The subprocess
7299
+ * replay is chosen over the in-process one because silk's consumers (the
7300
+ * `savvy` CLI, the `savvy-mcp` server) are bundled, and a bundler compiles the
7301
+ * in-process replay's computed dynamic `import()` into a context module that
7302
+ * cannot resolve at runtime. The kit mints a fresh layer reference per call,
7303
+ * so the graph is bound ONCE per builder call and shared across every internal
7304
+ * branch — layer memoization by reference constructs each kit service exactly
7305
+ * once.
7185
7306
  *
7186
7307
  * @public
7187
7308
  */
@@ -8018,9 +8139,9 @@ declare const LegacyVersionFilesSchema: Schema.$Array<Schema.Struct<{
8018
8139
  * Serialize dependency table rows to a markdown table string.
8019
8140
  *
8020
8141
  * @remarks
8021
- * Combines {@link serializeDependencyTable} with unified/remark-gfm/remark-stringify
8022
- * to produce a ready-to-use GFM markdown table string. The result is trimmed
8023
- * of leading/trailing whitespace.
8142
+ * Combines {@link serializeDependencyTable} with the canonical
8143
+ * `@effected/markdown` emit boundary to produce a ready-to-use GFM markdown
8144
+ * table string. The result is trimmed of leading/trailing whitespace.
8024
8145
  *
8025
8146
  * @param rows - Array of `DependencyTableRow` objects
8026
8147
  * @returns Markdown table string (GFM format)
@@ -8777,7 +8898,7 @@ type Rule$1 = Rule$2;
8777
8898
  * }
8778
8899
  * ```
8779
8900
  *
8780
- * @see {@link https://github.com/savvy-web/changesets/blob/main/docs/rules/CSH003.md | CSH003 rule documentation}
8901
+ * @see {@link https://github.com/savvy-web/systems/blob/main/packages/silk-effects/docs/rules/CSH003.md | CSH003 rule documentation}
8781
8902
  * @see `src/remark/rules/content-structure.ts` for the corresponding remark-lint rule
8782
8903
  *
8783
8904
  * @public
@@ -8817,7 +8938,7 @@ declare const DependencyTableFormatRule$1: Rule$1;
8817
8938
  * }
8818
8939
  * ```
8819
8940
  *
8820
- * @see {@link https://github.com/savvy-web/changesets/blob/main/docs/rules/CSH001.md | CSH001 rule documentation}
8941
+ * @see {@link https://github.com/savvy-web/systems/blob/main/packages/silk-effects/docs/rules/CSH001.md | CSH001 rule documentation}
8821
8942
  * @see `src/remark/rules/heading-hierarchy.ts` for the corresponding remark-lint rule
8822
8943
  *
8823
8944
  * @public
@@ -8849,7 +8970,7 @@ declare const HeadingHierarchyRule$1: Rule$1;
8849
8970
  * }
8850
8971
  * ```
8851
8972
  *
8852
- * @see {@link https://github.com/savvy-web/changesets/blob/main/docs/rules/CSH002.md | CSH002 rule documentation}
8973
+ * @see {@link https://github.com/savvy-web/systems/blob/main/packages/silk-effects/docs/rules/CSH002.md | CSH002 rule documentation}
8853
8974
  * @see `src/remark/rules/required-sections.ts` for the corresponding remark-lint rule
8854
8975
  *
8855
8976
  * @public
@@ -8882,7 +9003,7 @@ declare const RequiredSectionsRule$1: Rule$1;
8882
9003
  * }
8883
9004
  * ```
8884
9005
  *
8885
- * @see {@link https://github.com/savvy-web/changesets/blob/main/docs/rules/CSH004.md | CSH004 rule documentation}
9006
+ * @see {@link https://github.com/savvy-web/systems/blob/main/packages/silk-effects/docs/rules/CSH004.md | CSH004 rule documentation}
8886
9007
  * @see `src/remark/rules/uncategorized-content.ts` for the corresponding remark-lint rule
8887
9008
  *
8888
9009
  * @public
@@ -8908,7 +9029,20 @@ declare const SilkChangesetsRules: Rule$1[];
8908
9029
  declare const AggregateDependencyTablesPlugin: Plugin$1<[], Root>;
8909
9030
  //#endregion
8910
9031
  //#region src/changesets/remark/plugins/contributor-footnotes.d.ts
8911
- declare const ContributorFootnotesPlugin: Plugin$1<[], Root>;
9032
+ /**
9033
+ * Options for {@link ContributorFootnotesPlugin}.
9034
+ *
9035
+ * @public
9036
+ */
9037
+ interface ContributorFootnotesOptions {
9038
+ /**
9039
+ * Whether to emit the aggregated `### Thanks` section. Defaults to
9040
+ * `true`. When `false`, inline attributions and any existing Thanks
9041
+ * section are stripped and nothing is emitted.
9042
+ */
9043
+ readonly thanks?: boolean;
9044
+ }
9045
+ declare const ContributorFootnotesPlugin: Plugin$1<[ContributorFootnotesOptions?], Root>;
8912
9046
  //#endregion
8913
9047
  //#region src/changesets/remark/plugins/deduplicate-items.d.ts
8914
9048
  declare const DeduplicateItemsPlugin: Plugin$1<[], Root>;
@@ -9013,7 +9147,7 @@ declare const SilkChangesetPreset: readonly [Plugin<Root, unknown>, Plugin<Root,
9013
9147
  *
9014
9148
  * @public
9015
9149
  */
9016
- declare const SilkChangesetTransformPreset: readonly [Plugin$1<[], Root>, Plugin$1<[], Root>, Plugin$1<[], Root>, Plugin$1<[], Root>, Plugin$1<[], Root>, Plugin$1<[], Root>, Plugin$1<[], Root>];
9150
+ declare const SilkChangesetTransformPreset: readonly [Plugin$1<[], Root>, Plugin$1<[], Root>, Plugin$1<[], Root>, Plugin$1<[], Root>, Plugin$1<[ContributorFootnotesOptions?], Root>, Plugin$1<[], Root>, Plugin$1<[], Root>];
9017
9151
  //#endregion
9018
9152
  //#region src/changesets/remark/rules/content-structure.d.ts
9019
9153
  declare const ContentStructureRule: Plugin<Root, unknown>;
@@ -9030,7 +9164,7 @@ declare const RequiredSectionsRule: Plugin<Root, unknown>;
9030
9164
  //#region src/changesets/remark/rules/uncategorized-content.d.ts
9031
9165
  declare const UncategorizedContentRule: Plugin<Root, unknown>;
9032
9166
  declare namespace index_d_exports {
9033
- export { AggregateDependencyTablesPlugin, AppliedRelease, AppliedReleaseEntrySchema, AppliedReleaseSchema, BranchAnalysis, BranchAnalysisSchema, BranchAnalyzer, BranchAnalyzerShape, BranchFileEntry, BranchFileEntrySchema, BumpType, BumpTypeSchema, Categories, Changelog, ChangelogService, ChangelogServiceShape, ChangelogTransformer, Changeset, ChangesetIOError, ChangesetLinter, ChangesetOptions, ChangesetOptionsSchema, ChangesetPreview, ChangesetPreviewSchema, ChangesetSchema, ChangesetSummarySchema, ChangesetValidationError, Classification, ClassificationReason, ClassificationReasonSchema, ClassificationSchema, CommitHashSchema, ConfigInspector, ConfigInspectorShape, ConfigurationError, ContentStructureRule, ContributorFootnotesPlugin, DeduplicateItemsPlugin, DependencyAction, DependencyActionSchema, DependencyTable, DependencyTableFormatRule, DependencyTableRow, DependencyTableRowSchema, DependencyTableSchema, DependencyTableType, DependencyTableTypeSchema, DependencyType, DependencyTypeSchema, DependencyUpdate, DependencyUpdateSchema, DepsRegen, DepsRegenDefault, DepsRegenOptions, DepsRegenPlanError, DepsRegenShape, FileStatus, FileStatusSchema, GitError, GitHubApiError, GitHubCommitInfo, GitHubInfo, GitHubInfoSchema, GitHubService, GitHubServiceShape, GlobSchema, HeadingHierarchyRule, InspectedConfig, InspectedConfigSchema, IssueLinkRefsPlugin, IssueNumberSchema, JsonPathSchema, LegacyVersionFileConfig, LegacyVersionFileConfigSchema, LegacyVersionFilesSchema, LintMessage, MaintenanceNoteOptions, MaintenanceNotePlugin, MaintenanceReason, MaintenanceReasonSchema, MaintenanceTrigger, MaintenanceTriggerSchema, MarkdownParseError, ContentStructureRule$1 as MarkdownlintContentStructureRule, DependencyTableFormatRule$1 as MarkdownlintDependencyTableFormatRule, HeadingHierarchyRule$1 as MarkdownlintHeadingHierarchyRule, RequiredSectionsRule$1 as MarkdownlintRequiredSectionsRule, UncategorizedContentRule$1 as MarkdownlintUncategorizedContentRule, MergeSectionsPlugin, NonEmptyString, NormalizeFormatPlugin, PackageScope, PackageScopeSchema, PackagesRecordSchema, PendingChangeset, PendingChangesetSchema, PositiveInteger, PreviewRelease, PreviewReleaseSchema, RegenPlan, RegenResult, ReleasePlanError, ReleasePlanner, ReleasePlannerShape, ReorderSectionsPlugin, RepoSchema, RequiredSectionsRule, ResolvedPackageScope, ResolvedPackageScopeSchema, ResolvedVersionFile, ResolvedVersionFileSchema, SectionCategory, SectionCategorySchema, SilkChangesetPreset, SilkChangesetTransformPreset, SilkChangesetsRules, TransformOptions, UncategorizedContentRule, UrlOrMarkdownLinkSchema, UsernameSchema, VERSION_RE, VersionFileConfig, VersionFileConfigSchema, VersionFileError, VersionFileUpdate, VersionFileUpdateRecordSchema, VersionFiles, VersionFilesSchema, VersionOrEmptySchema, VersionType, VersionTypeSchema, WorkspaceDependencyDiff, WorkspaceVersion, changelogFunctions$1 as changelogFunctions, computeWorkspaceDependencyDiffs, deriveMaintenanceReason, gitMergeBase, isPureDependencyChangeset, listPublishablePackageNames, makeBranchAnalyzerTest, makeConfigInspectorTest, makeDepsRegenDefault, makeGitHubTest, makeReleasePlannerTest, serializeDependencyTableToMarkdown };
9167
+ export { AggregateDependencyTablesPlugin, AppliedRelease, AppliedReleaseEntrySchema, AppliedReleaseSchema, BranchAnalysis, BranchAnalysisSchema, BranchAnalyzer, BranchAnalyzerShape, BranchFileEntry, BranchFileEntrySchema, BumpType, BumpTypeSchema, Categories, Changelog, ChangelogService, ChangelogServiceShape, ChangelogTransformer, Changeset, ChangesetIOError, ChangesetLinter, ChangesetOptions, ChangesetOptionsSchema, ChangesetPreview, ChangesetPreviewSchema, ChangesetSchema, ChangesetSummarySchema, ChangesetValidationError, Classification, ClassificationReason, ClassificationReasonSchema, ClassificationSchema, CoexistingChangeset, CommitHashSchema, ConfigInspector, ConfigInspectorShape, ConfigurationError, ContentStructureRule, ContributorFootnotesPlugin, DeduplicateItemsPlugin, DependencyAction, DependencyActionSchema, DependencyTable, DependencyTableFormatRule, DependencyTableRow, DependencyTableRowSchema, DependencyTableSchema, DependencyTableType, DependencyTableTypeSchema, DependencyType, DependencyTypeSchema, DependencyUpdate, DependencyUpdateSchema, DepsRegen, DepsRegenDefault, DepsRegenOptions, DepsRegenPlanError, DepsRegenShape, FileStatus, FileStatusSchema, GitError, GitHubApiError, GitHubCommitInfo, GitHubInfo, GitHubInfoSchema, GitHubService, GitHubServiceShape, GlobSchema, HeadingHierarchyRule, InspectedConfig, InspectedConfigSchema, IssueLinkRefsPlugin, IssueNumberSchema, JsonPathSchema, LegacyVersionFileConfig, LegacyVersionFileConfigSchema, LegacyVersionFilesSchema, LintMessage, MaintenanceNoteOptions, MaintenanceNotePlugin, MaintenanceReason, MaintenanceReasonSchema, MaintenanceTrigger, MaintenanceTriggerSchema, MarkdownParseError, ContentStructureRule$1 as MarkdownlintContentStructureRule, DependencyTableFormatRule$1 as MarkdownlintDependencyTableFormatRule, HeadingHierarchyRule$1 as MarkdownlintHeadingHierarchyRule, RequiredSectionsRule$1 as MarkdownlintRequiredSectionsRule, UncategorizedContentRule$1 as MarkdownlintUncategorizedContentRule, MergeSectionsPlugin, NonEmptyString, NormalizeFormatPlugin, PackageScope, PackageScopeSchema, PackagesRecordSchema, PendingChangeset, PendingChangesetSchema, PositiveInteger, PreviewRelease, PreviewReleaseSchema, RegenPlan, RegenResult, ReleasePlanError, ReleasePlanner, ReleasePlannerShape, ReorderSectionsPlugin, RepoSchema, RequiredSectionsRule, ResolvedPackageScope, ResolvedPackageScopeSchema, ResolvedVersionFile, ResolvedVersionFileSchema, SectionCategory, SectionCategorySchema, SilkChangesetPreset, SilkChangesetTransformPreset, SilkChangesetsRules, TransformOptions, UncategorizedContentRule, UrlOrMarkdownLinkSchema, UsernameSchema, VERSION_RE, VersionFileConfig, VersionFileConfigSchema, VersionFileError, VersionFileUpdate, VersionFileUpdateRecordSchema, VersionFiles, VersionFilesSchema, VersionOrEmptySchema, VersionType, VersionTypeSchema, WorkspaceDependencyDiff, WorkspaceVersion, changelogFunctions$1 as changelogFunctions, computeWorkspaceDependencyDiffs, deriveMaintenanceReason, gitMergeBase, isPureDependencyChangeset, listPublishablePackageNames, makeBranchAnalyzerTest, makeConfigInspectorTest, makeDepsRegenDefault, makeGitHubTest, makeReleasePlannerTest, parseChangesetPackages, serializeDependencyTableToMarkdown, vanillaChangelogFunctions };
9034
9168
  }
9035
9169
  //#endregion
9036
9170
  //#region src/changesets/changelog.d.ts