@xemahq/biome-host-api-client 0.3.13 → 0.3.15

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.
@@ -4,7 +4,7 @@
4
4
  * OpenAPI spec version: 0.1.1
5
5
  */
6
6
  /**
7
- * The distribution's per-biome install policy (`required` | `default-selected` | `optional`) for the active edition, stamped in the distribution lock. Drives the onboarding biome-picker + storefront preselection/lock: `required` = installed and can't be removed; `default-selected` = checked by default but removable; `optional` = off by default. ABSENT for biomes whose catalog source carries no policy (older locks, scan-mode catalogs, remote-federated biomes) — consumers MUST degrade absent to `optional` semantics (never a silent hard default on the wire).
7
+ * The distribution's per-biome install policy (`required` | `default-selected` | `optional`) for the active edition, stamped in the distribution lock. Drives the onboarding biome-picker + storefront preselection/lock: `required` = installed and can't be removed; `default-selected` = checked by default but removable; `optional` = off by default. It may be absent for non-distribution catalog entries; consumers must not infer a distribution policy from that absence.
8
8
  */
9
9
  export type BiomeInstallPolicy = typeof BiomeInstallPolicy[keyof typeof BiomeInstallPolicy];
10
10
  export declare const BiomeInstallPolicy: {
@@ -120,10 +120,12 @@ export * from './runnerEnrollmentManagementAction';
120
120
  export * from './runnerEnrollmentManagementResponseDto';
121
121
  export * from './runnerEnrollmentManagementResponseDtoDataArrayEnvelope';
122
122
  export * from './runnerEnrollmentManagementResponseDtoDataEnvelope';
123
+ export * from './runnerEnrollmentManagementResponseDtoExecutionTargetLabels';
123
124
  export * from './runnerEnrollmentManagementRotationResponseDto';
124
125
  export * from './runnerEnrollmentManagementRotationResponseDtoDataEnvelope';
125
126
  export * from './runnerEnrollmentObservedState';
126
127
  export * from './runnerEnrollmentResponseDto';
128
+ export * from './runnerEnrollmentResponseDtoExecutionTargetLabels';
127
129
  export * from './runnerKind';
128
130
  export * from './runnerTrustTier';
129
131
  export * from './runtimeBindingDesiredState';
@@ -137,10 +137,12 @@ __exportStar(require("./runnerEnrollmentManagementAction"), exports);
137
137
  __exportStar(require("./runnerEnrollmentManagementResponseDto"), exports);
138
138
  __exportStar(require("./runnerEnrollmentManagementResponseDtoDataArrayEnvelope"), exports);
139
139
  __exportStar(require("./runnerEnrollmentManagementResponseDtoDataEnvelope"), exports);
140
+ __exportStar(require("./runnerEnrollmentManagementResponseDtoExecutionTargetLabels"), exports);
140
141
  __exportStar(require("./runnerEnrollmentManagementRotationResponseDto"), exports);
141
142
  __exportStar(require("./runnerEnrollmentManagementRotationResponseDtoDataEnvelope"), exports);
142
143
  __exportStar(require("./runnerEnrollmentObservedState"), exports);
143
144
  __exportStar(require("./runnerEnrollmentResponseDto"), exports);
145
+ __exportStar(require("./runnerEnrollmentResponseDtoExecutionTargetLabels"), exports);
144
146
  __exportStar(require("./runnerKind"), exports);
145
147
  __exportStar(require("./runnerTrustTier"), exports);
146
148
  __exportStar(require("./runtimeBindingDesiredState"), exports);
@@ -15,6 +15,6 @@ export interface OrgBiomeEffectiveEnablementDto {
15
15
  surfaceMode: OrgBiomeSurfaceMode;
16
16
  /** Why the biome has its current state. Used by the admin UI to mark kernel/mandatory rows read-only. */
17
17
  reason: OrgBiomeEnablementReason;
18
- /** The distribution's per-biome install policy (`required` | `default-selected` | `optional`) for the active edition, stamped in the distribution lock. Drives the onboarding biome-picker + storefront preselection/lock: `required` = installed and can't be removed; `default-selected` = checked by default but removable; `optional` = off by default. ABSENT for biomes whose catalog source carries no policy (older locks, scan-mode catalogs, remote-federated biomes) — consumers MUST degrade absent to `optional` semantics (never a silent hard default on the wire). */
18
+ /** The distribution's per-biome install policy (`required` | `default-selected` | `optional`) for the active edition, stamped in the distribution lock. Drives the onboarding biome-picker + storefront preselection/lock: `required` = installed and can't be removed; `default-selected` = checked by default but removable; `optional` = off by default. It may be absent for non-distribution catalog entries; consumers must not infer a distribution policy from that absence. */
19
19
  installPolicy?: BiomeInstallPolicy;
20
20
  }
@@ -3,10 +3,12 @@
3
3
  * Biome Host API
4
4
  * OpenAPI spec version: 0.1.1
5
5
  */
6
+ import type { DataClassification } from './dataClassification.js';
6
7
  import type { InFlightRevocationPolicy } from './inFlightRevocationPolicy.js';
7
8
  import type { RunnerDataLocality } from './runnerDataLocality.js';
8
9
  import type { RunnerEnrollmentDesiredState } from './runnerEnrollmentDesiredState.js';
9
10
  import type { RunnerEnrollmentManagementAction } from './runnerEnrollmentManagementAction.js';
11
+ import type { RunnerEnrollmentManagementResponseDtoExecutionTargetLabels } from './runnerEnrollmentManagementResponseDtoExecutionTargetLabels.js';
10
12
  import type { RunnerEnrollmentObservedState } from './runnerEnrollmentObservedState.js';
11
13
  import type { RunnerKind } from './runnerKind.js';
12
14
  import type { RunnerTrustTier } from './runnerTrustTier.js';
@@ -35,6 +37,10 @@ export interface RunnerEnrollmentManagementResponseDto {
35
37
  operatorKind: RuntimeOperatorKind;
36
38
  /** @nullable */
37
39
  ownerOrgId: string | null;
40
+ /** Labels the OPERATOR declared about the pool this runner is enrolled in (`region` / `residency` / `accelerator`, plus anything else advertised). The kernel stamps these OVER the runner's self-claimed operational labels into the signed lease, so a placement filter matches an operator's declaration rather than a runner's assertion about itself. */
41
+ executionTargetLabels: RunnerEnrollmentManagementResponseDtoExecutionTargetLabels;
42
+ /** The pool's data-classification ceiling, or `null` for un-configured. Never a defaulted `public`: an operator who has declared no ceiling narrows no placement. */
43
+ executionTargetMaxDataClassification: DataClassification | null;
38
44
  /** @nullable */
39
45
  failureCode: string | null;
40
46
  createdBy: string;
@@ -0,0 +1,11 @@
1
+ /**
2
+ * Generated by @xemahq/api-client-generator — do not edit manually.
3
+ * Biome Host API
4
+ * OpenAPI spec version: 0.1.1
5
+ */
6
+ /**
7
+ * Labels the OPERATOR declared about the pool this runner is enrolled in (`region` / `residency` / `accelerator`, plus anything else advertised). The kernel stamps these OVER the runner's self-claimed operational labels into the signed lease, so a placement filter matches an operator's declaration rather than a runner's assertion about itself.
8
+ */
9
+ export type RunnerEnrollmentManagementResponseDtoExecutionTargetLabels = {
10
+ [key: string]: unknown;
11
+ };
@@ -0,0 +1,7 @@
1
+ "use strict";
2
+ /**
3
+ * Generated by @xemahq/api-client-generator — do not edit manually.
4
+ * Biome Host API
5
+ * OpenAPI spec version: 0.1.1
6
+ */
7
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -3,10 +3,12 @@
3
3
  * Biome Host API
4
4
  * OpenAPI spec version: 0.1.1
5
5
  */
6
+ import type { DataClassification } from './dataClassification.js';
6
7
  import type { InFlightRevocationPolicy } from './inFlightRevocationPolicy.js';
7
8
  import type { RunnerDataLocality } from './runnerDataLocality.js';
8
9
  import type { RunnerEnrollmentDesiredState } from './runnerEnrollmentDesiredState.js';
9
10
  import type { RunnerEnrollmentObservedState } from './runnerEnrollmentObservedState.js';
11
+ import type { RunnerEnrollmentResponseDtoExecutionTargetLabels } from './runnerEnrollmentResponseDtoExecutionTargetLabels.js';
10
12
  import type { RunnerKind } from './runnerKind.js';
11
13
  import type { RunnerTrustTier } from './runnerTrustTier.js';
12
14
  import type { RuntimeOperatorKind } from './runtimeOperatorKind.js';
@@ -34,6 +36,10 @@ export interface RunnerEnrollmentResponseDto {
34
36
  operatorKind: RuntimeOperatorKind;
35
37
  /** @nullable */
36
38
  ownerOrgId: string | null;
39
+ /** Labels the OPERATOR declared about the pool this runner is enrolled in (`region` / `residency` / `accelerator`, plus anything else advertised). The kernel stamps these OVER the runner's self-claimed operational labels into the signed lease, so a placement filter matches an operator's declaration rather than a runner's assertion about itself. */
40
+ executionTargetLabels: RunnerEnrollmentResponseDtoExecutionTargetLabels;
41
+ /** The pool's data-classification ceiling, or `null` for un-configured. Never a defaulted `public`: an operator who has declared no ceiling narrows no placement. */
42
+ executionTargetMaxDataClassification: DataClassification | null;
37
43
  /** @nullable */
38
44
  failureCode: string | null;
39
45
  createdBy: string;
@@ -0,0 +1,11 @@
1
+ /**
2
+ * Generated by @xemahq/api-client-generator — do not edit manually.
3
+ * Biome Host API
4
+ * OpenAPI spec version: 0.1.1
5
+ */
6
+ /**
7
+ * Labels the OPERATOR declared about the pool this runner is enrolled in (`region` / `residency` / `accelerator`, plus anything else advertised). The kernel stamps these OVER the runner's self-claimed operational labels into the signed lease, so a placement filter matches an operator's declaration rather than a runner's assertion about itself.
8
+ */
9
+ export type RunnerEnrollmentResponseDtoExecutionTargetLabels = {
10
+ [key: string]: unknown;
11
+ };
@@ -0,0 +1,7 @@
1
+ "use strict";
2
+ /**
3
+ * Generated by @xemahq/api-client-generator — do not edit manually.
4
+ * Biome Host API
5
+ * OpenAPI spec version: 0.1.1
6
+ */
7
+ Object.defineProperty(exports, "__esModule", { value: true });
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@xemahq/biome-host-api-client",
3
- "version": "0.3.13",
3
+ "version": "0.3.15",
4
4
  "main": "./dist/index.js",
5
5
  "types": "./dist/index.d.ts",
6
6
  "files": [