@onexapis/cli 1.0.4 → 1.1.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.
package/dist/index.d.mts CHANGED
@@ -76,12 +76,13 @@ interface CloneOptions {
76
76
  bucket?: string;
77
77
  environment?: "staging" | "production";
78
78
  install?: boolean;
79
+ name?: string;
79
80
  }
80
81
  /**
81
82
  * Clone theme source code from S3
82
83
  *
83
84
  * Downloads source.zip and extracts it to a local directory.
84
- * Intended for theme developers who want to fork or customize a theme.
85
+ * Asks the user for a new theme name to differentiate from the original.
85
86
  */
86
87
  declare function cloneCommand(themeName: string, options: CloneOptions): Promise<void>;
87
88
 
package/dist/index.d.ts CHANGED
@@ -76,12 +76,13 @@ interface CloneOptions {
76
76
  bucket?: string;
77
77
  environment?: "staging" | "production";
78
78
  install?: boolean;
79
+ name?: string;
79
80
  }
80
81
  /**
81
82
  * Clone theme source code from S3
82
83
  *
83
84
  * Downloads source.zip and extracts it to a local directory.
84
- * Intended for theme developers who want to fork or customize a theme.
85
+ * Asks the user for a new theme name to differentiate from the original.
85
86
  */
86
87
  declare function cloneCommand(themeName: string, options: CloneOptions): Promise<void>;
87
88