Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion discovery-provider/src/api/v1/models/tracks.py
Original file line numberDiff line numberDiff line change
Expand Up@@ -83,6 +83,7 @@
"description": fields.String,
"genre": fields.String,
"id": fields.String(required=True),
"track_cid": fields.String(allow_null=True),
"mood": fields.String,
"release_date": fields.String,
"remix_of": fields.Nested(remix_parent),
Expand DownExpand Up@@ -131,7 +132,6 @@
"cover_art": fields.String,
"remix_of": fields.Nested(full_remix_parent),
"is_available": fields.Boolean,
"track_cid": fields.String(allow_null=True),
"is_premium": fields.Boolean,
"premium_conditions": fields.Raw(allow_null=True),
"premium_content_signature": fields.Nested(
Expand Down
6 changes: 6 additions & 0 deletions libs/src/sdk/api/generated/default/models/Track.ts
Original file line numberDiff line numberDiff line change
Expand Up@@ -68,6 +68,12 @@ export interface Track
* @type {string}
* @memberof Track
*/
track_cid?: string;
/**
*
* @type {string}
* @memberof Track
*/
mood?: string;
/**
*
Expand Down
12 changes: 6 additions & 6 deletions libs/src/sdk/api/generated/full/models/TrackFull.ts
Original file line numberDiff line numberDiff line change
Expand Up@@ -110,6 +110,12 @@ export interface TrackFull
* @type {string}
* @memberof TrackFull
*/
track_cid?: string;
/**
*
* @type {string}
* @memberof TrackFull
*/
mood?: string;
/**
*
Expand DownExpand Up@@ -323,12 +329,6 @@ export interface TrackFull
is_available?: boolean;
/**
*
* @type {string}
* @memberof TrackFull
*/
track_cid?: string;
/**
*
* @type {boolean}
* @memberof TrackFull
*/
Expand Down