@karmaniverous/stan-core 0.10.0 → 0.10.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/README.md +11 -3
- package/dist/mjs/index.js +1 -1
- package/dist/types/index.d.ts +3 -1
- package/package.json +1 -1
package/dist/types/index.d.ts
CHANGED
|
@@ -726,6 +726,7 @@ declare const createArchiveDiffWithDependencyContext: (args: {
|
|
|
726
726
|
updateSnapshot?: SnapshotUpdateMode;
|
|
727
727
|
includeOutputDirInDiff?: boolean;
|
|
728
728
|
onArchiveWarnings?: (text: string) => void;
|
|
729
|
+
onSelectionReport?: (report: SelectionReport) => void;
|
|
729
730
|
};
|
|
730
731
|
}) => Promise<CreateArchiveDiffWithDependencyContextResult>;
|
|
731
732
|
|
|
@@ -843,7 +844,7 @@ declare const buildDependencyMeta: (args: BuildDependencyMetaArgs) => Promise<Bu
|
|
|
843
844
|
* @module
|
|
844
845
|
*/
|
|
845
846
|
|
|
846
|
-
type CreateContextArchiveOptions = Pick<CreateArchiveFromFilesOptions, 'fileName' | 'onArchiveWarnings'> & {
|
|
847
|
+
type CreateContextArchiveOptions = Pick<CreateArchiveFromFilesOptions, 'fileName' | 'onArchiveWarnings' | 'onSelectionReport'> & {
|
|
847
848
|
/** Context mode should remain allowlist-only; output dir inclusion is rarely desired. */
|
|
848
849
|
includeOutputDir?: false;
|
|
849
850
|
};
|
|
@@ -885,6 +886,7 @@ declare const createContextArchiveDiffWithDependencyContext: (args: {
|
|
|
885
886
|
snapshotFileName?: string;
|
|
886
887
|
includeOutputDirInDiff?: boolean;
|
|
887
888
|
onArchiveWarnings?: (text: string) => void;
|
|
889
|
+
onSelectionReport?: (report: SelectionReport) => void;
|
|
888
890
|
};
|
|
889
891
|
}) => Promise<CreateContextArchiveDiffResult>;
|
|
890
892
|
|
package/package.json
CHANGED