@patronage/software-factory 0.30.0-beta.3 → 0.30.0

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.d.ts CHANGED
@@ -1158,9 +1158,9 @@ declare const managedReadinessLedgerSchema: z.ZodObject<{
1158
1158
  mergeable: z.ZodString;
1159
1159
  requiredChecks: z.ZodEnum<{
1160
1160
  unknown: "unknown";
1161
+ pending: "pending";
1161
1162
  passed: "passed";
1162
1163
  failed: "failed";
1163
- pending: "pending";
1164
1164
  none: "none";
1165
1165
  }>;
1166
1166
  reviewDecision: z.ZodOptional<z.ZodNullable<z.ZodString>>;
@@ -1244,8 +1244,8 @@ declare const managedReadinessLedgerSchema: z.ZodObject<{
1244
1244
  reviewedPatchId: z.ZodOptional<z.ZodString>;
1245
1245
  status: z.ZodEnum<{
1246
1246
  blocked: "blocked";
1247
- stale: "stale";
1248
1247
  "not-required": "not-required";
1248
+ stale: "stale";
1249
1249
  current: "current";
1250
1250
  missing: "missing";
1251
1251
  }>;
@@ -1256,8 +1256,8 @@ declare const managedReadinessLedgerSchema: z.ZodObject<{
1256
1256
  reviewedPatchId: z.ZodOptional<z.ZodString>;
1257
1257
  status: z.ZodEnum<{
1258
1258
  blocked: "blocked";
1259
- stale: "stale";
1260
1259
  "not-required": "not-required";
1260
+ stale: "stale";
1261
1261
  current: "current";
1262
1262
  missing: "missing";
1263
1263
  }>;
@@ -1680,8 +1680,8 @@ declare const loadEvidenceEnvelopes: (cwd: string) => LoadedEvidenceEnvelope[];
1680
1680
  declare const REVIEW_STATUS_VALUES: readonly ["not-required", "current", "stale", "missing", "blocked"];
1681
1681
  declare const reviewStatusSchema: z.ZodEnum<{
1682
1682
  blocked: "blocked";
1683
- stale: "stale";
1684
1683
  "not-required": "not-required";
1684
+ stale: "stale";
1685
1685
  current: "current";
1686
1686
  missing: "missing";
1687
1687
  }>;
@@ -2627,11 +2627,11 @@ declare const LegacyWorkerCloseoutStatusTraceEventSchema: z.ZodObject<{
2627
2627
  threadId: z.ZodOptional<z.ZodString>;
2628
2628
  workerId: z.ZodOptional<z.ZodString>;
2629
2629
  archiveStatus: z.ZodOptional<z.ZodEnum<{
2630
- pending: "pending";
2631
2630
  unavailable: "unavailable";
2632
2631
  archived: "archived";
2633
2632
  skipped: "skipped";
2634
2633
  "not-applicable": "not-applicable";
2634
+ pending: "pending";
2635
2635
  }>>;
2636
2636
  closeoutReason: z.ZodOptional<z.ZodString>;
2637
2637
  eventType: z.ZodLiteral<"worker-closeout-lessons">;
@@ -3022,11 +3022,11 @@ declare const FACTORY_TRACE_EVENT_DEFINITIONS: readonly [DefinedTraceEvent<"revi
3022
3022
  threadId: z.ZodOptional<z.ZodString>;
3023
3023
  workerId: z.ZodOptional<z.ZodString>;
3024
3024
  archiveStatus: z.ZodOptional<z.ZodEnum<{
3025
- pending: "pending";
3026
3025
  unavailable: "unavailable";
3027
3026
  archived: "archived";
3028
3027
  skipped: "skipped";
3029
3028
  "not-applicable": "not-applicable";
3029
+ pending: "pending";
3030
3030
  }>>;
3031
3031
  closeoutReason: z.ZodOptional<z.ZodString>;
3032
3032
  eventType: z.ZodLiteral<"worker-closeout-lessons">;
@@ -3063,11 +3063,11 @@ declare const FACTORY_TRACE_EVENT_DEFINITIONS: readonly [DefinedTraceEvent<"revi
3063
3063
  }, z.core.$strict>], "lessonStatus">;
3064
3064
  readonly 2: z.ZodObject<{
3065
3065
  archiveStatus: z.ZodOptional<z.ZodEnum<{
3066
- pending: "pending";
3067
3066
  unavailable: "unavailable";
3068
3067
  archived: "archived";
3069
3068
  skipped: "skipped";
3070
3069
  "not-applicable": "not-applicable";
3070
+ pending: "pending";
3071
3071
  }>>;
3072
3072
  closeoutReason: z.ZodOptional<z.ZodString>;
3073
3073
  lessonStatus: z.ZodOptional<z.ZodEnum<{
@@ -3913,7 +3913,7 @@ declare const evaluateReadiness: (input: EvaluationInput) => {
3913
3913
  draft: boolean;
3914
3914
  mergeStateStatus: string;
3915
3915
  mergeable: string;
3916
- requiredChecks: "unknown" | "passed" | "failed" | "pending" | "none";
3916
+ requiredChecks: "unknown" | "pending" | "passed" | "failed" | "none";
3917
3917
  unresolvedReviewThreads: number;
3918
3918
  reviewDecision?: string | null | undefined;
3919
3919
  };
@@ -3928,13 +3928,13 @@ declare const evaluateReadiness: (input: EvaluationInput) => {
3928
3928
  reviews: {
3929
3929
  correctness: {
3930
3930
  required: boolean;
3931
- status: "blocked" | "stale" | "not-required" | "current" | "missing";
3931
+ status: "blocked" | "not-required" | "stale" | "current" | "missing";
3932
3932
  reviewedHeadSha?: string | undefined;
3933
3933
  reviewedPatchId?: string | undefined;
3934
3934
  };
3935
3935
  security?: {
3936
3936
  required: boolean;
3937
- status: "blocked" | "stale" | "not-required" | "current" | "missing";
3937
+ status: "blocked" | "not-required" | "stale" | "current" | "missing";
3938
3938
  reviewedHeadSha?: string | undefined;
3939
3939
  reviewedPatchId?: string | undefined;
3940
3940
  } | undefined;
package/dist/index.js CHANGED
@@ -17,7 +17,7 @@ import picomatch from "picomatch";
17
17
  import { promisify } from "node:util";
18
18
  import { parse } from "yaml";
19
19
  //#region package.json
20
- var version = "0.30.0-beta.3";
20
+ var version = "0.30.0";
21
21
  //#endregion
22
22
  //#region src/review-rungs.ts
23
23
  const EVIDENCE_REVIEW_RUNGS$1 = [
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@patronage/software-factory",
3
- "version": "0.30.0-beta.3",
3
+ "version": "0.30.0",
4
4
  "description": "Shared Patronage software factory CLI and project-profile validation tools",
5
5
  "license": "MIT",
6
6
  "repository": {