Skip to content

Commit

Permalink
Reran generator
Browse files Browse the repository at this point in the history
  • Loading branch information
osmestad committed May 10, 2024
1 parent 4615215 commit 00af33c
Showing 1 changed file with 28 additions and 23 deletions.
51 changes: 28 additions & 23 deletions packages/catalogue/src/catalogueAPI.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -567,36 +567,23 @@ export interface components {
* @example 75623239
*/
id: string;
/**
* @description Version of the album's item; complements title
* @example Kill Jay Z
*/
version: string;
/**
* Format: int32
* @description Duration (in seconds)
* @example 30
*/
duration: number;
/**
* @description Version of the album's item; complements title
* @example Kill Jay Z
*/
version: string;
album: components["schemas"]["Simple Album"];
/**
* @description Title
* @example Kill Jay Z
*/
title: string;
/**
* @description Copyright information
* @example (p)(c) 2017 S. CARTER ENTERPRISES, LLC. MARKETED BY ROC NATION & DISTRIBUTED BY ROC NATION/UMG RECORDINGS INC.
*/
copyright: string;
/** @description Contributing artists */
artists?: components["schemas"]["Simple Artist"][];
/**
* Format: double
* @description Artist popularity (ranged in 0.00 ... 1.00). Conditionally visible
* @example 0.56
*/
popularity: number;
/**
* @description ISRC code
* @example TIDAL2274
Expand All @@ -614,6 +601,19 @@ export interface components {
* @example 30
*/
volumeNumber: number;
/**
* @description Copyright information
* @example (p)(c) 2017 S. CARTER ENTERPRISES, LLC. MARKETED BY ROC NATION & DISTRIBUTED BY ROC NATION/UMG RECORDINGS INC.
*/
copyright: string;
/** @description Contributing artists */
artists?: components["schemas"]["Simple Artist"][];
/**
* Format: double
* @description Track or video popularity (ranged in 0.00 ... 1.00). Conditionally visible
* @example 0.56
*/
popularity: number;
/**
* @description Web address that can be used to access TIDAL track or video page and can also be shared with others
* @example https://tidal.com/browse/track/251380837
Expand Down Expand Up @@ -651,18 +651,18 @@ export interface components {
data?: components["schemas"]["Multi-Status Response Data:Album"][];
metadata: components["schemas"]["Multi-Status Response Metadata"];
};
/** @description Map of track-related properties. All properties are distributed across namespaces that acts as a map keys. Each namespace consists of list of related properties. The fact of the presence of a particular property effectively means that an item has this characteristic. */
"Track Properties": {
/** @example explicit */
content?: "explicit"[];
};
/** @description Map of video-related properties. All properties are distributed across namespaces that acts as a map keys. Each namespace consists of list of related properties. The fact of the presence of a particular property effectively means that an item has this characteristic. */
"Video Properties": {
/** @example live-stream */
"video-type"?: "live-stream"[];
/** @example explicit */
content?: "explicit"[];
};
/** @description Map of track-related properties. All properties are distributed across namespaces that acts as a map keys. Each namespace consists of list of related properties. The fact of the presence of a particular property effectively means that an item has this characteristic. */
"Track Properties": {
/** @example explicit */
content?: "explicit"[];
};
/** @description Map of album-related properties. All properties are distributed across namespaces that acts as a map keys. Each namespace consists of list of related properties. The fact of the presence of a particular property effectively means that an item has this characteristic. */
"Album Properties": {
/** @example explicit */
Expand Down Expand Up @@ -2590,6 +2590,11 @@ export interface operations {
* @example US
*/
countryCode: string;
/**
* @description Collapse by options for getting artist tracks. Available options: FINGERPRINT, ID. FINGERPRINT option might collapse similar tracks based item fingerprints while collapsing by ID always returns all available items.
* @example FINGERPRINT
*/
collapseBy?: "FINGERPRINT" | "ID";
/**
* @description Pagination offset (in number of items)
* @example 0
Expand Down

0 comments on commit 00af33c

Please sign in to comment.