@xemahq/biome-host-api-client 0.3.5 → 0.3.10
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/custom-fetch.d.ts +22 -0
- package/dist/custom-fetch.js +27 -0
- package/dist/endpoints/biome-installations/biome-installations.d.ts +4 -4
- package/dist/endpoints/biome-installations/biome-installations.js +24 -5
- package/dist/endpoints/execution-targets/execution-targets.d.ts +21 -0
- package/dist/endpoints/execution-targets/execution-targets.js +50 -0
- package/dist/endpoints/org-biome-installations/org-biome-installations.d.ts +4 -4
- package/dist/endpoints/org-biome-installations/org-biome-installations.js +24 -5
- package/dist/endpoints/platform-biomes-quarantine/platform-biomes-quarantine.d.ts +11 -0
- package/dist/endpoints/platform-biomes-quarantine/platform-biomes-quarantine.js +18 -0
- package/dist/endpoints/platform-runner-enrollments/platform-runner-enrollments.d.ts +10 -10
- package/dist/endpoints/platform-runner-enrollments/platform-runner-enrollments.js +20 -20
- package/dist/endpoints/runner-enrollments/runner-enrollments.d.ts +8 -8
- package/dist/endpoints/runner-enrollments/runner-enrollments.js +16 -16
- package/dist/index.d.ts +2 -1
- package/dist/index.js +2 -1
- package/dist/models/biomeInstallationsControllerListParams.d.ts +11 -0
- package/dist/models/biomeInstallationsControllerListParams.js +7 -0
- package/dist/models/biomeQuarantineReportDto.d.ts +11 -0
- package/dist/models/biomeQuarantineReportDtoDataEnvelope.d.ts +9 -0
- package/dist/models/biomeQuarantineStage.d.ts +13 -0
- package/dist/models/biomeQuarantineStage.js +12 -0
- package/dist/models/biomeTarget.d.ts +13 -0
- package/dist/models/biomeTarget.js +12 -0
- package/dist/models/createExecutionTargetDto.d.ts +40 -0
- package/dist/models/createExecutionTargetDto.js +2 -0
- package/dist/models/createExecutionTargetDtoLabels.d.ts +11 -0
- package/dist/models/createExecutionTargetDtoLabels.js +7 -0
- package/dist/models/createRunnerEnrollmentDto.d.ts +2 -0
- package/dist/models/createRuntimeBindingDto.d.ts +1 -1
- package/dist/models/dataClassification.d.ts +16 -0
- package/dist/models/dataClassification.js +15 -0
- package/dist/models/executionTargetResponseDto.d.ts +49 -0
- package/dist/models/executionTargetResponseDto.js +2 -0
- package/dist/models/executionTargetResponseDtoDataArrayEnvelope.d.ts +9 -0
- package/dist/models/executionTargetResponseDtoDataArrayEnvelope.js +2 -0
- package/dist/models/executionTargetResponseDtoDataEnvelope.d.ts +9 -0
- package/dist/models/executionTargetResponseDtoDataEnvelope.js +2 -0
- package/dist/models/executionTargetResponseDtoLabels.d.ts +11 -0
- package/dist/models/executionTargetResponseDtoLabels.js +7 -0
- package/dist/models/{runtimeResponseDtoStatus.d.ts → executionTargetStatus.d.ts} +2 -2
- package/dist/models/{runtimeResponseDtoStatus.js → executionTargetStatus.js} +2 -2
- package/dist/models/index.d.ts +20 -3
- package/dist/models/index.js +20 -3
- package/dist/models/orgBiomeInstallationsControllerListParams.d.ts +11 -0
- package/dist/models/orgBiomeInstallationsControllerListParams.js +7 -0
- package/dist/models/quarantinedBiomeDto.d.ts +23 -0
- package/dist/models/quarantinedBiomeDto.js +2 -0
- package/dist/models/runnerEnrollmentManagementResponseDto.d.ts +4 -1
- package/dist/models/runnerEnrollmentResponseDto.d.ts +4 -1
- package/dist/models/runnerKind.d.ts +18 -0
- package/dist/models/runnerKind.js +17 -0
- package/dist/models/runtimeBindingResponseDto.d.ts +2 -2
- package/dist/models/runtimeIsolationLevel.d.ts +15 -0
- package/dist/models/runtimeIsolationLevel.js +14 -0
- package/dist/models/spaceKind.d.ts +18 -0
- package/dist/models/spaceKind.js +17 -0
- package/dist/models/updateExecutionTargetDto.d.ts +27 -0
- package/dist/models/updateExecutionTargetDto.js +2 -0
- package/dist/models/updateExecutionTargetDtoLabels.d.ts +11 -0
- package/dist/models/updateExecutionTargetDtoLabels.js +7 -0
- package/package.json +2 -2
- package/dist/endpoints/biome-runtimes/biome-runtimes.d.ts +0 -11
- package/dist/endpoints/biome-runtimes/biome-runtimes.js +0 -18
- package/dist/models/runtimeResponseDto.d.ts +0 -34
- package/dist/models/runtimeResponseDtoDataArrayEnvelope.d.ts +0 -9
- /package/dist/models/{runtimeResponseDto.js → biomeQuarantineReportDto.js} +0 -0
- /package/dist/models/{runtimeResponseDtoDataArrayEnvelope.js → biomeQuarantineReportDtoDataEnvelope.js} +0 -0
|
@@ -0,0 +1,9 @@
|
|
|
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
|
+
import type { BiomeQuarantineReportDto } from './biomeQuarantineReportDto.js';
|
|
7
|
+
export interface BiomeQuarantineReportDtoDataEnvelope {
|
|
8
|
+
data: BiomeQuarantineReportDto;
|
|
9
|
+
}
|
|
@@ -0,0 +1,13 @@
|
|
|
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
|
+
* WHICH ingestion step failed. MANIFEST_JSON = the file is not valid JSON; MANIFEST_SCHEMA = it parsed but violates the manifest schema. The two have different causes and different fixes.
|
|
8
|
+
*/
|
|
9
|
+
export type BiomeQuarantineStage = typeof BiomeQuarantineStage[keyof typeof BiomeQuarantineStage];
|
|
10
|
+
export declare const BiomeQuarantineStage: {
|
|
11
|
+
readonly MANIFEST_JSON: "MANIFEST_JSON";
|
|
12
|
+
readonly MANIFEST_SCHEMA: "MANIFEST_SCHEMA";
|
|
13
|
+
};
|
|
@@ -0,0 +1,12 @@
|
|
|
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 });
|
|
8
|
+
exports.BiomeQuarantineStage = void 0;
|
|
9
|
+
exports.BiomeQuarantineStage = {
|
|
10
|
+
MANIFEST_JSON: 'MANIFEST_JSON',
|
|
11
|
+
MANIFEST_SCHEMA: 'MANIFEST_SCHEMA',
|
|
12
|
+
};
|
|
@@ -0,0 +1,13 @@
|
|
|
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
|
+
* Which catalog dropped it.
|
|
8
|
+
*/
|
|
9
|
+
export type BiomeTarget = typeof BiomeTarget[keyof typeof BiomeTarget];
|
|
10
|
+
export declare const BiomeTarget: {
|
|
11
|
+
readonly SERVER: "SERVER";
|
|
12
|
+
readonly WEB: "WEB";
|
|
13
|
+
};
|
|
@@ -0,0 +1,12 @@
|
|
|
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 });
|
|
8
|
+
exports.BiomeTarget = void 0;
|
|
9
|
+
exports.BiomeTarget = {
|
|
10
|
+
SERVER: 'SERVER',
|
|
11
|
+
WEB: 'WEB',
|
|
12
|
+
};
|
|
@@ -0,0 +1,40 @@
|
|
|
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
|
+
import type { CreateExecutionTargetDtoLabels } from './createExecutionTargetDtoLabels.js';
|
|
7
|
+
import type { CredentialDeliveryKind } from './credentialDeliveryKind.js';
|
|
8
|
+
import type { DataClassification } from './dataClassification.js';
|
|
9
|
+
import type { RunnerDataLocality } from './runnerDataLocality.js';
|
|
10
|
+
import type { RunnerTrustTier } from './runnerTrustTier.js';
|
|
11
|
+
import type { RuntimeIsolationLevel } from './runtimeIsolationLevel.js';
|
|
12
|
+
import type { RuntimeOperatorKind } from './runtimeOperatorKind.js';
|
|
13
|
+
import type { SpaceKind } from './spaceKind.js';
|
|
14
|
+
export interface CreateExecutionTargetDto {
|
|
15
|
+
/** Human-meaningful key, unique WITHIN its owner space. Embedded verbatim in a task-queue name, so `:`, `.` and `_` are refused. */
|
|
16
|
+
slug: string;
|
|
17
|
+
displayName: string;
|
|
18
|
+
/** The owner TIER. Only 'org' is writable through this endpoint — 'system' is the platform's seeded pool, and every other tier is outside `EXECUTION_TARGET_SPACE_KINDS`. The identity comes from the request context, never from the body. */
|
|
19
|
+
ownerSpaceKind: SpaceKind;
|
|
20
|
+
/** Isolation boundary this target PROVIDES. */
|
|
21
|
+
isolation: RuntimeIsolationLevel;
|
|
22
|
+
/** Data locality this target PROVIDES. */
|
|
23
|
+
locality: RunnerDataLocality;
|
|
24
|
+
/** Minimum runner trust tier admitted onto this target. */
|
|
25
|
+
minTrustTier: RunnerTrustTier;
|
|
26
|
+
/** Maximum runner trust tier this target may grant. */
|
|
27
|
+
maxTrustTier: RunnerTrustTier;
|
|
28
|
+
/** Localities a runner enrolling onto this target may declare. Never empty — a target no runner can enrol into is a pool the platform cannot keep. */
|
|
29
|
+
allowedLocalities: RunnerDataLocality[];
|
|
30
|
+
/** Who operates the executors behind this target. */
|
|
31
|
+
operatorKind: RuntimeOperatorKind;
|
|
32
|
+
/** How a newly issued runtime credential reaches its holder. */
|
|
33
|
+
credentialDelivery: CredentialDeliveryKind;
|
|
34
|
+
/** OPEN operator label map. `region`, `residency` and `accelerator` are the keys the platform itself reads. Defaults to {}. */
|
|
35
|
+
labels?: CreateExecutionTargetDtoLabels;
|
|
36
|
+
/** Classification CEILING this target accepts. Omitted means un-configured — never a defaulted `public`. */
|
|
37
|
+
maxDataClassification?: DataClassification;
|
|
38
|
+
/** Make this the fallback target WITHIN its owner space. At most one per space; setting it demotes the incumbent in the same transaction. */
|
|
39
|
+
isDefault?: boolean;
|
|
40
|
+
}
|
|
@@ -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
|
+
* OPEN operator label map. `region`, `residency` and `accelerator` are the keys the platform itself reads. Defaults to {}.
|
|
8
|
+
*/
|
|
9
|
+
export type CreateExecutionTargetDtoLabels = {
|
|
10
|
+
[key: string]: string;
|
|
11
|
+
};
|
|
@@ -5,11 +5,13 @@
|
|
|
5
5
|
*/
|
|
6
6
|
import type { InFlightRevocationPolicy } from './inFlightRevocationPolicy.js';
|
|
7
7
|
import type { RunnerDataLocality } from './runnerDataLocality.js';
|
|
8
|
+
import type { RunnerKind } from './runnerKind.js';
|
|
8
9
|
import type { RunnerTrustTier } from './runnerTrustTier.js';
|
|
9
10
|
export interface CreateRunnerEnrollmentDto {
|
|
10
11
|
runnerId: string;
|
|
11
12
|
allowedEnvironmentIds: string[];
|
|
12
13
|
maxTrustTier: RunnerTrustTier;
|
|
13
14
|
allowedLocalities: RunnerDataLocality[];
|
|
15
|
+
allowedKinds: RunnerKind[];
|
|
14
16
|
inFlightPolicy?: InFlightRevocationPolicy;
|
|
15
17
|
}
|
|
@@ -8,7 +8,7 @@ import type { CreateRuntimeBindingDtoRequiredLabels } from './createRuntimeBindi
|
|
|
8
8
|
import type { InFlightRevocationPolicy } from './inFlightRevocationPolicy.js';
|
|
9
9
|
export interface CreateRuntimeBindingDto {
|
|
10
10
|
/** Slug of the runtime to bind this installation onto. */
|
|
11
|
-
|
|
11
|
+
executionTargetSlug: string;
|
|
12
12
|
/** Labels a runner MUST advertise (key/value, AND-matched) to be eligible. Defaults to {}. */
|
|
13
13
|
requiredLabels?: CreateRuntimeBindingDtoRequiredLabels;
|
|
14
14
|
/** Labels that DISQUALIFY a runner from running this installation. Defaults to {}. */
|
|
@@ -0,0 +1,16 @@
|
|
|
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
|
+
* Classification CEILING this target accepts, or null for un-configured. Joined monotonically — it may only ever RAISE restriction.
|
|
8
|
+
*/
|
|
9
|
+
export type DataClassification = typeof DataClassification[keyof typeof DataClassification];
|
|
10
|
+
export declare const DataClassification: {
|
|
11
|
+
readonly public: "public";
|
|
12
|
+
readonly internal: "internal";
|
|
13
|
+
readonly confidential: "confidential";
|
|
14
|
+
readonly secret: "secret";
|
|
15
|
+
readonly regulated: "regulated";
|
|
16
|
+
};
|
|
@@ -0,0 +1,15 @@
|
|
|
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 });
|
|
8
|
+
exports.DataClassification = void 0;
|
|
9
|
+
exports.DataClassification = {
|
|
10
|
+
public: 'public',
|
|
11
|
+
internal: 'internal',
|
|
12
|
+
confidential: 'confidential',
|
|
13
|
+
secret: 'secret',
|
|
14
|
+
regulated: 'regulated',
|
|
15
|
+
};
|
|
@@ -0,0 +1,49 @@
|
|
|
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
|
+
import type { CredentialDeliveryKind } from './credentialDeliveryKind.js';
|
|
7
|
+
import type { DataClassification } from './dataClassification.js';
|
|
8
|
+
import type { ExecutionTargetResponseDtoLabels } from './executionTargetResponseDtoLabels.js';
|
|
9
|
+
import type { ExecutionTargetStatus } from './executionTargetStatus.js';
|
|
10
|
+
import type { RunnerDataLocality } from './runnerDataLocality.js';
|
|
11
|
+
import type { RunnerTrustTier } from './runnerTrustTier.js';
|
|
12
|
+
import type { RuntimeOperatorKind } from './runtimeOperatorKind.js';
|
|
13
|
+
import type { SpaceKind } from './spaceKind.js';
|
|
14
|
+
export interface ExecutionTargetResponseDto {
|
|
15
|
+
id: string;
|
|
16
|
+
slug: string;
|
|
17
|
+
displayName: string;
|
|
18
|
+
/** Canonical `xema://…` SpaceRef URI of the owner. THE address — the tier and the tenant fence below are projections of it. */
|
|
19
|
+
ownerSpaceUri: string;
|
|
20
|
+
/** The owner TIER, projected from `ownerSpaceUri`. Only `system` and `org` are admissible for a placement target. */
|
|
21
|
+
ownerSpaceKind: SpaceKind;
|
|
22
|
+
/** Isolation level this target PROVIDES (RuntimeIsolationLevel wire value). */
|
|
23
|
+
isolation: string;
|
|
24
|
+
/** Data locality this target PROVIDES (RunnerDataLocality wire value). */
|
|
25
|
+
locality: string;
|
|
26
|
+
/** Minimum runner trust tier admitted (RunnerTrustTier wire value). */
|
|
27
|
+
minTrustTier: string;
|
|
28
|
+
operatorKind: RuntimeOperatorKind;
|
|
29
|
+
/**
|
|
30
|
+
* The tenant fence. `null` for the org-less System-owned platform target.
|
|
31
|
+
* @nullable
|
|
32
|
+
*/
|
|
33
|
+
ownerOrgId: string | null;
|
|
34
|
+
credentialDelivery: CredentialDeliveryKind;
|
|
35
|
+
maxTrustTier: RunnerTrustTier;
|
|
36
|
+
allowedLocalities: RunnerDataLocality[];
|
|
37
|
+
/** OPEN operator label map declaring what this pool provides. `ExecutionTargetLabel` names the three keys the platform itself reads (region, residency, accelerator); anything else is an operator vocabulary. */
|
|
38
|
+
labels: ExecutionTargetResponseDtoLabels;
|
|
39
|
+
/** Classification CEILING this target accepts, or null for un-configured. Joined monotonically — it may only ever RAISE restriction. */
|
|
40
|
+
maxDataClassification: DataClassification | null;
|
|
41
|
+
status: ExecutionTargetStatus;
|
|
42
|
+
/** @minimum 1 */
|
|
43
|
+
revision: number;
|
|
44
|
+
/** The fallback target WITHIN its owner space. At most one. */
|
|
45
|
+
isDefault: boolean;
|
|
46
|
+
createdBy: string;
|
|
47
|
+
createdAt: string;
|
|
48
|
+
updatedAt: string;
|
|
49
|
+
}
|
|
@@ -0,0 +1,9 @@
|
|
|
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
|
+
import type { ExecutionTargetResponseDto } from './executionTargetResponseDto.js';
|
|
7
|
+
export interface ExecutionTargetResponseDtoDataArrayEnvelope {
|
|
8
|
+
data: ExecutionTargetResponseDto[];
|
|
9
|
+
}
|
|
@@ -0,0 +1,9 @@
|
|
|
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
|
+
import type { ExecutionTargetResponseDto } from './executionTargetResponseDto.js';
|
|
7
|
+
export interface ExecutionTargetResponseDtoDataEnvelope {
|
|
8
|
+
data: ExecutionTargetResponseDto;
|
|
9
|
+
}
|
|
@@ -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
|
+
* OPEN operator label map declaring what this pool provides. `ExecutionTargetLabel` names the three keys the platform itself reads (region, residency, accelerator); anything else is an operator vocabulary.
|
|
8
|
+
*/
|
|
9
|
+
export type ExecutionTargetResponseDtoLabels = {
|
|
10
|
+
[key: string]: string;
|
|
11
|
+
};
|
|
@@ -3,8 +3,8 @@
|
|
|
3
3
|
* Biome Host API
|
|
4
4
|
* OpenAPI spec version: 0.1.1
|
|
5
5
|
*/
|
|
6
|
-
export type
|
|
7
|
-
export declare const
|
|
6
|
+
export type ExecutionTargetStatus = typeof ExecutionTargetStatus[keyof typeof ExecutionTargetStatus];
|
|
7
|
+
export declare const ExecutionTargetStatus: {
|
|
8
8
|
readonly provisioning: "provisioning";
|
|
9
9
|
readonly active: "active";
|
|
10
10
|
readonly draining: "draining";
|
|
@@ -5,8 +5,8 @@
|
|
|
5
5
|
* OpenAPI spec version: 0.1.1
|
|
6
6
|
*/
|
|
7
7
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
8
|
-
exports.
|
|
9
|
-
exports.
|
|
8
|
+
exports.ExecutionTargetStatus = void 0;
|
|
9
|
+
exports.ExecutionTargetStatus = {
|
|
10
10
|
provisioning: 'provisioning',
|
|
11
11
|
active: 'active',
|
|
12
12
|
draining: 'draining',
|
package/dist/models/index.d.ts
CHANGED
|
@@ -45,6 +45,7 @@ export * from './biomeInstallationResponseDtoDataEnvelope';
|
|
|
45
45
|
export * from './biomeInstallationResponseDtoDisabledAt';
|
|
46
46
|
export * from './biomeInstallationState';
|
|
47
47
|
export * from './biomeInstallationsControllerCreateChain201';
|
|
48
|
+
export * from './biomeInstallationsControllerListParams';
|
|
48
49
|
export * from './biomeLifecycle';
|
|
49
50
|
export * from './biomeLifecycleTransitionResponseDto';
|
|
50
51
|
export * from './biomeLifecycleTransitionResponseDtoDataEnvelope';
|
|
@@ -62,7 +63,11 @@ export * from './biomeProvisioningScaffoldDtoDeclaration';
|
|
|
62
63
|
export * from './biomeProvisioningScaffoldDtoTemplates';
|
|
63
64
|
export * from './biomeProvisioningScaffoldsResponseDto';
|
|
64
65
|
export * from './biomeProvisioningScaffoldsResponseDtoDataEnvelope';
|
|
66
|
+
export * from './biomeQuarantineReportDto';
|
|
67
|
+
export * from './biomeQuarantineReportDtoDataEnvelope';
|
|
68
|
+
export * from './biomeQuarantineStage';
|
|
65
69
|
export * from './biomeScope';
|
|
70
|
+
export * from './biomeTarget';
|
|
66
71
|
export * from './biomeTier';
|
|
67
72
|
export * from './breakGlassRevokeRunnerEnrollmentDto';
|
|
68
73
|
export * from './capabilityDescriptorValidationDto';
|
|
@@ -77,16 +82,24 @@ export * from './contributionKind';
|
|
|
77
82
|
export * from './contributionSyncStatus';
|
|
78
83
|
export * from './createBiomeInstallationDto';
|
|
79
84
|
export * from './createBiomeInstallationDtoConfigJson';
|
|
85
|
+
export * from './createExecutionTargetDto';
|
|
86
|
+
export * from './createExecutionTargetDtoLabels';
|
|
80
87
|
export * from './createRunnerEnrollmentDto';
|
|
81
88
|
export * from './createRuntimeBindingDto';
|
|
82
89
|
export * from './createRuntimeBindingDtoDeniedLabels';
|
|
83
90
|
export * from './createRuntimeBindingDtoRequiredLabels';
|
|
84
91
|
export * from './credentialDeliveryKind';
|
|
92
|
+
export * from './dataClassification';
|
|
85
93
|
export * from './errorDetailsDto';
|
|
86
94
|
export * from './errorDetailsDtoDetails';
|
|
87
95
|
export * from './errorPayloadDto';
|
|
88
96
|
export * from './errorResponseDto';
|
|
89
97
|
export * from './exchangeRunnerEnrollmentChallengeDto';
|
|
98
|
+
export * from './executionTargetResponseDto';
|
|
99
|
+
export * from './executionTargetResponseDtoDataArrayEnvelope';
|
|
100
|
+
export * from './executionTargetResponseDtoDataEnvelope';
|
|
101
|
+
export * from './executionTargetResponseDtoLabels';
|
|
102
|
+
export * from './executionTargetStatus';
|
|
90
103
|
export * from './inFlightRevocationPolicy';
|
|
91
104
|
export * from './lifecycleTransitionAckDto';
|
|
92
105
|
export * from './orgBiomeEffectiveEnablementDto';
|
|
@@ -96,6 +109,7 @@ export * from './orgBiomeEnablementReason';
|
|
|
96
109
|
export * from './orgBiomeInstallationDeleteResponseDto';
|
|
97
110
|
export * from './orgBiomeInstallationDeleteResponseDtoDataEnvelope';
|
|
98
111
|
export * from './orgBiomeInstallationDeleteResponseDtoWorkflowId';
|
|
112
|
+
export * from './orgBiomeInstallationsControllerListParams';
|
|
99
113
|
export * from './orgBiomeState';
|
|
100
114
|
export * from './orgBiomeSurfaceMode';
|
|
101
115
|
export * from './platformSettingsControllerAdd200';
|
|
@@ -103,6 +117,7 @@ export * from './platformSettingsControllerList200';
|
|
|
103
117
|
export * from './platformSettingsControllerRemove200';
|
|
104
118
|
export * from './platformSettingsControllerRemoveParams';
|
|
105
119
|
export * from './promoteBiomeInstallationDto';
|
|
120
|
+
export * from './quarantinedBiomeDto';
|
|
106
121
|
export * from './requestApprovalDto';
|
|
107
122
|
export * from './resolveApprovalDto';
|
|
108
123
|
export * from './resolveApprovalDtoStatus';
|
|
@@ -120,6 +135,7 @@ export * from './runnerEnrollmentManagementRotationResponseDto';
|
|
|
120
135
|
export * from './runnerEnrollmentManagementRotationResponseDtoDataEnvelope';
|
|
121
136
|
export * from './runnerEnrollmentObservedState';
|
|
122
137
|
export * from './runnerEnrollmentResponseDto';
|
|
138
|
+
export * from './runnerKind';
|
|
123
139
|
export * from './runnerTrustTier';
|
|
124
140
|
export * from './runtimeBindingDesiredState';
|
|
125
141
|
export * from './runtimeBindingManagementAction';
|
|
@@ -129,10 +145,8 @@ export * from './runtimeBindingResponseDtoDataArrayEnvelope';
|
|
|
129
145
|
export * from './runtimeBindingResponseDtoDataEnvelope';
|
|
130
146
|
export * from './runtimeBindingResponseDtoDeniedLabels';
|
|
131
147
|
export * from './runtimeBindingResponseDtoRequiredLabels';
|
|
148
|
+
export * from './runtimeIsolationLevel';
|
|
132
149
|
export * from './runtimeOperatorKind';
|
|
133
|
-
export * from './runtimeResponseDto';
|
|
134
|
-
export * from './runtimeResponseDtoDataArrayEnvelope';
|
|
135
|
-
export * from './runtimeResponseDtoStatus';
|
|
136
150
|
export * from './scaffoldTemplate';
|
|
137
151
|
export * from './serverBiomeRegistrationResponseDto';
|
|
138
152
|
export * from './serverBiomeRegistrationResponseDtoContributionPaths';
|
|
@@ -147,11 +161,14 @@ export * from './serviceMeshEntryDto';
|
|
|
147
161
|
export * from './serviceMeshResponseDto';
|
|
148
162
|
export * from './serviceMeshResponseDtoDataEnvelope';
|
|
149
163
|
export * from './setBiomeAvailabilityDto';
|
|
164
|
+
export * from './spaceKind';
|
|
150
165
|
export * from './subjectKind';
|
|
151
166
|
export * from './surfaceKindValidationDto';
|
|
152
167
|
export * from './surfaceKindValidationDtoDataEnvelope';
|
|
153
168
|
export * from './surfaceKindValidationDtoManifest';
|
|
154
169
|
export * from './updateBiomeInstallationResourcesDto';
|
|
170
|
+
export * from './updateExecutionTargetDto';
|
|
171
|
+
export * from './updateExecutionTargetDtoLabels';
|
|
155
172
|
export * from './updateOrgBiomeEnablementDto';
|
|
156
173
|
export * from './updateOrgBiomeInstallationDto';
|
|
157
174
|
export * from './updateOrgBiomeInstallationDtoConfigJson';
|
package/dist/models/index.js
CHANGED
|
@@ -62,6 +62,7 @@ __exportStar(require("./biomeInstallationResponseDtoDataEnvelope"), exports);
|
|
|
62
62
|
__exportStar(require("./biomeInstallationResponseDtoDisabledAt"), exports);
|
|
63
63
|
__exportStar(require("./biomeInstallationState"), exports);
|
|
64
64
|
__exportStar(require("./biomeInstallationsControllerCreateChain201"), exports);
|
|
65
|
+
__exportStar(require("./biomeInstallationsControllerListParams"), exports);
|
|
65
66
|
__exportStar(require("./biomeLifecycle"), exports);
|
|
66
67
|
__exportStar(require("./biomeLifecycleTransitionResponseDto"), exports);
|
|
67
68
|
__exportStar(require("./biomeLifecycleTransitionResponseDtoDataEnvelope"), exports);
|
|
@@ -79,7 +80,11 @@ __exportStar(require("./biomeProvisioningScaffoldDtoDeclaration"), exports);
|
|
|
79
80
|
__exportStar(require("./biomeProvisioningScaffoldDtoTemplates"), exports);
|
|
80
81
|
__exportStar(require("./biomeProvisioningScaffoldsResponseDto"), exports);
|
|
81
82
|
__exportStar(require("./biomeProvisioningScaffoldsResponseDtoDataEnvelope"), exports);
|
|
83
|
+
__exportStar(require("./biomeQuarantineReportDto"), exports);
|
|
84
|
+
__exportStar(require("./biomeQuarantineReportDtoDataEnvelope"), exports);
|
|
85
|
+
__exportStar(require("./biomeQuarantineStage"), exports);
|
|
82
86
|
__exportStar(require("./biomeScope"), exports);
|
|
87
|
+
__exportStar(require("./biomeTarget"), exports);
|
|
83
88
|
__exportStar(require("./biomeTier"), exports);
|
|
84
89
|
__exportStar(require("./breakGlassRevokeRunnerEnrollmentDto"), exports);
|
|
85
90
|
__exportStar(require("./capabilityDescriptorValidationDto"), exports);
|
|
@@ -94,16 +99,24 @@ __exportStar(require("./contributionKind"), exports);
|
|
|
94
99
|
__exportStar(require("./contributionSyncStatus"), exports);
|
|
95
100
|
__exportStar(require("./createBiomeInstallationDto"), exports);
|
|
96
101
|
__exportStar(require("./createBiomeInstallationDtoConfigJson"), exports);
|
|
102
|
+
__exportStar(require("./createExecutionTargetDto"), exports);
|
|
103
|
+
__exportStar(require("./createExecutionTargetDtoLabels"), exports);
|
|
97
104
|
__exportStar(require("./createRunnerEnrollmentDto"), exports);
|
|
98
105
|
__exportStar(require("./createRuntimeBindingDto"), exports);
|
|
99
106
|
__exportStar(require("./createRuntimeBindingDtoDeniedLabels"), exports);
|
|
100
107
|
__exportStar(require("./createRuntimeBindingDtoRequiredLabels"), exports);
|
|
101
108
|
__exportStar(require("./credentialDeliveryKind"), exports);
|
|
109
|
+
__exportStar(require("./dataClassification"), exports);
|
|
102
110
|
__exportStar(require("./errorDetailsDto"), exports);
|
|
103
111
|
__exportStar(require("./errorDetailsDtoDetails"), exports);
|
|
104
112
|
__exportStar(require("./errorPayloadDto"), exports);
|
|
105
113
|
__exportStar(require("./errorResponseDto"), exports);
|
|
106
114
|
__exportStar(require("./exchangeRunnerEnrollmentChallengeDto"), exports);
|
|
115
|
+
__exportStar(require("./executionTargetResponseDto"), exports);
|
|
116
|
+
__exportStar(require("./executionTargetResponseDtoDataArrayEnvelope"), exports);
|
|
117
|
+
__exportStar(require("./executionTargetResponseDtoDataEnvelope"), exports);
|
|
118
|
+
__exportStar(require("./executionTargetResponseDtoLabels"), exports);
|
|
119
|
+
__exportStar(require("./executionTargetStatus"), exports);
|
|
107
120
|
__exportStar(require("./inFlightRevocationPolicy"), exports);
|
|
108
121
|
__exportStar(require("./lifecycleTransitionAckDto"), exports);
|
|
109
122
|
__exportStar(require("./orgBiomeEffectiveEnablementDto"), exports);
|
|
@@ -113,6 +126,7 @@ __exportStar(require("./orgBiomeEnablementReason"), exports);
|
|
|
113
126
|
__exportStar(require("./orgBiomeInstallationDeleteResponseDto"), exports);
|
|
114
127
|
__exportStar(require("./orgBiomeInstallationDeleteResponseDtoDataEnvelope"), exports);
|
|
115
128
|
__exportStar(require("./orgBiomeInstallationDeleteResponseDtoWorkflowId"), exports);
|
|
129
|
+
__exportStar(require("./orgBiomeInstallationsControllerListParams"), exports);
|
|
116
130
|
__exportStar(require("./orgBiomeState"), exports);
|
|
117
131
|
__exportStar(require("./orgBiomeSurfaceMode"), exports);
|
|
118
132
|
__exportStar(require("./platformSettingsControllerAdd200"), exports);
|
|
@@ -120,6 +134,7 @@ __exportStar(require("./platformSettingsControllerList200"), exports);
|
|
|
120
134
|
__exportStar(require("./platformSettingsControllerRemove200"), exports);
|
|
121
135
|
__exportStar(require("./platformSettingsControllerRemoveParams"), exports);
|
|
122
136
|
__exportStar(require("./promoteBiomeInstallationDto"), exports);
|
|
137
|
+
__exportStar(require("./quarantinedBiomeDto"), exports);
|
|
123
138
|
__exportStar(require("./requestApprovalDto"), exports);
|
|
124
139
|
__exportStar(require("./resolveApprovalDto"), exports);
|
|
125
140
|
__exportStar(require("./resolveApprovalDtoStatus"), exports);
|
|
@@ -137,6 +152,7 @@ __exportStar(require("./runnerEnrollmentManagementRotationResponseDto"), exports
|
|
|
137
152
|
__exportStar(require("./runnerEnrollmentManagementRotationResponseDtoDataEnvelope"), exports);
|
|
138
153
|
__exportStar(require("./runnerEnrollmentObservedState"), exports);
|
|
139
154
|
__exportStar(require("./runnerEnrollmentResponseDto"), exports);
|
|
155
|
+
__exportStar(require("./runnerKind"), exports);
|
|
140
156
|
__exportStar(require("./runnerTrustTier"), exports);
|
|
141
157
|
__exportStar(require("./runtimeBindingDesiredState"), exports);
|
|
142
158
|
__exportStar(require("./runtimeBindingManagementAction"), exports);
|
|
@@ -146,10 +162,8 @@ __exportStar(require("./runtimeBindingResponseDtoDataArrayEnvelope"), exports);
|
|
|
146
162
|
__exportStar(require("./runtimeBindingResponseDtoDataEnvelope"), exports);
|
|
147
163
|
__exportStar(require("./runtimeBindingResponseDtoDeniedLabels"), exports);
|
|
148
164
|
__exportStar(require("./runtimeBindingResponseDtoRequiredLabels"), exports);
|
|
165
|
+
__exportStar(require("./runtimeIsolationLevel"), exports);
|
|
149
166
|
__exportStar(require("./runtimeOperatorKind"), exports);
|
|
150
|
-
__exportStar(require("./runtimeResponseDto"), exports);
|
|
151
|
-
__exportStar(require("./runtimeResponseDtoDataArrayEnvelope"), exports);
|
|
152
|
-
__exportStar(require("./runtimeResponseDtoStatus"), exports);
|
|
153
167
|
__exportStar(require("./scaffoldTemplate"), exports);
|
|
154
168
|
__exportStar(require("./serverBiomeRegistrationResponseDto"), exports);
|
|
155
169
|
__exportStar(require("./serverBiomeRegistrationResponseDtoContributionPaths"), exports);
|
|
@@ -164,11 +178,14 @@ __exportStar(require("./serviceMeshEntryDto"), exports);
|
|
|
164
178
|
__exportStar(require("./serviceMeshResponseDto"), exports);
|
|
165
179
|
__exportStar(require("./serviceMeshResponseDtoDataEnvelope"), exports);
|
|
166
180
|
__exportStar(require("./setBiomeAvailabilityDto"), exports);
|
|
181
|
+
__exportStar(require("./spaceKind"), exports);
|
|
167
182
|
__exportStar(require("./subjectKind"), exports);
|
|
168
183
|
__exportStar(require("./surfaceKindValidationDto"), exports);
|
|
169
184
|
__exportStar(require("./surfaceKindValidationDtoDataEnvelope"), exports);
|
|
170
185
|
__exportStar(require("./surfaceKindValidationDtoManifest"), exports);
|
|
171
186
|
__exportStar(require("./updateBiomeInstallationResourcesDto"), exports);
|
|
187
|
+
__exportStar(require("./updateExecutionTargetDto"), exports);
|
|
188
|
+
__exportStar(require("./updateExecutionTargetDtoLabels"), exports);
|
|
172
189
|
__exportStar(require("./updateOrgBiomeEnablementDto"), exports);
|
|
173
190
|
__exportStar(require("./updateOrgBiomeInstallationDto"), exports);
|
|
174
191
|
__exportStar(require("./updateOrgBiomeInstallationDtoConfigJson"), exports);
|
|
@@ -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
|
+
export type OrgBiomeInstallationsControllerListParams = {
|
|
7
|
+
/**
|
|
8
|
+
* Include installations whose lifecycle is `archived`. Default false — `archived` is terminal: archived rows are never resolved and are ineligible for runtime contribution, so listing one advertises an install nothing will route to.
|
|
9
|
+
*/
|
|
10
|
+
includeArchived?: boolean;
|
|
11
|
+
};
|
|
@@ -0,0 +1,23 @@
|
|
|
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
|
+
import type { BiomeQuarantineStage } from './biomeQuarantineStage.js';
|
|
7
|
+
import type { BiomeTarget } from './biomeTarget.js';
|
|
8
|
+
export interface QuarantinedBiomeDto {
|
|
9
|
+
/**
|
|
10
|
+
* The biome id the manifest declares. Null when the file did not parse as JSON at all — there is then no id to read. A biome in that state is never quarantined (boot refuses instead), so this is null only in a record produced for diagnostics.
|
|
11
|
+
* @nullable
|
|
12
|
+
*/
|
|
13
|
+
biomeId: string | null;
|
|
14
|
+
/** On-disk directory name. Reported because it is always known — never used as the biome identity. */
|
|
15
|
+
directoryName: string;
|
|
16
|
+
manifestPath: string;
|
|
17
|
+
/** Which catalog dropped it. */
|
|
18
|
+
target: BiomeTarget;
|
|
19
|
+
/** WHICH ingestion step failed. MANIFEST_JSON = the file is not valid JSON; MANIFEST_SCHEMA = it parsed but violates the manifest schema. The two have different causes and different fixes. */
|
|
20
|
+
stage: BiomeQuarantineStage;
|
|
21
|
+
/** The underlying parse error, verbatim. */
|
|
22
|
+
reason: string;
|
|
23
|
+
}
|
|
@@ -8,13 +8,14 @@ import type { RunnerDataLocality } from './runnerDataLocality.js';
|
|
|
8
8
|
import type { RunnerEnrollmentDesiredState } from './runnerEnrollmentDesiredState.js';
|
|
9
9
|
import type { RunnerEnrollmentManagementAction } from './runnerEnrollmentManagementAction.js';
|
|
10
10
|
import type { RunnerEnrollmentObservedState } from './runnerEnrollmentObservedState.js';
|
|
11
|
+
import type { RunnerKind } from './runnerKind.js';
|
|
11
12
|
import type { RunnerTrustTier } from './runnerTrustTier.js';
|
|
12
13
|
import type { RuntimeOperatorKind } from './runtimeOperatorKind.js';
|
|
13
14
|
export interface RunnerEnrollmentManagementResponseDto {
|
|
14
15
|
id: string;
|
|
15
16
|
/** @minimum 1 */
|
|
16
17
|
revision: number;
|
|
17
|
-
|
|
18
|
+
executionTargetId: string;
|
|
18
19
|
runnerId: string;
|
|
19
20
|
/** @nullable */
|
|
20
21
|
principalId: string | null;
|
|
@@ -27,6 +28,8 @@ export interface RunnerEnrollmentManagementResponseDto {
|
|
|
27
28
|
allowedEnvironmentIds: string[];
|
|
28
29
|
maxTrustTier: RunnerTrustTier;
|
|
29
30
|
allowedLocalities: RunnerDataLocality[];
|
|
31
|
+
/** Runner kinds this enrollment permits. Capped at attestation; a runner asserting a kind outside this set is REFUSED, never signed. */
|
|
32
|
+
allowedKinds: RunnerKind[];
|
|
30
33
|
attestationRevision: number;
|
|
31
34
|
inFlightPolicy: InFlightRevocationPolicy;
|
|
32
35
|
operatorKind: RuntimeOperatorKind;
|
|
@@ -7,13 +7,14 @@ import type { InFlightRevocationPolicy } from './inFlightRevocationPolicy.js';
|
|
|
7
7
|
import type { RunnerDataLocality } from './runnerDataLocality.js';
|
|
8
8
|
import type { RunnerEnrollmentDesiredState } from './runnerEnrollmentDesiredState.js';
|
|
9
9
|
import type { RunnerEnrollmentObservedState } from './runnerEnrollmentObservedState.js';
|
|
10
|
+
import type { RunnerKind } from './runnerKind.js';
|
|
10
11
|
import type { RunnerTrustTier } from './runnerTrustTier.js';
|
|
11
12
|
import type { RuntimeOperatorKind } from './runtimeOperatorKind.js';
|
|
12
13
|
export interface RunnerEnrollmentResponseDto {
|
|
13
14
|
id: string;
|
|
14
15
|
/** @minimum 1 */
|
|
15
16
|
revision: number;
|
|
16
|
-
|
|
17
|
+
executionTargetId: string;
|
|
17
18
|
runnerId: string;
|
|
18
19
|
/** @nullable */
|
|
19
20
|
principalId: string | null;
|
|
@@ -26,6 +27,8 @@ export interface RunnerEnrollmentResponseDto {
|
|
|
26
27
|
allowedEnvironmentIds: string[];
|
|
27
28
|
maxTrustTier: RunnerTrustTier;
|
|
28
29
|
allowedLocalities: RunnerDataLocality[];
|
|
30
|
+
/** Runner kinds this enrollment permits. Capped at attestation; a runner asserting a kind outside this set is REFUSED, never signed. */
|
|
31
|
+
allowedKinds: RunnerKind[];
|
|
29
32
|
attestationRevision: number;
|
|
30
33
|
inFlightPolicy: InFlightRevocationPolicy;
|
|
31
34
|
operatorKind: RuntimeOperatorKind;
|
|
@@ -0,0 +1,18 @@
|
|
|
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
|
+
* Runner kinds this enrollment permits. Capped at attestation; a runner asserting a kind outside this set is REFUSED, never signed.
|
|
8
|
+
*/
|
|
9
|
+
export type RunnerKind = typeof RunnerKind[keyof typeof RunnerKind];
|
|
10
|
+
export declare const RunnerKind: {
|
|
11
|
+
readonly local: "local";
|
|
12
|
+
readonly cloud: "cloud";
|
|
13
|
+
readonly 'customer-edge': "customer-edge";
|
|
14
|
+
readonly gpu: "gpu";
|
|
15
|
+
readonly sandbox: "sandbox";
|
|
16
|
+
readonly ci: "ci";
|
|
17
|
+
readonly 'mcp-external': "mcp-external";
|
|
18
|
+
};
|