A music player that connects to your cloud/distributed storage.
5
fork

Configure Feed

Select the types of activity you want to include in your feed.

feat: some additional fields for the `criterion` definition

+3
+3
src/definitions/output/playlistItem.json
··· 12 12 "createdAt": { "type": "string", "format": "datetime" }, 13 13 "criteria": { 14 14 "type": "array", 15 + "description": "Criteria for matching this item against a set of tracks", 15 16 "items": { "type": "ref", "ref": "#criterion" } 16 17 }, 17 18 "playlist": { "type": "string", "description": "The name of the playlist" }, ··· 27 28 "type": "object", 28 29 "required": ["field", "value"], 29 30 "properties": { 31 + "amount": { "type": "integer", "minimum": 0 }, 30 32 "field": { "type": "string" }, 33 + "mode": { "type": "string", "knownValues": ["include", "exclude"], "default": "include" }, 31 34 "transformations": { 32 35 "type": "array", 33 36 "items": { "type": "ref", "ref": "#transformation" }