@nmshd/content 2.0.0-alpha.8 → 2.0.0-beta.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (402) hide show
  1. package/README.md +2 -2
  2. package/dist/attributes/AbstractAttribute.d.ts +17 -0
  3. package/dist/attributes/{AttributeV2.js → AbstractAttribute.js} +9 -26
  4. package/dist/attributes/AbstractAttribute.js.map +1 -0
  5. package/dist/attributes/AbstractAttributeQuery.d.ts +17 -0
  6. package/dist/attributes/{AttributeQuery.js → AbstractAttributeQuery.js} +14 -21
  7. package/dist/attributes/AbstractAttributeQuery.js.map +1 -0
  8. package/dist/attributes/AbstractAttributeValue.d.ts +10 -2
  9. package/dist/attributes/AbstractAttributeValue.js +12 -0
  10. package/dist/attributes/AbstractAttributeValue.js.map +1 -1
  11. package/dist/attributes/AbstractComplexValue.d.ts +9 -0
  12. package/dist/attributes/AbstractComplexValue.js +15 -0
  13. package/dist/attributes/AbstractComplexValue.js.map +1 -0
  14. package/dist/attributes/IdentityAttribute.d.ts +16 -0
  15. package/dist/attributes/IdentityAttribute.js +38 -0
  16. package/dist/attributes/IdentityAttribute.js.map +1 -0
  17. package/dist/attributes/IdentityAttributeQuery.d.ts +12 -0
  18. package/dist/attributes/IdentityAttributeQuery.js +32 -0
  19. package/dist/attributes/IdentityAttributeQuery.js.map +1 -0
  20. package/dist/attributes/RelationshipAttribute.d.ts +53 -0
  21. package/dist/attributes/RelationshipAttribute.js +88 -0
  22. package/dist/attributes/RelationshipAttribute.js.map +1 -0
  23. package/dist/attributes/RelationshipAttributeQuery.d.ts +23 -0
  24. package/dist/attributes/RelationshipAttributeQuery.js +49 -0
  25. package/dist/attributes/RelationshipAttributeQuery.js.map +1 -0
  26. package/dist/attributes/constants/CountriesAlpha2.d.ts +252 -0
  27. package/dist/attributes/constants/CountriesAlpha2.js +507 -0
  28. package/dist/attributes/constants/CountriesAlpha2.js.map +1 -0
  29. package/dist/attributes/constants/LanguagesISO639.d.ts +191 -0
  30. package/dist/attributes/constants/LanguagesISO639.js +377 -0
  31. package/dist/attributes/constants/LanguagesISO639.js.map +1 -0
  32. package/dist/attributes/constants/index.d.ts +2 -0
  33. package/dist/attributes/{types/idcard → constants}/index.js +2 -4
  34. package/dist/attributes/constants/index.js.map +1 -0
  35. package/dist/attributes/hints/RelationshipAttributeCreationHints.d.ts +31 -0
  36. package/dist/attributes/hints/RelationshipAttributeCreationHints.js +64 -0
  37. package/dist/attributes/hints/RelationshipAttributeCreationHints.js.map +1 -0
  38. package/dist/attributes/hints/RenderHints.d.ts +40 -0
  39. package/dist/attributes/hints/RenderHints.js +119 -0
  40. package/dist/attributes/hints/RenderHints.js.map +1 -0
  41. package/dist/attributes/hints/RenderHintsDataType.d.ts +19 -0
  42. package/dist/attributes/hints/RenderHintsDataType.js +24 -0
  43. package/dist/attributes/hints/RenderHintsDataType.js.map +1 -0
  44. package/dist/attributes/hints/RenderHintsEditType.d.ts +11 -0
  45. package/dist/attributes/hints/RenderHintsEditType.js +16 -0
  46. package/dist/attributes/hints/RenderHintsEditType.js.map +1 -0
  47. package/dist/attributes/hints/RenderHintsTechnicalType.d.ts +7 -0
  48. package/dist/attributes/hints/RenderHintsTechnicalType.js +12 -0
  49. package/dist/attributes/hints/RenderHintsTechnicalType.js.map +1 -0
  50. package/dist/attributes/hints/ValueHints.d.ts +50 -0
  51. package/dist/attributes/hints/ValueHints.js +149 -0
  52. package/dist/attributes/hints/ValueHints.js.map +1 -0
  53. package/dist/attributes/hints/ValueHintsValue.d.ts +14 -0
  54. package/dist/attributes/hints/ValueHintsValue.js +33 -0
  55. package/dist/attributes/hints/ValueHintsValue.js.map +1 -0
  56. package/dist/attributes/hints/index.d.ts +7 -0
  57. package/dist/attributes/hints/index.js +24 -0
  58. package/dist/attributes/hints/index.js.map +1 -0
  59. package/dist/attributes/index.d.ts +9 -2
  60. package/dist/attributes/index.js +9 -2
  61. package/dist/attributes/index.js.map +1 -1
  62. package/dist/attributes/types/AbstractBoolean.d.ts +16 -0
  63. package/dist/attributes/types/AbstractBoolean.js +41 -0
  64. package/dist/attributes/types/AbstractBoolean.js.map +1 -0
  65. package/dist/attributes/types/AbstractFloat.d.ts +16 -0
  66. package/dist/attributes/types/{AbstractFloatValue.js → AbstractFloat.js} +23 -5
  67. package/dist/attributes/types/AbstractFloat.js.map +1 -0
  68. package/dist/attributes/types/AbstractInteger.d.ts +17 -0
  69. package/dist/attributes/types/{AbstractIntegerValue.js → AbstractInteger.js} +26 -5
  70. package/dist/attributes/types/AbstractInteger.js.map +1 -0
  71. package/dist/attributes/types/AbstractString.d.ts +16 -0
  72. package/dist/attributes/types/AbstractString.js +43 -0
  73. package/dist/attributes/types/AbstractString.js.map +1 -0
  74. package/dist/attributes/types/address/AbstractAddress.d.ts +282 -2
  75. package/dist/attributes/types/address/AbstractAddress.js +25 -2
  76. package/dist/attributes/types/address/AbstractAddress.js.map +1 -1
  77. package/dist/attributes/types/address/City.d.ts +2 -2
  78. package/dist/attributes/types/address/City.js +2 -2
  79. package/dist/attributes/types/address/City.js.map +1 -1
  80. package/dist/attributes/types/address/Country.d.ts +2 -2
  81. package/dist/attributes/types/address/Country.js +2 -2
  82. package/dist/attributes/types/address/Country.js.map +1 -1
  83. package/dist/attributes/types/address/DeliveryBoxAddress.d.ts +1710 -2
  84. package/dist/attributes/types/address/DeliveryBoxAddress.js +69 -4
  85. package/dist/attributes/types/address/DeliveryBoxAddress.js.map +1 -1
  86. package/dist/attributes/types/address/HouseNumber.d.ts +2 -2
  87. package/dist/attributes/types/address/HouseNumber.js +2 -2
  88. package/dist/attributes/types/address/HouseNumber.js.map +1 -1
  89. package/dist/attributes/types/address/PostOfficeBoxAddress.d.ts +1419 -2
  90. package/dist/attributes/types/address/PostOfficeBoxAddress.js +52 -4
  91. package/dist/attributes/types/address/PostOfficeBoxAddress.js.map +1 -1
  92. package/dist/attributes/types/address/State.d.ts +2 -2
  93. package/dist/attributes/types/address/State.js +2 -2
  94. package/dist/attributes/types/address/State.js.map +1 -1
  95. package/dist/attributes/types/address/Street.d.ts +2 -2
  96. package/dist/attributes/types/address/Street.js +2 -2
  97. package/dist/attributes/types/address/Street.js.map +1 -1
  98. package/dist/attributes/types/address/StreetAddress.d.ts +1970 -2
  99. package/dist/attributes/types/address/StreetAddress.js +49 -6
  100. package/dist/attributes/types/address/StreetAddress.js.map +1 -1
  101. package/dist/attributes/types/address/ZipCode.d.ts +2 -2
  102. package/dist/attributes/types/address/ZipCode.js +2 -2
  103. package/dist/attributes/types/address/ZipCode.js.map +1 -1
  104. package/dist/attributes/types/birth/BirthDate.d.ts +1123 -2
  105. package/dist/attributes/types/birth/BirthDate.js +40 -4
  106. package/dist/attributes/types/birth/BirthDate.js.map +1 -1
  107. package/dist/attributes/types/birth/BirthDay.d.ts +1 -1
  108. package/dist/attributes/types/birth/BirthDay.js +1 -1
  109. package/dist/attributes/types/birth/BirthDay.js.map +1 -1
  110. package/dist/attributes/types/birth/BirthMonth.d.ts +3 -1
  111. package/dist/attributes/types/birth/BirthMonth.js +6 -1
  112. package/dist/attributes/types/birth/BirthMonth.js.map +1 -1
  113. package/dist/attributes/types/birth/BirthPlace.d.ts +1124 -3
  114. package/dist/attributes/types/birth/BirthPlace.js +41 -5
  115. package/dist/attributes/types/birth/BirthPlace.js.map +1 -1
  116. package/dist/attributes/types/birth/BirthYear.d.ts +1 -1
  117. package/dist/attributes/types/birth/BirthYear.js +1 -1
  118. package/dist/attributes/types/birth/BirthYear.js.map +1 -1
  119. package/dist/attributes/types/communication/CommunicationLanguage.d.ts +3 -0
  120. package/dist/attributes/types/{idcard/IDCardIssuingDate.js → communication/CommunicationLanguage.js} +8 -8
  121. package/dist/attributes/types/communication/CommunicationLanguage.js.map +1 -0
  122. package/dist/attributes/types/communication/EMailAddress.d.ts +3 -0
  123. package/dist/{relationships/RelationshipExistsAction.js → attributes/types/communication/EMailAddress.js} +8 -7
  124. package/dist/attributes/types/communication/EMailAddress.js.map +1 -0
  125. package/dist/attributes/types/communication/Fax.d.ts +3 -0
  126. package/dist/attributes/types/{name/Title.js → communication/Fax.js} +8 -8
  127. package/dist/attributes/types/communication/Fax.js.map +1 -0
  128. package/dist/attributes/types/communication/Phone.d.ts +3 -0
  129. package/dist/attributes/types/communication/Phone.js +18 -0
  130. package/dist/attributes/types/communication/Phone.js.map +1 -0
  131. package/dist/attributes/types/communication/Website.d.ts +3 -0
  132. package/dist/attributes/types/communication/Website.js +18 -0
  133. package/dist/attributes/types/communication/Website.js.map +1 -0
  134. package/dist/attributes/types/communication/index.d.ts +5 -0
  135. package/dist/attributes/types/communication/index.js +22 -0
  136. package/dist/attributes/types/communication/index.js.map +1 -0
  137. package/dist/attributes/types/dates/AbstractDateString.d.ts +8 -0
  138. package/dist/attributes/types/{AbstractDateString.js → dates/AbstractDateString.js} +17 -2
  139. package/dist/attributes/types/dates/AbstractDateString.js.map +1 -0
  140. package/dist/attributes/types/dates/AbstractDay.d.ts +10 -0
  141. package/dist/attributes/types/{AbstractDay.js → dates/AbstractDay.js} +15 -2
  142. package/dist/attributes/types/dates/AbstractDay.js.map +1 -0
  143. package/dist/attributes/types/{AbstractMonth.d.ts → dates/AbstractMonth.d.ts} +6 -2
  144. package/dist/attributes/types/{AbstractMonth.js → dates/AbstractMonth.js} +15 -2
  145. package/dist/attributes/types/dates/AbstractMonth.js.map +1 -0
  146. package/dist/attributes/types/dates/AbstractYear.d.ts +7 -0
  147. package/dist/attributes/types/dates/AbstractYear.js +38 -0
  148. package/dist/attributes/types/dates/AbstractYear.js.map +1 -0
  149. package/dist/attributes/types/dates/index.d.ts +4 -0
  150. package/dist/attributes/types/dates/index.js +21 -0
  151. package/dist/attributes/types/dates/index.js.map +1 -0
  152. package/dist/attributes/types/files/FileReference.d.ts +3 -0
  153. package/dist/attributes/types/files/FileReference.js +18 -0
  154. package/dist/attributes/types/files/FileReference.js.map +1 -0
  155. package/dist/attributes/types/files/index.d.ts +1 -0
  156. package/dist/attributes/types/files/index.js +18 -0
  157. package/dist/attributes/types/files/index.js.map +1 -0
  158. package/dist/attributes/types/index.d.ts +11 -1
  159. package/dist/attributes/types/index.js +11 -1
  160. package/dist/attributes/types/index.js.map +1 -1
  161. package/dist/attributes/types/measurements/{LengthMeasurement.d.ts → AbstractLengthMeasurement.d.ts} +3 -1
  162. package/dist/attributes/types/measurements/{LengthMeasurement.js → AbstractLengthMeasurement.js} +19 -9
  163. package/dist/attributes/types/measurements/AbstractLengthMeasurement.js.map +1 -0
  164. package/dist/attributes/types/measurements/AbstractMeasurement.d.ts +299 -2
  165. package/dist/attributes/types/measurements/AbstractMeasurement.js +33 -2
  166. package/dist/attributes/types/measurements/AbstractMeasurement.js.map +1 -1
  167. package/dist/attributes/types/measurements/index.d.ts +2 -1
  168. package/dist/attributes/types/measurements/index.js +2 -1
  169. package/dist/attributes/types/measurements/index.js.map +1 -1
  170. package/dist/attributes/types/name/AbstractLegalName.d.ts +2 -2
  171. package/dist/attributes/types/name/AbstractLegalName.js +4 -4
  172. package/dist/attributes/types/name/AbstractLegalName.js.map +1 -1
  173. package/dist/attributes/types/name/BirthName.d.ts +2 -2
  174. package/dist/attributes/types/name/BirthName.js +2 -2
  175. package/dist/attributes/types/name/BirthName.js.map +1 -1
  176. package/dist/attributes/types/name/DisplayName.d.ts +2 -2
  177. package/dist/attributes/types/name/DisplayName.js +2 -2
  178. package/dist/attributes/types/name/DisplayName.js.map +1 -1
  179. package/dist/attributes/types/name/GivenName.d.ts +2 -2
  180. package/dist/attributes/types/name/GivenName.js +2 -2
  181. package/dist/attributes/types/name/GivenName.js.map +1 -1
  182. package/dist/attributes/types/name/HonorificPrefix.d.ts +3 -0
  183. package/dist/attributes/types/name/HonorificPrefix.js +18 -0
  184. package/dist/attributes/types/name/HonorificPrefix.js.map +1 -0
  185. package/dist/attributes/types/name/HonorificSuffix.d.ts +3 -0
  186. package/dist/attributes/types/name/HonorificSuffix.js +18 -0
  187. package/dist/attributes/types/name/HonorificSuffix.js.map +1 -0
  188. package/dist/attributes/types/name/LegalNameDE.d.ts +1691 -2
  189. package/dist/attributes/types/name/LegalNameDE.js +52 -5
  190. package/dist/attributes/types/name/LegalNameDE.js.map +1 -1
  191. package/dist/attributes/types/name/Pseudonym.d.ts +2 -2
  192. package/dist/attributes/types/name/Pseudonym.js +2 -2
  193. package/dist/attributes/types/name/Pseudonym.js.map +1 -1
  194. package/dist/attributes/types/name/Salutation.d.ts +1694 -5
  195. package/dist/attributes/types/name/Salutation.js +51 -10
  196. package/dist/attributes/types/name/Salutation.js.map +1 -1
  197. package/dist/attributes/types/name/Surname.d.ts +2 -2
  198. package/dist/attributes/types/name/Surname.js +2 -2
  199. package/dist/attributes/types/name/Surname.js.map +1 -1
  200. package/dist/attributes/types/name/index.d.ts +2 -1
  201. package/dist/attributes/types/name/index.js +2 -1
  202. package/dist/attributes/types/name/index.js.map +1 -1
  203. package/dist/attributes/types/person/Age.d.ts +5 -2
  204. package/dist/attributes/types/person/Age.js +18 -2
  205. package/dist/attributes/types/person/Age.js.map +1 -1
  206. package/dist/attributes/types/person/Citizenship.d.ts +3 -0
  207. package/dist/attributes/types/person/{PersonEyeColor.js → Citizenship.js} +8 -8
  208. package/dist/attributes/types/person/Citizenship.js.map +1 -0
  209. package/dist/attributes/types/person/Nationality.d.ts +3 -0
  210. package/dist/attributes/types/person/Nationality.js +18 -0
  211. package/dist/attributes/types/person/Nationality.js.map +1 -0
  212. package/dist/attributes/types/person/Picture.d.ts +3 -0
  213. package/dist/attributes/types/person/{Gender.js → Picture.js} +8 -11
  214. package/dist/attributes/types/person/Picture.js.map +1 -0
  215. package/dist/attributes/types/person/Sex.d.ts +8 -5
  216. package/dist/attributes/types/person/Sex.js +21 -10
  217. package/dist/attributes/types/person/Sex.js.map +1 -1
  218. package/dist/attributes/types/person/index.d.ts +3 -3
  219. package/dist/attributes/types/person/index.js +3 -3
  220. package/dist/attributes/types/person/index.js.map +1 -1
  221. package/dist/attributes/types/proprietary/ProprietaryBoolean.d.ts +13 -0
  222. package/dist/attributes/types/proprietary/ProprietaryBoolean.js +31 -0
  223. package/dist/attributes/types/proprietary/ProprietaryBoolean.js.map +1 -0
  224. package/dist/attributes/types/proprietary/ProprietaryCountry.d.ts +14 -0
  225. package/dist/attributes/types/proprietary/ProprietaryCountry.js +31 -0
  226. package/dist/attributes/types/proprietary/ProprietaryCountry.js.map +1 -0
  227. package/dist/attributes/types/proprietary/ProprietaryDataURL.d.ts +14 -0
  228. package/dist/attributes/types/proprietary/ProprietaryDataURL.js +31 -0
  229. package/dist/attributes/types/proprietary/ProprietaryDataURL.js.map +1 -0
  230. package/dist/attributes/types/proprietary/ProprietaryEMailAddress.d.ts +14 -0
  231. package/dist/attributes/types/proprietary/ProprietaryEMailAddress.js +31 -0
  232. package/dist/attributes/types/proprietary/ProprietaryEMailAddress.js.map +1 -0
  233. package/dist/attributes/types/proprietary/ProprietaryFileReference.d.ts +14 -0
  234. package/dist/attributes/types/proprietary/ProprietaryFileReference.js +31 -0
  235. package/dist/attributes/types/proprietary/ProprietaryFileReference.js.map +1 -0
  236. package/dist/attributes/types/proprietary/ProprietaryFloat.d.ts +13 -0
  237. package/dist/attributes/types/{AbstractStringValue.js → proprietary/ProprietaryFloat.js} +15 -7
  238. package/dist/attributes/types/proprietary/ProprietaryFloat.js.map +1 -0
  239. package/dist/attributes/types/proprietary/ProprietaryHEXColor.d.ts +14 -0
  240. package/dist/attributes/types/proprietary/ProprietaryHEXColor.js +31 -0
  241. package/dist/attributes/types/proprietary/ProprietaryHEXColor.js.map +1 -0
  242. package/dist/attributes/types/proprietary/ProprietaryInteger.d.ts +21 -0
  243. package/dist/attributes/types/proprietary/ProprietaryInteger.js +51 -0
  244. package/dist/attributes/types/proprietary/ProprietaryInteger.js.map +1 -0
  245. package/dist/attributes/types/proprietary/ProprietaryLanguage.d.ts +14 -0
  246. package/dist/attributes/types/proprietary/ProprietaryLanguage.js +31 -0
  247. package/dist/attributes/types/proprietary/ProprietaryLanguage.js.map +1 -0
  248. package/dist/attributes/types/proprietary/ProprietaryPhoneNumber.d.ts +14 -0
  249. package/dist/attributes/types/proprietary/ProprietaryPhoneNumber.js +31 -0
  250. package/dist/attributes/types/proprietary/ProprietaryPhoneNumber.js.map +1 -0
  251. package/dist/attributes/types/proprietary/ProprietaryString.d.ts +13 -0
  252. package/dist/attributes/types/{person/PersonHeight.js → proprietary/ProprietaryString.js} +15 -13
  253. package/dist/attributes/types/proprietary/ProprietaryString.js.map +1 -0
  254. package/dist/attributes/types/proprietary/ProprietaryURL.d.ts +14 -0
  255. package/dist/{authorizations/Authorization.js → attributes/types/proprietary/ProprietaryURL.js} +12 -14
  256. package/dist/attributes/types/proprietary/ProprietaryURL.js.map +1 -0
  257. package/dist/attributes/types/proprietary/index.d.ts +12 -0
  258. package/dist/attributes/types/proprietary/index.js +29 -0
  259. package/dist/attributes/types/proprietary/index.js.map +1 -0
  260. package/dist/attributes/types/strings/AbstractCountry.d.ts +8 -0
  261. package/dist/attributes/types/strings/AbstractCountry.js +40 -0
  262. package/dist/attributes/types/strings/AbstractCountry.js.map +1 -0
  263. package/dist/attributes/types/strings/AbstractDataURL.d.ts +7 -0
  264. package/dist/attributes/types/strings/AbstractDataURL.js +40 -0
  265. package/dist/attributes/types/strings/AbstractDataURL.js.map +1 -0
  266. package/dist/attributes/types/strings/AbstractEMailAddress.d.ts +7 -0
  267. package/dist/attributes/types/strings/AbstractEMailAddress.js +41 -0
  268. package/dist/attributes/types/strings/AbstractEMailAddress.js.map +1 -0
  269. package/dist/attributes/types/strings/AbstractFileReference.d.ts +7 -0
  270. package/dist/attributes/types/strings/AbstractFileReference.js +39 -0
  271. package/dist/attributes/types/strings/AbstractFileReference.js.map +1 -0
  272. package/dist/attributes/types/strings/AbstractHEXColor.d.ts +7 -0
  273. package/dist/attributes/types/strings/AbstractHEXColor.js +37 -0
  274. package/dist/attributes/types/strings/AbstractHEXColor.js.map +1 -0
  275. package/dist/attributes/types/strings/AbstractLanguage.d.ts +8 -0
  276. package/dist/attributes/types/strings/AbstractLanguage.js +42 -0
  277. package/dist/attributes/types/strings/AbstractLanguage.js.map +1 -0
  278. package/dist/attributes/types/strings/AbstractPhoneNumber.d.ts +7 -0
  279. package/dist/attributes/types/strings/AbstractPhoneNumber.js +37 -0
  280. package/dist/attributes/types/strings/AbstractPhoneNumber.js.map +1 -0
  281. package/dist/attributes/types/strings/AbstractURL.d.ts +7 -0
  282. package/dist/attributes/types/strings/AbstractURL.js +42 -0
  283. package/dist/attributes/types/strings/AbstractURL.js.map +1 -0
  284. package/dist/attributes/types/strings/index.d.ts +8 -0
  285. package/dist/attributes/types/strings/index.js +25 -0
  286. package/dist/attributes/types/strings/index.js.map +1 -0
  287. package/dist/buildInformation.js +5 -5
  288. package/dist/index.d.ts +0 -1
  289. package/dist/index.js +0 -1
  290. package/dist/index.js.map +1 -1
  291. package/dist/relationships/RelationshipCreationChangeRequestBody.d.ts +8 -21
  292. package/dist/relationships/RelationshipCreationChangeRequestBody.js +5 -26
  293. package/dist/relationships/RelationshipCreationChangeRequestBody.js.map +1 -1
  294. package/dist/relationships/RelationshipTemplateBody.d.ts +11 -31
  295. package/dist/relationships/RelationshipTemplateBody.js +6 -34
  296. package/dist/relationships/RelationshipTemplateBody.js.map +1 -1
  297. package/dist/relationships/index.d.ts +0 -2
  298. package/dist/relationships/index.js +0 -2
  299. package/dist/relationships/index.js.map +1 -1
  300. package/dist/requests/Request.d.ts +38 -8
  301. package/dist/requests/Request.js +18 -0
  302. package/dist/requests/Request.js.map +1 -1
  303. package/dist/requests/RequestItem.d.ts +10 -5
  304. package/dist/requests/RequestItem.js +4 -1
  305. package/dist/requests/RequestItem.js.map +1 -1
  306. package/dist/requests/RequestItemGroup.d.ts +13 -11
  307. package/dist/requests/RequestItemGroup.js +16 -3
  308. package/dist/requests/RequestItemGroup.js.map +1 -1
  309. package/dist/requests/index.d.ts +1 -0
  310. package/dist/requests/index.js +1 -0
  311. package/dist/requests/index.js.map +1 -1
  312. package/dist/requests/items/createAttribute/CreateAttributeAcceptResponseItem.d.ts +12 -0
  313. package/dist/requests/items/createAttribute/CreateAttributeAcceptResponseItem.js +30 -0
  314. package/dist/requests/items/createAttribute/CreateAttributeAcceptResponseItem.js.map +1 -0
  315. package/dist/requests/items/createAttribute/CreateAttributeRequestItem.d.ts +17 -0
  316. package/dist/requests/items/createAttribute/CreateAttributeRequestItem.js +36 -0
  317. package/dist/requests/items/createAttribute/CreateAttributeRequestItem.js.map +1 -0
  318. package/dist/requests/items/index.d.ts +7 -0
  319. package/dist/requests/items/index.js +24 -0
  320. package/dist/requests/items/index.js.map +1 -0
  321. package/dist/requests/items/proposeAttribute/ProposeAttributeAcceptResponseItem.d.ts +16 -0
  322. package/dist/requests/items/proposeAttribute/ProposeAttributeAcceptResponseItem.js +36 -0
  323. package/dist/requests/items/proposeAttribute/ProposeAttributeAcceptResponseItem.js.map +1 -0
  324. package/dist/requests/items/proposeAttribute/ProposeAttributeRequestItem.d.ts +17 -0
  325. package/dist/requests/items/proposeAttribute/ProposeAttributeRequestItem.js +53 -0
  326. package/dist/requests/items/proposeAttribute/ProposeAttributeRequestItem.js.map +1 -0
  327. package/dist/requests/items/readAttribute/ReadAttributeAcceptResponseItem.d.ts +16 -0
  328. package/dist/requests/items/readAttribute/ReadAttributeAcceptResponseItem.js +36 -0
  329. package/dist/requests/items/readAttribute/ReadAttributeAcceptResponseItem.js.map +1 -0
  330. package/dist/requests/items/readAttribute/ReadAttributeRequestItem.d.ts +12 -0
  331. package/dist/{relationships/RelationshipExistsMessageAction.js → requests/items/readAttribute/ReadAttributeRequestItem.js} +14 -10
  332. package/dist/requests/items/readAttribute/ReadAttributeRequestItem.js.map +1 -0
  333. package/dist/requests/items/shareAttribute/ShareAttributeRequestItem.d.ts +15 -0
  334. package/dist/requests/items/shareAttribute/ShareAttributeRequestItem.js +35 -0
  335. package/dist/requests/items/shareAttribute/ShareAttributeRequestItem.js.map +1 -0
  336. package/dist/requests/response/AcceptResponseItem.d.ts +5 -0
  337. package/dist/requests/response/AcceptResponseItem.js +3 -0
  338. package/dist/requests/response/AcceptResponseItem.js.map +1 -1
  339. package/dist/requests/response/ErrorResponseItem.d.ts +4 -0
  340. package/dist/requests/response/ErrorResponseItem.js +3 -0
  341. package/dist/requests/response/ErrorResponseItem.js.map +1 -1
  342. package/dist/requests/response/RejectResponseItem.d.ts +4 -0
  343. package/dist/requests/response/RejectResponseItem.js +3 -0
  344. package/dist/requests/response/RejectResponseItem.js.map +1 -1
  345. package/dist/requests/response/Response.d.ts +5 -4
  346. package/dist/requests/response/Response.js +3 -0
  347. package/dist/requests/response/Response.js.map +1 -1
  348. package/dist/requests/response/ResponseItem.d.ts +7 -3
  349. package/dist/requests/response/ResponseItem.js +3 -5
  350. package/dist/requests/response/ResponseItem.js.map +1 -1
  351. package/dist/requests/response/ResponseItemGroup.d.ts +5 -7
  352. package/dist/requests/response/ResponseItemGroup.js +3 -5
  353. package/dist/requests/response/ResponseItemGroup.js.map +1 -1
  354. package/lib-web/nmshd.content.js +5299 -1395
  355. package/lib-web/nmshd.content.min.js +1 -1
  356. package/package.json +16 -15
  357. package/dist/attributes/AttributeQuery.d.ts +0 -12
  358. package/dist/attributes/AttributeQuery.js.map +0 -1
  359. package/dist/attributes/AttributeV2.d.ts +0 -25
  360. package/dist/attributes/AttributeV2.js.map +0 -1
  361. package/dist/attributes/types/AbstractDateString.d.ts +0 -5
  362. package/dist/attributes/types/AbstractDateString.js.map +0 -1
  363. package/dist/attributes/types/AbstractDay.d.ts +0 -7
  364. package/dist/attributes/types/AbstractDay.js.map +0 -1
  365. package/dist/attributes/types/AbstractFloatValue.d.ts +0 -4
  366. package/dist/attributes/types/AbstractFloatValue.js.map +0 -1
  367. package/dist/attributes/types/AbstractIntegerValue.d.ts +0 -4
  368. package/dist/attributes/types/AbstractIntegerValue.js.map +0 -1
  369. package/dist/attributes/types/AbstractMonth.js.map +0 -1
  370. package/dist/attributes/types/AbstractStringValue.d.ts +0 -4
  371. package/dist/attributes/types/AbstractStringValue.js.map +0 -1
  372. package/dist/attributes/types/AbstractYear.d.ts +0 -3
  373. package/dist/attributes/types/AbstractYear.js +0 -8
  374. package/dist/attributes/types/AbstractYear.js.map +0 -1
  375. package/dist/attributes/types/idcard/AbstractIDCard.d.ts +0 -3
  376. package/dist/attributes/types/idcard/AbstractIDCard.js +0 -8
  377. package/dist/attributes/types/idcard/AbstractIDCard.js.map +0 -1
  378. package/dist/attributes/types/idcard/IDCardAuthorityName.d.ts +0 -3
  379. package/dist/attributes/types/idcard/IDCardAuthorityName.js +0 -18
  380. package/dist/attributes/types/idcard/IDCardAuthorityName.js.map +0 -1
  381. package/dist/attributes/types/idcard/IDCardDE.d.ts +0 -13
  382. package/dist/attributes/types/idcard/IDCardDE.js +0 -51
  383. package/dist/attributes/types/idcard/IDCardDE.js.map +0 -1
  384. package/dist/attributes/types/idcard/IDCardIssuingDate.d.ts +0 -3
  385. package/dist/attributes/types/idcard/IDCardIssuingDate.js.map +0 -1
  386. package/dist/attributes/types/idcard/index.d.ts +0 -4
  387. package/dist/attributes/types/idcard/index.js.map +0 -1
  388. package/dist/attributes/types/measurements/LengthMeasurement.js.map +0 -1
  389. package/dist/attributes/types/name/Title.d.ts +0 -3
  390. package/dist/attributes/types/name/Title.js.map +0 -1
  391. package/dist/attributes/types/person/Gender.d.ts +0 -6
  392. package/dist/attributes/types/person/Gender.js.map +0 -1
  393. package/dist/attributes/types/person/PersonEyeColor.d.ts +0 -3
  394. package/dist/attributes/types/person/PersonEyeColor.js.map +0 -1
  395. package/dist/attributes/types/person/PersonHeight.d.ts +0 -4
  396. package/dist/attributes/types/person/PersonHeight.js.map +0 -1
  397. package/dist/authorizations/Authorization.d.ts +0 -14
  398. package/dist/authorizations/Authorization.js.map +0 -1
  399. package/dist/relationships/RelationshipExistsAction.d.ts +0 -7
  400. package/dist/relationships/RelationshipExistsAction.js.map +0 -1
  401. package/dist/relationships/RelationshipExistsMessageAction.d.ts +0 -11
  402. package/dist/relationships/RelationshipExistsMessageAction.js.map +0 -1
@@ -1,9 +1,1130 @@
1
- import { AbstractAttributeValue } from "../../AbstractAttributeValue";
1
+ import { AbstractComplexValue, AbstractComplexValueJSON, IAbstractComplexValue } from "../../AbstractComplexValue";
2
+ import { RenderHints, ValueHints } from "../../hints";
3
+ import { AbstractStringJSON, IAbstractString } from "../AbstractString";
2
4
  import { BirthCity } from "./BirthCity";
3
5
  import { BirthCountry } from "./BirthCountry";
4
6
  import { BirthState } from "./BirthState";
5
- export declare class BirthPlace extends AbstractAttributeValue {
7
+ export interface BirthPlaceJSON extends AbstractComplexValueJSON {
8
+ city: AbstractStringJSON;
9
+ country: AbstractStringJSON;
10
+ state?: AbstractStringJSON;
11
+ }
12
+ export interface IBirthPlace extends IAbstractComplexValue {
13
+ city: BirthCity | IAbstractString | number;
14
+ country: BirthCountry | IAbstractString | number;
15
+ state?: BirthState | IAbstractString | number;
16
+ }
17
+ export declare class BirthPlace extends AbstractComplexValue implements IBirthPlace {
18
+ static readonly propertyNames: {
19
+ city: {
20
+ value: import("easy-tsnameof").PathHandlers<{
21
+ $path: (path: import("easy-tsnameof").PathKey[]) => string;
22
+ $rawPath: (path: import("easy-tsnameof").PathKey[]) => import("easy-tsnameof").PathKey[];
23
+ toString: (path: import("easy-tsnameof").PathKey[]) => () => string;
24
+ valueOf: (path: import("easy-tsnameof").PathKey[]) => () => string;
25
+ [Symbol.toStringTag]: (path: import("easy-tsnameof").PathKey[]) => string;
26
+ }>;
27
+ toString: 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
+ readonly valueHints: {
35
+ editHelp: import("easy-tsnameof").PathHandlers<{
36
+ $path: (path: import("easy-tsnameof").PathKey[]) => string;
37
+ $rawPath: (path: import("easy-tsnameof").PathKey[]) => import("easy-tsnameof").PathKey[];
38
+ toString: (path: import("easy-tsnameof").PathKey[]) => () => string;
39
+ valueOf: (path: import("easy-tsnameof").PathKey[]) => () => string;
40
+ [Symbol.toStringTag]: (path: import("easy-tsnameof").PathKey[]) => string;
41
+ }>;
42
+ min: 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
+ max: 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
+ pattern: 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
+ values: ({
64
+ displayName: import("easy-tsnameof").PathHandlers<{
65
+ $path: (path: import("easy-tsnameof").PathKey[]) => string;
66
+ $rawPath: (path: import("easy-tsnameof").PathKey[]) => import("easy-tsnameof").PathKey[];
67
+ toString: (path: import("easy-tsnameof").PathKey[]) => () => string;
68
+ valueOf: (path: import("easy-tsnameof").PathKey[]) => () => string;
69
+ [Symbol.toStringTag]: (path: import("easy-tsnameof").PathKey[]) => string;
70
+ }>;
71
+ key: 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
+ validate: 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
+ validateProperty: 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
+ serialize: 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
+ toJSON: 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
+ } & 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
+ }>)[] & import("easy-tsnameof").PathHandlers<{
113
+ $path: (path: import("easy-tsnameof").PathKey[]) => string;
114
+ $rawPath: (path: import("easy-tsnameof").PathKey[]) => import("easy-tsnameof").PathKey[];
115
+ toString: (path: import("easy-tsnameof").PathKey[]) => () => string;
116
+ valueOf: (path: import("easy-tsnameof").PathKey[]) => () => string;
117
+ [Symbol.toStringTag]: (path: import("easy-tsnameof").PathKey[]) => string;
118
+ }>;
119
+ defaultValue: 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
+ propertyHints: {
127
+ [x: string]: any & import("easy-tsnameof").PathHandlers<{
128
+ $path: (path: import("easy-tsnameof").PathKey[]) => string;
129
+ $rawPath: (path: import("easy-tsnameof").PathKey[]) => import("easy-tsnameof").PathKey[];
130
+ toString: (path: import("easy-tsnameof").PathKey[]) => () => string;
131
+ valueOf: (path: import("easy-tsnameof").PathKey[]) => () => string;
132
+ [Symbol.toStringTag]: (path: import("easy-tsnameof").PathKey[]) => string;
133
+ }>;
134
+ } & 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
+ toJSON: 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
+ copyWith: 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
+ validate: 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
+ validateProperty: 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
+ serialize: 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
+ } & 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
+ readonly renderHints: {
184
+ technicalType: import("easy-tsnameof").PathHandlers<{
185
+ $path: (path: import("easy-tsnameof").PathKey[]) => string;
186
+ $rawPath: (path: import("easy-tsnameof").PathKey[]) => import("easy-tsnameof").PathKey[];
187
+ toString: (path: import("easy-tsnameof").PathKey[]) => () => string;
188
+ valueOf: (path: import("easy-tsnameof").PathKey[]) => () => string;
189
+ [Symbol.toStringTag]: (path: import("easy-tsnameof").PathKey[]) => string;
190
+ }>;
191
+ editType: 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
+ dataType: 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
+ propertyHints: {
206
+ [x: string]: any & import("easy-tsnameof").PathHandlers<{
207
+ $path: (path: import("easy-tsnameof").PathKey[]) => string;
208
+ $rawPath: (path: import("easy-tsnameof").PathKey[]) => import("easy-tsnameof").PathKey[];
209
+ toString: (path: import("easy-tsnameof").PathKey[]) => () => string;
210
+ valueOf: (path: import("easy-tsnameof").PathKey[]) => () => string;
211
+ [Symbol.toStringTag]: (path: import("easy-tsnameof").PathKey[]) => string;
212
+ }>;
213
+ } & 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
+ toJSON: 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
+ copyWith: 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
+ validate: 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
+ validateProperty: 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
+ serialize: 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
+ } & 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
+ validate: 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
+ validateProperty: 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
+ serialize: 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
+ toJSON: 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
+ } & 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
+ country: {
298
+ value: 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
+ }>;
305
+ toString: 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
+ readonly valueHints: {
313
+ editHelp: import("easy-tsnameof").PathHandlers<{
314
+ $path: (path: import("easy-tsnameof").PathKey[]) => string;
315
+ $rawPath: (path: import("easy-tsnameof").PathKey[]) => import("easy-tsnameof").PathKey[];
316
+ toString: (path: import("easy-tsnameof").PathKey[]) => () => string;
317
+ valueOf: (path: import("easy-tsnameof").PathKey[]) => () => string;
318
+ [Symbol.toStringTag]: (path: import("easy-tsnameof").PathKey[]) => string;
319
+ }>;
320
+ min: 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
+ max: 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
+ pattern: 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
+ values: ({
342
+ displayName: import("easy-tsnameof").PathHandlers<{
343
+ $path: (path: import("easy-tsnameof").PathKey[]) => string;
344
+ $rawPath: (path: import("easy-tsnameof").PathKey[]) => import("easy-tsnameof").PathKey[];
345
+ toString: (path: import("easy-tsnameof").PathKey[]) => () => string;
346
+ valueOf: (path: import("easy-tsnameof").PathKey[]) => () => string;
347
+ [Symbol.toStringTag]: (path: import("easy-tsnameof").PathKey[]) => string;
348
+ }>;
349
+ key: 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
+ validate: 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
+ validateProperty: 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
+ serialize: 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
+ toJSON: 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
+ } & 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
+ }>)[] & import("easy-tsnameof").PathHandlers<{
391
+ $path: (path: import("easy-tsnameof").PathKey[]) => string;
392
+ $rawPath: (path: import("easy-tsnameof").PathKey[]) => import("easy-tsnameof").PathKey[];
393
+ toString: (path: import("easy-tsnameof").PathKey[]) => () => string;
394
+ valueOf: (path: import("easy-tsnameof").PathKey[]) => () => string;
395
+ [Symbol.toStringTag]: (path: import("easy-tsnameof").PathKey[]) => string;
396
+ }>;
397
+ defaultValue: 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
+ propertyHints: {
405
+ [x: string]: any & import("easy-tsnameof").PathHandlers<{
406
+ $path: (path: import("easy-tsnameof").PathKey[]) => string;
407
+ $rawPath: (path: import("easy-tsnameof").PathKey[]) => import("easy-tsnameof").PathKey[];
408
+ toString: (path: import("easy-tsnameof").PathKey[]) => () => string;
409
+ valueOf: (path: import("easy-tsnameof").PathKey[]) => () => string;
410
+ [Symbol.toStringTag]: (path: import("easy-tsnameof").PathKey[]) => string;
411
+ }>;
412
+ } & 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
+ toJSON: 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
+ copyWith: 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
+ validate: 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
+ validateProperty: 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
+ serialize: 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
+ } & 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
+ readonly renderHints: {
462
+ technicalType: import("easy-tsnameof").PathHandlers<{
463
+ $path: (path: import("easy-tsnameof").PathKey[]) => string;
464
+ $rawPath: (path: import("easy-tsnameof").PathKey[]) => import("easy-tsnameof").PathKey[];
465
+ toString: (path: import("easy-tsnameof").PathKey[]) => () => string;
466
+ valueOf: (path: import("easy-tsnameof").PathKey[]) => () => string;
467
+ [Symbol.toStringTag]: (path: import("easy-tsnameof").PathKey[]) => string;
468
+ }>;
469
+ editType: 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
+ dataType: 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
+ propertyHints: {
484
+ [x: string]: any & import("easy-tsnameof").PathHandlers<{
485
+ $path: (path: import("easy-tsnameof").PathKey[]) => string;
486
+ $rawPath: (path: import("easy-tsnameof").PathKey[]) => import("easy-tsnameof").PathKey[];
487
+ toString: (path: import("easy-tsnameof").PathKey[]) => () => string;
488
+ valueOf: (path: import("easy-tsnameof").PathKey[]) => () => string;
489
+ [Symbol.toStringTag]: (path: import("easy-tsnameof").PathKey[]) => string;
490
+ }>;
491
+ } & 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
+ toJSON: 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
+ copyWith: 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
+ validate: 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
+ validateProperty: 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
+ serialize: 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
+ } & 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
+ validate: 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
+ validateProperty: 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
+ serialize: 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
+ toJSON: 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
+ }>;
568
+ } & import("easy-tsnameof").PathHandlers<{
569
+ $path: (path: import("easy-tsnameof").PathKey[]) => string;
570
+ $rawPath: (path: import("easy-tsnameof").PathKey[]) => import("easy-tsnameof").PathKey[];
571
+ toString: (path: import("easy-tsnameof").PathKey[]) => () => string;
572
+ valueOf: (path: import("easy-tsnameof").PathKey[]) => () => string;
573
+ [Symbol.toStringTag]: (path: import("easy-tsnameof").PathKey[]) => string;
574
+ }>;
575
+ state: {
576
+ value: 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
+ }>;
583
+ toString: import("easy-tsnameof").PathHandlers<{
584
+ $path: (path: import("easy-tsnameof").PathKey[]) => string;
585
+ $rawPath: (path: import("easy-tsnameof").PathKey[]) => import("easy-tsnameof").PathKey[];
586
+ toString: (path: import("easy-tsnameof").PathKey[]) => () => string;
587
+ valueOf: (path: import("easy-tsnameof").PathKey[]) => () => string;
588
+ [Symbol.toStringTag]: (path: import("easy-tsnameof").PathKey[]) => string;
589
+ }>;
590
+ readonly valueHints: {
591
+ editHelp: import("easy-tsnameof").PathHandlers<{
592
+ $path: (path: import("easy-tsnameof").PathKey[]) => string;
593
+ $rawPath: (path: import("easy-tsnameof").PathKey[]) => import("easy-tsnameof").PathKey[];
594
+ toString: (path: import("easy-tsnameof").PathKey[]) => () => string;
595
+ valueOf: (path: import("easy-tsnameof").PathKey[]) => () => string;
596
+ [Symbol.toStringTag]: (path: import("easy-tsnameof").PathKey[]) => string;
597
+ }>;
598
+ min: import("easy-tsnameof").PathHandlers<{
599
+ $path: (path: import("easy-tsnameof").PathKey[]) => string;
600
+ $rawPath: (path: import("easy-tsnameof").PathKey[]) => import("easy-tsnameof").PathKey[];
601
+ toString: (path: import("easy-tsnameof").PathKey[]) => () => string;
602
+ valueOf: (path: import("easy-tsnameof").PathKey[]) => () => string;
603
+ [Symbol.toStringTag]: (path: import("easy-tsnameof").PathKey[]) => string;
604
+ }>;
605
+ max: import("easy-tsnameof").PathHandlers<{
606
+ $path: (path: import("easy-tsnameof").PathKey[]) => string;
607
+ $rawPath: (path: import("easy-tsnameof").PathKey[]) => import("easy-tsnameof").PathKey[];
608
+ toString: (path: import("easy-tsnameof").PathKey[]) => () => string;
609
+ valueOf: (path: import("easy-tsnameof").PathKey[]) => () => string;
610
+ [Symbol.toStringTag]: (path: import("easy-tsnameof").PathKey[]) => string;
611
+ }>;
612
+ pattern: import("easy-tsnameof").PathHandlers<{
613
+ $path: (path: import("easy-tsnameof").PathKey[]) => string;
614
+ $rawPath: (path: import("easy-tsnameof").PathKey[]) => import("easy-tsnameof").PathKey[];
615
+ toString: (path: import("easy-tsnameof").PathKey[]) => () => string;
616
+ valueOf: (path: import("easy-tsnameof").PathKey[]) => () => string;
617
+ [Symbol.toStringTag]: (path: import("easy-tsnameof").PathKey[]) => string;
618
+ }>;
619
+ values: ({
620
+ displayName: import("easy-tsnameof").PathHandlers<{
621
+ $path: (path: import("easy-tsnameof").PathKey[]) => string;
622
+ $rawPath: (path: import("easy-tsnameof").PathKey[]) => import("easy-tsnameof").PathKey[];
623
+ toString: (path: import("easy-tsnameof").PathKey[]) => () => string;
624
+ valueOf: (path: import("easy-tsnameof").PathKey[]) => () => string;
625
+ [Symbol.toStringTag]: (path: import("easy-tsnameof").PathKey[]) => string;
626
+ }>;
627
+ key: import("easy-tsnameof").PathHandlers<{
628
+ $path: (path: import("easy-tsnameof").PathKey[]) => string;
629
+ $rawPath: (path: import("easy-tsnameof").PathKey[]) => import("easy-tsnameof").PathKey[];
630
+ toString: (path: import("easy-tsnameof").PathKey[]) => () => string;
631
+ valueOf: (path: import("easy-tsnameof").PathKey[]) => () => string;
632
+ [Symbol.toStringTag]: (path: import("easy-tsnameof").PathKey[]) => string;
633
+ }>;
634
+ validate: import("easy-tsnameof").PathHandlers<{
635
+ $path: (path: import("easy-tsnameof").PathKey[]) => string;
636
+ $rawPath: (path: import("easy-tsnameof").PathKey[]) => import("easy-tsnameof").PathKey[];
637
+ toString: (path: import("easy-tsnameof").PathKey[]) => () => string;
638
+ valueOf: (path: import("easy-tsnameof").PathKey[]) => () => string;
639
+ [Symbol.toStringTag]: (path: import("easy-tsnameof").PathKey[]) => string;
640
+ }>;
641
+ validateProperty: import("easy-tsnameof").PathHandlers<{
642
+ $path: (path: import("easy-tsnameof").PathKey[]) => string;
643
+ $rawPath: (path: import("easy-tsnameof").PathKey[]) => import("easy-tsnameof").PathKey[];
644
+ toString: (path: import("easy-tsnameof").PathKey[]) => () => string;
645
+ valueOf: (path: import("easy-tsnameof").PathKey[]) => () => string;
646
+ [Symbol.toStringTag]: (path: import("easy-tsnameof").PathKey[]) => string;
647
+ }>;
648
+ serialize: import("easy-tsnameof").PathHandlers<{
649
+ $path: (path: import("easy-tsnameof").PathKey[]) => string;
650
+ $rawPath: (path: import("easy-tsnameof").PathKey[]) => import("easy-tsnameof").PathKey[];
651
+ toString: (path: import("easy-tsnameof").PathKey[]) => () => string;
652
+ valueOf: (path: import("easy-tsnameof").PathKey[]) => () => string;
653
+ [Symbol.toStringTag]: (path: import("easy-tsnameof").PathKey[]) => string;
654
+ }>;
655
+ toJSON: import("easy-tsnameof").PathHandlers<{
656
+ $path: (path: import("easy-tsnameof").PathKey[]) => string;
657
+ $rawPath: (path: import("easy-tsnameof").PathKey[]) => import("easy-tsnameof").PathKey[];
658
+ toString: (path: import("easy-tsnameof").PathKey[]) => () => string;
659
+ valueOf: (path: import("easy-tsnameof").PathKey[]) => () => string;
660
+ [Symbol.toStringTag]: (path: import("easy-tsnameof").PathKey[]) => string;
661
+ }>;
662
+ } & import("easy-tsnameof").PathHandlers<{
663
+ $path: (path: import("easy-tsnameof").PathKey[]) => string;
664
+ $rawPath: (path: import("easy-tsnameof").PathKey[]) => import("easy-tsnameof").PathKey[];
665
+ toString: (path: import("easy-tsnameof").PathKey[]) => () => string;
666
+ valueOf: (path: import("easy-tsnameof").PathKey[]) => () => string;
667
+ [Symbol.toStringTag]: (path: import("easy-tsnameof").PathKey[]) => string;
668
+ }>)[] & import("easy-tsnameof").PathHandlers<{
669
+ $path: (path: import("easy-tsnameof").PathKey[]) => string;
670
+ $rawPath: (path: import("easy-tsnameof").PathKey[]) => import("easy-tsnameof").PathKey[];
671
+ toString: (path: import("easy-tsnameof").PathKey[]) => () => string;
672
+ valueOf: (path: import("easy-tsnameof").PathKey[]) => () => string;
673
+ [Symbol.toStringTag]: (path: import("easy-tsnameof").PathKey[]) => string;
674
+ }>;
675
+ defaultValue: import("easy-tsnameof").PathHandlers<{
676
+ $path: (path: import("easy-tsnameof").PathKey[]) => string;
677
+ $rawPath: (path: import("easy-tsnameof").PathKey[]) => import("easy-tsnameof").PathKey[];
678
+ toString: (path: import("easy-tsnameof").PathKey[]) => () => string;
679
+ valueOf: (path: import("easy-tsnameof").PathKey[]) => () => string;
680
+ [Symbol.toStringTag]: (path: import("easy-tsnameof").PathKey[]) => string;
681
+ }>;
682
+ propertyHints: {
683
+ [x: string]: any & import("easy-tsnameof").PathHandlers<{
684
+ $path: (path: import("easy-tsnameof").PathKey[]) => string;
685
+ $rawPath: (path: import("easy-tsnameof").PathKey[]) => import("easy-tsnameof").PathKey[];
686
+ toString: (path: import("easy-tsnameof").PathKey[]) => () => string;
687
+ valueOf: (path: import("easy-tsnameof").PathKey[]) => () => string;
688
+ [Symbol.toStringTag]: (path: import("easy-tsnameof").PathKey[]) => string;
689
+ }>;
690
+ } & import("easy-tsnameof").PathHandlers<{
691
+ $path: (path: import("easy-tsnameof").PathKey[]) => string;
692
+ $rawPath: (path: import("easy-tsnameof").PathKey[]) => import("easy-tsnameof").PathKey[];
693
+ toString: (path: import("easy-tsnameof").PathKey[]) => () => string;
694
+ valueOf: (path: import("easy-tsnameof").PathKey[]) => () => string;
695
+ [Symbol.toStringTag]: (path: import("easy-tsnameof").PathKey[]) => string;
696
+ }>;
697
+ toJSON: import("easy-tsnameof").PathHandlers<{
698
+ $path: (path: import("easy-tsnameof").PathKey[]) => string;
699
+ $rawPath: (path: import("easy-tsnameof").PathKey[]) => import("easy-tsnameof").PathKey[];
700
+ toString: (path: import("easy-tsnameof").PathKey[]) => () => string;
701
+ valueOf: (path: import("easy-tsnameof").PathKey[]) => () => string;
702
+ [Symbol.toStringTag]: (path: import("easy-tsnameof").PathKey[]) => string;
703
+ }>;
704
+ copyWith: import("easy-tsnameof").PathHandlers<{
705
+ $path: (path: import("easy-tsnameof").PathKey[]) => string;
706
+ $rawPath: (path: import("easy-tsnameof").PathKey[]) => import("easy-tsnameof").PathKey[];
707
+ toString: (path: import("easy-tsnameof").PathKey[]) => () => string;
708
+ valueOf: (path: import("easy-tsnameof").PathKey[]) => () => string;
709
+ [Symbol.toStringTag]: (path: import("easy-tsnameof").PathKey[]) => string;
710
+ }>;
711
+ validate: import("easy-tsnameof").PathHandlers<{
712
+ $path: (path: import("easy-tsnameof").PathKey[]) => string;
713
+ $rawPath: (path: import("easy-tsnameof").PathKey[]) => import("easy-tsnameof").PathKey[];
714
+ toString: (path: import("easy-tsnameof").PathKey[]) => () => string;
715
+ valueOf: (path: import("easy-tsnameof").PathKey[]) => () => string;
716
+ [Symbol.toStringTag]: (path: import("easy-tsnameof").PathKey[]) => string;
717
+ }>;
718
+ validateProperty: import("easy-tsnameof").PathHandlers<{
719
+ $path: (path: import("easy-tsnameof").PathKey[]) => string;
720
+ $rawPath: (path: import("easy-tsnameof").PathKey[]) => import("easy-tsnameof").PathKey[];
721
+ toString: (path: import("easy-tsnameof").PathKey[]) => () => string;
722
+ valueOf: (path: import("easy-tsnameof").PathKey[]) => () => string;
723
+ [Symbol.toStringTag]: (path: import("easy-tsnameof").PathKey[]) => string;
724
+ }>;
725
+ serialize: import("easy-tsnameof").PathHandlers<{
726
+ $path: (path: import("easy-tsnameof").PathKey[]) => string;
727
+ $rawPath: (path: import("easy-tsnameof").PathKey[]) => import("easy-tsnameof").PathKey[];
728
+ toString: (path: import("easy-tsnameof").PathKey[]) => () => string;
729
+ valueOf: (path: import("easy-tsnameof").PathKey[]) => () => string;
730
+ [Symbol.toStringTag]: (path: import("easy-tsnameof").PathKey[]) => string;
731
+ }>;
732
+ } & import("easy-tsnameof").PathHandlers<{
733
+ $path: (path: import("easy-tsnameof").PathKey[]) => string;
734
+ $rawPath: (path: import("easy-tsnameof").PathKey[]) => import("easy-tsnameof").PathKey[];
735
+ toString: (path: import("easy-tsnameof").PathKey[]) => () => string;
736
+ valueOf: (path: import("easy-tsnameof").PathKey[]) => () => string;
737
+ [Symbol.toStringTag]: (path: import("easy-tsnameof").PathKey[]) => string;
738
+ }>;
739
+ readonly renderHints: {
740
+ technicalType: import("easy-tsnameof").PathHandlers<{
741
+ $path: (path: import("easy-tsnameof").PathKey[]) => string;
742
+ $rawPath: (path: import("easy-tsnameof").PathKey[]) => import("easy-tsnameof").PathKey[];
743
+ toString: (path: import("easy-tsnameof").PathKey[]) => () => string;
744
+ valueOf: (path: import("easy-tsnameof").PathKey[]) => () => string;
745
+ [Symbol.toStringTag]: (path: import("easy-tsnameof").PathKey[]) => string;
746
+ }>;
747
+ editType: import("easy-tsnameof").PathHandlers<{
748
+ $path: (path: import("easy-tsnameof").PathKey[]) => string;
749
+ $rawPath: (path: import("easy-tsnameof").PathKey[]) => import("easy-tsnameof").PathKey[];
750
+ toString: (path: import("easy-tsnameof").PathKey[]) => () => string;
751
+ valueOf: (path: import("easy-tsnameof").PathKey[]) => () => string;
752
+ [Symbol.toStringTag]: (path: import("easy-tsnameof").PathKey[]) => string;
753
+ }>;
754
+ dataType: import("easy-tsnameof").PathHandlers<{
755
+ $path: (path: import("easy-tsnameof").PathKey[]) => string;
756
+ $rawPath: (path: import("easy-tsnameof").PathKey[]) => import("easy-tsnameof").PathKey[];
757
+ toString: (path: import("easy-tsnameof").PathKey[]) => () => string;
758
+ valueOf: (path: import("easy-tsnameof").PathKey[]) => () => string;
759
+ [Symbol.toStringTag]: (path: import("easy-tsnameof").PathKey[]) => string;
760
+ }>;
761
+ propertyHints: {
762
+ [x: string]: any & import("easy-tsnameof").PathHandlers<{
763
+ $path: (path: import("easy-tsnameof").PathKey[]) => string;
764
+ $rawPath: (path: import("easy-tsnameof").PathKey[]) => import("easy-tsnameof").PathKey[];
765
+ toString: (path: import("easy-tsnameof").PathKey[]) => () => string;
766
+ valueOf: (path: import("easy-tsnameof").PathKey[]) => () => string;
767
+ [Symbol.toStringTag]: (path: import("easy-tsnameof").PathKey[]) => string;
768
+ }>;
769
+ } & import("easy-tsnameof").PathHandlers<{
770
+ $path: (path: import("easy-tsnameof").PathKey[]) => string;
771
+ $rawPath: (path: import("easy-tsnameof").PathKey[]) => import("easy-tsnameof").PathKey[];
772
+ toString: (path: import("easy-tsnameof").PathKey[]) => () => string;
773
+ valueOf: (path: import("easy-tsnameof").PathKey[]) => () => string;
774
+ [Symbol.toStringTag]: (path: import("easy-tsnameof").PathKey[]) => string;
775
+ }>;
776
+ toJSON: import("easy-tsnameof").PathHandlers<{
777
+ $path: (path: import("easy-tsnameof").PathKey[]) => string;
778
+ $rawPath: (path: import("easy-tsnameof").PathKey[]) => import("easy-tsnameof").PathKey[];
779
+ toString: (path: import("easy-tsnameof").PathKey[]) => () => string;
780
+ valueOf: (path: import("easy-tsnameof").PathKey[]) => () => string;
781
+ [Symbol.toStringTag]: (path: import("easy-tsnameof").PathKey[]) => string;
782
+ }>;
783
+ copyWith: import("easy-tsnameof").PathHandlers<{
784
+ $path: (path: import("easy-tsnameof").PathKey[]) => string;
785
+ $rawPath: (path: import("easy-tsnameof").PathKey[]) => import("easy-tsnameof").PathKey[];
786
+ toString: (path: import("easy-tsnameof").PathKey[]) => () => string;
787
+ valueOf: (path: import("easy-tsnameof").PathKey[]) => () => string;
788
+ [Symbol.toStringTag]: (path: import("easy-tsnameof").PathKey[]) => string;
789
+ }>;
790
+ validate: import("easy-tsnameof").PathHandlers<{
791
+ $path: (path: import("easy-tsnameof").PathKey[]) => string;
792
+ $rawPath: (path: import("easy-tsnameof").PathKey[]) => import("easy-tsnameof").PathKey[];
793
+ toString: (path: import("easy-tsnameof").PathKey[]) => () => string;
794
+ valueOf: (path: import("easy-tsnameof").PathKey[]) => () => string;
795
+ [Symbol.toStringTag]: (path: import("easy-tsnameof").PathKey[]) => string;
796
+ }>;
797
+ validateProperty: import("easy-tsnameof").PathHandlers<{
798
+ $path: (path: import("easy-tsnameof").PathKey[]) => string;
799
+ $rawPath: (path: import("easy-tsnameof").PathKey[]) => import("easy-tsnameof").PathKey[];
800
+ toString: (path: import("easy-tsnameof").PathKey[]) => () => string;
801
+ valueOf: (path: import("easy-tsnameof").PathKey[]) => () => string;
802
+ [Symbol.toStringTag]: (path: import("easy-tsnameof").PathKey[]) => string;
803
+ }>;
804
+ serialize: import("easy-tsnameof").PathHandlers<{
805
+ $path: (path: import("easy-tsnameof").PathKey[]) => string;
806
+ $rawPath: (path: import("easy-tsnameof").PathKey[]) => import("easy-tsnameof").PathKey[];
807
+ toString: (path: import("easy-tsnameof").PathKey[]) => () => string;
808
+ valueOf: (path: import("easy-tsnameof").PathKey[]) => () => string;
809
+ [Symbol.toStringTag]: (path: import("easy-tsnameof").PathKey[]) => string;
810
+ }>;
811
+ } & import("easy-tsnameof").PathHandlers<{
812
+ $path: (path: import("easy-tsnameof").PathKey[]) => string;
813
+ $rawPath: (path: import("easy-tsnameof").PathKey[]) => import("easy-tsnameof").PathKey[];
814
+ toString: (path: import("easy-tsnameof").PathKey[]) => () => string;
815
+ valueOf: (path: import("easy-tsnameof").PathKey[]) => () => string;
816
+ [Symbol.toStringTag]: (path: import("easy-tsnameof").PathKey[]) => string;
817
+ }>;
818
+ validate: import("easy-tsnameof").PathHandlers<{
819
+ $path: (path: import("easy-tsnameof").PathKey[]) => string;
820
+ $rawPath: (path: import("easy-tsnameof").PathKey[]) => import("easy-tsnameof").PathKey[];
821
+ toString: (path: import("easy-tsnameof").PathKey[]) => () => string;
822
+ valueOf: (path: import("easy-tsnameof").PathKey[]) => () => string;
823
+ [Symbol.toStringTag]: (path: import("easy-tsnameof").PathKey[]) => string;
824
+ }>;
825
+ validateProperty: import("easy-tsnameof").PathHandlers<{
826
+ $path: (path: import("easy-tsnameof").PathKey[]) => string;
827
+ $rawPath: (path: import("easy-tsnameof").PathKey[]) => import("easy-tsnameof").PathKey[];
828
+ toString: (path: import("easy-tsnameof").PathKey[]) => () => string;
829
+ valueOf: (path: import("easy-tsnameof").PathKey[]) => () => string;
830
+ [Symbol.toStringTag]: (path: import("easy-tsnameof").PathKey[]) => string;
831
+ }>;
832
+ serialize: import("easy-tsnameof").PathHandlers<{
833
+ $path: (path: import("easy-tsnameof").PathKey[]) => string;
834
+ $rawPath: (path: import("easy-tsnameof").PathKey[]) => import("easy-tsnameof").PathKey[];
835
+ toString: (path: import("easy-tsnameof").PathKey[]) => () => string;
836
+ valueOf: (path: import("easy-tsnameof").PathKey[]) => () => string;
837
+ [Symbol.toStringTag]: (path: import("easy-tsnameof").PathKey[]) => string;
838
+ }>;
839
+ toJSON: import("easy-tsnameof").PathHandlers<{
840
+ $path: (path: import("easy-tsnameof").PathKey[]) => string;
841
+ $rawPath: (path: import("easy-tsnameof").PathKey[]) => import("easy-tsnameof").PathKey[];
842
+ toString: (path: import("easy-tsnameof").PathKey[]) => () => string;
843
+ valueOf: (path: import("easy-tsnameof").PathKey[]) => () => string;
844
+ [Symbol.toStringTag]: (path: import("easy-tsnameof").PathKey[]) => string;
845
+ }>;
846
+ } & import("easy-tsnameof").PathHandlers<{
847
+ $path: (path: import("easy-tsnameof").PathKey[]) => string;
848
+ $rawPath: (path: import("easy-tsnameof").PathKey[]) => import("easy-tsnameof").PathKey[];
849
+ toString: (path: import("easy-tsnameof").PathKey[]) => () => string;
850
+ valueOf: (path: import("easy-tsnameof").PathKey[]) => () => string;
851
+ [Symbol.toStringTag]: (path: import("easy-tsnameof").PathKey[]) => string;
852
+ }>;
853
+ toString: import("easy-tsnameof").PathHandlers<{
854
+ $path: (path: import("easy-tsnameof").PathKey[]) => string;
855
+ $rawPath: (path: import("easy-tsnameof").PathKey[]) => import("easy-tsnameof").PathKey[];
856
+ toString: (path: import("easy-tsnameof").PathKey[]) => () => string;
857
+ valueOf: (path: import("easy-tsnameof").PathKey[]) => () => string;
858
+ [Symbol.toStringTag]: (path: import("easy-tsnameof").PathKey[]) => string;
859
+ }>;
860
+ readonly valueHints: {
861
+ editHelp: import("easy-tsnameof").PathHandlers<{
862
+ $path: (path: import("easy-tsnameof").PathKey[]) => string;
863
+ $rawPath: (path: import("easy-tsnameof").PathKey[]) => import("easy-tsnameof").PathKey[];
864
+ toString: (path: import("easy-tsnameof").PathKey[]) => () => string;
865
+ valueOf: (path: import("easy-tsnameof").PathKey[]) => () => string;
866
+ [Symbol.toStringTag]: (path: import("easy-tsnameof").PathKey[]) => string;
867
+ }>;
868
+ min: import("easy-tsnameof").PathHandlers<{
869
+ $path: (path: import("easy-tsnameof").PathKey[]) => string;
870
+ $rawPath: (path: import("easy-tsnameof").PathKey[]) => import("easy-tsnameof").PathKey[];
871
+ toString: (path: import("easy-tsnameof").PathKey[]) => () => string;
872
+ valueOf: (path: import("easy-tsnameof").PathKey[]) => () => string;
873
+ [Symbol.toStringTag]: (path: import("easy-tsnameof").PathKey[]) => string;
874
+ }>;
875
+ max: import("easy-tsnameof").PathHandlers<{
876
+ $path: (path: import("easy-tsnameof").PathKey[]) => string;
877
+ $rawPath: (path: import("easy-tsnameof").PathKey[]) => import("easy-tsnameof").PathKey[];
878
+ toString: (path: import("easy-tsnameof").PathKey[]) => () => string;
879
+ valueOf: (path: import("easy-tsnameof").PathKey[]) => () => string;
880
+ [Symbol.toStringTag]: (path: import("easy-tsnameof").PathKey[]) => string;
881
+ }>;
882
+ pattern: import("easy-tsnameof").PathHandlers<{
883
+ $path: (path: import("easy-tsnameof").PathKey[]) => string;
884
+ $rawPath: (path: import("easy-tsnameof").PathKey[]) => import("easy-tsnameof").PathKey[];
885
+ toString: (path: import("easy-tsnameof").PathKey[]) => () => string;
886
+ valueOf: (path: import("easy-tsnameof").PathKey[]) => () => string;
887
+ [Symbol.toStringTag]: (path: import("easy-tsnameof").PathKey[]) => string;
888
+ }>;
889
+ values: ({
890
+ displayName: import("easy-tsnameof").PathHandlers<{
891
+ $path: (path: import("easy-tsnameof").PathKey[]) => string;
892
+ $rawPath: (path: import("easy-tsnameof").PathKey[]) => import("easy-tsnameof").PathKey[];
893
+ toString: (path: import("easy-tsnameof").PathKey[]) => () => string;
894
+ valueOf: (path: import("easy-tsnameof").PathKey[]) => () => string;
895
+ [Symbol.toStringTag]: (path: import("easy-tsnameof").PathKey[]) => string;
896
+ }>;
897
+ key: import("easy-tsnameof").PathHandlers<{
898
+ $path: (path: import("easy-tsnameof").PathKey[]) => string;
899
+ $rawPath: (path: import("easy-tsnameof").PathKey[]) => import("easy-tsnameof").PathKey[];
900
+ toString: (path: import("easy-tsnameof").PathKey[]) => () => string;
901
+ valueOf: (path: import("easy-tsnameof").PathKey[]) => () => string;
902
+ [Symbol.toStringTag]: (path: import("easy-tsnameof").PathKey[]) => string;
903
+ }>;
904
+ validate: import("easy-tsnameof").PathHandlers<{
905
+ $path: (path: import("easy-tsnameof").PathKey[]) => string;
906
+ $rawPath: (path: import("easy-tsnameof").PathKey[]) => import("easy-tsnameof").PathKey[];
907
+ toString: (path: import("easy-tsnameof").PathKey[]) => () => string;
908
+ valueOf: (path: import("easy-tsnameof").PathKey[]) => () => string;
909
+ [Symbol.toStringTag]: (path: import("easy-tsnameof").PathKey[]) => string;
910
+ }>;
911
+ validateProperty: import("easy-tsnameof").PathHandlers<{
912
+ $path: (path: import("easy-tsnameof").PathKey[]) => string;
913
+ $rawPath: (path: import("easy-tsnameof").PathKey[]) => import("easy-tsnameof").PathKey[];
914
+ toString: (path: import("easy-tsnameof").PathKey[]) => () => string;
915
+ valueOf: (path: import("easy-tsnameof").PathKey[]) => () => string;
916
+ [Symbol.toStringTag]: (path: import("easy-tsnameof").PathKey[]) => string;
917
+ }>;
918
+ serialize: import("easy-tsnameof").PathHandlers<{
919
+ $path: (path: import("easy-tsnameof").PathKey[]) => string;
920
+ $rawPath: (path: import("easy-tsnameof").PathKey[]) => import("easy-tsnameof").PathKey[];
921
+ toString: (path: import("easy-tsnameof").PathKey[]) => () => string;
922
+ valueOf: (path: import("easy-tsnameof").PathKey[]) => () => string;
923
+ [Symbol.toStringTag]: (path: import("easy-tsnameof").PathKey[]) => string;
924
+ }>;
925
+ toJSON: import("easy-tsnameof").PathHandlers<{
926
+ $path: (path: import("easy-tsnameof").PathKey[]) => string;
927
+ $rawPath: (path: import("easy-tsnameof").PathKey[]) => import("easy-tsnameof").PathKey[];
928
+ toString: (path: import("easy-tsnameof").PathKey[]) => () => string;
929
+ valueOf: (path: import("easy-tsnameof").PathKey[]) => () => string;
930
+ [Symbol.toStringTag]: (path: import("easy-tsnameof").PathKey[]) => string;
931
+ }>;
932
+ } & import("easy-tsnameof").PathHandlers<{
933
+ $path: (path: import("easy-tsnameof").PathKey[]) => string;
934
+ $rawPath: (path: import("easy-tsnameof").PathKey[]) => import("easy-tsnameof").PathKey[];
935
+ toString: (path: import("easy-tsnameof").PathKey[]) => () => string;
936
+ valueOf: (path: import("easy-tsnameof").PathKey[]) => () => string;
937
+ [Symbol.toStringTag]: (path: import("easy-tsnameof").PathKey[]) => string;
938
+ }>)[] & import("easy-tsnameof").PathHandlers<{
939
+ $path: (path: import("easy-tsnameof").PathKey[]) => string;
940
+ $rawPath: (path: import("easy-tsnameof").PathKey[]) => import("easy-tsnameof").PathKey[];
941
+ toString: (path: import("easy-tsnameof").PathKey[]) => () => string;
942
+ valueOf: (path: import("easy-tsnameof").PathKey[]) => () => string;
943
+ [Symbol.toStringTag]: (path: import("easy-tsnameof").PathKey[]) => string;
944
+ }>;
945
+ defaultValue: import("easy-tsnameof").PathHandlers<{
946
+ $path: (path: import("easy-tsnameof").PathKey[]) => string;
947
+ $rawPath: (path: import("easy-tsnameof").PathKey[]) => import("easy-tsnameof").PathKey[];
948
+ toString: (path: import("easy-tsnameof").PathKey[]) => () => string;
949
+ valueOf: (path: import("easy-tsnameof").PathKey[]) => () => string;
950
+ [Symbol.toStringTag]: (path: import("easy-tsnameof").PathKey[]) => string;
951
+ }>;
952
+ propertyHints: {
953
+ [x: string]: any & import("easy-tsnameof").PathHandlers<{
954
+ $path: (path: import("easy-tsnameof").PathKey[]) => string;
955
+ $rawPath: (path: import("easy-tsnameof").PathKey[]) => import("easy-tsnameof").PathKey[];
956
+ toString: (path: import("easy-tsnameof").PathKey[]) => () => string;
957
+ valueOf: (path: import("easy-tsnameof").PathKey[]) => () => string;
958
+ [Symbol.toStringTag]: (path: import("easy-tsnameof").PathKey[]) => string;
959
+ }>;
960
+ } & import("easy-tsnameof").PathHandlers<{
961
+ $path: (path: import("easy-tsnameof").PathKey[]) => string;
962
+ $rawPath: (path: import("easy-tsnameof").PathKey[]) => import("easy-tsnameof").PathKey[];
963
+ toString: (path: import("easy-tsnameof").PathKey[]) => () => string;
964
+ valueOf: (path: import("easy-tsnameof").PathKey[]) => () => string;
965
+ [Symbol.toStringTag]: (path: import("easy-tsnameof").PathKey[]) => string;
966
+ }>;
967
+ toJSON: import("easy-tsnameof").PathHandlers<{
968
+ $path: (path: import("easy-tsnameof").PathKey[]) => string;
969
+ $rawPath: (path: import("easy-tsnameof").PathKey[]) => import("easy-tsnameof").PathKey[];
970
+ toString: (path: import("easy-tsnameof").PathKey[]) => () => string;
971
+ valueOf: (path: import("easy-tsnameof").PathKey[]) => () => string;
972
+ [Symbol.toStringTag]: (path: import("easy-tsnameof").PathKey[]) => string;
973
+ }>;
974
+ copyWith: import("easy-tsnameof").PathHandlers<{
975
+ $path: (path: import("easy-tsnameof").PathKey[]) => string;
976
+ $rawPath: (path: import("easy-tsnameof").PathKey[]) => import("easy-tsnameof").PathKey[];
977
+ toString: (path: import("easy-tsnameof").PathKey[]) => () => string;
978
+ valueOf: (path: import("easy-tsnameof").PathKey[]) => () => string;
979
+ [Symbol.toStringTag]: (path: import("easy-tsnameof").PathKey[]) => string;
980
+ }>;
981
+ validate: import("easy-tsnameof").PathHandlers<{
982
+ $path: (path: import("easy-tsnameof").PathKey[]) => string;
983
+ $rawPath: (path: import("easy-tsnameof").PathKey[]) => import("easy-tsnameof").PathKey[];
984
+ toString: (path: import("easy-tsnameof").PathKey[]) => () => string;
985
+ valueOf: (path: import("easy-tsnameof").PathKey[]) => () => string;
986
+ [Symbol.toStringTag]: (path: import("easy-tsnameof").PathKey[]) => string;
987
+ }>;
988
+ validateProperty: import("easy-tsnameof").PathHandlers<{
989
+ $path: (path: import("easy-tsnameof").PathKey[]) => string;
990
+ $rawPath: (path: import("easy-tsnameof").PathKey[]) => import("easy-tsnameof").PathKey[];
991
+ toString: (path: import("easy-tsnameof").PathKey[]) => () => string;
992
+ valueOf: (path: import("easy-tsnameof").PathKey[]) => () => string;
993
+ [Symbol.toStringTag]: (path: import("easy-tsnameof").PathKey[]) => string;
994
+ }>;
995
+ serialize: import("easy-tsnameof").PathHandlers<{
996
+ $path: (path: import("easy-tsnameof").PathKey[]) => string;
997
+ $rawPath: (path: import("easy-tsnameof").PathKey[]) => import("easy-tsnameof").PathKey[];
998
+ toString: (path: import("easy-tsnameof").PathKey[]) => () => string;
999
+ valueOf: (path: import("easy-tsnameof").PathKey[]) => () => string;
1000
+ [Symbol.toStringTag]: (path: import("easy-tsnameof").PathKey[]) => string;
1001
+ }>;
1002
+ } & import("easy-tsnameof").PathHandlers<{
1003
+ $path: (path: import("easy-tsnameof").PathKey[]) => string;
1004
+ $rawPath: (path: import("easy-tsnameof").PathKey[]) => import("easy-tsnameof").PathKey[];
1005
+ toString: (path: import("easy-tsnameof").PathKey[]) => () => string;
1006
+ valueOf: (path: import("easy-tsnameof").PathKey[]) => () => string;
1007
+ [Symbol.toStringTag]: (path: import("easy-tsnameof").PathKey[]) => string;
1008
+ }>;
1009
+ readonly renderHints: {
1010
+ technicalType: import("easy-tsnameof").PathHandlers<{
1011
+ $path: (path: import("easy-tsnameof").PathKey[]) => string;
1012
+ $rawPath: (path: import("easy-tsnameof").PathKey[]) => import("easy-tsnameof").PathKey[];
1013
+ toString: (path: import("easy-tsnameof").PathKey[]) => () => string;
1014
+ valueOf: (path: import("easy-tsnameof").PathKey[]) => () => string;
1015
+ [Symbol.toStringTag]: (path: import("easy-tsnameof").PathKey[]) => string;
1016
+ }>;
1017
+ editType: import("easy-tsnameof").PathHandlers<{
1018
+ $path: (path: import("easy-tsnameof").PathKey[]) => string;
1019
+ $rawPath: (path: import("easy-tsnameof").PathKey[]) => import("easy-tsnameof").PathKey[];
1020
+ toString: (path: import("easy-tsnameof").PathKey[]) => () => string;
1021
+ valueOf: (path: import("easy-tsnameof").PathKey[]) => () => string;
1022
+ [Symbol.toStringTag]: (path: import("easy-tsnameof").PathKey[]) => string;
1023
+ }>;
1024
+ dataType: import("easy-tsnameof").PathHandlers<{
1025
+ $path: (path: import("easy-tsnameof").PathKey[]) => string;
1026
+ $rawPath: (path: import("easy-tsnameof").PathKey[]) => import("easy-tsnameof").PathKey[];
1027
+ toString: (path: import("easy-tsnameof").PathKey[]) => () => string;
1028
+ valueOf: (path: import("easy-tsnameof").PathKey[]) => () => string;
1029
+ [Symbol.toStringTag]: (path: import("easy-tsnameof").PathKey[]) => string;
1030
+ }>;
1031
+ propertyHints: {
1032
+ [x: string]: any & import("easy-tsnameof").PathHandlers<{
1033
+ $path: (path: import("easy-tsnameof").PathKey[]) => string;
1034
+ $rawPath: (path: import("easy-tsnameof").PathKey[]) => import("easy-tsnameof").PathKey[];
1035
+ toString: (path: import("easy-tsnameof").PathKey[]) => () => string;
1036
+ valueOf: (path: import("easy-tsnameof").PathKey[]) => () => string;
1037
+ [Symbol.toStringTag]: (path: import("easy-tsnameof").PathKey[]) => string;
1038
+ }>;
1039
+ } & import("easy-tsnameof").PathHandlers<{
1040
+ $path: (path: import("easy-tsnameof").PathKey[]) => string;
1041
+ $rawPath: (path: import("easy-tsnameof").PathKey[]) => import("easy-tsnameof").PathKey[];
1042
+ toString: (path: import("easy-tsnameof").PathKey[]) => () => string;
1043
+ valueOf: (path: import("easy-tsnameof").PathKey[]) => () => string;
1044
+ [Symbol.toStringTag]: (path: import("easy-tsnameof").PathKey[]) => string;
1045
+ }>;
1046
+ toJSON: import("easy-tsnameof").PathHandlers<{
1047
+ $path: (path: import("easy-tsnameof").PathKey[]) => string;
1048
+ $rawPath: (path: import("easy-tsnameof").PathKey[]) => import("easy-tsnameof").PathKey[];
1049
+ toString: (path: import("easy-tsnameof").PathKey[]) => () => string;
1050
+ valueOf: (path: import("easy-tsnameof").PathKey[]) => () => string;
1051
+ [Symbol.toStringTag]: (path: import("easy-tsnameof").PathKey[]) => string;
1052
+ }>;
1053
+ copyWith: import("easy-tsnameof").PathHandlers<{
1054
+ $path: (path: import("easy-tsnameof").PathKey[]) => string;
1055
+ $rawPath: (path: import("easy-tsnameof").PathKey[]) => import("easy-tsnameof").PathKey[];
1056
+ toString: (path: import("easy-tsnameof").PathKey[]) => () => string;
1057
+ valueOf: (path: import("easy-tsnameof").PathKey[]) => () => string;
1058
+ [Symbol.toStringTag]: (path: import("easy-tsnameof").PathKey[]) => string;
1059
+ }>;
1060
+ validate: import("easy-tsnameof").PathHandlers<{
1061
+ $path: (path: import("easy-tsnameof").PathKey[]) => string;
1062
+ $rawPath: (path: import("easy-tsnameof").PathKey[]) => import("easy-tsnameof").PathKey[];
1063
+ toString: (path: import("easy-tsnameof").PathKey[]) => () => string;
1064
+ valueOf: (path: import("easy-tsnameof").PathKey[]) => () => string;
1065
+ [Symbol.toStringTag]: (path: import("easy-tsnameof").PathKey[]) => string;
1066
+ }>;
1067
+ validateProperty: import("easy-tsnameof").PathHandlers<{
1068
+ $path: (path: import("easy-tsnameof").PathKey[]) => string;
1069
+ $rawPath: (path: import("easy-tsnameof").PathKey[]) => import("easy-tsnameof").PathKey[];
1070
+ toString: (path: import("easy-tsnameof").PathKey[]) => () => string;
1071
+ valueOf: (path: import("easy-tsnameof").PathKey[]) => () => string;
1072
+ [Symbol.toStringTag]: (path: import("easy-tsnameof").PathKey[]) => string;
1073
+ }>;
1074
+ serialize: import("easy-tsnameof").PathHandlers<{
1075
+ $path: (path: import("easy-tsnameof").PathKey[]) => string;
1076
+ $rawPath: (path: import("easy-tsnameof").PathKey[]) => import("easy-tsnameof").PathKey[];
1077
+ toString: (path: import("easy-tsnameof").PathKey[]) => () => string;
1078
+ valueOf: (path: import("easy-tsnameof").PathKey[]) => () => string;
1079
+ [Symbol.toStringTag]: (path: import("easy-tsnameof").PathKey[]) => string;
1080
+ }>;
1081
+ } & import("easy-tsnameof").PathHandlers<{
1082
+ $path: (path: import("easy-tsnameof").PathKey[]) => string;
1083
+ $rawPath: (path: import("easy-tsnameof").PathKey[]) => import("easy-tsnameof").PathKey[];
1084
+ toString: (path: import("easy-tsnameof").PathKey[]) => () => string;
1085
+ valueOf: (path: import("easy-tsnameof").PathKey[]) => () => string;
1086
+ [Symbol.toStringTag]: (path: import("easy-tsnameof").PathKey[]) => string;
1087
+ }>;
1088
+ validate: import("easy-tsnameof").PathHandlers<{
1089
+ $path: (path: import("easy-tsnameof").PathKey[]) => string;
1090
+ $rawPath: (path: import("easy-tsnameof").PathKey[]) => import("easy-tsnameof").PathKey[];
1091
+ toString: (path: import("easy-tsnameof").PathKey[]) => () => string;
1092
+ valueOf: (path: import("easy-tsnameof").PathKey[]) => () => string;
1093
+ [Symbol.toStringTag]: (path: import("easy-tsnameof").PathKey[]) => string;
1094
+ }>;
1095
+ validateProperty: import("easy-tsnameof").PathHandlers<{
1096
+ $path: (path: import("easy-tsnameof").PathKey[]) => string;
1097
+ $rawPath: (path: import("easy-tsnameof").PathKey[]) => import("easy-tsnameof").PathKey[];
1098
+ toString: (path: import("easy-tsnameof").PathKey[]) => () => string;
1099
+ valueOf: (path: import("easy-tsnameof").PathKey[]) => () => string;
1100
+ [Symbol.toStringTag]: (path: import("easy-tsnameof").PathKey[]) => string;
1101
+ }>;
1102
+ serialize: import("easy-tsnameof").PathHandlers<{
1103
+ $path: (path: import("easy-tsnameof").PathKey[]) => string;
1104
+ $rawPath: (path: import("easy-tsnameof").PathKey[]) => import("easy-tsnameof").PathKey[];
1105
+ toString: (path: import("easy-tsnameof").PathKey[]) => () => string;
1106
+ valueOf: (path: import("easy-tsnameof").PathKey[]) => () => string;
1107
+ [Symbol.toStringTag]: (path: import("easy-tsnameof").PathKey[]) => string;
1108
+ }>;
1109
+ toJSON: import("easy-tsnameof").PathHandlers<{
1110
+ $path: (path: import("easy-tsnameof").PathKey[]) => string;
1111
+ $rawPath: (path: import("easy-tsnameof").PathKey[]) => import("easy-tsnameof").PathKey[];
1112
+ toString: (path: import("easy-tsnameof").PathKey[]) => () => string;
1113
+ valueOf: (path: import("easy-tsnameof").PathKey[]) => () => string;
1114
+ [Symbol.toStringTag]: (path: import("easy-tsnameof").PathKey[]) => string;
1115
+ }>;
1116
+ } & import("easy-tsnameof").PathHandlers<{
1117
+ $path: (path: import("easy-tsnameof").PathKey[]) => string;
1118
+ $rawPath: (path: import("easy-tsnameof").PathKey[]) => import("easy-tsnameof").PathKey[];
1119
+ toString: (path: import("easy-tsnameof").PathKey[]) => () => string;
1120
+ valueOf: (path: import("easy-tsnameof").PathKey[]) => () => string;
1121
+ [Symbol.toStringTag]: (path: import("easy-tsnameof").PathKey[]) => string;
1122
+ }>;
6
1123
  city: BirthCity;
7
- country?: BirthCountry;
1124
+ country: BirthCountry;
8
1125
  state?: BirthState;
1126
+ static get valueHints(): ValueHints;
1127
+ static get renderHints(): RenderHints;
1128
+ static from(value: IBirthPlace | BirthPlaceJSON): BirthPlace;
1129
+ toString(): string;
9
1130
  }