@vertesia/memory 0.49.0 → 0.50.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.
@@ -70,3 +70,4 @@ export declare class Builder implements Commands {
70
70
  private _getOutputNames;
71
71
  }
72
72
  export declare function buildMemoryPack(recipeFn: (commands: Commands) => Promise<Record<string, any>>, options: BuildOptions): Promise<string>;
73
+ //# sourceMappingURL=Builder.d.ts.map
@@ -41,3 +41,4 @@ export declare class DocxObject extends ContentObject {
41
41
  getStream(): Promise<NodeJS.ReadableStream>;
42
42
  getText(): Promise<string>;
43
43
  }
44
+ //# sourceMappingURL=ContentObject.d.ts.map
@@ -30,3 +30,4 @@ export declare class FileSource extends AbstractContentSource {
30
30
  getStream(): Promise<NodeJS.ReadableStream>;
31
31
  static resolve(location: string): FileSource | FileSource[];
32
32
  }
33
+ //# sourceMappingURL=ContentSource.d.ts.map
@@ -44,3 +44,4 @@ export declare class TarMemoryPack extends MemoryPack {
44
44
  static loadFile(file: string): Promise<TarMemoryPack>;
45
45
  }
46
46
  export declare function loadMemoryPack(location: string): Promise<MemoryPack>;
47
+ //# sourceMappingURL=MemoryPack.d.ts.map
@@ -16,3 +16,4 @@ export declare class MemoryPackBuilder {
16
16
  add(path: string, content: ContentSource): void;
17
17
  build(file: string, metadata: object): Promise<string>;
18
18
  }
19
+ //# sourceMappingURL=MemoryPackBuilder.d.ts.map
@@ -6,3 +6,4 @@ export interface CopyOptions {
6
6
  extractText?: boolean | string;
7
7
  }
8
8
  export declare function copy(builder: Builder, source: SourceSpec, toPath: string, options?: CopyOptions): void;
9
+ //# sourceMappingURL=copy.d.ts.map
@@ -5,3 +5,4 @@ export interface ExecOptions {
5
5
  }
6
6
  export declare function exec(commandLine: string, options?: ExecOptions): Promise<string | undefined>;
7
7
  export declare function executePipe(commands: Command[], finalOutput: Writable | undefined, verbose?: boolean): Promise<unknown>;
8
+ //# sourceMappingURL=exec.d.ts.map
@@ -12,3 +12,4 @@ export { MemoryPackBuilder } from "./MemoryPackBuilder.js";
12
12
  export type { FromOptions } from "./MemoryPackBuilder.js";
13
13
  export { TarBuilder, TarIndex, loadTarIndex } from './utils/tar.js';
14
14
  export type { TarEntry, TarEntryIndex } from './utils/tar.js';
15
+ //# sourceMappingURL=index.d.ts.map
@@ -8,3 +8,4 @@ export interface CommandPipe {
8
8
  out?: string | undefined;
9
9
  }
10
10
  export declare function splitPipeCommands(text: string): CommandPipe;
11
+ //# sourceMappingURL=cmdline.d.ts.map
@@ -36,3 +36,4 @@ export declare class Path {
36
36
  */
37
37
  toString(): string;
38
38
  }
39
+ //# sourceMappingURL=rewrite.d.ts.map
@@ -7,3 +7,4 @@ export declare class BufferWritableStream extends Writable {
7
7
  getBuffer(): Buffer<ArrayBufferLike> | undefined;
8
8
  getText(encoding?: BufferEncoding): string | undefined;
9
9
  }
10
+ //# sourceMappingURL=stream.d.ts.map
@@ -38,3 +38,4 @@ export declare class TarIndex {
38
38
  close(): Promise<void>;
39
39
  }
40
40
  export declare function normalizePath(path: string): string;
41
+ //# sourceMappingURL=tar.d.ts.map
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@vertesia/memory",
3
3
  "description": "Manipulate memory images for LLMs",
4
- "version": "0.49.0",
4
+ "version": "0.50.0",
5
5
  "type": "module",
6
6
  "types": "./lib/types/index.d.ts",
7
7
  "files": [
@@ -20,8 +20,8 @@
20
20
  "glob": "^11.0.0",
21
21
  "micromatch": "^4.0.8",
22
22
  "tar-stream": "^3.1.7",
23
- "@vertesia/converters": "0.78.0",
24
- "@vertesia/json": "0.78.0"
23
+ "@vertesia/json": "0.79.0",
24
+ "@vertesia/converters": "0.79.0"
25
25
  },
26
26
  "ts_dual_module": {
27
27
  "outDir": "lib"