@rosthq/cli 0.7.163 → 0.7.164
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/index.js +20 -1
- package/dist/index.js.map +3 -3
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -29223,6 +29223,24 @@ var runnerSetupValidationAttemptSchema = external_exports.object({
|
|
|
29223
29223
|
(attempt) => attempt.kind === "aicos_acceptance" === (attempt.activation_receipt_id !== null),
|
|
29224
29224
|
"aicos_acceptance must be attributed to an activation receipt"
|
|
29225
29225
|
);
|
|
29226
|
+
var RUNNER_SETUP_PROBE_CAPABILITY_VERSION = 1;
|
|
29227
|
+
var runnerSetupValidationMcpCapabilityPayloadSchema = external_exports.object({
|
|
29228
|
+
capability_version: external_exports.literal(RUNNER_SETUP_PROBE_CAPABILITY_VERSION),
|
|
29229
|
+
tenant_id: uuid3,
|
|
29230
|
+
runner_id: uuid3,
|
|
29231
|
+
setup_id: uuid3,
|
|
29232
|
+
job_id: uuid3,
|
|
29233
|
+
runtime: runnerSetupRuntimeSchema,
|
|
29234
|
+
service_key_generation: external_exports.number().int().nonnegative(),
|
|
29235
|
+
nonce: external_exports.string().min(16).max(120),
|
|
29236
|
+
expires_at: external_exports.number().int().positive(),
|
|
29237
|
+
allowed_command_ids: external_exports.tuple([external_exports.literal("runner_setup.status")])
|
|
29238
|
+
}).strict();
|
|
29239
|
+
var runnerSetupValidationMcpConfigSchema = external_exports.object({
|
|
29240
|
+
url: external_exports.string().url(),
|
|
29241
|
+
token: external_exports.string().min(1).max(4096),
|
|
29242
|
+
expires_at: isoDateTime
|
|
29243
|
+
}).strict();
|
|
29226
29244
|
var runnerSetupValidationClaimRequestSchema = external_exports.object({
|
|
29227
29245
|
setup_id: uuid3,
|
|
29228
29246
|
runtime: runnerSetupRuntimeSchema
|
|
@@ -29231,7 +29249,8 @@ var runnerSetupValidationClaimResponseSchema = external_exports.object({
|
|
|
29231
29249
|
job_id: uuid3,
|
|
29232
29250
|
challenge: runnerSetupValidationChallengeSchema,
|
|
29233
29251
|
probe_capability_version: external_exports.number().int().positive(),
|
|
29234
|
-
allowed_command_ids: external_exports.array(external_exports.string().min(1).max(120)).min(1).max(20)
|
|
29252
|
+
allowed_command_ids: external_exports.array(external_exports.string().min(1).max(120)).min(1).max(20),
|
|
29253
|
+
mcp: runnerSetupValidationMcpConfigSchema
|
|
29235
29254
|
}).strict();
|
|
29236
29255
|
var runnerSetupValidationReportRequestSchema = external_exports.object({
|
|
29237
29256
|
job_id: uuid3,
|