mcp-grampsweb 1.1.0 → 1.2.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.
@@ -0,0 +1,662 @@
1
+ /**
2
+ * Entity update tools
3
+ */
4
+ import { z } from "zod";
5
+ declare const updatePersonSchema: z.ZodObject<{
6
+ handle: z.ZodString;
7
+ gramps_id: z.ZodOptional<z.ZodString>;
8
+ primary_name: z.ZodOptional<z.ZodObject<{
9
+ _class: z.ZodOptional<z.ZodLiteral<"Name">>;
10
+ first_name: z.ZodOptional<z.ZodString>;
11
+ call_name: z.ZodOptional<z.ZodString>;
12
+ surname: z.ZodOptional<z.ZodString>;
13
+ surname_list: z.ZodOptional<z.ZodArray<z.ZodObject<{
14
+ _class: z.ZodOptional<z.ZodLiteral<"Surname">>;
15
+ surname: z.ZodString;
16
+ prefix: z.ZodOptional<z.ZodString>;
17
+ primary: z.ZodOptional<z.ZodBoolean>;
18
+ origintype: z.ZodOptional<z.ZodString>;
19
+ connector: z.ZodOptional<z.ZodString>;
20
+ }, "strip", z.ZodTypeAny, {
21
+ surname: string;
22
+ _class?: "Surname" | undefined;
23
+ prefix?: string | undefined;
24
+ primary?: boolean | undefined;
25
+ origintype?: string | undefined;
26
+ connector?: string | undefined;
27
+ }, {
28
+ surname: string;
29
+ _class?: "Surname" | undefined;
30
+ prefix?: string | undefined;
31
+ primary?: boolean | undefined;
32
+ origintype?: string | undefined;
33
+ connector?: string | undefined;
34
+ }>, "many">>;
35
+ suffix: z.ZodOptional<z.ZodString>;
36
+ title: z.ZodOptional<z.ZodString>;
37
+ type: z.ZodOptional<z.ZodString>;
38
+ primary: z.ZodOptional<z.ZodBoolean>;
39
+ }, "strip", z.ZodTypeAny, {
40
+ _class?: "Name" | undefined;
41
+ type?: string | undefined;
42
+ surname?: string | undefined;
43
+ primary?: boolean | undefined;
44
+ first_name?: string | undefined;
45
+ call_name?: string | undefined;
46
+ surname_list?: {
47
+ surname: string;
48
+ _class?: "Surname" | undefined;
49
+ prefix?: string | undefined;
50
+ primary?: boolean | undefined;
51
+ origintype?: string | undefined;
52
+ connector?: string | undefined;
53
+ }[] | undefined;
54
+ suffix?: string | undefined;
55
+ title?: string | undefined;
56
+ }, {
57
+ _class?: "Name" | undefined;
58
+ type?: string | undefined;
59
+ surname?: string | undefined;
60
+ primary?: boolean | undefined;
61
+ first_name?: string | undefined;
62
+ call_name?: string | undefined;
63
+ surname_list?: {
64
+ surname: string;
65
+ _class?: "Surname" | undefined;
66
+ prefix?: string | undefined;
67
+ primary?: boolean | undefined;
68
+ origintype?: string | undefined;
69
+ connector?: string | undefined;
70
+ }[] | undefined;
71
+ suffix?: string | undefined;
72
+ title?: string | undefined;
73
+ }>>;
74
+ alternate_names: z.ZodOptional<z.ZodArray<z.ZodObject<{
75
+ _class: z.ZodOptional<z.ZodLiteral<"Name">>;
76
+ first_name: z.ZodOptional<z.ZodString>;
77
+ call_name: z.ZodOptional<z.ZodString>;
78
+ surname: z.ZodOptional<z.ZodString>;
79
+ surname_list: z.ZodOptional<z.ZodArray<z.ZodObject<{
80
+ _class: z.ZodOptional<z.ZodLiteral<"Surname">>;
81
+ surname: z.ZodString;
82
+ prefix: z.ZodOptional<z.ZodString>;
83
+ primary: z.ZodOptional<z.ZodBoolean>;
84
+ origintype: z.ZodOptional<z.ZodString>;
85
+ connector: z.ZodOptional<z.ZodString>;
86
+ }, "strip", z.ZodTypeAny, {
87
+ surname: string;
88
+ _class?: "Surname" | undefined;
89
+ prefix?: string | undefined;
90
+ primary?: boolean | undefined;
91
+ origintype?: string | undefined;
92
+ connector?: string | undefined;
93
+ }, {
94
+ surname: string;
95
+ _class?: "Surname" | undefined;
96
+ prefix?: string | undefined;
97
+ primary?: boolean | undefined;
98
+ origintype?: string | undefined;
99
+ connector?: string | undefined;
100
+ }>, "many">>;
101
+ suffix: z.ZodOptional<z.ZodString>;
102
+ title: z.ZodOptional<z.ZodString>;
103
+ type: z.ZodOptional<z.ZodString>;
104
+ primary: z.ZodOptional<z.ZodBoolean>;
105
+ }, "strip", z.ZodTypeAny, {
106
+ _class?: "Name" | undefined;
107
+ type?: string | undefined;
108
+ surname?: string | undefined;
109
+ primary?: boolean | undefined;
110
+ first_name?: string | undefined;
111
+ call_name?: string | undefined;
112
+ surname_list?: {
113
+ surname: string;
114
+ _class?: "Surname" | undefined;
115
+ prefix?: string | undefined;
116
+ primary?: boolean | undefined;
117
+ origintype?: string | undefined;
118
+ connector?: string | undefined;
119
+ }[] | undefined;
120
+ suffix?: string | undefined;
121
+ title?: string | undefined;
122
+ }, {
123
+ _class?: "Name" | undefined;
124
+ type?: string | undefined;
125
+ surname?: string | undefined;
126
+ primary?: boolean | undefined;
127
+ first_name?: string | undefined;
128
+ call_name?: string | undefined;
129
+ surname_list?: {
130
+ surname: string;
131
+ _class?: "Surname" | undefined;
132
+ prefix?: string | undefined;
133
+ primary?: boolean | undefined;
134
+ origintype?: string | undefined;
135
+ connector?: string | undefined;
136
+ }[] | undefined;
137
+ suffix?: string | undefined;
138
+ title?: string | undefined;
139
+ }>, "many">>;
140
+ gender: z.ZodOptional<z.ZodEnum<["male", "female", "unknown"]>>;
141
+ event_ref_list: z.ZodOptional<z.ZodArray<z.ZodObject<{
142
+ _class: z.ZodOptional<z.ZodLiteral<"EventRef">>;
143
+ ref: z.ZodString;
144
+ role: z.ZodOptional<z.ZodString>;
145
+ }, "strip", z.ZodTypeAny, {
146
+ ref: string;
147
+ _class?: "EventRef" | undefined;
148
+ role?: string | undefined;
149
+ }, {
150
+ ref: string;
151
+ _class?: "EventRef" | undefined;
152
+ role?: string | undefined;
153
+ }>, "many">>;
154
+ add_event_ref: z.ZodOptional<z.ZodObject<{
155
+ _class: z.ZodOptional<z.ZodLiteral<"EventRef">>;
156
+ ref: z.ZodString;
157
+ role: z.ZodOptional<z.ZodString>;
158
+ }, "strip", z.ZodTypeAny, {
159
+ ref: string;
160
+ _class?: "EventRef" | undefined;
161
+ role?: string | undefined;
162
+ }, {
163
+ ref: string;
164
+ _class?: "EventRef" | undefined;
165
+ role?: string | undefined;
166
+ }>>;
167
+ family_list: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
168
+ parent_family_list: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
169
+ media_list: z.ZodOptional<z.ZodArray<z.ZodObject<{
170
+ _class: z.ZodOptional<z.ZodLiteral<"MediaRef">>;
171
+ ref: z.ZodString;
172
+ rect: z.ZodOptional<z.ZodArray<z.ZodNumber, "many">>;
173
+ }, "strip", z.ZodTypeAny, {
174
+ ref: string;
175
+ _class?: "MediaRef" | undefined;
176
+ rect?: number[] | undefined;
177
+ }, {
178
+ ref: string;
179
+ _class?: "MediaRef" | undefined;
180
+ rect?: number[] | undefined;
181
+ }>, "many">>;
182
+ citation_list: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
183
+ note_list: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
184
+ add_note: z.ZodOptional<z.ZodString>;
185
+ attribute_list: z.ZodOptional<z.ZodArray<z.ZodObject<{
186
+ _class: z.ZodOptional<z.ZodLiteral<"Attribute">>;
187
+ type: z.ZodOptional<z.ZodString>;
188
+ value: z.ZodOptional<z.ZodString>;
189
+ }, "strip", z.ZodTypeAny, {
190
+ value?: string | undefined;
191
+ _class?: "Attribute" | undefined;
192
+ type?: string | undefined;
193
+ }, {
194
+ value?: string | undefined;
195
+ _class?: "Attribute" | undefined;
196
+ type?: string | undefined;
197
+ }>, "many">>;
198
+ tag_list: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
199
+ private: z.ZodOptional<z.ZodBoolean>;
200
+ }, "strip", z.ZodTypeAny, {
201
+ handle: string;
202
+ gramps_id?: string | undefined;
203
+ primary_name?: {
204
+ _class?: "Name" | undefined;
205
+ type?: string | undefined;
206
+ surname?: string | undefined;
207
+ primary?: boolean | undefined;
208
+ first_name?: string | undefined;
209
+ call_name?: string | undefined;
210
+ surname_list?: {
211
+ surname: string;
212
+ _class?: "Surname" | undefined;
213
+ prefix?: string | undefined;
214
+ primary?: boolean | undefined;
215
+ origintype?: string | undefined;
216
+ connector?: string | undefined;
217
+ }[] | undefined;
218
+ suffix?: string | undefined;
219
+ title?: string | undefined;
220
+ } | undefined;
221
+ alternate_names?: {
222
+ _class?: "Name" | undefined;
223
+ type?: string | undefined;
224
+ surname?: string | undefined;
225
+ primary?: boolean | undefined;
226
+ first_name?: string | undefined;
227
+ call_name?: string | undefined;
228
+ surname_list?: {
229
+ surname: string;
230
+ _class?: "Surname" | undefined;
231
+ prefix?: string | undefined;
232
+ primary?: boolean | undefined;
233
+ origintype?: string | undefined;
234
+ connector?: string | undefined;
235
+ }[] | undefined;
236
+ suffix?: string | undefined;
237
+ title?: string | undefined;
238
+ }[] | undefined;
239
+ gender?: "male" | "female" | "unknown" | undefined;
240
+ event_ref_list?: {
241
+ ref: string;
242
+ _class?: "EventRef" | undefined;
243
+ role?: string | undefined;
244
+ }[] | undefined;
245
+ family_list?: string[] | undefined;
246
+ parent_family_list?: string[] | undefined;
247
+ media_list?: {
248
+ ref: string;
249
+ _class?: "MediaRef" | undefined;
250
+ rect?: number[] | undefined;
251
+ }[] | undefined;
252
+ citation_list?: string[] | undefined;
253
+ note_list?: string[] | undefined;
254
+ attribute_list?: {
255
+ value?: string | undefined;
256
+ _class?: "Attribute" | undefined;
257
+ type?: string | undefined;
258
+ }[] | undefined;
259
+ tag_list?: string[] | undefined;
260
+ private?: boolean | undefined;
261
+ add_event_ref?: {
262
+ ref: string;
263
+ _class?: "EventRef" | undefined;
264
+ role?: string | undefined;
265
+ } | undefined;
266
+ add_note?: string | undefined;
267
+ }, {
268
+ handle: string;
269
+ gramps_id?: string | undefined;
270
+ primary_name?: {
271
+ _class?: "Name" | undefined;
272
+ type?: string | undefined;
273
+ surname?: string | undefined;
274
+ primary?: boolean | undefined;
275
+ first_name?: string | undefined;
276
+ call_name?: string | undefined;
277
+ surname_list?: {
278
+ surname: string;
279
+ _class?: "Surname" | undefined;
280
+ prefix?: string | undefined;
281
+ primary?: boolean | undefined;
282
+ origintype?: string | undefined;
283
+ connector?: string | undefined;
284
+ }[] | undefined;
285
+ suffix?: string | undefined;
286
+ title?: string | undefined;
287
+ } | undefined;
288
+ alternate_names?: {
289
+ _class?: "Name" | undefined;
290
+ type?: string | undefined;
291
+ surname?: string | undefined;
292
+ primary?: boolean | undefined;
293
+ first_name?: string | undefined;
294
+ call_name?: string | undefined;
295
+ surname_list?: {
296
+ surname: string;
297
+ _class?: "Surname" | undefined;
298
+ prefix?: string | undefined;
299
+ primary?: boolean | undefined;
300
+ origintype?: string | undefined;
301
+ connector?: string | undefined;
302
+ }[] | undefined;
303
+ suffix?: string | undefined;
304
+ title?: string | undefined;
305
+ }[] | undefined;
306
+ gender?: "male" | "female" | "unknown" | undefined;
307
+ event_ref_list?: {
308
+ ref: string;
309
+ _class?: "EventRef" | undefined;
310
+ role?: string | undefined;
311
+ }[] | undefined;
312
+ family_list?: string[] | undefined;
313
+ parent_family_list?: string[] | undefined;
314
+ media_list?: {
315
+ ref: string;
316
+ _class?: "MediaRef" | undefined;
317
+ rect?: number[] | undefined;
318
+ }[] | undefined;
319
+ citation_list?: string[] | undefined;
320
+ note_list?: string[] | undefined;
321
+ attribute_list?: {
322
+ value?: string | undefined;
323
+ _class?: "Attribute" | undefined;
324
+ type?: string | undefined;
325
+ }[] | undefined;
326
+ tag_list?: string[] | undefined;
327
+ private?: boolean | undefined;
328
+ add_event_ref?: {
329
+ ref: string;
330
+ _class?: "EventRef" | undefined;
331
+ role?: string | undefined;
332
+ } | undefined;
333
+ add_note?: string | undefined;
334
+ }>;
335
+ declare const updateFamilySchema: z.ZodObject<{
336
+ handle: z.ZodString;
337
+ gramps_id: z.ZodOptional<z.ZodString>;
338
+ father_handle: z.ZodOptional<z.ZodNullable<z.ZodString>>;
339
+ mother_handle: z.ZodOptional<z.ZodNullable<z.ZodString>>;
340
+ child_ref_list: z.ZodOptional<z.ZodArray<z.ZodObject<{
341
+ _class: z.ZodOptional<z.ZodLiteral<"ChildRef">>;
342
+ ref: z.ZodString;
343
+ frel: z.ZodOptional<z.ZodString>;
344
+ mrel: z.ZodOptional<z.ZodString>;
345
+ }, "strip", z.ZodTypeAny, {
346
+ ref: string;
347
+ _class?: "ChildRef" | undefined;
348
+ frel?: string | undefined;
349
+ mrel?: string | undefined;
350
+ }, {
351
+ ref: string;
352
+ _class?: "ChildRef" | undefined;
353
+ frel?: string | undefined;
354
+ mrel?: string | undefined;
355
+ }>, "many">>;
356
+ add_child: z.ZodOptional<z.ZodObject<{
357
+ _class: z.ZodOptional<z.ZodLiteral<"ChildRef">>;
358
+ ref: z.ZodString;
359
+ frel: z.ZodOptional<z.ZodString>;
360
+ mrel: z.ZodOptional<z.ZodString>;
361
+ }, "strip", z.ZodTypeAny, {
362
+ ref: string;
363
+ _class?: "ChildRef" | undefined;
364
+ frel?: string | undefined;
365
+ mrel?: string | undefined;
366
+ }, {
367
+ ref: string;
368
+ _class?: "ChildRef" | undefined;
369
+ frel?: string | undefined;
370
+ mrel?: string | undefined;
371
+ }>>;
372
+ remove_child: z.ZodOptional<z.ZodString>;
373
+ type: z.ZodOptional<z.ZodString>;
374
+ event_ref_list: z.ZodOptional<z.ZodArray<z.ZodObject<{
375
+ _class: z.ZodOptional<z.ZodLiteral<"EventRef">>;
376
+ ref: z.ZodString;
377
+ role: z.ZodOptional<z.ZodString>;
378
+ }, "strip", z.ZodTypeAny, {
379
+ ref: string;
380
+ _class?: "EventRef" | undefined;
381
+ role?: string | undefined;
382
+ }, {
383
+ ref: string;
384
+ _class?: "EventRef" | undefined;
385
+ role?: string | undefined;
386
+ }>, "many">>;
387
+ add_event_ref: z.ZodOptional<z.ZodObject<{
388
+ _class: z.ZodOptional<z.ZodLiteral<"EventRef">>;
389
+ ref: z.ZodString;
390
+ role: z.ZodOptional<z.ZodString>;
391
+ }, "strip", z.ZodTypeAny, {
392
+ ref: string;
393
+ _class?: "EventRef" | undefined;
394
+ role?: string | undefined;
395
+ }, {
396
+ ref: string;
397
+ _class?: "EventRef" | undefined;
398
+ role?: string | undefined;
399
+ }>>;
400
+ media_list: z.ZodOptional<z.ZodArray<z.ZodObject<{
401
+ _class: z.ZodOptional<z.ZodLiteral<"MediaRef">>;
402
+ ref: z.ZodString;
403
+ rect: z.ZodOptional<z.ZodArray<z.ZodNumber, "many">>;
404
+ }, "strip", z.ZodTypeAny, {
405
+ ref: string;
406
+ _class?: "MediaRef" | undefined;
407
+ rect?: number[] | undefined;
408
+ }, {
409
+ ref: string;
410
+ _class?: "MediaRef" | undefined;
411
+ rect?: number[] | undefined;
412
+ }>, "many">>;
413
+ citation_list: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
414
+ note_list: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
415
+ attribute_list: z.ZodOptional<z.ZodArray<z.ZodObject<{
416
+ _class: z.ZodOptional<z.ZodLiteral<"Attribute">>;
417
+ type: z.ZodOptional<z.ZodString>;
418
+ value: z.ZodOptional<z.ZodString>;
419
+ }, "strip", z.ZodTypeAny, {
420
+ value?: string | undefined;
421
+ _class?: "Attribute" | undefined;
422
+ type?: string | undefined;
423
+ }, {
424
+ value?: string | undefined;
425
+ _class?: "Attribute" | undefined;
426
+ type?: string | undefined;
427
+ }>, "many">>;
428
+ tag_list: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
429
+ private: z.ZodOptional<z.ZodBoolean>;
430
+ }, "strip", z.ZodTypeAny, {
431
+ handle: string;
432
+ type?: string | undefined;
433
+ gramps_id?: string | undefined;
434
+ event_ref_list?: {
435
+ ref: string;
436
+ _class?: "EventRef" | undefined;
437
+ role?: string | undefined;
438
+ }[] | undefined;
439
+ media_list?: {
440
+ ref: string;
441
+ _class?: "MediaRef" | undefined;
442
+ rect?: number[] | undefined;
443
+ }[] | undefined;
444
+ citation_list?: string[] | undefined;
445
+ note_list?: string[] | undefined;
446
+ attribute_list?: {
447
+ value?: string | undefined;
448
+ _class?: "Attribute" | undefined;
449
+ type?: string | undefined;
450
+ }[] | undefined;
451
+ tag_list?: string[] | undefined;
452
+ private?: boolean | undefined;
453
+ father_handle?: string | null | undefined;
454
+ mother_handle?: string | null | undefined;
455
+ child_ref_list?: {
456
+ ref: string;
457
+ _class?: "ChildRef" | undefined;
458
+ frel?: string | undefined;
459
+ mrel?: string | undefined;
460
+ }[] | undefined;
461
+ add_event_ref?: {
462
+ ref: string;
463
+ _class?: "EventRef" | undefined;
464
+ role?: string | undefined;
465
+ } | undefined;
466
+ add_child?: {
467
+ ref: string;
468
+ _class?: "ChildRef" | undefined;
469
+ frel?: string | undefined;
470
+ mrel?: string | undefined;
471
+ } | undefined;
472
+ remove_child?: string | undefined;
473
+ }, {
474
+ handle: string;
475
+ type?: string | undefined;
476
+ gramps_id?: string | undefined;
477
+ event_ref_list?: {
478
+ ref: string;
479
+ _class?: "EventRef" | undefined;
480
+ role?: string | undefined;
481
+ }[] | undefined;
482
+ media_list?: {
483
+ ref: string;
484
+ _class?: "MediaRef" | undefined;
485
+ rect?: number[] | undefined;
486
+ }[] | undefined;
487
+ citation_list?: string[] | undefined;
488
+ note_list?: string[] | undefined;
489
+ attribute_list?: {
490
+ value?: string | undefined;
491
+ _class?: "Attribute" | undefined;
492
+ type?: string | undefined;
493
+ }[] | undefined;
494
+ tag_list?: string[] | undefined;
495
+ private?: boolean | undefined;
496
+ father_handle?: string | null | undefined;
497
+ mother_handle?: string | null | undefined;
498
+ child_ref_list?: {
499
+ ref: string;
500
+ _class?: "ChildRef" | undefined;
501
+ frel?: string | undefined;
502
+ mrel?: string | undefined;
503
+ }[] | undefined;
504
+ add_event_ref?: {
505
+ ref: string;
506
+ _class?: "EventRef" | undefined;
507
+ role?: string | undefined;
508
+ } | undefined;
509
+ add_child?: {
510
+ ref: string;
511
+ _class?: "ChildRef" | undefined;
512
+ frel?: string | undefined;
513
+ mrel?: string | undefined;
514
+ } | undefined;
515
+ remove_child?: string | undefined;
516
+ }>;
517
+ /**
518
+ * Update an existing person
519
+ */
520
+ export declare function grampsUpdatePerson(params: z.infer<typeof updatePersonSchema>): Promise<string>;
521
+ /**
522
+ * Update an existing family
523
+ */
524
+ export declare function grampsUpdateFamily(params: z.infer<typeof updateFamilySchema>): Promise<string>;
525
+ export declare const updateTools: {
526
+ gramps_update_person: {
527
+ name: string;
528
+ description: string;
529
+ inputSchema: {
530
+ type: "object";
531
+ properties: {
532
+ handle: {
533
+ type: string;
534
+ description: string;
535
+ };
536
+ primary_name: {
537
+ type: string;
538
+ description: string;
539
+ properties: {
540
+ first_name: {
541
+ type: string;
542
+ };
543
+ surname: {
544
+ type: string;
545
+ };
546
+ call_name: {
547
+ type: string;
548
+ description: string;
549
+ };
550
+ suffix: {
551
+ type: string;
552
+ };
553
+ title: {
554
+ type: string;
555
+ };
556
+ };
557
+ };
558
+ gender: {
559
+ type: string;
560
+ enum: string[];
561
+ description: string;
562
+ };
563
+ add_event_ref: {
564
+ type: string;
565
+ description: string;
566
+ properties: {
567
+ ref: {
568
+ type: string;
569
+ description: string;
570
+ };
571
+ role: {
572
+ type: string;
573
+ description: string;
574
+ };
575
+ };
576
+ required: string[];
577
+ };
578
+ add_note: {
579
+ type: string;
580
+ description: string;
581
+ };
582
+ private: {
583
+ type: string;
584
+ description: string;
585
+ };
586
+ };
587
+ required: string[];
588
+ };
589
+ handler: typeof grampsUpdatePerson;
590
+ };
591
+ gramps_update_family: {
592
+ name: string;
593
+ description: string;
594
+ inputSchema: {
595
+ type: "object";
596
+ properties: {
597
+ handle: {
598
+ type: string;
599
+ description: string;
600
+ };
601
+ father_handle: {
602
+ type: string[];
603
+ description: string;
604
+ };
605
+ mother_handle: {
606
+ type: string[];
607
+ description: string;
608
+ };
609
+ add_child: {
610
+ type: string;
611
+ description: string;
612
+ properties: {
613
+ ref: {
614
+ type: string;
615
+ description: string;
616
+ };
617
+ frel: {
618
+ type: string;
619
+ description: string;
620
+ };
621
+ mrel: {
622
+ type: string;
623
+ description: string;
624
+ };
625
+ };
626
+ required: string[];
627
+ };
628
+ remove_child: {
629
+ type: string;
630
+ description: string;
631
+ };
632
+ type: {
633
+ type: string;
634
+ description: string;
635
+ };
636
+ add_event_ref: {
637
+ type: string;
638
+ description: string;
639
+ properties: {
640
+ ref: {
641
+ type: string;
642
+ description: string;
643
+ };
644
+ role: {
645
+ type: string;
646
+ description: string;
647
+ };
648
+ };
649
+ required: string[];
650
+ };
651
+ private: {
652
+ type: string;
653
+ description: string;
654
+ };
655
+ };
656
+ required: string[];
657
+ };
658
+ handler: typeof grampsUpdateFamily;
659
+ };
660
+ };
661
+ export {};
662
+ //# sourceMappingURL=update.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"update.d.ts","sourceRoot":"","sources":["../../src/tools/update.ts"],"names":[],"mappings":"AAAA;;GAEG;AAEH,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAexB,QAAA,MAAM,kBAAkB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAiBtB,CAAC;AAGH,QAAA,MAAM,kBAAkB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAiBtB,CAAC;AAeH;;GAEG;AACH,wBAAsB,kBAAkB,CACtC,MAAM,EAAE,CAAC,CAAC,KAAK,CAAC,OAAO,kBAAkB,CAAC,GACzC,OAAO,CAAC,MAAM,CAAC,CAuHjB;AAED;;GAEG;AACH,wBAAsB,kBAAkB,CACtC,MAAM,EAAE,CAAC,CAAC,KAAK,CAAC,OAAO,kBAAkB,CAAC,GACzC,OAAO,CAAC,MAAM,CAAC,CAwHjB;AAGD,eAAO,MAAM,WAAW;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAkHvB,CAAC"}