@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
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
3
|
+
if (k2 === undefined) k2 = k;
|
|
4
|
+
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
5
|
+
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
6
|
+
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
7
|
+
}
|
|
8
|
+
Object.defineProperty(o, k2, desc);
|
|
9
|
+
}) : (function(o, m, k, k2) {
|
|
10
|
+
if (k2 === undefined) k2 = k;
|
|
11
|
+
o[k2] = m[k];
|
|
12
|
+
}));
|
|
13
|
+
var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
|
14
|
+
for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
|
|
15
|
+
};
|
|
16
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
17
|
+
__exportStar(require("./RelationshipAttributeCreationHints"), exports);
|
|
18
|
+
__exportStar(require("./RenderHints"), exports);
|
|
19
|
+
__exportStar(require("./RenderHintsDataType"), exports);
|
|
20
|
+
__exportStar(require("./RenderHintsEditType"), exports);
|
|
21
|
+
__exportStar(require("./RenderHintsTechnicalType"), exports);
|
|
22
|
+
__exportStar(require("./ValueHints"), exports);
|
|
23
|
+
__exportStar(require("./ValueHintsValue"), exports);
|
|
24
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../src/attributes/hints/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAAA,uEAAoD;AACpD,gDAA6B;AAC7B,wDAAqC;AACrC,wDAAqC;AACrC,6DAA0C;AAC1C,+CAA4B;AAC5B,oDAAiC"}
|
|
@@ -1,5 +1,12 @@
|
|
|
1
|
+
export * from "./AbstractAttribute";
|
|
2
|
+
export * from "./AbstractAttributeQuery";
|
|
1
3
|
export * from "./AbstractAttributeValue";
|
|
4
|
+
export * from "./AbstractComplexValue";
|
|
2
5
|
export * from "./Attribute";
|
|
3
|
-
export * from "./
|
|
4
|
-
export * from "./
|
|
6
|
+
export * from "./constants";
|
|
7
|
+
export * from "./hints";
|
|
8
|
+
export * from "./IdentityAttribute";
|
|
9
|
+
export * from "./IdentityAttributeQuery";
|
|
10
|
+
export * from "./RelationshipAttribute";
|
|
11
|
+
export * from "./RelationshipAttributeQuery";
|
|
5
12
|
export * from "./types";
|
package/dist/attributes/index.js
CHANGED
|
@@ -14,9 +14,16 @@ 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("./AbstractAttribute"), exports);
|
|
18
|
+
__exportStar(require("./AbstractAttributeQuery"), exports);
|
|
17
19
|
__exportStar(require("./AbstractAttributeValue"), exports);
|
|
20
|
+
__exportStar(require("./AbstractComplexValue"), exports);
|
|
18
21
|
__exportStar(require("./Attribute"), exports);
|
|
19
|
-
__exportStar(require("./
|
|
20
|
-
__exportStar(require("./
|
|
22
|
+
__exportStar(require("./constants"), exports);
|
|
23
|
+
__exportStar(require("./hints"), exports);
|
|
24
|
+
__exportStar(require("./IdentityAttribute"), exports);
|
|
25
|
+
__exportStar(require("./IdentityAttributeQuery"), exports);
|
|
26
|
+
__exportStar(require("./RelationshipAttribute"), exports);
|
|
27
|
+
__exportStar(require("./RelationshipAttributeQuery"), exports);
|
|
21
28
|
__exportStar(require("./types"), exports);
|
|
22
29
|
//# sourceMappingURL=index.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/attributes/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAAA,2DAAwC;AACxC,8CAA2B;AAC3B,
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/attributes/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAAA,sDAAmC;AACnC,2DAAwC;AACxC,2DAAwC;AACxC,yDAAsC;AACtC,8CAA2B;AAC3B,8CAA2B;AAC3B,0CAAuB;AACvB,sDAAmC;AACnC,2DAAwC;AACxC,0DAAuC;AACvC,+DAA4C;AAC5C,0CAAuB"}
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import { AbstractAttributeValue, AbstractAttributeValueJSON, IAbstractAttributeValue } from "../AbstractAttributeValue";
|
|
2
|
+
import { RenderHints, ValueHints } from "../hints";
|
|
3
|
+
export declare type AbstractBooleanJSON = IAbstractBooleanJSON | number;
|
|
4
|
+
export interface IAbstractBooleanJSON extends AbstractAttributeValueJSON {
|
|
5
|
+
value: boolean;
|
|
6
|
+
}
|
|
7
|
+
export interface IAbstractBoolean extends IAbstractAttributeValue {
|
|
8
|
+
value: boolean;
|
|
9
|
+
}
|
|
10
|
+
export declare class AbstractBoolean extends AbstractAttributeValue implements IAbstractBoolean {
|
|
11
|
+
value: boolean;
|
|
12
|
+
static preFrom(value: any): any;
|
|
13
|
+
toString(): string;
|
|
14
|
+
static get valueHints(): ValueHints;
|
|
15
|
+
static get renderHints(): RenderHints;
|
|
16
|
+
}
|
|
@@ -0,0 +1,41 @@
|
|
|
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
|
+
var __metadata = (this && this.__metadata) || function (k, v) {
|
|
9
|
+
if (typeof Reflect === "object" && typeof Reflect.metadata === "function") return Reflect.metadata(k, v);
|
|
10
|
+
};
|
|
11
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
12
|
+
exports.AbstractBoolean = void 0;
|
|
13
|
+
const ts_serval_1 = require("@js-soft/ts-serval");
|
|
14
|
+
const AbstractAttributeValue_1 = require("../AbstractAttributeValue");
|
|
15
|
+
const hints_1 = require("../hints");
|
|
16
|
+
class AbstractBoolean extends AbstractAttributeValue_1.AbstractAttributeValue {
|
|
17
|
+
static preFrom(value) {
|
|
18
|
+
if (typeof value === "boolean")
|
|
19
|
+
value = { value };
|
|
20
|
+
return value;
|
|
21
|
+
}
|
|
22
|
+
toString() {
|
|
23
|
+
return `${this.value}`;
|
|
24
|
+
}
|
|
25
|
+
static get valueHints() {
|
|
26
|
+
return hints_1.ValueHints.from({});
|
|
27
|
+
}
|
|
28
|
+
static get renderHints() {
|
|
29
|
+
return hints_1.RenderHints.from({
|
|
30
|
+
editType: hints_1.RenderHintsEditType.InputLike,
|
|
31
|
+
technicalType: hints_1.RenderHintsTechnicalType.Boolean
|
|
32
|
+
});
|
|
33
|
+
}
|
|
34
|
+
}
|
|
35
|
+
__decorate([
|
|
36
|
+
(0, ts_serval_1.serialize)(),
|
|
37
|
+
(0, ts_serval_1.validate)(),
|
|
38
|
+
__metadata("design:type", Boolean)
|
|
39
|
+
], AbstractBoolean.prototype, "value", void 0);
|
|
40
|
+
exports.AbstractBoolean = AbstractBoolean;
|
|
41
|
+
//# sourceMappingURL=AbstractBoolean.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"AbstractBoolean.js","sourceRoot":"","sources":["../../../src/attributes/types/AbstractBoolean.ts"],"names":[],"mappings":";;;;;;;;;;;;AAAA,kDAAwD;AACxD,sEAAuH;AACvH,oCAAiG;AAYjG,MAAa,eAAgB,SAAQ,+CAAsB;IAKhD,MAAM,CAAU,OAAO,CAAC,KAAU;QACrC,IAAI,OAAO,KAAK,KAAK,SAAS;YAAE,KAAK,GAAG,EAAE,KAAK,EAAE,CAAA;QACjD,OAAO,KAAK,CAAA;IAChB,CAAC;IAEe,QAAQ;QACpB,OAAO,GAAG,IAAI,CAAC,KAAK,EAAE,CAAA;IAC1B,CAAC;IAEM,MAAM,KAAK,UAAU;QACxB,OAAO,kBAAU,CAAC,IAAI,CAAC,EAAE,CAAC,CAAA;IAC9B,CAAC;IAEM,MAAM,KAAK,WAAW;QACzB,OAAO,mBAAW,CAAC,IAAI,CAAC;YACpB,QAAQ,EAAE,2BAAmB,CAAC,SAAS;YACvC,aAAa,EAAE,gCAAwB,CAAC,OAAO;SAClD,CAAC,CAAA;IACN,CAAC;CACJ;AArBG;IAFC,IAAA,qBAAS,GAAE;IACX,IAAA,oBAAQ,GAAE;;8CACU;AAHzB,0CAwBC"}
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import { AbstractAttributeValue, AbstractAttributeValueJSON, IAbstractAttributeValue } from "../AbstractAttributeValue";
|
|
2
|
+
import { RenderHints, ValueHints } from "../hints";
|
|
3
|
+
export declare type AbstractFloatJSON = IAbstractFloatJSON | number;
|
|
4
|
+
export interface IAbstractFloatJSON extends AbstractAttributeValueJSON {
|
|
5
|
+
value: number;
|
|
6
|
+
}
|
|
7
|
+
export interface IAbstractFloat extends IAbstractAttributeValue {
|
|
8
|
+
value: number;
|
|
9
|
+
}
|
|
10
|
+
export declare class AbstractFloat extends AbstractAttributeValue implements IAbstractFloat {
|
|
11
|
+
value: number;
|
|
12
|
+
static preFrom(value: any): any;
|
|
13
|
+
toString(): string;
|
|
14
|
+
static get valueHints(): ValueHints;
|
|
15
|
+
static get renderHints(): RenderHints;
|
|
16
|
+
}
|
|
@@ -9,15 +9,33 @@ 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.AbstractFloat = void 0;
|
|
13
13
|
const ts_serval_1 = require("@js-soft/ts-serval");
|
|
14
14
|
const AbstractAttributeValue_1 = require("../AbstractAttributeValue");
|
|
15
|
-
|
|
15
|
+
const hints_1 = require("../hints");
|
|
16
|
+
class AbstractFloat extends AbstractAttributeValue_1.AbstractAttributeValue {
|
|
17
|
+
static preFrom(value) {
|
|
18
|
+
if (typeof value === "number")
|
|
19
|
+
value = { value };
|
|
20
|
+
return value;
|
|
21
|
+
}
|
|
22
|
+
toString() {
|
|
23
|
+
return `${this.value}`;
|
|
24
|
+
}
|
|
25
|
+
static get valueHints() {
|
|
26
|
+
return hints_1.ValueHints.from({});
|
|
27
|
+
}
|
|
28
|
+
static get renderHints() {
|
|
29
|
+
return hints_1.RenderHints.from({
|
|
30
|
+
editType: hints_1.RenderHintsEditType.ButtonLike,
|
|
31
|
+
technicalType: hints_1.RenderHintsTechnicalType.Float
|
|
32
|
+
});
|
|
33
|
+
}
|
|
16
34
|
}
|
|
17
35
|
__decorate([
|
|
18
36
|
(0, ts_serval_1.serialize)(),
|
|
19
37
|
(0, ts_serval_1.validate)(),
|
|
20
38
|
__metadata("design:type", Number)
|
|
21
|
-
],
|
|
22
|
-
exports.
|
|
23
|
-
//# sourceMappingURL=
|
|
39
|
+
], AbstractFloat.prototype, "value", void 0);
|
|
40
|
+
exports.AbstractFloat = AbstractFloat;
|
|
41
|
+
//# sourceMappingURL=AbstractFloat.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"AbstractFloat.js","sourceRoot":"","sources":["../../../src/attributes/types/AbstractFloat.ts"],"names":[],"mappings":";;;;;;;;;;;;AAAA,kDAAwD;AACxD,sEAAuH;AACvH,oCAAiG;AAYjG,MAAa,aAAc,SAAQ,+CAAsB;IAK9C,MAAM,CAAU,OAAO,CAAC,KAAU;QACrC,IAAI,OAAO,KAAK,KAAK,QAAQ;YAAE,KAAK,GAAG,EAAE,KAAK,EAAE,CAAA;QAChD,OAAO,KAAK,CAAA;IAChB,CAAC;IAEe,QAAQ;QACpB,OAAO,GAAG,IAAI,CAAC,KAAK,EAAE,CAAA;IAC1B,CAAC;IAEM,MAAM,KAAK,UAAU;QACxB,OAAO,kBAAU,CAAC,IAAI,CAAC,EAAE,CAAC,CAAA;IAC9B,CAAC;IAEM,MAAM,KAAK,WAAW;QACzB,OAAO,mBAAW,CAAC,IAAI,CAAC;YACpB,QAAQ,EAAE,2BAAmB,CAAC,UAAU;YACxC,aAAa,EAAE,gCAAwB,CAAC,KAAK;SAChD,CAAC,CAAA;IACN,CAAC;CACJ;AArBG;IAFC,IAAA,qBAAS,GAAE;IACX,IAAA,oBAAQ,GAAE;;4CACS;AAHxB,sCAwBC"}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { AbstractAttributeValue, AbstractAttributeValueJSON, IAbstractAttributeValue } from "../AbstractAttributeValue";
|
|
2
|
+
import { RenderHints, ValueHints } from "../hints";
|
|
3
|
+
export declare type AbstractIntegerJSON = IAbstractIntegerJSON | number;
|
|
4
|
+
export interface IAbstractIntegerJSON extends AbstractAttributeValueJSON {
|
|
5
|
+
value: number;
|
|
6
|
+
}
|
|
7
|
+
export interface IAbstractInteger extends IAbstractAttributeValue {
|
|
8
|
+
value: number;
|
|
9
|
+
}
|
|
10
|
+
export declare class AbstractInteger extends AbstractAttributeValue implements IAbstractInteger {
|
|
11
|
+
value: number;
|
|
12
|
+
static preFrom(value: any): any;
|
|
13
|
+
toString(): string;
|
|
14
|
+
static get valueHints(): ValueHints;
|
|
15
|
+
static get renderHints(): RenderHints;
|
|
16
|
+
static from(value: IAbstractInteger): AbstractInteger;
|
|
17
|
+
}
|
|
@@ -9,15 +9,36 @@ 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.AbstractInteger = void 0;
|
|
13
13
|
const ts_serval_1 = require("@js-soft/ts-serval");
|
|
14
14
|
const AbstractAttributeValue_1 = require("../AbstractAttributeValue");
|
|
15
|
-
|
|
15
|
+
const hints_1 = require("../hints");
|
|
16
|
+
class AbstractInteger extends AbstractAttributeValue_1.AbstractAttributeValue {
|
|
17
|
+
static preFrom(value) {
|
|
18
|
+
if (typeof value === "number")
|
|
19
|
+
value = { value };
|
|
20
|
+
return value;
|
|
21
|
+
}
|
|
22
|
+
toString() {
|
|
23
|
+
return `${this.value}`;
|
|
24
|
+
}
|
|
25
|
+
static get valueHints() {
|
|
26
|
+
return hints_1.ValueHints.from({});
|
|
27
|
+
}
|
|
28
|
+
static get renderHints() {
|
|
29
|
+
return hints_1.RenderHints.from({
|
|
30
|
+
editType: hints_1.RenderHintsEditType.ButtonLike,
|
|
31
|
+
technicalType: hints_1.RenderHintsTechnicalType.Integer
|
|
32
|
+
});
|
|
33
|
+
}
|
|
34
|
+
static from(value) {
|
|
35
|
+
return this.fromAny(value);
|
|
36
|
+
}
|
|
16
37
|
}
|
|
17
38
|
__decorate([
|
|
18
39
|
(0, ts_serval_1.serialize)(),
|
|
19
40
|
(0, ts_serval_1.validate)({ customValidator: (v) => (!Number.isInteger(v) ? "must be an integer" : undefined) }),
|
|
20
41
|
__metadata("design:type", Number)
|
|
21
|
-
],
|
|
22
|
-
exports.
|
|
23
|
-
//# sourceMappingURL=
|
|
42
|
+
], AbstractInteger.prototype, "value", void 0);
|
|
43
|
+
exports.AbstractInteger = AbstractInteger;
|
|
44
|
+
//# sourceMappingURL=AbstractInteger.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"AbstractInteger.js","sourceRoot":"","sources":["../../../src/attributes/types/AbstractInteger.ts"],"names":[],"mappings":";;;;;;;;;;;;AAAA,kDAAwD;AACxD,sEAAuH;AACvH,oCAAiG;AAYjG,MAAa,eAAgB,SAAQ,+CAAsB;IAKhD,MAAM,CAAU,OAAO,CAAC,KAAU;QACrC,IAAI,OAAO,KAAK,KAAK,QAAQ;YAAE,KAAK,GAAG,EAAE,KAAK,EAAE,CAAA;QAChD,OAAO,KAAK,CAAA;IAChB,CAAC;IAEe,QAAQ;QACpB,OAAO,GAAG,IAAI,CAAC,KAAK,EAAE,CAAA;IAC1B,CAAC;IAEM,MAAM,KAAK,UAAU;QACxB,OAAO,kBAAU,CAAC,IAAI,CAAC,EAAE,CAAC,CAAA;IAC9B,CAAC;IAEM,MAAM,KAAK,WAAW;QACzB,OAAO,mBAAW,CAAC,IAAI,CAAC;YACpB,QAAQ,EAAE,2BAAmB,CAAC,UAAU;YACxC,aAAa,EAAE,gCAAwB,CAAC,OAAO;SAClD,CAAC,CAAA;IACN,CAAC;IAEM,MAAM,CAAC,IAAI,CAAC,KAAuB;QACtC,OAAO,IAAI,CAAC,OAAO,CAAC,KAAK,CAAC,CAAA;IAC9B,CAAC;CACJ;AAzBG;IAFC,IAAA,qBAAS,GAAE;IACX,IAAA,oBAAQ,EAAC,EAAE,eAAe,EAAE,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC,CAAC,MAAM,CAAC,SAAS,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,oBAAoB,CAAC,CAAC,CAAC,SAAS,CAAC,EAAE,CAAC;;8CAC5E;AAHxB,0CA4BC"}
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import { AbstractAttributeValue, AbstractAttributeValueJSON, IAbstractAttributeValue } from "../AbstractAttributeValue";
|
|
2
|
+
import { RenderHints, ValueHints } from "../hints";
|
|
3
|
+
export declare type AbstractStringJSON = IAbstractStringJSON | string;
|
|
4
|
+
export interface IAbstractStringJSON extends AbstractAttributeValueJSON {
|
|
5
|
+
value: string;
|
|
6
|
+
}
|
|
7
|
+
export interface IAbstractString extends IAbstractAttributeValue {
|
|
8
|
+
value: string;
|
|
9
|
+
}
|
|
10
|
+
export declare class AbstractString extends AbstractAttributeValue implements IAbstractString {
|
|
11
|
+
value: string;
|
|
12
|
+
static preFrom(value: any): any;
|
|
13
|
+
toString(): string;
|
|
14
|
+
static get valueHints(): ValueHints;
|
|
15
|
+
static get renderHints(): RenderHints;
|
|
16
|
+
}
|
|
@@ -0,0 +1,43 @@
|
|
|
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
|
+
var __metadata = (this && this.__metadata) || function (k, v) {
|
|
9
|
+
if (typeof Reflect === "object" && typeof Reflect.metadata === "function") return Reflect.metadata(k, v);
|
|
10
|
+
};
|
|
11
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
12
|
+
exports.AbstractString = void 0;
|
|
13
|
+
const ts_serval_1 = require("@js-soft/ts-serval");
|
|
14
|
+
const AbstractAttributeValue_1 = require("../AbstractAttributeValue");
|
|
15
|
+
const hints_1 = require("../hints");
|
|
16
|
+
class AbstractString extends AbstractAttributeValue_1.AbstractAttributeValue {
|
|
17
|
+
static preFrom(value) {
|
|
18
|
+
if (typeof value === "string")
|
|
19
|
+
value = { value };
|
|
20
|
+
return value;
|
|
21
|
+
}
|
|
22
|
+
toString() {
|
|
23
|
+
return this.value;
|
|
24
|
+
}
|
|
25
|
+
static get valueHints() {
|
|
26
|
+
return hints_1.ValueHints.from({
|
|
27
|
+
max: 200
|
|
28
|
+
});
|
|
29
|
+
}
|
|
30
|
+
static get renderHints() {
|
|
31
|
+
return hints_1.RenderHints.from({
|
|
32
|
+
editType: hints_1.RenderHintsEditType.InputLike,
|
|
33
|
+
technicalType: hints_1.RenderHintsTechnicalType.String
|
|
34
|
+
});
|
|
35
|
+
}
|
|
36
|
+
}
|
|
37
|
+
__decorate([
|
|
38
|
+
(0, ts_serval_1.serialize)(),
|
|
39
|
+
(0, ts_serval_1.validate)({ max: 200 }),
|
|
40
|
+
__metadata("design:type", String)
|
|
41
|
+
], AbstractString.prototype, "value", void 0);
|
|
42
|
+
exports.AbstractString = AbstractString;
|
|
43
|
+
//# sourceMappingURL=AbstractString.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"AbstractString.js","sourceRoot":"","sources":["../../../src/attributes/types/AbstractString.ts"],"names":[],"mappings":";;;;;;;;;;;;AAAA,kDAAwD;AACxD,sEAAuH;AACvH,oCAAiG;AAYjG,MAAa,cAAe,SAAQ,+CAAsB;IAK/C,MAAM,CAAU,OAAO,CAAC,KAAU;QACrC,IAAI,OAAO,KAAK,KAAK,QAAQ;YAAE,KAAK,GAAG,EAAE,KAAK,EAAE,CAAA;QAChD,OAAO,KAAK,CAAA;IAChB,CAAC;IAEe,QAAQ;QACpB,OAAO,IAAI,CAAC,KAAK,CAAA;IACrB,CAAC;IAEM,MAAM,KAAK,UAAU;QACxB,OAAO,kBAAU,CAAC,IAAI,CAAC;YACnB,GAAG,EAAE,GAAG;SACX,CAAC,CAAA;IACN,CAAC;IAEM,MAAM,KAAK,WAAW;QACzB,OAAO,mBAAW,CAAC,IAAI,CAAC;YACpB,QAAQ,EAAE,2BAAmB,CAAC,SAAS;YACvC,aAAa,EAAE,gCAAwB,CAAC,MAAM;SACjD,CAAC,CAAA;IACN,CAAC;CACJ;AAvBG;IAFC,IAAA,qBAAS,GAAE;IACX,IAAA,oBAAQ,EAAC,EAAE,GAAG,EAAE,GAAG,EAAE,CAAC;;6CACH;AAHxB,wCA0BC"}
|
|
@@ -1,4 +1,284 @@
|
|
|
1
|
-
import {
|
|
2
|
-
|
|
1
|
+
import { AbstractComplexValue, AbstractComplexValueJSON, IAbstractComplexValue } from "../../AbstractComplexValue";
|
|
2
|
+
import { RenderHints, ValueHints } from "../../hints";
|
|
3
|
+
export interface AbstractAddressJSON extends AbstractComplexValueJSON {
|
|
3
4
|
recipient: string;
|
|
4
5
|
}
|
|
6
|
+
export interface IAbstractAddress extends IAbstractComplexValue {
|
|
7
|
+
recipient: string;
|
|
8
|
+
}
|
|
9
|
+
export declare abstract class AbstractAddress extends AbstractComplexValue implements IAbstractAddress {
|
|
10
|
+
static readonly propertyNames: {
|
|
11
|
+
recipient: import("easy-tsnameof").PathHandlers<{
|
|
12
|
+
$path: (path: import("easy-tsnameof").PathKey[]) => string;
|
|
13
|
+
$rawPath: (path: import("easy-tsnameof").PathKey[]) => import("easy-tsnameof").PathKey[];
|
|
14
|
+
toString: (path: import("easy-tsnameof").PathKey[]) => () => string;
|
|
15
|
+
valueOf: (path: import("easy-tsnameof").PathKey[]) => () => string;
|
|
16
|
+
[Symbol.toStringTag]: (path: import("easy-tsnameof").PathKey[]) => string;
|
|
17
|
+
}>;
|
|
18
|
+
readonly valueHints: {
|
|
19
|
+
editHelp: import("easy-tsnameof").PathHandlers<{
|
|
20
|
+
$path: (path: import("easy-tsnameof").PathKey[]) => string;
|
|
21
|
+
$rawPath: (path: import("easy-tsnameof").PathKey[]) => import("easy-tsnameof").PathKey[];
|
|
22
|
+
toString: (path: import("easy-tsnameof").PathKey[]) => () => string;
|
|
23
|
+
valueOf: (path: import("easy-tsnameof").PathKey[]) => () => string;
|
|
24
|
+
[Symbol.toStringTag]: (path: import("easy-tsnameof").PathKey[]) => string;
|
|
25
|
+
}>;
|
|
26
|
+
min: import("easy-tsnameof").PathHandlers<{
|
|
27
|
+
$path: (path: import("easy-tsnameof").PathKey[]) => string;
|
|
28
|
+
$rawPath: (path: import("easy-tsnameof").PathKey[]) => import("easy-tsnameof").PathKey[];
|
|
29
|
+
toString: (path: import("easy-tsnameof").PathKey[]) => () => string;
|
|
30
|
+
valueOf: (path: import("easy-tsnameof").PathKey[]) => () => string;
|
|
31
|
+
[Symbol.toStringTag]: (path: import("easy-tsnameof").PathKey[]) => string;
|
|
32
|
+
}>;
|
|
33
|
+
max: import("easy-tsnameof").PathHandlers<{
|
|
34
|
+
$path: (path: import("easy-tsnameof").PathKey[]) => string;
|
|
35
|
+
$rawPath: (path: import("easy-tsnameof").PathKey[]) => import("easy-tsnameof").PathKey[];
|
|
36
|
+
toString: (path: import("easy-tsnameof").PathKey[]) => () => string;
|
|
37
|
+
valueOf: (path: import("easy-tsnameof").PathKey[]) => () => string;
|
|
38
|
+
[Symbol.toStringTag]: (path: import("easy-tsnameof").PathKey[]) => string;
|
|
39
|
+
}>;
|
|
40
|
+
pattern: import("easy-tsnameof").PathHandlers<{
|
|
41
|
+
$path: (path: import("easy-tsnameof").PathKey[]) => string;
|
|
42
|
+
$rawPath: (path: import("easy-tsnameof").PathKey[]) => import("easy-tsnameof").PathKey[];
|
|
43
|
+
toString: (path: import("easy-tsnameof").PathKey[]) => () => string;
|
|
44
|
+
valueOf: (path: import("easy-tsnameof").PathKey[]) => () => string;
|
|
45
|
+
[Symbol.toStringTag]: (path: import("easy-tsnameof").PathKey[]) => string;
|
|
46
|
+
}>;
|
|
47
|
+
values: ({
|
|
48
|
+
displayName: import("easy-tsnameof").PathHandlers<{
|
|
49
|
+
$path: (path: import("easy-tsnameof").PathKey[]) => string;
|
|
50
|
+
$rawPath: (path: import("easy-tsnameof").PathKey[]) => import("easy-tsnameof").PathKey[];
|
|
51
|
+
toString: (path: import("easy-tsnameof").PathKey[]) => () => string;
|
|
52
|
+
valueOf: (path: import("easy-tsnameof").PathKey[]) => () => string;
|
|
53
|
+
[Symbol.toStringTag]: (path: import("easy-tsnameof").PathKey[]) => string;
|
|
54
|
+
}>;
|
|
55
|
+
key: import("easy-tsnameof").PathHandlers<{
|
|
56
|
+
$path: (path: import("easy-tsnameof").PathKey[]) => string;
|
|
57
|
+
$rawPath: (path: import("easy-tsnameof").PathKey[]) => import("easy-tsnameof").PathKey[];
|
|
58
|
+
toString: (path: import("easy-tsnameof").PathKey[]) => () => string;
|
|
59
|
+
valueOf: (path: import("easy-tsnameof").PathKey[]) => () => string;
|
|
60
|
+
[Symbol.toStringTag]: (path: import("easy-tsnameof").PathKey[]) => string;
|
|
61
|
+
}>;
|
|
62
|
+
validate: import("easy-tsnameof").PathHandlers<{
|
|
63
|
+
$path: (path: import("easy-tsnameof").PathKey[]) => string;
|
|
64
|
+
$rawPath: (path: import("easy-tsnameof").PathKey[]) => import("easy-tsnameof").PathKey[];
|
|
65
|
+
toString: (path: import("easy-tsnameof").PathKey[]) => () => string;
|
|
66
|
+
valueOf: (path: import("easy-tsnameof").PathKey[]) => () => string;
|
|
67
|
+
[Symbol.toStringTag]: (path: import("easy-tsnameof").PathKey[]) => string;
|
|
68
|
+
}>;
|
|
69
|
+
validateProperty: import("easy-tsnameof").PathHandlers<{
|
|
70
|
+
$path: (path: import("easy-tsnameof").PathKey[]) => string;
|
|
71
|
+
$rawPath: (path: import("easy-tsnameof").PathKey[]) => import("easy-tsnameof").PathKey[];
|
|
72
|
+
toString: (path: import("easy-tsnameof").PathKey[]) => () => string;
|
|
73
|
+
valueOf: (path: import("easy-tsnameof").PathKey[]) => () => string;
|
|
74
|
+
[Symbol.toStringTag]: (path: import("easy-tsnameof").PathKey[]) => string;
|
|
75
|
+
}>;
|
|
76
|
+
serialize: import("easy-tsnameof").PathHandlers<{
|
|
77
|
+
$path: (path: import("easy-tsnameof").PathKey[]) => string;
|
|
78
|
+
$rawPath: (path: import("easy-tsnameof").PathKey[]) => import("easy-tsnameof").PathKey[];
|
|
79
|
+
toString: (path: import("easy-tsnameof").PathKey[]) => () => string;
|
|
80
|
+
valueOf: (path: import("easy-tsnameof").PathKey[]) => () => string;
|
|
81
|
+
[Symbol.toStringTag]: (path: import("easy-tsnameof").PathKey[]) => string;
|
|
82
|
+
}>;
|
|
83
|
+
toJSON: import("easy-tsnameof").PathHandlers<{
|
|
84
|
+
$path: (path: import("easy-tsnameof").PathKey[]) => string;
|
|
85
|
+
$rawPath: (path: import("easy-tsnameof").PathKey[]) => import("easy-tsnameof").PathKey[];
|
|
86
|
+
toString: (path: import("easy-tsnameof").PathKey[]) => () => string;
|
|
87
|
+
valueOf: (path: import("easy-tsnameof").PathKey[]) => () => string;
|
|
88
|
+
[Symbol.toStringTag]: (path: import("easy-tsnameof").PathKey[]) => string;
|
|
89
|
+
}>;
|
|
90
|
+
} & import("easy-tsnameof").PathHandlers<{
|
|
91
|
+
$path: (path: import("easy-tsnameof").PathKey[]) => string;
|
|
92
|
+
$rawPath: (path: import("easy-tsnameof").PathKey[]) => import("easy-tsnameof").PathKey[];
|
|
93
|
+
toString: (path: import("easy-tsnameof").PathKey[]) => () => string;
|
|
94
|
+
valueOf: (path: import("easy-tsnameof").PathKey[]) => () => string;
|
|
95
|
+
[Symbol.toStringTag]: (path: import("easy-tsnameof").PathKey[]) => string;
|
|
96
|
+
}>)[] & import("easy-tsnameof").PathHandlers<{
|
|
97
|
+
$path: (path: import("easy-tsnameof").PathKey[]) => string;
|
|
98
|
+
$rawPath: (path: import("easy-tsnameof").PathKey[]) => import("easy-tsnameof").PathKey[];
|
|
99
|
+
toString: (path: import("easy-tsnameof").PathKey[]) => () => string;
|
|
100
|
+
valueOf: (path: import("easy-tsnameof").PathKey[]) => () => string;
|
|
101
|
+
[Symbol.toStringTag]: (path: import("easy-tsnameof").PathKey[]) => string;
|
|
102
|
+
}>;
|
|
103
|
+
defaultValue: import("easy-tsnameof").PathHandlers<{
|
|
104
|
+
$path: (path: import("easy-tsnameof").PathKey[]) => string;
|
|
105
|
+
$rawPath: (path: import("easy-tsnameof").PathKey[]) => import("easy-tsnameof").PathKey[];
|
|
106
|
+
toString: (path: import("easy-tsnameof").PathKey[]) => () => string;
|
|
107
|
+
valueOf: (path: import("easy-tsnameof").PathKey[]) => () => string;
|
|
108
|
+
[Symbol.toStringTag]: (path: import("easy-tsnameof").PathKey[]) => string;
|
|
109
|
+
}>;
|
|
110
|
+
propertyHints: {
|
|
111
|
+
[x: string]: any & import("easy-tsnameof").PathHandlers<{
|
|
112
|
+
$path: (path: import("easy-tsnameof").PathKey[]) => string;
|
|
113
|
+
$rawPath: (path: import("easy-tsnameof").PathKey[]) => import("easy-tsnameof").PathKey[];
|
|
114
|
+
toString: (path: import("easy-tsnameof").PathKey[]) => () => string;
|
|
115
|
+
valueOf: (path: import("easy-tsnameof").PathKey[]) => () => string;
|
|
116
|
+
[Symbol.toStringTag]: (path: import("easy-tsnameof").PathKey[]) => string;
|
|
117
|
+
}>;
|
|
118
|
+
} & import("easy-tsnameof").PathHandlers<{
|
|
119
|
+
$path: (path: import("easy-tsnameof").PathKey[]) => string;
|
|
120
|
+
$rawPath: (path: import("easy-tsnameof").PathKey[]) => import("easy-tsnameof").PathKey[];
|
|
121
|
+
toString: (path: import("easy-tsnameof").PathKey[]) => () => string;
|
|
122
|
+
valueOf: (path: import("easy-tsnameof").PathKey[]) => () => string;
|
|
123
|
+
[Symbol.toStringTag]: (path: import("easy-tsnameof").PathKey[]) => string;
|
|
124
|
+
}>;
|
|
125
|
+
toJSON: import("easy-tsnameof").PathHandlers<{
|
|
126
|
+
$path: (path: import("easy-tsnameof").PathKey[]) => string;
|
|
127
|
+
$rawPath: (path: import("easy-tsnameof").PathKey[]) => import("easy-tsnameof").PathKey[];
|
|
128
|
+
toString: (path: import("easy-tsnameof").PathKey[]) => () => string;
|
|
129
|
+
valueOf: (path: import("easy-tsnameof").PathKey[]) => () => string;
|
|
130
|
+
[Symbol.toStringTag]: (path: import("easy-tsnameof").PathKey[]) => string;
|
|
131
|
+
}>;
|
|
132
|
+
copyWith: import("easy-tsnameof").PathHandlers<{
|
|
133
|
+
$path: (path: import("easy-tsnameof").PathKey[]) => string;
|
|
134
|
+
$rawPath: (path: import("easy-tsnameof").PathKey[]) => import("easy-tsnameof").PathKey[];
|
|
135
|
+
toString: (path: import("easy-tsnameof").PathKey[]) => () => string;
|
|
136
|
+
valueOf: (path: import("easy-tsnameof").PathKey[]) => () => string;
|
|
137
|
+
[Symbol.toStringTag]: (path: import("easy-tsnameof").PathKey[]) => string;
|
|
138
|
+
}>;
|
|
139
|
+
validate: import("easy-tsnameof").PathHandlers<{
|
|
140
|
+
$path: (path: import("easy-tsnameof").PathKey[]) => string;
|
|
141
|
+
$rawPath: (path: import("easy-tsnameof").PathKey[]) => import("easy-tsnameof").PathKey[];
|
|
142
|
+
toString: (path: import("easy-tsnameof").PathKey[]) => () => string;
|
|
143
|
+
valueOf: (path: import("easy-tsnameof").PathKey[]) => () => string;
|
|
144
|
+
[Symbol.toStringTag]: (path: import("easy-tsnameof").PathKey[]) => string;
|
|
145
|
+
}>;
|
|
146
|
+
validateProperty: import("easy-tsnameof").PathHandlers<{
|
|
147
|
+
$path: (path: import("easy-tsnameof").PathKey[]) => string;
|
|
148
|
+
$rawPath: (path: import("easy-tsnameof").PathKey[]) => import("easy-tsnameof").PathKey[];
|
|
149
|
+
toString: (path: import("easy-tsnameof").PathKey[]) => () => string;
|
|
150
|
+
valueOf: (path: import("easy-tsnameof").PathKey[]) => () => string;
|
|
151
|
+
[Symbol.toStringTag]: (path: import("easy-tsnameof").PathKey[]) => string;
|
|
152
|
+
}>;
|
|
153
|
+
serialize: import("easy-tsnameof").PathHandlers<{
|
|
154
|
+
$path: (path: import("easy-tsnameof").PathKey[]) => string;
|
|
155
|
+
$rawPath: (path: import("easy-tsnameof").PathKey[]) => import("easy-tsnameof").PathKey[];
|
|
156
|
+
toString: (path: import("easy-tsnameof").PathKey[]) => () => string;
|
|
157
|
+
valueOf: (path: import("easy-tsnameof").PathKey[]) => () => string;
|
|
158
|
+
[Symbol.toStringTag]: (path: import("easy-tsnameof").PathKey[]) => string;
|
|
159
|
+
}>;
|
|
160
|
+
} & import("easy-tsnameof").PathHandlers<{
|
|
161
|
+
$path: (path: import("easy-tsnameof").PathKey[]) => string;
|
|
162
|
+
$rawPath: (path: import("easy-tsnameof").PathKey[]) => import("easy-tsnameof").PathKey[];
|
|
163
|
+
toString: (path: import("easy-tsnameof").PathKey[]) => () => string;
|
|
164
|
+
valueOf: (path: import("easy-tsnameof").PathKey[]) => () => string;
|
|
165
|
+
[Symbol.toStringTag]: (path: import("easy-tsnameof").PathKey[]) => string;
|
|
166
|
+
}>;
|
|
167
|
+
readonly renderHints: {
|
|
168
|
+
technicalType: import("easy-tsnameof").PathHandlers<{
|
|
169
|
+
$path: (path: import("easy-tsnameof").PathKey[]) => string;
|
|
170
|
+
$rawPath: (path: import("easy-tsnameof").PathKey[]) => import("easy-tsnameof").PathKey[];
|
|
171
|
+
toString: (path: import("easy-tsnameof").PathKey[]) => () => string;
|
|
172
|
+
valueOf: (path: import("easy-tsnameof").PathKey[]) => () => string;
|
|
173
|
+
[Symbol.toStringTag]: (path: import("easy-tsnameof").PathKey[]) => string;
|
|
174
|
+
}>;
|
|
175
|
+
editType: import("easy-tsnameof").PathHandlers<{
|
|
176
|
+
$path: (path: import("easy-tsnameof").PathKey[]) => string;
|
|
177
|
+
$rawPath: (path: import("easy-tsnameof").PathKey[]) => import("easy-tsnameof").PathKey[];
|
|
178
|
+
toString: (path: import("easy-tsnameof").PathKey[]) => () => string;
|
|
179
|
+
valueOf: (path: import("easy-tsnameof").PathKey[]) => () => string;
|
|
180
|
+
[Symbol.toStringTag]: (path: import("easy-tsnameof").PathKey[]) => string;
|
|
181
|
+
}>;
|
|
182
|
+
dataType: import("easy-tsnameof").PathHandlers<{
|
|
183
|
+
$path: (path: import("easy-tsnameof").PathKey[]) => string;
|
|
184
|
+
$rawPath: (path: import("easy-tsnameof").PathKey[]) => import("easy-tsnameof").PathKey[];
|
|
185
|
+
toString: (path: import("easy-tsnameof").PathKey[]) => () => string;
|
|
186
|
+
valueOf: (path: import("easy-tsnameof").PathKey[]) => () => string;
|
|
187
|
+
[Symbol.toStringTag]: (path: import("easy-tsnameof").PathKey[]) => string;
|
|
188
|
+
}>;
|
|
189
|
+
propertyHints: {
|
|
190
|
+
[x: string]: any & import("easy-tsnameof").PathHandlers<{
|
|
191
|
+
$path: (path: import("easy-tsnameof").PathKey[]) => string;
|
|
192
|
+
$rawPath: (path: import("easy-tsnameof").PathKey[]) => import("easy-tsnameof").PathKey[];
|
|
193
|
+
toString: (path: import("easy-tsnameof").PathKey[]) => () => string;
|
|
194
|
+
valueOf: (path: import("easy-tsnameof").PathKey[]) => () => string;
|
|
195
|
+
[Symbol.toStringTag]: (path: import("easy-tsnameof").PathKey[]) => string;
|
|
196
|
+
}>;
|
|
197
|
+
} & import("easy-tsnameof").PathHandlers<{
|
|
198
|
+
$path: (path: import("easy-tsnameof").PathKey[]) => string;
|
|
199
|
+
$rawPath: (path: import("easy-tsnameof").PathKey[]) => import("easy-tsnameof").PathKey[];
|
|
200
|
+
toString: (path: import("easy-tsnameof").PathKey[]) => () => string;
|
|
201
|
+
valueOf: (path: import("easy-tsnameof").PathKey[]) => () => string;
|
|
202
|
+
[Symbol.toStringTag]: (path: import("easy-tsnameof").PathKey[]) => string;
|
|
203
|
+
}>;
|
|
204
|
+
toJSON: import("easy-tsnameof").PathHandlers<{
|
|
205
|
+
$path: (path: import("easy-tsnameof").PathKey[]) => string;
|
|
206
|
+
$rawPath: (path: import("easy-tsnameof").PathKey[]) => import("easy-tsnameof").PathKey[];
|
|
207
|
+
toString: (path: import("easy-tsnameof").PathKey[]) => () => string;
|
|
208
|
+
valueOf: (path: import("easy-tsnameof").PathKey[]) => () => string;
|
|
209
|
+
[Symbol.toStringTag]: (path: import("easy-tsnameof").PathKey[]) => string;
|
|
210
|
+
}>;
|
|
211
|
+
copyWith: import("easy-tsnameof").PathHandlers<{
|
|
212
|
+
$path: (path: import("easy-tsnameof").PathKey[]) => string;
|
|
213
|
+
$rawPath: (path: import("easy-tsnameof").PathKey[]) => import("easy-tsnameof").PathKey[];
|
|
214
|
+
toString: (path: import("easy-tsnameof").PathKey[]) => () => string;
|
|
215
|
+
valueOf: (path: import("easy-tsnameof").PathKey[]) => () => string;
|
|
216
|
+
[Symbol.toStringTag]: (path: import("easy-tsnameof").PathKey[]) => string;
|
|
217
|
+
}>;
|
|
218
|
+
validate: import("easy-tsnameof").PathHandlers<{
|
|
219
|
+
$path: (path: import("easy-tsnameof").PathKey[]) => string;
|
|
220
|
+
$rawPath: (path: import("easy-tsnameof").PathKey[]) => import("easy-tsnameof").PathKey[];
|
|
221
|
+
toString: (path: import("easy-tsnameof").PathKey[]) => () => string;
|
|
222
|
+
valueOf: (path: import("easy-tsnameof").PathKey[]) => () => string;
|
|
223
|
+
[Symbol.toStringTag]: (path: import("easy-tsnameof").PathKey[]) => string;
|
|
224
|
+
}>;
|
|
225
|
+
validateProperty: import("easy-tsnameof").PathHandlers<{
|
|
226
|
+
$path: (path: import("easy-tsnameof").PathKey[]) => string;
|
|
227
|
+
$rawPath: (path: import("easy-tsnameof").PathKey[]) => import("easy-tsnameof").PathKey[];
|
|
228
|
+
toString: (path: import("easy-tsnameof").PathKey[]) => () => string;
|
|
229
|
+
valueOf: (path: import("easy-tsnameof").PathKey[]) => () => string;
|
|
230
|
+
[Symbol.toStringTag]: (path: import("easy-tsnameof").PathKey[]) => string;
|
|
231
|
+
}>;
|
|
232
|
+
serialize: import("easy-tsnameof").PathHandlers<{
|
|
233
|
+
$path: (path: import("easy-tsnameof").PathKey[]) => string;
|
|
234
|
+
$rawPath: (path: import("easy-tsnameof").PathKey[]) => import("easy-tsnameof").PathKey[];
|
|
235
|
+
toString: (path: import("easy-tsnameof").PathKey[]) => () => string;
|
|
236
|
+
valueOf: (path: import("easy-tsnameof").PathKey[]) => () => string;
|
|
237
|
+
[Symbol.toStringTag]: (path: import("easy-tsnameof").PathKey[]) => string;
|
|
238
|
+
}>;
|
|
239
|
+
} & import("easy-tsnameof").PathHandlers<{
|
|
240
|
+
$path: (path: import("easy-tsnameof").PathKey[]) => string;
|
|
241
|
+
$rawPath: (path: import("easy-tsnameof").PathKey[]) => import("easy-tsnameof").PathKey[];
|
|
242
|
+
toString: (path: import("easy-tsnameof").PathKey[]) => () => string;
|
|
243
|
+
valueOf: (path: import("easy-tsnameof").PathKey[]) => () => string;
|
|
244
|
+
[Symbol.toStringTag]: (path: import("easy-tsnameof").PathKey[]) => string;
|
|
245
|
+
}>;
|
|
246
|
+
validate: import("easy-tsnameof").PathHandlers<{
|
|
247
|
+
$path: (path: import("easy-tsnameof").PathKey[]) => string;
|
|
248
|
+
$rawPath: (path: import("easy-tsnameof").PathKey[]) => import("easy-tsnameof").PathKey[];
|
|
249
|
+
toString: (path: import("easy-tsnameof").PathKey[]) => () => string;
|
|
250
|
+
valueOf: (path: import("easy-tsnameof").PathKey[]) => () => string;
|
|
251
|
+
[Symbol.toStringTag]: (path: import("easy-tsnameof").PathKey[]) => string;
|
|
252
|
+
}>;
|
|
253
|
+
validateProperty: import("easy-tsnameof").PathHandlers<{
|
|
254
|
+
$path: (path: import("easy-tsnameof").PathKey[]) => string;
|
|
255
|
+
$rawPath: (path: import("easy-tsnameof").PathKey[]) => import("easy-tsnameof").PathKey[];
|
|
256
|
+
toString: (path: import("easy-tsnameof").PathKey[]) => () => string;
|
|
257
|
+
valueOf: (path: import("easy-tsnameof").PathKey[]) => () => string;
|
|
258
|
+
[Symbol.toStringTag]: (path: import("easy-tsnameof").PathKey[]) => string;
|
|
259
|
+
}>;
|
|
260
|
+
serialize: import("easy-tsnameof").PathHandlers<{
|
|
261
|
+
$path: (path: import("easy-tsnameof").PathKey[]) => string;
|
|
262
|
+
$rawPath: (path: import("easy-tsnameof").PathKey[]) => import("easy-tsnameof").PathKey[];
|
|
263
|
+
toString: (path: import("easy-tsnameof").PathKey[]) => () => string;
|
|
264
|
+
valueOf: (path: import("easy-tsnameof").PathKey[]) => () => string;
|
|
265
|
+
[Symbol.toStringTag]: (path: import("easy-tsnameof").PathKey[]) => string;
|
|
266
|
+
}>;
|
|
267
|
+
toJSON: import("easy-tsnameof").PathHandlers<{
|
|
268
|
+
$path: (path: import("easy-tsnameof").PathKey[]) => string;
|
|
269
|
+
$rawPath: (path: import("easy-tsnameof").PathKey[]) => import("easy-tsnameof").PathKey[];
|
|
270
|
+
toString: (path: import("easy-tsnameof").PathKey[]) => () => string;
|
|
271
|
+
valueOf: (path: import("easy-tsnameof").PathKey[]) => () => string;
|
|
272
|
+
[Symbol.toStringTag]: (path: import("easy-tsnameof").PathKey[]) => string;
|
|
273
|
+
}>;
|
|
274
|
+
} & import("easy-tsnameof").PathHandlers<{
|
|
275
|
+
$path: (path: import("easy-tsnameof").PathKey[]) => string;
|
|
276
|
+
$rawPath: (path: import("easy-tsnameof").PathKey[]) => import("easy-tsnameof").PathKey[];
|
|
277
|
+
toString: (path: import("easy-tsnameof").PathKey[]) => () => string;
|
|
278
|
+
valueOf: (path: import("easy-tsnameof").PathKey[]) => () => string;
|
|
279
|
+
[Symbol.toStringTag]: (path: import("easy-tsnameof").PathKey[]) => string;
|
|
280
|
+
}>;
|
|
281
|
+
recipient: string;
|
|
282
|
+
static get valueHints(): ValueHints;
|
|
283
|
+
static get renderHints(): RenderHints;
|
|
284
|
+
}
|