@medicine-wheel/ontology-core 0.2.2

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.
@@ -0,0 +1,697 @@
1
+ /**
2
+ * @medicine-wheel/ontology-core — Zod Schemas
3
+ *
4
+ * Runtime validation schemas for all Medicine Wheel ontology types.
5
+ * These enforce data integrity at ingestion boundaries (MCP tools,
6
+ * API endpoints, Redis reads) and serve as executable documentation
7
+ * of the data model.
8
+ */
9
+ import { z } from 'zod';
10
+ export declare const DirectionNameSchema: z.ZodEnum<["east", "south", "west", "north"]>;
11
+ export declare const NodeTypeSchema: z.ZodEnum<["human", "land", "spirit", "ancestor", "future", "knowledge"]>;
12
+ export declare const CeremonyTypeSchema: z.ZodEnum<["smudging", "talking_circle", "spirit_feeding", "opening", "closing"]>;
13
+ export declare const ObligationCategorySchema: z.ZodEnum<["human", "land", "spirit", "future"]>;
14
+ export declare const TensionPhaseSchema: z.ZodEnum<["germination", "assimilation", "completion"]>;
15
+ export declare const EpistemicSourceSchema: z.ZodEnum<["land", "dream", "code", "vision"]>;
16
+ export declare const AxiologicalPillarSchema: z.ZodEnum<["ontology", "epistemology", "methodology", "axiology"]>;
17
+ export declare const ConsentStateSchema: z.ZodEnum<["active", "withdrawn", "expired", "pending"]>;
18
+ export declare const AccessLevelSchema: z.ZodEnum<["community", "researchers", "public", "restricted"]>;
19
+ export declare const PossessionLocationSchema: z.ZodEnum<["on-premise", "community-server", "cloud-sovereign", "cloud-shared"]>;
20
+ export declare const DirectionSchema: z.ZodObject<{
21
+ name: z.ZodEnum<["east", "south", "west", "north"]>;
22
+ ojibwe: z.ZodString;
23
+ season: z.ZodString;
24
+ color: z.ZodString;
25
+ lifeStage: z.ZodString;
26
+ ages: z.ZodString;
27
+ medicine: z.ZodArray<z.ZodString, "many">;
28
+ teachings: z.ZodArray<z.ZodString, "many">;
29
+ practices: z.ZodArray<z.ZodString, "many">;
30
+ }, "strip", z.ZodTypeAny, {
31
+ name: "east" | "south" | "west" | "north";
32
+ ojibwe: string;
33
+ season: string;
34
+ color: string;
35
+ lifeStage: string;
36
+ ages: string;
37
+ medicine: string[];
38
+ teachings: string[];
39
+ practices: string[];
40
+ }, {
41
+ name: "east" | "south" | "west" | "north";
42
+ ojibwe: string;
43
+ season: string;
44
+ color: string;
45
+ lifeStage: string;
46
+ ages: string;
47
+ medicine: string[];
48
+ teachings: string[];
49
+ practices: string[];
50
+ }>;
51
+ export declare const RelationalNodeSchema: z.ZodObject<{
52
+ id: z.ZodString;
53
+ name: z.ZodString;
54
+ type: z.ZodEnum<["human", "land", "spirit", "ancestor", "future", "knowledge"]>;
55
+ direction: z.ZodOptional<z.ZodEnum<["east", "south", "west", "north"]>>;
56
+ metadata: z.ZodRecord<z.ZodString, z.ZodUnknown>;
57
+ created_at: z.ZodString;
58
+ updated_at: z.ZodString;
59
+ }, "strip", z.ZodTypeAny, {
60
+ name: string;
61
+ type: "human" | "land" | "spirit" | "ancestor" | "future" | "knowledge";
62
+ id: string;
63
+ metadata: Record<string, unknown>;
64
+ created_at: string;
65
+ updated_at: string;
66
+ direction?: "east" | "south" | "west" | "north" | undefined;
67
+ }, {
68
+ name: string;
69
+ type: "human" | "land" | "spirit" | "ancestor" | "future" | "knowledge";
70
+ id: string;
71
+ metadata: Record<string, unknown>;
72
+ created_at: string;
73
+ updated_at: string;
74
+ direction?: "east" | "south" | "west" | "north" | undefined;
75
+ }>;
76
+ export declare const RelationalEdgeSchema: z.ZodObject<{
77
+ id: z.ZodString;
78
+ from_id: z.ZodString;
79
+ to_id: z.ZodString;
80
+ relationship_type: z.ZodString;
81
+ strength: z.ZodNumber;
82
+ ceremony_honored: z.ZodBoolean;
83
+ obligations: z.ZodArray<z.ZodString, "many">;
84
+ created_at: z.ZodString;
85
+ }, "strip", z.ZodTypeAny, {
86
+ id: string;
87
+ created_at: string;
88
+ from_id: string;
89
+ to_id: string;
90
+ relationship_type: string;
91
+ strength: number;
92
+ ceremony_honored: boolean;
93
+ obligations: string[];
94
+ }, {
95
+ id: string;
96
+ created_at: string;
97
+ from_id: string;
98
+ to_id: string;
99
+ relationship_type: string;
100
+ strength: number;
101
+ ceremony_honored: boolean;
102
+ obligations: string[];
103
+ }>;
104
+ export declare const RelationalObligationSchema: z.ZodObject<{
105
+ category: z.ZodEnum<["human", "land", "spirit", "future"]>;
106
+ obligations: z.ZodArray<z.ZodString, "many">;
107
+ }, "strip", z.ZodTypeAny, {
108
+ obligations: string[];
109
+ category: "human" | "land" | "spirit" | "future";
110
+ }, {
111
+ obligations: string[];
112
+ category: "human" | "land" | "spirit" | "future";
113
+ }>;
114
+ export declare const OcapFlagsSchema: z.ZodObject<{
115
+ ownership: z.ZodString;
116
+ control: z.ZodString;
117
+ access: z.ZodEnum<["community", "researchers", "public", "restricted"]>;
118
+ possession: z.ZodEnum<["on-premise", "community-server", "cloud-sovereign", "cloud-shared"]>;
119
+ compliant: z.ZodBoolean;
120
+ steward: z.ZodOptional<z.ZodString>;
121
+ consent_given: z.ZodOptional<z.ZodBoolean>;
122
+ consent_scope: z.ZodOptional<z.ZodString>;
123
+ consent_state: z.ZodOptional<z.ZodEnum<["active", "withdrawn", "expired", "pending"]>>;
124
+ consent_last_affirmed: z.ZodOptional<z.ZodString>;
125
+ }, "strip", z.ZodTypeAny, {
126
+ ownership: string;
127
+ control: string;
128
+ access: "community" | "researchers" | "public" | "restricted";
129
+ possession: "on-premise" | "community-server" | "cloud-sovereign" | "cloud-shared";
130
+ compliant: boolean;
131
+ steward?: string | undefined;
132
+ consent_given?: boolean | undefined;
133
+ consent_scope?: string | undefined;
134
+ consent_state?: "active" | "withdrawn" | "expired" | "pending" | undefined;
135
+ consent_last_affirmed?: string | undefined;
136
+ }, {
137
+ ownership: string;
138
+ control: string;
139
+ access: "community" | "researchers" | "public" | "restricted";
140
+ possession: "on-premise" | "community-server" | "cloud-sovereign" | "cloud-shared";
141
+ compliant: boolean;
142
+ steward?: string | undefined;
143
+ consent_given?: boolean | undefined;
144
+ consent_scope?: string | undefined;
145
+ consent_state?: "active" | "withdrawn" | "expired" | "pending" | undefined;
146
+ consent_last_affirmed?: string | undefined;
147
+ }>;
148
+ export declare const AccountabilityTrackingSchema: z.ZodObject<{
149
+ respect: z.ZodNumber;
150
+ reciprocity: z.ZodNumber;
151
+ responsibility: z.ZodNumber;
152
+ wilson_alignment: z.ZodNumber;
153
+ relations_honored: z.ZodArray<z.ZodString, "many">;
154
+ last_ceremony_id: z.ZodOptional<z.ZodString>;
155
+ notes: z.ZodOptional<z.ZodString>;
156
+ }, "strip", z.ZodTypeAny, {
157
+ respect: number;
158
+ reciprocity: number;
159
+ responsibility: number;
160
+ wilson_alignment: number;
161
+ relations_honored: string[];
162
+ last_ceremony_id?: string | undefined;
163
+ notes?: string | undefined;
164
+ }, {
165
+ respect: number;
166
+ reciprocity: number;
167
+ responsibility: number;
168
+ wilson_alignment: number;
169
+ relations_honored: string[];
170
+ last_ceremony_id?: string | undefined;
171
+ notes?: string | undefined;
172
+ }>;
173
+ export declare const CeremonyContextSchema: z.ZodObject<{
174
+ ceremony_id: z.ZodOptional<z.ZodString>;
175
+ ceremony_type: z.ZodOptional<z.ZodEnum<["smudging", "talking_circle", "spirit_feeding", "opening", "closing"]>>;
176
+ ceremony_honored: z.ZodBoolean;
177
+ }, "strip", z.ZodTypeAny, {
178
+ ceremony_honored: boolean;
179
+ ceremony_id?: string | undefined;
180
+ ceremony_type?: "smudging" | "talking_circle" | "spirit_feeding" | "opening" | "closing" | undefined;
181
+ }, {
182
+ ceremony_honored: boolean;
183
+ ceremony_id?: string | undefined;
184
+ ceremony_type?: "smudging" | "talking_circle" | "spirit_feeding" | "opening" | "closing" | undefined;
185
+ }>;
186
+ export declare const RelationSchema: z.ZodObject<{
187
+ id: z.ZodString;
188
+ from_id: z.ZodString;
189
+ to_id: z.ZodString;
190
+ relationship_type: z.ZodString;
191
+ strength: z.ZodNumber;
192
+ direction: z.ZodOptional<z.ZodEnum<["east", "south", "west", "north"]>>;
193
+ ceremony_context: z.ZodOptional<z.ZodObject<{
194
+ ceremony_id: z.ZodOptional<z.ZodString>;
195
+ ceremony_type: z.ZodOptional<z.ZodEnum<["smudging", "talking_circle", "spirit_feeding", "opening", "closing"]>>;
196
+ ceremony_honored: z.ZodBoolean;
197
+ }, "strip", z.ZodTypeAny, {
198
+ ceremony_honored: boolean;
199
+ ceremony_id?: string | undefined;
200
+ ceremony_type?: "smudging" | "talking_circle" | "spirit_feeding" | "opening" | "closing" | undefined;
201
+ }, {
202
+ ceremony_honored: boolean;
203
+ ceremony_id?: string | undefined;
204
+ ceremony_type?: "smudging" | "talking_circle" | "spirit_feeding" | "opening" | "closing" | undefined;
205
+ }>>;
206
+ obligations: z.ZodArray<z.ZodObject<{
207
+ category: z.ZodEnum<["human", "land", "spirit", "future"]>;
208
+ obligations: z.ZodArray<z.ZodString, "many">;
209
+ }, "strip", z.ZodTypeAny, {
210
+ obligations: string[];
211
+ category: "human" | "land" | "spirit" | "future";
212
+ }, {
213
+ obligations: string[];
214
+ category: "human" | "land" | "spirit" | "future";
215
+ }>, "many">;
216
+ ocap: z.ZodObject<{
217
+ ownership: z.ZodString;
218
+ control: z.ZodString;
219
+ access: z.ZodEnum<["community", "researchers", "public", "restricted"]>;
220
+ possession: z.ZodEnum<["on-premise", "community-server", "cloud-sovereign", "cloud-shared"]>;
221
+ compliant: z.ZodBoolean;
222
+ steward: z.ZodOptional<z.ZodString>;
223
+ consent_given: z.ZodOptional<z.ZodBoolean>;
224
+ consent_scope: z.ZodOptional<z.ZodString>;
225
+ consent_state: z.ZodOptional<z.ZodEnum<["active", "withdrawn", "expired", "pending"]>>;
226
+ consent_last_affirmed: z.ZodOptional<z.ZodString>;
227
+ }, "strip", z.ZodTypeAny, {
228
+ ownership: string;
229
+ control: string;
230
+ access: "community" | "researchers" | "public" | "restricted";
231
+ possession: "on-premise" | "community-server" | "cloud-sovereign" | "cloud-shared";
232
+ compliant: boolean;
233
+ steward?: string | undefined;
234
+ consent_given?: boolean | undefined;
235
+ consent_scope?: string | undefined;
236
+ consent_state?: "active" | "withdrawn" | "expired" | "pending" | undefined;
237
+ consent_last_affirmed?: string | undefined;
238
+ }, {
239
+ ownership: string;
240
+ control: string;
241
+ access: "community" | "researchers" | "public" | "restricted";
242
+ possession: "on-premise" | "community-server" | "cloud-sovereign" | "cloud-shared";
243
+ compliant: boolean;
244
+ steward?: string | undefined;
245
+ consent_given?: boolean | undefined;
246
+ consent_scope?: string | undefined;
247
+ consent_state?: "active" | "withdrawn" | "expired" | "pending" | undefined;
248
+ consent_last_affirmed?: string | undefined;
249
+ }>;
250
+ accountability: z.ZodObject<{
251
+ respect: z.ZodNumber;
252
+ reciprocity: z.ZodNumber;
253
+ responsibility: z.ZodNumber;
254
+ wilson_alignment: z.ZodNumber;
255
+ relations_honored: z.ZodArray<z.ZodString, "many">;
256
+ last_ceremony_id: z.ZodOptional<z.ZodString>;
257
+ notes: z.ZodOptional<z.ZodString>;
258
+ }, "strip", z.ZodTypeAny, {
259
+ respect: number;
260
+ reciprocity: number;
261
+ responsibility: number;
262
+ wilson_alignment: number;
263
+ relations_honored: string[];
264
+ last_ceremony_id?: string | undefined;
265
+ notes?: string | undefined;
266
+ }, {
267
+ respect: number;
268
+ reciprocity: number;
269
+ responsibility: number;
270
+ wilson_alignment: number;
271
+ relations_honored: string[];
272
+ last_ceremony_id?: string | undefined;
273
+ notes?: string | undefined;
274
+ }>;
275
+ metadata: z.ZodRecord<z.ZodString, z.ZodUnknown>;
276
+ created_at: z.ZodString;
277
+ updated_at: z.ZodString;
278
+ }, "strip", z.ZodTypeAny, {
279
+ ocap: {
280
+ ownership: string;
281
+ control: string;
282
+ access: "community" | "researchers" | "public" | "restricted";
283
+ possession: "on-premise" | "community-server" | "cloud-sovereign" | "cloud-shared";
284
+ compliant: boolean;
285
+ steward?: string | undefined;
286
+ consent_given?: boolean | undefined;
287
+ consent_scope?: string | undefined;
288
+ consent_state?: "active" | "withdrawn" | "expired" | "pending" | undefined;
289
+ consent_last_affirmed?: string | undefined;
290
+ };
291
+ id: string;
292
+ metadata: Record<string, unknown>;
293
+ created_at: string;
294
+ updated_at: string;
295
+ from_id: string;
296
+ to_id: string;
297
+ relationship_type: string;
298
+ strength: number;
299
+ obligations: {
300
+ obligations: string[];
301
+ category: "human" | "land" | "spirit" | "future";
302
+ }[];
303
+ accountability: {
304
+ respect: number;
305
+ reciprocity: number;
306
+ responsibility: number;
307
+ wilson_alignment: number;
308
+ relations_honored: string[];
309
+ last_ceremony_id?: string | undefined;
310
+ notes?: string | undefined;
311
+ };
312
+ direction?: "east" | "south" | "west" | "north" | undefined;
313
+ ceremony_context?: {
314
+ ceremony_honored: boolean;
315
+ ceremony_id?: string | undefined;
316
+ ceremony_type?: "smudging" | "talking_circle" | "spirit_feeding" | "opening" | "closing" | undefined;
317
+ } | undefined;
318
+ }, {
319
+ ocap: {
320
+ ownership: string;
321
+ control: string;
322
+ access: "community" | "researchers" | "public" | "restricted";
323
+ possession: "on-premise" | "community-server" | "cloud-sovereign" | "cloud-shared";
324
+ compliant: boolean;
325
+ steward?: string | undefined;
326
+ consent_given?: boolean | undefined;
327
+ consent_scope?: string | undefined;
328
+ consent_state?: "active" | "withdrawn" | "expired" | "pending" | undefined;
329
+ consent_last_affirmed?: string | undefined;
330
+ };
331
+ id: string;
332
+ metadata: Record<string, unknown>;
333
+ created_at: string;
334
+ updated_at: string;
335
+ from_id: string;
336
+ to_id: string;
337
+ relationship_type: string;
338
+ strength: number;
339
+ obligations: {
340
+ obligations: string[];
341
+ category: "human" | "land" | "spirit" | "future";
342
+ }[];
343
+ accountability: {
344
+ respect: number;
345
+ reciprocity: number;
346
+ responsibility: number;
347
+ wilson_alignment: number;
348
+ relations_honored: string[];
349
+ last_ceremony_id?: string | undefined;
350
+ notes?: string | undefined;
351
+ };
352
+ direction?: "east" | "south" | "west" | "north" | undefined;
353
+ ceremony_context?: {
354
+ ceremony_honored: boolean;
355
+ ceremony_id?: string | undefined;
356
+ ceremony_type?: "smudging" | "talking_circle" | "spirit_feeding" | "opening" | "closing" | undefined;
357
+ } | undefined;
358
+ }>;
359
+ export declare const CeremonyGuidanceSchema: z.ZodObject<{
360
+ opening_practice: z.ZodString;
361
+ intention: z.ZodString;
362
+ protocol: z.ZodString;
363
+ medicines_used: z.ZodArray<z.ZodString, "many">;
364
+ timeline: z.ZodOptional<z.ZodString>;
365
+ }, "strip", z.ZodTypeAny, {
366
+ opening_practice: string;
367
+ intention: string;
368
+ protocol: string;
369
+ medicines_used: string[];
370
+ timeline?: string | undefined;
371
+ }, {
372
+ opening_practice: string;
373
+ intention: string;
374
+ protocol: string;
375
+ medicines_used: string[];
376
+ timeline?: string | undefined;
377
+ }>;
378
+ export declare const CeremonyLogSchema: z.ZodObject<{
379
+ id: z.ZodString;
380
+ type: z.ZodEnum<["smudging", "talking_circle", "spirit_feeding", "opening", "closing"]>;
381
+ direction: z.ZodEnum<["east", "south", "west", "north"]>;
382
+ participants: z.ZodArray<z.ZodString, "many">;
383
+ medicines_used: z.ZodArray<z.ZodString, "many">;
384
+ intentions: z.ZodArray<z.ZodString, "many">;
385
+ timestamp: z.ZodString;
386
+ research_context: z.ZodOptional<z.ZodString>;
387
+ relations_honored: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
388
+ ocap: z.ZodOptional<z.ZodObject<{
389
+ ownership: z.ZodString;
390
+ control: z.ZodString;
391
+ access: z.ZodEnum<["community", "researchers", "public", "restricted"]>;
392
+ possession: z.ZodEnum<["on-premise", "community-server", "cloud-sovereign", "cloud-shared"]>;
393
+ compliant: z.ZodBoolean;
394
+ steward: z.ZodOptional<z.ZodString>;
395
+ consent_given: z.ZodOptional<z.ZodBoolean>;
396
+ consent_scope: z.ZodOptional<z.ZodString>;
397
+ consent_state: z.ZodOptional<z.ZodEnum<["active", "withdrawn", "expired", "pending"]>>;
398
+ consent_last_affirmed: z.ZodOptional<z.ZodString>;
399
+ }, "strip", z.ZodTypeAny, {
400
+ ownership: string;
401
+ control: string;
402
+ access: "community" | "researchers" | "public" | "restricted";
403
+ possession: "on-premise" | "community-server" | "cloud-sovereign" | "cloud-shared";
404
+ compliant: boolean;
405
+ steward?: string | undefined;
406
+ consent_given?: boolean | undefined;
407
+ consent_scope?: string | undefined;
408
+ consent_state?: "active" | "withdrawn" | "expired" | "pending" | undefined;
409
+ consent_last_affirmed?: string | undefined;
410
+ }, {
411
+ ownership: string;
412
+ control: string;
413
+ access: "community" | "researchers" | "public" | "restricted";
414
+ possession: "on-premise" | "community-server" | "cloud-sovereign" | "cloud-shared";
415
+ compliant: boolean;
416
+ steward?: string | undefined;
417
+ consent_given?: boolean | undefined;
418
+ consent_scope?: string | undefined;
419
+ consent_state?: "active" | "withdrawn" | "expired" | "pending" | undefined;
420
+ consent_last_affirmed?: string | undefined;
421
+ }>>;
422
+ }, "strip", z.ZodTypeAny, {
423
+ type: "smudging" | "talking_circle" | "spirit_feeding" | "opening" | "closing";
424
+ id: string;
425
+ direction: "east" | "south" | "west" | "north";
426
+ medicines_used: string[];
427
+ participants: string[];
428
+ intentions: string[];
429
+ timestamp: string;
430
+ ocap?: {
431
+ ownership: string;
432
+ control: string;
433
+ access: "community" | "researchers" | "public" | "restricted";
434
+ possession: "on-premise" | "community-server" | "cloud-sovereign" | "cloud-shared";
435
+ compliant: boolean;
436
+ steward?: string | undefined;
437
+ consent_given?: boolean | undefined;
438
+ consent_scope?: string | undefined;
439
+ consent_state?: "active" | "withdrawn" | "expired" | "pending" | undefined;
440
+ consent_last_affirmed?: string | undefined;
441
+ } | undefined;
442
+ relations_honored?: string[] | undefined;
443
+ research_context?: string | undefined;
444
+ }, {
445
+ type: "smudging" | "talking_circle" | "spirit_feeding" | "opening" | "closing";
446
+ id: string;
447
+ direction: "east" | "south" | "west" | "north";
448
+ medicines_used: string[];
449
+ participants: string[];
450
+ intentions: string[];
451
+ timestamp: string;
452
+ ocap?: {
453
+ ownership: string;
454
+ control: string;
455
+ access: "community" | "researchers" | "public" | "restricted";
456
+ possession: "on-premise" | "community-server" | "cloud-sovereign" | "cloud-shared";
457
+ compliant: boolean;
458
+ steward?: string | undefined;
459
+ consent_given?: boolean | undefined;
460
+ consent_scope?: string | undefined;
461
+ consent_state?: "active" | "withdrawn" | "expired" | "pending" | undefined;
462
+ consent_last_affirmed?: string | undefined;
463
+ } | undefined;
464
+ relations_honored?: string[] | undefined;
465
+ research_context?: string | undefined;
466
+ }>;
467
+ export declare const NarrativeBeatSchema: z.ZodObject<{
468
+ id: z.ZodString;
469
+ direction: z.ZodEnum<["east", "south", "west", "north"]>;
470
+ title: z.ZodString;
471
+ description: z.ZodString;
472
+ prose: z.ZodOptional<z.ZodString>;
473
+ ceremonies: z.ZodArray<z.ZodString, "many">;
474
+ learnings: z.ZodArray<z.ZodString, "many">;
475
+ timestamp: z.ZodString;
476
+ act: z.ZodNumber;
477
+ relations_honored: z.ZodArray<z.ZodString, "many">;
478
+ }, "strip", z.ZodTypeAny, {
479
+ id: string;
480
+ direction: "east" | "south" | "west" | "north";
481
+ relations_honored: string[];
482
+ timestamp: string;
483
+ title: string;
484
+ description: string;
485
+ ceremonies: string[];
486
+ learnings: string[];
487
+ act: number;
488
+ prose?: string | undefined;
489
+ }, {
490
+ id: string;
491
+ direction: "east" | "south" | "west" | "north";
492
+ relations_honored: string[];
493
+ timestamp: string;
494
+ title: string;
495
+ description: string;
496
+ ceremonies: string[];
497
+ learnings: string[];
498
+ act: number;
499
+ prose?: string | undefined;
500
+ }>;
501
+ export declare const MedicineWheelCycleSchema: z.ZodObject<{
502
+ id: z.ZodString;
503
+ research_question: z.ZodString;
504
+ start_date: z.ZodString;
505
+ current_direction: z.ZodEnum<["east", "south", "west", "north"]>;
506
+ beats: z.ZodArray<z.ZodString, "many">;
507
+ ceremonies_conducted: z.ZodNumber;
508
+ relations_mapped: z.ZodNumber;
509
+ wilson_alignment: z.ZodNumber;
510
+ ocap_compliant: z.ZodBoolean;
511
+ }, "strip", z.ZodTypeAny, {
512
+ id: string;
513
+ wilson_alignment: number;
514
+ research_question: string;
515
+ start_date: string;
516
+ current_direction: "east" | "south" | "west" | "north";
517
+ beats: string[];
518
+ ceremonies_conducted: number;
519
+ relations_mapped: number;
520
+ ocap_compliant: boolean;
521
+ }, {
522
+ id: string;
523
+ wilson_alignment: number;
524
+ research_question: string;
525
+ start_date: string;
526
+ current_direction: "east" | "south" | "west" | "north";
527
+ beats: string[];
528
+ ceremonies_conducted: number;
529
+ relations_mapped: number;
530
+ ocap_compliant: boolean;
531
+ }>;
532
+ export declare const ActionStepSchema: z.ZodObject<{
533
+ id: z.ZodString;
534
+ title: z.ZodString;
535
+ description: z.ZodOptional<z.ZodString>;
536
+ completed: z.ZodBoolean;
537
+ direction: z.ZodOptional<z.ZodEnum<["east", "south", "west", "north"]>>;
538
+ due_date: z.ZodOptional<z.ZodString>;
539
+ }, "strip", z.ZodTypeAny, {
540
+ id: string;
541
+ title: string;
542
+ completed: boolean;
543
+ direction?: "east" | "south" | "west" | "north" | undefined;
544
+ description?: string | undefined;
545
+ due_date?: string | undefined;
546
+ }, {
547
+ id: string;
548
+ title: string;
549
+ completed: boolean;
550
+ direction?: "east" | "south" | "west" | "north" | undefined;
551
+ description?: string | undefined;
552
+ due_date?: string | undefined;
553
+ }>;
554
+ export declare const StructuralTensionChartSchema: z.ZodObject<{
555
+ id: z.ZodString;
556
+ desired_outcome: z.ZodString;
557
+ current_reality: z.ZodString;
558
+ action_steps: z.ZodArray<z.ZodObject<{
559
+ id: z.ZodString;
560
+ title: z.ZodString;
561
+ description: z.ZodOptional<z.ZodString>;
562
+ completed: z.ZodBoolean;
563
+ direction: z.ZodOptional<z.ZodEnum<["east", "south", "west", "north"]>>;
564
+ due_date: z.ZodOptional<z.ZodString>;
565
+ }, "strip", z.ZodTypeAny, {
566
+ id: string;
567
+ title: string;
568
+ completed: boolean;
569
+ direction?: "east" | "south" | "west" | "north" | undefined;
570
+ description?: string | undefined;
571
+ due_date?: string | undefined;
572
+ }, {
573
+ id: string;
574
+ title: string;
575
+ completed: boolean;
576
+ direction?: "east" | "south" | "west" | "north" | undefined;
577
+ description?: string | undefined;
578
+ due_date?: string | undefined;
579
+ }>, "many">;
580
+ phase: z.ZodEnum<["germination", "assimilation", "completion"]>;
581
+ direction: z.ZodOptional<z.ZodEnum<["east", "south", "west", "north"]>>;
582
+ created_at: z.ZodString;
583
+ updated_at: z.ZodString;
584
+ }, "strip", z.ZodTypeAny, {
585
+ id: string;
586
+ created_at: string;
587
+ updated_at: string;
588
+ desired_outcome: string;
589
+ current_reality: string;
590
+ action_steps: {
591
+ id: string;
592
+ title: string;
593
+ completed: boolean;
594
+ direction?: "east" | "south" | "west" | "north" | undefined;
595
+ description?: string | undefined;
596
+ due_date?: string | undefined;
597
+ }[];
598
+ phase: "germination" | "assimilation" | "completion";
599
+ direction?: "east" | "south" | "west" | "north" | undefined;
600
+ }, {
601
+ id: string;
602
+ created_at: string;
603
+ updated_at: string;
604
+ desired_outcome: string;
605
+ current_reality: string;
606
+ action_steps: {
607
+ id: string;
608
+ title: string;
609
+ completed: boolean;
610
+ direction?: "east" | "south" | "west" | "north" | undefined;
611
+ description?: string | undefined;
612
+ due_date?: string | undefined;
613
+ }[];
614
+ phase: "germination" | "assimilation" | "completion";
615
+ direction?: "east" | "south" | "west" | "north" | undefined;
616
+ }>;
617
+ export declare const DirectionResponseSchema: z.ZodObject<{
618
+ direction: z.ZodString;
619
+ stage: z.ZodString;
620
+ ceremony_guidance: z.ZodObject<{
621
+ opening_practice: z.ZodString;
622
+ intention: z.ZodString;
623
+ protocol: z.ZodString;
624
+ medicines_used: z.ZodArray<z.ZodString, "many">;
625
+ timeline: z.ZodOptional<z.ZodString>;
626
+ }, "strip", z.ZodTypeAny, {
627
+ opening_practice: string;
628
+ intention: string;
629
+ protocol: string;
630
+ medicines_used: string[];
631
+ timeline?: string | undefined;
632
+ }, {
633
+ opening_practice: string;
634
+ intention: string;
635
+ protocol: string;
636
+ medicines_used: string[];
637
+ timeline?: string | undefined;
638
+ }>;
639
+ relational_obligations: z.ZodArray<z.ZodObject<{
640
+ category: z.ZodEnum<["human", "land", "spirit", "future"]>;
641
+ obligations: z.ZodArray<z.ZodString, "many">;
642
+ }, "strip", z.ZodTypeAny, {
643
+ obligations: string[];
644
+ category: "human" | "land" | "spirit" | "future";
645
+ }, {
646
+ obligations: string[];
647
+ category: "human" | "land" | "spirit" | "future";
648
+ }>, "many">;
649
+ suggested_practices: z.ZodArray<z.ZodUnknown, "many">;
650
+ accountability_checkpoint: z.ZodOptional<z.ZodUnknown>;
651
+ relational_accountability_summary: z.ZodOptional<z.ZodUnknown>;
652
+ }, "strip", z.ZodTypeAny, {
653
+ direction: string;
654
+ stage: string;
655
+ ceremony_guidance: {
656
+ opening_practice: string;
657
+ intention: string;
658
+ protocol: string;
659
+ medicines_used: string[];
660
+ timeline?: string | undefined;
661
+ };
662
+ relational_obligations: {
663
+ obligations: string[];
664
+ category: "human" | "land" | "spirit" | "future";
665
+ }[];
666
+ suggested_practices: unknown[];
667
+ accountability_checkpoint?: unknown;
668
+ relational_accountability_summary?: unknown;
669
+ }, {
670
+ direction: string;
671
+ stage: string;
672
+ ceremony_guidance: {
673
+ opening_practice: string;
674
+ intention: string;
675
+ protocol: string;
676
+ medicines_used: string[];
677
+ timeline?: string | undefined;
678
+ };
679
+ relational_obligations: {
680
+ obligations: string[];
681
+ category: "human" | "land" | "spirit" | "future";
682
+ }[];
683
+ suggested_practices: unknown[];
684
+ accountability_checkpoint?: unknown;
685
+ relational_accountability_summary?: unknown;
686
+ }>;
687
+ export type ValidatedDirection = z.infer<typeof DirectionSchema>;
688
+ export type ValidatedRelationalNode = z.infer<typeof RelationalNodeSchema>;
689
+ export type ValidatedRelationalEdge = z.infer<typeof RelationalEdgeSchema>;
690
+ export type ValidatedRelation = z.infer<typeof RelationSchema>;
691
+ export type ValidatedOcapFlags = z.infer<typeof OcapFlagsSchema>;
692
+ export type ValidatedAccountabilityTracking = z.infer<typeof AccountabilityTrackingSchema>;
693
+ export type ValidatedCeremonyLog = z.infer<typeof CeremonyLogSchema>;
694
+ export type ValidatedNarrativeBeat = z.infer<typeof NarrativeBeatSchema>;
695
+ export type ValidatedMedicineWheelCycle = z.infer<typeof MedicineWheelCycleSchema>;
696
+ export type ValidatedStructuralTensionChart = z.infer<typeof StructuralTensionChartSchema>;
697
+ //# sourceMappingURL=schemas.d.ts.map