mirror of
https://codeberg.org/keyoxide/doipjs.git
synced 2025-01-10 14:39:28 -07:00
Add ClaimState enum
This commit is contained in:
parent
53cc90afe5
commit
6e6ca475bc
1 changed files with 9 additions and 1 deletions
10
src/enums.js
10
src/enums.js
|
@ -67,10 +67,18 @@ const VerificationStatus = {
|
||||||
}
|
}
|
||||||
Object.freeze(VerificationStatus)
|
Object.freeze(VerificationStatus)
|
||||||
|
|
||||||
|
const ClaimState = {
|
||||||
|
INIT: 'init',
|
||||||
|
MATCHED: 'matched',
|
||||||
|
VERIFIED: 'verified',
|
||||||
|
}
|
||||||
|
Object.freeze(ClaimState)
|
||||||
|
|
||||||
exports.ProxyPolicy = ProxyPolicy
|
exports.ProxyPolicy = ProxyPolicy
|
||||||
exports.Fetcher = Fetcher
|
exports.Fetcher = Fetcher
|
||||||
exports.ProofAccess = ProofAccess
|
exports.ProofAccess = ProofAccess
|
||||||
exports.ProofFormat = ProofFormat
|
exports.ProofFormat = ProofFormat
|
||||||
exports.ClaimFormat = ClaimFormat
|
exports.ClaimFormat = ClaimFormat
|
||||||
exports.ClaimRelation = ClaimRelation
|
exports.ClaimRelation = ClaimRelation
|
||||||
exports.VerificationStatus = ClaimRelation
|
exports.VerificationStatus = VerificationStatus
|
||||||
|
exports.ClaimState = ClaimState
|
||||||
|
|
Loading…
Reference in a new issue