Merge pull request #1174 from theseyi/typings

minor updates to IdLogicalType and IComplianceEntity type defs
This commit is contained in:
Seyi Adebajo 2018-05-21 11:12:33 -07:00 committed by GitHub
commit a66e483d13
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -22,11 +22,20 @@ enum Classification {
* @enum {string}
*/
enum IdLogicalType {
// Numerical format, 12345
Numeric = 'NUMERIC',
// URN format, urn:li:member:12345
Urn = 'URN',
// Reversed URN format, 12345:member:li:urn
ReversedUrn = 'REVERSED_URN',
// [Deprecated] Use CUSTOM format + pattern instead
CompositeUrn = 'COMPOSITE_URN',
Custom = 'CUSTOM'
// Any other non-standard format. A pattern for the value is expected to be provided
Custom = 'CUSTOM',
// Data is stored in reversible encoded/serialized/encrypted format
Encoded = 'ENCODED',
// Data is stored in irreversible hashed format
Hashed = 'HASHED'
}
/**