@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.
- package/README.md +2 -2
- package/dist/attributes/AbstractAttribute.d.ts +17 -0
- package/dist/attributes/{AttributeV2.js → AbstractAttribute.js} +9 -26
- package/dist/attributes/AbstractAttribute.js.map +1 -0
- package/dist/attributes/AbstractAttributeQuery.d.ts +17 -0
- package/dist/attributes/{AttributeQuery.js → AbstractAttributeQuery.js} +14 -21
- package/dist/attributes/AbstractAttributeQuery.js.map +1 -0
- package/dist/attributes/AbstractAttributeValue.d.ts +10 -2
- package/dist/attributes/AbstractAttributeValue.js +12 -0
- package/dist/attributes/AbstractAttributeValue.js.map +1 -1
- package/dist/attributes/AbstractComplexValue.d.ts +9 -0
- package/dist/attributes/AbstractComplexValue.js +15 -0
- package/dist/attributes/AbstractComplexValue.js.map +1 -0
- package/dist/attributes/IdentityAttribute.d.ts +16 -0
- package/dist/attributes/IdentityAttribute.js +38 -0
- package/dist/attributes/IdentityAttribute.js.map +1 -0
- package/dist/attributes/IdentityAttributeQuery.d.ts +12 -0
- package/dist/attributes/IdentityAttributeQuery.js +32 -0
- package/dist/attributes/IdentityAttributeQuery.js.map +1 -0
- package/dist/attributes/RelationshipAttribute.d.ts +53 -0
- package/dist/attributes/RelationshipAttribute.js +88 -0
- package/dist/attributes/RelationshipAttribute.js.map +1 -0
- package/dist/attributes/RelationshipAttributeQuery.d.ts +23 -0
- package/dist/attributes/RelationshipAttributeQuery.js +49 -0
- package/dist/attributes/RelationshipAttributeQuery.js.map +1 -0
- package/dist/attributes/constants/CountriesAlpha2.d.ts +252 -0
- package/dist/attributes/constants/CountriesAlpha2.js +507 -0
- package/dist/attributes/constants/CountriesAlpha2.js.map +1 -0
- package/dist/attributes/constants/LanguagesISO639.d.ts +191 -0
- package/dist/attributes/constants/LanguagesISO639.js +377 -0
- package/dist/attributes/constants/LanguagesISO639.js.map +1 -0
- package/dist/attributes/constants/index.d.ts +2 -0
- package/dist/attributes/{types/idcard → constants}/index.js +2 -4
- package/dist/attributes/constants/index.js.map +1 -0
- package/dist/attributes/hints/RelationshipAttributeCreationHints.d.ts +31 -0
- package/dist/attributes/hints/RelationshipAttributeCreationHints.js +64 -0
- package/dist/attributes/hints/RelationshipAttributeCreationHints.js.map +1 -0
- package/dist/attributes/hints/RenderHints.d.ts +40 -0
- package/dist/attributes/hints/RenderHints.js +119 -0
- package/dist/attributes/hints/RenderHints.js.map +1 -0
- package/dist/attributes/hints/RenderHintsDataType.d.ts +19 -0
- package/dist/attributes/hints/RenderHintsDataType.js +24 -0
- package/dist/attributes/hints/RenderHintsDataType.js.map +1 -0
- package/dist/attributes/hints/RenderHintsEditType.d.ts +11 -0
- package/dist/attributes/hints/RenderHintsEditType.js +16 -0
- package/dist/attributes/hints/RenderHintsEditType.js.map +1 -0
- package/dist/attributes/hints/RenderHintsTechnicalType.d.ts +7 -0
- package/dist/attributes/hints/RenderHintsTechnicalType.js +12 -0
- package/dist/attributes/hints/RenderHintsTechnicalType.js.map +1 -0
- package/dist/attributes/hints/ValueHints.d.ts +50 -0
- package/dist/attributes/hints/ValueHints.js +149 -0
- package/dist/attributes/hints/ValueHints.js.map +1 -0
- package/dist/attributes/hints/ValueHintsValue.d.ts +14 -0
- package/dist/attributes/hints/ValueHintsValue.js +33 -0
- package/dist/attributes/hints/ValueHintsValue.js.map +1 -0
- package/dist/attributes/hints/index.d.ts +7 -0
- package/dist/attributes/hints/index.js +24 -0
- package/dist/attributes/hints/index.js.map +1 -0
- package/dist/attributes/index.d.ts +9 -2
- package/dist/attributes/index.js +9 -2
- package/dist/attributes/index.js.map +1 -1
- package/dist/attributes/types/AbstractBoolean.d.ts +16 -0
- package/dist/attributes/types/AbstractBoolean.js +41 -0
- package/dist/attributes/types/AbstractBoolean.js.map +1 -0
- package/dist/attributes/types/AbstractFloat.d.ts +16 -0
- package/dist/attributes/types/{AbstractFloatValue.js → AbstractFloat.js} +23 -5
- package/dist/attributes/types/AbstractFloat.js.map +1 -0
- package/dist/attributes/types/AbstractInteger.d.ts +17 -0
- package/dist/attributes/types/{AbstractIntegerValue.js → AbstractInteger.js} +26 -5
- package/dist/attributes/types/AbstractInteger.js.map +1 -0
- package/dist/attributes/types/AbstractString.d.ts +16 -0
- package/dist/attributes/types/AbstractString.js +43 -0
- package/dist/attributes/types/AbstractString.js.map +1 -0
- package/dist/attributes/types/address/AbstractAddress.d.ts +282 -2
- package/dist/attributes/types/address/AbstractAddress.js +25 -2
- package/dist/attributes/types/address/AbstractAddress.js.map +1 -1
- package/dist/attributes/types/address/City.d.ts +2 -2
- package/dist/attributes/types/address/City.js +2 -2
- package/dist/attributes/types/address/City.js.map +1 -1
- package/dist/attributes/types/address/Country.d.ts +2 -2
- package/dist/attributes/types/address/Country.js +2 -2
- package/dist/attributes/types/address/Country.js.map +1 -1
- package/dist/attributes/types/address/DeliveryBoxAddress.d.ts +1710 -2
- package/dist/attributes/types/address/DeliveryBoxAddress.js +69 -4
- package/dist/attributes/types/address/DeliveryBoxAddress.js.map +1 -1
- package/dist/attributes/types/address/HouseNumber.d.ts +2 -2
- package/dist/attributes/types/address/HouseNumber.js +2 -2
- package/dist/attributes/types/address/HouseNumber.js.map +1 -1
- package/dist/attributes/types/address/PostOfficeBoxAddress.d.ts +1419 -2
- package/dist/attributes/types/address/PostOfficeBoxAddress.js +52 -4
- package/dist/attributes/types/address/PostOfficeBoxAddress.js.map +1 -1
- package/dist/attributes/types/address/State.d.ts +2 -2
- package/dist/attributes/types/address/State.js +2 -2
- package/dist/attributes/types/address/State.js.map +1 -1
- package/dist/attributes/types/address/Street.d.ts +2 -2
- package/dist/attributes/types/address/Street.js +2 -2
- package/dist/attributes/types/address/Street.js.map +1 -1
- package/dist/attributes/types/address/StreetAddress.d.ts +1970 -2
- package/dist/attributes/types/address/StreetAddress.js +49 -6
- package/dist/attributes/types/address/StreetAddress.js.map +1 -1
- package/dist/attributes/types/address/ZipCode.d.ts +2 -2
- package/dist/attributes/types/address/ZipCode.js +2 -2
- package/dist/attributes/types/address/ZipCode.js.map +1 -1
- package/dist/attributes/types/birth/BirthDate.d.ts +1123 -2
- package/dist/attributes/types/birth/BirthDate.js +40 -4
- package/dist/attributes/types/birth/BirthDate.js.map +1 -1
- package/dist/attributes/types/birth/BirthDay.d.ts +1 -1
- package/dist/attributes/types/birth/BirthDay.js +1 -1
- package/dist/attributes/types/birth/BirthDay.js.map +1 -1
- package/dist/attributes/types/birth/BirthMonth.d.ts +3 -1
- package/dist/attributes/types/birth/BirthMonth.js +6 -1
- package/dist/attributes/types/birth/BirthMonth.js.map +1 -1
- package/dist/attributes/types/birth/BirthPlace.d.ts +1124 -3
- package/dist/attributes/types/birth/BirthPlace.js +41 -5
- package/dist/attributes/types/birth/BirthPlace.js.map +1 -1
- package/dist/attributes/types/birth/BirthYear.d.ts +1 -1
- package/dist/attributes/types/birth/BirthYear.js +1 -1
- package/dist/attributes/types/birth/BirthYear.js.map +1 -1
- package/dist/attributes/types/communication/CommunicationLanguage.d.ts +3 -0
- package/dist/attributes/types/{idcard/IDCardIssuingDate.js → communication/CommunicationLanguage.js} +8 -8
- package/dist/attributes/types/communication/CommunicationLanguage.js.map +1 -0
- package/dist/attributes/types/communication/EMailAddress.d.ts +3 -0
- package/dist/{relationships/RelationshipExistsAction.js → attributes/types/communication/EMailAddress.js} +8 -7
- package/dist/attributes/types/communication/EMailAddress.js.map +1 -0
- package/dist/attributes/types/communication/Fax.d.ts +3 -0
- package/dist/attributes/types/{name/Title.js → communication/Fax.js} +8 -8
- package/dist/attributes/types/communication/Fax.js.map +1 -0
- package/dist/attributes/types/communication/Phone.d.ts +3 -0
- package/dist/attributes/types/communication/Phone.js +18 -0
- package/dist/attributes/types/communication/Phone.js.map +1 -0
- package/dist/attributes/types/communication/Website.d.ts +3 -0
- package/dist/attributes/types/communication/Website.js +18 -0
- package/dist/attributes/types/communication/Website.js.map +1 -0
- package/dist/attributes/types/communication/index.d.ts +5 -0
- package/dist/attributes/types/communication/index.js +22 -0
- package/dist/attributes/types/communication/index.js.map +1 -0
- package/dist/attributes/types/dates/AbstractDateString.d.ts +8 -0
- package/dist/attributes/types/{AbstractDateString.js → dates/AbstractDateString.js} +17 -2
- package/dist/attributes/types/dates/AbstractDateString.js.map +1 -0
- package/dist/attributes/types/dates/AbstractDay.d.ts +10 -0
- package/dist/attributes/types/{AbstractDay.js → dates/AbstractDay.js} +15 -2
- package/dist/attributes/types/dates/AbstractDay.js.map +1 -0
- package/dist/attributes/types/{AbstractMonth.d.ts → dates/AbstractMonth.d.ts} +6 -2
- package/dist/attributes/types/{AbstractMonth.js → dates/AbstractMonth.js} +15 -2
- package/dist/attributes/types/dates/AbstractMonth.js.map +1 -0
- package/dist/attributes/types/dates/AbstractYear.d.ts +7 -0
- package/dist/attributes/types/dates/AbstractYear.js +38 -0
- package/dist/attributes/types/dates/AbstractYear.js.map +1 -0
- package/dist/attributes/types/dates/index.d.ts +4 -0
- package/dist/attributes/types/dates/index.js +21 -0
- package/dist/attributes/types/dates/index.js.map +1 -0
- package/dist/attributes/types/files/FileReference.d.ts +3 -0
- package/dist/attributes/types/files/FileReference.js +18 -0
- package/dist/attributes/types/files/FileReference.js.map +1 -0
- package/dist/attributes/types/files/index.d.ts +1 -0
- package/dist/attributes/types/files/index.js +18 -0
- package/dist/attributes/types/files/index.js.map +1 -0
- package/dist/attributes/types/index.d.ts +11 -1
- package/dist/attributes/types/index.js +11 -1
- package/dist/attributes/types/index.js.map +1 -1
- package/dist/attributes/types/measurements/{LengthMeasurement.d.ts → AbstractLengthMeasurement.d.ts} +3 -1
- package/dist/attributes/types/measurements/{LengthMeasurement.js → AbstractLengthMeasurement.js} +19 -9
- package/dist/attributes/types/measurements/AbstractLengthMeasurement.js.map +1 -0
- package/dist/attributes/types/measurements/AbstractMeasurement.d.ts +299 -2
- package/dist/attributes/types/measurements/AbstractMeasurement.js +33 -2
- package/dist/attributes/types/measurements/AbstractMeasurement.js.map +1 -1
- package/dist/attributes/types/measurements/index.d.ts +2 -1
- package/dist/attributes/types/measurements/index.js +2 -1
- package/dist/attributes/types/measurements/index.js.map +1 -1
- package/dist/attributes/types/name/AbstractLegalName.d.ts +2 -2
- package/dist/attributes/types/name/AbstractLegalName.js +4 -4
- package/dist/attributes/types/name/AbstractLegalName.js.map +1 -1
- package/dist/attributes/types/name/BirthName.d.ts +2 -2
- package/dist/attributes/types/name/BirthName.js +2 -2
- package/dist/attributes/types/name/BirthName.js.map +1 -1
- package/dist/attributes/types/name/DisplayName.d.ts +2 -2
- package/dist/attributes/types/name/DisplayName.js +2 -2
- package/dist/attributes/types/name/DisplayName.js.map +1 -1
- package/dist/attributes/types/name/GivenName.d.ts +2 -2
- package/dist/attributes/types/name/GivenName.js +2 -2
- package/dist/attributes/types/name/GivenName.js.map +1 -1
- package/dist/attributes/types/name/HonorificPrefix.d.ts +3 -0
- package/dist/attributes/types/name/HonorificPrefix.js +18 -0
- package/dist/attributes/types/name/HonorificPrefix.js.map +1 -0
- package/dist/attributes/types/name/HonorificSuffix.d.ts +3 -0
- package/dist/attributes/types/name/HonorificSuffix.js +18 -0
- package/dist/attributes/types/name/HonorificSuffix.js.map +1 -0
- package/dist/attributes/types/name/LegalNameDE.d.ts +1691 -2
- package/dist/attributes/types/name/LegalNameDE.js +52 -5
- package/dist/attributes/types/name/LegalNameDE.js.map +1 -1
- package/dist/attributes/types/name/Pseudonym.d.ts +2 -2
- package/dist/attributes/types/name/Pseudonym.js +2 -2
- package/dist/attributes/types/name/Pseudonym.js.map +1 -1
- package/dist/attributes/types/name/Salutation.d.ts +1694 -5
- package/dist/attributes/types/name/Salutation.js +51 -10
- package/dist/attributes/types/name/Salutation.js.map +1 -1
- package/dist/attributes/types/name/Surname.d.ts +2 -2
- package/dist/attributes/types/name/Surname.js +2 -2
- package/dist/attributes/types/name/Surname.js.map +1 -1
- package/dist/attributes/types/name/index.d.ts +2 -1
- package/dist/attributes/types/name/index.js +2 -1
- package/dist/attributes/types/name/index.js.map +1 -1
- package/dist/attributes/types/person/Age.d.ts +5 -2
- package/dist/attributes/types/person/Age.js +18 -2
- package/dist/attributes/types/person/Age.js.map +1 -1
- package/dist/attributes/types/person/Citizenship.d.ts +3 -0
- package/dist/attributes/types/person/{PersonEyeColor.js → Citizenship.js} +8 -8
- package/dist/attributes/types/person/Citizenship.js.map +1 -0
- package/dist/attributes/types/person/Nationality.d.ts +3 -0
- package/dist/attributes/types/person/Nationality.js +18 -0
- package/dist/attributes/types/person/Nationality.js.map +1 -0
- package/dist/attributes/types/person/Picture.d.ts +3 -0
- package/dist/attributes/types/person/{Gender.js → Picture.js} +8 -11
- package/dist/attributes/types/person/Picture.js.map +1 -0
- package/dist/attributes/types/person/Sex.d.ts +8 -5
- package/dist/attributes/types/person/Sex.js +21 -10
- package/dist/attributes/types/person/Sex.js.map +1 -1
- package/dist/attributes/types/person/index.d.ts +3 -3
- package/dist/attributes/types/person/index.js +3 -3
- package/dist/attributes/types/person/index.js.map +1 -1
- package/dist/attributes/types/proprietary/ProprietaryBoolean.d.ts +13 -0
- package/dist/attributes/types/proprietary/ProprietaryBoolean.js +31 -0
- package/dist/attributes/types/proprietary/ProprietaryBoolean.js.map +1 -0
- package/dist/attributes/types/proprietary/ProprietaryCountry.d.ts +14 -0
- package/dist/attributes/types/proprietary/ProprietaryCountry.js +31 -0
- package/dist/attributes/types/proprietary/ProprietaryCountry.js.map +1 -0
- package/dist/attributes/types/proprietary/ProprietaryDataURL.d.ts +14 -0
- package/dist/attributes/types/proprietary/ProprietaryDataURL.js +31 -0
- package/dist/attributes/types/proprietary/ProprietaryDataURL.js.map +1 -0
- package/dist/attributes/types/proprietary/ProprietaryEMailAddress.d.ts +14 -0
- package/dist/attributes/types/proprietary/ProprietaryEMailAddress.js +31 -0
- package/dist/attributes/types/proprietary/ProprietaryEMailAddress.js.map +1 -0
- package/dist/attributes/types/proprietary/ProprietaryFileReference.d.ts +14 -0
- package/dist/attributes/types/proprietary/ProprietaryFileReference.js +31 -0
- package/dist/attributes/types/proprietary/ProprietaryFileReference.js.map +1 -0
- package/dist/attributes/types/proprietary/ProprietaryFloat.d.ts +13 -0
- package/dist/attributes/types/{AbstractStringValue.js → proprietary/ProprietaryFloat.js} +15 -7
- package/dist/attributes/types/proprietary/ProprietaryFloat.js.map +1 -0
- package/dist/attributes/types/proprietary/ProprietaryHEXColor.d.ts +14 -0
- package/dist/attributes/types/proprietary/ProprietaryHEXColor.js +31 -0
- package/dist/attributes/types/proprietary/ProprietaryHEXColor.js.map +1 -0
- package/dist/attributes/types/proprietary/ProprietaryInteger.d.ts +21 -0
- package/dist/attributes/types/proprietary/ProprietaryInteger.js +51 -0
- package/dist/attributes/types/proprietary/ProprietaryInteger.js.map +1 -0
- package/dist/attributes/types/proprietary/ProprietaryLanguage.d.ts +14 -0
- package/dist/attributes/types/proprietary/ProprietaryLanguage.js +31 -0
- package/dist/attributes/types/proprietary/ProprietaryLanguage.js.map +1 -0
- package/dist/attributes/types/proprietary/ProprietaryPhoneNumber.d.ts +14 -0
- package/dist/attributes/types/proprietary/ProprietaryPhoneNumber.js +31 -0
- package/dist/attributes/types/proprietary/ProprietaryPhoneNumber.js.map +1 -0
- package/dist/attributes/types/proprietary/ProprietaryString.d.ts +13 -0
- package/dist/attributes/types/{person/PersonHeight.js → proprietary/ProprietaryString.js} +15 -13
- package/dist/attributes/types/proprietary/ProprietaryString.js.map +1 -0
- package/dist/attributes/types/proprietary/ProprietaryURL.d.ts +14 -0
- package/dist/{authorizations/Authorization.js → attributes/types/proprietary/ProprietaryURL.js} +12 -14
- package/dist/attributes/types/proprietary/ProprietaryURL.js.map +1 -0
- package/dist/attributes/types/proprietary/index.d.ts +12 -0
- package/dist/attributes/types/proprietary/index.js +29 -0
- package/dist/attributes/types/proprietary/index.js.map +1 -0
- package/dist/attributes/types/strings/AbstractCountry.d.ts +8 -0
- package/dist/attributes/types/strings/AbstractCountry.js +40 -0
- package/dist/attributes/types/strings/AbstractCountry.js.map +1 -0
- package/dist/attributes/types/strings/AbstractDataURL.d.ts +7 -0
- package/dist/attributes/types/strings/AbstractDataURL.js +40 -0
- package/dist/attributes/types/strings/AbstractDataURL.js.map +1 -0
- package/dist/attributes/types/strings/AbstractEMailAddress.d.ts +7 -0
- package/dist/attributes/types/strings/AbstractEMailAddress.js +41 -0
- package/dist/attributes/types/strings/AbstractEMailAddress.js.map +1 -0
- package/dist/attributes/types/strings/AbstractFileReference.d.ts +7 -0
- package/dist/attributes/types/strings/AbstractFileReference.js +39 -0
- package/dist/attributes/types/strings/AbstractFileReference.js.map +1 -0
- package/dist/attributes/types/strings/AbstractHEXColor.d.ts +7 -0
- package/dist/attributes/types/strings/AbstractHEXColor.js +37 -0
- package/dist/attributes/types/strings/AbstractHEXColor.js.map +1 -0
- package/dist/attributes/types/strings/AbstractLanguage.d.ts +8 -0
- package/dist/attributes/types/strings/AbstractLanguage.js +42 -0
- package/dist/attributes/types/strings/AbstractLanguage.js.map +1 -0
- package/dist/attributes/types/strings/AbstractPhoneNumber.d.ts +7 -0
- package/dist/attributes/types/strings/AbstractPhoneNumber.js +37 -0
- package/dist/attributes/types/strings/AbstractPhoneNumber.js.map +1 -0
- package/dist/attributes/types/strings/AbstractURL.d.ts +7 -0
- package/dist/attributes/types/strings/AbstractURL.js +42 -0
- package/dist/attributes/types/strings/AbstractURL.js.map +1 -0
- package/dist/attributes/types/strings/index.d.ts +8 -0
- package/dist/attributes/types/strings/index.js +25 -0
- package/dist/attributes/types/strings/index.js.map +1 -0
- package/dist/buildInformation.js +5 -5
- package/dist/index.d.ts +0 -1
- package/dist/index.js +0 -1
- package/dist/index.js.map +1 -1
- package/dist/relationships/RelationshipCreationChangeRequestBody.d.ts +8 -21
- package/dist/relationships/RelationshipCreationChangeRequestBody.js +5 -26
- package/dist/relationships/RelationshipCreationChangeRequestBody.js.map +1 -1
- package/dist/relationships/RelationshipTemplateBody.d.ts +11 -31
- package/dist/relationships/RelationshipTemplateBody.js +6 -34
- package/dist/relationships/RelationshipTemplateBody.js.map +1 -1
- package/dist/relationships/index.d.ts +0 -2
- package/dist/relationships/index.js +0 -2
- package/dist/relationships/index.js.map +1 -1
- package/dist/requests/Request.d.ts +38 -8
- package/dist/requests/Request.js +18 -0
- package/dist/requests/Request.js.map +1 -1
- package/dist/requests/RequestItem.d.ts +10 -5
- package/dist/requests/RequestItem.js +4 -1
- package/dist/requests/RequestItem.js.map +1 -1
- package/dist/requests/RequestItemGroup.d.ts +13 -11
- package/dist/requests/RequestItemGroup.js +16 -3
- package/dist/requests/RequestItemGroup.js.map +1 -1
- package/dist/requests/index.d.ts +1 -0
- package/dist/requests/index.js +1 -0
- package/dist/requests/index.js.map +1 -1
- package/dist/requests/items/createAttribute/CreateAttributeAcceptResponseItem.d.ts +12 -0
- package/dist/requests/items/createAttribute/CreateAttributeAcceptResponseItem.js +30 -0
- package/dist/requests/items/createAttribute/CreateAttributeAcceptResponseItem.js.map +1 -0
- package/dist/requests/items/createAttribute/CreateAttributeRequestItem.d.ts +17 -0
- package/dist/requests/items/createAttribute/CreateAttributeRequestItem.js +36 -0
- package/dist/requests/items/createAttribute/CreateAttributeRequestItem.js.map +1 -0
- package/dist/requests/items/index.d.ts +7 -0
- package/dist/requests/items/index.js +24 -0
- package/dist/requests/items/index.js.map +1 -0
- package/dist/requests/items/proposeAttribute/ProposeAttributeAcceptResponseItem.d.ts +16 -0
- package/dist/requests/items/proposeAttribute/ProposeAttributeAcceptResponseItem.js +36 -0
- package/dist/requests/items/proposeAttribute/ProposeAttributeAcceptResponseItem.js.map +1 -0
- package/dist/requests/items/proposeAttribute/ProposeAttributeRequestItem.d.ts +17 -0
- package/dist/requests/items/proposeAttribute/ProposeAttributeRequestItem.js +53 -0
- package/dist/requests/items/proposeAttribute/ProposeAttributeRequestItem.js.map +1 -0
- package/dist/requests/items/readAttribute/ReadAttributeAcceptResponseItem.d.ts +16 -0
- package/dist/requests/items/readAttribute/ReadAttributeAcceptResponseItem.js +36 -0
- package/dist/requests/items/readAttribute/ReadAttributeAcceptResponseItem.js.map +1 -0
- package/dist/requests/items/readAttribute/ReadAttributeRequestItem.d.ts +12 -0
- package/dist/{relationships/RelationshipExistsMessageAction.js → requests/items/readAttribute/ReadAttributeRequestItem.js} +14 -10
- package/dist/requests/items/readAttribute/ReadAttributeRequestItem.js.map +1 -0
- package/dist/requests/items/shareAttribute/ShareAttributeRequestItem.d.ts +15 -0
- package/dist/requests/items/shareAttribute/ShareAttributeRequestItem.js +35 -0
- package/dist/requests/items/shareAttribute/ShareAttributeRequestItem.js.map +1 -0
- package/dist/requests/response/AcceptResponseItem.d.ts +5 -0
- package/dist/requests/response/AcceptResponseItem.js +3 -0
- package/dist/requests/response/AcceptResponseItem.js.map +1 -1
- package/dist/requests/response/ErrorResponseItem.d.ts +4 -0
- package/dist/requests/response/ErrorResponseItem.js +3 -0
- package/dist/requests/response/ErrorResponseItem.js.map +1 -1
- package/dist/requests/response/RejectResponseItem.d.ts +4 -0
- package/dist/requests/response/RejectResponseItem.js +3 -0
- package/dist/requests/response/RejectResponseItem.js.map +1 -1
- package/dist/requests/response/Response.d.ts +5 -4
- package/dist/requests/response/Response.js +3 -0
- package/dist/requests/response/Response.js.map +1 -1
- package/dist/requests/response/ResponseItem.d.ts +7 -3
- package/dist/requests/response/ResponseItem.js +3 -5
- package/dist/requests/response/ResponseItem.js.map +1 -1
- package/dist/requests/response/ResponseItemGroup.d.ts +5 -7
- package/dist/requests/response/ResponseItemGroup.js +3 -5
- package/dist/requests/response/ResponseItemGroup.js.map +1 -1
- package/lib-web/nmshd.content.js +5299 -1395
- package/lib-web/nmshd.content.min.js +1 -1
- package/package.json +16 -15
- package/dist/attributes/AttributeQuery.d.ts +0 -12
- package/dist/attributes/AttributeQuery.js.map +0 -1
- package/dist/attributes/AttributeV2.d.ts +0 -25
- package/dist/attributes/AttributeV2.js.map +0 -1
- package/dist/attributes/types/AbstractDateString.d.ts +0 -5
- package/dist/attributes/types/AbstractDateString.js.map +0 -1
- package/dist/attributes/types/AbstractDay.d.ts +0 -7
- package/dist/attributes/types/AbstractDay.js.map +0 -1
- package/dist/attributes/types/AbstractFloatValue.d.ts +0 -4
- package/dist/attributes/types/AbstractFloatValue.js.map +0 -1
- package/dist/attributes/types/AbstractIntegerValue.d.ts +0 -4
- package/dist/attributes/types/AbstractIntegerValue.js.map +0 -1
- package/dist/attributes/types/AbstractMonth.js.map +0 -1
- package/dist/attributes/types/AbstractStringValue.d.ts +0 -4
- package/dist/attributes/types/AbstractStringValue.js.map +0 -1
- package/dist/attributes/types/AbstractYear.d.ts +0 -3
- package/dist/attributes/types/AbstractYear.js +0 -8
- package/dist/attributes/types/AbstractYear.js.map +0 -1
- package/dist/attributes/types/idcard/AbstractIDCard.d.ts +0 -3
- package/dist/attributes/types/idcard/AbstractIDCard.js +0 -8
- package/dist/attributes/types/idcard/AbstractIDCard.js.map +0 -1
- package/dist/attributes/types/idcard/IDCardAuthorityName.d.ts +0 -3
- package/dist/attributes/types/idcard/IDCardAuthorityName.js +0 -18
- package/dist/attributes/types/idcard/IDCardAuthorityName.js.map +0 -1
- package/dist/attributes/types/idcard/IDCardDE.d.ts +0 -13
- package/dist/attributes/types/idcard/IDCardDE.js +0 -51
- package/dist/attributes/types/idcard/IDCardDE.js.map +0 -1
- package/dist/attributes/types/idcard/IDCardIssuingDate.d.ts +0 -3
- package/dist/attributes/types/idcard/IDCardIssuingDate.js.map +0 -1
- package/dist/attributes/types/idcard/index.d.ts +0 -4
- package/dist/attributes/types/idcard/index.js.map +0 -1
- package/dist/attributes/types/measurements/LengthMeasurement.js.map +0 -1
- package/dist/attributes/types/name/Title.d.ts +0 -3
- package/dist/attributes/types/name/Title.js.map +0 -1
- package/dist/attributes/types/person/Gender.d.ts +0 -6
- package/dist/attributes/types/person/Gender.js.map +0 -1
- package/dist/attributes/types/person/PersonEyeColor.d.ts +0 -3
- package/dist/attributes/types/person/PersonEyeColor.js.map +0 -1
- package/dist/attributes/types/person/PersonHeight.d.ts +0 -4
- package/dist/attributes/types/person/PersonHeight.js.map +0 -1
- package/dist/authorizations/Authorization.d.ts +0 -14
- package/dist/authorizations/Authorization.js.map +0 -1
- package/dist/relationships/RelationshipExistsAction.d.ts +0 -7
- package/dist/relationships/RelationshipExistsAction.js.map +0 -1
- package/dist/relationships/RelationshipExistsMessageAction.d.ts +0 -11
- package/dist/relationships/RelationshipExistsMessageAction.js.map +0 -1
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../src/attributes/types/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAAA,4CAAyB;AACzB,0CAAuB;AACvB,
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../src/attributes/types/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAAA,oDAAiC;AACjC,kDAA+B;AAC/B,oDAAiC;AACjC,mDAAgC;AAChC,4CAAyB;AACzB,kDAA+B;AAC/B,yDAAsC;AACtC,0CAAuB;AACvB,kDAA+B;AAC/B,0CAAuB;AACvB,0CAAuB;AACvB,iDAA8B;AAC9B,yCAAsB;AACtB,2CAAwB;AACxB,gDAA6B;AAC7B,4CAAyB"}
|
package/dist/attributes/types/measurements/{LengthMeasurement.d.ts → AbstractLengthMeasurement.d.ts}
RENAMED
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { ValueHints } from "../../hints";
|
|
1
2
|
import { AbstractMeasurement } from "./AbstractMeasurement";
|
|
2
3
|
export declare enum LengthUnit {
|
|
3
4
|
NM = "nm",
|
|
@@ -13,6 +14,7 @@ export declare enum LengthUnit {
|
|
|
13
14
|
SM = "sm",
|
|
14
15
|
IN = "in"
|
|
15
16
|
}
|
|
16
|
-
export declare class
|
|
17
|
+
export declare class AbstractLengthMeasurement extends AbstractMeasurement {
|
|
17
18
|
unit: LengthUnit;
|
|
19
|
+
static get valueHints(): ValueHints;
|
|
18
20
|
}
|
package/dist/attributes/types/measurements/{LengthMeasurement.js → AbstractLengthMeasurement.js}
RENAMED
|
@@ -9,8 +9,9 @@ var __metadata = (this && this.__metadata) || function (k, v) {
|
|
|
9
9
|
if (typeof Reflect === "object" && typeof Reflect.metadata === "function") return Reflect.metadata(k, v);
|
|
10
10
|
};
|
|
11
11
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
12
|
-
exports.
|
|
12
|
+
exports.AbstractLengthMeasurement = exports.LengthUnit = void 0;
|
|
13
13
|
const ts_serval_1 = require("@js-soft/ts-serval");
|
|
14
|
+
const hints_1 = require("../../hints");
|
|
14
15
|
const AbstractMeasurement_1 = require("./AbstractMeasurement");
|
|
15
16
|
var LengthUnit;
|
|
16
17
|
(function (LengthUnit) {
|
|
@@ -27,17 +28,26 @@ var LengthUnit;
|
|
|
27
28
|
LengthUnit["SM"] = "sm";
|
|
28
29
|
LengthUnit["IN"] = "in";
|
|
29
30
|
})(LengthUnit = exports.LengthUnit || (exports.LengthUnit = {}));
|
|
30
|
-
|
|
31
|
-
|
|
31
|
+
class AbstractLengthMeasurement extends AbstractMeasurement_1.AbstractMeasurement {
|
|
32
|
+
static get valueHints() {
|
|
33
|
+
return super.valueHints.copyWith({
|
|
34
|
+
propertyHints: {
|
|
35
|
+
[this.propertyNames.unit.$path]: hints_1.ValueHints.from({
|
|
36
|
+
values: Object.entries(LengthUnit).map((v) => hints_1.ValueHintsValue.from({
|
|
37
|
+
displayName: v[1],
|
|
38
|
+
key: v[0]
|
|
39
|
+
}))
|
|
40
|
+
})
|
|
41
|
+
}
|
|
42
|
+
});
|
|
43
|
+
}
|
|
44
|
+
}
|
|
32
45
|
__decorate([
|
|
33
46
|
(0, ts_serval_1.serialize)(),
|
|
34
47
|
(0, ts_serval_1.validate)({
|
|
35
48
|
customValidator: (v) => !Object.values(LengthUnit).includes(v) ? `must be one of: ${Object.values(LengthUnit)}` : undefined
|
|
36
49
|
}),
|
|
37
50
|
__metadata("design:type", String)
|
|
38
|
-
],
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
], LengthMeasurement);
|
|
42
|
-
exports.LengthMeasurement = LengthMeasurement;
|
|
43
|
-
//# sourceMappingURL=LengthMeasurement.js.map
|
|
51
|
+
], AbstractLengthMeasurement.prototype, "unit", void 0);
|
|
52
|
+
exports.AbstractLengthMeasurement = AbstractLengthMeasurement;
|
|
53
|
+
//# sourceMappingURL=AbstractLengthMeasurement.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"AbstractLengthMeasurement.js","sourceRoot":"","sources":["../../../../src/attributes/types/measurements/AbstractLengthMeasurement.ts"],"names":[],"mappings":";;;;;;;;;;;;AAAA,kDAAwD;AACxD,uCAAyD;AACzD,+DAA2D;AAE3D,IAAY,UAaX;AAbD,WAAY,UAAU;IAClB,uBAAS,CAAA;IACT,uBAAS,CAAA;IACT,uBAAS,CAAA;IACT,uBAAS,CAAA;IACT,uBAAS,CAAA;IACT,qBAAO,CAAA;IACP,uBAAS,CAAA;IACT,uBAAS,CAAA;IACT,uBAAS,CAAA;IACT,uBAAS,CAAA;IACT,uBAAS,CAAA;IACT,uBAAS,CAAA;AACb,CAAC,EAbW,UAAU,GAAV,kBAAU,KAAV,kBAAU,QAarB;AAED,MAAa,yBAA0B,SAAQ,yCAAmB;IAQvD,MAAM,KAAc,UAAU;QACjC,OAAO,KAAK,CAAC,UAAU,CAAC,QAAQ,CAAC;YAC7B,aAAa,EAAE;gBACX,CAAC,IAAI,CAAC,aAAa,CAAC,IAAI,CAAC,KAAK,CAAC,EAAE,kBAAU,CAAC,IAAI,CAAC;oBAC7C,MAAM,EAAE,MAAM,CAAC,OAAO,CAAC,UAAU,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC,EAAE,EAAE,CACzC,uBAAe,CAAC,IAAI,CAAC;wBACjB,WAAW,EAAE,CAAC,CAAC,CAAC,CAAC;wBACjB,GAAG,EAAE,CAAC,CAAC,CAAC,CAAC;qBACZ,CAAC,CACL;iBACJ,CAAC;aACL;SACJ,CAAC,CAAA;IACN,CAAC;CACJ;AAhBG;IALC,IAAA,qBAAS,GAAE;IACX,IAAA,oBAAQ,EAAC;QACN,eAAe,EAAE,CAAC,CAAC,EAAE,EAAE,CACnB,CAAC,MAAM,CAAC,MAAM,CAAC,UAAU,CAAC,CAAC,QAAQ,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,mBAAmB,MAAM,CAAC,MAAM,CAAC,UAAU,CAAC,EAAE,CAAC,CAAC,CAAC,SAAS;KAC1G,CAAC;;uDAC8B;AANpC,8DAsBC"}
|
|
@@ -1,8 +1,305 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { AbstractComplexValue, AbstractComplexValueJSON, IAbstractComplexValue } from "../../AbstractComplexValue";
|
|
2
|
+
import { RenderHints, ValueHints } from "../../hints";
|
|
3
|
+
export interface AbstractMeasurementJSON extends AbstractComplexValueJSON {
|
|
4
|
+
unit: string;
|
|
5
|
+
value: number;
|
|
6
|
+
}
|
|
7
|
+
export interface IMeasurement extends IAbstractComplexValue {
|
|
8
|
+
unit: string;
|
|
9
|
+
value: number;
|
|
10
|
+
}
|
|
2
11
|
/**
|
|
3
12
|
* valid unit strings must be defined in the classes extending AbstractMeasurement as enum
|
|
4
13
|
*/
|
|
5
|
-
export declare abstract class AbstractMeasurement extends
|
|
14
|
+
export declare abstract class AbstractMeasurement extends AbstractComplexValue implements IMeasurement {
|
|
15
|
+
static readonly propertyNames: {
|
|
16
|
+
unit: import("easy-tsnameof").PathHandlers<{
|
|
17
|
+
$path: (path: import("easy-tsnameof").PathKey[]) => string;
|
|
18
|
+
$rawPath: (path: import("easy-tsnameof").PathKey[]) => import("easy-tsnameof").PathKey[];
|
|
19
|
+
toString: (path: import("easy-tsnameof").PathKey[]) => () => string;
|
|
20
|
+
valueOf: (path: import("easy-tsnameof").PathKey[]) => () => string;
|
|
21
|
+
[Symbol.toStringTag]: (path: import("easy-tsnameof").PathKey[]) => string;
|
|
22
|
+
}>;
|
|
23
|
+
value: import("easy-tsnameof").PathHandlers<{
|
|
24
|
+
$path: (path: import("easy-tsnameof").PathKey[]) => string;
|
|
25
|
+
$rawPath: (path: import("easy-tsnameof").PathKey[]) => import("easy-tsnameof").PathKey[];
|
|
26
|
+
toString: (path: import("easy-tsnameof").PathKey[]) => () => string;
|
|
27
|
+
valueOf: (path: import("easy-tsnameof").PathKey[]) => () => string;
|
|
28
|
+
[Symbol.toStringTag]: (path: import("easy-tsnameof").PathKey[]) => string;
|
|
29
|
+
}>;
|
|
30
|
+
toString: import("easy-tsnameof").PathHandlers<{
|
|
31
|
+
$path: (path: import("easy-tsnameof").PathKey[]) => string;
|
|
32
|
+
$rawPath: (path: import("easy-tsnameof").PathKey[]) => import("easy-tsnameof").PathKey[];
|
|
33
|
+
toString: (path: import("easy-tsnameof").PathKey[]) => () => string;
|
|
34
|
+
valueOf: (path: import("easy-tsnameof").PathKey[]) => () => string;
|
|
35
|
+
[Symbol.toStringTag]: (path: import("easy-tsnameof").PathKey[]) => string;
|
|
36
|
+
}>;
|
|
37
|
+
readonly valueHints: {
|
|
38
|
+
editHelp: import("easy-tsnameof").PathHandlers<{
|
|
39
|
+
$path: (path: import("easy-tsnameof").PathKey[]) => string;
|
|
40
|
+
$rawPath: (path: import("easy-tsnameof").PathKey[]) => import("easy-tsnameof").PathKey[];
|
|
41
|
+
toString: (path: import("easy-tsnameof").PathKey[]) => () => string;
|
|
42
|
+
valueOf: (path: import("easy-tsnameof").PathKey[]) => () => string;
|
|
43
|
+
[Symbol.toStringTag]: (path: import("easy-tsnameof").PathKey[]) => string;
|
|
44
|
+
}>;
|
|
45
|
+
min: import("easy-tsnameof").PathHandlers<{
|
|
46
|
+
$path: (path: import("easy-tsnameof").PathKey[]) => string;
|
|
47
|
+
$rawPath: (path: import("easy-tsnameof").PathKey[]) => import("easy-tsnameof").PathKey[];
|
|
48
|
+
toString: (path: import("easy-tsnameof").PathKey[]) => () => string;
|
|
49
|
+
valueOf: (path: import("easy-tsnameof").PathKey[]) => () => string;
|
|
50
|
+
[Symbol.toStringTag]: (path: import("easy-tsnameof").PathKey[]) => string;
|
|
51
|
+
}>;
|
|
52
|
+
max: import("easy-tsnameof").PathHandlers<{
|
|
53
|
+
$path: (path: import("easy-tsnameof").PathKey[]) => string;
|
|
54
|
+
$rawPath: (path: import("easy-tsnameof").PathKey[]) => import("easy-tsnameof").PathKey[];
|
|
55
|
+
toString: (path: import("easy-tsnameof").PathKey[]) => () => string;
|
|
56
|
+
valueOf: (path: import("easy-tsnameof").PathKey[]) => () => string;
|
|
57
|
+
[Symbol.toStringTag]: (path: import("easy-tsnameof").PathKey[]) => string;
|
|
58
|
+
}>;
|
|
59
|
+
pattern: import("easy-tsnameof").PathHandlers<{
|
|
60
|
+
$path: (path: import("easy-tsnameof").PathKey[]) => string;
|
|
61
|
+
$rawPath: (path: import("easy-tsnameof").PathKey[]) => import("easy-tsnameof").PathKey[];
|
|
62
|
+
toString: (path: import("easy-tsnameof").PathKey[]) => () => string;
|
|
63
|
+
valueOf: (path: import("easy-tsnameof").PathKey[]) => () => string;
|
|
64
|
+
[Symbol.toStringTag]: (path: import("easy-tsnameof").PathKey[]) => string;
|
|
65
|
+
}>;
|
|
66
|
+
values: ({
|
|
67
|
+
displayName: import("easy-tsnameof").PathHandlers<{
|
|
68
|
+
$path: (path: import("easy-tsnameof").PathKey[]) => string;
|
|
69
|
+
$rawPath: (path: import("easy-tsnameof").PathKey[]) => import("easy-tsnameof").PathKey[];
|
|
70
|
+
toString: (path: import("easy-tsnameof").PathKey[]) => () => string;
|
|
71
|
+
valueOf: (path: import("easy-tsnameof").PathKey[]) => () => string;
|
|
72
|
+
[Symbol.toStringTag]: (path: import("easy-tsnameof").PathKey[]) => string;
|
|
73
|
+
}>;
|
|
74
|
+
key: import("easy-tsnameof").PathHandlers<{
|
|
75
|
+
$path: (path: import("easy-tsnameof").PathKey[]) => string;
|
|
76
|
+
$rawPath: (path: import("easy-tsnameof").PathKey[]) => import("easy-tsnameof").PathKey[];
|
|
77
|
+
toString: (path: import("easy-tsnameof").PathKey[]) => () => string;
|
|
78
|
+
valueOf: (path: import("easy-tsnameof").PathKey[]) => () => string;
|
|
79
|
+
[Symbol.toStringTag]: (path: import("easy-tsnameof").PathKey[]) => string;
|
|
80
|
+
}>;
|
|
81
|
+
validate: import("easy-tsnameof").PathHandlers<{
|
|
82
|
+
$path: (path: import("easy-tsnameof").PathKey[]) => string;
|
|
83
|
+
$rawPath: (path: import("easy-tsnameof").PathKey[]) => import("easy-tsnameof").PathKey[];
|
|
84
|
+
toString: (path: import("easy-tsnameof").PathKey[]) => () => string;
|
|
85
|
+
valueOf: (path: import("easy-tsnameof").PathKey[]) => () => string;
|
|
86
|
+
[Symbol.toStringTag]: (path: import("easy-tsnameof").PathKey[]) => string;
|
|
87
|
+
}>;
|
|
88
|
+
validateProperty: import("easy-tsnameof").PathHandlers<{
|
|
89
|
+
$path: (path: import("easy-tsnameof").PathKey[]) => string;
|
|
90
|
+
$rawPath: (path: import("easy-tsnameof").PathKey[]) => import("easy-tsnameof").PathKey[];
|
|
91
|
+
toString: (path: import("easy-tsnameof").PathKey[]) => () => string;
|
|
92
|
+
valueOf: (path: import("easy-tsnameof").PathKey[]) => () => string;
|
|
93
|
+
[Symbol.toStringTag]: (path: import("easy-tsnameof").PathKey[]) => string;
|
|
94
|
+
}>;
|
|
95
|
+
serialize: import("easy-tsnameof").PathHandlers<{
|
|
96
|
+
$path: (path: import("easy-tsnameof").PathKey[]) => string;
|
|
97
|
+
$rawPath: (path: import("easy-tsnameof").PathKey[]) => import("easy-tsnameof").PathKey[];
|
|
98
|
+
toString: (path: import("easy-tsnameof").PathKey[]) => () => string;
|
|
99
|
+
valueOf: (path: import("easy-tsnameof").PathKey[]) => () => string;
|
|
100
|
+
[Symbol.toStringTag]: (path: import("easy-tsnameof").PathKey[]) => string;
|
|
101
|
+
}>;
|
|
102
|
+
toJSON: import("easy-tsnameof").PathHandlers<{
|
|
103
|
+
$path: (path: import("easy-tsnameof").PathKey[]) => string;
|
|
104
|
+
$rawPath: (path: import("easy-tsnameof").PathKey[]) => import("easy-tsnameof").PathKey[];
|
|
105
|
+
toString: (path: import("easy-tsnameof").PathKey[]) => () => string;
|
|
106
|
+
valueOf: (path: import("easy-tsnameof").PathKey[]) => () => string;
|
|
107
|
+
[Symbol.toStringTag]: (path: import("easy-tsnameof").PathKey[]) => string;
|
|
108
|
+
}>;
|
|
109
|
+
} & import("easy-tsnameof").PathHandlers<{
|
|
110
|
+
$path: (path: import("easy-tsnameof").PathKey[]) => string;
|
|
111
|
+
$rawPath: (path: import("easy-tsnameof").PathKey[]) => import("easy-tsnameof").PathKey[];
|
|
112
|
+
toString: (path: import("easy-tsnameof").PathKey[]) => () => string;
|
|
113
|
+
valueOf: (path: import("easy-tsnameof").PathKey[]) => () => string;
|
|
114
|
+
[Symbol.toStringTag]: (path: import("easy-tsnameof").PathKey[]) => string;
|
|
115
|
+
}>)[] & import("easy-tsnameof").PathHandlers<{
|
|
116
|
+
$path: (path: import("easy-tsnameof").PathKey[]) => string;
|
|
117
|
+
$rawPath: (path: import("easy-tsnameof").PathKey[]) => import("easy-tsnameof").PathKey[];
|
|
118
|
+
toString: (path: import("easy-tsnameof").PathKey[]) => () => string;
|
|
119
|
+
valueOf: (path: import("easy-tsnameof").PathKey[]) => () => string;
|
|
120
|
+
[Symbol.toStringTag]: (path: import("easy-tsnameof").PathKey[]) => string;
|
|
121
|
+
}>;
|
|
122
|
+
defaultValue: import("easy-tsnameof").PathHandlers<{
|
|
123
|
+
$path: (path: import("easy-tsnameof").PathKey[]) => string;
|
|
124
|
+
$rawPath: (path: import("easy-tsnameof").PathKey[]) => import("easy-tsnameof").PathKey[];
|
|
125
|
+
toString: (path: import("easy-tsnameof").PathKey[]) => () => string;
|
|
126
|
+
valueOf: (path: import("easy-tsnameof").PathKey[]) => () => string;
|
|
127
|
+
[Symbol.toStringTag]: (path: import("easy-tsnameof").PathKey[]) => string;
|
|
128
|
+
}>;
|
|
129
|
+
propertyHints: {
|
|
130
|
+
[x: string]: any & import("easy-tsnameof").PathHandlers<{
|
|
131
|
+
$path: (path: import("easy-tsnameof").PathKey[]) => string;
|
|
132
|
+
$rawPath: (path: import("easy-tsnameof").PathKey[]) => import("easy-tsnameof").PathKey[];
|
|
133
|
+
toString: (path: import("easy-tsnameof").PathKey[]) => () => string;
|
|
134
|
+
valueOf: (path: import("easy-tsnameof").PathKey[]) => () => string;
|
|
135
|
+
[Symbol.toStringTag]: (path: import("easy-tsnameof").PathKey[]) => string;
|
|
136
|
+
}>;
|
|
137
|
+
} & import("easy-tsnameof").PathHandlers<{
|
|
138
|
+
$path: (path: import("easy-tsnameof").PathKey[]) => string;
|
|
139
|
+
$rawPath: (path: import("easy-tsnameof").PathKey[]) => import("easy-tsnameof").PathKey[];
|
|
140
|
+
toString: (path: import("easy-tsnameof").PathKey[]) => () => string;
|
|
141
|
+
valueOf: (path: import("easy-tsnameof").PathKey[]) => () => string;
|
|
142
|
+
[Symbol.toStringTag]: (path: import("easy-tsnameof").PathKey[]) => string;
|
|
143
|
+
}>;
|
|
144
|
+
toJSON: import("easy-tsnameof").PathHandlers<{
|
|
145
|
+
$path: (path: import("easy-tsnameof").PathKey[]) => string;
|
|
146
|
+
$rawPath: (path: import("easy-tsnameof").PathKey[]) => import("easy-tsnameof").PathKey[];
|
|
147
|
+
toString: (path: import("easy-tsnameof").PathKey[]) => () => string;
|
|
148
|
+
valueOf: (path: import("easy-tsnameof").PathKey[]) => () => string;
|
|
149
|
+
[Symbol.toStringTag]: (path: import("easy-tsnameof").PathKey[]) => string;
|
|
150
|
+
}>;
|
|
151
|
+
copyWith: import("easy-tsnameof").PathHandlers<{
|
|
152
|
+
$path: (path: import("easy-tsnameof").PathKey[]) => string;
|
|
153
|
+
$rawPath: (path: import("easy-tsnameof").PathKey[]) => import("easy-tsnameof").PathKey[];
|
|
154
|
+
toString: (path: import("easy-tsnameof").PathKey[]) => () => string;
|
|
155
|
+
valueOf: (path: import("easy-tsnameof").PathKey[]) => () => string;
|
|
156
|
+
[Symbol.toStringTag]: (path: import("easy-tsnameof").PathKey[]) => string;
|
|
157
|
+
}>;
|
|
158
|
+
validate: import("easy-tsnameof").PathHandlers<{
|
|
159
|
+
$path: (path: import("easy-tsnameof").PathKey[]) => string;
|
|
160
|
+
$rawPath: (path: import("easy-tsnameof").PathKey[]) => import("easy-tsnameof").PathKey[];
|
|
161
|
+
toString: (path: import("easy-tsnameof").PathKey[]) => () => string;
|
|
162
|
+
valueOf: (path: import("easy-tsnameof").PathKey[]) => () => string;
|
|
163
|
+
[Symbol.toStringTag]: (path: import("easy-tsnameof").PathKey[]) => string;
|
|
164
|
+
}>;
|
|
165
|
+
validateProperty: import("easy-tsnameof").PathHandlers<{
|
|
166
|
+
$path: (path: import("easy-tsnameof").PathKey[]) => string;
|
|
167
|
+
$rawPath: (path: import("easy-tsnameof").PathKey[]) => import("easy-tsnameof").PathKey[];
|
|
168
|
+
toString: (path: import("easy-tsnameof").PathKey[]) => () => string;
|
|
169
|
+
valueOf: (path: import("easy-tsnameof").PathKey[]) => () => string;
|
|
170
|
+
[Symbol.toStringTag]: (path: import("easy-tsnameof").PathKey[]) => string;
|
|
171
|
+
}>;
|
|
172
|
+
serialize: import("easy-tsnameof").PathHandlers<{
|
|
173
|
+
$path: (path: import("easy-tsnameof").PathKey[]) => string;
|
|
174
|
+
$rawPath: (path: import("easy-tsnameof").PathKey[]) => import("easy-tsnameof").PathKey[];
|
|
175
|
+
toString: (path: import("easy-tsnameof").PathKey[]) => () => string;
|
|
176
|
+
valueOf: (path: import("easy-tsnameof").PathKey[]) => () => string;
|
|
177
|
+
[Symbol.toStringTag]: (path: import("easy-tsnameof").PathKey[]) => string;
|
|
178
|
+
}>;
|
|
179
|
+
} & import("easy-tsnameof").PathHandlers<{
|
|
180
|
+
$path: (path: import("easy-tsnameof").PathKey[]) => string;
|
|
181
|
+
$rawPath: (path: import("easy-tsnameof").PathKey[]) => import("easy-tsnameof").PathKey[];
|
|
182
|
+
toString: (path: import("easy-tsnameof").PathKey[]) => () => string;
|
|
183
|
+
valueOf: (path: import("easy-tsnameof").PathKey[]) => () => string;
|
|
184
|
+
[Symbol.toStringTag]: (path: import("easy-tsnameof").PathKey[]) => string;
|
|
185
|
+
}>;
|
|
186
|
+
readonly renderHints: {
|
|
187
|
+
technicalType: import("easy-tsnameof").PathHandlers<{
|
|
188
|
+
$path: (path: import("easy-tsnameof").PathKey[]) => string;
|
|
189
|
+
$rawPath: (path: import("easy-tsnameof").PathKey[]) => import("easy-tsnameof").PathKey[];
|
|
190
|
+
toString: (path: import("easy-tsnameof").PathKey[]) => () => string;
|
|
191
|
+
valueOf: (path: import("easy-tsnameof").PathKey[]) => () => string;
|
|
192
|
+
[Symbol.toStringTag]: (path: import("easy-tsnameof").PathKey[]) => string;
|
|
193
|
+
}>;
|
|
194
|
+
editType: import("easy-tsnameof").PathHandlers<{
|
|
195
|
+
$path: (path: import("easy-tsnameof").PathKey[]) => string;
|
|
196
|
+
$rawPath: (path: import("easy-tsnameof").PathKey[]) => import("easy-tsnameof").PathKey[];
|
|
197
|
+
toString: (path: import("easy-tsnameof").PathKey[]) => () => string;
|
|
198
|
+
valueOf: (path: import("easy-tsnameof").PathKey[]) => () => string;
|
|
199
|
+
[Symbol.toStringTag]: (path: import("easy-tsnameof").PathKey[]) => string;
|
|
200
|
+
}>;
|
|
201
|
+
dataType: import("easy-tsnameof").PathHandlers<{
|
|
202
|
+
$path: (path: import("easy-tsnameof").PathKey[]) => string;
|
|
203
|
+
$rawPath: (path: import("easy-tsnameof").PathKey[]) => import("easy-tsnameof").PathKey[];
|
|
204
|
+
toString: (path: import("easy-tsnameof").PathKey[]) => () => string;
|
|
205
|
+
valueOf: (path: import("easy-tsnameof").PathKey[]) => () => string;
|
|
206
|
+
[Symbol.toStringTag]: (path: import("easy-tsnameof").PathKey[]) => string;
|
|
207
|
+
}>;
|
|
208
|
+
propertyHints: {
|
|
209
|
+
[x: string]: any & import("easy-tsnameof").PathHandlers<{
|
|
210
|
+
$path: (path: import("easy-tsnameof").PathKey[]) => string;
|
|
211
|
+
$rawPath: (path: import("easy-tsnameof").PathKey[]) => import("easy-tsnameof").PathKey[];
|
|
212
|
+
toString: (path: import("easy-tsnameof").PathKey[]) => () => string;
|
|
213
|
+
valueOf: (path: import("easy-tsnameof").PathKey[]) => () => string;
|
|
214
|
+
[Symbol.toStringTag]: (path: import("easy-tsnameof").PathKey[]) => string;
|
|
215
|
+
}>;
|
|
216
|
+
} & import("easy-tsnameof").PathHandlers<{
|
|
217
|
+
$path: (path: import("easy-tsnameof").PathKey[]) => string;
|
|
218
|
+
$rawPath: (path: import("easy-tsnameof").PathKey[]) => import("easy-tsnameof").PathKey[];
|
|
219
|
+
toString: (path: import("easy-tsnameof").PathKey[]) => () => string;
|
|
220
|
+
valueOf: (path: import("easy-tsnameof").PathKey[]) => () => string;
|
|
221
|
+
[Symbol.toStringTag]: (path: import("easy-tsnameof").PathKey[]) => string;
|
|
222
|
+
}>;
|
|
223
|
+
toJSON: import("easy-tsnameof").PathHandlers<{
|
|
224
|
+
$path: (path: import("easy-tsnameof").PathKey[]) => string;
|
|
225
|
+
$rawPath: (path: import("easy-tsnameof").PathKey[]) => import("easy-tsnameof").PathKey[];
|
|
226
|
+
toString: (path: import("easy-tsnameof").PathKey[]) => () => string;
|
|
227
|
+
valueOf: (path: import("easy-tsnameof").PathKey[]) => () => string;
|
|
228
|
+
[Symbol.toStringTag]: (path: import("easy-tsnameof").PathKey[]) => string;
|
|
229
|
+
}>;
|
|
230
|
+
copyWith: import("easy-tsnameof").PathHandlers<{
|
|
231
|
+
$path: (path: import("easy-tsnameof").PathKey[]) => string;
|
|
232
|
+
$rawPath: (path: import("easy-tsnameof").PathKey[]) => import("easy-tsnameof").PathKey[];
|
|
233
|
+
toString: (path: import("easy-tsnameof").PathKey[]) => () => string;
|
|
234
|
+
valueOf: (path: import("easy-tsnameof").PathKey[]) => () => string;
|
|
235
|
+
[Symbol.toStringTag]: (path: import("easy-tsnameof").PathKey[]) => string;
|
|
236
|
+
}>;
|
|
237
|
+
validate: import("easy-tsnameof").PathHandlers<{
|
|
238
|
+
$path: (path: import("easy-tsnameof").PathKey[]) => string;
|
|
239
|
+
$rawPath: (path: import("easy-tsnameof").PathKey[]) => import("easy-tsnameof").PathKey[];
|
|
240
|
+
toString: (path: import("easy-tsnameof").PathKey[]) => () => string;
|
|
241
|
+
valueOf: (path: import("easy-tsnameof").PathKey[]) => () => string;
|
|
242
|
+
[Symbol.toStringTag]: (path: import("easy-tsnameof").PathKey[]) => string;
|
|
243
|
+
}>;
|
|
244
|
+
validateProperty: import("easy-tsnameof").PathHandlers<{
|
|
245
|
+
$path: (path: import("easy-tsnameof").PathKey[]) => string;
|
|
246
|
+
$rawPath: (path: import("easy-tsnameof").PathKey[]) => import("easy-tsnameof").PathKey[];
|
|
247
|
+
toString: (path: import("easy-tsnameof").PathKey[]) => () => string;
|
|
248
|
+
valueOf: (path: import("easy-tsnameof").PathKey[]) => () => string;
|
|
249
|
+
[Symbol.toStringTag]: (path: import("easy-tsnameof").PathKey[]) => string;
|
|
250
|
+
}>;
|
|
251
|
+
serialize: import("easy-tsnameof").PathHandlers<{
|
|
252
|
+
$path: (path: import("easy-tsnameof").PathKey[]) => string;
|
|
253
|
+
$rawPath: (path: import("easy-tsnameof").PathKey[]) => import("easy-tsnameof").PathKey[];
|
|
254
|
+
toString: (path: import("easy-tsnameof").PathKey[]) => () => string;
|
|
255
|
+
valueOf: (path: import("easy-tsnameof").PathKey[]) => () => string;
|
|
256
|
+
[Symbol.toStringTag]: (path: import("easy-tsnameof").PathKey[]) => string;
|
|
257
|
+
}>;
|
|
258
|
+
} & import("easy-tsnameof").PathHandlers<{
|
|
259
|
+
$path: (path: import("easy-tsnameof").PathKey[]) => string;
|
|
260
|
+
$rawPath: (path: import("easy-tsnameof").PathKey[]) => import("easy-tsnameof").PathKey[];
|
|
261
|
+
toString: (path: import("easy-tsnameof").PathKey[]) => () => string;
|
|
262
|
+
valueOf: (path: import("easy-tsnameof").PathKey[]) => () => string;
|
|
263
|
+
[Symbol.toStringTag]: (path: import("easy-tsnameof").PathKey[]) => string;
|
|
264
|
+
}>;
|
|
265
|
+
validate: import("easy-tsnameof").PathHandlers<{
|
|
266
|
+
$path: (path: import("easy-tsnameof").PathKey[]) => string;
|
|
267
|
+
$rawPath: (path: import("easy-tsnameof").PathKey[]) => import("easy-tsnameof").PathKey[];
|
|
268
|
+
toString: (path: import("easy-tsnameof").PathKey[]) => () => string;
|
|
269
|
+
valueOf: (path: import("easy-tsnameof").PathKey[]) => () => string;
|
|
270
|
+
[Symbol.toStringTag]: (path: import("easy-tsnameof").PathKey[]) => string;
|
|
271
|
+
}>;
|
|
272
|
+
validateProperty: import("easy-tsnameof").PathHandlers<{
|
|
273
|
+
$path: (path: import("easy-tsnameof").PathKey[]) => string;
|
|
274
|
+
$rawPath: (path: import("easy-tsnameof").PathKey[]) => import("easy-tsnameof").PathKey[];
|
|
275
|
+
toString: (path: import("easy-tsnameof").PathKey[]) => () => string;
|
|
276
|
+
valueOf: (path: import("easy-tsnameof").PathKey[]) => () => string;
|
|
277
|
+
[Symbol.toStringTag]: (path: import("easy-tsnameof").PathKey[]) => string;
|
|
278
|
+
}>;
|
|
279
|
+
serialize: import("easy-tsnameof").PathHandlers<{
|
|
280
|
+
$path: (path: import("easy-tsnameof").PathKey[]) => string;
|
|
281
|
+
$rawPath: (path: import("easy-tsnameof").PathKey[]) => import("easy-tsnameof").PathKey[];
|
|
282
|
+
toString: (path: import("easy-tsnameof").PathKey[]) => () => string;
|
|
283
|
+
valueOf: (path: import("easy-tsnameof").PathKey[]) => () => string;
|
|
284
|
+
[Symbol.toStringTag]: (path: import("easy-tsnameof").PathKey[]) => string;
|
|
285
|
+
}>;
|
|
286
|
+
toJSON: import("easy-tsnameof").PathHandlers<{
|
|
287
|
+
$path: (path: import("easy-tsnameof").PathKey[]) => string;
|
|
288
|
+
$rawPath: (path: import("easy-tsnameof").PathKey[]) => import("easy-tsnameof").PathKey[];
|
|
289
|
+
toString: (path: import("easy-tsnameof").PathKey[]) => () => string;
|
|
290
|
+
valueOf: (path: import("easy-tsnameof").PathKey[]) => () => string;
|
|
291
|
+
[Symbol.toStringTag]: (path: import("easy-tsnameof").PathKey[]) => string;
|
|
292
|
+
}>;
|
|
293
|
+
} & import("easy-tsnameof").PathHandlers<{
|
|
294
|
+
$path: (path: import("easy-tsnameof").PathKey[]) => string;
|
|
295
|
+
$rawPath: (path: import("easy-tsnameof").PathKey[]) => import("easy-tsnameof").PathKey[];
|
|
296
|
+
toString: (path: import("easy-tsnameof").PathKey[]) => () => string;
|
|
297
|
+
valueOf: (path: import("easy-tsnameof").PathKey[]) => () => string;
|
|
298
|
+
[Symbol.toStringTag]: (path: import("easy-tsnameof").PathKey[]) => string;
|
|
299
|
+
}>;
|
|
6
300
|
unit: string;
|
|
7
301
|
value: number;
|
|
302
|
+
static get valueHints(): ValueHints;
|
|
303
|
+
static get renderHints(): RenderHints;
|
|
304
|
+
toString(): string;
|
|
8
305
|
}
|
|
@@ -8,15 +8,46 @@ var __decorate = (this && this.__decorate) || function (decorators, target, key,
|
|
|
8
8
|
var __metadata = (this && this.__metadata) || function (k, v) {
|
|
9
9
|
if (typeof Reflect === "object" && typeof Reflect.metadata === "function") return Reflect.metadata(k, v);
|
|
10
10
|
};
|
|
11
|
+
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
12
|
+
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
13
|
+
};
|
|
11
14
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
12
15
|
exports.AbstractMeasurement = void 0;
|
|
13
16
|
const ts_serval_1 = require("@js-soft/ts-serval");
|
|
14
|
-
const
|
|
17
|
+
const easy_tsnameof_1 = __importDefault(require("easy-tsnameof"));
|
|
18
|
+
const AbstractComplexValue_1 = require("../../AbstractComplexValue");
|
|
19
|
+
const hints_1 = require("../../hints");
|
|
15
20
|
/**
|
|
16
21
|
* valid unit strings must be defined in the classes extending AbstractMeasurement as enum
|
|
17
22
|
*/
|
|
18
|
-
class AbstractMeasurement extends
|
|
23
|
+
class AbstractMeasurement extends AbstractComplexValue_1.AbstractComplexValue {
|
|
24
|
+
static get valueHints() {
|
|
25
|
+
return hints_1.ValueHints.from({
|
|
26
|
+
propertyHints: {
|
|
27
|
+
[this.propertyNames.unit.$path]: hints_1.ValueHints.from({}),
|
|
28
|
+
[this.propertyNames.value.$path]: hints_1.ValueHints.from({})
|
|
29
|
+
}
|
|
30
|
+
});
|
|
31
|
+
}
|
|
32
|
+
static get renderHints() {
|
|
33
|
+
return super.renderHints.copyWith({
|
|
34
|
+
propertyHints: {
|
|
35
|
+
[this.propertyNames.unit.$path]: hints_1.RenderHints.from({
|
|
36
|
+
editType: hints_1.RenderHintsEditType.InputLike,
|
|
37
|
+
technicalType: hints_1.RenderHintsTechnicalType.String
|
|
38
|
+
}),
|
|
39
|
+
[this.propertyNames.value.$path]: hints_1.RenderHints.from({
|
|
40
|
+
editType: hints_1.RenderHintsEditType.InputLike,
|
|
41
|
+
technicalType: hints_1.RenderHintsTechnicalType.Integer
|
|
42
|
+
})
|
|
43
|
+
}
|
|
44
|
+
});
|
|
45
|
+
}
|
|
46
|
+
toString() {
|
|
47
|
+
return `${this.value} ${this.unit}`;
|
|
48
|
+
}
|
|
19
49
|
}
|
|
50
|
+
AbstractMeasurement.propertyNames = (0, easy_tsnameof_1.default)();
|
|
20
51
|
__decorate([
|
|
21
52
|
(0, ts_serval_1.serialize)(),
|
|
22
53
|
(0, ts_serval_1.validate)(),
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"AbstractMeasurement.js","sourceRoot":"","sources":["../../../../src/attributes/types/measurements/AbstractMeasurement.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"AbstractMeasurement.js","sourceRoot":"","sources":["../../../../src/attributes/types/measurements/AbstractMeasurement.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;AAAA,kDAAwD;AACxD,kEAAkC;AAClC,qEAAkH;AAClH,uCAAoG;AAYpG;;GAEG;AACH,MAAsB,mBAAoB,SAAQ,2CAAoB;IAW3D,MAAM,KAAK,UAAU;QACxB,OAAO,kBAAU,CAAC,IAAI,CAAC;YACnB,aAAa,EAAE;gBACX,CAAC,IAAI,CAAC,aAAa,CAAC,IAAI,CAAC,KAAK,CAAC,EAAE,kBAAU,CAAC,IAAI,CAAC,EAAE,CAAC;gBACpD,CAAC,IAAI,CAAC,aAAa,CAAC,KAAK,CAAC,KAAK,CAAC,EAAE,kBAAU,CAAC,IAAI,CAAC,EAAE,CAAC;aACxD;SACJ,CAAC,CAAA;IACN,CAAC;IAEM,MAAM,KAAc,WAAW;QAClC,OAAO,KAAK,CAAC,WAAW,CAAC,QAAQ,CAAC;YAC9B,aAAa,EAAE;gBACX,CAAC,IAAI,CAAC,aAAa,CAAC,IAAI,CAAC,KAAK,CAAC,EAAE,mBAAW,CAAC,IAAI,CAAC;oBAC9C,QAAQ,EAAE,2BAAmB,CAAC,SAAS;oBACvC,aAAa,EAAE,gCAAwB,CAAC,MAAM;iBACjD,CAAC;gBACF,CAAC,IAAI,CAAC,aAAa,CAAC,KAAK,CAAC,KAAK,CAAC,EAAE,mBAAW,CAAC,IAAI,CAAC;oBAC/C,QAAQ,EAAE,2BAAmB,CAAC,SAAS;oBACvC,aAAa,EAAE,gCAAwB,CAAC,OAAO;iBAClD,CAAC;aACL;SACJ,CAAC,CAAA;IACN,CAAC;IACe,QAAQ;QACpB,OAAO,GAAG,IAAI,CAAC,KAAK,IAAI,IAAI,CAAC,IAAI,EAAE,CAAA;IACvC,CAAC;;AAnCsB,iCAAa,GAAG,IAAA,uBAAM,GAA8B,CAAA;AAI3E;IAFC,IAAA,qBAAS,GAAE;IACX,IAAA,oBAAQ,GAAE;;iDACQ;AAInB;IAFC,IAAA,qBAAS,GAAE;IACX,IAAA,oBAAQ,GAAE;;kDACS;AATxB,kDAqCC"}
|
|
@@ -1 +1,2 @@
|
|
|
1
|
-
export * from "./
|
|
1
|
+
export * from "./AbstractLengthMeasurement";
|
|
2
|
+
export * from "./AbstractMeasurement";
|
|
@@ -14,5 +14,6 @@ var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
|
|
14
14
|
for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
|
|
15
15
|
};
|
|
16
16
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
17
|
-
__exportStar(require("./
|
|
17
|
+
__exportStar(require("./AbstractLengthMeasurement"), exports);
|
|
18
|
+
__exportStar(require("./AbstractMeasurement"), exports);
|
|
18
19
|
//# sourceMappingURL=index.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../src/attributes/types/measurements/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAAA,
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../src/attributes/types/measurements/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAAA,8DAA2C;AAC3C,wDAAqC"}
|
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
import {
|
|
2
|
-
export declare abstract class
|
|
1
|
+
import { AbstractComplexValue } from "../../AbstractComplexValue";
|
|
2
|
+
export declare abstract class LegalName extends AbstractComplexValue {
|
|
3
3
|
}
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.
|
|
4
|
-
const
|
|
5
|
-
class
|
|
3
|
+
exports.LegalName = void 0;
|
|
4
|
+
const AbstractComplexValue_1 = require("../../AbstractComplexValue");
|
|
5
|
+
class LegalName extends AbstractComplexValue_1.AbstractComplexValue {
|
|
6
6
|
}
|
|
7
|
-
exports.
|
|
7
|
+
exports.LegalName = LegalName;
|
|
8
8
|
//# sourceMappingURL=AbstractLegalName.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"AbstractLegalName.js","sourceRoot":"","sources":["../../../../src/attributes/types/name/AbstractLegalName.ts"],"names":[],"mappings":";;;AAAA,
|
|
1
|
+
{"version":3,"file":"AbstractLegalName.js","sourceRoot":"","sources":["../../../../src/attributes/types/name/AbstractLegalName.ts"],"names":[],"mappings":";;;AAAA,qEAAiE;AAEjE,MAAsB,SAAU,SAAQ,2CAAoB;CAAG;AAA/D,8BAA+D"}
|
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
import {
|
|
2
|
-
export declare class BirthName extends
|
|
1
|
+
import { AbstractString } from "../AbstractString";
|
|
2
|
+
export declare class BirthName extends AbstractString {
|
|
3
3
|
}
|
|
@@ -8,8 +8,8 @@ var __decorate = (this && this.__decorate) || function (decorators, target, key,
|
|
|
8
8
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
9
9
|
exports.BirthName = void 0;
|
|
10
10
|
const ts_serval_1 = require("@js-soft/ts-serval");
|
|
11
|
-
const
|
|
12
|
-
let BirthName = class BirthName extends
|
|
11
|
+
const AbstractString_1 = require("../AbstractString");
|
|
12
|
+
let BirthName = class BirthName extends AbstractString_1.AbstractString {
|
|
13
13
|
};
|
|
14
14
|
BirthName = __decorate([
|
|
15
15
|
(0, ts_serval_1.type)("BirthName")
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"BirthName.js","sourceRoot":"","sources":["../../../../src/attributes/types/name/BirthName.ts"],"names":[],"mappings":";;;;;;;;;AAAA,kDAAyC;AACzC,
|
|
1
|
+
{"version":3,"file":"BirthName.js","sourceRoot":"","sources":["../../../../src/attributes/types/name/BirthName.ts"],"names":[],"mappings":";;;;;;;;;AAAA,kDAAyC;AACzC,sDAAkD;AAGlD,IAAa,SAAS,GAAtB,MAAa,SAAU,SAAQ,+BAAc;CAAG,CAAA;AAAnC,SAAS;IADrB,IAAA,gBAAI,EAAC,WAAW,CAAC;GACL,SAAS,CAA0B;AAAnC,8BAAS"}
|
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
import {
|
|
2
|
-
export declare class DisplayName extends
|
|
1
|
+
import { AbstractString } from "../AbstractString";
|
|
2
|
+
export declare class DisplayName extends AbstractString {
|
|
3
3
|
}
|
|
@@ -8,8 +8,8 @@ var __decorate = (this && this.__decorate) || function (decorators, target, key,
|
|
|
8
8
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
9
9
|
exports.DisplayName = void 0;
|
|
10
10
|
const ts_serval_1 = require("@js-soft/ts-serval");
|
|
11
|
-
const
|
|
12
|
-
let DisplayName = class DisplayName extends
|
|
11
|
+
const AbstractString_1 = require("../AbstractString");
|
|
12
|
+
let DisplayName = class DisplayName extends AbstractString_1.AbstractString {
|
|
13
13
|
};
|
|
14
14
|
DisplayName = __decorate([
|
|
15
15
|
(0, ts_serval_1.type)("DisplayName")
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"DisplayName.js","sourceRoot":"","sources":["../../../../src/attributes/types/name/DisplayName.ts"],"names":[],"mappings":";;;;;;;;;AAAA,kDAAyC;AACzC,
|
|
1
|
+
{"version":3,"file":"DisplayName.js","sourceRoot":"","sources":["../../../../src/attributes/types/name/DisplayName.ts"],"names":[],"mappings":";;;;;;;;;AAAA,kDAAyC;AACzC,sDAAkD;AAGlD,IAAa,WAAW,GAAxB,MAAa,WAAY,SAAQ,+BAAc;CAAG,CAAA;AAArC,WAAW;IADvB,IAAA,gBAAI,EAAC,aAAa,CAAC;GACP,WAAW,CAA0B;AAArC,kCAAW"}
|
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
import {
|
|
2
|
-
export declare class GivenName extends
|
|
1
|
+
import { AbstractString } from "../AbstractString";
|
|
2
|
+
export declare class GivenName extends AbstractString {
|
|
3
3
|
}
|
|
@@ -8,8 +8,8 @@ var __decorate = (this && this.__decorate) || function (decorators, target, key,
|
|
|
8
8
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
9
9
|
exports.GivenName = void 0;
|
|
10
10
|
const ts_serval_1 = require("@js-soft/ts-serval");
|
|
11
|
-
const
|
|
12
|
-
let GivenName = class GivenName extends
|
|
11
|
+
const AbstractString_1 = require("../AbstractString");
|
|
12
|
+
let GivenName = class GivenName extends AbstractString_1.AbstractString {
|
|
13
13
|
};
|
|
14
14
|
GivenName = __decorate([
|
|
15
15
|
(0, ts_serval_1.type)("GivenName")
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"GivenName.js","sourceRoot":"","sources":["../../../../src/attributes/types/name/GivenName.ts"],"names":[],"mappings":";;;;;;;;;AAAA,kDAAyC;AACzC,
|
|
1
|
+
{"version":3,"file":"GivenName.js","sourceRoot":"","sources":["../../../../src/attributes/types/name/GivenName.ts"],"names":[],"mappings":";;;;;;;;;AAAA,kDAAyC;AACzC,sDAAkD;AAGlD,IAAa,SAAS,GAAtB,MAAa,SAAU,SAAQ,+BAAc;CAAG,CAAA;AAAnC,SAAS;IADrB,IAAA,gBAAI,EAAC,WAAW,CAAC;GACL,SAAS,CAA0B;AAAnC,8BAAS"}
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __decorate = (this && this.__decorate) || function (decorators, target, key, desc) {
|
|
3
|
+
var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
|
|
4
|
+
if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
|
|
5
|
+
else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
|
|
6
|
+
return c > 3 && r && Object.defineProperty(target, key, r), r;
|
|
7
|
+
};
|
|
8
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
9
|
+
exports.HonorificPrefix = void 0;
|
|
10
|
+
const ts_serval_1 = require("@js-soft/ts-serval");
|
|
11
|
+
const AbstractString_1 = require("../AbstractString");
|
|
12
|
+
let HonorificPrefix = class HonorificPrefix extends AbstractString_1.AbstractString {
|
|
13
|
+
};
|
|
14
|
+
HonorificPrefix = __decorate([
|
|
15
|
+
(0, ts_serval_1.type)("HonorificPrefix")
|
|
16
|
+
], HonorificPrefix);
|
|
17
|
+
exports.HonorificPrefix = HonorificPrefix;
|
|
18
|
+
//# sourceMappingURL=HonorificPrefix.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"HonorificPrefix.js","sourceRoot":"","sources":["../../../../src/attributes/types/name/HonorificPrefix.ts"],"names":[],"mappings":";;;;;;;;;AAAA,kDAAyC;AACzC,sDAAkD;AAGlD,IAAa,eAAe,GAA5B,MAAa,eAAgB,SAAQ,+BAAc;CAAG,CAAA;AAAzC,eAAe;IAD3B,IAAA,gBAAI,EAAC,iBAAiB,CAAC;GACX,eAAe,CAA0B;AAAzC,0CAAe"}
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __decorate = (this && this.__decorate) || function (decorators, target, key, desc) {
|
|
3
|
+
var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
|
|
4
|
+
if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
|
|
5
|
+
else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
|
|
6
|
+
return c > 3 && r && Object.defineProperty(target, key, r), r;
|
|
7
|
+
};
|
|
8
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
9
|
+
exports.HonorificSuffix = void 0;
|
|
10
|
+
const ts_serval_1 = require("@js-soft/ts-serval");
|
|
11
|
+
const AbstractString_1 = require("../AbstractString");
|
|
12
|
+
let HonorificSuffix = class HonorificSuffix extends AbstractString_1.AbstractString {
|
|
13
|
+
};
|
|
14
|
+
HonorificSuffix = __decorate([
|
|
15
|
+
(0, ts_serval_1.type)("HonorificSuffix")
|
|
16
|
+
], HonorificSuffix);
|
|
17
|
+
exports.HonorificSuffix = HonorificSuffix;
|
|
18
|
+
//# sourceMappingURL=HonorificSuffix.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"HonorificSuffix.js","sourceRoot":"","sources":["../../../../src/attributes/types/name/HonorificSuffix.ts"],"names":[],"mappings":";;;;;;;;;AAAA,kDAAyC;AACzC,sDAAkD;AAGlD,IAAa,eAAe,GAA5B,MAAa,eAAgB,SAAQ,+BAAc;CAAG,CAAA;AAAzC,eAAe;IAD3B,IAAA,gBAAI,EAAC,iBAAiB,CAAC;GACX,eAAe,CAA0B;AAAzC,0CAAe"}
|