index.js 423 B

123456789101112131415161718
  1. const EXPECTED_CLASS_ORDER = [
  2. 'Channel',
  3. 'ContentCategory',
  4. 'HttpMediaLocation',
  5. 'JoystreamMediaLocation',
  6. 'KnownLicense',
  7. 'Language',
  8. 'License',
  9. 'MediaLocation',
  10. 'UserDefinedLicense',
  11. 'Video',
  12. 'VideoMedia',
  13. 'VideoMediaEncoding',
  14. 'FeaturedVideo',
  15. ]
  16. // Exports class input jsons in a predictable order
  17. module.exports = EXPECTED_CLASS_ORDER.map((className) => require(`./${className}Class.json`))