@xemahq/biome-sdk 0.1.3 → 0.1.5

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.
@@ -1,4 +1,4 @@
1
- import { type BiomeEventSubscription } from '@xemahq/kernel-contracts/biome';
1
+ import { BiomeAudience, type BiomeEventSubscription } from '@xemahq/kernel-contracts/biome';
2
2
  import { MigrationRunnerKind, OrgDatabasePurpose } from '@xemahq/kernel-contracts/org-database';
3
3
  import { RunnerTrustTier } from '@xemahq/kernel-contracts/runner';
4
4
  import { z } from 'zod';
@@ -7,7 +7,6 @@ export declare const BiomeScopeSchema: z.ZodEnum<{
7
7
  kernel: "kernel";
8
8
  base: "base";
9
9
  platform: "platform";
10
- "third-party": "third-party";
11
10
  }>;
12
11
  export type BiomeScope = z.infer<typeof BiomeScopeSchema>;
13
12
  export declare const BiomeTargetSchema: z.ZodEnum<{
@@ -74,8 +73,8 @@ export declare const BiomeShipsSchema: z.ZodObject<{
74
73
  }, z.core.$strict>;
75
74
  export type BiomeShips = z.infer<typeof BiomeShipsSchema>;
76
75
  export declare const BiomeTrustTierSchema: z.ZodEnum<{
77
- "third-party": "third-party";
78
76
  "first-party": "first-party";
77
+ "third-party": "third-party";
79
78
  }>;
80
79
  export type BiomeTrustTier = z.infer<typeof BiomeTrustTierSchema>;
81
80
  export declare const BiomeAgentModeSchema: z.ZodEnum<{
@@ -157,6 +156,13 @@ declare const RuntimeRequirementsSchema: z.ZodObject<{
157
156
  }, z.core.$strict>>;
158
157
  }, z.core.$strict>;
159
158
  export type RuntimeRequirements = z.infer<typeof RuntimeRequirementsSchema>;
159
+ declare const BiomeDisplaySchema: z.ZodObject<{
160
+ icon: z.ZodOptional<z.ZodString>;
161
+ category: z.ZodOptional<z.ZodString>;
162
+ summary: z.ZodOptional<z.ZodString>;
163
+ accent: z.ZodOptional<z.ZodString>;
164
+ }, z.core.$strict>;
165
+ export type BiomeDisplay = z.infer<typeof BiomeDisplaySchema>;
160
166
  declare const ServerBiomeXemaSchema: z.ZodObject<{
161
167
  subscribes: z.ZodOptional<z.ZodArray<z.ZodType<BiomeEventSubscription, unknown, z.core.$ZodTypeInternals<BiomeEventSubscription, unknown>>>>;
162
168
  requires: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
@@ -174,15 +180,22 @@ declare const ServerBiomeXemaSchema: z.ZodObject<{
174
180
  permissions: z.ZodOptional<z.ZodType<import("@xemahq/kernel-contracts/biome").BiomePermissionsManifest, unknown, z.core.$ZodTypeInternals<import("@xemahq/kernel-contracts/biome").BiomePermissionsManifest, unknown>>>;
175
181
  lifecycle: z.ZodOptional<z.ZodType<import("@xemahq/kernel-contracts/biome").BiomeLifecycleHooks, unknown, z.core.$ZodTypeInternals<import("@xemahq/kernel-contracts/biome").BiomeLifecycleHooks, unknown>>>;
176
182
  engines: z.ZodOptional<z.ZodType<import("@xemahq/kernel-contracts/biome").BiomeEngines, unknown, z.core.$ZodTypeInternals<import("@xemahq/kernel-contracts/biome").BiomeEngines, unknown>>>;
183
+ audience: z.ZodOptional<z.ZodEnum<typeof BiomeAudience>>;
184
+ storeListed: z.ZodOptional<z.ZodBoolean>;
177
185
  id: z.ZodString;
178
186
  displayName: z.ZodString;
179
187
  description: z.ZodOptional<z.ZodString>;
188
+ display: z.ZodOptional<z.ZodObject<{
189
+ icon: z.ZodOptional<z.ZodString>;
190
+ category: z.ZodOptional<z.ZodString>;
191
+ summary: z.ZodOptional<z.ZodString>;
192
+ accent: z.ZodOptional<z.ZodString>;
193
+ }, z.core.$strict>>;
180
194
  scope: z.ZodEnum<{
181
195
  system: "system";
182
196
  kernel: "kernel";
183
197
  base: "base";
184
198
  platform: "platform";
185
- "third-party": "third-party";
186
199
  }>;
187
200
  target: z.ZodLiteral<"server">;
188
201
  runtimeRequirements: z.ZodOptional<z.ZodObject<{
@@ -234,8 +247,8 @@ declare const ServerBiomeXemaSchema: z.ZodObject<{
234
247
  secrets: z.ZodOptional<z.ZodArray<z.ZodString>>;
235
248
  }, z.core.$strict>>;
236
249
  trustTier: z.ZodOptional<z.ZodEnum<{
237
- "third-party": "third-party";
238
250
  "first-party": "first-party";
251
+ "third-party": "third-party";
239
252
  }>>;
240
253
  integrationRequirements: z.ZodOptional<z.ZodArray<z.ZodObject<{
241
254
  adapterKind: z.ZodString;
@@ -342,15 +355,22 @@ declare const WebBiomeXemaSchema: z.ZodObject<{
342
355
  permissions: z.ZodOptional<z.ZodType<import("@xemahq/kernel-contracts/biome").BiomePermissionsManifest, unknown, z.core.$ZodTypeInternals<import("@xemahq/kernel-contracts/biome").BiomePermissionsManifest, unknown>>>;
343
356
  lifecycle: z.ZodOptional<z.ZodType<import("@xemahq/kernel-contracts/biome").BiomeLifecycleHooks, unknown, z.core.$ZodTypeInternals<import("@xemahq/kernel-contracts/biome").BiomeLifecycleHooks, unknown>>>;
344
357
  engines: z.ZodOptional<z.ZodType<import("@xemahq/kernel-contracts/biome").BiomeEngines, unknown, z.core.$ZodTypeInternals<import("@xemahq/kernel-contracts/biome").BiomeEngines, unknown>>>;
358
+ audience: z.ZodOptional<z.ZodEnum<typeof BiomeAudience>>;
359
+ storeListed: z.ZodOptional<z.ZodBoolean>;
345
360
  id: z.ZodString;
346
361
  displayName: z.ZodString;
347
362
  description: z.ZodOptional<z.ZodString>;
363
+ display: z.ZodOptional<z.ZodObject<{
364
+ icon: z.ZodOptional<z.ZodString>;
365
+ category: z.ZodOptional<z.ZodString>;
366
+ summary: z.ZodOptional<z.ZodString>;
367
+ accent: z.ZodOptional<z.ZodString>;
368
+ }, z.core.$strict>>;
348
369
  scope: z.ZodEnum<{
349
370
  system: "system";
350
371
  kernel: "kernel";
351
372
  base: "base";
352
373
  platform: "platform";
353
- "third-party": "third-party";
354
374
  }>;
355
375
  target: z.ZodLiteral<"web">;
356
376
  mandatory: z.ZodOptional<z.ZodBoolean>;
@@ -383,15 +403,22 @@ export declare const BiomeXemaSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
383
403
  permissions: z.ZodOptional<z.ZodType<import("@xemahq/kernel-contracts/biome").BiomePermissionsManifest, unknown, z.core.$ZodTypeInternals<import("@xemahq/kernel-contracts/biome").BiomePermissionsManifest, unknown>>>;
384
404
  lifecycle: z.ZodOptional<z.ZodType<import("@xemahq/kernel-contracts/biome").BiomeLifecycleHooks, unknown, z.core.$ZodTypeInternals<import("@xemahq/kernel-contracts/biome").BiomeLifecycleHooks, unknown>>>;
385
405
  engines: z.ZodOptional<z.ZodType<import("@xemahq/kernel-contracts/biome").BiomeEngines, unknown, z.core.$ZodTypeInternals<import("@xemahq/kernel-contracts/biome").BiomeEngines, unknown>>>;
406
+ audience: z.ZodOptional<z.ZodEnum<typeof BiomeAudience>>;
407
+ storeListed: z.ZodOptional<z.ZodBoolean>;
386
408
  id: z.ZodString;
387
409
  displayName: z.ZodString;
388
410
  description: z.ZodOptional<z.ZodString>;
411
+ display: z.ZodOptional<z.ZodObject<{
412
+ icon: z.ZodOptional<z.ZodString>;
413
+ category: z.ZodOptional<z.ZodString>;
414
+ summary: z.ZodOptional<z.ZodString>;
415
+ accent: z.ZodOptional<z.ZodString>;
416
+ }, z.core.$strict>>;
389
417
  scope: z.ZodEnum<{
390
418
  system: "system";
391
419
  kernel: "kernel";
392
420
  base: "base";
393
421
  platform: "platform";
394
- "third-party": "third-party";
395
422
  }>;
396
423
  target: z.ZodLiteral<"server">;
397
424
  runtimeRequirements: z.ZodOptional<z.ZodObject<{
@@ -443,8 +470,8 @@ export declare const BiomeXemaSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
443
470
  secrets: z.ZodOptional<z.ZodArray<z.ZodString>>;
444
471
  }, z.core.$strict>>;
445
472
  trustTier: z.ZodOptional<z.ZodEnum<{
446
- "third-party": "third-party";
447
473
  "first-party": "first-party";
474
+ "third-party": "third-party";
448
475
  }>>;
449
476
  integrationRequirements: z.ZodOptional<z.ZodArray<z.ZodObject<{
450
477
  adapterKind: z.ZodString;
@@ -550,15 +577,22 @@ export declare const BiomeXemaSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
550
577
  permissions: z.ZodOptional<z.ZodType<import("@xemahq/kernel-contracts/biome").BiomePermissionsManifest, unknown, z.core.$ZodTypeInternals<import("@xemahq/kernel-contracts/biome").BiomePermissionsManifest, unknown>>>;
551
578
  lifecycle: z.ZodOptional<z.ZodType<import("@xemahq/kernel-contracts/biome").BiomeLifecycleHooks, unknown, z.core.$ZodTypeInternals<import("@xemahq/kernel-contracts/biome").BiomeLifecycleHooks, unknown>>>;
552
579
  engines: z.ZodOptional<z.ZodType<import("@xemahq/kernel-contracts/biome").BiomeEngines, unknown, z.core.$ZodTypeInternals<import("@xemahq/kernel-contracts/biome").BiomeEngines, unknown>>>;
580
+ audience: z.ZodOptional<z.ZodEnum<typeof BiomeAudience>>;
581
+ storeListed: z.ZodOptional<z.ZodBoolean>;
553
582
  id: z.ZodString;
554
583
  displayName: z.ZodString;
555
584
  description: z.ZodOptional<z.ZodString>;
585
+ display: z.ZodOptional<z.ZodObject<{
586
+ icon: z.ZodOptional<z.ZodString>;
587
+ category: z.ZodOptional<z.ZodString>;
588
+ summary: z.ZodOptional<z.ZodString>;
589
+ accent: z.ZodOptional<z.ZodString>;
590
+ }, z.core.$strict>>;
556
591
  scope: z.ZodEnum<{
557
592
  system: "system";
558
593
  kernel: "kernel";
559
594
  base: "base";
560
595
  platform: "platform";
561
- "third-party": "third-party";
562
596
  }>;
563
597
  target: z.ZodLiteral<"web">;
564
598
  mandatory: z.ZodOptional<z.ZodBoolean>;
@@ -597,15 +631,22 @@ export declare const BiomeManifestSchema: z.ZodObject<{
597
631
  permissions: z.ZodOptional<z.ZodType<import("@xemahq/kernel-contracts/biome").BiomePermissionsManifest, unknown, z.core.$ZodTypeInternals<import("@xemahq/kernel-contracts/biome").BiomePermissionsManifest, unknown>>>;
598
632
  lifecycle: z.ZodOptional<z.ZodType<import("@xemahq/kernel-contracts/biome").BiomeLifecycleHooks, unknown, z.core.$ZodTypeInternals<import("@xemahq/kernel-contracts/biome").BiomeLifecycleHooks, unknown>>>;
599
633
  engines: z.ZodOptional<z.ZodType<import("@xemahq/kernel-contracts/biome").BiomeEngines, unknown, z.core.$ZodTypeInternals<import("@xemahq/kernel-contracts/biome").BiomeEngines, unknown>>>;
634
+ audience: z.ZodOptional<z.ZodEnum<typeof BiomeAudience>>;
635
+ storeListed: z.ZodOptional<z.ZodBoolean>;
600
636
  id: z.ZodString;
601
637
  displayName: z.ZodString;
602
638
  description: z.ZodOptional<z.ZodString>;
639
+ display: z.ZodOptional<z.ZodObject<{
640
+ icon: z.ZodOptional<z.ZodString>;
641
+ category: z.ZodOptional<z.ZodString>;
642
+ summary: z.ZodOptional<z.ZodString>;
643
+ accent: z.ZodOptional<z.ZodString>;
644
+ }, z.core.$strict>>;
603
645
  scope: z.ZodEnum<{
604
646
  system: "system";
605
647
  kernel: "kernel";
606
648
  base: "base";
607
649
  platform: "platform";
608
- "third-party": "third-party";
609
650
  }>;
610
651
  target: z.ZodLiteral<"server">;
611
652
  runtimeRequirements: z.ZodOptional<z.ZodObject<{
@@ -657,8 +698,8 @@ export declare const BiomeManifestSchema: z.ZodObject<{
657
698
  secrets: z.ZodOptional<z.ZodArray<z.ZodString>>;
658
699
  }, z.core.$strict>>;
659
700
  trustTier: z.ZodOptional<z.ZodEnum<{
660
- "third-party": "third-party";
661
701
  "first-party": "first-party";
702
+ "third-party": "third-party";
662
703
  }>>;
663
704
  integrationRequirements: z.ZodOptional<z.ZodArray<z.ZodObject<{
664
705
  adapterKind: z.ZodString;
@@ -764,15 +805,22 @@ export declare const BiomeManifestSchema: z.ZodObject<{
764
805
  permissions: z.ZodOptional<z.ZodType<import("@xemahq/kernel-contracts/biome").BiomePermissionsManifest, unknown, z.core.$ZodTypeInternals<import("@xemahq/kernel-contracts/biome").BiomePermissionsManifest, unknown>>>;
765
806
  lifecycle: z.ZodOptional<z.ZodType<import("@xemahq/kernel-contracts/biome").BiomeLifecycleHooks, unknown, z.core.$ZodTypeInternals<import("@xemahq/kernel-contracts/biome").BiomeLifecycleHooks, unknown>>>;
766
807
  engines: z.ZodOptional<z.ZodType<import("@xemahq/kernel-contracts/biome").BiomeEngines, unknown, z.core.$ZodTypeInternals<import("@xemahq/kernel-contracts/biome").BiomeEngines, unknown>>>;
808
+ audience: z.ZodOptional<z.ZodEnum<typeof BiomeAudience>>;
809
+ storeListed: z.ZodOptional<z.ZodBoolean>;
767
810
  id: z.ZodString;
768
811
  displayName: z.ZodString;
769
812
  description: z.ZodOptional<z.ZodString>;
813
+ display: z.ZodOptional<z.ZodObject<{
814
+ icon: z.ZodOptional<z.ZodString>;
815
+ category: z.ZodOptional<z.ZodString>;
816
+ summary: z.ZodOptional<z.ZodString>;
817
+ accent: z.ZodOptional<z.ZodString>;
818
+ }, z.core.$strict>>;
770
819
  scope: z.ZodEnum<{
771
820
  system: "system";
772
821
  kernel: "kernel";
773
822
  base: "base";
774
823
  platform: "platform";
775
- "third-party": "third-party";
776
824
  }>;
777
825
  target: z.ZodLiteral<"web">;
778
826
  mandatory: z.ZodOptional<z.ZodBoolean>;
@@ -804,5 +852,7 @@ export declare function parseBiomeManifest(raw: unknown): BiomeManifest;
804
852
  export declare function isServerBiomeManifest(manifest: BiomeManifest): manifest is ServerBiomeManifest;
805
853
  export declare function isWebBiomeManifest(manifest: BiomeManifest): manifest is WebBiomeManifest;
806
854
  export declare function isBiomeMandatory(manifest: BiomeManifest): boolean;
855
+ export declare function getBiomeAudience(manifest: BiomeManifest): BiomeAudience;
856
+ export declare function isBiomeStoreListed(manifest: BiomeManifest): boolean;
807
857
  export {};
808
858
  //# sourceMappingURL=biome-manifest.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"biome-manifest.d.ts","sourceRoot":"","sources":["../../../src/host/lib/biome-manifest.ts"],"names":[],"mappings":"AAMA,OAAO,EAKL,KAAK,sBAAsB,EAC5B,MAAM,gCAAgC,CAAC;AAMxC,OAAO,EACL,mBAAmB,EACnB,kBAAkB,EACnB,MAAM,uCAAuC,CAAC;AAC/C,OAAO,EAGL,eAAe,EAChB,MAAM,iCAAiC,CAAC;AACzC,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AA4BxB,eAAO,MAAM,gBAAgB;;;;;;EAM3B,CAAC;AACH,MAAM,MAAM,UAAU,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,gBAAgB,CAAC,CAAC;AAG1D,eAAO,MAAM,iBAAiB;;;EAA4B,CAAC;AAC3D,MAAM,MAAM,WAAW,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,iBAAiB,CAAC,CAAC;AAqD5D,wBAAgB,gBAAgB,CAAC,IAAI,EAAE,MAAM,GAAG,MAAM,CASrD;AAMD,wBAAgB,eAAe,CAAC,IAAI,EAAE,MAAM,GAAG,MAAM,CASpD;AAMD,eAAO,MAAM,8BAA8B;;;kBAKhC,CAAC;AACZ,MAAM,MAAM,wBAAwB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,8BAA8B,CAAC,CAAC;AAUtF,eAAO,MAAM,yBAAyB;;;;;;;;;;;;;;kBAuB3B,CAAC;AACZ,MAAM,MAAM,mBAAmB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,yBAAyB,CAAC,CAAC;AAgB5E,eAAO,MAAM,4BAA4B;;;;kBAkB9B,CAAC;AACZ,MAAM,MAAM,sBAAsB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,4BAA4B,CAAC,CAAC;AAYlF,eAAO,MAAM,wBAAwB;;;;;;;kBAY1B,CAAC;AACZ,MAAM,MAAM,kBAAkB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,wBAAwB,CAAC,CAAC;AAE1E,eAAO,MAAM,gBAAgB;;;;;;;;;;;;;;;;;;kBAgBlB,CAAC;AACZ,MAAM,MAAM,UAAU,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,gBAAgB,CAAC,CAAC;AAS1D,eAAO,MAAM,oBAAoB;;;EAAyC,CAAC;AAC3E,MAAM,MAAM,cAAc,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,oBAAoB,CAAC,CAAC;AA0BlE,eAAO,MAAM,oBAAoB;;;EAAkC,CAAC;AACpE,MAAM,MAAM,cAAc,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,oBAAoB,CAAC,CAAC;AAclE,eAAO,MAAM,2BAA2B;;;;;;kBAW7B,CAAC;AACZ,MAAM,MAAM,qBAAqB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,2BAA2B,CAAC,CAAC;AAchF,eAAO,MAAM,4BAA4B;;;;;kBAO9B,CAAC;AACZ,MAAM,MAAM,sBAAsB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,4BAA4B,CAAC,CAAC;AAYlF,eAAO,MAAM,mBAAmB;;;;;kBAmBrB,CAAC;AACZ,MAAM,MAAM,aAAa,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,mBAAmB,CAAC,CAAC;AAQhE,eAAO,MAAM,6BAA6B;;;;;;kBAS/B,CAAC;AACZ,MAAM,MAAM,uBAAuB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,6BAA6B,CAAC,CAAC;AAGpF,eAAO,MAAM,0BAA0B;;;kBAK5B,CAAC;AACZ,MAAM,MAAM,oBAAoB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,0BAA0B,CAAC,CAAC;AAU9E,eAAO,MAAM,mCAAmC;;EAA8B,CAAC;AAC/E,MAAM,MAAM,6BAA6B,GAAG,CAAC,CAAC,KAAK,CACjD,OAAO,mCAAmC,CAC3C,CAAC;AAaF,eAAO,MAAM,qCAAqC;;;;;;;;;;;kBAwBvC,CAAC;AACZ,MAAM,MAAM,+BAA+B,GAAG,CAAC,CAAC,KAAK,CACnD,OAAO,qCAAqC,CAC7C,CAAC;AAYF,MAAM,MAAM,sBAAsB,GAAG,sBAAsB,CAAC;AAQ5D,MAAM,MAAM,qBAAqB,GAAG,QAAQ,CAAC,MAAM,CAAC,MAAM,EAAE,MAAM,CAAC,CAAC,CAAC;AAuErE,QAAA,MAAM,yBAAyB;;;;;;;;;;;;;;;;;;kBAwDpB,CAAC;AAEZ,MAAM,MAAM,mBAAmB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,yBAAyB,CAAC,CAAC;AAE5E,QAAA,MAAM,qBAAqB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;kBAqPvB,CAAC;AAEL,QAAA,MAAM,kBAAkB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;kBAsCb,CAAC;AAEZ,eAAO,MAAM,eAAe;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8BAG1B,CAAC;AACH,MAAM,MAAM,SAAS,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,eAAe,CAAC,CAAC;AACxD,MAAM,MAAM,eAAe,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,qBAAqB,CAAC,CAAC;AACpE,MAAM,MAAM,YAAY,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,kBAAkB,CAAC,CAAC;AAgG9D,eAAO,MAAM,mBAAmB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;iBAMhB,CAAC;AAEjB,MAAM,MAAM,aAAa,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,mBAAmB,CAAC,CAAC;AAChE,MAAM,MAAM,mBAAmB,GAAG,aAAa,GAAG;IAAE,IAAI,EAAE,eAAe,CAAA;CAAE,CAAC;AAC5E,MAAM,MAAM,gBAAgB,GAAG,aAAa,GAAG;IAAE,IAAI,EAAE,YAAY,CAAA;CAAE,CAAC;AAEtE,qBAAa,uBAAwB,SAAQ,KAAK;IAChD,QAAQ,CAAC,MAAM,EAAE,SAAS,CAAC,CAAC,IAAI,CAAC,SAAS,EAAE,CAAC;gBACjC,MAAM,EAAE,SAAS,CAAC,CAAC,IAAI,CAAC,SAAS,EAAE;CAShD;AAED,wBAAgB,kBAAkB,CAAC,GAAG,EAAE,OAAO,GAAG,aAAa,CAM9D;AAED,wBAAgB,qBAAqB,CACnC,QAAQ,EAAE,aAAa,GACtB,QAAQ,IAAI,mBAAmB,CAEjC;AAED,wBAAgB,kBAAkB,CAChC,QAAQ,EAAE,aAAa,GACtB,QAAQ,IAAI,gBAAgB,CAE9B;AAMD,wBAAgB,gBAAgB,CAAC,QAAQ,EAAE,aAAa,GAAG,OAAO,CAKjE"}
1
+ {"version":3,"file":"biome-manifest.d.ts","sourceRoot":"","sources":["../../../src/host/lib/biome-manifest.ts"],"names":[],"mappings":"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"}
@@ -7,6 +7,8 @@ exports.parseBiomeManifest = parseBiomeManifest;
7
7
  exports.isServerBiomeManifest = isServerBiomeManifest;
8
8
  exports.isWebBiomeManifest = isWebBiomeManifest;
9
9
  exports.isBiomeMandatory = isBiomeMandatory;
10
+ exports.getBiomeAudience = getBiomeAudience;
11
+ exports.isBiomeStoreListed = isBiomeStoreListed;
10
12
  const connector_1 = require("@xemahq/kernel-contracts/connector");
11
13
  const contribution_1 = require("@xemahq/kernel-contracts/contribution");
12
14
  const capability_1 = require("@xemahq/kernel-contracts/capability");
@@ -20,7 +22,6 @@ exports.BiomeScopeSchema = zod_1.z.enum([
20
22
  'system',
21
23
  'base',
22
24
  'platform',
23
- 'third-party',
24
25
  ]);
25
26
  exports.BiomeTargetSchema = zod_1.z.enum(['server', 'web']);
26
27
  const LEGACY_SHIPS_CONTENT_DIR = {
@@ -204,6 +205,8 @@ const XsiManifestExtensionsShape = {
204
205
  permissions: biome_1.BiomePermissionsManifestSchema.optional(),
205
206
  lifecycle: biome_1.BiomeLifecycleHooksSchema.optional(),
206
207
  engines: biome_1.BiomeEnginesSchema.optional(),
208
+ audience: biome_1.BiomeAudienceSchema.optional(),
209
+ storeListed: zod_1.z.boolean().optional(),
207
210
  };
208
211
  const RuntimeRequirementsSchema = zod_1.z
209
212
  .object({
@@ -241,11 +244,20 @@ const RuntimeRequirementsSchema = zod_1.z
241
244
  .optional(),
242
245
  })
243
246
  .strict();
247
+ const BiomeDisplaySchema = zod_1.z
248
+ .object({
249
+ icon: zod_1.z.string().min(1).optional(),
250
+ category: zod_1.z.string().min(1).optional(),
251
+ summary: zod_1.z.string().min(1).optional(),
252
+ accent: zod_1.z.string().min(1).optional(),
253
+ })
254
+ .strict();
244
255
  const ServerBiomeXemaSchema = zod_1.z
245
256
  .object({
246
257
  id: BiomeIdSchema,
247
258
  displayName: zod_1.z.string().min(1),
248
259
  description: zod_1.z.string().optional(),
260
+ display: BiomeDisplaySchema.optional(),
249
261
  scope: exports.BiomeScopeSchema,
250
262
  target: zod_1.z.literal('server'),
251
263
  runtimeRequirements: RuntimeRequirementsSchema.optional(),
@@ -354,6 +366,7 @@ const WebBiomeXemaSchema = zod_1.z
354
366
  id: BiomeIdSchema,
355
367
  displayName: zod_1.z.string().min(1),
356
368
  description: zod_1.z.string().optional(),
369
+ display: BiomeDisplaySchema.optional(),
357
370
  scope: exports.BiomeScopeSchema,
358
371
  target: zod_1.z.literal('web'),
359
372
  mandatory: zod_1.z.boolean().optional(),
@@ -487,4 +500,13 @@ function isBiomeMandatory(manifest) {
487
500
  }
488
501
  return manifest.xema.scope === 'kernel';
489
502
  }
503
+ function getBiomeAudience(manifest) {
504
+ return manifest.xema.audience ?? biome_1.DEFAULT_BIOME_AUDIENCE;
505
+ }
506
+ function isBiomeStoreListed(manifest) {
507
+ if (getBiomeAudience(manifest) === biome_1.BiomeAudience.Operator) {
508
+ return false;
509
+ }
510
+ return manifest.xema.storeListed ?? true;
511
+ }
490
512
  //# sourceMappingURL=biome-manifest.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"biome-manifest.js","sourceRoot":"","sources":["../../../src/host/lib/biome-manifest.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"biome-manifest.js","sourceRoot":"","sources":["../../../src/host/lib/biome-manifest.ts"],"names":[],"mappings":"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"}
@@ -1 +1 @@
1
- {"version":3,"file":"default-state.d.ts","sourceRoot":"","sources":["../../../src/host/lib/default-state.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,aAAa,EAAE,MAAM,kBAAkB,CAAC;AA8BtD,wBAAgB,iBAAiB,CAAC,QAAQ,EAAE,aAAa,GAAG,OAAO,CASlE"}
1
+ {"version":3,"file":"default-state.d.ts","sourceRoot":"","sources":["../../../src/host/lib/default-state.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,aAAa,EAAE,MAAM,kBAAkB,CAAC;AA6BtD,wBAAgB,iBAAiB,CAAC,QAAQ,EAAE,aAAa,GAAG,OAAO,CAQlE"}
@@ -13,8 +13,6 @@ function defaultEnabledFor(manifest) {
13
13
  return true;
14
14
  if (xema.scope === 'platform')
15
15
  return true;
16
- if (xema.scope === 'third-party')
17
- return false;
18
16
  return false;
19
17
  }
20
18
  //# sourceMappingURL=default-state.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"default-state.js","sourceRoot":"","sources":["../../../src/host/lib/default-state.ts"],"names":[],"mappings":";;AA8BA,8CASC;AATD,SAAgB,iBAAiB,CAAC,QAAuB;IACvD,MAAM,IAAI,GAAG,QAAQ,CAAC,IAAI,CAAC;IAC3B,IAAI,IAAI,CAAC,SAAS,KAAK,IAAI;QAAE,OAAO,IAAI,CAAC;IACzC,IAAI,IAAI,CAAC,KAAK,KAAK,QAAQ;QAAE,OAAO,IAAI,CAAC;IACzC,IAAI,IAAI,CAAC,KAAK,KAAK,QAAQ;QAAE,OAAO,IAAI,CAAC;IACzC,IAAI,IAAI,CAAC,KAAK,KAAK,MAAM;QAAE,OAAO,IAAI,CAAC;IACvC,IAAI,IAAI,CAAC,KAAK,KAAK,UAAU;QAAE,OAAO,IAAI,CAAC;IAC3C,IAAI,IAAI,CAAC,KAAK,KAAK,aAAa;QAAE,OAAO,KAAK,CAAC;IAC/C,OAAO,KAAK,CAAC;AACf,CAAC"}
1
+ {"version":3,"file":"default-state.js","sourceRoot":"","sources":["../../../src/host/lib/default-state.ts"],"names":[],"mappings":";;AA6BA,8CAQC;AARD,SAAgB,iBAAiB,CAAC,QAAuB;IACvD,MAAM,IAAI,GAAG,QAAQ,CAAC,IAAI,CAAC;IAC3B,IAAI,IAAI,CAAC,SAAS,KAAK,IAAI;QAAE,OAAO,IAAI,CAAC;IACzC,IAAI,IAAI,CAAC,KAAK,KAAK,QAAQ;QAAE,OAAO,IAAI,CAAC;IACzC,IAAI,IAAI,CAAC,KAAK,KAAK,QAAQ;QAAE,OAAO,IAAI,CAAC;IACzC,IAAI,IAAI,CAAC,KAAK,KAAK,MAAM;QAAE,OAAO,IAAI,CAAC;IACvC,IAAI,IAAI,CAAC,KAAK,KAAK,UAAU;QAAE,OAAO,IAAI,CAAC;IAC3C,OAAO,KAAK,CAAC;AACf,CAAC"}
@@ -1 +1 @@
1
- {"version":3,"file":"topology.d.ts","sourceRoot":"","sources":["../../../src/host/lib/topology.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,aAAa,EAAE,mBAAmB,EAAE,MAAM,kBAAkB,CAAC;AAc3E,eAAO,MAAM,UAAU,EAAE,QAAQ,CAAC,MAAM,CAAC,MAAM,EAAE,MAAM,CAAC,CAMvD,CAAC;AAiCF,wBAAgB,uBAAuB,CACrC,QAAQ,EAAE,mBAAmB,EAC7B,gBAAgB,EAAE,WAAW,CAAC,MAAM,EAAE,mBAAmB,CAAC,GACzD,MAAM,EAAE,CAaV;AAUD,wBAAgB,oBAAoB,CAClC,aAAa,EAAE,WAAW,CAAC,MAAM,EAAE,mBAAmB,CAAC,GACtD,MAAM,EAAE,CAmCV;AAMD,wBAAgB,0BAA0B,CACxC,aAAa,EAAE,WAAW,CAAC,MAAM,EAAE,mBAAmB,CAAC,GACtD,IAAI,CAqBN;AAYD,wBAAgB,4BAA4B,CAC1C,gBAAgB,EAAE,WAAW,CAAC,MAAM,EAAE,aAAa,CAAC,EACpD,SAAS,EAAE,WAAW,CAAC,MAAM,CAAC,GAC7B,IAAI,CAaN"}
1
+ {"version":3,"file":"topology.d.ts","sourceRoot":"","sources":["../../../src/host/lib/topology.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,aAAa,EAAE,mBAAmB,EAAE,MAAM,kBAAkB,CAAC;AAc3E,eAAO,MAAM,UAAU,EAAE,QAAQ,CAAC,MAAM,CAAC,MAAM,EAAE,MAAM,CAAC,CAKvD,CAAC;AA8BF,wBAAgB,uBAAuB,CACrC,QAAQ,EAAE,mBAAmB,EAC7B,gBAAgB,EAAE,WAAW,CAAC,MAAM,EAAE,mBAAmB,CAAC,GACzD,MAAM,EAAE,CAaV;AAUD,wBAAgB,oBAAoB,CAClC,aAAa,EAAE,WAAW,CAAC,MAAM,EAAE,mBAAmB,CAAC,GACtD,MAAM,EAAE,CAmCV;AAMD,wBAAgB,0BAA0B,CACxC,aAAa,EAAE,WAAW,CAAC,MAAM,EAAE,mBAAmB,CAAC,GACtD,IAAI,CAqBN;AAYD,wBAAgB,4BAA4B,CAC1C,gBAAgB,EAAE,WAAW,CAAC,MAAM,EAAE,aAAa,CAAC,EACpD,SAAS,EAAE,WAAW,CAAC,MAAM,CAAC,GAC7B,IAAI,CAaN"}
@@ -10,14 +10,12 @@ exports.TIER_ORDER = {
10
10
  system: 1,
11
11
  base: 2,
12
12
  platform: 3,
13
- 'third-party': 4,
14
13
  };
15
14
  const ALLOWED_DEPENDENCY_SCOPES = {
16
15
  kernel: new Set(['kernel']),
17
16
  system: new Set(['kernel', 'system']),
18
17
  base: new Set(['kernel', 'system', 'base']),
19
18
  platform: new Set(['kernel', 'system', 'base', 'platform']),
20
- 'third-party': new Set(['kernel', 'system', 'base', 'platform', 'third-party']),
21
19
  };
22
20
  function findIllegalDependencies(manifest, allManifestsById) {
23
21
  const allowed = ALLOWED_DEPENDENCY_SCOPES[manifest.xema.scope];
@@ -1 +1 @@
1
- {"version":3,"file":"topology.js","sourceRoot":"","sources":["../../../src/host/lib/topology.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"topology.js","sourceRoot":"","sources":["../../../src/host/lib/topology.ts"],"names":[],"mappings":"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"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@xemahq/biome-sdk",
3
- "version": "0.1.3",
3
+ "version": "0.1.5",
4
4
  "description": "Consolidated biome-authoring SDK for Xema. One package, per-surface subpath exports: the root meta-import re-exports every kernel contract a biome author needs; `./builder` is the defineBiome entry; `./host` ships framework-agnostic host primitives; `./api` (+ `./api/nest`) ships HTTP-API presets; `./adapter` the integration-adapter contract; `./orchestrator-adapter` and `./agent-workspace` the orchestrator/workspace adapter SDKs.",
5
5
  "license": "Apache-2.0",
6
6
  "publishConfig": {
@@ -15,23 +15,29 @@
15
15
  "README.md",
16
16
  "LICENSE"
17
17
  ],
18
+ "scripts": {
19
+ "clean": "rm -rf dist",
20
+ "build": "tsc -p tsconfig.json",
21
+ "format": "prettier --write \"src/**/*.ts\"",
22
+ "typecheck": "tsc -p tsconfig.json --noEmit"
23
+ },
18
24
  "devDependencies": {
19
- "@nestjs/common": "11.1.13",
20
- "@nestjs/core": "11.1.13",
21
- "@nestjs/swagger": "11.2.6",
25
+ "@nestjs/common": "catalog:",
26
+ "@nestjs/core": "catalog:",
27
+ "@nestjs/swagger": "catalog:",
22
28
  "@types/js-yaml": "^4.0.9",
23
- "@types/node": "25.2.3",
24
- "prettier": "3.6.2",
25
- "reflect-metadata": "0.2.2",
26
- "typescript": "5.9.3"
29
+ "@types/node": "catalog:",
30
+ "prettier": "catalog:",
31
+ "reflect-metadata": "catalog:",
32
+ "typescript": "catalog:"
27
33
  },
28
34
  "peerDependencies": {
29
- "@nestjs/common": "11.1.13",
30
- "@nestjs/core": "11.1.13",
31
- "@nestjs/swagger": "11.2.6",
35
+ "@nestjs/common": "catalog:",
36
+ "@nestjs/core": "catalog:",
37
+ "@nestjs/swagger": "catalog:",
32
38
  "@xemahq/event-hub-client": "^8.3.1",
33
39
  "@xemahq/events": "^0.1.1",
34
- "reflect-metadata": "0.2.2"
40
+ "reflect-metadata": "catalog:"
35
41
  },
36
42
  "peerDependenciesMeta": {
37
43
  "@nestjs/common": {
@@ -54,10 +60,10 @@
54
60
  }
55
61
  },
56
62
  "dependencies": {
57
- "@xemahq/kernel-contracts": "^0.2.0",
63
+ "@xemahq/kernel-contracts": "^0.3.0",
64
+ "@xemahq/registry": "^0.1.0",
58
65
  "js-yaml": "^4.1.0",
59
- "zod": "^4.3.6",
60
- "@xemahq/registry": "0.1.3"
66
+ "zod": "catalog:"
61
67
  },
62
68
  "exports": {
63
69
  ".": {
@@ -100,11 +106,5 @@
100
106
  "./dist/agent-workspace/index.d.ts"
101
107
  ]
102
108
  }
103
- },
104
- "scripts": {
105
- "clean": "rm -rf dist",
106
- "build": "tsc -p tsconfig.json",
107
- "format": "prettier --write \"src/**/*.ts\"",
108
- "typecheck": "tsc -p tsconfig.json --noEmit"
109
109
  }
110
- }
110
+ }
@@ -9,6 +9,9 @@ import {
9
9
  BiomeEventSubscriptionSchema,
10
10
  BiomeLifecycleHooksSchema,
11
11
  BiomePermissionsManifestSchema,
12
+ BiomeAudienceSchema,
13
+ BiomeAudience,
14
+ DEFAULT_BIOME_AUDIENCE,
12
15
  type BiomeEventSubscription,
13
16
  } from '@xemahq/kernel-contracts/biome';
14
17
  import {
@@ -51,14 +54,15 @@ import { z } from 'zod';
51
54
  * high-level daemons (libsystemd, libdbus).
52
55
  * - `platform` — L3 first-party domain biomes (software-dev, …) and
53
56
  * integration biomes (integration-<provider>/…).
54
- * - `third-party` — external (future: npm or git).
57
+ *
58
+ * This is the dependency-tier axis only. Origin/provenance posture is carried
59
+ * separately by the manifest `trustTier` field (`BiomeTrustTierSchema`).
55
60
  */
56
61
  export const BiomeScopeSchema = z.enum([
57
62
  'kernel',
58
63
  'system',
59
64
  'base',
60
65
  'platform',
61
- 'third-party',
62
66
  ]);
63
67
  export type BiomeScope = z.infer<typeof BiomeScopeSchema>;
64
68
 
@@ -530,6 +534,23 @@ const XsiManifestExtensionsShape = {
530
534
  permissions: BiomePermissionsManifestSchema.optional(),
531
535
  lifecycle: BiomeLifecycleHooksSchema.optional(),
532
536
  engines: BiomeEnginesSchema.optional(),
537
+ /**
538
+ * WHO the biome is for. `org` (default) — a normal biome available to
539
+ * organizations and eligible for the store. `operator` — Xema platform
540
+ * operators only: distribution selectors skip it (it ships only when
541
+ * explicitly named), it is never store-listed, hidden from org UIs, and
542
+ * gated to `platform_admin`. See `BiomeAudience` in
543
+ * `@xemahq/kernel-contracts/biome`.
544
+ */
545
+ audience: BiomeAudienceSchema.optional(),
546
+ /**
547
+ * Whether the biome appears in the store catalog. Defaults to `true` for
548
+ * `org`-audience biomes; an `operator` biome is NEVER store-listed
549
+ * regardless of this flag. Set `false` for a normal biome that should ship
550
+ * and be installable but stay out of the store (the lighter "hidden"
551
+ * option). Resolve via `isBiomeStoreListed` — never read raw.
552
+ */
553
+ storeListed: z.boolean().optional(),
533
554
  } as const;
534
555
 
535
556
  /**
@@ -614,11 +635,38 @@ const RuntimeRequirementsSchema = z
614
635
 
615
636
  export type RuntimeRequirements = z.infer<typeof RuntimeRequirementsSchema>;
616
637
 
638
+ /**
639
+ * Optional presentation metadata a biome declares for host-shell surfaces
640
+ * (launchpad tiles, portal biome rails, the portal-admin biome picker). It is
641
+ * purely cosmetic — never consulted for resolution, enablement, or routing —
642
+ * so every field is optional and a host may fall back to its own defaults.
643
+ *
644
+ * - `icon` is a stable key the host resolves to a glyph (the closed set of
645
+ * renderable keys lives in the host shell, not here, so new biomes are never
646
+ * blocked by an enum bump).
647
+ * - `category` groups biomes in the picker/rail (e.g. "Finance"). It is also
648
+ * the seed source for distribution default portals.
649
+ * - `summary` is a short one-liner for tiles, distinct from the longer
650
+ * freeform `description`.
651
+ * - `accent` is an optional CSS color token for the biome's glyph/card.
652
+ */
653
+ const BiomeDisplaySchema = z
654
+ .object({
655
+ icon: z.string().min(1).optional(),
656
+ category: z.string().min(1).optional(),
657
+ summary: z.string().min(1).optional(),
658
+ accent: z.string().min(1).optional(),
659
+ })
660
+ .strict();
661
+
662
+ export type BiomeDisplay = z.infer<typeof BiomeDisplaySchema>;
663
+
617
664
  const ServerBiomeXemaSchema = z
618
665
  .object({
619
666
  id: BiomeIdSchema,
620
667
  displayName: z.string().min(1),
621
668
  description: z.string().optional(),
669
+ display: BiomeDisplaySchema.optional(),
622
670
  scope: BiomeScopeSchema,
623
671
  target: z.literal('server'),
624
672
  /**
@@ -866,6 +914,7 @@ const WebBiomeXemaSchema = z
866
914
  id: BiomeIdSchema,
867
915
  displayName: z.string().min(1),
868
916
  description: z.string().optional(),
917
+ display: BiomeDisplaySchema.optional(),
869
918
  scope: BiomeScopeSchema,
870
919
  target: z.literal('web'),
871
920
  mandatory: z.boolean().optional(),
@@ -1058,3 +1107,24 @@ export function isBiomeMandatory(manifest: BiomeManifest): boolean {
1058
1107
  }
1059
1108
  return manifest.xema.scope === 'kernel';
1060
1109
  }
1110
+
1111
+ /**
1112
+ * Effective audience of a biome, applying the default (`org`) when the
1113
+ * manifest omits the field. Never read `xema.audience` raw — go through this so
1114
+ * the default is applied in exactly one place.
1115
+ */
1116
+ export function getBiomeAudience(manifest: BiomeManifest): BiomeAudience {
1117
+ return manifest.xema.audience ?? DEFAULT_BIOME_AUDIENCE;
1118
+ }
1119
+
1120
+ /**
1121
+ * Whether the biome should appear in the store catalog. An `operator`-audience
1122
+ * biome is NEVER store-listed (hidden from orgs by definition); otherwise the
1123
+ * manifest `storeListed` flag wins, defaulting to `true`.
1124
+ */
1125
+ export function isBiomeStoreListed(manifest: BiomeManifest): boolean {
1126
+ if (getBiomeAudience(manifest) === BiomeAudience.Operator) {
1127
+ return false;
1128
+ }
1129
+ return manifest.xema.storeListed ?? true;
1130
+ }
@@ -22,7 +22,6 @@ import type { BiomeManifest } from './biome-manifest';
22
22
  * distinction — a system biome may still be admin-disabled unless it
23
23
  * also declares `mandatory`). See `enablement-resolver`'s
24
24
  * `computeFixedReason`.
25
- * - third-party defaults to disabled until install (Phase 4).
26
25
  *
27
26
  * No silent fallback — an unknown scope is a programmer error and
28
27
  * resolves to `false`, which surfaces in the admin UI as "disabled by
@@ -35,6 +34,5 @@ export function defaultEnabledFor(manifest: BiomeManifest): boolean {
35
34
  if (xema.scope === 'system') return true;
36
35
  if (xema.scope === 'base') return true;
37
36
  if (xema.scope === 'platform') return true;
38
- if (xema.scope === 'third-party') return false;
39
37
  return false;
40
38
  }
@@ -2,9 +2,9 @@ import type { BiomeManifest, ServerBiomeManifest } from './biome-manifest';
2
2
 
3
3
  /**
4
4
  * Tier order for boot-time ordering: kernel boots first, then system,
5
- * then base, then platform, then third-party. Used to bias the
6
- * topological-sort visit order so the resulting boot sequence is stable
7
- * across different valid topo-sorts.
5
+ * then base, then platform. Used to bias the topological-sort visit order
6
+ * so the resulting boot sequence is stable across different valid
7
+ * topo-sorts.
8
8
  *
9
9
  * Plan-of-record v4.6 §22.5.7 ("Linux-faithful" model): `system` biomes
10
10
  * (Wave 18) sit between kernel and base — the systemd / dbus / sshd /
@@ -17,7 +17,6 @@ export const TIER_ORDER: Readonly<Record<string, number>> = {
17
17
  system: 1,
18
18
  base: 2,
19
19
  platform: 3,
20
- 'third-party': 4,
21
20
  };
22
21
 
23
22
  /**
@@ -27,14 +26,12 @@ export const TIER_ORDER: Readonly<Record<string, number>> = {
27
26
  * - system → kernel, system
28
27
  * - base → kernel, system, base
29
28
  * - platform → kernel, system, base, platform
30
- * - third-party → kernel, system, base, platform, third-party
31
29
  */
32
30
  const ALLOWED_DEPENDENCY_SCOPES: Readonly<Record<string, ReadonlySet<string>>> = {
33
31
  kernel: new Set(['kernel']),
34
32
  system: new Set(['kernel', 'system']),
35
33
  base: new Set(['kernel', 'system', 'base']),
36
34
  platform: new Set(['kernel', 'system', 'base', 'platform']),
37
- 'third-party': new Set(['kernel', 'system', 'base', 'platform', 'third-party']),
38
35
  };
39
36
 
40
37
  /**
@@ -49,7 +46,6 @@ const ALLOWED_DEPENDENCY_SCOPES: Readonly<Record<string, ReadonlySet<string>>> =
49
46
  * - system → kernel, system
50
47
  * - base → kernel, system, base
51
48
  * - platform → kernel, system, base, platform
52
- * - third-party → kernel, system, base, platform, third-party
53
49
  */
54
50
  export function findIllegalDependencies(
55
51
  manifest: ServerBiomeManifest,
@@ -71,8 +67,8 @@ export function findIllegalDependencies(
71
67
 
72
68
  /**
73
69
  * Topological sort of server biomes by dependency, biased by tier so
74
- * kernel biomes land before platform biomes before third-party biomes
75
- * for any free choice in the topo order. Cycles fail fast.
70
+ * kernel biomes land before platform biomes for any free choice in the
71
+ * topo order. Cycles fail fast.
76
72
  *
77
73
  * Web biomes are never topo-sorted: they only declare cross-target refs
78
74
  * (`requiresServerBiomes`) and no nested deps among themselves.
package/LICENSE DELETED
@@ -1,201 +0,0 @@
1
- Apache License
2
- Version 2.0, January 2004
3
- http://www.apache.org/licenses/
4
-
5
- TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
6
-
7
- 1. Definitions.
8
-
9
- "License" shall mean the terms and conditions for use, reproduction,
10
- and distribution as defined by Sections 1 through 9 of this document.
11
-
12
- "Licensor" shall mean the copyright owner or entity authorized by
13
- the copyright owner that is granting the License.
14
-
15
- "Legal Entity" shall mean the union of the acting entity and all
16
- other entities that control, are controlled by, or are under common
17
- control with that entity. For the purposes of this definition,
18
- "control" means (i) the power, direct or indirect, to cause the
19
- direction or management of such entity, whether by contract or
20
- otherwise, or (ii) ownership of fifty percent (50%) or more of the
21
- outstanding shares, or (iii) beneficial ownership of such entity.
22
-
23
- "You" (or "Your") shall mean an individual or Legal Entity
24
- exercising permissions granted by this License.
25
-
26
- "Source" form shall mean the preferred form for making modifications,
27
- including but not limited to software source code, documentation
28
- source, and configuration files.
29
-
30
- "Object" form shall mean any form resulting from mechanical
31
- transformation or translation of a Source form, including but
32
- not limited to compiled object code, generated documentation,
33
- and conversions to other media types.
34
-
35
- "Work" shall mean the work of authorship, whether in Source or
36
- Object form, made available under the License, as indicated by a
37
- copyright notice that is included in or attached to the work
38
- (an example is provided in the Appendix below).
39
-
40
- "Derivative Works" shall mean any work, whether in Source or Object
41
- form, that is based on (or derived from) the Work and for which the
42
- editorial revisions, annotations, elaborations, or other modifications
43
- represent, as a whole, an original work of authorship. For the purposes
44
- of this License, Derivative Works shall not include works that remain
45
- separable from, or merely link (or bind by name) to the interfaces of,
46
- the Work and Derivative Works thereof.
47
-
48
- "Contribution" shall mean any work of authorship, including
49
- the original version of the Work and any modifications or additions
50
- to that Work or Derivative Works thereof, that is intentionally
51
- submitted to Licensor for inclusion in the Work by the copyright owner
52
- or by an individual or Legal Entity authorized to submit on behalf of
53
- the copyright owner. For the purposes of this definition, "submitted"
54
- means any form of electronic, verbal, or written communication sent
55
- to the Licensor or its representatives, including but not limited to
56
- communication on electronic mailing lists, source code control systems,
57
- and issue tracking systems that are managed by, or on behalf of, the
58
- Licensor for the purpose of discussing and improving the Work, but
59
- excluding communication that is conspicuously marked or otherwise
60
- designated in writing by the copyright owner as "Not a Contribution."
61
-
62
- "Contributor" shall mean Licensor and any individual or Legal Entity
63
- on behalf of whom a Contribution has been received by Licensor and
64
- subsequently incorporated within the Work.
65
-
66
- 2. Grant of Copyright License. Subject to the terms and conditions of
67
- this License, each Contributor hereby grants to You a perpetual,
68
- worldwide, non-exclusive, no-charge, royalty-free, irrevocable
69
- copyright license to reproduce, prepare Derivative Works of,
70
- publicly display, publicly perform, sublicense, and distribute the
71
- Work and such Derivative Works in Source or Object form.
72
-
73
- 3. Grant of Patent License. Subject to the terms and conditions of
74
- this License, each Contributor hereby grants to You a perpetual,
75
- worldwide, non-exclusive, no-charge, royalty-free, irrevocable
76
- (except as stated in this section) patent license to make, have made,
77
- use, offer to sell, sell, import, and otherwise transfer the Work,
78
- where such license applies only to those patent claims licensable
79
- by such Contributor that are necessarily infringed by their
80
- Contribution(s) alone or by combination of their Contribution(s)
81
- with the Work to which such Contribution(s) was submitted. If You
82
- institute patent litigation against any entity (including a
83
- cross-claim or counterclaim in a lawsuit) alleging that the Work
84
- or a Contribution incorporated within the Work constitutes direct
85
- or contributory patent infringement, then any patent licenses
86
- granted to You under this License for that Work shall terminate
87
- as of the date such litigation is filed.
88
-
89
- 4. Redistribution. You may reproduce and distribute copies of the
90
- Work or Derivative Works thereof in any medium, with or without
91
- modifications, and in Source or Object form, provided that You
92
- meet the following conditions:
93
-
94
- (a) You must give any other recipients of the Work or
95
- Derivative Works a copy of this License; and
96
-
97
- (b) You must cause any modified files to carry prominent notices
98
- stating that You changed the files; and
99
-
100
- (c) You must retain, in the Source form of any Derivative Works
101
- that You distribute, all copyright, patent, trademark, and
102
- attribution notices from the Source form of the Work,
103
- excluding those notices that do not pertain to any part of
104
- the Derivative Works; and
105
-
106
- (d) If the Work includes a "NOTICE" text file as part of its
107
- distribution, then any Derivative Works that You distribute must
108
- include a readable copy of the attribution notices contained
109
- within such NOTICE file, excluding those notices that do not
110
- pertain to any part of the Derivative Works, in at least one
111
- of the following places: within a NOTICE text file distributed
112
- as part of the Derivative Works; within the Source form or
113
- documentation, if provided along with the Derivative Works; or,
114
- within a display generated by the Derivative Works, if and
115
- wherever such third-party notices normally appear. The contents
116
- of the NOTICE file are for informational purposes only and
117
- do not modify the License. You may add Your own attribution
118
- notices within Derivative Works that You distribute, alongside
119
- or as an addendum to the NOTICE text from the Work, provided
120
- that such additional attribution notices cannot be construed
121
- as modifying the License.
122
-
123
- You may add Your own copyright statement to Your modifications and
124
- may provide additional or different license terms and conditions
125
- for use, reproduction, or distribution of Your modifications, or
126
- for any such Derivative Works as a whole, provided Your use,
127
- reproduction, and distribution of the Work otherwise complies with
128
- the conditions stated in this License.
129
-
130
- 5. Submission of Contributions. Unless You explicitly state otherwise,
131
- any Contribution intentionally submitted for inclusion in the Work
132
- by You to the Licensor shall be under the terms and conditions of
133
- this License, without any additional terms or conditions.
134
- Notwithstanding the above, nothing herein shall supersede or modify
135
- the terms of any separate license agreement you may have executed
136
- with Licensor regarding such Contributions.
137
-
138
- 6. Trademarks. This License does not grant permission to use the trade
139
- names, trademarks, service marks, or product names of the Licensor,
140
- except as required for describing the origin of the Work and
141
- reproducing the content of the NOTICE file.
142
-
143
- 7. Disclaimer of Warranty. Unless required by applicable law or
144
- agreed to in writing, Licensor provides the Work (and each
145
- Contributor provides its Contributions) on an "AS IS" BASIS,
146
- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
147
- implied, including, without limitation, any warranties or conditions
148
- of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
149
- PARTICULAR PURPOSE. You are solely responsible for determining the
150
- appropriateness of using or redistributing the Work and assume any
151
- risks associated with Your exercise of permissions under this License.
152
-
153
- 8. Limitation of Liability. In no event and under no legal theory,
154
- whether in tort (including negligence), contract, or otherwise,
155
- unless required by applicable law (such as deliberate and grossly
156
- negligent acts) or agreed to in writing, shall any Contributor be
157
- liable to You for damages, including any direct, indirect, special,
158
- incidental, or consequential damages of any character arising as a
159
- result of this License or out of the use or inability to use the
160
- Work (including but not limited to damages for loss of goodwill,
161
- work stoppage, computer failure or malfunction, or any and all
162
- other commercial damages or losses), even if such Contributor
163
- has been advised of the possibility of such damages.
164
-
165
- 9. Accepting Warranty or Support. While redistributing the Work or
166
- Derivative Works thereof, You may choose to offer, and charge a
167
- fee for, acceptance of support, warranty, indemnity, or other
168
- liability obligations and/or rights consistent with this License.
169
- However, in accepting such obligations, You may act only on Your
170
- own behalf and on Your sole responsibility, not on behalf of any
171
- other Contributor, and only if You agree to indemnify, defend, and
172
- hold each Contributor harmless for any liability incurred by, or
173
- claims asserted against, such Contributor by reason of your
174
- accepting any such warranty or support.
175
-
176
- END OF TERMS AND CONDITIONS
177
-
178
- APPENDIX: How to apply the Apache License to your work.
179
-
180
- To apply the Apache License to your work, attach the following
181
- boilerplate notice, with the fields enclosed by brackets "[]"
182
- replaced with your own identifying information. (Don't include
183
- the brackets!) The text should be enclosed in the appropriate
184
- comment syntax for the file format. We also recommend that a
185
- file or class name and description of purpose be included on the
186
- same "printed page" as the copyright notice for easier
187
- identification within third-party archives.
188
-
189
- Copyright 2026 Xema
190
-
191
- Licensed under the Apache License, Version 2.0 (the "License");
192
- you may not use this file except in compliance with the License.
193
- You may obtain a copy of the License at
194
-
195
- http://www.apache.org/licenses/LICENSE-2.0
196
-
197
- Unless required by applicable law or agreed to in writing, software
198
- distributed under the License is distributed on an "AS IS" BASIS,
199
- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
200
- See the License for the specific language governing permissions and
201
- limitations under the License.