@medicine-wheel/community-review
Version:
Community-based ceremonial review protocol for Medicine Wheel — implements Wilson's validation through Elder review circles, consensus, and relational accountability
54 lines • 6.61 kB
JavaScript
;
/**
* @medicine-wheel/community-review
*
* Community-based ceremonial review protocol — implements Wilson's
* validation through Elder review circles, consensus-seeking,
* and relational accountability assessment.
*
* @packageDocumentation
*/
Object.defineProperty(exports, "__esModule", { value: true });
exports.ceremonialHold = exports.returnToCircle = exports.requestDeepening = exports.approveWithBlessings = exports.relationalHealthReview = exports.reviewAgainstOcap = exports.reviewAgainstWilson = exports.reviewerAccountability = exports.resolveDisagreement = exports.recordVoices = exports.talkingCircle = exports.seekConsensus = exports.elderBlessing = exports.elderGuidance = exports.requestElderValidation = exports.circleStatus = exports.closeCircle = exports.submitForReview = exports.addReviewer = exports.createReviewCircle = exports.ReviewCircleSchema = exports.ReviewOutcomeSchema = exports.WilsonCheckSchema = exports.TalkingCircleEntrySchema = exports.ReviewerSchema = exports.ReviewOutcomeTypeSchema = exports.ReviewCircleStatusSchema = exports.ArtifactTypeSchema = exports.PersonRoleSchema = void 0;
// ── Zod Schemas ─────────────────────────────────────────────────────────────
var schemas_js_1 = require("./schemas.js");
Object.defineProperty(exports, "PersonRoleSchema", { enumerable: true, get: function () { return schemas_js_1.PersonRoleSchema; } });
Object.defineProperty(exports, "ArtifactTypeSchema", { enumerable: true, get: function () { return schemas_js_1.ArtifactTypeSchema; } });
Object.defineProperty(exports, "ReviewCircleStatusSchema", { enumerable: true, get: function () { return schemas_js_1.ReviewCircleStatusSchema; } });
Object.defineProperty(exports, "ReviewOutcomeTypeSchema", { enumerable: true, get: function () { return schemas_js_1.ReviewOutcomeTypeSchema; } });
Object.defineProperty(exports, "ReviewerSchema", { enumerable: true, get: function () { return schemas_js_1.ReviewerSchema; } });
Object.defineProperty(exports, "TalkingCircleEntrySchema", { enumerable: true, get: function () { return schemas_js_1.TalkingCircleEntrySchema; } });
Object.defineProperty(exports, "WilsonCheckSchema", { enumerable: true, get: function () { return schemas_js_1.WilsonCheckSchema; } });
Object.defineProperty(exports, "ReviewOutcomeSchema", { enumerable: true, get: function () { return schemas_js_1.ReviewOutcomeSchema; } });
Object.defineProperty(exports, "ReviewCircleSchema", { enumerable: true, get: function () { return schemas_js_1.ReviewCircleSchema; } });
// ── Circle Management ───────────────────────────────────────────────────────
var circle_js_1 = require("./circle.js");
Object.defineProperty(exports, "createReviewCircle", { enumerable: true, get: function () { return circle_js_1.createReviewCircle; } });
Object.defineProperty(exports, "addReviewer", { enumerable: true, get: function () { return circle_js_1.addReviewer; } });
Object.defineProperty(exports, "submitForReview", { enumerable: true, get: function () { return circle_js_1.submitForReview; } });
Object.defineProperty(exports, "closeCircle", { enumerable: true, get: function () { return circle_js_1.closeCircle; } });
Object.defineProperty(exports, "circleStatus", { enumerable: true, get: function () { return circle_js_1.circleStatus; } });
// ── Elder Validation ────────────────────────────────────────────────────────
var elder_js_1 = require("./elder.js");
Object.defineProperty(exports, "requestElderValidation", { enumerable: true, get: function () { return elder_js_1.requestElderValidation; } });
Object.defineProperty(exports, "elderGuidance", { enumerable: true, get: function () { return elder_js_1.elderGuidance; } });
Object.defineProperty(exports, "elderBlessing", { enumerable: true, get: function () { return elder_js_1.elderBlessing; } });
// ── Consensus & Talking Circle ──────────────────────────────────────────────
var consensus_js_1 = require("./consensus.js");
Object.defineProperty(exports, "seekConsensus", { enumerable: true, get: function () { return consensus_js_1.seekConsensus; } });
Object.defineProperty(exports, "talkingCircle", { enumerable: true, get: function () { return consensus_js_1.talkingCircle; } });
Object.defineProperty(exports, "recordVoices", { enumerable: true, get: function () { return consensus_js_1.recordVoices; } });
Object.defineProperty(exports, "resolveDisagreement", { enumerable: true, get: function () { return consensus_js_1.resolveDisagreement; } });
// ── Accountability ──────────────────────────────────────────────────────────
var accountability_js_1 = require("./accountability.js");
Object.defineProperty(exports, "reviewerAccountability", { enumerable: true, get: function () { return accountability_js_1.reviewerAccountability; } });
Object.defineProperty(exports, "reviewAgainstWilson", { enumerable: true, get: function () { return accountability_js_1.reviewAgainstWilson; } });
Object.defineProperty(exports, "reviewAgainstOcap", { enumerable: true, get: function () { return accountability_js_1.reviewAgainstOcap; } });
Object.defineProperty(exports, "relationalHealthReview", { enumerable: true, get: function () { return accountability_js_1.relationalHealthReview; } });
// ── Outcomes ────────────────────────────────────────────────────────────────
var outcomes_js_1 = require("./outcomes.js");
Object.defineProperty(exports, "approveWithBlessings", { enumerable: true, get: function () { return outcomes_js_1.approveWithBlessings; } });
Object.defineProperty(exports, "requestDeepening", { enumerable: true, get: function () { return outcomes_js_1.requestDeepening; } });
Object.defineProperty(exports, "returnToCircle", { enumerable: true, get: function () { return outcomes_js_1.returnToCircle; } });
Object.defineProperty(exports, "ceremonialHold", { enumerable: true, get: function () { return outcomes_js_1.ceremonialHold; } });
//# sourceMappingURL=index.js.map