@hiveforge/hivemind-mcp 2.1.0 → 2.1.1

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.
@@ -1,60 +1,89 @@
1
1
  import { z } from 'zod';
2
- export declare const NoteStatusSchema: z.ZodEnum<["draft", "pending", "canon", "non-canon", "archived"]>;
2
+ export declare const NoteStatusSchema: z.ZodEnum<{
3
+ draft: "draft";
4
+ pending: "pending";
5
+ canon: "canon";
6
+ "non-canon": "non-canon";
7
+ archived: "archived";
8
+ }>;
3
9
  export type NoteStatus = z.infer<typeof NoteStatusSchema>;
4
- export declare const NoteTypeSchema: z.ZodEnum<["character", "location", "event", "faction", "system", "asset", "lore"]>;
10
+ export declare const NoteTypeSchema: z.ZodEnum<{
11
+ character: "character";
12
+ location: "location";
13
+ event: "event";
14
+ faction: "faction";
15
+ system: "system";
16
+ asset: "asset";
17
+ lore: "lore";
18
+ }>;
5
19
  export type NoteType = z.infer<typeof NoteTypeSchema>;
6
- export declare const ImportanceSchema: z.ZodEnum<["major", "minor", "background"]>;
20
+ export declare const ImportanceSchema: z.ZodEnum<{
21
+ major: "major";
22
+ minor: "minor";
23
+ background: "background";
24
+ }>;
7
25
  export type Importance = z.infer<typeof ImportanceSchema>;
8
26
  export declare const BaseFrontmatterSchema: z.ZodObject<{
9
27
  id: z.ZodString;
10
- type: z.ZodEnum<["character", "location", "event", "faction", "system", "asset", "lore"]>;
11
- status: z.ZodDefault<z.ZodEnum<["draft", "pending", "canon", "non-canon", "archived"]>>;
28
+ type: z.ZodEnum<{
29
+ character: "character";
30
+ location: "location";
31
+ event: "event";
32
+ faction: "faction";
33
+ system: "system";
34
+ asset: "asset";
35
+ lore: "lore";
36
+ }>;
37
+ status: z.ZodDefault<z.ZodEnum<{
38
+ draft: "draft";
39
+ pending: "pending";
40
+ canon: "canon";
41
+ "non-canon": "non-canon";
42
+ archived: "archived";
43
+ }>>;
12
44
  title: z.ZodOptional<z.ZodString>;
13
45
  world: z.ZodOptional<z.ZodString>;
14
- importance: z.ZodOptional<z.ZodEnum<["major", "minor", "background"]>>;
15
- tags: z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodString, "many">>>;
16
- aliases: z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodString, "many">>>;
46
+ importance: z.ZodOptional<z.ZodEnum<{
47
+ major: "major";
48
+ minor: "minor";
49
+ background: "background";
50
+ }>>;
51
+ tags: z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodString>>>;
52
+ aliases: z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodString>>>;
17
53
  created: z.ZodOptional<z.ZodString>;
18
54
  updated: z.ZodOptional<z.ZodString>;
19
- canon_authority: z.ZodOptional<z.ZodEnum<["high", "medium", "low"]>>;
20
- }, "strip", z.ZodTypeAny, {
21
- type: "character" | "location" | "event" | "faction" | "system" | "asset" | "lore";
22
- status: "draft" | "pending" | "canon" | "non-canon" | "archived";
23
- id: string;
24
- tags: string[];
25
- aliases: string[];
26
- title?: string | undefined;
27
- world?: string | undefined;
28
- importance?: "major" | "minor" | "background" | undefined;
29
- created?: string | undefined;
30
- updated?: string | undefined;
31
- canon_authority?: "high" | "medium" | "low" | undefined;
32
- }, {
33
- type: "character" | "location" | "event" | "faction" | "system" | "asset" | "lore";
34
- id: string;
35
- status?: "draft" | "pending" | "canon" | "non-canon" | "archived" | undefined;
36
- title?: string | undefined;
37
- world?: string | undefined;
38
- importance?: "major" | "minor" | "background" | undefined;
39
- tags?: string[] | undefined;
40
- aliases?: string[] | undefined;
41
- created?: string | undefined;
42
- updated?: string | undefined;
43
- canon_authority?: "high" | "medium" | "low" | undefined;
44
- }>;
55
+ canon_authority: z.ZodOptional<z.ZodEnum<{
56
+ high: "high";
57
+ medium: "medium";
58
+ low: "low";
59
+ }>>;
60
+ }, z.core.$strip>;
45
61
  export type BaseFrontmatter = z.infer<typeof BaseFrontmatterSchema>;
46
62
  export declare const CharacterFrontmatterSchema: z.ZodObject<{
47
63
  id: z.ZodString;
48
- status: z.ZodDefault<z.ZodEnum<["draft", "pending", "canon", "non-canon", "archived"]>>;
64
+ status: z.ZodDefault<z.ZodEnum<{
65
+ draft: "draft";
66
+ pending: "pending";
67
+ canon: "canon";
68
+ "non-canon": "non-canon";
69
+ archived: "archived";
70
+ }>>;
49
71
  title: z.ZodOptional<z.ZodString>;
50
72
  world: z.ZodOptional<z.ZodString>;
51
- importance: z.ZodOptional<z.ZodEnum<["major", "minor", "background"]>>;
52
- tags: z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodString, "many">>>;
53
- aliases: z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodString, "many">>>;
73
+ importance: z.ZodOptional<z.ZodEnum<{
74
+ major: "major";
75
+ minor: "minor";
76
+ background: "background";
77
+ }>>;
78
+ tags: z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodString>>>;
79
+ aliases: z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodString>>>;
54
80
  created: z.ZodOptional<z.ZodString>;
55
81
  updated: z.ZodOptional<z.ZodString>;
56
- canon_authority: z.ZodOptional<z.ZodEnum<["high", "medium", "low"]>>;
57
- } & {
82
+ canon_authority: z.ZodOptional<z.ZodEnum<{
83
+ high: "high";
84
+ medium: "medium";
85
+ low: "low";
86
+ }>>;
58
87
  type: z.ZodLiteral<"character">;
59
88
  name: z.ZodString;
60
89
  age: z.ZodOptional<z.ZodNumber>;
@@ -62,134 +91,80 @@ export declare const CharacterFrontmatterSchema: z.ZodObject<{
62
91
  race: z.ZodOptional<z.ZodString>;
63
92
  appearance: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
64
93
  personality: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
65
- relationships: z.ZodOptional<z.ZodArray<z.ZodRecord<z.ZodString, z.ZodAny>, "many">>;
66
- assets: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
67
- }, "strip", z.ZodTypeAny, {
68
- type: "character";
69
- status: "draft" | "pending" | "canon" | "non-canon" | "archived";
70
- id: string;
71
- tags: string[];
72
- aliases: string[];
73
- name: string;
74
- title?: string | undefined;
75
- world?: string | undefined;
76
- importance?: "major" | "minor" | "background" | undefined;
77
- created?: string | undefined;
78
- updated?: string | undefined;
79
- canon_authority?: "high" | "medium" | "low" | undefined;
80
- age?: number | undefined;
81
- gender?: string | undefined;
82
- race?: string | undefined;
83
- appearance?: Record<string, any> | undefined;
84
- personality?: Record<string, any> | undefined;
85
- relationships?: Record<string, any>[] | undefined;
86
- assets?: string[] | undefined;
87
- }, {
88
- type: "character";
89
- id: string;
90
- name: string;
91
- status?: "draft" | "pending" | "canon" | "non-canon" | "archived" | undefined;
92
- title?: string | undefined;
93
- world?: string | undefined;
94
- importance?: "major" | "minor" | "background" | undefined;
95
- tags?: string[] | undefined;
96
- aliases?: string[] | undefined;
97
- created?: string | undefined;
98
- updated?: string | undefined;
99
- canon_authority?: "high" | "medium" | "low" | undefined;
100
- age?: number | undefined;
101
- gender?: string | undefined;
102
- race?: string | undefined;
103
- appearance?: Record<string, any> | undefined;
104
- personality?: Record<string, any> | undefined;
105
- relationships?: Record<string, any>[] | undefined;
106
- assets?: string[] | undefined;
107
- }>;
94
+ relationships: z.ZodOptional<z.ZodArray<z.ZodRecord<z.ZodString, z.ZodAny>>>;
95
+ assets: z.ZodOptional<z.ZodArray<z.ZodString>>;
96
+ }, z.core.$strip>;
108
97
  export type CharacterFrontmatter = z.infer<typeof CharacterFrontmatterSchema>;
109
98
  export declare const LocationFrontmatterSchema: z.ZodObject<{
110
99
  id: z.ZodString;
111
- status: z.ZodDefault<z.ZodEnum<["draft", "pending", "canon", "non-canon", "archived"]>>;
100
+ status: z.ZodDefault<z.ZodEnum<{
101
+ draft: "draft";
102
+ pending: "pending";
103
+ canon: "canon";
104
+ "non-canon": "non-canon";
105
+ archived: "archived";
106
+ }>>;
112
107
  title: z.ZodOptional<z.ZodString>;
113
108
  world: z.ZodOptional<z.ZodString>;
114
- importance: z.ZodOptional<z.ZodEnum<["major", "minor", "background"]>>;
115
- tags: z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodString, "many">>>;
116
- aliases: z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodString, "many">>>;
109
+ importance: z.ZodOptional<z.ZodEnum<{
110
+ major: "major";
111
+ minor: "minor";
112
+ background: "background";
113
+ }>>;
114
+ tags: z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodString>>>;
115
+ aliases: z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodString>>>;
117
116
  created: z.ZodOptional<z.ZodString>;
118
117
  updated: z.ZodOptional<z.ZodString>;
119
- canon_authority: z.ZodOptional<z.ZodEnum<["high", "medium", "low"]>>;
120
- } & {
118
+ canon_authority: z.ZodOptional<z.ZodEnum<{
119
+ high: "high";
120
+ medium: "medium";
121
+ low: "low";
122
+ }>>;
121
123
  type: z.ZodLiteral<"location">;
122
124
  name: z.ZodString;
123
125
  region: z.ZodOptional<z.ZodString>;
124
126
  category: z.ZodOptional<z.ZodString>;
125
127
  parent: z.ZodOptional<z.ZodString>;
126
- hierarchy_level: z.ZodOptional<z.ZodEnum<["continent", "region", "settlement", "building", "room"]>>;
127
- children: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
128
+ hierarchy_level: z.ZodOptional<z.ZodEnum<{
129
+ region: "region";
130
+ continent: "continent";
131
+ settlement: "settlement";
132
+ building: "building";
133
+ room: "room";
134
+ }>>;
135
+ children: z.ZodOptional<z.ZodArray<z.ZodString>>;
128
136
  climate: z.ZodOptional<z.ZodString>;
129
- terrain: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
130
- inhabitants: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
131
- connections: z.ZodOptional<z.ZodArray<z.ZodRecord<z.ZodString, z.ZodAny>, "many">>;
132
- assets: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
133
- }, "strip", z.ZodTypeAny, {
134
- type: "location";
135
- status: "draft" | "pending" | "canon" | "non-canon" | "archived";
136
- id: string;
137
- tags: string[];
138
- aliases: string[];
139
- name: string;
140
- title?: string | undefined;
141
- world?: string | undefined;
142
- importance?: "major" | "minor" | "background" | undefined;
143
- created?: string | undefined;
144
- updated?: string | undefined;
145
- canon_authority?: "high" | "medium" | "low" | undefined;
146
- assets?: string[] | undefined;
147
- region?: string | undefined;
148
- category?: string | undefined;
149
- parent?: string | undefined;
150
- hierarchy_level?: "region" | "continent" | "settlement" | "building" | "room" | undefined;
151
- children?: string[] | undefined;
152
- climate?: string | undefined;
153
- terrain?: string[] | undefined;
154
- inhabitants?: string[] | undefined;
155
- connections?: Record<string, any>[] | undefined;
156
- }, {
157
- type: "location";
158
- id: string;
159
- name: string;
160
- status?: "draft" | "pending" | "canon" | "non-canon" | "archived" | undefined;
161
- title?: string | undefined;
162
- world?: string | undefined;
163
- importance?: "major" | "minor" | "background" | undefined;
164
- tags?: string[] | undefined;
165
- aliases?: string[] | undefined;
166
- created?: string | undefined;
167
- updated?: string | undefined;
168
- canon_authority?: "high" | "medium" | "low" | undefined;
169
- assets?: string[] | undefined;
170
- region?: string | undefined;
171
- category?: string | undefined;
172
- parent?: string | undefined;
173
- hierarchy_level?: "region" | "continent" | "settlement" | "building" | "room" | undefined;
174
- children?: string[] | undefined;
175
- climate?: string | undefined;
176
- terrain?: string[] | undefined;
177
- inhabitants?: string[] | undefined;
178
- connections?: Record<string, any>[] | undefined;
179
- }>;
137
+ terrain: z.ZodOptional<z.ZodArray<z.ZodString>>;
138
+ inhabitants: z.ZodOptional<z.ZodArray<z.ZodString>>;
139
+ connections: z.ZodOptional<z.ZodArray<z.ZodRecord<z.ZodString, z.ZodAny>>>;
140
+ assets: z.ZodOptional<z.ZodArray<z.ZodString>>;
141
+ }, z.core.$strip>;
180
142
  export type LocationFrontmatter = z.infer<typeof LocationFrontmatterSchema>;
181
143
  export declare const EventFrontmatterSchema: z.ZodObject<{
182
144
  id: z.ZodString;
183
- status: z.ZodDefault<z.ZodEnum<["draft", "pending", "canon", "non-canon", "archived"]>>;
145
+ status: z.ZodDefault<z.ZodEnum<{
146
+ draft: "draft";
147
+ pending: "pending";
148
+ canon: "canon";
149
+ "non-canon": "non-canon";
150
+ archived: "archived";
151
+ }>>;
184
152
  title: z.ZodOptional<z.ZodString>;
185
153
  world: z.ZodOptional<z.ZodString>;
186
- importance: z.ZodOptional<z.ZodEnum<["major", "minor", "background"]>>;
187
- tags: z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodString, "many">>>;
188
- aliases: z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodString, "many">>>;
154
+ importance: z.ZodOptional<z.ZodEnum<{
155
+ major: "major";
156
+ minor: "minor";
157
+ background: "background";
158
+ }>>;
159
+ tags: z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodString>>>;
160
+ aliases: z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodString>>>;
189
161
  created: z.ZodOptional<z.ZodString>;
190
162
  updated: z.ZodOptional<z.ZodString>;
191
- canon_authority: z.ZodOptional<z.ZodEnum<["high", "medium", "low"]>>;
192
- } & {
163
+ canon_authority: z.ZodOptional<z.ZodEnum<{
164
+ high: "high";
165
+ medium: "medium";
166
+ low: "low";
167
+ }>>;
193
168
  type: z.ZodLiteral<"event">;
194
169
  name: z.ZodString;
195
170
  date: z.ZodOptional<z.ZodString>;
@@ -197,205 +172,141 @@ export declare const EventFrontmatterSchema: z.ZodObject<{
197
172
  date_end: z.ZodOptional<z.ZodString>;
198
173
  date_display: z.ZodOptional<z.ZodString>;
199
174
  event_type: z.ZodOptional<z.ZodString>;
200
- participants: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
201
- locations: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
202
- factions: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
175
+ participants: z.ZodOptional<z.ZodArray<z.ZodString>>;
176
+ locations: z.ZodOptional<z.ZodArray<z.ZodString>>;
177
+ factions: z.ZodOptional<z.ZodArray<z.ZodString>>;
203
178
  outcome: z.ZodOptional<z.ZodString>;
204
- consequences: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
179
+ consequences: z.ZodOptional<z.ZodArray<z.ZodString>>;
205
180
  timeline: z.ZodOptional<z.ZodString>;
206
181
  previous_event: z.ZodOptional<z.ZodString>;
207
182
  next_event: z.ZodOptional<z.ZodString>;
208
- }, "strip", z.ZodTypeAny, {
209
- type: "event";
210
- status: "draft" | "pending" | "canon" | "non-canon" | "archived";
211
- id: string;
212
- tags: string[];
213
- aliases: string[];
214
- name: string;
215
- title?: string | undefined;
216
- world?: string | undefined;
217
- importance?: "major" | "minor" | "background" | undefined;
218
- created?: string | undefined;
219
- updated?: string | undefined;
220
- canon_authority?: "high" | "medium" | "low" | undefined;
221
- date?: string | undefined;
222
- date_start?: string | undefined;
223
- date_end?: string | undefined;
224
- date_display?: string | undefined;
225
- event_type?: string | undefined;
226
- participants?: string[] | undefined;
227
- locations?: string[] | undefined;
228
- factions?: string[] | undefined;
229
- outcome?: string | undefined;
230
- consequences?: string[] | undefined;
231
- timeline?: string | undefined;
232
- previous_event?: string | undefined;
233
- next_event?: string | undefined;
234
- }, {
235
- type: "event";
236
- id: string;
237
- name: string;
238
- status?: "draft" | "pending" | "canon" | "non-canon" | "archived" | undefined;
239
- title?: string | undefined;
240
- world?: string | undefined;
241
- importance?: "major" | "minor" | "background" | undefined;
242
- tags?: string[] | undefined;
243
- aliases?: string[] | undefined;
244
- created?: string | undefined;
245
- updated?: string | undefined;
246
- canon_authority?: "high" | "medium" | "low" | undefined;
247
- date?: string | undefined;
248
- date_start?: string | undefined;
249
- date_end?: string | undefined;
250
- date_display?: string | undefined;
251
- event_type?: string | undefined;
252
- participants?: string[] | undefined;
253
- locations?: string[] | undefined;
254
- factions?: string[] | undefined;
255
- outcome?: string | undefined;
256
- consequences?: string[] | undefined;
257
- timeline?: string | undefined;
258
- previous_event?: string | undefined;
259
- next_event?: string | undefined;
260
- }>;
183
+ }, z.core.$strip>;
261
184
  export type EventFrontmatter = z.infer<typeof EventFrontmatterSchema>;
262
185
  export declare const FactionFrontmatterSchema: z.ZodObject<{
263
186
  id: z.ZodString;
264
- status: z.ZodDefault<z.ZodEnum<["draft", "pending", "canon", "non-canon", "archived"]>>;
187
+ status: z.ZodDefault<z.ZodEnum<{
188
+ draft: "draft";
189
+ pending: "pending";
190
+ canon: "canon";
191
+ "non-canon": "non-canon";
192
+ archived: "archived";
193
+ }>>;
265
194
  title: z.ZodOptional<z.ZodString>;
266
195
  world: z.ZodOptional<z.ZodString>;
267
- importance: z.ZodOptional<z.ZodEnum<["major", "minor", "background"]>>;
268
- tags: z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodString, "many">>>;
269
- aliases: z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodString, "many">>>;
196
+ importance: z.ZodOptional<z.ZodEnum<{
197
+ major: "major";
198
+ minor: "minor";
199
+ background: "background";
200
+ }>>;
201
+ tags: z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodString>>>;
202
+ aliases: z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodString>>>;
270
203
  created: z.ZodOptional<z.ZodString>;
271
204
  updated: z.ZodOptional<z.ZodString>;
272
- canon_authority: z.ZodOptional<z.ZodEnum<["high", "medium", "low"]>>;
273
- } & {
205
+ canon_authority: z.ZodOptional<z.ZodEnum<{
206
+ high: "high";
207
+ medium: "medium";
208
+ low: "low";
209
+ }>>;
274
210
  type: z.ZodLiteral<"faction">;
275
211
  name: z.ZodString;
276
- faction_type: z.ZodOptional<z.ZodEnum<["house", "guild", "organization", "government", "military", "religion", "other"]>>;
212
+ faction_type: z.ZodOptional<z.ZodEnum<{
213
+ house: "house";
214
+ guild: "guild";
215
+ organization: "organization";
216
+ government: "government";
217
+ military: "military";
218
+ religion: "religion";
219
+ other: "other";
220
+ }>>;
277
221
  leader: z.ZodOptional<z.ZodString>;
278
- members: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
222
+ members: z.ZodOptional<z.ZodArray<z.ZodString>>;
279
223
  headquarters: z.ZodOptional<z.ZodString>;
280
224
  founded: z.ZodOptional<z.ZodString>;
281
- goals: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
282
- resources: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
283
- allies: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
284
- rivals: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
285
- }, "strip", z.ZodTypeAny, {
286
- type: "faction";
287
- status: "draft" | "pending" | "canon" | "non-canon" | "archived";
288
- id: string;
289
- tags: string[];
290
- aliases: string[];
291
- name: string;
292
- title?: string | undefined;
293
- world?: string | undefined;
294
- importance?: "major" | "minor" | "background" | undefined;
295
- created?: string | undefined;
296
- updated?: string | undefined;
297
- canon_authority?: "high" | "medium" | "low" | undefined;
298
- faction_type?: "house" | "guild" | "organization" | "government" | "military" | "religion" | "other" | undefined;
299
- leader?: string | undefined;
300
- members?: string[] | undefined;
301
- headquarters?: string | undefined;
302
- founded?: string | undefined;
303
- goals?: string[] | undefined;
304
- resources?: string[] | undefined;
305
- allies?: string[] | undefined;
306
- rivals?: string[] | undefined;
307
- }, {
308
- type: "faction";
309
- id: string;
310
- name: string;
311
- status?: "draft" | "pending" | "canon" | "non-canon" | "archived" | undefined;
312
- title?: string | undefined;
313
- world?: string | undefined;
314
- importance?: "major" | "minor" | "background" | undefined;
315
- tags?: string[] | undefined;
316
- aliases?: string[] | undefined;
317
- created?: string | undefined;
318
- updated?: string | undefined;
319
- canon_authority?: "high" | "medium" | "low" | undefined;
320
- faction_type?: "house" | "guild" | "organization" | "government" | "military" | "religion" | "other" | undefined;
321
- leader?: string | undefined;
322
- members?: string[] | undefined;
323
- headquarters?: string | undefined;
324
- founded?: string | undefined;
325
- goals?: string[] | undefined;
326
- resources?: string[] | undefined;
327
- allies?: string[] | undefined;
328
- rivals?: string[] | undefined;
329
- }>;
225
+ goals: z.ZodOptional<z.ZodArray<z.ZodString>>;
226
+ resources: z.ZodOptional<z.ZodArray<z.ZodString>>;
227
+ allies: z.ZodOptional<z.ZodArray<z.ZodString>>;
228
+ rivals: z.ZodOptional<z.ZodArray<z.ZodString>>;
229
+ }, z.core.$strip>;
330
230
  export type FactionFrontmatter = z.infer<typeof FactionFrontmatterSchema>;
331
231
  export declare const LoreFrontmatterSchema: z.ZodObject<{
332
232
  id: z.ZodString;
333
- status: z.ZodDefault<z.ZodEnum<["draft", "pending", "canon", "non-canon", "archived"]>>;
233
+ status: z.ZodDefault<z.ZodEnum<{
234
+ draft: "draft";
235
+ pending: "pending";
236
+ canon: "canon";
237
+ "non-canon": "non-canon";
238
+ archived: "archived";
239
+ }>>;
334
240
  title: z.ZodOptional<z.ZodString>;
335
241
  world: z.ZodOptional<z.ZodString>;
336
- importance: z.ZodOptional<z.ZodEnum<["major", "minor", "background"]>>;
337
- tags: z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodString, "many">>>;
338
- aliases: z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodString, "many">>>;
242
+ importance: z.ZodOptional<z.ZodEnum<{
243
+ major: "major";
244
+ minor: "minor";
245
+ background: "background";
246
+ }>>;
247
+ tags: z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodString>>>;
248
+ aliases: z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodString>>>;
339
249
  created: z.ZodOptional<z.ZodString>;
340
250
  updated: z.ZodOptional<z.ZodString>;
341
- canon_authority: z.ZodOptional<z.ZodEnum<["high", "medium", "low"]>>;
342
- } & {
251
+ canon_authority: z.ZodOptional<z.ZodEnum<{
252
+ high: "high";
253
+ medium: "medium";
254
+ low: "low";
255
+ }>>;
343
256
  type: z.ZodLiteral<"lore">;
344
257
  name: z.ZodString;
345
- category: z.ZodOptional<z.ZodEnum<["mythology", "history", "magic", "technology", "culture", "religion", "other"]>>;
346
- related_entities: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
347
- source: z.ZodOptional<z.ZodEnum<["in-world", "meta", "player-knowledge"]>>;
348
- }, "strip", z.ZodTypeAny, {
349
- type: "lore";
350
- status: "draft" | "pending" | "canon" | "non-canon" | "archived";
351
- id: string;
352
- tags: string[];
353
- aliases: string[];
354
- name: string;
355
- title?: string | undefined;
356
- world?: string | undefined;
357
- importance?: "major" | "minor" | "background" | undefined;
358
- created?: string | undefined;
359
- updated?: string | undefined;
360
- canon_authority?: "high" | "medium" | "low" | undefined;
361
- category?: "religion" | "other" | "mythology" | "history" | "magic" | "technology" | "culture" | undefined;
362
- related_entities?: string[] | undefined;
363
- source?: "in-world" | "meta" | "player-knowledge" | undefined;
364
- }, {
365
- type: "lore";
366
- id: string;
367
- name: string;
368
- status?: "draft" | "pending" | "canon" | "non-canon" | "archived" | undefined;
369
- title?: string | undefined;
370
- world?: string | undefined;
371
- importance?: "major" | "minor" | "background" | undefined;
372
- tags?: string[] | undefined;
373
- aliases?: string[] | undefined;
374
- created?: string | undefined;
375
- updated?: string | undefined;
376
- canon_authority?: "high" | "medium" | "low" | undefined;
377
- category?: "religion" | "other" | "mythology" | "history" | "magic" | "technology" | "culture" | undefined;
378
- related_entities?: string[] | undefined;
379
- source?: "in-world" | "meta" | "player-knowledge" | undefined;
380
- }>;
258
+ category: z.ZodOptional<z.ZodEnum<{
259
+ religion: "religion";
260
+ other: "other";
261
+ mythology: "mythology";
262
+ history: "history";
263
+ magic: "magic";
264
+ technology: "technology";
265
+ culture: "culture";
266
+ }>>;
267
+ related_entities: z.ZodOptional<z.ZodArray<z.ZodString>>;
268
+ source: z.ZodOptional<z.ZodEnum<{
269
+ "in-world": "in-world";
270
+ meta: "meta";
271
+ "player-knowledge": "player-knowledge";
272
+ }>>;
273
+ }, z.core.$strip>;
381
274
  export type LoreFrontmatter = z.infer<typeof LoreFrontmatterSchema>;
382
275
  export declare const AssetFrontmatterSchema: z.ZodObject<{
383
276
  id: z.ZodString;
384
- status: z.ZodDefault<z.ZodEnum<["draft", "pending", "canon", "non-canon", "archived"]>>;
277
+ status: z.ZodDefault<z.ZodEnum<{
278
+ draft: "draft";
279
+ pending: "pending";
280
+ canon: "canon";
281
+ "non-canon": "non-canon";
282
+ archived: "archived";
283
+ }>>;
385
284
  title: z.ZodOptional<z.ZodString>;
386
285
  world: z.ZodOptional<z.ZodString>;
387
- importance: z.ZodOptional<z.ZodEnum<["major", "minor", "background"]>>;
388
- tags: z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodString, "many">>>;
389
- aliases: z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodString, "many">>>;
286
+ importance: z.ZodOptional<z.ZodEnum<{
287
+ major: "major";
288
+ minor: "minor";
289
+ background: "background";
290
+ }>>;
291
+ tags: z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodString>>>;
292
+ aliases: z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodString>>>;
390
293
  created: z.ZodOptional<z.ZodString>;
391
294
  updated: z.ZodOptional<z.ZodString>;
392
- canon_authority: z.ZodOptional<z.ZodEnum<["high", "medium", "low"]>>;
393
- } & {
295
+ canon_authority: z.ZodOptional<z.ZodEnum<{
296
+ high: "high";
297
+ medium: "medium";
298
+ low: "low";
299
+ }>>;
394
300
  type: z.ZodLiteral<"asset">;
395
- asset_type: z.ZodDefault<z.ZodEnum<["image", "audio", "video", "document"]>>;
301
+ asset_type: z.ZodDefault<z.ZodEnum<{
302
+ image: "image";
303
+ audio: "audio";
304
+ video: "video";
305
+ document: "document";
306
+ }>>;
396
307
  file_path: z.ZodString;
397
308
  file_format: z.ZodOptional<z.ZodString>;
398
- depicts: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
309
+ depicts: z.ZodOptional<z.ZodArray<z.ZodString>>;
399
310
  generation_date: z.ZodOptional<z.ZodString>;
400
311
  generator: z.ZodOptional<z.ZodString>;
401
312
  workflow_id: z.ZodOptional<z.ZodString>;
@@ -406,59 +317,7 @@ export declare const AssetFrontmatterSchema: z.ZodObject<{
406
317
  parameters: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
407
318
  approved_by: z.ZodOptional<z.ZodString>;
408
319
  approval_date: z.ZodOptional<z.ZodString>;
409
- }, "strip", z.ZodTypeAny, {
410
- type: "asset";
411
- status: "draft" | "pending" | "canon" | "non-canon" | "archived";
412
- id: string;
413
- tags: string[];
414
- aliases: string[];
415
- asset_type: "image" | "audio" | "video" | "document";
416
- file_path: string;
417
- title?: string | undefined;
418
- world?: string | undefined;
419
- importance?: "major" | "minor" | "background" | undefined;
420
- created?: string | undefined;
421
- updated?: string | undefined;
422
- canon_authority?: "high" | "medium" | "low" | undefined;
423
- file_format?: string | undefined;
424
- depicts?: string[] | undefined;
425
- generation_date?: string | undefined;
426
- generator?: string | undefined;
427
- workflow_id?: string | undefined;
428
- prompt?: string | undefined;
429
- negative_prompt?: string | undefined;
430
- model?: string | undefined;
431
- seed?: number | undefined;
432
- parameters?: Record<string, any> | undefined;
433
- approved_by?: string | undefined;
434
- approval_date?: string | undefined;
435
- }, {
436
- type: "asset";
437
- id: string;
438
- file_path: string;
439
- status?: "draft" | "pending" | "canon" | "non-canon" | "archived" | undefined;
440
- title?: string | undefined;
441
- world?: string | undefined;
442
- importance?: "major" | "minor" | "background" | undefined;
443
- tags?: string[] | undefined;
444
- aliases?: string[] | undefined;
445
- created?: string | undefined;
446
- updated?: string | undefined;
447
- canon_authority?: "high" | "medium" | "low" | undefined;
448
- asset_type?: "image" | "audio" | "video" | "document" | undefined;
449
- file_format?: string | undefined;
450
- depicts?: string[] | undefined;
451
- generation_date?: string | undefined;
452
- generator?: string | undefined;
453
- workflow_id?: string | undefined;
454
- prompt?: string | undefined;
455
- negative_prompt?: string | undefined;
456
- model?: string | undefined;
457
- seed?: number | undefined;
458
- parameters?: Record<string, any> | undefined;
459
- approved_by?: string | undefined;
460
- approval_date?: string | undefined;
461
- }>;
320
+ }, z.core.$strip>;
462
321
  export type AssetFrontmatter = z.infer<typeof AssetFrontmatterSchema>;
463
322
  export interface VaultNote {
464
323
  id: string;
@@ -541,79 +400,45 @@ export declare const QueryCharacterArgsSchema: z.ZodObject<{
541
400
  id: z.ZodString;
542
401
  includeContent: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
543
402
  contentLimit: z.ZodDefault<z.ZodOptional<z.ZodNumber>>;
544
- }, "strip", z.ZodTypeAny, {
545
- id: string;
546
- includeContent: boolean;
547
- contentLimit: number;
548
- }, {
549
- id: string;
550
- includeContent?: boolean | undefined;
551
- contentLimit?: number | undefined;
552
- }>;
403
+ }, z.core.$strip>;
553
404
  export type QueryCharacterArgs = z.infer<typeof QueryCharacterArgsSchema>;
554
405
  export declare const QueryLocationArgsSchema: z.ZodObject<{
555
406
  id: z.ZodString;
556
407
  includeContent: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
557
408
  contentLimit: z.ZodDefault<z.ZodOptional<z.ZodNumber>>;
558
- }, "strip", z.ZodTypeAny, {
559
- id: string;
560
- includeContent: boolean;
561
- contentLimit: number;
562
- }, {
563
- id: string;
564
- includeContent?: boolean | undefined;
565
- contentLimit?: number | undefined;
566
- }>;
409
+ }, z.core.$strip>;
567
410
  export type QueryLocationArgs = z.infer<typeof QueryLocationArgsSchema>;
568
411
  export declare const SearchVaultArgsSchema: z.ZodObject<{
569
412
  query: z.ZodString;
570
413
  filters: z.ZodOptional<z.ZodObject<{
571
- type: z.ZodOptional<z.ZodArray<z.ZodEnum<["character", "location", "event", "faction", "system", "asset", "lore"]>, "many">>;
572
- status: z.ZodOptional<z.ZodArray<z.ZodEnum<["draft", "pending", "canon", "non-canon", "archived"]>, "many">>;
573
- importance: z.ZodOptional<z.ZodArray<z.ZodEnum<["major", "minor", "background"]>, "many">>;
574
- tags: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
414
+ type: z.ZodOptional<z.ZodArray<z.ZodEnum<{
415
+ character: "character";
416
+ location: "location";
417
+ event: "event";
418
+ faction: "faction";
419
+ system: "system";
420
+ asset: "asset";
421
+ lore: "lore";
422
+ }>>>;
423
+ status: z.ZodOptional<z.ZodArray<z.ZodEnum<{
424
+ draft: "draft";
425
+ pending: "pending";
426
+ canon: "canon";
427
+ "non-canon": "non-canon";
428
+ archived: "archived";
429
+ }>>>;
430
+ importance: z.ZodOptional<z.ZodArray<z.ZodEnum<{
431
+ major: "major";
432
+ minor: "minor";
433
+ background: "background";
434
+ }>>>;
435
+ tags: z.ZodOptional<z.ZodArray<z.ZodString>>;
575
436
  world: z.ZodOptional<z.ZodString>;
576
- }, "strip", z.ZodTypeAny, {
577
- type?: ("character" | "location" | "event" | "faction" | "system" | "asset" | "lore")[] | undefined;
578
- status?: ("draft" | "pending" | "canon" | "non-canon" | "archived")[] | undefined;
579
- world?: string | undefined;
580
- importance?: ("major" | "minor" | "background")[] | undefined;
581
- tags?: string[] | undefined;
582
- }, {
583
- type?: ("character" | "location" | "event" | "faction" | "system" | "asset" | "lore")[] | undefined;
584
- status?: ("draft" | "pending" | "canon" | "non-canon" | "archived")[] | undefined;
585
- world?: string | undefined;
586
- importance?: ("major" | "minor" | "background")[] | undefined;
587
- tags?: string[] | undefined;
588
- }>>;
437
+ }, z.core.$strip>>;
589
438
  limit: z.ZodDefault<z.ZodNumber>;
590
439
  includeContent: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
591
440
  contentLimit: z.ZodDefault<z.ZodOptional<z.ZodNumber>>;
592
- }, "strip", z.ZodTypeAny, {
593
- includeContent: boolean;
594
- contentLimit: number;
595
- query: string;
596
- limit: number;
597
- filters?: {
598
- type?: ("character" | "location" | "event" | "faction" | "system" | "asset" | "lore")[] | undefined;
599
- status?: ("draft" | "pending" | "canon" | "non-canon" | "archived")[] | undefined;
600
- world?: string | undefined;
601
- importance?: ("major" | "minor" | "background")[] | undefined;
602
- tags?: string[] | undefined;
603
- } | undefined;
604
- }, {
605
- query: string;
606
- includeContent?: boolean | undefined;
607
- contentLimit?: number | undefined;
608
- filters?: {
609
- type?: ("character" | "location" | "event" | "faction" | "system" | "asset" | "lore")[] | undefined;
610
- status?: ("draft" | "pending" | "canon" | "non-canon" | "archived")[] | undefined;
611
- world?: string | undefined;
612
- importance?: ("major" | "minor" | "background")[] | undefined;
613
- tags?: string[] | undefined;
614
- } | undefined;
615
- limit?: number | undefined;
616
- }>;
441
+ }, z.core.$strip>;
617
442
  export type SearchVaultArgs = z.infer<typeof SearchVaultArgsSchema>;
618
443
  export interface VaultConfig {
619
444
  path: string;
@@ -667,126 +492,91 @@ export declare const StoreWorkflowArgsSchema: z.ZodObject<{
667
492
  name: z.ZodString;
668
493
  description: z.ZodOptional<z.ZodString>;
669
494
  workflow: z.ZodRecord<z.ZodString, z.ZodAny>;
670
- contextFields: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
495
+ contextFields: z.ZodOptional<z.ZodArray<z.ZodString>>;
671
496
  outputPath: z.ZodOptional<z.ZodString>;
672
- }, "strip", z.ZodTypeAny, {
673
- id: string;
674
- name: string;
675
- workflow: Record<string, any>;
676
- description?: string | undefined;
677
- contextFields?: string[] | undefined;
678
- outputPath?: string | undefined;
679
- }, {
680
- id: string;
681
- name: string;
682
- workflow: Record<string, any>;
683
- description?: string | undefined;
684
- contextFields?: string[] | undefined;
685
- outputPath?: string | undefined;
686
- }>;
497
+ }, z.core.$strip>;
687
498
  export type StoreWorkflowArgs = z.infer<typeof StoreWorkflowArgsSchema>;
688
499
  export declare const GenerateImageArgsSchema: z.ZodObject<{
689
500
  workflowId: z.ZodString;
690
501
  contextId: z.ZodString;
691
- contextType: z.ZodEnum<["character", "location"]>;
502
+ contextType: z.ZodEnum<{
503
+ character: "character";
504
+ location: "location";
505
+ }>;
692
506
  seed: z.ZodOptional<z.ZodNumber>;
693
507
  overrides: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
694
- }, "strip", z.ZodTypeAny, {
695
- workflowId: string;
696
- contextId: string;
697
- contextType: "character" | "location";
698
- seed?: number | undefined;
699
- overrides?: Record<string, any> | undefined;
700
- }, {
701
- workflowId: string;
702
- contextId: string;
703
- contextType: "character" | "location";
704
- seed?: number | undefined;
705
- overrides?: Record<string, any> | undefined;
706
- }>;
508
+ }, z.core.$strip>;
707
509
  export type GenerateImageArgs = z.infer<typeof GenerateImageArgsSchema>;
708
510
  export declare const StoreAssetArgsSchema: z.ZodObject<{
709
- assetType: z.ZodDefault<z.ZodEnum<["image", "audio", "video", "document"]>>;
511
+ assetType: z.ZodDefault<z.ZodEnum<{
512
+ image: "image";
513
+ audio: "audio";
514
+ video: "video";
515
+ document: "document";
516
+ }>>;
710
517
  filePath: z.ZodString;
711
- depicts: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
518
+ depicts: z.ZodOptional<z.ZodArray<z.ZodString>>;
712
519
  workflowId: z.ZodOptional<z.ZodString>;
713
520
  prompt: z.ZodOptional<z.ZodString>;
714
521
  parameters: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
715
- }, "strip", z.ZodTypeAny, {
716
- assetType: "image" | "audio" | "video" | "document";
717
- filePath: string;
718
- depicts?: string[] | undefined;
719
- prompt?: string | undefined;
720
- parameters?: Record<string, any> | undefined;
721
- workflowId?: string | undefined;
722
- }, {
723
- filePath: string;
724
- depicts?: string[] | undefined;
725
- prompt?: string | undefined;
726
- parameters?: Record<string, any> | undefined;
727
- workflowId?: string | undefined;
728
- assetType?: "image" | "audio" | "video" | "document" | undefined;
729
- }>;
522
+ }, z.core.$strip>;
730
523
  export type StoreAssetArgs = z.infer<typeof StoreAssetArgsSchema>;
731
524
  export declare const QueryAssetArgsSchema: z.ZodObject<{
732
525
  id: z.ZodString;
733
- }, "strip", z.ZodTypeAny, {
734
- id: string;
735
- }, {
736
- id: string;
737
- }>;
526
+ }, z.core.$strip>;
738
527
  export type QueryAssetArgs = z.infer<typeof QueryAssetArgsSchema>;
739
528
  export declare const ListAssetsArgsSchema: z.ZodObject<{
740
529
  depicts: z.ZodOptional<z.ZodString>;
741
- assetType: z.ZodOptional<z.ZodEnum<["image", "audio", "video", "document"]>>;
742
- status: z.ZodOptional<z.ZodEnum<["draft", "pending", "canon", "non-canon", "archived"]>>;
530
+ assetType: z.ZodOptional<z.ZodEnum<{
531
+ image: "image";
532
+ audio: "audio";
533
+ video: "video";
534
+ document: "document";
535
+ }>>;
536
+ status: z.ZodOptional<z.ZodEnum<{
537
+ draft: "draft";
538
+ pending: "pending";
539
+ canon: "canon";
540
+ "non-canon": "non-canon";
541
+ archived: "archived";
542
+ }>>;
743
543
  workflowId: z.ZodOptional<z.ZodString>;
744
544
  limit: z.ZodDefault<z.ZodNumber>;
745
- }, "strip", z.ZodTypeAny, {
746
- limit: number;
747
- status?: "draft" | "pending" | "canon" | "non-canon" | "archived" | undefined;
748
- depicts?: string | undefined;
749
- workflowId?: string | undefined;
750
- assetType?: "image" | "audio" | "video" | "document" | undefined;
751
- }, {
752
- status?: "draft" | "pending" | "canon" | "non-canon" | "archived" | undefined;
753
- depicts?: string | undefined;
754
- limit?: number | undefined;
755
- workflowId?: string | undefined;
756
- assetType?: "image" | "audio" | "video" | "document" | undefined;
757
- }>;
545
+ }, z.core.$strip>;
758
546
  export type ListAssetsArgs = z.infer<typeof ListAssetsArgsSchema>;
759
547
  export declare const GetCanonStatusArgsSchema: z.ZodObject<{
760
- status: z.ZodOptional<z.ZodEnum<["draft", "pending", "canon", "non-canon", "archived"]>>;
761
- type: z.ZodOptional<z.ZodEnum<["character", "location", "event", "faction", "lore", "asset"]>>;
762
- }, "strip", z.ZodTypeAny, {
763
- type?: "character" | "location" | "event" | "faction" | "asset" | "lore" | undefined;
764
- status?: "draft" | "pending" | "canon" | "non-canon" | "archived" | undefined;
765
- }, {
766
- type?: "character" | "location" | "event" | "faction" | "asset" | "lore" | undefined;
767
- status?: "draft" | "pending" | "canon" | "non-canon" | "archived" | undefined;
768
- }>;
548
+ status: z.ZodOptional<z.ZodEnum<{
549
+ draft: "draft";
550
+ pending: "pending";
551
+ canon: "canon";
552
+ "non-canon": "non-canon";
553
+ archived: "archived";
554
+ }>>;
555
+ type: z.ZodOptional<z.ZodEnum<{
556
+ character: "character";
557
+ location: "location";
558
+ event: "event";
559
+ faction: "faction";
560
+ asset: "asset";
561
+ lore: "lore";
562
+ }>>;
563
+ }, z.core.$strip>;
769
564
  export type GetCanonStatusArgs = z.infer<typeof GetCanonStatusArgsSchema>;
770
565
  export declare const SubmitForReviewArgsSchema: z.ZodObject<{
771
566
  id: z.ZodString;
772
567
  notes: z.ZodOptional<z.ZodString>;
773
- }, "strip", z.ZodTypeAny, {
774
- id: string;
775
- notes?: string | undefined;
776
- }, {
777
- id: string;
778
- notes?: string | undefined;
779
- }>;
568
+ }, z.core.$strip>;
780
569
  export type SubmitForReviewArgs = z.infer<typeof SubmitForReviewArgsSchema>;
781
570
  export declare const ValidateConsistencyArgsSchema: z.ZodObject<{
782
571
  id: z.ZodOptional<z.ZodString>;
783
- type: z.ZodOptional<z.ZodEnum<["character", "location", "event", "faction", "lore", "asset"]>>;
784
- }, "strip", z.ZodTypeAny, {
785
- type?: "character" | "location" | "event" | "faction" | "asset" | "lore" | undefined;
786
- id?: string | undefined;
787
- }, {
788
- type?: "character" | "location" | "event" | "faction" | "asset" | "lore" | undefined;
789
- id?: string | undefined;
790
- }>;
572
+ type: z.ZodOptional<z.ZodEnum<{
573
+ character: "character";
574
+ location: "location";
575
+ event: "event";
576
+ faction: "faction";
577
+ asset: "asset";
578
+ lore: "lore";
579
+ }>>;
580
+ }, z.core.$strip>;
791
581
  export type ValidateConsistencyArgs = z.infer<typeof ValidateConsistencyArgsSchema>;
792
582
  //# sourceMappingURL=index.d.ts.map