@5stones/onix
Version:
A strongly typed library for parsing ONIX feeds.
22 lines (21 loc) • 693 B
text/typescript
// https://ns.editeur.org/onix/en/64
export enum PublishingStatus {
_00 = '00', // Unspecified
_01 = '01', // Cancelled
_02 = '02', // Forthcoming
_03 = '03', // Postponed indefinitely
_04 = '04', // Active
_05 = '05', // No longer our product
_06 = '06', // Out of stock indefinitely
_07 = '07', // Out of print
_08 = '08', // Inactive
_09 = '09', // Unknown
_10 = '10', // Remaindered
_11 = '11', // Withdrawn from sale
_12 = '12', // Recalled
_13 = '13', // Active, but not sold separately
_15 = '15', // Recalled
_16 = '16', // Temporarily withdrawn from sale
_17 = '17', // Permanently withdrawn from sale
_18 = '18', // Active, but not sold as set
}