@neriros/ralphy 3.8.13 → 3.10.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/mcp/index.js CHANGED
@@ -6657,8 +6657,8 @@ function getStorage() {
6657
6657
  function runWithContext(ctx, fn) {
6658
6658
  return contextStore.run(ctx, fn);
6659
6659
  }
6660
- function createDefaultContext() {
6661
- return { storage: createFileSystemProvider() };
6660
+ function createDefaultContext(overrides = {}) {
6661
+ return { storage: createFileSystemProvider(), ...overrides };
6662
6662
  }
6663
6663
 
6664
6664
  // node_modules/.bun/zod@4.3.6/node_modules/zod/v3/helpers/util.js
@@ -24014,7 +24014,8 @@ var OWNERSHIP = {
24014
24014
  confirmation: ["confirmation"],
24015
24015
  "review-followup": ["review"],
24016
24016
  "ci-fix": ["ci"],
24017
- implement: ["pr"]
24017
+ implement: ["pr"],
24018
+ coordinator: ["flow"]
24018
24019
  };
24019
24020
  var ALL_OWNED_SLOTS = new Set(Object.values(OWNERSHIP).flatMap((slots) => [...slots]));
24020
24021
 
@@ -24098,12 +24099,14 @@ var StateSchema = exports_external.object({
24098
24099
  designPdf: exports_external.object({
24099
24100
  attachmentId: exports_external.string().nullable().default(null),
24100
24101
  sha256: exports_external.string().nullable().default(null)
24101
- }).default({ attachmentId: null, sha256: null })
24102
+ }).default({ attachmentId: null, sha256: null }),
24103
+ legacyProposalPurged: exports_external.boolean().default(false)
24102
24104
  }).default({
24103
24105
  proposal: { attachmentId: null, sha256: null },
24104
24106
  design: { attachmentId: null, sha256: null },
24105
24107
  proposalPdf: { attachmentId: null, sha256: null },
24106
- designPdf: { attachmentId: null, sha256: null }
24108
+ designPdf: { attachmentId: null, sha256: null },
24109
+ legacyProposalPurged: false
24107
24110
  }),
24108
24111
  confirmation: exports_external.object({
24109
24112
  askedAt: exports_external.string().nullable().default(null),