Implemented the URLValidationRule type in the library target.

This commit is contained in:
2025-10-13 01:27:45 +02:00
parent 28e3c68ce1
commit 8d371f20a3
3 changed files with 114 additions and 5 deletions
@@ -24,8 +24,10 @@ enum InputValidationError: Error {
case inputNotConsumerKey
/// An input does not comply with the consumer secret requirements.
case inputNotConsumerSecret
/// An input does not comply with the semantic versioning requirements.
/// An input is not a semantic version.
case inputNotSemanticVersion
/// An input is not a URL.
case inputNotURL
/// An input does not comply with the user token requirements.
case inputNotUserToken
}