@ms-cloudpack/cli 0.49.0 → 0.49.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.
Files changed (79) hide show
  1. package/lib/commands/bundle/execute.d.ts.map +1 -1
  2. package/lib/commands/bundle/execute.js +6 -2
  3. package/lib/commands/bundle/execute.js.map +1 -1
  4. package/lib/commands/bundle/index.d.ts +3 -2
  5. package/lib/commands/bundle/index.d.ts.map +1 -1
  6. package/lib/commands/bundle/index.js +15 -9
  7. package/lib/commands/bundle/index.js.map +1 -1
  8. package/lib/commands/cache/clean.d.ts +4 -1
  9. package/lib/commands/cache/clean.d.ts.map +1 -1
  10. package/lib/commands/cache/clean.js +3 -2
  11. package/lib/commands/cache/clean.js.map +1 -1
  12. package/lib/commands/cache/index.d.ts +3 -2
  13. package/lib/commands/cache/index.d.ts.map +1 -1
  14. package/lib/commands/cache/index.js +16 -12
  15. package/lib/commands/cache/index.js.map +1 -1
  16. package/lib/commands/init/execute.d.ts.map +1 -1
  17. package/lib/commands/init/execute.js +3 -2
  18. package/lib/commands/init/execute.js.map +1 -1
  19. package/lib/commands/init/index.d.ts +2 -2
  20. package/lib/commands/init/index.d.ts.map +1 -1
  21. package/lib/commands/init/index.js +14 -10
  22. package/lib/commands/init/index.js.map +1 -1
  23. package/lib/commands/start/execute.d.ts.map +1 -1
  24. package/lib/commands/start/execute.js +3 -14
  25. package/lib/commands/start/execute.js.map +1 -1
  26. package/lib/commands/start/index.d.ts +3 -2
  27. package/lib/commands/start/index.d.ts.map +1 -1
  28. package/lib/commands/start/index.js +15 -12
  29. package/lib/commands/start/index.js.map +1 -1
  30. package/lib/commands/start/types/StartOptions.d.ts +0 -2
  31. package/lib/commands/start/types/StartOptions.d.ts.map +1 -1
  32. package/lib/commands/start/types/StartOptions.js.map +1 -1
  33. package/lib/commands/sync/execute.d.ts.map +1 -1
  34. package/lib/commands/sync/execute.js +3 -3
  35. package/lib/commands/sync/execute.js.map +1 -1
  36. package/lib/commands/sync/index.d.ts +2 -2
  37. package/lib/commands/sync/index.d.ts.map +1 -1
  38. package/lib/commands/sync/index.js +13 -9
  39. package/lib/commands/sync/index.js.map +1 -1
  40. package/lib/common/createCommand.d.ts +29 -0
  41. package/lib/common/createCommand.d.ts.map +1 -0
  42. package/lib/common/createCommand.js +41 -0
  43. package/lib/common/createCommand.js.map +1 -0
  44. package/lib/common/createCommandActionFunction.d.ts +6 -11
  45. package/lib/common/createCommandActionFunction.d.ts.map +1 -1
  46. package/lib/common/createCommandActionFunction.js +62 -56
  47. package/lib/common/createCommandActionFunction.js.map +1 -1
  48. package/lib/common/createInitializeFunction.d.ts +11 -2
  49. package/lib/common/createInitializeFunction.d.ts.map +1 -1
  50. package/lib/common/createInitializeFunction.js +22 -5
  51. package/lib/common/createInitializeFunction.js.map +1 -1
  52. package/lib/index.d.ts +2 -8
  53. package/lib/index.d.ts.map +1 -1
  54. package/lib/index.js +10 -17
  55. package/lib/index.js.map +1 -1
  56. package/lib/setupReporting.d.ts +7 -2
  57. package/lib/setupReporting.d.ts.map +1 -1
  58. package/lib/setupReporting.js +25 -15
  59. package/lib/setupReporting.js.map +1 -1
  60. package/lib/types/CommandAction.d.ts +32 -5
  61. package/lib/types/CommandAction.d.ts.map +1 -1
  62. package/lib/types/CommandAction.js.map +1 -1
  63. package/lib/types/CommandInitFunction.d.ts +14 -0
  64. package/lib/types/CommandInitFunction.d.ts.map +1 -0
  65. package/lib/types/CommandInitFunction.js +2 -0
  66. package/lib/types/CommandInitFunction.js.map +1 -0
  67. package/lib/types/SharedOptions.d.ts +31 -0
  68. package/lib/types/SharedOptions.d.ts.map +1 -0
  69. package/lib/types/SharedOptions.js +2 -0
  70. package/lib/types/SharedOptions.js.map +1 -0
  71. package/package.json +6 -6
  72. package/lib/types/CommandFunction.d.ts +0 -4
  73. package/lib/types/CommandFunction.d.ts.map +0 -1
  74. package/lib/types/CommandFunction.js +0 -2
  75. package/lib/types/CommandFunction.js.map +0 -1
  76. package/lib/types/CreateCommandActionOptions.d.ts +0 -7
  77. package/lib/types/CreateCommandActionOptions.d.ts.map +0 -1
  78. package/lib/types/CreateCommandActionOptions.js +0 -2
  79. package/lib/types/CreateCommandActionOptions.js.map +0 -1
@@ -2,20 +2,47 @@ import type { TaskReporter } from '@ms-cloudpack/task-reporter';
2
2
  import type { CloudpackConfig } from '@ms-cloudpack/config';
3
3
  import type { TelemetryClient } from '@ms-cloudpack/telemetry';
4
4
  import type { AutoDispose } from './AutoDispose.js';
5
+ import type { SharedOptions } from '../types/SharedOptions.js';
5
6
  export type CommandActionOptions<TOptions> = {
7
+ /**
8
+ * Command-specific options, parsed from `process.argv`.
9
+ * Types are generally defined in each command's `src/commands/<name>/types/<Name>Types.ts` module.
10
+ * The command line options are defined in each command's `src/commands/<name>/index.ts` module.
11
+ */
6
12
  options: TOptions;
7
13
  reporter: TaskReporter;
8
- cwd: string;
9
- initialize: (appPath: string) => Promise<{
14
+ abortSignal: AbortSignal;
15
+ /**
16
+ * Function that can be called with any `Disposable`s that should be cleaned up automatically
17
+ * when the program exits. (See `AutoDisposableList.add` for implementation.)
18
+ */
19
+ autoDispose: AutoDispose;
20
+ /**
21
+ * This should be called at or near the beginning of the action to initialize the config,
22
+ * telemetry, and reporting. (See `createInitializeFunction` for implementation.)
23
+ */
24
+ initialize: (initializeOptions: {
25
+ appPath: string;
26
+ overrideOptions?: Partial<SharedOptions>;
27
+ }) => Promise<{
10
28
  telemetryClient: TelemetryClient;
11
29
  config: CloudpackConfig;
12
30
  }>;
13
- autoDispose: AutoDispose;
14
- abortSignal: AbortSignal;
31
+ /**
32
+ * This should be called at the end of the action to dispose resources, log completion,
33
+ * and exit the program. (See `createExitFunction` for implementation.)
34
+ */
15
35
  exit: (result: {
16
36
  exitCode: number;
17
37
  message?: string;
18
38
  }) => Promise<void>;
19
39
  };
20
- export type CommandAction<TOptions> = (options: CommandActionOptions<TOptions>) => Promise<void>;
40
+ /**
41
+ * Command action function. This is the type of the `execute` function which should be exported
42
+ * from each command's `src/commands/<name>/execute.ts` module.
43
+ */
44
+ export type CommandAction<TOptions> = (options: CommandActionOptions<TOptions & SharedOptions>) => Promise<void>;
45
+ export type CommandActionModule<TOptions> = {
46
+ execute: CommandAction<TOptions>;
47
+ };
21
48
  //# sourceMappingURL=CommandAction.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"CommandAction.d.ts","sourceRoot":"","sources":["../../src/types/CommandAction.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,YAAY,EAAE,MAAM,6BAA6B,CAAC;AAChE,OAAO,KAAK,EAAE,eAAe,EAAE,MAAM,sBAAsB,CAAC;AAC5D,OAAO,KAAK,EAAE,eAAe,EAAE,MAAM,yBAAyB,CAAC;AAC/D,OAAO,KAAK,EAAE,WAAW,EAAE,MAAM,kBAAkB,CAAC;AAEpD,MAAM,MAAM,oBAAoB,CAAC,QAAQ,IAAI;IAC3C,OAAO,EAAE,QAAQ,CAAC;IAClB,QAAQ,EAAE,YAAY,CAAC;IACvB,GAAG,EAAE,MAAM,CAAC;IACZ,UAAU,EAAE,CAAC,OAAO,EAAE,MAAM,KAAK,OAAO,CAAC;QACvC,eAAe,EAAE,eAAe,CAAC;QACjC,MAAM,EAAE,eAAe,CAAC;KACzB,CAAC,CAAC;IACH,WAAW,EAAE,WAAW,CAAC;IACzB,WAAW,EAAE,WAAW,CAAC;IACzB,IAAI,EAAE,CAAC,MAAM,EAAE;QAAE,QAAQ,EAAE,MAAM,CAAC;QAAC,OAAO,CAAC,EAAE,MAAM,CAAA;KAAE,KAAK,OAAO,CAAC,IAAI,CAAC,CAAC;CACzE,CAAC;AAEF,MAAM,MAAM,aAAa,CAAC,QAAQ,IAAI,CAAC,OAAO,EAAE,oBAAoB,CAAC,QAAQ,CAAC,KAAK,OAAO,CAAC,IAAI,CAAC,CAAC"}
1
+ {"version":3,"file":"CommandAction.d.ts","sourceRoot":"","sources":["../../src/types/CommandAction.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,YAAY,EAAE,MAAM,6BAA6B,CAAC;AAChE,OAAO,KAAK,EAAE,eAAe,EAAE,MAAM,sBAAsB,CAAC;AAC5D,OAAO,KAAK,EAAE,eAAe,EAAE,MAAM,yBAAyB,CAAC;AAC/D,OAAO,KAAK,EAAE,WAAW,EAAE,MAAM,kBAAkB,CAAC;AACpD,OAAO,KAAK,EAAE,aAAa,EAAE,MAAM,2BAA2B,CAAC;AAE/D,MAAM,MAAM,oBAAoB,CAAC,QAAQ,IAAI;IAC3C;;;;OAIG;IACH,OAAO,EAAE,QAAQ,CAAC;IAElB,QAAQ,EAAE,YAAY,CAAC;IAEvB,WAAW,EAAE,WAAW,CAAC;IAEzB;;;OAGG;IACH,WAAW,EAAE,WAAW,CAAC;IAEzB;;;OAGG;IACH,UAAU,EAAE,CAAC,iBAAiB,EAAE;QAAE,OAAO,EAAE,MAAM,CAAC;QAAC,eAAe,CAAC,EAAE,OAAO,CAAC,aAAa,CAAC,CAAA;KAAE,KAAK,OAAO,CAAC;QACxG,eAAe,EAAE,eAAe,CAAC;QACjC,MAAM,EAAE,eAAe,CAAC;KACzB,CAAC,CAAC;IAEH;;;OAGG;IACH,IAAI,EAAE,CAAC,MAAM,EAAE;QAAE,QAAQ,EAAE,MAAM,CAAC;QAAC,OAAO,CAAC,EAAE,MAAM,CAAA;KAAE,KAAK,OAAO,CAAC,IAAI,CAAC,CAAC;CACzE,CAAC;AAEF;;;GAGG;AACH,MAAM,MAAM,aAAa,CAAC,QAAQ,IAAI,CAAC,OAAO,EAAE,oBAAoB,CAAC,QAAQ,GAAG,aAAa,CAAC,KAAK,OAAO,CAAC,IAAI,CAAC,CAAC;AAEjH,MAAM,MAAM,mBAAmB,CAAC,QAAQ,IAAI;IAC1C,OAAO,EAAE,aAAa,CAAC,QAAQ,CAAC,CAAC;CAClC,CAAC"}
@@ -1 +1 @@
1
- {"version":3,"file":"CommandAction.js","sourceRoot":"","sources":["../../src/types/CommandAction.ts"],"names":[],"mappings":"","sourcesContent":["import type { TaskReporter } from '@ms-cloudpack/task-reporter';\nimport type { CloudpackConfig } from '@ms-cloudpack/config';\nimport type { TelemetryClient } from '@ms-cloudpack/telemetry';\nimport type { AutoDispose } from './AutoDispose.js';\n\nexport type CommandActionOptions<TOptions> = {\n options: TOptions;\n reporter: TaskReporter;\n cwd: string;\n initialize: (appPath: string) => Promise<{\n telemetryClient: TelemetryClient;\n config: CloudpackConfig;\n }>;\n autoDispose: AutoDispose;\n abortSignal: AbortSignal;\n exit: (result: { exitCode: number; message?: string }) => Promise<void>;\n};\n\nexport type CommandAction<TOptions> = (options: CommandActionOptions<TOptions>) => Promise<void>;\n"]}
1
+ {"version":3,"file":"CommandAction.js","sourceRoot":"","sources":["../../src/types/CommandAction.ts"],"names":[],"mappings":"","sourcesContent":["import type { TaskReporter } from '@ms-cloudpack/task-reporter';\nimport type { CloudpackConfig } from '@ms-cloudpack/config';\nimport type { TelemetryClient } from '@ms-cloudpack/telemetry';\nimport type { AutoDispose } from './AutoDispose.js';\nimport type { SharedOptions } from '../types/SharedOptions.js';\n\nexport type CommandActionOptions<TOptions> = {\n /**\n * Command-specific options, parsed from `process.argv`.\n * Types are generally defined in each command's `src/commands/<name>/types/<Name>Types.ts` module.\n * The command line options are defined in each command's `src/commands/<name>/index.ts` module.\n */\n options: TOptions;\n\n reporter: TaskReporter;\n\n abortSignal: AbortSignal;\n\n /**\n * Function that can be called with any `Disposable`s that should be cleaned up automatically\n * when the program exits. (See `AutoDisposableList.add` for implementation.)\n */\n autoDispose: AutoDispose;\n\n /**\n * This should be called at or near the beginning of the action to initialize the config,\n * telemetry, and reporting. (See `createInitializeFunction` for implementation.)\n */\n initialize: (initializeOptions: { appPath: string; overrideOptions?: Partial<SharedOptions> }) => Promise<{\n telemetryClient: TelemetryClient;\n config: CloudpackConfig;\n }>;\n\n /**\n * This should be called at the end of the action to dispose resources, log completion,\n * and exit the program. (See `createExitFunction` for implementation.)\n */\n exit: (result: { exitCode: number; message?: string }) => Promise<void>;\n};\n\n/**\n * Command action function. This is the type of the `execute` function which should be exported\n * from each command's `src/commands/<name>/execute.ts` module.\n */\nexport type CommandAction<TOptions> = (options: CommandActionOptions<TOptions & SharedOptions>) => Promise<void>;\n\nexport type CommandActionModule<TOptions> = {\n execute: CommandAction<TOptions>;\n};\n"]}
@@ -0,0 +1,14 @@
1
+ import type { Command } from 'commander';
2
+ /**
3
+ * Initialize a command object for a sub-command.
4
+ * This is the type for the `init` function exported by each `src/commands/<name>/index.ts` module.
5
+ * @param program Command object for the program.
6
+ */
7
+ export type CommandInitFunction = (program: Command) => void;
8
+ /**
9
+ * Type for each `src/commands/<name>/index.ts` module.
10
+ */
11
+ export type CommandInitModule = {
12
+ init: CommandInitFunction;
13
+ };
14
+ //# sourceMappingURL=CommandInitFunction.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"CommandInitFunction.d.ts","sourceRoot":"","sources":["../../src/types/CommandInitFunction.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,OAAO,EAAE,MAAM,WAAW,CAAC;AAEzC;;;;GAIG;AACH,MAAM,MAAM,mBAAmB,GAAG,CAAC,OAAO,EAAE,OAAO,KAAK,IAAI,CAAC;AAE7D;;GAEG;AACH,MAAM,MAAM,iBAAiB,GAAG;IAC9B,IAAI,EAAE,mBAAmB,CAAC;CAC3B,CAAC"}
@@ -0,0 +1,2 @@
1
+ export {};
2
+ //# sourceMappingURL=CommandInitFunction.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"CommandInitFunction.js","sourceRoot":"","sources":["../../src/types/CommandInitFunction.ts"],"names":[],"mappings":"","sourcesContent":["import type { Command } from 'commander';\n\n/**\n * Initialize a command object for a sub-command.\n * This is the type for the `init` function exported by each `src/commands/<name>/index.ts` module.\n * @param program Command object for the program.\n */\nexport type CommandInitFunction = (program: Command) => void;\n\n/**\n * Type for each `src/commands/<name>/index.ts` module.\n */\nexport type CommandInitModule = {\n init: CommandInitFunction;\n};\n"]}
@@ -0,0 +1,31 @@
1
+ /**
2
+ * Shared options for all commands.
3
+ */
4
+ export interface SharedOptions {
5
+ /**
6
+ * The current working directory (mainly customized for tests).
7
+ * @default process.cwd()
8
+ */
9
+ cwd: string;
10
+ /**
11
+ * Whether to enable debug logging (superset of --verbose).
12
+ */
13
+ debug?: boolean;
14
+ /**
15
+ * Whether to enable verbose logging.
16
+ */
17
+ verbose?: boolean;
18
+ /**
19
+ * Whether to enable colors. Available on the command line as `--no-color`.
20
+ */
21
+ color?: boolean;
22
+ /**
23
+ * Whether to disable non-essential logging.
24
+ */
25
+ quiet?: boolean;
26
+ /**
27
+ * Experimental feature names to enable.
28
+ */
29
+ features?: string[];
30
+ }
31
+ //# sourceMappingURL=SharedOptions.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"SharedOptions.d.ts","sourceRoot":"","sources":["../../src/types/SharedOptions.ts"],"names":[],"mappings":"AAAA;;GAEG;AACH,MAAM,WAAW,aAAa;IAC5B;;;OAGG;IACH,GAAG,EAAE,MAAM,CAAC;IAEZ;;OAEG;IACH,KAAK,CAAC,EAAE,OAAO,CAAC;IAEhB;;OAEG;IACH,OAAO,CAAC,EAAE,OAAO,CAAC;IAElB;;OAEG;IACH,KAAK,CAAC,EAAE,OAAO,CAAC;IAEhB;;OAEG;IACH,KAAK,CAAC,EAAE,OAAO,CAAC;IAEhB;;OAEG;IACH,QAAQ,CAAC,EAAE,MAAM,EAAE,CAAC;CACrB"}
@@ -0,0 +1,2 @@
1
+ export {};
2
+ //# sourceMappingURL=SharedOptions.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"SharedOptions.js","sourceRoot":"","sources":["../../src/types/SharedOptions.ts"],"names":[],"mappings":"","sourcesContent":["/**\n * Shared options for all commands.\n */\nexport interface SharedOptions {\n /**\n * The current working directory (mainly customized for tests).\n * @default process.cwd()\n */\n cwd: string;\n\n /**\n * Whether to enable debug logging (superset of --verbose).\n */\n debug?: boolean;\n\n /**\n * Whether to enable verbose logging.\n */\n verbose?: boolean;\n\n /**\n * Whether to enable colors. Available on the command line as `--no-color`.\n */\n color?: boolean;\n\n /**\n * Whether to disable non-essential logging.\n */\n quiet?: boolean;\n\n /**\n * Experimental feature names to enable.\n */\n features?: string[];\n}\n"]}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ms-cloudpack/cli",
3
- "version": "0.49.0",
3
+ "version": "0.49.2",
4
4
  "description": "The Cloudpack command line interface - a tool for managing fast inner and outer looping in web apps.",
5
5
  "license": "MIT",
6
6
  "type": "module",
@@ -11,15 +11,15 @@
11
11
  },
12
12
  "dependencies": {
13
13
  "@lage-run/target-graph": "^0.8.7",
14
- "@ms-cloudpack/api-server": "^0.21.3",
15
- "@ms-cloudpack/config": "^0.14.0",
14
+ "@ms-cloudpack/api-server": "^0.21.5",
15
+ "@ms-cloudpack/config": "^0.14.1",
16
16
  "@ms-cloudpack/create-express-app": "^1.3.12",
17
17
  "@ms-cloudpack/json-utilities": "^0.0.8",
18
- "@ms-cloudpack/overlay": "^0.16.5",
19
- "@ms-cloudpack/package-utilities": "^5.1.10",
18
+ "@ms-cloudpack/overlay": "^0.16.7",
19
+ "@ms-cloudpack/package-utilities": "^5.1.11",
20
20
  "@ms-cloudpack/path-string-parsing": "^1.1.1",
21
21
  "@ms-cloudpack/path-utilities": "^2.3.5",
22
- "@ms-cloudpack/task-reporter": "^0.8.2",
22
+ "@ms-cloudpack/task-reporter": "^0.9.0",
23
23
  "@ms-cloudpack/telemetry": "^0.4.0",
24
24
  "commander": "^11.0.0",
25
25
  "cross-spawn": "^7.0.3",
@@ -1,4 +0,0 @@
1
- import type { Command } from 'commander';
2
- import type { CreateCommandAction } from '../common/createCommandActionFunction.js';
3
- export type CommandFunction = (command: Command, createAction: CreateCommandAction) => void;
4
- //# sourceMappingURL=CommandFunction.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"CommandFunction.d.ts","sourceRoot":"","sources":["../../src/types/CommandFunction.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,OAAO,EAAE,MAAM,WAAW,CAAC;AACzC,OAAO,KAAK,EAAE,mBAAmB,EAAE,MAAM,0CAA0C,CAAC;AAEpF,MAAM,MAAM,eAAe,GAAG,CAAC,OAAO,EAAE,OAAO,EAAE,YAAY,EAAE,mBAAmB,KAAK,IAAI,CAAC"}
@@ -1,2 +0,0 @@
1
- export {};
2
- //# sourceMappingURL=CommandFunction.js.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"CommandFunction.js","sourceRoot":"","sources":["../../src/types/CommandFunction.ts"],"names":[],"mappings":"","sourcesContent":["import type { Command } from 'commander';\nimport type { CreateCommandAction } from '../common/createCommandActionFunction.js';\n\nexport type CommandFunction = (command: Command, createAction: CreateCommandAction) => void;\n"]}
@@ -1,7 +0,0 @@
1
- import type { CommandAction } from './CommandAction.js';
2
- export interface CreateCommandActionOptions<TOptions> {
3
- execute: Promise<{
4
- execute: CommandAction<TOptions>;
5
- }>;
6
- }
7
- //# sourceMappingURL=CreateCommandActionOptions.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"CreateCommandActionOptions.d.ts","sourceRoot":"","sources":["../../src/types/CreateCommandActionOptions.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,aAAa,EAAE,MAAM,oBAAoB,CAAC;AAExD,MAAM,WAAW,0BAA0B,CAAC,QAAQ;IAClD,OAAO,EAAE,OAAO,CAAC;QACf,OAAO,EAAE,aAAa,CAAC,QAAQ,CAAC,CAAC;KAClC,CAAC,CAAC;CACJ"}
@@ -1,2 +0,0 @@
1
- export {};
2
- //# sourceMappingURL=CreateCommandActionOptions.js.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"CreateCommandActionOptions.js","sourceRoot":"","sources":["../../src/types/CreateCommandActionOptions.ts"],"names":[],"mappings":"","sourcesContent":["import type { CommandAction } from './CommandAction.js';\n\nexport interface CreateCommandActionOptions<TOptions> {\n execute: Promise<{\n execute: CommandAction<TOptions>;\n }>;\n}\n"]}