bailian-cli-core 1.3.2 → 1.3.3

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/dist/index.d.mts CHANGED
@@ -903,6 +903,7 @@ interface Command {
903
903
  usage?: string;
904
904
  options?: OptionDef[];
905
905
  examples?: string[];
906
+ notes?: string[];
906
907
  execute: (config: Config, flags: GlobalFlags) => Promise<void>;
907
908
  }
908
909
  interface CommandSpec {
@@ -911,6 +912,7 @@ interface CommandSpec {
911
912
  usage?: string;
912
913
  options?: OptionDef[];
913
914
  examples?: string[];
915
+ notes?: string[];
914
916
  run: (config: Config, flags: GlobalFlags) => Promise<void>;
915
917
  }
916
918
  declare function defineCommand(spec: CommandSpec): Command;
package/dist/index.mjs CHANGED
@@ -921,6 +921,7 @@ function defineCommand(spec) {
921
921
  usage: spec.usage,
922
922
  options: spec.options,
923
923
  examples: spec.examples,
924
+ notes: spec.notes,
924
925
  execute: (config, flags) => spec.run(config, flags)
925
926
  };
926
927
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "bailian-cli-core",
3
- "version": "1.3.2",
3
+ "version": "1.3.3",
4
4
  "description": "Core SDK for bailian-cli. See https://www.npmjs.com/package/bailian-cli for usage.",
5
5
  "homepage": "https://bailian.console.aliyun.com/cli",
6
6
  "bugs": {