@treeviz/gedcom-parser 2.0.0 → 2.0.3

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.
Files changed (257) hide show
  1. package/dist/classes/common.d.ts +118 -0
  2. package/dist/classes/common.d.ts.map +1 -0
  3. package/dist/classes/date.d.ts +27 -0
  4. package/dist/classes/date.d.ts.map +1 -0
  5. package/dist/classes/fam.d.ts +19 -0
  6. package/dist/classes/fam.d.ts.map +1 -0
  7. package/dist/classes/fams.d.ts +16 -0
  8. package/dist/classes/fams.d.ts.map +1 -0
  9. package/dist/classes/gedcom.d.ts +148 -0
  10. package/dist/classes/gedcom.d.ts.map +1 -0
  11. package/dist/classes/index.d.ts +28 -2
  12. package/dist/classes/index.d.ts.map +1 -0
  13. package/dist/classes/index.js +7 -10
  14. package/dist/classes/indi.d.ts +351 -0
  15. package/dist/classes/indi.d.ts.map +1 -0
  16. package/dist/classes/indis.d.ts +55 -0
  17. package/dist/classes/indis.d.ts.map +1 -0
  18. package/dist/classes/list.d.ts +55 -0
  19. package/dist/classes/list.d.ts.map +1 -0
  20. package/dist/classes/name.d.ts +20 -0
  21. package/dist/classes/name.d.ts.map +1 -0
  22. package/dist/classes/note.d.ts +12 -0
  23. package/dist/classes/note.d.ts.map +1 -0
  24. package/dist/classes/obje.d.ts +12 -0
  25. package/dist/classes/obje.d.ts.map +1 -0
  26. package/dist/classes/objes.d.ts +8 -0
  27. package/dist/classes/objes.d.ts.map +1 -0
  28. package/dist/classes/repo.d.ts +11 -0
  29. package/dist/classes/repo.d.ts.map +1 -0
  30. package/dist/classes/repos.d.ts +8 -0
  31. package/dist/classes/repos.d.ts.map +1 -0
  32. package/dist/classes/sour.d.ts +11 -0
  33. package/dist/classes/sour.d.ts.map +1 -0
  34. package/dist/classes/sours.d.ts +8 -0
  35. package/dist/classes/sours.d.ts.map +1 -0
  36. package/dist/classes/subm.d.ts +10 -0
  37. package/dist/classes/subm.d.ts.map +1 -0
  38. package/dist/classes/subms.d.ts +8 -0
  39. package/dist/classes/subms.d.ts.map +1 -0
  40. package/dist/cli/commands/convert.d.ts +3 -0
  41. package/dist/cli/commands/convert.d.ts.map +1 -0
  42. package/dist/cli/commands/extract.d.ts +3 -0
  43. package/dist/cli/commands/extract.d.ts.map +1 -0
  44. package/dist/cli/commands/find.d.ts +28 -0
  45. package/dist/cli/commands/find.d.ts.map +1 -0
  46. package/dist/cli/commands/get.d.ts +22 -0
  47. package/dist/cli/commands/get.d.ts.map +1 -0
  48. package/dist/cli/commands/info.d.ts +3 -0
  49. package/dist/cli/commands/info.d.ts.map +1 -0
  50. package/dist/cli/commands/merge.d.ts +3 -0
  51. package/dist/cli/commands/merge.d.ts.map +1 -0
  52. package/dist/cli/commands/open.d.ts +3 -0
  53. package/dist/cli/commands/open.d.ts.map +1 -0
  54. package/dist/cli/commands/relatives.d.ts +3 -0
  55. package/dist/cli/commands/relatives.d.ts.map +1 -0
  56. package/dist/cli/commands/select.d.ts +13 -0
  57. package/dist/cli/commands/select.d.ts.map +1 -0
  58. package/dist/cli/commands/show.d.ts +9 -0
  59. package/dist/cli/commands/show.d.ts.map +1 -0
  60. package/dist/cli/commands/stats.d.ts +8 -0
  61. package/dist/cli/commands/stats.d.ts.map +1 -0
  62. package/dist/cli/commands/validate.d.ts +3 -0
  63. package/dist/cli/commands/validate.d.ts.map +1 -0
  64. package/dist/cli/index.d.ts +2 -0
  65. package/dist/cli/index.d.ts.map +1 -0
  66. package/dist/cli/index.js +254 -106
  67. package/dist/cli/repl.d.ts +17 -0
  68. package/dist/cli/repl.d.ts.map +1 -0
  69. package/dist/cli/utils/formatters.d.ts +71 -0
  70. package/dist/cli/utils/formatters.d.ts.map +1 -0
  71. package/dist/cli/utils/helpers.d.ts +21 -0
  72. package/dist/cli/utils/helpers.d.ts.map +1 -0
  73. package/dist/constants/constants.d.ts +14 -0
  74. package/dist/constants/constants.d.ts.map +1 -0
  75. package/dist/constants/filters.d.ts +18 -0
  76. package/dist/constants/filters.d.ts.map +1 -0
  77. package/dist/constants/index.d.ts +4 -49
  78. package/dist/constants/index.d.ts.map +1 -0
  79. package/dist/constants/index.js +6 -9
  80. package/dist/constants/orders.d.ts +17 -0
  81. package/dist/constants/orders.d.ts.map +1 -0
  82. package/dist/factories/cache-factory.d.ts +30 -0
  83. package/dist/factories/cache-factory.d.ts.map +1 -0
  84. package/dist/factories/date-locale-factory.d.ts +30 -0
  85. package/dist/factories/date-locale-factory.d.ts.map +1 -0
  86. package/dist/factories/i18n-factory.d.ts +40 -0
  87. package/dist/factories/i18n-factory.d.ts.map +1 -0
  88. package/dist/factories/index.d.ts +13 -202
  89. package/dist/factories/index.d.ts.map +1 -0
  90. package/dist/factories/index.js +6 -9
  91. package/dist/factories/kinship-factory.d.ts +38 -0
  92. package/dist/factories/kinship-factory.d.ts.map +1 -0
  93. package/dist/factories/place-parser-provider.d.ts +32 -0
  94. package/dist/factories/place-parser-provider.d.ts.map +1 -0
  95. package/dist/factories/place-translator-provider.d.ts +32 -0
  96. package/dist/factories/place-translator-provider.d.ts.map +1 -0
  97. package/dist/index.d.ts +28 -9
  98. package/dist/index.d.ts.map +1 -0
  99. package/dist/index.js +7 -10
  100. package/dist/interfaces/common.d.ts +43 -0
  101. package/dist/interfaces/common.d.ts.map +1 -0
  102. package/dist/interfaces/fam.d.ts +11 -0
  103. package/dist/interfaces/fam.d.ts.map +1 -0
  104. package/dist/interfaces/fams.d.ts +9 -0
  105. package/dist/interfaces/fams.d.ts.map +1 -0
  106. package/dist/interfaces/gedcom.d.ts +30 -0
  107. package/dist/interfaces/gedcom.d.ts.map +1 -0
  108. package/dist/interfaces/index.d.ts +12 -2
  109. package/dist/interfaces/index.d.ts.map +1 -0
  110. package/dist/interfaces/indi.d.ts +114 -0
  111. package/dist/interfaces/indi.d.ts.map +1 -0
  112. package/dist/interfaces/indis.d.ts +31 -0
  113. package/dist/interfaces/indis.d.ts.map +1 -0
  114. package/dist/interfaces/list.d.ts +52 -0
  115. package/dist/interfaces/list.d.ts.map +1 -0
  116. package/dist/interfaces/obje.d.ts +7 -0
  117. package/dist/interfaces/obje.d.ts.map +1 -0
  118. package/dist/interfaces/repo.d.ts +7 -0
  119. package/dist/interfaces/repo.d.ts.map +1 -0
  120. package/dist/interfaces/sour.d.ts +7 -0
  121. package/dist/interfaces/sour.d.ts.map +1 -0
  122. package/dist/interfaces/subm.d.ts +6 -0
  123. package/dist/interfaces/subm.d.ts.map +1 -0
  124. package/dist/kinship-translator/index.d.ts +11 -146
  125. package/dist/kinship-translator/index.d.ts.map +1 -0
  126. package/dist/kinship-translator/index.js +6 -9
  127. package/dist/kinship-translator/kinship-translator.basic.d.ts +30 -0
  128. package/dist/kinship-translator/kinship-translator.basic.d.ts.map +1 -0
  129. package/dist/kinship-translator/kinship-translator.d.ts +26 -0
  130. package/dist/kinship-translator/kinship-translator.d.ts.map +1 -0
  131. package/dist/kinship-translator/kinship-translator.de.d.ts +18 -0
  132. package/dist/kinship-translator/kinship-translator.de.d.ts.map +1 -0
  133. package/dist/kinship-translator/kinship-translator.en.d.ts +18 -0
  134. package/dist/kinship-translator/kinship-translator.en.d.ts.map +1 -0
  135. package/dist/kinship-translator/kinship-translator.es.d.ts +18 -0
  136. package/dist/kinship-translator/kinship-translator.es.d.ts.map +1 -0
  137. package/dist/kinship-translator/kinship-translator.fr.d.ts +18 -0
  138. package/dist/kinship-translator/kinship-translator.fr.d.ts.map +1 -0
  139. package/dist/kinship-translator/kinship-translator.hu.d.ts +19 -0
  140. package/dist/kinship-translator/kinship-translator.hu.d.ts.map +1 -0
  141. package/dist/kinship-translator/kinship-translator.interface.d.ts +19 -0
  142. package/dist/kinship-translator/kinship-translator.interface.d.ts.map +1 -0
  143. package/dist/kinship-translator/patterns.de.d.ts +2 -0
  144. package/dist/kinship-translator/patterns.de.d.ts.map +1 -0
  145. package/dist/kinship-translator/patterns.en.d.ts +2 -0
  146. package/dist/kinship-translator/patterns.en.d.ts.map +1 -0
  147. package/dist/kinship-translator/patterns.es.d.ts +2 -0
  148. package/dist/kinship-translator/patterns.es.d.ts.map +1 -0
  149. package/dist/kinship-translator/patterns.fr.d.ts +2 -0
  150. package/dist/kinship-translator/patterns.fr.d.ts.map +1 -0
  151. package/dist/kinship-translator/patterns.hu.d.ts +6 -0
  152. package/dist/kinship-translator/patterns.hu.d.ts.map +1 -0
  153. package/dist/kinship-translator/translators.d.ts +6 -0
  154. package/dist/kinship-translator/translators.d.ts.map +1 -0
  155. package/dist/kinship-translator/types.d.ts +9 -0
  156. package/dist/kinship-translator/types.d.ts.map +1 -0
  157. package/dist/structures/address.d.ts +14 -0
  158. package/dist/structures/address.d.ts.map +1 -0
  159. package/dist/structures/association.d.ts +13 -0
  160. package/dist/structures/association.d.ts.map +1 -0
  161. package/dist/structures/change-date.d.ts +8 -0
  162. package/dist/structures/change-date.d.ts.map +1 -0
  163. package/dist/structures/creation-date.d.ts +7 -0
  164. package/dist/structures/creation-date.d.ts.map +1 -0
  165. package/dist/structures/date.d.ts +9 -0
  166. package/dist/structures/date.d.ts.map +1 -0
  167. package/dist/structures/event-detail-structure.d.ts +25 -0
  168. package/dist/structures/event-detail-structure.d.ts.map +1 -0
  169. package/dist/structures/family.d.ts +34 -0
  170. package/dist/structures/family.d.ts.map +1 -0
  171. package/dist/structures/gedcom.d.ts +59 -0
  172. package/dist/structures/gedcom.d.ts.map +1 -0
  173. package/dist/structures/index.d.ts +27 -25
  174. package/dist/structures/index.d.ts.map +1 -0
  175. package/dist/structures/individual-event-detail-structure.d.ts +9 -0
  176. package/dist/structures/individual-event-detail-structure.d.ts.map +1 -0
  177. package/dist/structures/individual-event-structure.d.ts +83 -0
  178. package/dist/structures/individual-event-structure.d.ts.map +1 -0
  179. package/dist/structures/individual.d.ts +40 -0
  180. package/dist/structures/individual.d.ts.map +1 -0
  181. package/dist/structures/lds-ordinance-detail.d.ts +17 -0
  182. package/dist/structures/lds-ordinance-detail.d.ts.map +1 -0
  183. package/dist/structures/lds-spouse-sealing.d.ts +7 -0
  184. package/dist/structures/lds-spouse-sealing.d.ts.map +1 -0
  185. package/dist/structures/marriage-date.d.ts +11 -0
  186. package/dist/structures/marriage-date.d.ts.map +1 -0
  187. package/dist/structures/multimedia-link.d.ts +16 -0
  188. package/dist/structures/multimedia-link.d.ts.map +1 -0
  189. package/dist/structures/non-event.d.ts +12 -0
  190. package/dist/structures/non-event.d.ts.map +1 -0
  191. package/dist/structures/note.d.ts +16 -0
  192. package/dist/structures/note.d.ts.map +1 -0
  193. package/dist/structures/personal-name-pieces.d.ts +11 -0
  194. package/dist/structures/personal-name-pieces.d.ts.map +1 -0
  195. package/dist/structures/personal-name.d.ts +16 -0
  196. package/dist/structures/personal-name.d.ts.map +1 -0
  197. package/dist/structures/place.d.ts +20 -0
  198. package/dist/structures/place.d.ts.map +1 -0
  199. package/dist/structures/repository.d.ts +6 -0
  200. package/dist/structures/repository.d.ts.map +1 -0
  201. package/dist/structures/source-citation.d.ts +27 -0
  202. package/dist/structures/source-citation.d.ts.map +1 -0
  203. package/dist/structures/source-repository-citation.d.ts +13 -0
  204. package/dist/structures/source-repository-citation.d.ts.map +1 -0
  205. package/dist/structures/source.d.ts +28 -0
  206. package/dist/structures/source.d.ts.map +1 -0
  207. package/dist/types/ancestry-media.d.ts +65 -0
  208. package/dist/types/ancestry-media.d.ts.map +1 -0
  209. package/dist/types/index.d.ts +8 -69
  210. package/dist/types/index.d.ts.map +1 -0
  211. package/dist/types/settings.d.ts +12 -0
  212. package/dist/types/settings.d.ts.map +1 -0
  213. package/dist/types/types.d.ts +229 -0
  214. package/dist/types/types.d.ts.map +1 -0
  215. package/dist/utils/cache.d.ts +26 -0
  216. package/dist/utils/cache.d.ts.map +1 -0
  217. package/dist/utils/common-creator.d.ts +13 -0
  218. package/dist/utils/common-creator.d.ts.map +1 -0
  219. package/dist/utils/date-formatter.d.ts +35 -0
  220. package/dist/utils/date-formatter.d.ts.map +1 -0
  221. package/dist/utils/get-all-prop.d.ts +4 -0
  222. package/dist/utils/get-all-prop.d.ts.map +1 -0
  223. package/dist/utils/get-family-with.d.ts +5 -0
  224. package/dist/utils/get-family-with.d.ts.map +1 -0
  225. package/dist/utils/get-places.d.ts +21 -0
  226. package/dist/utils/get-places.d.ts.map +1 -0
  227. package/dist/utils/get-product-details.d.ts +4 -0
  228. package/dist/utils/get-product-details.d.ts.map +1 -0
  229. package/dist/utils/get-raw-size.d.ts +2 -0
  230. package/dist/utils/get-raw-size.d.ts.map +1 -0
  231. package/dist/utils/index.d.ts +19 -19
  232. package/dist/utils/index.d.ts.map +1 -0
  233. package/dist/utils/index.js +7 -10
  234. package/dist/utils/logger.d.ts +3 -0
  235. package/dist/utils/logger.d.ts.map +1 -0
  236. package/dist/utils/media-utils.d.ts +13 -0
  237. package/dist/utils/media-utils.d.ts.map +1 -0
  238. package/dist/utils/name-formatter.d.ts +10 -0
  239. package/dist/utils/name-formatter.d.ts.map +1 -0
  240. package/dist/utils/nested-group.d.ts +4 -0
  241. package/dist/utils/nested-group.d.ts.map +1 -0
  242. package/dist/utils/ordinalize.d.ts +3 -0
  243. package/dist/utils/ordinalize.d.ts.map +1 -0
  244. package/dist/utils/parser.d.ts +22 -0
  245. package/dist/utils/parser.d.ts.map +1 -0
  246. package/dist/utils/place-parser.d.ts +16 -0
  247. package/dist/utils/place-parser.d.ts.map +1 -0
  248. package/dist/utils/place-translator.d.ts +6 -0
  249. package/dist/utils/place-translator.d.ts.map +1 -0
  250. package/dist/utils/place-types.d.ts +27 -0
  251. package/dist/utils/place-types.d.ts.map +1 -0
  252. package/dist/utils/range.d.ts +19 -0
  253. package/dist/utils/range.d.ts.map +1 -0
  254. package/package.json +12 -2
  255. package/dist/index-CzYZg44D.d.ts +0 -1705
  256. package/dist/place-parser-CJ3EbFmb.d.ts +0 -40
  257. package/dist/place-translator-Ci5rEY6p.d.ts +0 -90
@@ -0,0 +1 @@
1
+ {"version":3,"file":"address.d.ts","sourceRoot":"","sources":["../../src/structures/address.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAC,MAAM,EAAC,MAAM,mBAAmB,CAAC;AAE9C,UAAU,iBAAkB,SAAQ,MAAM;IACzC,IAAI,CAAC,EAAE,MAAM,GAAG;QACf,IAAI,CAAC,EAAE,MAAM,CAAC;QACd,IAAI,CAAC,EAAE,MAAM,CAAC;QACd,IAAI,CAAC,EAAE,MAAM,CAAC;QACd,IAAI,CAAC,EAAE,MAAM,CAAC;QACd,IAAI,CAAC,EAAE,MAAM,CAAC;QACd,IAAI,CAAC,EAAE,MAAM,CAAC;QACd,IAAI,CAAC,EAAE,MAAM,CAAC;KACd,CAAC;CACF;AAED,eAAe,iBAAiB,CAAC"}
@@ -0,0 +1,13 @@
1
+ import type { Common } from "../classes/common";
2
+ import type INoteStructure from "./note";
3
+ import type ISourceCitationStructure from "./source-citation";
4
+ interface IAssociationStructure extends Common, INoteStructure, ISourceCitationStructure {
5
+ ASSO?: Common & {
6
+ PHRASE?: Common;
7
+ ROLE?: Common & {
8
+ PHRASE?: Common;
9
+ };
10
+ };
11
+ }
12
+ export default IAssociationStructure;
13
+ //# sourceMappingURL=association.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"association.d.ts","sourceRoot":"","sources":["../../src/structures/association.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAC,MAAM,EAAC,MAAM,mBAAmB,CAAC;AAE9C,OAAO,KAAK,cAAc,MAAM,QAAQ,CAAC;AACzC,OAAO,KAAK,wBAAwB,MAAM,mBAAmB,CAAC;AAE9D,UAAU,qBACT,SAAQ,MAAM,EAAE,cAAc,EAAE,wBAAwB;IACxD,IAAI,CAAC,EAAE,MAAM,GAAG;QACf,MAAM,CAAC,EAAE,MAAM,CAAC;QAChB,IAAI,CAAC,EAAE,MAAM,GAAG;YACf,MAAM,CAAC,EAAE,MAAM,CAAC;SAChB,CAAC;KACF,CAAC;CACF;AAED,eAAe,qBAAqB,CAAC"}
@@ -0,0 +1,8 @@
1
+ import type { Common } from "../classes/common";
2
+ import type IDateStructure from "./date";
3
+ import type INoteStructure from "./note";
4
+ interface IChangeDateStructure extends Common, INoteStructure {
5
+ CHAN?: Common & IDateStructure;
6
+ }
7
+ export default IChangeDateStructure;
8
+ //# sourceMappingURL=change-date.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"change-date.d.ts","sourceRoot":"","sources":["../../src/structures/change-date.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAC,MAAM,EAAC,MAAM,mBAAmB,CAAC;AAE9C,OAAO,KAAK,cAAc,MAAM,QAAQ,CAAC;AACzC,OAAO,KAAK,cAAc,MAAM,QAAQ,CAAC;AAEzC,UAAU,oBAAqB,SAAQ,MAAM,EAAE,cAAc;IAC5D,IAAI,CAAC,EAAE,MAAM,GAAG,cAAc,CAAC;CAC/B;AAED,eAAe,oBAAoB,CAAC"}
@@ -0,0 +1,7 @@
1
+ import type { Common } from "../classes/common";
2
+ import type IDateStructure from "./date";
3
+ interface ICreationDateStructure extends Common {
4
+ CREA?: Common & IDateStructure;
5
+ }
6
+ export default ICreationDateStructure;
7
+ //# sourceMappingURL=creation-date.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"creation-date.d.ts","sourceRoot":"","sources":["../../src/structures/creation-date.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAC,MAAM,EAAC,MAAM,mBAAmB,CAAC;AAE9C,OAAO,KAAK,cAAc,MAAM,QAAQ,CAAC;AAEzC,UAAU,sBAAuB,SAAQ,MAAM;IAC9C,IAAI,CAAC,EAAE,MAAM,GAAG,cAAc,CAAC;CAC/B;AAED,eAAe,sBAAsB,CAAC"}
@@ -0,0 +1,9 @@
1
+ import type { Common } from "../classes/common";
2
+ import type { CommonDate } from "../classes/date";
3
+ interface IDateStructure extends Common {
4
+ DATE?: CommonDate & {
5
+ TIME?: Common;
6
+ };
7
+ }
8
+ export default IDateStructure;
9
+ //# sourceMappingURL=date.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"date.d.ts","sourceRoot":"","sources":["../../src/structures/date.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAC,MAAM,EAAC,MAAM,mBAAmB,CAAC;AAC9C,OAAO,KAAK,EAAC,UAAU,EAAC,MAAM,iBAAiB,CAAC;AAEhD,UAAU,cAAe,SAAQ,MAAM;IACtC,IAAI,CAAC,EAAE,UAAU,GAAG;QACnB,IAAI,CAAC,EAAE,MAAM,CAAC;KACd,CAAC;CACF;AAED,eAAe,cAAc,CAAC"}
@@ -0,0 +1,25 @@
1
+ import type { Common } from "../classes/common";
2
+ import type IAddressStructure from "./address";
3
+ import type IAssociationStructure from "./association";
4
+ import type IDateStructure from "./date";
5
+ import type IMultimediaLinkStructure from "./multimedia-link";
6
+ import type INoteStructure from "./note";
7
+ import type IPlaceStructure from "./place";
8
+ import type ISourceCitationStructure from "./source-citation";
9
+ interface IEventDetailStructure extends IDateStructure, IPlaceStructure, IAddressStructure, IAssociationStructure, INoteStructure, ISourceCitationStructure, IMultimediaLinkStructure {
10
+ PHON?: Common;
11
+ EMAIL?: Common;
12
+ FAX?: Common;
13
+ WWW?: Common;
14
+ AGNC?: Common;
15
+ RELI?: Common;
16
+ CAUS?: Common;
17
+ RESN?: Common;
18
+ SDATE?: Common & {
19
+ TIME?: Common;
20
+ PHRASE?: Common;
21
+ };
22
+ UID?: Common;
23
+ }
24
+ export default IEventDetailStructure;
25
+ //# sourceMappingURL=event-detail-structure.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"event-detail-structure.d.ts","sourceRoot":"","sources":["../../src/structures/event-detail-structure.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,MAAM,EAAE,MAAM,mBAAmB,CAAC;AAEhD,OAAO,KAAK,iBAAiB,MAAM,WAAW,CAAC;AAC/C,OAAO,KAAK,qBAAqB,MAAM,eAAe,CAAC;AACvD,OAAO,KAAK,cAAc,MAAM,QAAQ,CAAC;AACzC,OAAO,KAAK,wBAAwB,MAAM,mBAAmB,CAAC;AAC9D,OAAO,KAAK,cAAc,MAAM,QAAQ,CAAC;AACzC,OAAO,KAAK,eAAe,MAAM,SAAS,CAAC;AAC3C,OAAO,KAAK,wBAAwB,MAAM,mBAAmB,CAAC;AAE9D,UAAU,qBACT,SACC,cAAc,EACd,eAAe,EACf,iBAAiB,EACjB,qBAAqB,EACrB,cAAc,EACd,wBAAwB,EACxB,wBAAwB;IACzB,IAAI,CAAC,EAAE,MAAM,CAAC;IACd,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,GAAG,CAAC,EAAE,MAAM,CAAC;IACb,GAAG,CAAC,EAAE,MAAM,CAAC;IACb,IAAI,CAAC,EAAE,MAAM,CAAC;IACd,IAAI,CAAC,EAAE,MAAM,CAAC;IACd,IAAI,CAAC,EAAE,MAAM,CAAC;IACd,IAAI,CAAC,EAAE,MAAM,CAAC;IACd,KAAK,CAAC,EAAE,MAAM,GAAG;QAChB,IAAI,CAAC,EAAE,MAAM,CAAC;QACd,MAAM,CAAC,EAAE,MAAM,CAAC;KAChB,CAAC;IACF,GAAG,CAAC,EAAE,MAAM,CAAC;CACb;AAED,eAAe,qBAAqB,CAAC"}
@@ -0,0 +1,34 @@
1
+ import type { Common } from "../classes/common";
2
+ import type IAssociationStructure from "./association";
3
+ import type IChangeDateStructure from "./change-date";
4
+ import type ICreationDateStructure from "./creation-date";
5
+ import type ILdsSpouseSealingStructure from "./lds-spouse-sealing";
6
+ import type IMarriageDateStructure from "./marriage-date";
7
+ import type IMultimediaLinkStructure from "./multimedia-link";
8
+ import type INonEventStructure from "./non-event";
9
+ import type INoteStructure from "./note";
10
+ import type ISourceCitationStructure from "./source-citation";
11
+ interface IFamilyStructure extends Common, IMarriageDateStructure, IChangeDateStructure, ICreationDateStructure, IAssociationStructure, ILdsSpouseSealingStructure, IMultimediaLinkStructure, INonEventStructure, INoteStructure, ISourceCitationStructure {
12
+ RESN?: Common;
13
+ HUSB?: Common & {
14
+ PHRASE?: Common;
15
+ };
16
+ WIFE?: Common & {
17
+ PHRASE?: Common;
18
+ };
19
+ CHIL?: Common & {
20
+ PHRASE?: Common;
21
+ };
22
+ SUBM?: Common;
23
+ /**
24
+ * Custom tag indicating this family is not connected to the root person's ancestry.
25
+ * This means none of the family members (spouses or children) are:
26
+ * - Direct ancestors of the root person
27
+ * - Spouses of direct ancestors
28
+ * - Descendants of direct ancestors (recursive)
29
+ * - Spouses of descendants (recursive)
30
+ */
31
+ _IS_ORPHAN_FAMILY?: Common;
32
+ }
33
+ export default IFamilyStructure;
34
+ //# sourceMappingURL=family.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"family.d.ts","sourceRoot":"","sources":["../../src/structures/family.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAC,MAAM,EAAC,MAAM,mBAAmB,CAAC;AAE9C,OAAO,KAAK,qBAAqB,MAAM,eAAe,CAAC;AACvD,OAAO,KAAK,oBAAoB,MAAM,eAAe,CAAC;AACtD,OAAO,KAAK,sBAAsB,MAAM,iBAAiB,CAAC;AAC1D,OAAO,KAAK,0BAA0B,MAAM,sBAAsB,CAAC;AACnE,OAAO,KAAK,sBAAsB,MAAM,iBAAiB,CAAC;AAC1D,OAAO,KAAK,wBAAwB,MAAM,mBAAmB,CAAC;AAC9D,OAAO,KAAK,kBAAkB,MAAM,aAAa,CAAC;AAClD,OAAO,KAAK,cAAc,MAAM,QAAQ,CAAC;AACzC,OAAO,KAAK,wBAAwB,MAAM,mBAAmB,CAAC;AAE9D,UAAU,gBACT,SACC,MAAM,EACN,sBAAsB,EACtB,oBAAoB,EACpB,sBAAsB,EACtB,qBAAqB,EACrB,0BAA0B,EAC1B,wBAAwB,EACxB,kBAAkB,EAClB,cAAc,EACd,wBAAwB;IACzB,IAAI,CAAC,EAAE,MAAM,CAAC;IACd,IAAI,CAAC,EAAE,MAAM,GAAG;QACf,MAAM,CAAC,EAAE,MAAM,CAAC;KAChB,CAAC;IACF,IAAI,CAAC,EAAE,MAAM,GAAG;QACf,MAAM,CAAC,EAAE,MAAM,CAAC;KAChB,CAAC;IACF,IAAI,CAAC,EAAE,MAAM,GAAG;QACf,MAAM,CAAC,EAAE,MAAM,CAAC;KAChB,CAAC;IACF,IAAI,CAAC,EAAE,MAAM,CAAC;IACd;;;;;;;OAOG;IACH,iBAAiB,CAAC,EAAE,MAAM,CAAC;CAC3B;AAED,eAAe,gBAAgB,CAAC"}
@@ -0,0 +1,59 @@
1
+ import type { Common } from "../classes/common";
2
+ import type { Families } from "../classes/fams";
3
+ import type { Individuals } from "../classes/indis";
4
+ import type { List } from "../classes/list";
5
+ import type { Objects } from "../classes/objes";
6
+ import type { Repositories } from "../classes/repos";
7
+ import type { Sources } from "../classes/sours";
8
+ import type { Submitters } from "../classes/subms";
9
+ import type { NonStandard, ListTag } from "../types/types";
10
+ import type IAddressStructure from "./address";
11
+ import type INoteStructure from "./note";
12
+ interface IGedComStructure extends Common, Omit<NonStandard, "id" | "value">, Partial<Record<`${ListTag}`, List>> {
13
+ "@@INDI"?: Individuals;
14
+ "@@_INDI"?: Individuals;
15
+ "@@FAM"?: Families;
16
+ "@@OBJE"?: Objects;
17
+ "@@REPO"?: Repositories;
18
+ "@@SOUR"?: Sources;
19
+ "@@SUBM"?: Submitters;
20
+ HEAD?: Common & {
21
+ GEDC?: Common & {
22
+ VERS?: Common;
23
+ };
24
+ SCHMA?: Common & {
25
+ TAG?: Common;
26
+ };
27
+ SOUR?: Common & {
28
+ VERS?: Common;
29
+ NAME?: Common;
30
+ CORP?: Common & {
31
+ PHON?: Common;
32
+ EMAIL?: Common;
33
+ FAX?: Common;
34
+ WWW?: Common;
35
+ } & IAddressStructure;
36
+ DATA?: Common & {
37
+ DATE?: Common & {
38
+ TIME?: Common;
39
+ };
40
+ CORP?: Common;
41
+ };
42
+ _TREE?: Common & {
43
+ RIN?: Common;
44
+ };
45
+ };
46
+ DEST?: Common;
47
+ DATE?: Common & {
48
+ TIME?: Common;
49
+ };
50
+ SUBM?: Common;
51
+ CORP?: Common;
52
+ LANG?: Common;
53
+ PLAC?: Common & {
54
+ FORM?: Common;
55
+ };
56
+ } & INoteStructure;
57
+ }
58
+ export default IGedComStructure;
59
+ //# sourceMappingURL=gedcom.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"gedcom.d.ts","sourceRoot":"","sources":["../../src/structures/gedcom.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,MAAM,EAAE,MAAM,mBAAmB,CAAC;AAChD,OAAO,KAAK,EAAE,QAAQ,EAAE,MAAM,iBAAiB,CAAC;AAChD,OAAO,KAAK,EAAE,WAAW,EAAE,MAAM,kBAAkB,CAAC;AACpD,OAAO,KAAK,EAAE,IAAI,EAAE,MAAM,iBAAiB,CAAC;AAC5C,OAAO,KAAK,EAAE,OAAO,EAAE,MAAM,kBAAkB,CAAC;AAChD,OAAO,KAAK,EAAE,YAAY,EAAE,MAAM,kBAAkB,CAAC;AACrD,OAAO,KAAK,EAAE,OAAO,EAAE,MAAM,kBAAkB,CAAC;AAChD,OAAO,KAAK,EAAE,UAAU,EAAE,MAAM,kBAAkB,CAAC;AACnD,OAAO,KAAK,EAAE,WAAW,EAAE,OAAO,EAAE,MAAM,gBAAgB,CAAC;AAE3D,OAAO,KAAK,iBAAiB,MAAM,WAAW,CAAC;AAC/C,OAAO,KAAK,cAAc,MAAM,QAAQ,CAAC;AAEzC,UAAU,gBACT,SACC,MAAM,EACN,IAAI,CAAC,WAAW,EAAE,IAAI,GAAG,OAAO,CAAC,EACjC,OAAO,CAAC,MAAM,CAAC,GAAG,OAAO,EAAE,EAAE,IAAI,CAAC,CAAC;IACpC,QAAQ,CAAC,EAAE,WAAW,CAAC;IACvB,SAAS,CAAC,EAAE,WAAW,CAAC;IACxB,OAAO,CAAC,EAAE,QAAQ,CAAC;IACnB,QAAQ,CAAC,EAAE,OAAO,CAAC;IACnB,QAAQ,CAAC,EAAE,YAAY,CAAC;IACxB,QAAQ,CAAC,EAAE,OAAO,CAAC;IACnB,QAAQ,CAAC,EAAE,UAAU,CAAC;IACtB,IAAI,CAAC,EAAE,MAAM,GAAG;QACf,IAAI,CAAC,EAAE,MAAM,GAAG;YACf,IAAI,CAAC,EAAE,MAAM,CAAC;SACd,CAAC;QACF,KAAK,CAAC,EAAE,MAAM,GAAG;YAChB,GAAG,CAAC,EAAE,MAAM,CAAC;SACb,CAAC;QACF,IAAI,CAAC,EAAE,MAAM,GAAG;YACf,IAAI,CAAC,EAAE,MAAM,CAAC;YACd,IAAI,CAAC,EAAE,MAAM,CAAC;YACd,IAAI,CAAC,EAAE,MAAM,GAAG;gBACf,IAAI,CAAC,EAAE,MAAM,CAAC;gBACd,KAAK,CAAC,EAAE,MAAM,CAAC;gBACf,GAAG,CAAC,EAAE,MAAM,CAAC;gBACb,GAAG,CAAC,EAAE,MAAM,CAAC;aACb,GAAG,iBAAiB,CAAC;YACtB,IAAI,CAAC,EAAE,MAAM,GAAG;gBACf,IAAI,CAAC,EAAE,MAAM,GAAG;oBACf,IAAI,CAAC,EAAE,MAAM,CAAC;iBACd,CAAC;gBACF,IAAI,CAAC,EAAE,MAAM,CAAC;aACd,CAAC;YACF,KAAK,CAAC,EAAE,MAAM,GAAG;gBAChB,GAAG,CAAC,EAAE,MAAM,CAAC;aACb,CAAC;SACF,CAAC;QAEF,IAAI,CAAC,EAAE,MAAM,CAAC;QACd,IAAI,CAAC,EAAE,MAAM,GAAG;YACf,IAAI,CAAC,EAAE,MAAM,CAAC;SACd,CAAC;QACF,IAAI,CAAC,EAAE,MAAM,CAAC;QACd,IAAI,CAAC,EAAE,MAAM,CAAC;QACd,IAAI,CAAC,EAAE,MAAM,CAAC;QACd,IAAI,CAAC,EAAE,MAAM,GAAG;YACf,IAAI,CAAC,EAAE,MAAM,CAAC;SACd,CAAC;KACF,GAAG,cAAc,CAAC;CACnB;AACD,eAAe,gBAAgB,CAAC"}
@@ -1,25 +1,27 @@
1
- import { a as Common, Z as INoteStructure, a4 as ISourceCitationStructure } from '../index-CzYZg44D.js';
2
- export { I as IAddress, y as IAssociation, z as IChangeDate, B as ICreationDate, D as IDate, H as IEventDetail, H as IEventDetailStructure, L as IFamily, N as IGedcomStructure, P as IIndividual, Q as IIndividualEvent, R as IIndividualEventDetail, P as IIndividualStructure, T as ILdsOrdinanceDetail, U as ILdsSpouseSealing, W as IMarriageDate, X as IMultimediaLink, Y as INonEvent, $ as IPlace, a1 as IRepository, a3 as ISource, a5 as ISourceRepositoryCitation } from '../index-CzYZg44D.js';
3
- import 'date-fns';
4
-
5
- interface IPersonalNamePiecesStructure extends Common {
6
- NPFX?: Common;
7
- GIVN?: Common;
8
- NICK?: Common;
9
- SPFX?: Common;
10
- SURN?: Common;
11
- NSFX?: Common;
12
- }
13
-
14
- interface IPersonalNameStructure extends Common {
15
- NAME?: Common & {
16
- TYPE?: Common & {
17
- PHRASE?: Common;
18
- };
19
- TRAN?: Common & {
20
- LANG?: Common;
21
- } & IPersonalNamePiecesStructure;
22
- } & IPersonalNamePiecesStructure & INoteStructure & ISourceCitationStructure;
23
- }
24
-
25
- export { INoteStructure as INote, type IPersonalNameStructure as IPersonalName, type IPersonalNamePiecesStructure as IPersonalNamePieces, ISourceCitationStructure as ISourceCitation };
1
+ export type { default as IAddress } from "./address";
2
+ export type { default as IAssociation } from "./association";
3
+ export type { default as IChangeDate } from "./change-date";
4
+ export type { default as ICreationDate } from "./creation-date";
5
+ export type { default as IDate } from "./date";
6
+ export type { default as IEventDetail } from "./event-detail-structure";
7
+ export type { default as IEventDetailStructure } from "./event-detail-structure";
8
+ export type { default as IFamily } from "./family";
9
+ export type { default as IGedcomStructure } from "./gedcom";
10
+ export type { default as IIndividualEventDetail } from "./individual-event-detail-structure";
11
+ export type { default as IIndividualEvent } from "./individual-event-structure";
12
+ export type { default as IIndividual } from "./individual";
13
+ export type { default as IIndividualStructure } from "./individual";
14
+ export type { default as ILdsOrdinanceDetail } from "./lds-ordinance-detail";
15
+ export type { default as ILdsSpouseSealing } from "./lds-spouse-sealing";
16
+ export type { default as IMarriageDate } from "./marriage-date";
17
+ export type { default as IMultimediaLink } from "./multimedia-link";
18
+ export type { default as INonEvent } from "./non-event";
19
+ export type { default as INote } from "./note";
20
+ export type { default as IPersonalNamePieces } from "./personal-name-pieces";
21
+ export type { default as IPersonalName } from "./personal-name";
22
+ export type { default as IPlace } from "./place";
23
+ export type { default as IRepository } from "./repository";
24
+ export type { default as ISourceCitation } from "./source-citation";
25
+ export type { default as ISourceRepositoryCitation } from "./source-repository-citation";
26
+ export type { default as ISource } from "./source";
27
+ //# sourceMappingURL=index.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/structures/index.ts"],"names":[],"mappings":"AACA,YAAY,EAAE,OAAO,IAAI,QAAQ,EAAE,MAAM,WAAW,CAAC;AACrD,YAAY,EAAE,OAAO,IAAI,YAAY,EAAE,MAAM,eAAe,CAAC;AAC7D,YAAY,EAAE,OAAO,IAAI,WAAW,EAAE,MAAM,eAAe,CAAC;AAC5D,YAAY,EAAE,OAAO,IAAI,aAAa,EAAE,MAAM,iBAAiB,CAAC;AAChE,YAAY,EAAE,OAAO,IAAI,KAAK,EAAE,MAAM,QAAQ,CAAC;AAC/C,YAAY,EAAE,OAAO,IAAI,YAAY,EAAE,MAAM,0BAA0B,CAAC;AACxE,YAAY,EAAE,OAAO,IAAI,qBAAqB,EAAE,MAAM,0BAA0B,CAAC;AACjF,YAAY,EAAE,OAAO,IAAI,OAAO,EAAE,MAAM,UAAU,CAAC;AACnD,YAAY,EAAE,OAAO,IAAI,gBAAgB,EAAE,MAAM,UAAU,CAAC;AAC5D,YAAY,EAAE,OAAO,IAAI,sBAAsB,EAAE,MAAM,qCAAqC,CAAC;AAC7F,YAAY,EAAE,OAAO,IAAI,gBAAgB,EAAE,MAAM,8BAA8B,CAAC;AAChF,YAAY,EAAE,OAAO,IAAI,WAAW,EAAE,MAAM,cAAc,CAAC;AAC3D,YAAY,EAAE,OAAO,IAAI,oBAAoB,EAAE,MAAM,cAAc,CAAC;AACpE,YAAY,EAAE,OAAO,IAAI,mBAAmB,EAAE,MAAM,wBAAwB,CAAC;AAC7E,YAAY,EAAE,OAAO,IAAI,iBAAiB,EAAE,MAAM,sBAAsB,CAAC;AACzE,YAAY,EAAE,OAAO,IAAI,aAAa,EAAE,MAAM,iBAAiB,CAAC;AAChE,YAAY,EAAE,OAAO,IAAI,eAAe,EAAE,MAAM,mBAAmB,CAAC;AACpE,YAAY,EAAE,OAAO,IAAI,SAAS,EAAE,MAAM,aAAa,CAAC;AACxD,YAAY,EAAE,OAAO,IAAI,KAAK,EAAE,MAAM,QAAQ,CAAC;AAC/C,YAAY,EAAE,OAAO,IAAI,mBAAmB,EAAE,MAAM,wBAAwB,CAAC;AAC7E,YAAY,EAAE,OAAO,IAAI,aAAa,EAAE,MAAM,iBAAiB,CAAC;AAChE,YAAY,EAAE,OAAO,IAAI,MAAM,EAAE,MAAM,SAAS,CAAC;AACjD,YAAY,EAAE,OAAO,IAAI,WAAW,EAAE,MAAM,cAAc,CAAC;AAC3D,YAAY,EAAE,OAAO,IAAI,eAAe,EAAE,MAAM,mBAAmB,CAAC;AACpE,YAAY,EAAE,OAAO,IAAI,yBAAyB,EAAE,MAAM,8BAA8B,CAAC;AACzF,YAAY,EAAE,OAAO,IAAI,OAAO,EAAE,MAAM,UAAU,CAAC"}
@@ -0,0 +1,9 @@
1
+ import type { Common } from "../classes/common";
2
+ import type IEventDetailStructure from "./event-detail-structure";
3
+ interface IIndividualEventDetailStructure extends IEventDetailStructure {
4
+ AGE?: Common & {
5
+ PHRASE?: Common;
6
+ };
7
+ }
8
+ export default IIndividualEventDetailStructure;
9
+ //# sourceMappingURL=individual-event-detail-structure.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"individual-event-detail-structure.d.ts","sourceRoot":"","sources":["../../src/structures/individual-event-detail-structure.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAC,MAAM,EAAC,MAAM,mBAAmB,CAAC;AAE9C,OAAO,KAAK,qBAAqB,MAAM,0BAA0B,CAAC;AAElE,UAAU,+BAAgC,SAAQ,qBAAqB;IACtE,GAAG,CAAC,EAAE,MAAM,GAAG;QACd,MAAM,CAAC,EAAE,MAAM,CAAC;KAChB,CAAC;CACF;AAED,eAAe,+BAA+B,CAAC"}
@@ -0,0 +1,83 @@
1
+ import type { Common } from "../classes/common";
2
+ import type IEventDetailStructure from "./event-detail-structure";
3
+ import type IIndividualEventDetailStructure from "./individual-event-detail-structure";
4
+ interface IIndividualEventStructure extends IIndividualEventDetailStructure {
5
+ BAPM?: Common & {
6
+ TYPE?: Common;
7
+ } & IEventDetailStructure;
8
+ BARM?: Common & {
9
+ TYPE?: Common;
10
+ } & IEventDetailStructure;
11
+ BASM?: Common & {
12
+ TYPE?: Common;
13
+ } & IEventDetailStructure;
14
+ BLES?: Common & {
15
+ TYPE?: Common;
16
+ } & IEventDetailStructure;
17
+ BURI?: Common & {
18
+ TYPE?: Common;
19
+ } & IEventDetailStructure;
20
+ CENS?: Common & {
21
+ TYPE?: Common;
22
+ } & IEventDetailStructure;
23
+ CHRA?: Common & {
24
+ TYPE?: Common;
25
+ } & IEventDetailStructure;
26
+ CONF?: Common & {
27
+ TYPE?: Common;
28
+ } & IEventDetailStructure;
29
+ CREM?: Common & {
30
+ TYPE?: Common;
31
+ } & IEventDetailStructure;
32
+ DEAT?: Common & {
33
+ TYPE?: Common;
34
+ } & IEventDetailStructure;
35
+ EMIG?: Common & {
36
+ TYPE?: Common;
37
+ } & IEventDetailStructure;
38
+ FCOM?: Common & {
39
+ TYPE?: Common;
40
+ } & IEventDetailStructure;
41
+ GRAD?: Common & {
42
+ TYPE?: Common;
43
+ } & IEventDetailStructure;
44
+ IMMI?: Common & {
45
+ TYPE?: Common;
46
+ } & IEventDetailStructure;
47
+ NATU?: Common & {
48
+ TYPE?: Common;
49
+ } & IEventDetailStructure;
50
+ ORDN?: Common & {
51
+ TYPE?: Common;
52
+ } & IEventDetailStructure;
53
+ PROB?: Common & {
54
+ TYPE?: Common;
55
+ } & IEventDetailStructure;
56
+ RETI?: Common & {
57
+ TYPE?: Common;
58
+ } & IEventDetailStructure;
59
+ WILL?: Common & {
60
+ TYPE?: Common;
61
+ } & IEventDetailStructure;
62
+ ADOP?: Common & {
63
+ TYPE?: Common;
64
+ FAMC?: Common & {
65
+ ADOP?: Common & {
66
+ PHRASE?: Common;
67
+ };
68
+ };
69
+ } & IEventDetailStructure;
70
+ BIRT?: Common & {
71
+ TYPE?: Common;
72
+ FAMC?: Common;
73
+ } & IEventDetailStructure;
74
+ CHR?: Common & {
75
+ TYPE?: Common;
76
+ FAMC?: Common;
77
+ } & IEventDetailStructure;
78
+ EVEN?: Common & {
79
+ TYPE?: Common;
80
+ } & IEventDetailStructure;
81
+ }
82
+ export default IIndividualEventStructure;
83
+ //# sourceMappingURL=individual-event-structure.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"individual-event-structure.d.ts","sourceRoot":"","sources":["../../src/structures/individual-event-structure.ts"],"names":[],"mappings":"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"}
@@ -0,0 +1,40 @@
1
+ import type { Common } from "../classes/common";
2
+ import type { CommonName } from "../classes/name";
3
+ import type { CommonNote } from "../classes/note";
4
+ import type IAssociationStructure from "./association";
5
+ import type IChangeDateStructure from "./change-date";
6
+ import type ICreationDateStructure from "./creation-date";
7
+ import type IIndividualEventStructure from "./individual-event-structure";
8
+ import type IMultimediaLinkStructure from "./multimedia-link";
9
+ import type INonEventStructure from "./non-event";
10
+ import type INoteStructure from "./note";
11
+ import type ISourceCitationStructure from "./source-citation";
12
+ interface IIndividualStructure extends Common, IIndividualEventStructure, IChangeDateStructure, ICreationDateStructure, IAssociationStructure, IMultimediaLinkStructure, INonEventStructure, INoteStructure, ISourceCitationStructure {
13
+ NAME?: CommonName;
14
+ RESN?: Common;
15
+ SEX?: Common<"F" | "M">;
16
+ FAMC?: Common & {
17
+ PEDI?: Common & {
18
+ PHRASE?: Common;
19
+ };
20
+ STAT?: Common & {
21
+ PHRASE?: Common;
22
+ };
23
+ } & INoteStructure;
24
+ FAMS?: Common & INoteStructure;
25
+ SUBM?: Common;
26
+ ALIA?: Common & {
27
+ PHRASE?: Common;
28
+ };
29
+ ANCI?: Common;
30
+ DESI?: Common;
31
+ _WLNK?: Common & {
32
+ TITL?: Common;
33
+ NOTE?: CommonNote;
34
+ };
35
+ _FS_LINK?: Common;
36
+ _FS_ID?: Common;
37
+ INDIVIDUALINTERNALHYPERLINK?: Common;
38
+ }
39
+ export default IIndividualStructure;
40
+ //# sourceMappingURL=individual.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"individual.d.ts","sourceRoot":"","sources":["../../src/structures/individual.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAC,MAAM,EAAC,MAAM,mBAAmB,CAAC;AAC9C,OAAO,KAAK,EAAC,UAAU,EAAC,MAAM,iBAAiB,CAAC;AAChD,OAAO,KAAK,EAAC,UAAU,EAAC,MAAM,iBAAiB,CAAC;AAEhD,OAAO,KAAK,qBAAqB,MAAM,eAAe,CAAC;AACvD,OAAO,KAAK,oBAAoB,MAAM,eAAe,CAAC;AACtD,OAAO,KAAK,sBAAsB,MAAM,iBAAiB,CAAC;AAC1D,OAAO,KAAK,yBAAyB,MAAM,8BAA8B,CAAC;AAC1E,OAAO,KAAK,wBAAwB,MAAM,mBAAmB,CAAC;AAC9D,OAAO,KAAK,kBAAkB,MAAM,aAAa,CAAC;AAClD,OAAO,KAAK,cAAc,MAAM,QAAQ,CAAC;AACzC,OAAO,KAAK,wBAAwB,MAAM,mBAAmB,CAAC;AAE9D,UAAU,oBACT,SACC,MAAM,EACN,yBAAyB,EACzB,oBAAoB,EACpB,sBAAsB,EACtB,qBAAqB,EACrB,wBAAwB,EACxB,kBAAkB,EAClB,cAAc,EACd,wBAAwB;IACzB,IAAI,CAAC,EAAE,UAAU,CAAC;IAClB,IAAI,CAAC,EAAE,MAAM,CAAC;IACd,GAAG,CAAC,EAAE,MAAM,CAAC,GAAG,GAAG,GAAG,CAAC,CAAC;IACxB,IAAI,CAAC,EAAE,MAAM,GAAG;QACf,IAAI,CAAC,EAAE,MAAM,GAAG;YACf,MAAM,CAAC,EAAE,MAAM,CAAC;SAChB,CAAC;QACF,IAAI,CAAC,EAAE,MAAM,GAAG;YACf,MAAM,CAAC,EAAE,MAAM,CAAC;SAChB,CAAC;KACF,GAAG,cAAc,CAAC;IAEnB,IAAI,CAAC,EAAE,MAAM,GAAG,cAAc,CAAC;IAC/B,IAAI,CAAC,EAAE,MAAM,CAAC;IACd,IAAI,CAAC,EAAE,MAAM,GAAG;QACf,MAAM,CAAC,EAAE,MAAM,CAAC;KAChB,CAAC;IACF,IAAI,CAAC,EAAE,MAAM,CAAC;IACd,IAAI,CAAC,EAAE,MAAM,CAAC;IACd,KAAK,CAAC,EAAE,MAAM,GAAG;QAAE,IAAI,CAAC,EAAE,MAAM,CAAC;QAAC,IAAI,CAAC,EAAE,UAAU,CAAA;KAAE,CAAC;IACtD,QAAQ,CAAC,EAAE,MAAM,CAAC;IAClB,MAAM,CAAC,EAAE,MAAM,CAAC;IAEhB,2BAA2B,CAAC,EAAE,MAAM,CAAC;CACrC;AAED,eAAe,oBAAoB,CAAC"}
@@ -0,0 +1,17 @@
1
+ import type { Common } from "../classes/common";
2
+ import type INoteStructure from "./note";
3
+ import type IPlaceStructure from "./place";
4
+ import type ISourceCitationStructure from "./source-citation";
5
+ interface ILdsOrdinanceDetailStructure extends Common, INoteStructure, ISourceCitationStructure, IPlaceStructure {
6
+ DATE?: Common & {
7
+ TIME?: Common;
8
+ PHRASE?: Common;
9
+ };
10
+ TEMP?: Common;
11
+ STAT?: Common & {
12
+ DATE?: Common;
13
+ TIME?: Common;
14
+ };
15
+ }
16
+ export default ILdsOrdinanceDetailStructure;
17
+ //# sourceMappingURL=lds-ordinance-detail.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"lds-ordinance-detail.d.ts","sourceRoot":"","sources":["../../src/structures/lds-ordinance-detail.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAC,MAAM,EAAC,MAAM,mBAAmB,CAAC;AAE9C,OAAO,KAAK,cAAc,MAAM,QAAQ,CAAC;AACzC,OAAO,KAAK,eAAe,MAAM,SAAS,CAAC;AAC3C,OAAO,KAAK,wBAAwB,MAAM,mBAAmB,CAAC;AAE9D,UAAU,4BACT,SAAQ,MAAM,EAAE,cAAc,EAAE,wBAAwB,EAAE,eAAe;IACzE,IAAI,CAAC,EAAE,MAAM,GAAG;QACf,IAAI,CAAC,EAAE,MAAM,CAAC;QACd,MAAM,CAAC,EAAE,MAAM,CAAC;KAChB,CAAC;IACF,IAAI,CAAC,EAAE,MAAM,CAAC;IACd,IAAI,CAAC,EAAE,MAAM,GAAG;QACf,IAAI,CAAC,EAAE,MAAM,CAAC;QACd,IAAI,CAAC,EAAE,MAAM,CAAC;KACd,CAAC;CACF;AAED,eAAe,4BAA4B,CAAC"}
@@ -0,0 +1,7 @@
1
+ import type { Common } from "../classes/common";
2
+ import type ILdsOrdinanceDetailStructure from "./lds-ordinance-detail";
3
+ interface ILdsSpouseSealingStructure extends Common {
4
+ SLSG?: Common & ILdsOrdinanceDetailStructure;
5
+ }
6
+ export default ILdsSpouseSealingStructure;
7
+ //# sourceMappingURL=lds-spouse-sealing.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"lds-spouse-sealing.d.ts","sourceRoot":"","sources":["../../src/structures/lds-spouse-sealing.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAC,MAAM,EAAC,MAAM,mBAAmB,CAAC;AAE9C,OAAO,KAAK,4BAA4B,MAAM,wBAAwB,CAAC;AAEvE,UAAU,0BAA2B,SAAQ,MAAM;IAClD,IAAI,CAAC,EAAE,MAAM,GAAG,4BAA4B,CAAC;CAC7C;AAED,eAAe,0BAA0B,CAAC"}
@@ -0,0 +1,11 @@
1
+ import type { Common } from "../classes/common";
2
+ import type IDateStructure from "./date";
3
+ import type INoteStructure from "./note";
4
+ import type IPlaceStructure from "./place";
5
+ interface IMarriageDateStructure extends Common, INoteStructure {
6
+ MARR?: Common & IDateStructure & IPlaceStructure;
7
+ HUSB?: Common;
8
+ WIFE?: Common;
9
+ }
10
+ export default IMarriageDateStructure;
11
+ //# sourceMappingURL=marriage-date.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"marriage-date.d.ts","sourceRoot":"","sources":["../../src/structures/marriage-date.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAC,MAAM,EAAC,MAAM,mBAAmB,CAAC;AAE9C,OAAO,KAAK,cAAc,MAAM,QAAQ,CAAC;AACzC,OAAO,KAAK,cAAc,MAAM,QAAQ,CAAC;AACzC,OAAO,KAAK,eAAe,MAAM,SAAS,CAAC;AAE3C,UAAU,sBAAuB,SAAQ,MAAM,EAAE,cAAc;IAC9D,IAAI,CAAC,EAAE,MAAM,GAAG,cAAc,GAAG,eAAe,CAAC;IACjD,IAAI,CAAC,EAAE,MAAM,CAAC;IACd,IAAI,CAAC,EAAE,MAAM,CAAC;CACd;AAED,eAAe,sBAAsB,CAAC"}
@@ -0,0 +1,16 @@
1
+ import type { Common } from "../classes/common";
2
+ interface IMultimediaLinkStructure extends Common {
3
+ RIN?: Common;
4
+ OBJE?: Common & {
5
+ CROP?: Common & {
6
+ TOP?: Common;
7
+ LEFT?: Common;
8
+ HEIGHT?: Common;
9
+ WIDTH?: Common;
10
+ };
11
+ TITL?: Common;
12
+ _PRIM?: Common<"Y" | "N">;
13
+ };
14
+ }
15
+ export default IMultimediaLinkStructure;
16
+ //# sourceMappingURL=multimedia-link.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"multimedia-link.d.ts","sourceRoot":"","sources":["../../src/structures/multimedia-link.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAC,MAAM,EAAC,MAAM,mBAAmB,CAAC;AAE9C,UAAU,wBAAyB,SAAQ,MAAM;IAChD,GAAG,CAAC,EAAE,MAAM,CAAC;IACb,IAAI,CAAC,EAAE,MAAM,GAAG;QACf,IAAI,CAAC,EAAE,MAAM,GAAG;YACf,GAAG,CAAC,EAAE,MAAM,CAAC;YACb,IAAI,CAAC,EAAE,MAAM,CAAC;YACd,MAAM,CAAC,EAAE,MAAM,CAAC;YAChB,KAAK,CAAC,EAAE,MAAM,CAAC;SACf,CAAC;QACF,IAAI,CAAC,EAAE,MAAM,CAAC;QACd,KAAK,CAAC,EAAE,MAAM,CAAC,GAAG,GAAG,GAAG,CAAC,CAAC;KAC1B,CAAC;CACF;AAED,eAAe,wBAAwB,CAAC"}
@@ -0,0 +1,12 @@
1
+ import type { Common } from "../classes/common";
2
+ import type INoteStructure from "./note";
3
+ import type ISourceCitationStructure from "./source-citation";
4
+ interface INonEventStructure extends Common {
5
+ NO?: Common & {
6
+ DATE?: Common & {
7
+ PHRASE?: Common;
8
+ };
9
+ } & INoteStructure & ISourceCitationStructure;
10
+ }
11
+ export default INonEventStructure;
12
+ //# sourceMappingURL=non-event.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"non-event.d.ts","sourceRoot":"","sources":["../../src/structures/non-event.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAC,MAAM,EAAC,MAAM,mBAAmB,CAAC;AAE9C,OAAO,KAAK,cAAc,MAAM,QAAQ,CAAC;AACzC,OAAO,KAAK,wBAAwB,MAAM,mBAAmB,CAAC;AAE9D,UAAU,kBAAmB,SAAQ,MAAM;IAC1C,EAAE,CAAC,EAAE,MAAM,GAAG;QACb,IAAI,CAAC,EAAE,MAAM,GAAG;YACf,MAAM,CAAC,EAAE,MAAM,CAAC;SAChB,CAAC;KACF,GAAG,cAAc,GACjB,wBAAwB,CAAC;CAC1B;AAED,eAAe,kBAAkB,CAAC"}
@@ -0,0 +1,16 @@
1
+ import type { Common } from "../classes/common";
2
+ import type { CommonNote } from "../classes/note";
3
+ import type ISourceCitationStructure from "./source-citation";
4
+ interface INoteStructure extends Common {
5
+ NOTE?: CommonNote & {
6
+ MIME?: Common;
7
+ LANG?: Common;
8
+ TRAN?: Common & {
9
+ MIME?: Common;
10
+ LANG?: Common;
11
+ };
12
+ } & ISourceCitationStructure;
13
+ SNOTE?: Common;
14
+ }
15
+ export default INoteStructure;
16
+ //# sourceMappingURL=note.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"note.d.ts","sourceRoot":"","sources":["../../src/structures/note.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAC,MAAM,EAAC,MAAM,mBAAmB,CAAC;AAC9C,OAAO,KAAK,EAAC,UAAU,EAAC,MAAM,iBAAiB,CAAC;AAEhD,OAAO,KAAK,wBAAwB,MAAM,mBAAmB,CAAC;AAE9D,UAAU,cAAe,SAAQ,MAAM;IACtC,IAAI,CAAC,EAAE,UAAU,GAAG;QACnB,IAAI,CAAC,EAAE,MAAM,CAAC;QACd,IAAI,CAAC,EAAE,MAAM,CAAC;QACd,IAAI,CAAC,EAAE,MAAM,GAAG;YACf,IAAI,CAAC,EAAE,MAAM,CAAC;YACd,IAAI,CAAC,EAAE,MAAM,CAAC;SACd,CAAC;KACF,GAAG,wBAAwB,CAAC;IAC7B,KAAK,CAAC,EAAE,MAAM,CAAC;CACf;AAED,eAAe,cAAc,CAAC"}
@@ -0,0 +1,11 @@
1
+ import type { Common } from "../classes/common";
2
+ interface IPersonalNamePiecesStructure extends Common {
3
+ NPFX?: Common;
4
+ GIVN?: Common;
5
+ NICK?: Common;
6
+ SPFX?: Common;
7
+ SURN?: Common;
8
+ NSFX?: Common;
9
+ }
10
+ export default IPersonalNamePiecesStructure;
11
+ //# sourceMappingURL=personal-name-pieces.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"personal-name-pieces.d.ts","sourceRoot":"","sources":["../../src/structures/personal-name-pieces.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAC,MAAM,EAAC,MAAM,mBAAmB,CAAC;AAE9C,UAAU,4BAA6B,SAAQ,MAAM;IACpD,IAAI,CAAC,EAAE,MAAM,CAAC;IACd,IAAI,CAAC,EAAE,MAAM,CAAC;IACd,IAAI,CAAC,EAAE,MAAM,CAAC;IACd,IAAI,CAAC,EAAE,MAAM,CAAC;IACd,IAAI,CAAC,EAAE,MAAM,CAAC;IACd,IAAI,CAAC,EAAE,MAAM,CAAC;CACd;AAED,eAAe,4BAA4B,CAAC"}
@@ -0,0 +1,16 @@
1
+ import type { Common } from "../classes/common";
2
+ import type INoteStructure from "./note";
3
+ import type IPersonalNamePiecesStructure from "./personal-name-pieces";
4
+ import type ISourceCitationStructure from "./source-citation";
5
+ interface IPersonalNameStructure extends Common {
6
+ NAME?: Common & {
7
+ TYPE?: Common & {
8
+ PHRASE?: Common;
9
+ };
10
+ TRAN?: Common & {
11
+ LANG?: Common;
12
+ } & IPersonalNamePiecesStructure;
13
+ } & IPersonalNamePiecesStructure & INoteStructure & ISourceCitationStructure;
14
+ }
15
+ export default IPersonalNameStructure;
16
+ //# sourceMappingURL=personal-name.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"personal-name.d.ts","sourceRoot":"","sources":["../../src/structures/personal-name.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAC,MAAM,EAAC,MAAM,mBAAmB,CAAC;AAE9C,OAAO,KAAK,cAAc,MAAM,QAAQ,CAAC;AACzC,OAAO,KAAK,4BAA4B,MAAM,wBAAwB,CAAC;AACvE,OAAO,KAAK,wBAAwB,MAAM,mBAAmB,CAAC;AAE9D,UAAU,sBAAuB,SAAQ,MAAM;IAC9C,IAAI,CAAC,EAAE,MAAM,GAAG;QACf,IAAI,CAAC,EAAE,MAAM,GAAG;YACf,MAAM,CAAC,EAAE,MAAM,CAAC;SAChB,CAAC;QACF,IAAI,CAAC,EAAE,MAAM,GAAG;YACf,IAAI,CAAC,EAAE,MAAM,CAAC;SACd,GAAG,4BAA4B,CAAC;KACjC,GAAG,4BAA4B,GAC/B,cAAc,GACd,wBAAwB,CAAC;CAC1B;AAED,eAAe,sBAAsB,CAAC"}
@@ -0,0 +1,20 @@
1
+ import type { Common } from "../classes/common";
2
+ import type INoteStructure from "./note";
3
+ interface IPlaceStructure extends Common {
4
+ PLAC?: Common & {
5
+ FORM?: Common;
6
+ LANG?: Common;
7
+ TRAN?: Common & {
8
+ LANG?: Common;
9
+ };
10
+ MAP?: Common & {
11
+ LATI?: Common;
12
+ LONG?: Common;
13
+ };
14
+ EXID?: Common & {
15
+ TYPE?: Common;
16
+ };
17
+ } & INoteStructure;
18
+ }
19
+ export default IPlaceStructure;
20
+ //# sourceMappingURL=place.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"place.d.ts","sourceRoot":"","sources":["../../src/structures/place.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAC,MAAM,EAAC,MAAM,mBAAmB,CAAC;AAE9C,OAAO,KAAK,cAAc,MAAM,QAAQ,CAAC;AAEzC,UAAU,eAAgB,SAAQ,MAAM;IACvC,IAAI,CAAC,EAAE,MAAM,GAAG;QACf,IAAI,CAAC,EAAE,MAAM,CAAC;QACd,IAAI,CAAC,EAAE,MAAM,CAAC;QACd,IAAI,CAAC,EAAE,MAAM,GAAG;YACf,IAAI,CAAC,EAAE,MAAM,CAAC;SACd,CAAC;QACF,GAAG,CAAC,EAAE,MAAM,GAAG;YACd,IAAI,CAAC,EAAE,MAAM,CAAC;YACd,IAAI,CAAC,EAAE,MAAM,CAAC;SACd,CAAC;QACF,IAAI,CAAC,EAAE,MAAM,GAAG;YACf,IAAI,CAAC,EAAE,MAAM,CAAC;SACd,CAAC;KACF,GAAG,cAAc,CAAC;CACnB;AAED,eAAe,eAAe,CAAC"}
@@ -0,0 +1,6 @@
1
+ import type { Common } from "../classes/common";
2
+ interface IRepositoryStructure {
3
+ NAME?: Common;
4
+ }
5
+ export default IRepositoryStructure;
6
+ //# sourceMappingURL=repository.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"repository.d.ts","sourceRoot":"","sources":["../../src/structures/repository.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAC,MAAM,EAAC,MAAM,mBAAmB,CAAC;AAE9C,UAAU,oBAAoB;IAC7B,IAAI,CAAC,EAAE,MAAM,CAAC;CACd;AAED,eAAe,oBAAoB,CAAC"}