@ncukondo/reference-manager 0.7.1 → 0.9.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.
Files changed (54) hide show
  1. package/README.md +71 -4
  2. package/dist/chunks/{action-menu-CTtINmWd.js → action-menu-BN2HHFPR.js} +2 -2
  3. package/dist/chunks/{action-menu-CTtINmWd.js.map → action-menu-BN2HHFPR.js.map} +1 -1
  4. package/dist/chunks/{file-watcher-D7oyc-9z.js → file-watcher-DdhXSm1l.js} +3 -3
  5. package/dist/chunks/file-watcher-DdhXSm1l.js.map +1 -0
  6. package/dist/chunks/{index-_7NEUoS7.js → index-DmMZCOno.js} +316 -41
  7. package/dist/chunks/index-DmMZCOno.js.map +1 -0
  8. package/dist/chunks/{loader-BItrdVWG.js → loader-C-bdImuO.js} +44 -7
  9. package/dist/chunks/loader-C-bdImuO.js.map +1 -0
  10. package/dist/cli/commands/add.d.ts +4 -0
  11. package/dist/cli/commands/add.d.ts.map +1 -1
  12. package/dist/cli/commands/fulltext.d.ts +20 -3
  13. package/dist/cli/commands/fulltext.d.ts.map +1 -1
  14. package/dist/cli/commands/remove.d.ts +7 -16
  15. package/dist/cli/commands/remove.d.ts.map +1 -1
  16. package/dist/cli/commands/update.d.ts +40 -0
  17. package/dist/cli/commands/update.d.ts.map +1 -1
  18. package/dist/cli/index.d.ts.map +1 -1
  19. package/dist/cli.js +582 -152
  20. package/dist/cli.js.map +1 -1
  21. package/dist/core/library.d.ts.map +1 -1
  22. package/dist/features/duplicate/types.d.ts +1 -1
  23. package/dist/features/duplicate/types.d.ts.map +1 -1
  24. package/dist/features/import/detector.d.ts +1 -1
  25. package/dist/features/import/detector.d.ts.map +1 -1
  26. package/dist/features/import/fetcher.d.ts +6 -0
  27. package/dist/features/import/fetcher.d.ts.map +1 -1
  28. package/dist/features/import/importer.d.ts +3 -1
  29. package/dist/features/import/importer.d.ts.map +1 -1
  30. package/dist/features/import/parser.d.ts +16 -0
  31. package/dist/features/import/parser.d.ts.map +1 -1
  32. package/dist/features/operations/add.d.ts +4 -0
  33. package/dist/features/operations/add.d.ts.map +1 -1
  34. package/dist/features/operations/fulltext/index.d.ts +1 -0
  35. package/dist/features/operations/fulltext/index.d.ts.map +1 -1
  36. package/dist/features/operations/fulltext/open.d.ts +36 -0
  37. package/dist/features/operations/fulltext/open.d.ts.map +1 -0
  38. package/dist/features/operations/index.d.ts +2 -0
  39. package/dist/features/operations/index.d.ts.map +1 -1
  40. package/dist/features/operations/json-output.d.ts +93 -0
  41. package/dist/features/operations/json-output.d.ts.map +1 -0
  42. package/dist/features/operations/remove.d.ts +11 -0
  43. package/dist/features/operations/remove.d.ts.map +1 -1
  44. package/dist/index.js +5 -3
  45. package/dist/index.js.map +1 -1
  46. package/dist/server.js +2 -2
  47. package/dist/utils/index.d.ts +1 -0
  48. package/dist/utils/index.d.ts.map +1 -1
  49. package/dist/utils/opener.d.ts +13 -0
  50. package/dist/utils/opener.d.ts.map +1 -0
  51. package/package.json +1 -1
  52. package/dist/chunks/file-watcher-D7oyc-9z.js.map +0 -1
  53. package/dist/chunks/index-_7NEUoS7.js.map +0 -1
  54. package/dist/chunks/loader-BItrdVWG.js.map +0 -1
@@ -5,7 +5,7 @@
5
5
  */
6
6
  import type { IdentifierType } from "../../core/library-interface.js";
7
7
  import type { FulltextType } from "../../features/fulltext/index.js";
8
- import { type FulltextAttachResult, type FulltextDetachResult, type FulltextGetResult } from "../../features/operations/fulltext/index.js";
8
+ import { type FulltextAttachResult, type FulltextDetachResult, type FulltextGetResult, type FulltextOpenResult } from "../../features/operations/fulltext/index.js";
9
9
  import type { ExecutionContext } from "../execution-context.js";
10
10
  /**
11
11
  * Options for fulltext attach command
@@ -41,7 +41,16 @@ export interface FulltextDetachOptions {
41
41
  idType?: IdentifierType;
42
42
  fulltextDirectory: string;
43
43
  }
44
- export type { FulltextAttachResult, FulltextGetResult, FulltextDetachResult };
44
+ /**
45
+ * Options for fulltext open command
46
+ */
47
+ export interface FulltextOpenOptions {
48
+ identifier: string;
49
+ type?: FulltextType;
50
+ idType?: IdentifierType;
51
+ fulltextDirectory: string;
52
+ }
53
+ export type { FulltextAttachResult, FulltextGetResult, FulltextDetachResult, FulltextOpenResult };
45
54
  /**
46
55
  * Execute fulltext attach command
47
56
  */
@@ -54,6 +63,10 @@ export declare function executeFulltextGet(options: FulltextGetOptions, context:
54
63
  * Execute fulltext detach command
55
64
  */
56
65
  export declare function executeFulltextDetach(options: FulltextDetachOptions, context: ExecutionContext): Promise<FulltextDetachResult>;
66
+ /**
67
+ * Execute fulltext open command
68
+ */
69
+ export declare function executeFulltextOpen(options: FulltextOpenOptions, context: ExecutionContext): Promise<FulltextOpenResult>;
57
70
  /**
58
71
  * Format fulltext attach output
59
72
  */
@@ -66,8 +79,12 @@ export declare function formatFulltextGetOutput(result: FulltextGetResult): stri
66
79
  * Format fulltext detach output
67
80
  */
68
81
  export declare function formatFulltextDetachOutput(result: FulltextDetachResult): string;
82
+ /**
83
+ * Format fulltext open output
84
+ */
85
+ export declare function formatFulltextOpenOutput(result: FulltextOpenResult): string;
69
86
  /**
70
87
  * Get exit code for fulltext command result
71
88
  */
72
- export declare function getFulltextExitCode(result: FulltextAttachResult | FulltextGetResult | FulltextDetachResult): number;
89
+ export declare function getFulltextExitCode(result: FulltextAttachResult | FulltextGetResult | FulltextDetachResult | FulltextOpenResult): number;
73
90
  //# sourceMappingURL=fulltext.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"fulltext.d.ts","sourceRoot":"","sources":["../../../src/cli/commands/fulltext.ts"],"names":[],"mappings":"AAAA;;;;GAIG;AAEH,OAAO,KAAK,EAAE,cAAc,EAAE,MAAM,iCAAiC,CAAC;AACtE,OAAO,KAAK,EAAE,YAAY,EAAE,MAAM,kCAAkC,CAAC;AACrE,OAAO,EACL,KAAK,oBAAoB,EACzB,KAAK,oBAAoB,EACzB,KAAK,iBAAiB,EAOvB,MAAM,6CAA6C,CAAC;AACrD,OAAO,KAAK,EAAE,gBAAgB,EAAE,MAAM,yBAAyB,CAAC;AAEhE;;GAEG;AACH,MAAM,WAAW,qBAAqB;IACpC,UAAU,EAAE,MAAM,CAAC;IACnB,QAAQ,CAAC,EAAE,MAAM,CAAC;IAClB,IAAI,CAAC,EAAE,YAAY,CAAC;IACpB,IAAI,CAAC,EAAE,OAAO,CAAC;IACf,KAAK,CAAC,EAAE,OAAO,CAAC;IAChB,MAAM,CAAC,EAAE,cAAc,CAAC;IACxB,iBAAiB,EAAE,MAAM,CAAC;IAC1B,YAAY,CAAC,EAAE,MAAM,CAAC;CACvB;AAED;;GAEG;AACH,MAAM,WAAW,kBAAkB;IACjC,UAAU,EAAE,MAAM,CAAC;IACnB,IAAI,CAAC,EAAE,YAAY,CAAC;IACpB,MAAM,CAAC,EAAE,OAAO,CAAC;IACjB,MAAM,CAAC,EAAE,cAAc,CAAC;IACxB,iBAAiB,EAAE,MAAM,CAAC;CAC3B;AAED;;GAEG;AACH,MAAM,WAAW,qBAAqB;IACpC,UAAU,EAAE,MAAM,CAAC;IACnB,IAAI,CAAC,EAAE,YAAY,CAAC;IACpB,MAAM,CAAC,EAAE,OAAO,CAAC;IACjB,KAAK,CAAC,EAAE,OAAO,CAAC;IAChB,MAAM,CAAC,EAAE,cAAc,CAAC;IACxB,iBAAiB,EAAE,MAAM,CAAC;CAC3B;AAGD,YAAY,EAAE,oBAAoB,EAAE,iBAAiB,EAAE,oBAAoB,EAAE,CAAC;AAE9E;;GAEG;AACH,wBAAsB,qBAAqB,CACzC,OAAO,EAAE,qBAAqB,EAC9B,OAAO,EAAE,gBAAgB,GACxB,OAAO,CAAC,oBAAoB,CAAC,CAa/B;AAED;;GAEG;AACH,wBAAsB,kBAAkB,CACtC,OAAO,EAAE,kBAAkB,EAC3B,OAAO,EAAE,gBAAgB,GACxB,OAAO,CAAC,iBAAiB,CAAC,CAU5B;AAED;;GAEG;AACH,wBAAsB,qBAAqB,CACzC,OAAO,EAAE,qBAAqB,EAC9B,OAAO,EAAE,gBAAgB,GACxB,OAAO,CAAC,oBAAoB,CAAC,CAU/B;AAMD;;GAEG;AACH,wBAAgB,0BAA0B,CAAC,MAAM,EAAE,oBAAoB,GAAG,MAAM,CAiB/E;AAED;;GAEG;AACH,wBAAgB,uBAAuB,CAAC,MAAM,EAAE,iBAAiB,GAAG,MAAM,CAkBzE;AAED;;GAEG;AACH,wBAAgB,0BAA0B,CAAC,MAAM,EAAE,oBAAoB,GAAG,MAAM,CAe/E;AAED;;GAEG;AACH,wBAAgB,mBAAmB,CACjC,MAAM,EAAE,oBAAoB,GAAG,iBAAiB,GAAG,oBAAoB,GACtE,MAAM,CAER"}
1
+ {"version":3,"file":"fulltext.d.ts","sourceRoot":"","sources":["../../../src/cli/commands/fulltext.ts"],"names":[],"mappings":"AAAA;;;;GAIG;AAEH,OAAO,KAAK,EAAE,cAAc,EAAE,MAAM,iCAAiC,CAAC;AACtE,OAAO,KAAK,EAAE,YAAY,EAAE,MAAM,kCAAkC,CAAC;AACrE,OAAO,EACL,KAAK,oBAAoB,EACzB,KAAK,oBAAoB,EACzB,KAAK,iBAAiB,EACtB,KAAK,kBAAkB,EASxB,MAAM,6CAA6C,CAAC;AACrD,OAAO,KAAK,EAAE,gBAAgB,EAAE,MAAM,yBAAyB,CAAC;AAEhE;;GAEG;AACH,MAAM,WAAW,qBAAqB;IACpC,UAAU,EAAE,MAAM,CAAC;IACnB,QAAQ,CAAC,EAAE,MAAM,CAAC;IAClB,IAAI,CAAC,EAAE,YAAY,CAAC;IACpB,IAAI,CAAC,EAAE,OAAO,CAAC;IACf,KAAK,CAAC,EAAE,OAAO,CAAC;IAChB,MAAM,CAAC,EAAE,cAAc,CAAC;IACxB,iBAAiB,EAAE,MAAM,CAAC;IAC1B,YAAY,CAAC,EAAE,MAAM,CAAC;CACvB;AAED;;GAEG;AACH,MAAM,WAAW,kBAAkB;IACjC,UAAU,EAAE,MAAM,CAAC;IACnB,IAAI,CAAC,EAAE,YAAY,CAAC;IACpB,MAAM,CAAC,EAAE,OAAO,CAAC;IACjB,MAAM,CAAC,EAAE,cAAc,CAAC;IACxB,iBAAiB,EAAE,MAAM,CAAC;CAC3B;AAED;;GAEG;AACH,MAAM,WAAW,qBAAqB;IACpC,UAAU,EAAE,MAAM,CAAC;IACnB,IAAI,CAAC,EAAE,YAAY,CAAC;IACpB,MAAM,CAAC,EAAE,OAAO,CAAC;IACjB,KAAK,CAAC,EAAE,OAAO,CAAC;IAChB,MAAM,CAAC,EAAE,cAAc,CAAC;IACxB,iBAAiB,EAAE,MAAM,CAAC;CAC3B;AAED;;GAEG;AACH,MAAM,WAAW,mBAAmB;IAClC,UAAU,EAAE,MAAM,CAAC;IACnB,IAAI,CAAC,EAAE,YAAY,CAAC;IACpB,MAAM,CAAC,EAAE,cAAc,CAAC;IACxB,iBAAiB,EAAE,MAAM,CAAC;CAC3B;AAGD,YAAY,EAAE,oBAAoB,EAAE,iBAAiB,EAAE,oBAAoB,EAAE,kBAAkB,EAAE,CAAC;AAElG;;GAEG;AACH,wBAAsB,qBAAqB,CACzC,OAAO,EAAE,qBAAqB,EAC9B,OAAO,EAAE,gBAAgB,GACxB,OAAO,CAAC,oBAAoB,CAAC,CAa/B;AAED;;GAEG;AACH,wBAAsB,kBAAkB,CACtC,OAAO,EAAE,kBAAkB,EAC3B,OAAO,EAAE,gBAAgB,GACxB,OAAO,CAAC,iBAAiB,CAAC,CAU5B;AAED;;GAEG;AACH,wBAAsB,qBAAqB,CACzC,OAAO,EAAE,qBAAqB,EAC9B,OAAO,EAAE,gBAAgB,GACxB,OAAO,CAAC,oBAAoB,CAAC,CAU/B;AAED;;GAEG;AACH,wBAAsB,mBAAmB,CACvC,OAAO,EAAE,mBAAmB,EAC5B,OAAO,EAAE,gBAAgB,GACxB,OAAO,CAAC,kBAAkB,CAAC,CAS7B;AAMD;;GAEG;AACH,wBAAgB,0BAA0B,CAAC,MAAM,EAAE,oBAAoB,GAAG,MAAM,CAiB/E;AAED;;GAEG;AACH,wBAAgB,uBAAuB,CAAC,MAAM,EAAE,iBAAiB,GAAG,MAAM,CAkBzE;AAED;;GAEG;AACH,wBAAgB,0BAA0B,CAAC,MAAM,EAAE,oBAAoB,GAAG,MAAM,CAe/E;AAED;;GAEG;AACH,wBAAgB,wBAAwB,CAAC,MAAM,EAAE,kBAAkB,GAAG,MAAM,CAM3E;AAED;;GAEG;AACH,wBAAgB,mBAAmB,CACjC,MAAM,EAAE,oBAAoB,GAAG,iBAAiB,GAAG,oBAAoB,GAAG,kBAAkB,GAC3F,MAAM,CAER"}
@@ -1,14 +1,19 @@
1
- import type { CslItem } from "../../core/csl-json/types.js";
2
1
  import type { IdentifierType } from "../../core/library-interface.js";
3
2
  import type { FulltextType } from "../../features/fulltext/index.js";
4
- import type { RemoveResult } from "../../features/operations/remove.js";
3
+ import { type RemoveResult, getFulltextAttachmentTypes } from "../../features/operations/remove.js";
5
4
  import type { ExecutionContext } from "../execution-context.js";
5
+ export { getFulltextAttachmentTypes };
6
+ export type { RemoveResult };
6
7
  /**
7
8
  * Options for the remove command.
8
9
  */
9
10
  export interface RemoveCommandOptions {
10
11
  identifier: string;
11
12
  idType?: IdentifierType;
13
+ /** Directory containing fulltext files */
14
+ fulltextDirectory?: string;
15
+ /** Whether to delete associated fulltext files */
16
+ deleteFulltext?: boolean;
12
17
  }
13
18
  /**
14
19
  * Result from remove command execution.
@@ -31,13 +36,6 @@ export declare function executeRemove(options: RemoveCommandOptions, context: Ex
31
36
  * @returns Formatted output string
32
37
  */
33
38
  export declare function formatRemoveOutput(result: RemoveCommandResult, identifier: string): string;
34
- /**
35
- * Get fulltext attachment types from a CSL item.
36
- *
37
- * @param item - CSL item to check
38
- * @returns Array of attached fulltext types
39
- */
40
- export declare function getFulltextAttachmentTypes(item: CslItem): FulltextType[];
41
39
  /**
42
40
  * Format fulltext warning message for remove confirmation.
43
41
  *
@@ -45,11 +43,4 @@ export declare function getFulltextAttachmentTypes(item: CslItem): FulltextType[
45
43
  * @returns Warning message string
46
44
  */
47
45
  export declare function formatFulltextWarning(types: FulltextType[]): string;
48
- /**
49
- * Delete fulltext files associated with a CSL item.
50
- *
51
- * @param item - CSL item with fulltext attachments
52
- * @param fulltextDirectory - Directory containing fulltext files
53
- */
54
- export declare function deleteFulltextFiles(item: CslItem, fulltextDirectory: string): Promise<void>;
55
46
  //# sourceMappingURL=remove.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"remove.d.ts","sourceRoot":"","sources":["../../../src/cli/commands/remove.ts"],"names":[],"mappings":"AAEA,OAAO,KAAK,EAAE,OAAO,EAAE,MAAM,8BAA8B,CAAC;AAC5D,OAAO,KAAK,EAAE,cAAc,EAAE,MAAM,iCAAiC,CAAC;AACtE,OAAO,KAAK,EAAE,YAAY,EAAE,MAAM,kCAAkC,CAAC;AACrE,OAAO,KAAK,EAAE,YAAY,EAAE,MAAM,qCAAqC,CAAC;AACxE,OAAO,KAAK,EAAE,gBAAgB,EAAE,MAAM,yBAAyB,CAAC;AAEhE;;GAEG;AACH,MAAM,WAAW,oBAAoB;IACnC,UAAU,EAAE,MAAM,CAAC;IACnB,MAAM,CAAC,EAAE,cAAc,CAAC;CACzB;AAED;;GAEG;AACH,MAAM,MAAM,mBAAmB,GAAG,YAAY,CAAC;AAE/C;;;;;;;GAOG;AACH,wBAAsB,aAAa,CACjC,OAAO,EAAE,oBAAoB,EAC7B,OAAO,EAAE,gBAAgB,GACxB,OAAO,CAAC,mBAAmB,CAAC,CAI9B;AAED;;;;;;GAMG;AACH,wBAAgB,kBAAkB,CAAC,MAAM,EAAE,mBAAmB,EAAE,UAAU,EAAE,MAAM,GAAG,MAAM,CAW1F;AAED;;;;;GAKG;AACH,wBAAgB,0BAA0B,CAAC,IAAI,EAAE,OAAO,GAAG,YAAY,EAAE,CAYxE;AAED;;;;;GAKG;AACH,wBAAgB,qBAAqB,CAAC,KAAK,EAAE,YAAY,EAAE,GAAG,MAAM,CAInE;AAED;;;;;GAKG;AACH,wBAAsB,mBAAmB,CAAC,IAAI,EAAE,OAAO,EAAE,iBAAiB,EAAE,MAAM,GAAG,OAAO,CAAC,IAAI,CAAC,CAsBjG"}
1
+ {"version":3,"file":"remove.d.ts","sourceRoot":"","sources":["../../../src/cli/commands/remove.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,cAAc,EAAE,MAAM,iCAAiC,CAAC;AACtE,OAAO,KAAK,EAAE,YAAY,EAAE,MAAM,kCAAkC,CAAC;AACrE,OAAO,EAAE,KAAK,YAAY,EAAE,0BAA0B,EAAE,MAAM,qCAAqC,CAAC;AACpG,OAAO,KAAK,EAAE,gBAAgB,EAAE,MAAM,yBAAyB,CAAC;AAGhE,OAAO,EAAE,0BAA0B,EAAE,CAAC;AACtC,YAAY,EAAE,YAAY,EAAE,CAAC;AAE7B;;GAEG;AACH,MAAM,WAAW,oBAAoB;IACnC,UAAU,EAAE,MAAM,CAAC;IACnB,MAAM,CAAC,EAAE,cAAc,CAAC;IACxB,0CAA0C;IAC1C,iBAAiB,CAAC,EAAE,MAAM,CAAC;IAC3B,kDAAkD;IAClD,cAAc,CAAC,EAAE,OAAO,CAAC;CAC1B;AAED;;GAEG;AACH,MAAM,MAAM,mBAAmB,GAAG,YAAY,CAAC;AAE/C;;;;;;;GAOG;AACH,wBAAsB,aAAa,CACjC,OAAO,EAAE,oBAAoB,EAC7B,OAAO,EAAE,gBAAgB,GACxB,OAAO,CAAC,mBAAmB,CAAC,CAiB9B;AAED;;;;;;GAMG;AACH,wBAAgB,kBAAkB,CAAC,MAAM,EAAE,mBAAmB,EAAE,UAAU,EAAE,MAAM,GAAG,MAAM,CAqB1F;AAED;;;;;GAKG;AACH,wBAAgB,qBAAqB,CAAC,KAAK,EAAE,YAAY,EAAE,GAAG,MAAM,CAInE"}
@@ -2,6 +2,46 @@ import type { CslItem } from "../../core/csl-json/types.js";
2
2
  import type { IdentifierType } from "../../core/library-interface.js";
3
3
  import type { UpdateOperationResult } from "../../features/operations/update.js";
4
4
  import type { ExecutionContext } from "../execution-context.js";
5
+ /**
6
+ * Operator type for --set option.
7
+ */
8
+ export type SetOperator = "=" | "+=" | "-=";
9
+ /**
10
+ * Parsed result of a --set option.
11
+ */
12
+ export interface SetOperation {
13
+ field: string;
14
+ operator: SetOperator;
15
+ value: string;
16
+ }
17
+ /**
18
+ * Parse a --set option string.
19
+ *
20
+ * @param input - Input string in format "field=value", "field+=value", or "field-=value"
21
+ * @returns Parsed SetOperation
22
+ * @throws Error if syntax is invalid
23
+ */
24
+ export declare function parseSetOption(input: string): SetOperation;
25
+ /**
26
+ * Apply set operations to create a partial CslItem updates object.
27
+ *
28
+ * @param operations - Array of set operations
29
+ * @returns Partial CslItem object with updates
30
+ * @throws Error if a protected or unsupported field is specified
31
+ */
32
+ export declare function applySetOperations(operations: SetOperation[]): Record<string, unknown>;
33
+ /**
34
+ * Check if updates contain $add or $remove operations that need resolution.
35
+ */
36
+ export declare function hasArrayOperations(updates: Record<string, unknown>): boolean;
37
+ /**
38
+ * Resolve $add/$remove operations against existing item data.
39
+ *
40
+ * @param updates - Updates object potentially containing $add/$remove operations
41
+ * @param existingItem - The existing item to resolve against
42
+ * @returns Updates object with $add/$remove resolved to actual arrays
43
+ */
44
+ export declare function resolveArrayOperations(updates: Record<string, unknown>, existingItem: CslItem): Record<string, unknown>;
5
45
  /**
6
46
  * Options for the update command.
7
47
  */
@@ -1 +1 @@
1
- {"version":3,"file":"update.d.ts","sourceRoot":"","sources":["../../../src/cli/commands/update.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,OAAO,EAAE,MAAM,8BAA8B,CAAC;AAC5D,OAAO,KAAK,EAAE,cAAc,EAAE,MAAM,iCAAiC,CAAC;AACtE,OAAO,KAAK,EAAE,qBAAqB,EAAE,MAAM,qCAAqC,CAAC;AACjF,OAAO,KAAK,EAAE,gBAAgB,EAAE,MAAM,yBAAyB,CAAC;AAEhE;;GAEG;AACH,MAAM,WAAW,oBAAoB;IACnC,UAAU,EAAE,MAAM,CAAC;IACnB,OAAO,EAAE,OAAO,CAAC,OAAO,CAAC,CAAC;IAC1B,MAAM,CAAC,EAAE,cAAc,CAAC;CACzB;AAED;;GAEG;AACH,MAAM,MAAM,mBAAmB,GAAG,qBAAqB,CAAC;AAExD;;;;;;;GAOG;AACH,wBAAsB,aAAa,CACjC,OAAO,EAAE,oBAAoB,EAC7B,OAAO,EAAE,gBAAgB,GACxB,OAAO,CAAC,mBAAmB,CAAC,CAI9B;AAED;;;;;;GAMG;AACH,wBAAgB,kBAAkB,CAAC,MAAM,EAAE,mBAAmB,EAAE,UAAU,EAAE,MAAM,GAAG,MAAM,CAsB1F"}
1
+ {"version":3,"file":"update.d.ts","sourceRoot":"","sources":["../../../src/cli/commands/update.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,OAAO,EAAE,MAAM,8BAA8B,CAAC;AAC5D,OAAO,KAAK,EAAE,cAAc,EAAE,MAAM,iCAAiC,CAAC;AACtE,OAAO,KAAK,EAAE,qBAAqB,EAAE,MAAM,qCAAqC,CAAC;AACjF,OAAO,KAAK,EAAE,gBAAgB,EAAE,MAAM,yBAAyB,CAAC;AAEhE;;GAEG;AACH,MAAM,MAAM,WAAW,GAAG,GAAG,GAAG,IAAI,GAAG,IAAI,CAAC;AAE5C;;GAEG;AACH,MAAM,WAAW,YAAY;IAC3B,KAAK,EAAE,MAAM,CAAC;IACd,QAAQ,EAAE,WAAW,CAAC;IACtB,KAAK,EAAE,MAAM,CAAC;CACf;AAED;;;;;;GAMG;AACH,wBAAgB,cAAc,CAAC,KAAK,EAAE,MAAM,GAAG,YAAY,CAiB1D;AAoID;;;;;;GAMG;AACH,wBAAgB,kBAAkB,CAAC,UAAU,EAAE,YAAY,EAAE,GAAG,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,CAMtF;AAED;;GAEG;AACH,wBAAgB,kBAAkB,CAAC,OAAO,EAAE,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,GAAG,OAAO,CAQ5E;AAED;;;;;;GAMG;AACH,wBAAgB,sBAAsB,CACpC,OAAO,EAAE,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,EAChC,YAAY,EAAE,OAAO,GACpB,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,CAoBzB;AAmDD;;GAEG;AACH,MAAM,WAAW,oBAAoB;IACnC,UAAU,EAAE,MAAM,CAAC;IACnB,OAAO,EAAE,OAAO,CAAC,OAAO,CAAC,CAAC;IAC1B,MAAM,CAAC,EAAE,cAAc,CAAC;CACzB;AAED;;GAEG;AACH,MAAM,MAAM,mBAAmB,GAAG,qBAAqB,CAAC;AAExD;;;;;;;GAOG;AACH,wBAAsB,aAAa,CACjC,OAAO,EAAE,oBAAoB,EAC7B,OAAO,EAAE,gBAAgB,GACxB,OAAO,CAAC,mBAAmB,CAAC,CAwB9B;AAED;;;;;;GAMG;AACH,wBAAgB,kBAAkB,CAAC,MAAM,EAAE,mBAAmB,EAAE,UAAU,EAAE,MAAM,GAAG,MAAM,CAsB1F"}
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/cli/index.ts"],"names":[],"mappings":"AAAA;;GAEG;AAEH,OAAO,EAAE,OAAO,EAAE,MAAM,WAAW,CAAC;AA0DpC;;GAEG;AACH,wBAAgB,aAAa,IAAI,OAAO,CA+BvC;AAgyBD;;GAEG;AACH,wBAAsB,IAAI,CAAC,IAAI,EAAE,MAAM,EAAE,GAAG,OAAO,CAAC,IAAI,CAAC,CAmBxD"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/cli/index.ts"],"names":[],"mappings":"AAAA;;GAEG;AAEH,OAAO,EAAE,OAAO,EAAE,MAAM,WAAW,CAAC;AAwEpC;;GAEG;AACH,wBAAgB,aAAa,IAAI,OAAO,CA+BvC;AAy8BD;;GAEG;AACH,wBAAsB,IAAI,CAAC,IAAI,EAAE,MAAM,EAAE,GAAG,OAAO,CAAC,IAAI,CAAC,CAmBxD"}