bailian-cli-core 1.3.0 → 1.3.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/dist/index.d.mts CHANGED
@@ -903,7 +903,6 @@ interface Command {
903
903
  usage?: string;
904
904
  options?: OptionDef[];
905
905
  examples?: string[];
906
- apiDocs?: string;
907
906
  execute: (config: Config, flags: GlobalFlags) => Promise<void>;
908
907
  }
909
908
  interface CommandSpec {
@@ -912,7 +911,6 @@ interface CommandSpec {
912
911
  usage?: string;
913
912
  options?: OptionDef[];
914
913
  examples?: string[];
915
- apiDocs?: string;
916
914
  run: (config: Config, flags: GlobalFlags) => Promise<void>;
917
915
  }
918
916
  declare function defineCommand(spec: CommandSpec): Command;
package/dist/index.mjs CHANGED
@@ -921,7 +921,6 @@ function defineCommand(spec) {
921
921
  usage: spec.usage,
922
922
  options: spec.options,
923
923
  examples: spec.examples,
924
- apiDocs: spec.apiDocs,
925
924
  execute: (config, flags) => spec.run(config, flags)
926
925
  };
927
926
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "bailian-cli-core",
3
- "version": "1.3.0",
3
+ "version": "1.3.1",
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": {