@nmshd/content 2.0.0-beta.9 → 2.0.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.
Files changed (437) hide show
  1. package/dist/attributes/AbstractAttribute.js.map +1 -1
  2. package/dist/attributes/AbstractAttributeQuery.d.ts +0 -3
  3. package/dist/attributes/AbstractAttributeQuery.js +0 -7
  4. package/dist/attributes/AbstractAttributeQuery.js.map +1 -1
  5. package/dist/attributes/AbstractAttributeValue.d.ts +1 -2
  6. package/dist/attributes/AbstractAttributeValue.js +0 -3
  7. package/dist/attributes/AbstractAttributeValue.js.map +1 -1
  8. package/dist/attributes/AttributeValueTypes.d.ts +46 -0
  9. package/dist/attributes/AttributeValueTypes.js +146 -0
  10. package/dist/attributes/AttributeValueTypes.js.map +1 -0
  11. package/dist/attributes/IdentityAttribute.d.ts +7 -6
  12. package/dist/attributes/IdentityAttribute.js +4 -4
  13. package/dist/attributes/IdentityAttribute.js.map +1 -1
  14. package/dist/attributes/IdentityAttributeQuery.d.ts +7 -2
  15. package/dist/attributes/IdentityAttributeQuery.js +12 -2
  16. package/dist/attributes/IdentityAttributeQuery.js.map +1 -1
  17. package/dist/attributes/RelationshipAttribute.d.ts +8 -36
  18. package/dist/attributes/RelationshipAttribute.js +8 -38
  19. package/dist/attributes/RelationshipAttribute.js.map +1 -1
  20. package/dist/attributes/RelationshipAttributeConfidentiality.d.ts +30 -0
  21. package/dist/attributes/RelationshipAttributeConfidentiality.js +35 -0
  22. package/dist/attributes/RelationshipAttributeConfidentiality.js.map +1 -0
  23. package/dist/attributes/RelationshipAttributeQuery.d.ts +35 -6
  24. package/dist/attributes/RelationshipAttributeQuery.js +59 -10
  25. package/dist/attributes/RelationshipAttributeQuery.js.map +1 -1
  26. package/dist/attributes/ThirdPartyRelationshipAttributeQuery.d.ts +20 -0
  27. package/dist/{forms/FormItem.js → attributes/ThirdPartyRelationshipAttributeQuery.js} +21 -31
  28. package/dist/attributes/ThirdPartyRelationshipAttributeQuery.js.map +1 -0
  29. package/dist/attributes/constants/AttributeValueTypeQueryMapping.d.ts +1 -0
  30. package/dist/attributes/constants/AttributeValueTypeQueryMapping.js +7 -0
  31. package/dist/attributes/constants/AttributeValueTypeQueryMapping.js.map +1 -0
  32. package/dist/attributes/constants/index.d.ts +1 -0
  33. package/dist/attributes/constants/index.js +1 -0
  34. package/dist/attributes/constants/index.js.map +1 -1
  35. package/dist/attributes/hints/RenderHints.d.ts +3 -2
  36. package/dist/attributes/hints/RenderHints.js.map +1 -1
  37. package/dist/attributes/hints/ValueHints.d.ts +3 -2
  38. package/dist/attributes/hints/ValueHints.js.map +1 -1
  39. package/dist/attributes/hints/ValueHintsValue.d.ts +1 -1
  40. package/dist/attributes/hints/ValueHintsValue.js.map +1 -1
  41. package/dist/attributes/hints/index.d.ts +0 -1
  42. package/dist/attributes/hints/index.js +0 -1
  43. package/dist/attributes/hints/index.js.map +1 -1
  44. package/dist/attributes/index.d.ts +3 -1
  45. package/dist/attributes/index.js +3 -1
  46. package/dist/attributes/index.js.map +1 -1
  47. package/dist/attributes/types/AbstractBoolean.d.ts +1 -2
  48. package/dist/attributes/types/AbstractBoolean.js.map +1 -1
  49. package/dist/attributes/types/AbstractFloat.d.ts +1 -2
  50. package/dist/attributes/types/AbstractFloat.js.map +1 -1
  51. package/dist/attributes/types/AbstractInteger.d.ts +1 -3
  52. package/dist/attributes/types/AbstractInteger.js +0 -3
  53. package/dist/attributes/types/AbstractInteger.js.map +1 -1
  54. package/dist/attributes/types/AbstractString.d.ts +1 -2
  55. package/dist/attributes/types/AbstractString.js +2 -2
  56. package/dist/attributes/types/AbstractString.js.map +1 -1
  57. package/dist/attributes/types/address/AbstractAddress.js.map +1 -1
  58. package/dist/attributes/types/address/City.d.ts +8 -2
  59. package/dist/attributes/types/address/City.js +3 -0
  60. package/dist/attributes/types/address/City.js.map +1 -1
  61. package/dist/attributes/types/address/Country.d.ts +9 -2
  62. package/dist/attributes/types/address/Country.js +5 -2
  63. package/dist/attributes/types/address/Country.js.map +1 -1
  64. package/dist/attributes/types/address/DeliveryBoxAddress.d.ts +40 -39
  65. package/dist/attributes/types/address/DeliveryBoxAddress.js +6 -3
  66. package/dist/attributes/types/address/DeliveryBoxAddress.js.map +1 -1
  67. package/dist/attributes/types/address/HouseNumber.d.ts +9 -2
  68. package/dist/attributes/types/address/HouseNumber.js +6 -0
  69. package/dist/attributes/types/address/HouseNumber.js.map +1 -1
  70. package/dist/attributes/types/address/PostOfficeBoxAddress.d.ts +30 -29
  71. package/dist/attributes/types/address/PostOfficeBoxAddress.js +3 -0
  72. package/dist/attributes/types/address/PostOfficeBoxAddress.js.map +1 -1
  73. package/dist/attributes/types/address/State.d.ts +8 -2
  74. package/dist/attributes/types/address/State.js +3 -0
  75. package/dist/attributes/types/address/State.js.map +1 -1
  76. package/dist/attributes/types/address/Street.d.ts +9 -2
  77. package/dist/attributes/types/address/Street.js +6 -0
  78. package/dist/attributes/types/address/Street.js.map +1 -1
  79. package/dist/attributes/types/address/StreetAddress.d.ts +49 -48
  80. package/dist/attributes/types/address/StreetAddress.js +3 -0
  81. package/dist/attributes/types/address/StreetAddress.js.map +1 -1
  82. package/dist/attributes/types/address/ZipCode.d.ts +9 -2
  83. package/dist/attributes/types/address/ZipCode.js +6 -0
  84. package/dist/attributes/types/address/ZipCode.js.map +1 -1
  85. package/dist/attributes/types/{name/LegalNameDE.d.ts → affiliation/Affiliation.d.ts} +43 -612
  86. package/dist/attributes/types/affiliation/Affiliation.js +80 -0
  87. package/dist/attributes/types/affiliation/Affiliation.js.map +1 -0
  88. package/dist/attributes/types/affiliation/AffiliationOrganization.d.ts +10 -0
  89. package/dist/attributes/types/affiliation/AffiliationOrganization.js +24 -0
  90. package/dist/attributes/types/affiliation/AffiliationOrganization.js.map +1 -0
  91. package/dist/attributes/types/affiliation/AffiliationRole.d.ts +10 -0
  92. package/dist/attributes/types/affiliation/AffiliationRole.js +24 -0
  93. package/dist/attributes/types/affiliation/AffiliationRole.js.map +1 -0
  94. package/dist/attributes/types/affiliation/AffiliationUnit.d.ts +10 -0
  95. package/dist/attributes/types/affiliation/AffiliationUnit.js +24 -0
  96. package/dist/attributes/types/affiliation/AffiliationUnit.js.map +1 -0
  97. package/dist/attributes/types/affiliation/index.d.ts +4 -0
  98. package/dist/{forms → attributes/types/affiliation}/index.js +4 -8
  99. package/dist/attributes/types/affiliation/index.js.map +1 -0
  100. package/dist/attributes/types/birth/BirthCity.d.ts +9 -2
  101. package/dist/attributes/types/birth/BirthCity.js +8 -2
  102. package/dist/attributes/types/birth/BirthCity.js.map +1 -1
  103. package/dist/attributes/types/birth/BirthCountry.d.ts +9 -2
  104. package/dist/attributes/types/birth/BirthCountry.js +8 -2
  105. package/dist/attributes/types/birth/BirthCountry.js.map +1 -1
  106. package/dist/attributes/types/birth/BirthDate.d.ts +40 -39
  107. package/dist/attributes/types/birth/BirthDate.js +3 -0
  108. package/dist/attributes/types/birth/BirthDate.js.map +1 -1
  109. package/dist/attributes/types/birth/BirthDay.d.ts +9 -2
  110. package/dist/attributes/types/birth/BirthDay.js +8 -2
  111. package/dist/attributes/types/birth/BirthDay.js.map +1 -1
  112. package/dist/attributes/types/birth/BirthMonth.d.ts +9 -2
  113. package/dist/attributes/types/birth/BirthMonth.js +6 -0
  114. package/dist/attributes/types/birth/BirthMonth.js.map +1 -1
  115. package/dist/attributes/types/birth/BirthPlace.d.ts +40 -39
  116. package/dist/attributes/types/birth/BirthPlace.js +3 -0
  117. package/dist/attributes/types/birth/BirthPlace.js.map +1 -1
  118. package/dist/attributes/types/birth/BirthState.d.ts +9 -2
  119. package/dist/attributes/types/birth/BirthState.js +8 -2
  120. package/dist/attributes/types/birth/BirthState.js.map +1 -1
  121. package/dist/attributes/types/birth/BirthYear.d.ts +9 -2
  122. package/dist/attributes/types/birth/BirthYear.js +8 -2
  123. package/dist/attributes/types/birth/BirthYear.js.map +1 -1
  124. package/dist/attributes/types/communication/CommunicationLanguage.d.ts +9 -1
  125. package/dist/attributes/types/communication/CommunicationLanguage.js +6 -0
  126. package/dist/attributes/types/communication/CommunicationLanguage.js.map +1 -1
  127. package/dist/attributes/types/communication/EMailAddress.d.ts +9 -1
  128. package/dist/attributes/types/communication/EMailAddress.js +6 -0
  129. package/dist/attributes/types/communication/EMailAddress.js.map +1 -1
  130. package/dist/attributes/types/communication/FaxNumber.d.ts +11 -0
  131. package/dist/attributes/types/communication/{Fax.js → FaxNumber.js} +14 -8
  132. package/dist/attributes/types/communication/FaxNumber.js.map +1 -0
  133. package/dist/attributes/types/communication/PhoneNumber.d.ts +11 -0
  134. package/dist/attributes/types/communication/{Phone.js → PhoneNumber.js} +14 -8
  135. package/dist/attributes/types/communication/PhoneNumber.js.map +1 -0
  136. package/dist/attributes/types/communication/Website.d.ts +9 -1
  137. package/dist/attributes/types/communication/Website.js +6 -0
  138. package/dist/attributes/types/communication/Website.js.map +1 -1
  139. package/dist/attributes/types/communication/index.d.ts +2 -2
  140. package/dist/attributes/types/communication/index.js +2 -2
  141. package/dist/attributes/types/communication/index.js.map +1 -1
  142. package/dist/attributes/types/dates/AbstractDateString.js.map +1 -1
  143. package/dist/attributes/types/dates/AbstractDay.d.ts +8 -2
  144. package/dist/attributes/types/dates/AbstractDay.js.map +1 -1
  145. package/dist/attributes/types/dates/AbstractMonth.d.ts +8 -2
  146. package/dist/attributes/types/dates/AbstractMonth.js.map +1 -1
  147. package/dist/attributes/types/dates/AbstractYear.d.ts +7 -1
  148. package/dist/attributes/types/dates/AbstractYear.js.map +1 -1
  149. package/dist/attributes/types/identity/DisplayName.d.ts +10 -0
  150. package/dist/attributes/types/{name → identity}/DisplayName.js +6 -0
  151. package/dist/attributes/types/identity/DisplayName.js.map +1 -0
  152. package/dist/attributes/types/identity/FileReference.d.ts +11 -0
  153. package/dist/attributes/types/{files → identity}/FileReference.js +6 -0
  154. package/dist/attributes/types/identity/FileReference.js.map +1 -0
  155. package/dist/attributes/types/{files → identity}/index.d.ts +1 -0
  156. package/dist/attributes/types/{files → identity}/index.js +1 -0
  157. package/dist/attributes/types/identity/index.js.map +1 -0
  158. package/dist/attributes/types/index.d.ts +3 -3
  159. package/dist/attributes/types/index.js +3 -3
  160. package/dist/attributes/types/index.js.map +1 -1
  161. package/dist/attributes/types/measurements/AbstractLengthMeasurement.js.map +1 -1
  162. package/dist/attributes/types/measurements/AbstractMeasurement.js.map +1 -1
  163. package/dist/attributes/types/name/BirthName.d.ts +9 -2
  164. package/dist/attributes/types/name/BirthName.js +6 -0
  165. package/dist/attributes/types/name/BirthName.js.map +1 -1
  166. package/dist/attributes/types/name/GivenName.d.ts +9 -2
  167. package/dist/attributes/types/name/GivenName.js +6 -0
  168. package/dist/attributes/types/name/GivenName.js.map +1 -1
  169. package/dist/attributes/types/name/HonorificPrefix.d.ts +9 -2
  170. package/dist/attributes/types/name/HonorificPrefix.js +6 -0
  171. package/dist/attributes/types/name/HonorificPrefix.js.map +1 -1
  172. package/dist/attributes/types/name/HonorificSuffix.d.ts +9 -2
  173. package/dist/attributes/types/name/HonorificSuffix.js +6 -0
  174. package/dist/attributes/types/name/HonorificSuffix.js.map +1 -1
  175. package/dist/attributes/types/name/MiddleName.d.ts +10 -0
  176. package/dist/attributes/types/name/MiddleName.js +24 -0
  177. package/dist/attributes/types/name/MiddleName.js.map +1 -0
  178. package/dist/attributes/types/name/{Salutation.d.ts → PersonName.d.ts} +68 -73
  179. package/dist/attributes/types/name/{Salutation.js → PersonName.js} +35 -23
  180. package/dist/attributes/types/name/PersonName.js.map +1 -0
  181. package/dist/attributes/types/name/Pseudonym.d.ts +9 -2
  182. package/dist/attributes/types/name/Pseudonym.js +6 -0
  183. package/dist/attributes/types/name/Pseudonym.js.map +1 -1
  184. package/dist/attributes/types/name/Surname.d.ts +9 -2
  185. package/dist/attributes/types/name/Surname.js +6 -0
  186. package/dist/attributes/types/name/Surname.js.map +1 -1
  187. package/dist/attributes/types/name/index.d.ts +2 -4
  188. package/dist/attributes/types/name/index.js +2 -4
  189. package/dist/attributes/types/name/index.js.map +1 -1
  190. package/dist/attributes/types/person/Citizenship.d.ts +10 -2
  191. package/dist/attributes/types/person/Citizenship.js +8 -2
  192. package/dist/attributes/types/person/Citizenship.js.map +1 -1
  193. package/dist/attributes/types/person/JobTitle.d.ts +10 -0
  194. package/dist/attributes/types/person/JobTitle.js +24 -0
  195. package/dist/attributes/types/person/JobTitle.js.map +1 -0
  196. package/dist/attributes/types/person/Nationality.d.ts +10 -2
  197. package/dist/attributes/types/person/Nationality.js +8 -2
  198. package/dist/attributes/types/person/Nationality.js.map +1 -1
  199. package/dist/attributes/types/person/Sex.d.ts +10 -3
  200. package/dist/attributes/types/person/Sex.js +8 -2
  201. package/dist/attributes/types/person/Sex.js.map +1 -1
  202. package/dist/attributes/types/person/index.d.ts +1 -2
  203. package/dist/attributes/types/person/index.js +1 -2
  204. package/dist/attributes/types/person/index.js.map +1 -1
  205. package/dist/attributes/types/proprietary/ProprietaryBoolean.d.ts +5 -2
  206. package/dist/attributes/types/proprietary/ProprietaryBoolean.js +6 -0
  207. package/dist/attributes/types/proprietary/ProprietaryBoolean.js.map +1 -1
  208. package/dist/attributes/types/proprietary/ProprietaryCountry.d.ts +5 -2
  209. package/dist/attributes/types/proprietary/ProprietaryCountry.js +6 -0
  210. package/dist/attributes/types/proprietary/ProprietaryCountry.js.map +1 -1
  211. package/dist/attributes/types/proprietary/ProprietaryEMailAddress.d.ts +5 -2
  212. package/dist/attributes/types/proprietary/ProprietaryEMailAddress.js +6 -0
  213. package/dist/attributes/types/proprietary/ProprietaryEMailAddress.js.map +1 -1
  214. package/dist/attributes/types/proprietary/ProprietaryFileReference.d.ts +5 -2
  215. package/dist/attributes/types/proprietary/ProprietaryFileReference.js +6 -0
  216. package/dist/attributes/types/proprietary/ProprietaryFileReference.js.map +1 -1
  217. package/dist/attributes/types/proprietary/ProprietaryFloat.d.ts +5 -2
  218. package/dist/attributes/types/proprietary/ProprietaryFloat.js +6 -0
  219. package/dist/attributes/types/proprietary/ProprietaryFloat.js.map +1 -1
  220. package/dist/attributes/types/proprietary/ProprietaryHEXColor.d.ts +5 -2
  221. package/dist/attributes/types/proprietary/ProprietaryHEXColor.js +6 -0
  222. package/dist/attributes/types/proprietary/ProprietaryHEXColor.js.map +1 -1
  223. package/dist/attributes/types/proprietary/ProprietaryInteger.d.ts +5 -4
  224. package/dist/attributes/types/proprietary/ProprietaryInteger.js +3 -0
  225. package/dist/attributes/types/proprietary/ProprietaryInteger.js.map +1 -1
  226. package/dist/attributes/types/proprietary/ProprietaryLanguage.d.ts +5 -2
  227. package/dist/attributes/types/proprietary/ProprietaryLanguage.js +6 -0
  228. package/dist/attributes/types/proprietary/ProprietaryLanguage.js.map +1 -1
  229. package/dist/attributes/types/proprietary/ProprietaryPhoneNumber.d.ts +5 -2
  230. package/dist/attributes/types/proprietary/ProprietaryPhoneNumber.js +6 -0
  231. package/dist/attributes/types/proprietary/ProprietaryPhoneNumber.js.map +1 -1
  232. package/dist/attributes/types/proprietary/ProprietaryString.d.ts +5 -2
  233. package/dist/attributes/types/proprietary/ProprietaryString.js +6 -0
  234. package/dist/attributes/types/proprietary/ProprietaryString.js.map +1 -1
  235. package/dist/attributes/types/proprietary/ProprietaryURL.d.ts +5 -2
  236. package/dist/attributes/types/proprietary/ProprietaryURL.js +6 -0
  237. package/dist/attributes/types/proprietary/ProprietaryURL.js.map +1 -1
  238. package/dist/attributes/types/proprietary/index.d.ts +0 -1
  239. package/dist/attributes/types/proprietary/index.js +0 -1
  240. package/dist/attributes/types/proprietary/index.js.map +1 -1
  241. package/dist/attributes/types/relationship/Consent.d.ts +18 -0
  242. package/dist/attributes/types/relationship/Consent.js +73 -0
  243. package/dist/attributes/types/relationship/Consent.js.map +1 -0
  244. package/dist/attributes/types/relationship/index.d.ts +1 -0
  245. package/dist/attributes/types/relationship/index.js +18 -0
  246. package/dist/attributes/types/relationship/index.js.map +1 -0
  247. package/dist/attributes/types/strings/AbstractCountry.js.map +1 -1
  248. package/dist/attributes/types/strings/AbstractEMailAddress.js +2 -2
  249. package/dist/attributes/types/strings/AbstractEMailAddress.js.map +1 -1
  250. package/dist/attributes/types/strings/AbstractFileReference.js.map +1 -1
  251. package/dist/attributes/types/strings/AbstractHEXColor.js.map +1 -1
  252. package/dist/attributes/types/strings/AbstractLanguage.js.map +1 -1
  253. package/dist/attributes/types/strings/AbstractPhoneNumber.js.map +1 -1
  254. package/dist/attributes/types/strings/AbstractURL.js.map +1 -1
  255. package/dist/attributes/types/strings/index.d.ts +0 -1
  256. package/dist/attributes/types/strings/index.js +0 -1
  257. package/dist/attributes/types/strings/index.js.map +1 -1
  258. package/dist/buildInformation.js +5 -5
  259. package/dist/index.d.ts +0 -2
  260. package/dist/index.js +0 -2
  261. package/dist/index.js.map +1 -1
  262. package/dist/messages/Mail.d.ts +3 -2
  263. package/dist/messages/Mail.js +2 -8
  264. package/dist/messages/Mail.js.map +1 -1
  265. package/dist/relationships/RelationshipCreationChangeRequestContent.d.ts +15 -0
  266. package/dist/relationships/{RelationshipCreationChangeRequestBody.js → RelationshipCreationChangeRequestContent.js} +11 -13
  267. package/dist/relationships/RelationshipCreationChangeRequestContent.js.map +1 -0
  268. package/dist/relationships/RelationshipTemplateContent.d.ts +24 -0
  269. package/dist/relationships/{RelationshipTemplateBody.js → RelationshipTemplateContent.js} +14 -11
  270. package/dist/relationships/RelationshipTemplateContent.js.map +1 -0
  271. package/dist/relationships/index.d.ts +2 -2
  272. package/dist/relationships/index.js +2 -2
  273. package/dist/relationships/index.js.map +1 -1
  274. package/dist/requests/Request.d.ts +3 -2
  275. package/dist/requests/Request.js +2 -2
  276. package/dist/requests/Request.js.map +1 -1
  277. package/dist/requests/RequestItem.d.ts +17 -6
  278. package/dist/requests/RequestItem.js +7 -2
  279. package/dist/requests/RequestItem.js.map +1 -1
  280. package/dist/requests/RequestItemGroup.d.ts +5 -4
  281. package/dist/requests/RequestItemGroup.js +2 -2
  282. package/dist/requests/RequestItemGroup.js.map +1 -1
  283. package/dist/requests/index.d.ts +0 -3
  284. package/dist/requests/index.js +0 -3
  285. package/dist/requests/index.js.map +1 -1
  286. package/dist/requests/items/authentication/AuthenticationRequestItem.d.ts +10 -0
  287. package/dist/requests/items/authentication/AuthenticationRequestItem.js +24 -0
  288. package/dist/requests/items/authentication/AuthenticationRequestItem.js.map +1 -0
  289. package/dist/requests/items/consent/ConsentRequestItem.d.ts +3 -4
  290. package/dist/requests/items/consent/ConsentRequestItem.js +8 -7
  291. package/dist/requests/items/consent/ConsentRequestItem.js.map +1 -1
  292. package/dist/requests/items/createRelationshipAttribute/CreateAttributeAcceptResponseItem.d.ts +14 -0
  293. package/dist/requests/items/createRelationshipAttribute/{CreateRelationshipAttributeAcceptResponseItem.js → CreateAttributeAcceptResponseItem.js} +11 -8
  294. package/dist/requests/items/createRelationshipAttribute/CreateAttributeAcceptResponseItem.js.map +1 -0
  295. package/dist/requests/items/createRelationshipAttribute/CreateAttributeRequestItem.d.ts +15 -0
  296. package/dist/requests/items/createRelationshipAttribute/{CreateRelationshipAttributeRequestItem.js → CreateAttributeRequestItem.js} +13 -9
  297. package/dist/requests/items/createRelationshipAttribute/CreateAttributeRequestItem.js.map +1 -0
  298. package/dist/requests/items/index.d.ts +5 -2
  299. package/dist/requests/items/index.js +5 -2
  300. package/dist/requests/items/index.js.map +1 -1
  301. package/dist/requests/items/proposeAttribute/ProposeAttributeAcceptResponseItem.d.ts +2 -0
  302. package/dist/requests/items/proposeAttribute/ProposeAttributeAcceptResponseItem.js +3 -0
  303. package/dist/requests/items/proposeAttribute/ProposeAttributeAcceptResponseItem.js.map +1 -1
  304. package/dist/requests/items/proposeAttribute/ProposeAttributeRequestItem.d.ts +3 -1
  305. package/dist/requests/items/proposeAttribute/ProposeAttributeRequestItem.js +9 -4
  306. package/dist/requests/items/proposeAttribute/ProposeAttributeRequestItem.js.map +1 -1
  307. package/dist/requests/items/readAttribute/ReadAttributeAcceptResponseItem.d.ts +2 -0
  308. package/dist/requests/items/readAttribute/ReadAttributeAcceptResponseItem.js +3 -0
  309. package/dist/requests/items/readAttribute/ReadAttributeAcceptResponseItem.js.map +1 -1
  310. package/dist/requests/items/readAttribute/ReadAttributeRequestItem.d.ts +6 -5
  311. package/dist/requests/items/readAttribute/ReadAttributeRequestItem.js +5 -3
  312. package/dist/requests/items/readAttribute/ReadAttributeRequestItem.js.map +1 -1
  313. package/dist/requests/items/registerAttributeListener/RegisterAttributeListenerAcceptResponseItem.d.ts +13 -0
  314. package/dist/{forms/items/FormItemSelect.js → requests/items/registerAttributeListener/RegisterAttributeListenerAcceptResponseItem.js} +16 -16
  315. package/dist/requests/items/registerAttributeListener/RegisterAttributeListenerAcceptResponseItem.js.map +1 -0
  316. package/dist/requests/items/registerAttributeListener/RegisterAttributeListenerRequestItem.d.ts +14 -0
  317. package/dist/requests/items/registerAttributeListener/RegisterAttributeListenerRequestItem.js +35 -0
  318. package/dist/requests/items/registerAttributeListener/RegisterAttributeListenerRequestItem.js.map +1 -0
  319. package/dist/requests/items/shareAttribute/ShareAttributeAcceptResponseItem.d.ts +2 -0
  320. package/dist/requests/items/shareAttribute/ShareAttributeAcceptResponseItem.js +3 -0
  321. package/dist/requests/items/shareAttribute/ShareAttributeAcceptResponseItem.js.map +1 -1
  322. package/dist/requests/items/shareAttribute/ShareAttributeRequestItem.d.ts +3 -1
  323. package/dist/requests/items/shareAttribute/ShareAttributeRequestItem.js +3 -0
  324. package/dist/requests/items/shareAttribute/ShareAttributeRequestItem.js.map +1 -1
  325. package/dist/requests/response/AcceptResponseItem.d.ts +6 -6
  326. package/dist/requests/response/AcceptResponseItem.js +2 -2
  327. package/dist/requests/response/AcceptResponseItem.js.map +1 -1
  328. package/dist/requests/response/ErrorResponseItem.d.ts +3 -2
  329. package/dist/requests/response/ErrorResponseItem.js +2 -2
  330. package/dist/requests/response/ErrorResponseItem.js.map +1 -1
  331. package/dist/requests/response/RejectResponseItem.d.ts +3 -2
  332. package/dist/requests/response/RejectResponseItem.js +2 -2
  333. package/dist/requests/response/RejectResponseItem.js.map +1 -1
  334. package/dist/requests/response/Response.d.ts +3 -2
  335. package/dist/requests/response/Response.js +2 -2
  336. package/dist/requests/response/Response.js.map +1 -1
  337. package/dist/requests/response/ResponseItem.d.ts +1 -1
  338. package/dist/requests/response/ResponseItem.js +2 -2
  339. package/dist/requests/response/ResponseItem.js.map +1 -1
  340. package/dist/requests/response/ResponseItemGroup.d.ts +3 -2
  341. package/dist/requests/response/ResponseItemGroup.js +2 -2
  342. package/dist/requests/response/ResponseItemGroup.js.map +1 -1
  343. package/lib-web/nmshd.content.js +4739 -5812
  344. package/lib-web/nmshd.content.min.js +1 -1
  345. package/package.json +18 -17
  346. package/dist/attributes/Attribute.d.ts +0 -24
  347. package/dist/attributes/Attribute.js +0 -66
  348. package/dist/attributes/Attribute.js.map +0 -1
  349. package/dist/attributes/hints/RelationshipAttributeCreationHints.d.ts +0 -31
  350. package/dist/attributes/hints/RelationshipAttributeCreationHints.js +0 -64
  351. package/dist/attributes/hints/RelationshipAttributeCreationHints.js.map +0 -1
  352. package/dist/attributes/types/AttributeList.d.ts +0 -1
  353. package/dist/attributes/types/AttributeList.js +0 -37
  354. package/dist/attributes/types/AttributeList.js.map +0 -1
  355. package/dist/attributes/types/AttributeTypeMapping.d.ts +0 -1
  356. package/dist/attributes/types/AttributeTypeMapping.js +0 -9
  357. package/dist/attributes/types/AttributeTypeMapping.js.map +0 -1
  358. package/dist/attributes/types/communication/Fax.d.ts +0 -3
  359. package/dist/attributes/types/communication/Fax.js.map +0 -1
  360. package/dist/attributes/types/communication/Phone.d.ts +0 -3
  361. package/dist/attributes/types/communication/Phone.js.map +0 -1
  362. package/dist/attributes/types/files/FileReference.d.ts +0 -3
  363. package/dist/attributes/types/files/FileReference.js.map +0 -1
  364. package/dist/attributes/types/files/index.js.map +0 -1
  365. package/dist/attributes/types/name/AbstractLegalName.d.ts +0 -3
  366. package/dist/attributes/types/name/AbstractLegalName.js +0 -8
  367. package/dist/attributes/types/name/AbstractLegalName.js.map +0 -1
  368. package/dist/attributes/types/name/DisplayName.d.ts +0 -3
  369. package/dist/attributes/types/name/DisplayName.js.map +0 -1
  370. package/dist/attributes/types/name/LegalNameDE.js +0 -92
  371. package/dist/attributes/types/name/LegalNameDE.js.map +0 -1
  372. package/dist/attributes/types/name/Salutation.js.map +0 -1
  373. package/dist/attributes/types/person/Age.d.ts +0 -6
  374. package/dist/attributes/types/person/Age.js +0 -34
  375. package/dist/attributes/types/person/Age.js.map +0 -1
  376. package/dist/attributes/types/person/Picture.d.ts +0 -3
  377. package/dist/attributes/types/person/Picture.js +0 -18
  378. package/dist/attributes/types/person/Picture.js.map +0 -1
  379. package/dist/attributes/types/proprietary/ProprietaryDataURL.d.ts +0 -14
  380. package/dist/attributes/types/proprietary/ProprietaryDataURL.js +0 -31
  381. package/dist/attributes/types/proprietary/ProprietaryDataURL.js.map +0 -1
  382. package/dist/attributes/types/strings/AbstractDataURL.d.ts +0 -7
  383. package/dist/attributes/types/strings/AbstractDataURL.js +0 -40
  384. package/dist/attributes/types/strings/AbstractDataURL.js.map +0 -1
  385. package/dist/forms/Form.d.ts +0 -18
  386. package/dist/forms/Form.js +0 -36
  387. package/dist/forms/Form.js.map +0 -1
  388. package/dist/forms/FormItem.d.ts +0 -35
  389. package/dist/forms/FormItem.js.map +0 -1
  390. package/dist/forms/index.d.ts +0 -8
  391. package/dist/forms/index.js.map +0 -1
  392. package/dist/forms/items/FormItemBoolean.d.ts +0 -7
  393. package/dist/forms/items/FormItemBoolean.js +0 -26
  394. package/dist/forms/items/FormItemBoolean.js.map +0 -1
  395. package/dist/forms/items/FormItemDate.d.ts +0 -15
  396. package/dist/forms/items/FormItemDate.js +0 -46
  397. package/dist/forms/items/FormItemDate.js.map +0 -1
  398. package/dist/forms/items/FormItemInvisible.d.ts +0 -7
  399. package/dist/forms/items/FormItemInvisible.js +0 -26
  400. package/dist/forms/items/FormItemInvisible.js.map +0 -1
  401. package/dist/forms/items/FormItemMultipleChoice.d.ts +0 -10
  402. package/dist/forms/items/FormItemMultipleChoice.js +0 -32
  403. package/dist/forms/items/FormItemMultipleChoice.js.map +0 -1
  404. package/dist/forms/items/FormItemMultipleChoiceItem.d.ts +0 -10
  405. package/dist/forms/items/FormItemMultipleChoiceItem.js +0 -30
  406. package/dist/forms/items/FormItemMultipleChoiceItem.js.map +0 -1
  407. package/dist/forms/items/FormItemSelect.d.ts +0 -10
  408. package/dist/forms/items/FormItemSelect.js.map +0 -1
  409. package/dist/forms/items/FormItemSelectItem.d.ts +0 -10
  410. package/dist/forms/items/FormItemSelectItem.js +0 -30
  411. package/dist/forms/items/FormItemSelectItem.js.map +0 -1
  412. package/dist/forms/items/FormItemString.d.ts +0 -15
  413. package/dist/forms/items/FormItemString.js +0 -46
  414. package/dist/forms/items/FormItemString.js.map +0 -1
  415. package/dist/forms/items/FormItemText.d.ts +0 -15
  416. package/dist/forms/items/FormItemText.js +0 -46
  417. package/dist/forms/items/FormItemText.js.map +0 -1
  418. package/dist/messages/RequestMail.d.ts +0 -14
  419. package/dist/messages/RequestMail.js +0 -51
  420. package/dist/messages/RequestMail.js.map +0 -1
  421. package/dist/relationships/RelationshipCreationChangeRequestBody.d.ts +0 -16
  422. package/dist/relationships/RelationshipCreationChangeRequestBody.js.map +0 -1
  423. package/dist/relationships/RelationshipTemplateBody.d.ts +0 -22
  424. package/dist/relationships/RelationshipTemplateBody.js.map +0 -1
  425. package/dist/requests/items/createRelationshipAttribute/CreateRelationshipAttributeAcceptResponseItem.d.ts +0 -12
  426. package/dist/requests/items/createRelationshipAttribute/CreateRelationshipAttributeAcceptResponseItem.js.map +0 -1
  427. package/dist/requests/items/createRelationshipAttribute/CreateRelationshipAttributeRequestItem.d.ts +0 -13
  428. package/dist/requests/items/createRelationshipAttribute/CreateRelationshipAttributeRequestItem.js.map +0 -1
  429. package/dist/requests/old/AttributesChangeRequest.d.ts +0 -54
  430. package/dist/requests/old/AttributesChangeRequest.js +0 -71
  431. package/dist/requests/old/AttributesChangeRequest.js.map +0 -1
  432. package/dist/requests/old/AttributesRequest.d.ts +0 -49
  433. package/dist/requests/old/AttributesRequest.js +0 -64
  434. package/dist/requests/old/AttributesRequest.js.map +0 -1
  435. package/dist/requests/old/AttributesShareRequest.d.ts +0 -52
  436. package/dist/requests/old/AttributesShareRequest.js +0 -59
  437. package/dist/requests/old/AttributesShareRequest.js.map +0 -1
@@ -1,570 +1,22 @@
1
- import { AbstractComplexValueJSON, IAbstractComplexValue } from "../../AbstractComplexValue";
1
+ import { AbstractComplexValue, AbstractComplexValueJSON, IAbstractComplexValue } from "../../AbstractComplexValue";
2
2
  import { RenderHints, ValueHints } from "../../hints";
3
- import { AbstractStringJSON, IAbstractString } from "../AbstractString";
4
- import { LegalName } from "./AbstractLegalName";
5
- import { BirthName } from "./BirthName";
6
- import { GivenName } from "./GivenName";
7
- import { HonorificPrefix } from "./HonorificPrefix";
8
- import { Pseudonym } from "./Pseudonym";
9
- import { Surname } from "./Surname";
10
- export interface LegalNameDEJSON extends AbstractComplexValueJSON {
11
- surname: AbstractStringJSON;
12
- givenNames: AbstractStringJSON[];
13
- birthName?: AbstractStringJSON;
14
- pseudonym?: AbstractStringJSON;
15
- honorificPrefix?: AbstractStringJSON;
3
+ import { AffiliationOrganization } from "./AffiliationOrganization";
4
+ import { AffiliationRole, IAffiliationRole } from "./AffiliationRole";
5
+ import { AffiliationUnit, IAffiliationUnit } from "./AffiliationUnit";
6
+ export interface AffiliationJSON extends AbstractComplexValueJSON {
7
+ "@type": "Affiliation";
8
+ organization: string;
9
+ role?: string;
10
+ unit?: string;
16
11
  }
17
- export interface ILegalNameDE extends IAbstractComplexValue {
18
- surname: Surname | IAbstractString | string;
19
- givenNames: GivenName[] | IAbstractString[] | string[];
20
- birthName?: BirthName | IAbstractString | string;
21
- pseudonym?: Pseudonym | IAbstractString | string;
22
- honorificPrefix?: HonorificPrefix | IAbstractString | string;
12
+ export interface IAffiliation extends IAbstractComplexValue {
13
+ organization: AffiliationOrganization | string;
14
+ role?: IAffiliationRole | string;
15
+ unit?: IAffiliationUnit | string;
23
16
  }
24
- export declare class LegalNameDE extends LegalName {
17
+ export declare class Affiliation extends AbstractComplexValue implements IAffiliation {
25
18
  static readonly propertyNames: {
26
- surname: {
27
- value: import("easy-tsnameof").PathHandlers<{
28
- $path: (path: import("easy-tsnameof").PathKey[]) => string;
29
- $rawPath: (path: import("easy-tsnameof").PathKey[]) => import("easy-tsnameof").PathKey[];
30
- toString: (path: import("easy-tsnameof").PathKey[]) => () => string;
31
- valueOf: (path: import("easy-tsnameof").PathKey[]) => () => string;
32
- [Symbol.toStringTag]: (path: import("easy-tsnameof").PathKey[]) => string;
33
- }>;
34
- toString: import("easy-tsnameof").PathHandlers<{
35
- $path: (path: import("easy-tsnameof").PathKey[]) => string;
36
- $rawPath: (path: import("easy-tsnameof").PathKey[]) => import("easy-tsnameof").PathKey[];
37
- toString: (path: import("easy-tsnameof").PathKey[]) => () => string;
38
- valueOf: (path: import("easy-tsnameof").PathKey[]) => () => string;
39
- [Symbol.toStringTag]: (path: import("easy-tsnameof").PathKey[]) => string;
40
- }>;
41
- readonly valueHints: {
42
- editHelp: import("easy-tsnameof").PathHandlers<{
43
- $path: (path: import("easy-tsnameof").PathKey[]) => string;
44
- $rawPath: (path: import("easy-tsnameof").PathKey[]) => import("easy-tsnameof").PathKey[];
45
- toString: (path: import("easy-tsnameof").PathKey[]) => () => string;
46
- valueOf: (path: import("easy-tsnameof").PathKey[]) => () => string;
47
- [Symbol.toStringTag]: (path: import("easy-tsnameof").PathKey[]) => string;
48
- }>;
49
- min: import("easy-tsnameof").PathHandlers<{
50
- $path: (path: import("easy-tsnameof").PathKey[]) => string;
51
- $rawPath: (path: import("easy-tsnameof").PathKey[]) => import("easy-tsnameof").PathKey[];
52
- toString: (path: import("easy-tsnameof").PathKey[]) => () => string;
53
- valueOf: (path: import("easy-tsnameof").PathKey[]) => () => string;
54
- [Symbol.toStringTag]: (path: import("easy-tsnameof").PathKey[]) => string;
55
- }>;
56
- max: import("easy-tsnameof").PathHandlers<{
57
- $path: (path: import("easy-tsnameof").PathKey[]) => string;
58
- $rawPath: (path: import("easy-tsnameof").PathKey[]) => import("easy-tsnameof").PathKey[];
59
- toString: (path: import("easy-tsnameof").PathKey[]) => () => string;
60
- valueOf: (path: import("easy-tsnameof").PathKey[]) => () => string;
61
- [Symbol.toStringTag]: (path: import("easy-tsnameof").PathKey[]) => string;
62
- }>;
63
- pattern: import("easy-tsnameof").PathHandlers<{
64
- $path: (path: import("easy-tsnameof").PathKey[]) => string;
65
- $rawPath: (path: import("easy-tsnameof").PathKey[]) => import("easy-tsnameof").PathKey[];
66
- toString: (path: import("easy-tsnameof").PathKey[]) => () => string;
67
- valueOf: (path: import("easy-tsnameof").PathKey[]) => () => string;
68
- [Symbol.toStringTag]: (path: import("easy-tsnameof").PathKey[]) => string;
69
- }>;
70
- values: ({
71
- displayName: import("easy-tsnameof").PathHandlers<{
72
- $path: (path: import("easy-tsnameof").PathKey[]) => string;
73
- $rawPath: (path: import("easy-tsnameof").PathKey[]) => import("easy-tsnameof").PathKey[];
74
- toString: (path: import("easy-tsnameof").PathKey[]) => () => string;
75
- valueOf: (path: import("easy-tsnameof").PathKey[]) => () => string;
76
- [Symbol.toStringTag]: (path: import("easy-tsnameof").PathKey[]) => string;
77
- }>;
78
- key: import("easy-tsnameof").PathHandlers<{
79
- $path: (path: import("easy-tsnameof").PathKey[]) => string;
80
- $rawPath: (path: import("easy-tsnameof").PathKey[]) => import("easy-tsnameof").PathKey[];
81
- toString: (path: import("easy-tsnameof").PathKey[]) => () => string;
82
- valueOf: (path: import("easy-tsnameof").PathKey[]) => () => string;
83
- [Symbol.toStringTag]: (path: import("easy-tsnameof").PathKey[]) => string;
84
- }>;
85
- validate: import("easy-tsnameof").PathHandlers<{
86
- $path: (path: import("easy-tsnameof").PathKey[]) => string;
87
- $rawPath: (path: import("easy-tsnameof").PathKey[]) => import("easy-tsnameof").PathKey[];
88
- toString: (path: import("easy-tsnameof").PathKey[]) => () => string;
89
- valueOf: (path: import("easy-tsnameof").PathKey[]) => () => string;
90
- [Symbol.toStringTag]: (path: import("easy-tsnameof").PathKey[]) => string;
91
- }>;
92
- validateProperty: import("easy-tsnameof").PathHandlers<{
93
- $path: (path: import("easy-tsnameof").PathKey[]) => string;
94
- $rawPath: (path: import("easy-tsnameof").PathKey[]) => import("easy-tsnameof").PathKey[];
95
- toString: (path: import("easy-tsnameof").PathKey[]) => () => string;
96
- valueOf: (path: import("easy-tsnameof").PathKey[]) => () => string;
97
- [Symbol.toStringTag]: (path: import("easy-tsnameof").PathKey[]) => string;
98
- }>;
99
- serialize: import("easy-tsnameof").PathHandlers<{
100
- $path: (path: import("easy-tsnameof").PathKey[]) => string;
101
- $rawPath: (path: import("easy-tsnameof").PathKey[]) => import("easy-tsnameof").PathKey[];
102
- toString: (path: import("easy-tsnameof").PathKey[]) => () => string;
103
- valueOf: (path: import("easy-tsnameof").PathKey[]) => () => string;
104
- [Symbol.toStringTag]: (path: import("easy-tsnameof").PathKey[]) => string;
105
- }>;
106
- toJSON: import("easy-tsnameof").PathHandlers<{
107
- $path: (path: import("easy-tsnameof").PathKey[]) => string;
108
- $rawPath: (path: import("easy-tsnameof").PathKey[]) => import("easy-tsnameof").PathKey[];
109
- toString: (path: import("easy-tsnameof").PathKey[]) => () => string;
110
- valueOf: (path: import("easy-tsnameof").PathKey[]) => () => string;
111
- [Symbol.toStringTag]: (path: import("easy-tsnameof").PathKey[]) => string;
112
- }>;
113
- } & import("easy-tsnameof").PathHandlers<{
114
- $path: (path: import("easy-tsnameof").PathKey[]) => string;
115
- $rawPath: (path: import("easy-tsnameof").PathKey[]) => import("easy-tsnameof").PathKey[];
116
- toString: (path: import("easy-tsnameof").PathKey[]) => () => string;
117
- valueOf: (path: import("easy-tsnameof").PathKey[]) => () => string;
118
- [Symbol.toStringTag]: (path: import("easy-tsnameof").PathKey[]) => string;
119
- }>)[] & import("easy-tsnameof").PathHandlers<{
120
- $path: (path: import("easy-tsnameof").PathKey[]) => string;
121
- $rawPath: (path: import("easy-tsnameof").PathKey[]) => import("easy-tsnameof").PathKey[];
122
- toString: (path: import("easy-tsnameof").PathKey[]) => () => string;
123
- valueOf: (path: import("easy-tsnameof").PathKey[]) => () => string;
124
- [Symbol.toStringTag]: (path: import("easy-tsnameof").PathKey[]) => string;
125
- }>;
126
- defaultValue: import("easy-tsnameof").PathHandlers<{
127
- $path: (path: import("easy-tsnameof").PathKey[]) => string;
128
- $rawPath: (path: import("easy-tsnameof").PathKey[]) => import("easy-tsnameof").PathKey[];
129
- toString: (path: import("easy-tsnameof").PathKey[]) => () => string;
130
- valueOf: (path: import("easy-tsnameof").PathKey[]) => () => string;
131
- [Symbol.toStringTag]: (path: import("easy-tsnameof").PathKey[]) => string;
132
- }>;
133
- propertyHints: {
134
- [x: string]: any & import("easy-tsnameof").PathHandlers<{
135
- $path: (path: import("easy-tsnameof").PathKey[]) => string;
136
- $rawPath: (path: import("easy-tsnameof").PathKey[]) => import("easy-tsnameof").PathKey[];
137
- toString: (path: import("easy-tsnameof").PathKey[]) => () => string;
138
- valueOf: (path: import("easy-tsnameof").PathKey[]) => () => string;
139
- [Symbol.toStringTag]: (path: import("easy-tsnameof").PathKey[]) => string;
140
- }>;
141
- } & import("easy-tsnameof").PathHandlers<{
142
- $path: (path: import("easy-tsnameof").PathKey[]) => string;
143
- $rawPath: (path: import("easy-tsnameof").PathKey[]) => import("easy-tsnameof").PathKey[];
144
- toString: (path: import("easy-tsnameof").PathKey[]) => () => string;
145
- valueOf: (path: import("easy-tsnameof").PathKey[]) => () => string;
146
- [Symbol.toStringTag]: (path: import("easy-tsnameof").PathKey[]) => string;
147
- }>;
148
- toJSON: import("easy-tsnameof").PathHandlers<{
149
- $path: (path: import("easy-tsnameof").PathKey[]) => string;
150
- $rawPath: (path: import("easy-tsnameof").PathKey[]) => import("easy-tsnameof").PathKey[];
151
- toString: (path: import("easy-tsnameof").PathKey[]) => () => string;
152
- valueOf: (path: import("easy-tsnameof").PathKey[]) => () => string;
153
- [Symbol.toStringTag]: (path: import("easy-tsnameof").PathKey[]) => string;
154
- }>;
155
- copyWith: import("easy-tsnameof").PathHandlers<{
156
- $path: (path: import("easy-tsnameof").PathKey[]) => string;
157
- $rawPath: (path: import("easy-tsnameof").PathKey[]) => import("easy-tsnameof").PathKey[];
158
- toString: (path: import("easy-tsnameof").PathKey[]) => () => string;
159
- valueOf: (path: import("easy-tsnameof").PathKey[]) => () => string;
160
- [Symbol.toStringTag]: (path: import("easy-tsnameof").PathKey[]) => string;
161
- }>;
162
- validate: import("easy-tsnameof").PathHandlers<{
163
- $path: (path: import("easy-tsnameof").PathKey[]) => string;
164
- $rawPath: (path: import("easy-tsnameof").PathKey[]) => import("easy-tsnameof").PathKey[];
165
- toString: (path: import("easy-tsnameof").PathKey[]) => () => string;
166
- valueOf: (path: import("easy-tsnameof").PathKey[]) => () => string;
167
- [Symbol.toStringTag]: (path: import("easy-tsnameof").PathKey[]) => string;
168
- }>;
169
- validateProperty: import("easy-tsnameof").PathHandlers<{
170
- $path: (path: import("easy-tsnameof").PathKey[]) => string;
171
- $rawPath: (path: import("easy-tsnameof").PathKey[]) => import("easy-tsnameof").PathKey[];
172
- toString: (path: import("easy-tsnameof").PathKey[]) => () => string;
173
- valueOf: (path: import("easy-tsnameof").PathKey[]) => () => string;
174
- [Symbol.toStringTag]: (path: import("easy-tsnameof").PathKey[]) => string;
175
- }>;
176
- serialize: import("easy-tsnameof").PathHandlers<{
177
- $path: (path: import("easy-tsnameof").PathKey[]) => string;
178
- $rawPath: (path: import("easy-tsnameof").PathKey[]) => import("easy-tsnameof").PathKey[];
179
- toString: (path: import("easy-tsnameof").PathKey[]) => () => string;
180
- valueOf: (path: import("easy-tsnameof").PathKey[]) => () => string;
181
- [Symbol.toStringTag]: (path: import("easy-tsnameof").PathKey[]) => string;
182
- }>;
183
- } & import("easy-tsnameof").PathHandlers<{
184
- $path: (path: import("easy-tsnameof").PathKey[]) => string;
185
- $rawPath: (path: import("easy-tsnameof").PathKey[]) => import("easy-tsnameof").PathKey[];
186
- toString: (path: import("easy-tsnameof").PathKey[]) => () => string;
187
- valueOf: (path: import("easy-tsnameof").PathKey[]) => () => string;
188
- [Symbol.toStringTag]: (path: import("easy-tsnameof").PathKey[]) => string;
189
- }>;
190
- readonly renderHints: {
191
- technicalType: import("easy-tsnameof").PathHandlers<{
192
- $path: (path: import("easy-tsnameof").PathKey[]) => string;
193
- $rawPath: (path: import("easy-tsnameof").PathKey[]) => import("easy-tsnameof").PathKey[];
194
- toString: (path: import("easy-tsnameof").PathKey[]) => () => string;
195
- valueOf: (path: import("easy-tsnameof").PathKey[]) => () => string;
196
- [Symbol.toStringTag]: (path: import("easy-tsnameof").PathKey[]) => string;
197
- }>;
198
- editType: import("easy-tsnameof").PathHandlers<{
199
- $path: (path: import("easy-tsnameof").PathKey[]) => string;
200
- $rawPath: (path: import("easy-tsnameof").PathKey[]) => import("easy-tsnameof").PathKey[];
201
- toString: (path: import("easy-tsnameof").PathKey[]) => () => string;
202
- valueOf: (path: import("easy-tsnameof").PathKey[]) => () => string;
203
- [Symbol.toStringTag]: (path: import("easy-tsnameof").PathKey[]) => string;
204
- }>;
205
- dataType: import("easy-tsnameof").PathHandlers<{
206
- $path: (path: import("easy-tsnameof").PathKey[]) => string;
207
- $rawPath: (path: import("easy-tsnameof").PathKey[]) => import("easy-tsnameof").PathKey[];
208
- toString: (path: import("easy-tsnameof").PathKey[]) => () => string;
209
- valueOf: (path: import("easy-tsnameof").PathKey[]) => () => string;
210
- [Symbol.toStringTag]: (path: import("easy-tsnameof").PathKey[]) => string;
211
- }>;
212
- propertyHints: {
213
- [x: string]: any & import("easy-tsnameof").PathHandlers<{
214
- $path: (path: import("easy-tsnameof").PathKey[]) => string;
215
- $rawPath: (path: import("easy-tsnameof").PathKey[]) => import("easy-tsnameof").PathKey[];
216
- toString: (path: import("easy-tsnameof").PathKey[]) => () => string;
217
- valueOf: (path: import("easy-tsnameof").PathKey[]) => () => string;
218
- [Symbol.toStringTag]: (path: import("easy-tsnameof").PathKey[]) => string;
219
- }>;
220
- } & import("easy-tsnameof").PathHandlers<{
221
- $path: (path: import("easy-tsnameof").PathKey[]) => string;
222
- $rawPath: (path: import("easy-tsnameof").PathKey[]) => import("easy-tsnameof").PathKey[];
223
- toString: (path: import("easy-tsnameof").PathKey[]) => () => string;
224
- valueOf: (path: import("easy-tsnameof").PathKey[]) => () => string;
225
- [Symbol.toStringTag]: (path: import("easy-tsnameof").PathKey[]) => string;
226
- }>;
227
- toJSON: import("easy-tsnameof").PathHandlers<{
228
- $path: (path: import("easy-tsnameof").PathKey[]) => string;
229
- $rawPath: (path: import("easy-tsnameof").PathKey[]) => import("easy-tsnameof").PathKey[];
230
- toString: (path: import("easy-tsnameof").PathKey[]) => () => string;
231
- valueOf: (path: import("easy-tsnameof").PathKey[]) => () => string;
232
- [Symbol.toStringTag]: (path: import("easy-tsnameof").PathKey[]) => string;
233
- }>;
234
- copyWith: import("easy-tsnameof").PathHandlers<{
235
- $path: (path: import("easy-tsnameof").PathKey[]) => string;
236
- $rawPath: (path: import("easy-tsnameof").PathKey[]) => import("easy-tsnameof").PathKey[];
237
- toString: (path: import("easy-tsnameof").PathKey[]) => () => string;
238
- valueOf: (path: import("easy-tsnameof").PathKey[]) => () => string;
239
- [Symbol.toStringTag]: (path: import("easy-tsnameof").PathKey[]) => string;
240
- }>;
241
- validate: import("easy-tsnameof").PathHandlers<{
242
- $path: (path: import("easy-tsnameof").PathKey[]) => string;
243
- $rawPath: (path: import("easy-tsnameof").PathKey[]) => import("easy-tsnameof").PathKey[];
244
- toString: (path: import("easy-tsnameof").PathKey[]) => () => string;
245
- valueOf: (path: import("easy-tsnameof").PathKey[]) => () => string;
246
- [Symbol.toStringTag]: (path: import("easy-tsnameof").PathKey[]) => string;
247
- }>;
248
- validateProperty: import("easy-tsnameof").PathHandlers<{
249
- $path: (path: import("easy-tsnameof").PathKey[]) => string;
250
- $rawPath: (path: import("easy-tsnameof").PathKey[]) => import("easy-tsnameof").PathKey[];
251
- toString: (path: import("easy-tsnameof").PathKey[]) => () => string;
252
- valueOf: (path: import("easy-tsnameof").PathKey[]) => () => string;
253
- [Symbol.toStringTag]: (path: import("easy-tsnameof").PathKey[]) => string;
254
- }>;
255
- serialize: import("easy-tsnameof").PathHandlers<{
256
- $path: (path: import("easy-tsnameof").PathKey[]) => string;
257
- $rawPath: (path: import("easy-tsnameof").PathKey[]) => import("easy-tsnameof").PathKey[];
258
- toString: (path: import("easy-tsnameof").PathKey[]) => () => string;
259
- valueOf: (path: import("easy-tsnameof").PathKey[]) => () => string;
260
- [Symbol.toStringTag]: (path: import("easy-tsnameof").PathKey[]) => string;
261
- }>;
262
- } & import("easy-tsnameof").PathHandlers<{
263
- $path: (path: import("easy-tsnameof").PathKey[]) => string;
264
- $rawPath: (path: import("easy-tsnameof").PathKey[]) => import("easy-tsnameof").PathKey[];
265
- toString: (path: import("easy-tsnameof").PathKey[]) => () => string;
266
- valueOf: (path: import("easy-tsnameof").PathKey[]) => () => string;
267
- [Symbol.toStringTag]: (path: import("easy-tsnameof").PathKey[]) => string;
268
- }>;
269
- validate: import("easy-tsnameof").PathHandlers<{
270
- $path: (path: import("easy-tsnameof").PathKey[]) => string;
271
- $rawPath: (path: import("easy-tsnameof").PathKey[]) => import("easy-tsnameof").PathKey[];
272
- toString: (path: import("easy-tsnameof").PathKey[]) => () => string;
273
- valueOf: (path: import("easy-tsnameof").PathKey[]) => () => string;
274
- [Symbol.toStringTag]: (path: import("easy-tsnameof").PathKey[]) => string;
275
- }>;
276
- validateProperty: import("easy-tsnameof").PathHandlers<{
277
- $path: (path: import("easy-tsnameof").PathKey[]) => string;
278
- $rawPath: (path: import("easy-tsnameof").PathKey[]) => import("easy-tsnameof").PathKey[];
279
- toString: (path: import("easy-tsnameof").PathKey[]) => () => string;
280
- valueOf: (path: import("easy-tsnameof").PathKey[]) => () => string;
281
- [Symbol.toStringTag]: (path: import("easy-tsnameof").PathKey[]) => string;
282
- }>;
283
- serialize: import("easy-tsnameof").PathHandlers<{
284
- $path: (path: import("easy-tsnameof").PathKey[]) => string;
285
- $rawPath: (path: import("easy-tsnameof").PathKey[]) => import("easy-tsnameof").PathKey[];
286
- toString: (path: import("easy-tsnameof").PathKey[]) => () => string;
287
- valueOf: (path: import("easy-tsnameof").PathKey[]) => () => string;
288
- [Symbol.toStringTag]: (path: import("easy-tsnameof").PathKey[]) => string;
289
- }>;
290
- toJSON: import("easy-tsnameof").PathHandlers<{
291
- $path: (path: import("easy-tsnameof").PathKey[]) => string;
292
- $rawPath: (path: import("easy-tsnameof").PathKey[]) => import("easy-tsnameof").PathKey[];
293
- toString: (path: import("easy-tsnameof").PathKey[]) => () => string;
294
- valueOf: (path: import("easy-tsnameof").PathKey[]) => () => string;
295
- [Symbol.toStringTag]: (path: import("easy-tsnameof").PathKey[]) => string;
296
- }>;
297
- } & import("easy-tsnameof").PathHandlers<{
298
- $path: (path: import("easy-tsnameof").PathKey[]) => string;
299
- $rawPath: (path: import("easy-tsnameof").PathKey[]) => import("easy-tsnameof").PathKey[];
300
- toString: (path: import("easy-tsnameof").PathKey[]) => () => string;
301
- valueOf: (path: import("easy-tsnameof").PathKey[]) => () => string;
302
- [Symbol.toStringTag]: (path: import("easy-tsnameof").PathKey[]) => string;
303
- }>;
304
- givenNames: ({
305
- value: import("easy-tsnameof").PathHandlers<{
306
- $path: (path: import("easy-tsnameof").PathKey[]) => string;
307
- $rawPath: (path: import("easy-tsnameof").PathKey[]) => import("easy-tsnameof").PathKey[];
308
- toString: (path: import("easy-tsnameof").PathKey[]) => () => string;
309
- valueOf: (path: import("easy-tsnameof").PathKey[]) => () => string;
310
- [Symbol.toStringTag]: (path: import("easy-tsnameof").PathKey[]) => string;
311
- }>;
312
- toString: import("easy-tsnameof").PathHandlers<{
313
- $path: (path: import("easy-tsnameof").PathKey[]) => string;
314
- $rawPath: (path: import("easy-tsnameof").PathKey[]) => import("easy-tsnameof").PathKey[];
315
- toString: (path: import("easy-tsnameof").PathKey[]) => () => string;
316
- valueOf: (path: import("easy-tsnameof").PathKey[]) => () => string;
317
- [Symbol.toStringTag]: (path: import("easy-tsnameof").PathKey[]) => string;
318
- }>;
319
- readonly valueHints: {
320
- editHelp: import("easy-tsnameof").PathHandlers<{
321
- $path: (path: import("easy-tsnameof").PathKey[]) => string;
322
- $rawPath: (path: import("easy-tsnameof").PathKey[]) => import("easy-tsnameof").PathKey[];
323
- toString: (path: import("easy-tsnameof").PathKey[]) => () => string;
324
- valueOf: (path: import("easy-tsnameof").PathKey[]) => () => string;
325
- [Symbol.toStringTag]: (path: import("easy-tsnameof").PathKey[]) => string;
326
- }>;
327
- min: import("easy-tsnameof").PathHandlers<{
328
- $path: (path: import("easy-tsnameof").PathKey[]) => string;
329
- $rawPath: (path: import("easy-tsnameof").PathKey[]) => import("easy-tsnameof").PathKey[];
330
- toString: (path: import("easy-tsnameof").PathKey[]) => () => string;
331
- valueOf: (path: import("easy-tsnameof").PathKey[]) => () => string;
332
- [Symbol.toStringTag]: (path: import("easy-tsnameof").PathKey[]) => string;
333
- }>;
334
- max: import("easy-tsnameof").PathHandlers<{
335
- $path: (path: import("easy-tsnameof").PathKey[]) => string;
336
- $rawPath: (path: import("easy-tsnameof").PathKey[]) => import("easy-tsnameof").PathKey[];
337
- toString: (path: import("easy-tsnameof").PathKey[]) => () => string;
338
- valueOf: (path: import("easy-tsnameof").PathKey[]) => () => string;
339
- [Symbol.toStringTag]: (path: import("easy-tsnameof").PathKey[]) => string;
340
- }>;
341
- pattern: import("easy-tsnameof").PathHandlers<{
342
- $path: (path: import("easy-tsnameof").PathKey[]) => string;
343
- $rawPath: (path: import("easy-tsnameof").PathKey[]) => import("easy-tsnameof").PathKey[];
344
- toString: (path: import("easy-tsnameof").PathKey[]) => () => string;
345
- valueOf: (path: import("easy-tsnameof").PathKey[]) => () => string;
346
- [Symbol.toStringTag]: (path: import("easy-tsnameof").PathKey[]) => string;
347
- }>;
348
- values: ({
349
- displayName: import("easy-tsnameof").PathHandlers<{
350
- $path: (path: import("easy-tsnameof").PathKey[]) => string;
351
- $rawPath: (path: import("easy-tsnameof").PathKey[]) => import("easy-tsnameof").PathKey[];
352
- toString: (path: import("easy-tsnameof").PathKey[]) => () => string;
353
- valueOf: (path: import("easy-tsnameof").PathKey[]) => () => string;
354
- [Symbol.toStringTag]: (path: import("easy-tsnameof").PathKey[]) => string;
355
- }>;
356
- key: import("easy-tsnameof").PathHandlers<{
357
- $path: (path: import("easy-tsnameof").PathKey[]) => string;
358
- $rawPath: (path: import("easy-tsnameof").PathKey[]) => import("easy-tsnameof").PathKey[];
359
- toString: (path: import("easy-tsnameof").PathKey[]) => () => string;
360
- valueOf: (path: import("easy-tsnameof").PathKey[]) => () => string;
361
- [Symbol.toStringTag]: (path: import("easy-tsnameof").PathKey[]) => string;
362
- }>;
363
- validate: import("easy-tsnameof").PathHandlers<{
364
- $path: (path: import("easy-tsnameof").PathKey[]) => string;
365
- $rawPath: (path: import("easy-tsnameof").PathKey[]) => import("easy-tsnameof").PathKey[];
366
- toString: (path: import("easy-tsnameof").PathKey[]) => () => string;
367
- valueOf: (path: import("easy-tsnameof").PathKey[]) => () => string;
368
- [Symbol.toStringTag]: (path: import("easy-tsnameof").PathKey[]) => string;
369
- }>;
370
- validateProperty: import("easy-tsnameof").PathHandlers<{
371
- $path: (path: import("easy-tsnameof").PathKey[]) => string;
372
- $rawPath: (path: import("easy-tsnameof").PathKey[]) => import("easy-tsnameof").PathKey[];
373
- toString: (path: import("easy-tsnameof").PathKey[]) => () => string;
374
- valueOf: (path: import("easy-tsnameof").PathKey[]) => () => string;
375
- [Symbol.toStringTag]: (path: import("easy-tsnameof").PathKey[]) => string;
376
- }>;
377
- serialize: import("easy-tsnameof").PathHandlers<{
378
- $path: (path: import("easy-tsnameof").PathKey[]) => string;
379
- $rawPath: (path: import("easy-tsnameof").PathKey[]) => import("easy-tsnameof").PathKey[];
380
- toString: (path: import("easy-tsnameof").PathKey[]) => () => string;
381
- valueOf: (path: import("easy-tsnameof").PathKey[]) => () => string;
382
- [Symbol.toStringTag]: (path: import("easy-tsnameof").PathKey[]) => string;
383
- }>;
384
- toJSON: import("easy-tsnameof").PathHandlers<{
385
- $path: (path: import("easy-tsnameof").PathKey[]) => string;
386
- $rawPath: (path: import("easy-tsnameof").PathKey[]) => import("easy-tsnameof").PathKey[];
387
- toString: (path: import("easy-tsnameof").PathKey[]) => () => string;
388
- valueOf: (path: import("easy-tsnameof").PathKey[]) => () => string;
389
- [Symbol.toStringTag]: (path: import("easy-tsnameof").PathKey[]) => string;
390
- }>;
391
- } & import("easy-tsnameof").PathHandlers<{
392
- $path: (path: import("easy-tsnameof").PathKey[]) => string;
393
- $rawPath: (path: import("easy-tsnameof").PathKey[]) => import("easy-tsnameof").PathKey[];
394
- toString: (path: import("easy-tsnameof").PathKey[]) => () => string;
395
- valueOf: (path: import("easy-tsnameof").PathKey[]) => () => string;
396
- [Symbol.toStringTag]: (path: import("easy-tsnameof").PathKey[]) => string;
397
- }>)[] & import("easy-tsnameof").PathHandlers<{
398
- $path: (path: import("easy-tsnameof").PathKey[]) => string;
399
- $rawPath: (path: import("easy-tsnameof").PathKey[]) => import("easy-tsnameof").PathKey[];
400
- toString: (path: import("easy-tsnameof").PathKey[]) => () => string;
401
- valueOf: (path: import("easy-tsnameof").PathKey[]) => () => string;
402
- [Symbol.toStringTag]: (path: import("easy-tsnameof").PathKey[]) => string;
403
- }>;
404
- defaultValue: import("easy-tsnameof").PathHandlers<{
405
- $path: (path: import("easy-tsnameof").PathKey[]) => string;
406
- $rawPath: (path: import("easy-tsnameof").PathKey[]) => import("easy-tsnameof").PathKey[];
407
- toString: (path: import("easy-tsnameof").PathKey[]) => () => string;
408
- valueOf: (path: import("easy-tsnameof").PathKey[]) => () => string;
409
- [Symbol.toStringTag]: (path: import("easy-tsnameof").PathKey[]) => string;
410
- }>;
411
- propertyHints: {
412
- [x: string]: any & import("easy-tsnameof").PathHandlers<{
413
- $path: (path: import("easy-tsnameof").PathKey[]) => string;
414
- $rawPath: (path: import("easy-tsnameof").PathKey[]) => import("easy-tsnameof").PathKey[];
415
- toString: (path: import("easy-tsnameof").PathKey[]) => () => string;
416
- valueOf: (path: import("easy-tsnameof").PathKey[]) => () => string;
417
- [Symbol.toStringTag]: (path: import("easy-tsnameof").PathKey[]) => string;
418
- }>;
419
- } & import("easy-tsnameof").PathHandlers<{
420
- $path: (path: import("easy-tsnameof").PathKey[]) => string;
421
- $rawPath: (path: import("easy-tsnameof").PathKey[]) => import("easy-tsnameof").PathKey[];
422
- toString: (path: import("easy-tsnameof").PathKey[]) => () => string;
423
- valueOf: (path: import("easy-tsnameof").PathKey[]) => () => string;
424
- [Symbol.toStringTag]: (path: import("easy-tsnameof").PathKey[]) => string;
425
- }>;
426
- toJSON: import("easy-tsnameof").PathHandlers<{
427
- $path: (path: import("easy-tsnameof").PathKey[]) => string;
428
- $rawPath: (path: import("easy-tsnameof").PathKey[]) => import("easy-tsnameof").PathKey[];
429
- toString: (path: import("easy-tsnameof").PathKey[]) => () => string;
430
- valueOf: (path: import("easy-tsnameof").PathKey[]) => () => string;
431
- [Symbol.toStringTag]: (path: import("easy-tsnameof").PathKey[]) => string;
432
- }>;
433
- copyWith: import("easy-tsnameof").PathHandlers<{
434
- $path: (path: import("easy-tsnameof").PathKey[]) => string;
435
- $rawPath: (path: import("easy-tsnameof").PathKey[]) => import("easy-tsnameof").PathKey[];
436
- toString: (path: import("easy-tsnameof").PathKey[]) => () => string;
437
- valueOf: (path: import("easy-tsnameof").PathKey[]) => () => string;
438
- [Symbol.toStringTag]: (path: import("easy-tsnameof").PathKey[]) => string;
439
- }>;
440
- validate: import("easy-tsnameof").PathHandlers<{
441
- $path: (path: import("easy-tsnameof").PathKey[]) => string;
442
- $rawPath: (path: import("easy-tsnameof").PathKey[]) => import("easy-tsnameof").PathKey[];
443
- toString: (path: import("easy-tsnameof").PathKey[]) => () => string;
444
- valueOf: (path: import("easy-tsnameof").PathKey[]) => () => string;
445
- [Symbol.toStringTag]: (path: import("easy-tsnameof").PathKey[]) => string;
446
- }>;
447
- validateProperty: import("easy-tsnameof").PathHandlers<{
448
- $path: (path: import("easy-tsnameof").PathKey[]) => string;
449
- $rawPath: (path: import("easy-tsnameof").PathKey[]) => import("easy-tsnameof").PathKey[];
450
- toString: (path: import("easy-tsnameof").PathKey[]) => () => string;
451
- valueOf: (path: import("easy-tsnameof").PathKey[]) => () => string;
452
- [Symbol.toStringTag]: (path: import("easy-tsnameof").PathKey[]) => string;
453
- }>;
454
- serialize: import("easy-tsnameof").PathHandlers<{
455
- $path: (path: import("easy-tsnameof").PathKey[]) => string;
456
- $rawPath: (path: import("easy-tsnameof").PathKey[]) => import("easy-tsnameof").PathKey[];
457
- toString: (path: import("easy-tsnameof").PathKey[]) => () => string;
458
- valueOf: (path: import("easy-tsnameof").PathKey[]) => () => string;
459
- [Symbol.toStringTag]: (path: import("easy-tsnameof").PathKey[]) => string;
460
- }>;
461
- } & import("easy-tsnameof").PathHandlers<{
462
- $path: (path: import("easy-tsnameof").PathKey[]) => string;
463
- $rawPath: (path: import("easy-tsnameof").PathKey[]) => import("easy-tsnameof").PathKey[];
464
- toString: (path: import("easy-tsnameof").PathKey[]) => () => string;
465
- valueOf: (path: import("easy-tsnameof").PathKey[]) => () => string;
466
- [Symbol.toStringTag]: (path: import("easy-tsnameof").PathKey[]) => string;
467
- }>;
468
- readonly renderHints: {
469
- technicalType: import("easy-tsnameof").PathHandlers<{
470
- $path: (path: import("easy-tsnameof").PathKey[]) => string;
471
- $rawPath: (path: import("easy-tsnameof").PathKey[]) => import("easy-tsnameof").PathKey[];
472
- toString: (path: import("easy-tsnameof").PathKey[]) => () => string;
473
- valueOf: (path: import("easy-tsnameof").PathKey[]) => () => string;
474
- [Symbol.toStringTag]: (path: import("easy-tsnameof").PathKey[]) => string;
475
- }>;
476
- editType: import("easy-tsnameof").PathHandlers<{
477
- $path: (path: import("easy-tsnameof").PathKey[]) => string;
478
- $rawPath: (path: import("easy-tsnameof").PathKey[]) => import("easy-tsnameof").PathKey[];
479
- toString: (path: import("easy-tsnameof").PathKey[]) => () => string;
480
- valueOf: (path: import("easy-tsnameof").PathKey[]) => () => string;
481
- [Symbol.toStringTag]: (path: import("easy-tsnameof").PathKey[]) => string;
482
- }>;
483
- dataType: import("easy-tsnameof").PathHandlers<{
484
- $path: (path: import("easy-tsnameof").PathKey[]) => string;
485
- $rawPath: (path: import("easy-tsnameof").PathKey[]) => import("easy-tsnameof").PathKey[];
486
- toString: (path: import("easy-tsnameof").PathKey[]) => () => string;
487
- valueOf: (path: import("easy-tsnameof").PathKey[]) => () => string;
488
- [Symbol.toStringTag]: (path: import("easy-tsnameof").PathKey[]) => string;
489
- }>;
490
- propertyHints: {
491
- [x: string]: any & import("easy-tsnameof").PathHandlers<{
492
- $path: (path: import("easy-tsnameof").PathKey[]) => string;
493
- $rawPath: (path: import("easy-tsnameof").PathKey[]) => import("easy-tsnameof").PathKey[];
494
- toString: (path: import("easy-tsnameof").PathKey[]) => () => string;
495
- valueOf: (path: import("easy-tsnameof").PathKey[]) => () => string;
496
- [Symbol.toStringTag]: (path: import("easy-tsnameof").PathKey[]) => string;
497
- }>;
498
- } & import("easy-tsnameof").PathHandlers<{
499
- $path: (path: import("easy-tsnameof").PathKey[]) => string;
500
- $rawPath: (path: import("easy-tsnameof").PathKey[]) => import("easy-tsnameof").PathKey[];
501
- toString: (path: import("easy-tsnameof").PathKey[]) => () => string;
502
- valueOf: (path: import("easy-tsnameof").PathKey[]) => () => string;
503
- [Symbol.toStringTag]: (path: import("easy-tsnameof").PathKey[]) => string;
504
- }>;
505
- toJSON: import("easy-tsnameof").PathHandlers<{
506
- $path: (path: import("easy-tsnameof").PathKey[]) => string;
507
- $rawPath: (path: import("easy-tsnameof").PathKey[]) => import("easy-tsnameof").PathKey[];
508
- toString: (path: import("easy-tsnameof").PathKey[]) => () => string;
509
- valueOf: (path: import("easy-tsnameof").PathKey[]) => () => string;
510
- [Symbol.toStringTag]: (path: import("easy-tsnameof").PathKey[]) => string;
511
- }>;
512
- copyWith: import("easy-tsnameof").PathHandlers<{
513
- $path: (path: import("easy-tsnameof").PathKey[]) => string;
514
- $rawPath: (path: import("easy-tsnameof").PathKey[]) => import("easy-tsnameof").PathKey[];
515
- toString: (path: import("easy-tsnameof").PathKey[]) => () => string;
516
- valueOf: (path: import("easy-tsnameof").PathKey[]) => () => string;
517
- [Symbol.toStringTag]: (path: import("easy-tsnameof").PathKey[]) => string;
518
- }>;
519
- validate: import("easy-tsnameof").PathHandlers<{
520
- $path: (path: import("easy-tsnameof").PathKey[]) => string;
521
- $rawPath: (path: import("easy-tsnameof").PathKey[]) => import("easy-tsnameof").PathKey[];
522
- toString: (path: import("easy-tsnameof").PathKey[]) => () => string;
523
- valueOf: (path: import("easy-tsnameof").PathKey[]) => () => string;
524
- [Symbol.toStringTag]: (path: import("easy-tsnameof").PathKey[]) => string;
525
- }>;
526
- validateProperty: import("easy-tsnameof").PathHandlers<{
527
- $path: (path: import("easy-tsnameof").PathKey[]) => string;
528
- $rawPath: (path: import("easy-tsnameof").PathKey[]) => import("easy-tsnameof").PathKey[];
529
- toString: (path: import("easy-tsnameof").PathKey[]) => () => string;
530
- valueOf: (path: import("easy-tsnameof").PathKey[]) => () => string;
531
- [Symbol.toStringTag]: (path: import("easy-tsnameof").PathKey[]) => string;
532
- }>;
533
- serialize: import("easy-tsnameof").PathHandlers<{
534
- $path: (path: import("easy-tsnameof").PathKey[]) => string;
535
- $rawPath: (path: import("easy-tsnameof").PathKey[]) => import("easy-tsnameof").PathKey[];
536
- toString: (path: import("easy-tsnameof").PathKey[]) => () => string;
537
- valueOf: (path: import("easy-tsnameof").PathKey[]) => () => string;
538
- [Symbol.toStringTag]: (path: import("easy-tsnameof").PathKey[]) => string;
539
- }>;
540
- } & import("easy-tsnameof").PathHandlers<{
541
- $path: (path: import("easy-tsnameof").PathKey[]) => string;
542
- $rawPath: (path: import("easy-tsnameof").PathKey[]) => import("easy-tsnameof").PathKey[];
543
- toString: (path: import("easy-tsnameof").PathKey[]) => () => string;
544
- valueOf: (path: import("easy-tsnameof").PathKey[]) => () => string;
545
- [Symbol.toStringTag]: (path: import("easy-tsnameof").PathKey[]) => string;
546
- }>;
547
- validate: import("easy-tsnameof").PathHandlers<{
548
- $path: (path: import("easy-tsnameof").PathKey[]) => string;
549
- $rawPath: (path: import("easy-tsnameof").PathKey[]) => import("easy-tsnameof").PathKey[];
550
- toString: (path: import("easy-tsnameof").PathKey[]) => () => string;
551
- valueOf: (path: import("easy-tsnameof").PathKey[]) => () => string;
552
- [Symbol.toStringTag]: (path: import("easy-tsnameof").PathKey[]) => string;
553
- }>;
554
- validateProperty: import("easy-tsnameof").PathHandlers<{
555
- $path: (path: import("easy-tsnameof").PathKey[]) => string;
556
- $rawPath: (path: import("easy-tsnameof").PathKey[]) => import("easy-tsnameof").PathKey[];
557
- toString: (path: import("easy-tsnameof").PathKey[]) => () => string;
558
- valueOf: (path: import("easy-tsnameof").PathKey[]) => () => string;
559
- [Symbol.toStringTag]: (path: import("easy-tsnameof").PathKey[]) => string;
560
- }>;
561
- serialize: import("easy-tsnameof").PathHandlers<{
562
- $path: (path: import("easy-tsnameof").PathKey[]) => string;
563
- $rawPath: (path: import("easy-tsnameof").PathKey[]) => import("easy-tsnameof").PathKey[];
564
- toString: (path: import("easy-tsnameof").PathKey[]) => () => string;
565
- valueOf: (path: import("easy-tsnameof").PathKey[]) => () => string;
566
- [Symbol.toStringTag]: (path: import("easy-tsnameof").PathKey[]) => string;
567
- }>;
19
+ role: {
568
20
  toJSON: import("easy-tsnameof").PathHandlers<{
569
21
  $path: (path: import("easy-tsnameof").PathKey[]) => string;
570
22
  $rawPath: (path: import("easy-tsnameof").PathKey[]) => import("easy-tsnameof").PathKey[];
@@ -572,20 +24,6 @@ export declare class LegalNameDE extends LegalName {
572
24
  valueOf: (path: import("easy-tsnameof").PathKey[]) => () => string;
573
25
  [Symbol.toStringTag]: (path: import("easy-tsnameof").PathKey[]) => string;
574
26
  }>;
575
- } & import("easy-tsnameof").PathHandlers<{
576
- $path: (path: import("easy-tsnameof").PathKey[]) => string;
577
- $rawPath: (path: import("easy-tsnameof").PathKey[]) => import("easy-tsnameof").PathKey[];
578
- toString: (path: import("easy-tsnameof").PathKey[]) => () => string;
579
- valueOf: (path: import("easy-tsnameof").PathKey[]) => () => string;
580
- [Symbol.toStringTag]: (path: import("easy-tsnameof").PathKey[]) => string;
581
- }>)[] & import("easy-tsnameof").PathHandlers<{
582
- $path: (path: import("easy-tsnameof").PathKey[]) => string;
583
- $rawPath: (path: import("easy-tsnameof").PathKey[]) => import("easy-tsnameof").PathKey[];
584
- toString: (path: import("easy-tsnameof").PathKey[]) => () => string;
585
- valueOf: (path: import("easy-tsnameof").PathKey[]) => () => string;
586
- [Symbol.toStringTag]: (path: import("easy-tsnameof").PathKey[]) => string;
587
- }>;
588
- birthName: {
589
27
  value: import("easy-tsnameof").PathHandlers<{
590
28
  $path: (path: import("easy-tsnameof").PathKey[]) => string;
591
29
  $rawPath: (path: import("easy-tsnameof").PathKey[]) => import("easy-tsnameof").PathKey[];
@@ -849,13 +287,6 @@ export declare class LegalNameDE extends LegalName {
849
287
  valueOf: (path: import("easy-tsnameof").PathKey[]) => () => string;
850
288
  [Symbol.toStringTag]: (path: import("easy-tsnameof").PathKey[]) => string;
851
289
  }>;
852
- toJSON: import("easy-tsnameof").PathHandlers<{
853
- $path: (path: import("easy-tsnameof").PathKey[]) => string;
854
- $rawPath: (path: import("easy-tsnameof").PathKey[]) => import("easy-tsnameof").PathKey[];
855
- toString: (path: import("easy-tsnameof").PathKey[]) => () => string;
856
- valueOf: (path: import("easy-tsnameof").PathKey[]) => () => string;
857
- [Symbol.toStringTag]: (path: import("easy-tsnameof").PathKey[]) => string;
858
- }>;
859
290
  } & import("easy-tsnameof").PathHandlers<{
860
291
  $path: (path: import("easy-tsnameof").PathKey[]) => string;
861
292
  $rawPath: (path: import("easy-tsnameof").PathKey[]) => import("easy-tsnameof").PathKey[];
@@ -863,7 +294,14 @@ export declare class LegalNameDE extends LegalName {
863
294
  valueOf: (path: import("easy-tsnameof").PathKey[]) => () => string;
864
295
  [Symbol.toStringTag]: (path: import("easy-tsnameof").PathKey[]) => string;
865
296
  }>;
866
- pseudonym: {
297
+ organization: {
298
+ toJSON: import("easy-tsnameof").PathHandlers<{
299
+ $path: (path: import("easy-tsnameof").PathKey[]) => string;
300
+ $rawPath: (path: import("easy-tsnameof").PathKey[]) => import("easy-tsnameof").PathKey[];
301
+ toString: (path: import("easy-tsnameof").PathKey[]) => () => string;
302
+ valueOf: (path: import("easy-tsnameof").PathKey[]) => () => string;
303
+ [Symbol.toStringTag]: (path: import("easy-tsnameof").PathKey[]) => string;
304
+ }>;
867
305
  value: import("easy-tsnameof").PathHandlers<{
868
306
  $path: (path: import("easy-tsnameof").PathKey[]) => string;
869
307
  $rawPath: (path: import("easy-tsnameof").PathKey[]) => import("easy-tsnameof").PathKey[];
@@ -1127,13 +565,6 @@ export declare class LegalNameDE extends LegalName {
1127
565
  valueOf: (path: import("easy-tsnameof").PathKey[]) => () => string;
1128
566
  [Symbol.toStringTag]: (path: import("easy-tsnameof").PathKey[]) => string;
1129
567
  }>;
1130
- toJSON: import("easy-tsnameof").PathHandlers<{
1131
- $path: (path: import("easy-tsnameof").PathKey[]) => string;
1132
- $rawPath: (path: import("easy-tsnameof").PathKey[]) => import("easy-tsnameof").PathKey[];
1133
- toString: (path: import("easy-tsnameof").PathKey[]) => () => string;
1134
- valueOf: (path: import("easy-tsnameof").PathKey[]) => () => string;
1135
- [Symbol.toStringTag]: (path: import("easy-tsnameof").PathKey[]) => string;
1136
- }>;
1137
568
  } & import("easy-tsnameof").PathHandlers<{
1138
569
  $path: (path: import("easy-tsnameof").PathKey[]) => string;
1139
570
  $rawPath: (path: import("easy-tsnameof").PathKey[]) => import("easy-tsnameof").PathKey[];
@@ -1141,7 +572,14 @@ export declare class LegalNameDE extends LegalName {
1141
572
  valueOf: (path: import("easy-tsnameof").PathKey[]) => () => string;
1142
573
  [Symbol.toStringTag]: (path: import("easy-tsnameof").PathKey[]) => string;
1143
574
  }>;
1144
- honorificPrefix: {
575
+ unit: {
576
+ toJSON: import("easy-tsnameof").PathHandlers<{
577
+ $path: (path: import("easy-tsnameof").PathKey[]) => string;
578
+ $rawPath: (path: import("easy-tsnameof").PathKey[]) => import("easy-tsnameof").PathKey[];
579
+ toString: (path: import("easy-tsnameof").PathKey[]) => () => string;
580
+ valueOf: (path: import("easy-tsnameof").PathKey[]) => () => string;
581
+ [Symbol.toStringTag]: (path: import("easy-tsnameof").PathKey[]) => string;
582
+ }>;
1145
583
  value: import("easy-tsnameof").PathHandlers<{
1146
584
  $path: (path: import("easy-tsnameof").PathKey[]) => string;
1147
585
  $rawPath: (path: import("easy-tsnameof").PathKey[]) => import("easy-tsnameof").PathKey[];
@@ -1405,13 +843,6 @@ export declare class LegalNameDE extends LegalName {
1405
843
  valueOf: (path: import("easy-tsnameof").PathKey[]) => () => string;
1406
844
  [Symbol.toStringTag]: (path: import("easy-tsnameof").PathKey[]) => string;
1407
845
  }>;
1408
- toJSON: import("easy-tsnameof").PathHandlers<{
1409
- $path: (path: import("easy-tsnameof").PathKey[]) => string;
1410
- $rawPath: (path: import("easy-tsnameof").PathKey[]) => import("easy-tsnameof").PathKey[];
1411
- toString: (path: import("easy-tsnameof").PathKey[]) => () => string;
1412
- valueOf: (path: import("easy-tsnameof").PathKey[]) => () => string;
1413
- [Symbol.toStringTag]: (path: import("easy-tsnameof").PathKey[]) => string;
1414
- }>;
1415
846
  } & import("easy-tsnameof").PathHandlers<{
1416
847
  $path: (path: import("easy-tsnameof").PathKey[]) => string;
1417
848
  $rawPath: (path: import("easy-tsnameof").PathKey[]) => import("easy-tsnameof").PathKey[];
@@ -1426,6 +857,13 @@ export declare class LegalNameDE extends LegalName {
1426
857
  valueOf: (path: import("easy-tsnameof").PathKey[]) => () => string;
1427
858
  [Symbol.toStringTag]: (path: import("easy-tsnameof").PathKey[]) => string;
1428
859
  }>;
860
+ toJSON: import("easy-tsnameof").PathHandlers<{
861
+ $path: (path: import("easy-tsnameof").PathKey[]) => string;
862
+ $rawPath: (path: import("easy-tsnameof").PathKey[]) => import("easy-tsnameof").PathKey[];
863
+ toString: (path: import("easy-tsnameof").PathKey[]) => () => string;
864
+ valueOf: (path: import("easy-tsnameof").PathKey[]) => () => string;
865
+ [Symbol.toStringTag]: (path: import("easy-tsnameof").PathKey[]) => string;
866
+ }>;
1429
867
  readonly valueHints: {
1430
868
  editHelp: import("easy-tsnameof").PathHandlers<{
1431
869
  $path: (path: import("easy-tsnameof").PathKey[]) => string;
@@ -1675,13 +1113,6 @@ export declare class LegalNameDE extends LegalName {
1675
1113
  valueOf: (path: import("easy-tsnameof").PathKey[]) => () => string;
1676
1114
  [Symbol.toStringTag]: (path: import("easy-tsnameof").PathKey[]) => string;
1677
1115
  }>;
1678
- toJSON: import("easy-tsnameof").PathHandlers<{
1679
- $path: (path: import("easy-tsnameof").PathKey[]) => string;
1680
- $rawPath: (path: import("easy-tsnameof").PathKey[]) => import("easy-tsnameof").PathKey[];
1681
- toString: (path: import("easy-tsnameof").PathKey[]) => () => string;
1682
- valueOf: (path: import("easy-tsnameof").PathKey[]) => () => string;
1683
- [Symbol.toStringTag]: (path: import("easy-tsnameof").PathKey[]) => string;
1684
- }>;
1685
1116
  } & import("easy-tsnameof").PathHandlers<{
1686
1117
  $path: (path: import("easy-tsnameof").PathKey[]) => string;
1687
1118
  $rawPath: (path: import("easy-tsnameof").PathKey[]) => import("easy-tsnameof").PathKey[];
@@ -1689,12 +1120,12 @@ export declare class LegalNameDE extends LegalName {
1689
1120
  valueOf: (path: import("easy-tsnameof").PathKey[]) => () => string;
1690
1121
  [Symbol.toStringTag]: (path: import("easy-tsnameof").PathKey[]) => string;
1691
1122
  }>;
1692
- surname: Surname;
1693
- givenNames: GivenName[];
1694
- birthName?: BirthName;
1695
- pseudonym?: Pseudonym;
1696
- honorificPrefix?: HonorificPrefix;
1123
+ role?: AffiliationRole;
1124
+ organization: AffiliationOrganization;
1125
+ unit?: AffiliationUnit;
1697
1126
  static get valueHints(): ValueHints;
1698
1127
  static get renderHints(): RenderHints;
1128
+ static from(value: IAffiliation | Omit<AffiliationJSON, "@type">): Affiliation;
1699
1129
  toString(): string;
1130
+ toJSON(verbose?: boolean | undefined, serializeAsString?: boolean | undefined): AffiliationJSON;
1700
1131
  }