@autohq/cli 0.1.604 → 0.1.606

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.
@@ -37751,7 +37751,7 @@ Object.assign(lookup, {
37751
37751
  // package.json
37752
37752
  var package_default = {
37753
37753
  name: "@autohq/cli",
37754
- version: "0.1.604",
37754
+ version: "0.1.606",
37755
37755
  license: "SEE LICENSE IN README.md",
37756
37756
  publishConfig: {
37757
37757
  access: "public"
@@ -44091,6 +44091,19 @@ function isSetupCacheTtl(value2) {
44091
44091
  return /^[1-9][0-9]*(s|m|h|d)$/.test(value2);
44092
44092
  }
44093
44093
 
44094
+ // ../../packages/schemas/src/environment-setup-failures.ts
44095
+ var EnvironmentSetupStepFailureDiagnosticSchema = external_exports.object({
44096
+ kind: external_exports.literal("environment_setup_step_failure"),
44097
+ version: external_exports.literal(1),
44098
+ provider: external_exports.string().trim().min(1).max(32),
44099
+ stage: external_exports.enum(["building_image", "reconciling_environment"]),
44100
+ source: external_exports.enum(["setup", "steps"]),
44101
+ stepOrdinal: external_exports.number().int().positive(),
44102
+ exitStatus: external_exports.number().int().positive().max(255),
44103
+ excerpt: external_exports.string().trim().min(1).max(500)
44104
+ }).strict();
44105
+ var PersistedEnvironmentSetupStepFailureDiagnosticSchema = EnvironmentSetupStepFailureDiagnosticSchema.passthrough();
44106
+
44094
44107
  // ../../packages/schemas/src/requester.ts
44095
44108
  var RequesterOriginSchema = external_exports.discriminatedUnion("kind", [
44096
44109
  external_exports.object({