claudekit-cli 3.41.4-dev.23 → 3.41.4-dev.24

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.js CHANGED
@@ -14723,6 +14723,37 @@ var init_github = __esm(() => {
14723
14723
  });
14724
14724
  });
14725
14725
 
14726
+ // src/types/desktop.ts
14727
+ var DesktopPlatformKeySchema, DesktopAssetTypeSchema, DesktopPlatformAssetSchema, DesktopReleaseManifestSchema;
14728
+ var init_desktop = __esm(() => {
14729
+ init_zod();
14730
+ DesktopPlatformKeySchema = exports_external.enum([
14731
+ "darwin-aarch64",
14732
+ "darwin-x86_64",
14733
+ "linux-x86_64",
14734
+ "windows-x86_64"
14735
+ ]);
14736
+ DesktopAssetTypeSchema = exports_external.enum(["app-zip", "appimage", "portable-exe"]);
14737
+ DesktopPlatformAssetSchema = exports_external.object({
14738
+ name: exports_external.string().min(1),
14739
+ url: exports_external.string().url().refine((value) => value.startsWith("https://"), {
14740
+ message: "Desktop asset URLs must use HTTPS"
14741
+ }),
14742
+ size: exports_external.number().int().nonnegative(),
14743
+ assetType: DesktopAssetTypeSchema
14744
+ });
14745
+ DesktopReleaseManifestSchema = exports_external.object({
14746
+ version: exports_external.string().min(1),
14747
+ date: exports_external.string().min(1),
14748
+ platforms: exports_external.object({
14749
+ "darwin-aarch64": DesktopPlatformAssetSchema,
14750
+ "darwin-x86_64": DesktopPlatformAssetSchema,
14751
+ "linux-x86_64": DesktopPlatformAssetSchema,
14752
+ "windows-x86_64": DesktopPlatformAssetSchema
14753
+ })
14754
+ });
14755
+ });
14756
+
14726
14757
  // src/types/metadata.ts
14727
14758
  var TrackedFileSchema, InstalledSettingsSchema, KitMetadataSchema, MultiKitMetadataSchema, LegacyMetadataSchema, MetadataSchema, DownloadMethodSchema, ConfigSchema;
14728
14759
  var init_metadata = __esm(() => {
@@ -15399,6 +15430,10 @@ __export(exports_types, {
15399
15430
  ExtractionError: () => ExtractionError,
15400
15431
  ExcludePatternSchema: () => ExcludePatternSchema,
15401
15432
  DownloadError: () => DownloadError,
15433
+ DesktopReleaseManifestSchema: () => DesktopReleaseManifestSchema,
15434
+ DesktopPlatformKeySchema: () => DesktopPlatformKeySchema,
15435
+ DesktopPlatformAssetSchema: () => DesktopPlatformAssetSchema,
15436
+ DesktopAssetTypeSchema: () => DesktopAssetTypeSchema,
15402
15437
  DEFAULT_STATUSLINE_LINES: () => DEFAULT_STATUSLINE_LINES,
15403
15438
  DEFAULT_SECTION_CONFIG: () => DEFAULT_SECTION_CONFIG,
15404
15439
  DEFAULT_PROJECTS_REGISTRY: () => DEFAULT_PROJECTS_REGISTRY,
@@ -15433,6 +15468,7 @@ var init_types3 = __esm(() => {
15433
15468
  init_kit();
15434
15469
  init_commands();
15435
15470
  init_github();
15471
+ init_desktop();
15436
15472
  init_metadata();
15437
15473
  init_skills();
15438
15474
  init_errors2();
@@ -60626,7 +60662,7 @@ var package_default;
60626
60662
  var init_package = __esm(() => {
60627
60663
  package_default = {
60628
60664
  name: "claudekit-cli",
60629
- version: "3.41.4-dev.23",
60665
+ version: "3.41.4-dev.24",
60630
60666
  description: "CLI tool for bootstrapping and updating ClaudeKit projects",
60631
60667
  type: "module",
60632
60668
  repository: {