@platforma-sdk/block-tools 2.6.44 → 2.6.45

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 (70) hide show
  1. package/README.md +16 -9
  2. package/bin/dev.js +4 -4
  3. package/bin/run.js +3 -3
  4. package/dist/cli.js.map +1 -1
  5. package/dist/cli.mjs +16 -6
  6. package/dist/cli.mjs.map +1 -1
  7. package/dist/cmd/index.d.ts +8 -8
  8. package/dist/cmd/mark-stable.d.ts +1 -1
  9. package/dist/cmd/publish.d.ts +1 -1
  10. package/dist/cmd/restore-overview-from-snapshot.d.ts +1 -1
  11. package/dist/{config-DKBY0B2u.mjs → config-Cc8_zV3b.mjs} +48 -17
  12. package/dist/config-Cc8_zV3b.mjs.map +1 -0
  13. package/dist/config-Ycas5fbX.js.map +1 -1
  14. package/dist/index.js +1 -1
  15. package/dist/index.js.map +1 -1
  16. package/dist/index.mjs +6 -4
  17. package/dist/index.mjs.map +1 -1
  18. package/dist/registry_v1/config_schema.d.ts +7 -7
  19. package/dist/registry_v1/v1_repo_schema.d.ts +1 -1
  20. package/dist/v2/model/block_components.d.ts +19 -19
  21. package/dist/v2/model/block_description.d.ts +102 -102
  22. package/dist/v2/model/block_meta.d.ts +20 -20
  23. package/dist/v2/model/content_conversion.d.ts +2 -2
  24. package/dist/v2/registry/registry.d.ts +1 -1
  25. package/dist/v2/source_package.d.ts +1 -1
  26. package/package.json +31 -29
  27. package/src/cmd/build-meta.ts +15 -15
  28. package/src/cmd/build-model.ts +23 -26
  29. package/src/cmd/index.ts +20 -20
  30. package/src/cmd/list-overview-snapshots.ts +12 -12
  31. package/src/cmd/mark-stable.ts +30 -33
  32. package/src/cmd/pack.ts +15 -15
  33. package/src/cmd/publish.ts +46 -34
  34. package/src/cmd/refresh-registry.ts +15 -15
  35. package/src/cmd/restore-overview-from-snapshot.ts +27 -25
  36. package/src/cmd/update-deps.ts +8 -8
  37. package/src/cmd/upload-package-v1.ts +33 -33
  38. package/src/common_types.ts +1 -1
  39. package/src/io/folder_reader.test.ts +13 -13
  40. package/src/io/folder_reader.ts +18 -20
  41. package/src/io/index.ts +2 -2
  42. package/src/io/storage.test.ts +48 -48
  43. package/src/io/storage.ts +20 -15
  44. package/src/lib.ts +3 -3
  45. package/src/registry_v1/config.ts +11 -11
  46. package/src/registry_v1/config_schema.ts +5 -5
  47. package/src/registry_v1/flags.ts +4 -4
  48. package/src/registry_v1/index.ts +3 -3
  49. package/src/registry_v1/registry.test.ts +54 -54
  50. package/src/registry_v1/registry.ts +29 -25
  51. package/src/registry_v1/v1_repo_schema.ts +3 -3
  52. package/src/util.ts +6 -9
  53. package/src/v2/build_dist.test.ts +8 -9
  54. package/src/v2/build_dist.ts +10 -13
  55. package/src/v2/index.ts +4 -4
  56. package/src/v2/model/block_components.ts +5 -5
  57. package/src/v2/model/block_description.ts +12 -8
  58. package/src/v2/model/block_meta.ts +4 -5
  59. package/src/v2/model/content_conversion.ts +44 -44
  60. package/src/v2/model/index.ts +4 -4
  61. package/src/v2/registry/index.ts +3 -3
  62. package/src/v2/registry/registry.test.ts +223 -197
  63. package/src/v2/registry/registry.ts +93 -66
  64. package/src/v2/registry/registry_reader.test.ts +15 -15
  65. package/src/v2/registry/registry_reader.ts +29 -27
  66. package/src/v2/registry/schema_internal.ts +11 -10
  67. package/src/v2/registry/schema_public.ts +56 -47
  68. package/src/v2/source_package.test.ts +15 -15
  69. package/src/v2/source_package.ts +33 -26
  70. package/dist/config-DKBY0B2u.mjs.map +0 -1
@@ -63,10 +63,6 @@ export declare function ResolvedBlockPackDescriptionFromPackageJson(root: string
63
63
  folder: string;
64
64
  }, string>;
65
65
  }, "strip", z.ZodTypeAny, {
66
- ui: {
67
- type: "absolute-folder";
68
- folder: string;
69
- };
70
66
  workflow: {
71
67
  type: "workflow-v1";
72
68
  main: {
@@ -84,13 +80,17 @@ export declare function ResolvedBlockPackDescriptionFromPackageJson(root: string
84
80
  type: "absolute-file";
85
81
  file: string;
86
82
  };
83
+ ui: {
84
+ type: "absolute-folder";
85
+ folder: string;
86
+ };
87
87
  }, {
88
- ui: string;
89
88
  workflow: string | {
90
89
  type: "workflow-v1";
91
90
  main: string;
92
91
  };
93
92
  model: string;
93
+ ui: string;
94
94
  }>;
95
95
  meta: z.ZodObject<{
96
96
  title: z.ZodString;
@@ -475,8 +475,8 @@ export declare function ResolvedBlockPackDescriptionFromPackageJson(root: string
475
475
  title: string;
476
476
  description: string;
477
477
  organization: {
478
- name: string;
479
478
  url: string;
479
+ name: string;
480
480
  logo?: {
481
481
  type: "absolute-file";
482
482
  file: string;
@@ -495,7 +495,6 @@ export declare function ResolvedBlockPackDescriptionFromPackageJson(root: string
495
495
  } & {
496
496
  [k: string]: unknown;
497
497
  };
498
- tags?: string[] | undefined;
499
498
  longDescription?: {
500
499
  type: "absolute-file";
501
500
  file: string;
@@ -540,6 +539,7 @@ export declare function ResolvedBlockPackDescriptionFromPackageJson(root: string
540
539
  url?: string | undefined;
541
540
  docs?: string | undefined;
542
541
  support?: string | undefined;
542
+ tags?: string[] | undefined;
543
543
  marketplaceRanking?: number | undefined;
544
544
  deprecated?: boolean | undefined;
545
545
  termsOfServiceUrl?: string | undefined;
@@ -548,8 +548,8 @@ export declare function ResolvedBlockPackDescriptionFromPackageJson(root: string
548
548
  title: string;
549
549
  description: string;
550
550
  organization: {
551
- name: string;
552
551
  url: string;
552
+ name: string;
553
553
  logo?: string | {
554
554
  type: "explicit-base64";
555
555
  content: string;
@@ -564,7 +564,6 @@ export declare function ResolvedBlockPackDescriptionFromPackageJson(root: string
564
564
  } & {
565
565
  [k: string]: unknown;
566
566
  };
567
- tags?: string[] | undefined;
568
567
  longDescription?: string | {
569
568
  type: "explicit-string";
570
569
  content: string;
@@ -599,6 +598,7 @@ export declare function ResolvedBlockPackDescriptionFromPackageJson(root: string
599
598
  url?: string | undefined;
600
599
  docs?: string | undefined;
601
600
  support?: string | undefined;
601
+ tags?: string[] | undefined;
602
602
  marketplaceRanking?: number | undefined;
603
603
  deprecated?: boolean | undefined;
604
604
  termsOfServiceUrl?: string | undefined;
@@ -669,10 +669,6 @@ export declare function ResolvedBlockPackDescriptionFromPackageJson(root: string
669
669
  folder: string;
670
670
  }, string>;
671
671
  }, "strip", z.ZodTypeAny, {
672
- ui: {
673
- type: "absolute-folder";
674
- folder: string;
675
- };
676
672
  workflow: {
677
673
  type: "workflow-v1";
678
674
  main: {
@@ -690,13 +686,17 @@ export declare function ResolvedBlockPackDescriptionFromPackageJson(root: string
690
686
  type: "absolute-file";
691
687
  file: string;
692
688
  };
689
+ ui: {
690
+ type: "absolute-folder";
691
+ folder: string;
692
+ };
693
693
  }, {
694
- ui: string;
695
694
  workflow: string | {
696
695
  type: "workflow-v1";
697
696
  main: string;
698
697
  };
699
698
  model: string;
699
+ ui: string;
700
700
  }>;
701
701
  meta: z.ZodObject<{
702
702
  title: z.ZodString;
@@ -1081,8 +1081,8 @@ export declare function ResolvedBlockPackDescriptionFromPackageJson(root: string
1081
1081
  title: string;
1082
1082
  description: string;
1083
1083
  organization: {
1084
- name: string;
1085
1084
  url: string;
1085
+ name: string;
1086
1086
  logo?: {
1087
1087
  type: "absolute-file";
1088
1088
  file: string;
@@ -1101,7 +1101,6 @@ export declare function ResolvedBlockPackDescriptionFromPackageJson(root: string
1101
1101
  } & {
1102
1102
  [k: string]: unknown;
1103
1103
  };
1104
- tags?: string[] | undefined;
1105
1104
  longDescription?: {
1106
1105
  type: "absolute-file";
1107
1106
  file: string;
@@ -1146,6 +1145,7 @@ export declare function ResolvedBlockPackDescriptionFromPackageJson(root: string
1146
1145
  url?: string | undefined;
1147
1146
  docs?: string | undefined;
1148
1147
  support?: string | undefined;
1148
+ tags?: string[] | undefined;
1149
1149
  marketplaceRanking?: number | undefined;
1150
1150
  deprecated?: boolean | undefined;
1151
1151
  termsOfServiceUrl?: string | undefined;
@@ -1154,8 +1154,8 @@ export declare function ResolvedBlockPackDescriptionFromPackageJson(root: string
1154
1154
  title: string;
1155
1155
  description: string;
1156
1156
  organization: {
1157
- name: string;
1158
1157
  url: string;
1158
+ name: string;
1159
1159
  logo?: string | {
1160
1160
  type: "explicit-base64";
1161
1161
  content: string;
@@ -1170,7 +1170,6 @@ export declare function ResolvedBlockPackDescriptionFromPackageJson(root: string
1170
1170
  } & {
1171
1171
  [k: string]: unknown;
1172
1172
  };
1173
- tags?: string[] | undefined;
1174
1173
  longDescription?: string | {
1175
1174
  type: "explicit-string";
1176
1175
  content: string;
@@ -1205,6 +1204,7 @@ export declare function ResolvedBlockPackDescriptionFromPackageJson(root: string
1205
1204
  url?: string | undefined;
1206
1205
  docs?: string | undefined;
1207
1206
  support?: string | undefined;
1207
+ tags?: string[] | undefined;
1208
1208
  marketplaceRanking?: number | undefined;
1209
1209
  deprecated?: boolean | undefined;
1210
1210
  termsOfServiceUrl?: string | undefined;
@@ -1275,10 +1275,6 @@ export declare function ResolvedBlockPackDescriptionFromPackageJson(root: string
1275
1275
  folder: string;
1276
1276
  }, string>;
1277
1277
  }, "strip", z.ZodTypeAny, {
1278
- ui: {
1279
- type: "absolute-folder";
1280
- folder: string;
1281
- };
1282
1278
  workflow: {
1283
1279
  type: "workflow-v1";
1284
1280
  main: {
@@ -1296,13 +1292,17 @@ export declare function ResolvedBlockPackDescriptionFromPackageJson(root: string
1296
1292
  type: "absolute-file";
1297
1293
  file: string;
1298
1294
  };
1295
+ ui: {
1296
+ type: "absolute-folder";
1297
+ folder: string;
1298
+ };
1299
1299
  }, {
1300
- ui: string;
1301
1300
  workflow: string | {
1302
1301
  type: "workflow-v1";
1303
1302
  main: string;
1304
1303
  };
1305
1304
  model: string;
1305
+ ui: string;
1306
1306
  }>;
1307
1307
  meta: z.ZodObject<{
1308
1308
  title: z.ZodString;
@@ -1687,8 +1687,8 @@ export declare function ResolvedBlockPackDescriptionFromPackageJson(root: string
1687
1687
  title: string;
1688
1688
  description: string;
1689
1689
  organization: {
1690
- name: string;
1691
1690
  url: string;
1691
+ name: string;
1692
1692
  logo?: {
1693
1693
  type: "absolute-file";
1694
1694
  file: string;
@@ -1707,7 +1707,6 @@ export declare function ResolvedBlockPackDescriptionFromPackageJson(root: string
1707
1707
  } & {
1708
1708
  [k: string]: unknown;
1709
1709
  };
1710
- tags?: string[] | undefined;
1711
1710
  longDescription?: {
1712
1711
  type: "absolute-file";
1713
1712
  file: string;
@@ -1752,6 +1751,7 @@ export declare function ResolvedBlockPackDescriptionFromPackageJson(root: string
1752
1751
  url?: string | undefined;
1753
1752
  docs?: string | undefined;
1754
1753
  support?: string | undefined;
1754
+ tags?: string[] | undefined;
1755
1755
  marketplaceRanking?: number | undefined;
1756
1756
  deprecated?: boolean | undefined;
1757
1757
  termsOfServiceUrl?: string | undefined;
@@ -1760,8 +1760,8 @@ export declare function ResolvedBlockPackDescriptionFromPackageJson(root: string
1760
1760
  title: string;
1761
1761
  description: string;
1762
1762
  organization: {
1763
- name: string;
1764
1763
  url: string;
1764
+ name: string;
1765
1765
  logo?: string | {
1766
1766
  type: "explicit-base64";
1767
1767
  content: string;
@@ -1776,7 +1776,6 @@ export declare function ResolvedBlockPackDescriptionFromPackageJson(root: string
1776
1776
  } & {
1777
1777
  [k: string]: unknown;
1778
1778
  };
1779
- tags?: string[] | undefined;
1780
1779
  longDescription?: string | {
1781
1780
  type: "explicit-string";
1782
1781
  content: string;
@@ -1811,6 +1810,7 @@ export declare function ResolvedBlockPackDescriptionFromPackageJson(root: string
1811
1810
  url?: string | undefined;
1812
1811
  docs?: string | undefined;
1813
1812
  support?: string | undefined;
1813
+ tags?: string[] | undefined;
1814
1814
  marketplaceRanking?: number | undefined;
1815
1815
  deprecated?: boolean | undefined;
1816
1816
  termsOfServiceUrl?: string | undefined;
@@ -1825,10 +1825,6 @@ export declare function ResolvedBlockPackDescriptionFromPackageJson(root: string
1825
1825
  version: string;
1826
1826
  };
1827
1827
  components: {
1828
- ui: {
1829
- type: "absolute-folder";
1830
- folder: string;
1831
- };
1832
1828
  workflow: {
1833
1829
  type: "workflow-v1";
1834
1830
  main: {
@@ -1846,13 +1842,17 @@ export declare function ResolvedBlockPackDescriptionFromPackageJson(root: string
1846
1842
  type: "absolute-file";
1847
1843
  file: string;
1848
1844
  };
1845
+ ui: {
1846
+ type: "absolute-folder";
1847
+ folder: string;
1848
+ };
1849
1849
  };
1850
1850
  meta: {
1851
1851
  title: string;
1852
1852
  description: string;
1853
1853
  organization: {
1854
- name: string;
1855
1854
  url: string;
1855
+ name: string;
1856
1856
  logo?: {
1857
1857
  type: "absolute-file";
1858
1858
  file: string;
@@ -1871,7 +1871,6 @@ export declare function ResolvedBlockPackDescriptionFromPackageJson(root: string
1871
1871
  } & {
1872
1872
  [k: string]: unknown;
1873
1873
  };
1874
- tags?: string[] | undefined;
1875
1874
  longDescription?: {
1876
1875
  type: "absolute-file";
1877
1876
  file: string;
@@ -1916,6 +1915,7 @@ export declare function ResolvedBlockPackDescriptionFromPackageJson(root: string
1916
1915
  url?: string | undefined;
1917
1916
  docs?: string | undefined;
1918
1917
  support?: string | undefined;
1918
+ tags?: string[] | undefined;
1919
1919
  marketplaceRanking?: number | undefined;
1920
1920
  deprecated?: boolean | undefined;
1921
1921
  termsOfServiceUrl?: string | undefined;
@@ -1985,10 +1985,6 @@ export declare function ResolvedBlockPackDescriptionFromPackageJson(root: string
1985
1985
  folder: string;
1986
1986
  }, string>;
1987
1987
  }, "strip", z.ZodTypeAny, {
1988
- ui: {
1989
- type: "absolute-folder";
1990
- folder: string;
1991
- };
1992
1988
  workflow: {
1993
1989
  type: "workflow-v1";
1994
1990
  main: {
@@ -2006,13 +2002,17 @@ export declare function ResolvedBlockPackDescriptionFromPackageJson(root: string
2006
2002
  type: "absolute-file";
2007
2003
  file: string;
2008
2004
  };
2005
+ ui: {
2006
+ type: "absolute-folder";
2007
+ folder: string;
2008
+ };
2009
2009
  }, {
2010
- ui: string;
2011
2010
  workflow: string | {
2012
2011
  type: "workflow-v1";
2013
2012
  main: string;
2014
2013
  };
2015
2014
  model: string;
2015
+ ui: string;
2016
2016
  }>;
2017
2017
  meta: z.ZodObject<{
2018
2018
  title: z.ZodString;
@@ -2397,8 +2397,8 @@ export declare function ResolvedBlockPackDescriptionFromPackageJson(root: string
2397
2397
  title: string;
2398
2398
  description: string;
2399
2399
  organization: {
2400
- name: string;
2401
2400
  url: string;
2401
+ name: string;
2402
2402
  logo?: {
2403
2403
  type: "absolute-file";
2404
2404
  file: string;
@@ -2417,7 +2417,6 @@ export declare function ResolvedBlockPackDescriptionFromPackageJson(root: string
2417
2417
  } & {
2418
2418
  [k: string]: unknown;
2419
2419
  };
2420
- tags?: string[] | undefined;
2421
2420
  longDescription?: {
2422
2421
  type: "absolute-file";
2423
2422
  file: string;
@@ -2462,6 +2461,7 @@ export declare function ResolvedBlockPackDescriptionFromPackageJson(root: string
2462
2461
  url?: string | undefined;
2463
2462
  docs?: string | undefined;
2464
2463
  support?: string | undefined;
2464
+ tags?: string[] | undefined;
2465
2465
  marketplaceRanking?: number | undefined;
2466
2466
  deprecated?: boolean | undefined;
2467
2467
  termsOfServiceUrl?: string | undefined;
@@ -2470,8 +2470,8 @@ export declare function ResolvedBlockPackDescriptionFromPackageJson(root: string
2470
2470
  title: string;
2471
2471
  description: string;
2472
2472
  organization: {
2473
- name: string;
2474
2473
  url: string;
2474
+ name: string;
2475
2475
  logo?: string | {
2476
2476
  type: "explicit-base64";
2477
2477
  content: string;
@@ -2486,7 +2486,6 @@ export declare function ResolvedBlockPackDescriptionFromPackageJson(root: string
2486
2486
  } & {
2487
2487
  [k: string]: unknown;
2488
2488
  };
2489
- tags?: string[] | undefined;
2490
2489
  longDescription?: string | {
2491
2490
  type: "explicit-string";
2492
2491
  content: string;
@@ -2521,6 +2520,7 @@ export declare function ResolvedBlockPackDescriptionFromPackageJson(root: string
2521
2520
  url?: string | undefined;
2522
2521
  docs?: string | undefined;
2523
2522
  support?: string | undefined;
2523
+ tags?: string[] | undefined;
2524
2524
  marketplaceRanking?: number | undefined;
2525
2525
  deprecated?: boolean | undefined;
2526
2526
  termsOfServiceUrl?: string | undefined;
@@ -2766,10 +2766,6 @@ export declare function BlockPackDescriptionConsolidateToFolder(dstFolder: strin
2766
2766
  folder: string;
2767
2767
  }>;
2768
2768
  }, "strip", z.ZodTypeAny, {
2769
- ui: {
2770
- type: "relative";
2771
- path: string;
2772
- };
2773
2769
  workflow: {
2774
2770
  type: "workflow-v1";
2775
2771
  main: {
@@ -2799,11 +2795,11 @@ export declare function BlockPackDescriptionConsolidateToFolder(dstFolder: strin
2799
2795
  content: string;
2800
2796
  mimeType: string;
2801
2797
  };
2802
- }, {
2803
2798
  ui: {
2804
- type: "absolute-folder";
2805
- folder: string;
2799
+ type: "relative";
2800
+ path: string;
2806
2801
  };
2802
+ }, {
2807
2803
  workflow: {
2808
2804
  type: "explicit-base64";
2809
2805
  content: string;
@@ -2830,6 +2826,10 @@ export declare function BlockPackDescriptionConsolidateToFolder(dstFolder: strin
2830
2826
  type: "absolute-file";
2831
2827
  file: string;
2832
2828
  };
2829
+ ui: {
2830
+ type: "absolute-folder";
2831
+ folder: string;
2832
+ };
2833
2833
  }>, z.ZodObject<{
2834
2834
  workflow: z.ZodUnion<[z.ZodPipeline<z.ZodEffects<z.ZodObject<{
2835
2835
  type: z.ZodLiteral<"relative">;
@@ -3185,8 +3185,8 @@ export declare function BlockPackDescriptionConsolidateToFolder(dstFolder: strin
3185
3185
  title: string;
3186
3186
  description: string;
3187
3187
  organization: {
3188
- name: string;
3189
3188
  url: string;
3189
+ name: string;
3190
3190
  logo?: {
3191
3191
  type: "relative";
3192
3192
  path: string;
@@ -3198,7 +3198,6 @@ export declare function BlockPackDescriptionConsolidateToFolder(dstFolder: strin
3198
3198
  } & {
3199
3199
  [k: string]: unknown;
3200
3200
  };
3201
- tags?: string[] | undefined;
3202
3201
  longDescription?: {
3203
3202
  type: "relative";
3204
3203
  path: string;
@@ -3224,6 +3223,7 @@ export declare function BlockPackDescriptionConsolidateToFolder(dstFolder: strin
3224
3223
  url?: string | undefined;
3225
3224
  docs?: string | undefined;
3226
3225
  support?: string | undefined;
3226
+ tags?: string[] | undefined;
3227
3227
  marketplaceRanking?: number | undefined;
3228
3228
  deprecated?: boolean | undefined;
3229
3229
  termsOfServiceUrl?: string | undefined;
@@ -3232,8 +3232,8 @@ export declare function BlockPackDescriptionConsolidateToFolder(dstFolder: strin
3232
3232
  title: string;
3233
3233
  description: string;
3234
3234
  organization: {
3235
- name: string;
3236
3235
  url: string;
3236
+ name: string;
3237
3237
  logo?: {
3238
3238
  type: "explicit-base64";
3239
3239
  content: string;
@@ -3245,7 +3245,6 @@ export declare function BlockPackDescriptionConsolidateToFolder(dstFolder: strin
3245
3245
  } & {
3246
3246
  [k: string]: unknown;
3247
3247
  };
3248
- tags?: string[] | undefined;
3249
3248
  longDescription?: {
3250
3249
  type: "explicit-string";
3251
3250
  content: string;
@@ -3271,6 +3270,7 @@ export declare function BlockPackDescriptionConsolidateToFolder(dstFolder: strin
3271
3270
  url?: string | undefined;
3272
3271
  docs?: string | undefined;
3273
3272
  support?: string | undefined;
3273
+ tags?: string[] | undefined;
3274
3274
  marketplaceRanking?: number | undefined;
3275
3275
  deprecated?: boolean | undefined;
3276
3276
  termsOfServiceUrl?: string | undefined;
@@ -3514,10 +3514,6 @@ export declare function BlockPackDescriptionConsolidateToFolder(dstFolder: strin
3514
3514
  folder: string;
3515
3515
  }>;
3516
3516
  }, "strip", z.ZodTypeAny, {
3517
- ui: {
3518
- type: "relative";
3519
- path: string;
3520
- };
3521
3517
  workflow: {
3522
3518
  type: "workflow-v1";
3523
3519
  main: {
@@ -3547,11 +3543,11 @@ export declare function BlockPackDescriptionConsolidateToFolder(dstFolder: strin
3547
3543
  content: string;
3548
3544
  mimeType: string;
3549
3545
  };
3550
- }, {
3551
3546
  ui: {
3552
- type: "absolute-folder";
3553
- folder: string;
3547
+ type: "relative";
3548
+ path: string;
3554
3549
  };
3550
+ }, {
3555
3551
  workflow: {
3556
3552
  type: "explicit-base64";
3557
3553
  content: string;
@@ -3578,6 +3574,10 @@ export declare function BlockPackDescriptionConsolidateToFolder(dstFolder: strin
3578
3574
  type: "absolute-file";
3579
3575
  file: string;
3580
3576
  };
3577
+ ui: {
3578
+ type: "absolute-folder";
3579
+ folder: string;
3580
+ };
3581
3581
  }>, z.ZodObject<{
3582
3582
  workflow: z.ZodUnion<[z.ZodPipeline<z.ZodEffects<z.ZodObject<{
3583
3583
  type: z.ZodLiteral<"relative">;
@@ -3933,8 +3933,8 @@ export declare function BlockPackDescriptionConsolidateToFolder(dstFolder: strin
3933
3933
  title: string;
3934
3934
  description: string;
3935
3935
  organization: {
3936
- name: string;
3937
3936
  url: string;
3937
+ name: string;
3938
3938
  logo?: {
3939
3939
  type: "relative";
3940
3940
  path: string;
@@ -3946,7 +3946,6 @@ export declare function BlockPackDescriptionConsolidateToFolder(dstFolder: strin
3946
3946
  } & {
3947
3947
  [k: string]: unknown;
3948
3948
  };
3949
- tags?: string[] | undefined;
3950
3949
  longDescription?: {
3951
3950
  type: "relative";
3952
3951
  path: string;
@@ -3972,6 +3971,7 @@ export declare function BlockPackDescriptionConsolidateToFolder(dstFolder: strin
3972
3971
  url?: string | undefined;
3973
3972
  docs?: string | undefined;
3974
3973
  support?: string | undefined;
3974
+ tags?: string[] | undefined;
3975
3975
  marketplaceRanking?: number | undefined;
3976
3976
  deprecated?: boolean | undefined;
3977
3977
  termsOfServiceUrl?: string | undefined;
@@ -3980,8 +3980,8 @@ export declare function BlockPackDescriptionConsolidateToFolder(dstFolder: strin
3980
3980
  title: string;
3981
3981
  description: string;
3982
3982
  organization: {
3983
- name: string;
3984
3983
  url: string;
3984
+ name: string;
3985
3985
  logo?: {
3986
3986
  type: "explicit-base64";
3987
3987
  content: string;
@@ -3993,7 +3993,6 @@ export declare function BlockPackDescriptionConsolidateToFolder(dstFolder: strin
3993
3993
  } & {
3994
3994
  [k: string]: unknown;
3995
3995
  };
3996
- tags?: string[] | undefined;
3997
3996
  longDescription?: {
3998
3997
  type: "explicit-string";
3999
3998
  content: string;
@@ -4019,6 +4018,7 @@ export declare function BlockPackDescriptionConsolidateToFolder(dstFolder: strin
4019
4018
  url?: string | undefined;
4020
4019
  docs?: string | undefined;
4021
4020
  support?: string | undefined;
4021
+ tags?: string[] | undefined;
4022
4022
  marketplaceRanking?: number | undefined;
4023
4023
  deprecated?: boolean | undefined;
4024
4024
  termsOfServiceUrl?: string | undefined;
@@ -4262,10 +4262,6 @@ export declare function BlockPackDescriptionConsolidateToFolder(dstFolder: strin
4262
4262
  folder: string;
4263
4263
  }>;
4264
4264
  }, "strip", z.ZodTypeAny, {
4265
- ui: {
4266
- type: "relative";
4267
- path: string;
4268
- };
4269
4265
  workflow: {
4270
4266
  type: "workflow-v1";
4271
4267
  main: {
@@ -4295,11 +4291,11 @@ export declare function BlockPackDescriptionConsolidateToFolder(dstFolder: strin
4295
4291
  content: string;
4296
4292
  mimeType: string;
4297
4293
  };
4298
- }, {
4299
4294
  ui: {
4300
- type: "absolute-folder";
4301
- folder: string;
4295
+ type: "relative";
4296
+ path: string;
4302
4297
  };
4298
+ }, {
4303
4299
  workflow: {
4304
4300
  type: "explicit-base64";
4305
4301
  content: string;
@@ -4326,6 +4322,10 @@ export declare function BlockPackDescriptionConsolidateToFolder(dstFolder: strin
4326
4322
  type: "absolute-file";
4327
4323
  file: string;
4328
4324
  };
4325
+ ui: {
4326
+ type: "absolute-folder";
4327
+ folder: string;
4328
+ };
4329
4329
  }>, z.ZodObject<{
4330
4330
  workflow: z.ZodUnion<[z.ZodPipeline<z.ZodEffects<z.ZodObject<{
4331
4331
  type: z.ZodLiteral<"relative">;
@@ -4681,8 +4681,8 @@ export declare function BlockPackDescriptionConsolidateToFolder(dstFolder: strin
4681
4681
  title: string;
4682
4682
  description: string;
4683
4683
  organization: {
4684
- name: string;
4685
4684
  url: string;
4685
+ name: string;
4686
4686
  logo?: {
4687
4687
  type: "relative";
4688
4688
  path: string;
@@ -4694,7 +4694,6 @@ export declare function BlockPackDescriptionConsolidateToFolder(dstFolder: strin
4694
4694
  } & {
4695
4695
  [k: string]: unknown;
4696
4696
  };
4697
- tags?: string[] | undefined;
4698
4697
  longDescription?: {
4699
4698
  type: "relative";
4700
4699
  path: string;
@@ -4720,6 +4719,7 @@ export declare function BlockPackDescriptionConsolidateToFolder(dstFolder: strin
4720
4719
  url?: string | undefined;
4721
4720
  docs?: string | undefined;
4722
4721
  support?: string | undefined;
4722
+ tags?: string[] | undefined;
4723
4723
  marketplaceRanking?: number | undefined;
4724
4724
  deprecated?: boolean | undefined;
4725
4725
  termsOfServiceUrl?: string | undefined;
@@ -4728,8 +4728,8 @@ export declare function BlockPackDescriptionConsolidateToFolder(dstFolder: strin
4728
4728
  title: string;
4729
4729
  description: string;
4730
4730
  organization: {
4731
- name: string;
4732
4731
  url: string;
4732
+ name: string;
4733
4733
  logo?: {
4734
4734
  type: "explicit-base64";
4735
4735
  content: string;
@@ -4741,7 +4741,6 @@ export declare function BlockPackDescriptionConsolidateToFolder(dstFolder: strin
4741
4741
  } & {
4742
4742
  [k: string]: unknown;
4743
4743
  };
4744
- tags?: string[] | undefined;
4745
4744
  longDescription?: {
4746
4745
  type: "explicit-string";
4747
4746
  content: string;
@@ -4767,6 +4766,7 @@ export declare function BlockPackDescriptionConsolidateToFolder(dstFolder: strin
4767
4766
  url?: string | undefined;
4768
4767
  docs?: string | undefined;
4769
4768
  support?: string | undefined;
4769
+ tags?: string[] | undefined;
4770
4770
  marketplaceRanking?: number | undefined;
4771
4771
  deprecated?: boolean | undefined;
4772
4772
  termsOfServiceUrl?: string | undefined;
@@ -7193,10 +7193,6 @@ export declare function BlockPackDescriptionManifestAddRelativePathPrefix(prefix
7193
7193
  path: string;
7194
7194
  }>;
7195
7195
  }, "strip", z.ZodTypeAny, {
7196
- ui: {
7197
- type: "relative";
7198
- path: string;
7199
- };
7200
7196
  workflow: {
7201
7197
  type: "workflow-v1";
7202
7198
  main: {
@@ -7214,11 +7210,11 @@ export declare function BlockPackDescriptionManifestAddRelativePathPrefix(prefix
7214
7210
  type: "relative";
7215
7211
  path: string;
7216
7212
  };
7217
- }, {
7218
7213
  ui: {
7219
7214
  type: "relative";
7220
7215
  path: string;
7221
7216
  };
7217
+ }, {
7222
7218
  workflow: {
7223
7219
  type: "relative";
7224
7220
  path: string;
@@ -7233,6 +7229,10 @@ export declare function BlockPackDescriptionManifestAddRelativePathPrefix(prefix
7233
7229
  type: "relative";
7234
7230
  path: string;
7235
7231
  };
7232
+ ui: {
7233
+ type: "relative";
7234
+ path: string;
7235
+ };
7236
7236
  }>;
7237
7237
  meta: z.ZodObject<{
7238
7238
  title: z.ZodString;
@@ -7465,8 +7465,8 @@ export declare function BlockPackDescriptionManifestAddRelativePathPrefix(prefix
7465
7465
  title: string;
7466
7466
  description: string;
7467
7467
  organization: {
7468
- name: string;
7469
7468
  url: string;
7469
+ name: string;
7470
7470
  logo?: {
7471
7471
  type: "explicit-base64";
7472
7472
  content: string;
@@ -7478,7 +7478,6 @@ export declare function BlockPackDescriptionManifestAddRelativePathPrefix(prefix
7478
7478
  } & {
7479
7479
  [k: string]: unknown;
7480
7480
  };
7481
- tags?: string[] | undefined;
7482
7481
  longDescription?: {
7483
7482
  type: "explicit-string";
7484
7483
  content: string;
@@ -7504,6 +7503,7 @@ export declare function BlockPackDescriptionManifestAddRelativePathPrefix(prefix
7504
7503
  url?: string | undefined;
7505
7504
  docs?: string | undefined;
7506
7505
  support?: string | undefined;
7506
+ tags?: string[] | undefined;
7507
7507
  marketplaceRanking?: number | undefined;
7508
7508
  deprecated?: boolean | undefined;
7509
7509
  termsOfServiceUrl?: string | undefined;
@@ -7512,8 +7512,8 @@ export declare function BlockPackDescriptionManifestAddRelativePathPrefix(prefix
7512
7512
  title: string;
7513
7513
  description: string;
7514
7514
  organization: {
7515
- name: string;
7516
7515
  url: string;
7516
+ name: string;
7517
7517
  logo?: {
7518
7518
  type: "explicit-base64";
7519
7519
  content: string;
@@ -7525,7 +7525,6 @@ export declare function BlockPackDescriptionManifestAddRelativePathPrefix(prefix
7525
7525
  } & {
7526
7526
  [k: string]: unknown;
7527
7527
  };
7528
- tags?: string[] | undefined;
7529
7528
  longDescription?: {
7530
7529
  type: "explicit-string";
7531
7530
  content: string;
@@ -7551,6 +7550,7 @@ export declare function BlockPackDescriptionManifestAddRelativePathPrefix(prefix
7551
7550
  url?: string | undefined;
7552
7551
  docs?: string | undefined;
7553
7552
  support?: string | undefined;
7553
+ tags?: string[] | undefined;
7554
7554
  marketplaceRanking?: number | undefined;
7555
7555
  deprecated?: boolean | undefined;
7556
7556
  termsOfServiceUrl?: string | undefined;
@@ -7690,10 +7690,6 @@ export declare function BlockPackDescriptionManifestAddRelativePathPrefix(prefix
7690
7690
  path: string;
7691
7691
  }>;
7692
7692
  }, "strip", z.ZodTypeAny, {
7693
- ui: {
7694
- type: "relative";
7695
- path: string;
7696
- };
7697
7693
  workflow: {
7698
7694
  type: "workflow-v1";
7699
7695
  main: {
@@ -7711,11 +7707,11 @@ export declare function BlockPackDescriptionManifestAddRelativePathPrefix(prefix
7711
7707
  type: "relative";
7712
7708
  path: string;
7713
7709
  };
7714
- }, {
7715
7710
  ui: {
7716
7711
  type: "relative";
7717
7712
  path: string;
7718
7713
  };
7714
+ }, {
7719
7715
  workflow: {
7720
7716
  type: "relative";
7721
7717
  path: string;
@@ -7730,6 +7726,10 @@ export declare function BlockPackDescriptionManifestAddRelativePathPrefix(prefix
7730
7726
  type: "relative";
7731
7727
  path: string;
7732
7728
  };
7729
+ ui: {
7730
+ type: "relative";
7731
+ path: string;
7732
+ };
7733
7733
  }>;
7734
7734
  meta: z.ZodObject<{
7735
7735
  title: z.ZodString;
@@ -7962,8 +7962,8 @@ export declare function BlockPackDescriptionManifestAddRelativePathPrefix(prefix
7962
7962
  title: string;
7963
7963
  description: string;
7964
7964
  organization: {
7965
- name: string;
7966
7965
  url: string;
7966
+ name: string;
7967
7967
  logo?: {
7968
7968
  type: "explicit-base64";
7969
7969
  content: string;
@@ -7975,7 +7975,6 @@ export declare function BlockPackDescriptionManifestAddRelativePathPrefix(prefix
7975
7975
  } & {
7976
7976
  [k: string]: unknown;
7977
7977
  };
7978
- tags?: string[] | undefined;
7979
7978
  longDescription?: {
7980
7979
  type: "explicit-string";
7981
7980
  content: string;
@@ -8001,6 +8000,7 @@ export declare function BlockPackDescriptionManifestAddRelativePathPrefix(prefix
8001
8000
  url?: string | undefined;
8002
8001
  docs?: string | undefined;
8003
8002
  support?: string | undefined;
8003
+ tags?: string[] | undefined;
8004
8004
  marketplaceRanking?: number | undefined;
8005
8005
  deprecated?: boolean | undefined;
8006
8006
  termsOfServiceUrl?: string | undefined;
@@ -8009,8 +8009,8 @@ export declare function BlockPackDescriptionManifestAddRelativePathPrefix(prefix
8009
8009
  title: string;
8010
8010
  description: string;
8011
8011
  organization: {
8012
- name: string;
8013
8012
  url: string;
8013
+ name: string;
8014
8014
  logo?: {
8015
8015
  type: "explicit-base64";
8016
8016
  content: string;
@@ -8022,7 +8022,6 @@ export declare function BlockPackDescriptionManifestAddRelativePathPrefix(prefix
8022
8022
  } & {
8023
8023
  [k: string]: unknown;
8024
8024
  };
8025
- tags?: string[] | undefined;
8026
8025
  longDescription?: {
8027
8026
  type: "explicit-string";
8028
8027
  content: string;
@@ -8048,6 +8047,7 @@ export declare function BlockPackDescriptionManifestAddRelativePathPrefix(prefix
8048
8047
  url?: string | undefined;
8049
8048
  docs?: string | undefined;
8050
8049
  support?: string | undefined;
8050
+ tags?: string[] | undefined;
8051
8051
  marketplaceRanking?: number | undefined;
8052
8052
  deprecated?: boolean | undefined;
8053
8053
  termsOfServiceUrl?: string | undefined;
@@ -8187,10 +8187,6 @@ export declare function BlockPackDescriptionManifestAddRelativePathPrefix(prefix
8187
8187
  path: string;
8188
8188
  }>;
8189
8189
  }, "strip", z.ZodTypeAny, {
8190
- ui: {
8191
- type: "relative";
8192
- path: string;
8193
- };
8194
8190
  workflow: {
8195
8191
  type: "workflow-v1";
8196
8192
  main: {
@@ -8208,11 +8204,11 @@ export declare function BlockPackDescriptionManifestAddRelativePathPrefix(prefix
8208
8204
  type: "relative";
8209
8205
  path: string;
8210
8206
  };
8211
- }, {
8212
8207
  ui: {
8213
8208
  type: "relative";
8214
8209
  path: string;
8215
8210
  };
8211
+ }, {
8216
8212
  workflow: {
8217
8213
  type: "relative";
8218
8214
  path: string;
@@ -8227,6 +8223,10 @@ export declare function BlockPackDescriptionManifestAddRelativePathPrefix(prefix
8227
8223
  type: "relative";
8228
8224
  path: string;
8229
8225
  };
8226
+ ui: {
8227
+ type: "relative";
8228
+ path: string;
8229
+ };
8230
8230
  }>;
8231
8231
  meta: z.ZodObject<{
8232
8232
  title: z.ZodString;
@@ -8459,8 +8459,8 @@ export declare function BlockPackDescriptionManifestAddRelativePathPrefix(prefix
8459
8459
  title: string;
8460
8460
  description: string;
8461
8461
  organization: {
8462
- name: string;
8463
8462
  url: string;
8463
+ name: string;
8464
8464
  logo?: {
8465
8465
  type: "explicit-base64";
8466
8466
  content: string;
@@ -8472,7 +8472,6 @@ export declare function BlockPackDescriptionManifestAddRelativePathPrefix(prefix
8472
8472
  } & {
8473
8473
  [k: string]: unknown;
8474
8474
  };
8475
- tags?: string[] | undefined;
8476
8475
  longDescription?: {
8477
8476
  type: "explicit-string";
8478
8477
  content: string;
@@ -8498,6 +8497,7 @@ export declare function BlockPackDescriptionManifestAddRelativePathPrefix(prefix
8498
8497
  url?: string | undefined;
8499
8498
  docs?: string | undefined;
8500
8499
  support?: string | undefined;
8500
+ tags?: string[] | undefined;
8501
8501
  marketplaceRanking?: number | undefined;
8502
8502
  deprecated?: boolean | undefined;
8503
8503
  termsOfServiceUrl?: string | undefined;
@@ -8506,8 +8506,8 @@ export declare function BlockPackDescriptionManifestAddRelativePathPrefix(prefix
8506
8506
  title: string;
8507
8507
  description: string;
8508
8508
  organization: {
8509
- name: string;
8510
8509
  url: string;
8510
+ name: string;
8511
8511
  logo?: {
8512
8512
  type: "explicit-base64";
8513
8513
  content: string;
@@ -8519,7 +8519,6 @@ export declare function BlockPackDescriptionManifestAddRelativePathPrefix(prefix
8519
8519
  } & {
8520
8520
  [k: string]: unknown;
8521
8521
  };
8522
- tags?: string[] | undefined;
8523
8522
  longDescription?: {
8524
8523
  type: "explicit-string";
8525
8524
  content: string;
@@ -8545,6 +8544,7 @@ export declare function BlockPackDescriptionManifestAddRelativePathPrefix(prefix
8545
8544
  url?: string | undefined;
8546
8545
  docs?: string | undefined;
8547
8546
  support?: string | undefined;
8547
+ tags?: string[] | undefined;
8548
8548
  marketplaceRanking?: number | undefined;
8549
8549
  deprecated?: boolean | undefined;
8550
8550
  termsOfServiceUrl?: string | undefined;