@xemahq/biome-host-internal-api-client 0.3.12 → 0.3.14

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.
@@ -47,6 +47,7 @@ export * from './runnerEnrollmentDesiredState';
47
47
  export * from './runnerEnrollmentObservedState';
48
48
  export * from './runnerEnrollmentResponseDto';
49
49
  export * from './runnerEnrollmentResponseDtoDataEnvelope';
50
+ export * from './runnerEnrollmentResponseDtoExecutionTargetLabels';
50
51
  export * from './runnerKind';
51
52
  export * from './runnerTrustTier';
52
53
  export * from './runtimeBindingCandidateResponseDto';
@@ -54,6 +55,7 @@ export * from './runtimeBindingCandidateResponseDtoDataArrayEnvelope';
54
55
  export * from './runtimeBindingCandidateResponseDtoDeniedLabels';
55
56
  export * from './runtimeBindingCandidateResponseDtoInstallationProjectId';
56
57
  export * from './runtimeBindingCandidateResponseDtoRequiredLabels';
58
+ export * from './runtimeBindingCandidateResponseDtoRuntimeLabels';
57
59
  export * from './runtimeBindingCandidateResponseDtoRuntimeOwnerOrgId';
58
60
  export * from './runtimeOperatorKind';
59
61
  export * from './spaceKind';
@@ -64,6 +64,7 @@ __exportStar(require("./runnerEnrollmentDesiredState"), exports);
64
64
  __exportStar(require("./runnerEnrollmentObservedState"), exports);
65
65
  __exportStar(require("./runnerEnrollmentResponseDto"), exports);
66
66
  __exportStar(require("./runnerEnrollmentResponseDtoDataEnvelope"), exports);
67
+ __exportStar(require("./runnerEnrollmentResponseDtoExecutionTargetLabels"), exports);
67
68
  __exportStar(require("./runnerKind"), exports);
68
69
  __exportStar(require("./runnerTrustTier"), exports);
69
70
  __exportStar(require("./runtimeBindingCandidateResponseDto"), exports);
@@ -71,6 +72,7 @@ __exportStar(require("./runtimeBindingCandidateResponseDtoDataArrayEnvelope"), e
71
72
  __exportStar(require("./runtimeBindingCandidateResponseDtoDeniedLabels"), exports);
72
73
  __exportStar(require("./runtimeBindingCandidateResponseDtoInstallationProjectId"), exports);
73
74
  __exportStar(require("./runtimeBindingCandidateResponseDtoRequiredLabels"), exports);
75
+ __exportStar(require("./runtimeBindingCandidateResponseDtoRuntimeLabels"), exports);
74
76
  __exportStar(require("./runtimeBindingCandidateResponseDtoRuntimeOwnerOrgId"), exports);
75
77
  __exportStar(require("./runtimeOperatorKind"), exports);
76
78
  __exportStar(require("./spaceKind"), exports);
@@ -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 });
@@ -3,12 +3,14 @@
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 { RunnerTrustTier } from './runnerTrustTier.js';
9
10
  import type { RuntimeBindingCandidateResponseDtoDeniedLabels } from './runtimeBindingCandidateResponseDtoDeniedLabels.js';
10
11
  import type { RuntimeBindingCandidateResponseDtoInstallationProjectId } from './runtimeBindingCandidateResponseDtoInstallationProjectId.js';
11
12
  import type { RuntimeBindingCandidateResponseDtoRequiredLabels } from './runtimeBindingCandidateResponseDtoRequiredLabels.js';
13
+ import type { RuntimeBindingCandidateResponseDtoRuntimeLabels } from './runtimeBindingCandidateResponseDtoRuntimeLabels.js';
12
14
  import type { RuntimeBindingCandidateResponseDtoRuntimeOwnerOrgId } from './runtimeBindingCandidateResponseDtoRuntimeOwnerOrgId.js';
13
15
  import type { RuntimeOperatorKind } from './runtimeOperatorKind.js';
14
16
  export interface RuntimeBindingCandidateResponseDto {
@@ -31,6 +33,8 @@ export interface RuntimeBindingCandidateResponseDto {
31
33
  runtimeLocality: RunnerDataLocality;
32
34
  runtimeMinimumTrustTier: RunnerTrustTier;
33
35
  runtimeAllowedLocalities: string[];
36
+ runtimeLabels: RuntimeBindingCandidateResponseDtoRuntimeLabels;
37
+ runtimeMaxDataClassification: DataClassification | null;
34
38
  enrollmentId: string;
35
39
  runnerId: string;
36
40
  runnerPrincipalId: string;
@@ -0,0 +1,8 @@
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
+ export type RuntimeBindingCandidateResponseDtoRuntimeLabels = {
7
+ [key: string]: unknown;
8
+ };
@@ -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-internal-api-client",
3
- "version": "0.3.12",
3
+ "version": "0.3.14",
4
4
  "repository": {
5
5
  "type": "git",
6
6
  "url": "git+https://github.com/xema-dev/xema-base.git",