@tidal-music/api 0.10.0 → 0.12.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.d.ts +985 -137
- package/package.json +2 -2
package/dist/index.d.ts
CHANGED
|
@@ -3,6 +3,67 @@ import { CredentialsProvider } from '@tidal-music/common';
|
|
|
3
3
|
|
|
4
4
|
export declare interface components {
|
|
5
5
|
schemas: {
|
|
6
|
+
AcceptedTermsCreateOperation_Payload: {
|
|
7
|
+
data: components["schemas"]["AcceptedTermsCreateOperation_Payload_Data"];
|
|
8
|
+
};
|
|
9
|
+
AcceptedTermsCreateOperation_Payload_Data: {
|
|
10
|
+
relationships: components["schemas"]["AcceptedTermsCreateOperation_Payload_Data_Relationships"];
|
|
11
|
+
/** @enum {string} */
|
|
12
|
+
type: "acceptedTerms";
|
|
13
|
+
};
|
|
14
|
+
AcceptedTermsCreateOperation_Payload_Data_Relationships: {
|
|
15
|
+
terms: components["schemas"]["AcceptedTermsCreateOperation_Payload_Data_Relationships_Terms"];
|
|
16
|
+
};
|
|
17
|
+
AcceptedTermsCreateOperation_Payload_Data_Relationships_Terms: {
|
|
18
|
+
data: components["schemas"]["AcceptedTermsCreateOperation_Payload_Data_Relationships_Terms_Data"];
|
|
19
|
+
};
|
|
20
|
+
AcceptedTermsCreateOperation_Payload_Data_Relationships_Terms_Data: {
|
|
21
|
+
id: string;
|
|
22
|
+
/** @enum {string} */
|
|
23
|
+
type: "terms";
|
|
24
|
+
};
|
|
25
|
+
AcceptedTerms_Attributes: {
|
|
26
|
+
/** Format: date-time */
|
|
27
|
+
createdAt: string;
|
|
28
|
+
};
|
|
29
|
+
AcceptedTerms_Multi_Relationship_Data_Document: {
|
|
30
|
+
data?: components["schemas"]["Resource_Identifier"][];
|
|
31
|
+
included?: components["schemas"]["Included"];
|
|
32
|
+
links: components["schemas"]["Links"];
|
|
33
|
+
};
|
|
34
|
+
AcceptedTerms_Multi_Resource_Data_Document: {
|
|
35
|
+
data: components["schemas"]["AcceptedTerms_Resource_Object"][];
|
|
36
|
+
included?: components["schemas"]["Included"];
|
|
37
|
+
links: components["schemas"]["Links"];
|
|
38
|
+
};
|
|
39
|
+
AcceptedTerms_Relationships: {
|
|
40
|
+
owners?: components["schemas"]["Multi_Relationship_Data_Document"];
|
|
41
|
+
terms?: components["schemas"]["Single_Relationship_Data_Document"];
|
|
42
|
+
};
|
|
43
|
+
AcceptedTerms_Resource_Object: {
|
|
44
|
+
attributes?: components["schemas"]["AcceptedTerms_Attributes"];
|
|
45
|
+
/**
|
|
46
|
+
* @description Resource id
|
|
47
|
+
* @example 12345
|
|
48
|
+
*/
|
|
49
|
+
id: string;
|
|
50
|
+
relationships?: components["schemas"]["AcceptedTerms_Relationships"];
|
|
51
|
+
/**
|
|
52
|
+
* @description Resource type (enum property replaced by openapi-typescript)
|
|
53
|
+
* @enum {string}
|
|
54
|
+
*/
|
|
55
|
+
type: "acceptedTerms";
|
|
56
|
+
};
|
|
57
|
+
AcceptedTerms_Single_Relationship_Data_Document: {
|
|
58
|
+
data?: components["schemas"]["Resource_Identifier"];
|
|
59
|
+
included?: components["schemas"]["Included"];
|
|
60
|
+
links: components["schemas"]["Links"];
|
|
61
|
+
};
|
|
62
|
+
AcceptedTerms_Single_Resource_Data_Document: {
|
|
63
|
+
data: components["schemas"]["AcceptedTerms_Resource_Object"];
|
|
64
|
+
included?: components["schemas"]["Included"];
|
|
65
|
+
links: components["schemas"]["Links"];
|
|
66
|
+
};
|
|
6
67
|
AlbumStatistics_Attributes: {
|
|
7
68
|
/**
|
|
8
69
|
* Format: int32
|
|
@@ -304,6 +365,7 @@ export declare interface components {
|
|
|
304
365
|
owners?: components["schemas"]["Multi_Relationship_Data_Document"];
|
|
305
366
|
priceConfig?: components["schemas"]["Single_Relationship_Data_Document"];
|
|
306
367
|
providers?: components["schemas"]["Multi_Relationship_Data_Document"];
|
|
368
|
+
replacement?: components["schemas"]["Single_Relationship_Data_Document"];
|
|
307
369
|
similarAlbums?: components["schemas"]["Multi_Relationship_Data_Document"];
|
|
308
370
|
suggestedCoverArts?: components["schemas"]["Albums_SuggestedCoverArts_Multi_Relationship_Data_Document"];
|
|
309
371
|
usageRules?: components["schemas"]["Single_Relationship_Data_Document"];
|
|
@@ -951,6 +1013,82 @@ export declare interface components {
|
|
|
951
1013
|
BarcodeId: {
|
|
952
1014
|
value: string;
|
|
953
1015
|
};
|
|
1016
|
+
ClientsCreateOperation_Payload: {
|
|
1017
|
+
data: components["schemas"]["ClientsCreateOperation_Payload_Data"];
|
|
1018
|
+
};
|
|
1019
|
+
ClientsCreateOperation_Payload_Data: {
|
|
1020
|
+
attributes: components["schemas"]["ClientsCreateOperation_Payload_Data_Attributes"];
|
|
1021
|
+
/** @enum {string} */
|
|
1022
|
+
type: "clients";
|
|
1023
|
+
};
|
|
1024
|
+
ClientsCreateOperation_Payload_Data_Attributes: {
|
|
1025
|
+
description?: string;
|
|
1026
|
+
name: string;
|
|
1027
|
+
};
|
|
1028
|
+
ClientsUpdateOperation_Payload: {
|
|
1029
|
+
data: components["schemas"]["ClientsUpdateOperation_Payload_Data"];
|
|
1030
|
+
};
|
|
1031
|
+
ClientsUpdateOperation_Payload_Data: {
|
|
1032
|
+
attributes: components["schemas"]["ClientsUpdateOperation_Payload_Data_Attributes"];
|
|
1033
|
+
id: string;
|
|
1034
|
+
/** @enum {string} */
|
|
1035
|
+
type: "clients";
|
|
1036
|
+
};
|
|
1037
|
+
ClientsUpdateOperation_Payload_Data_Attributes: {
|
|
1038
|
+
description?: string;
|
|
1039
|
+
enabled?: boolean;
|
|
1040
|
+
name?: string;
|
|
1041
|
+
/** @enum {string} */
|
|
1042
|
+
platformPreset?: "NONE" | "WEB" | "ANDROID" | "IOS";
|
|
1043
|
+
redirectUris?: string[];
|
|
1044
|
+
scopes?: string[];
|
|
1045
|
+
};
|
|
1046
|
+
Clients_Attributes: {
|
|
1047
|
+
/** @enum {string} */
|
|
1048
|
+
accessTier: "THIRD_PARTY" | "THIRD_PARTY_PROD" | "PARTNER" | "INTERNAL";
|
|
1049
|
+
clientSecret?: string;
|
|
1050
|
+
/** Format: date-time */
|
|
1051
|
+
createdAt?: string;
|
|
1052
|
+
description?: string;
|
|
1053
|
+
enabled?: boolean;
|
|
1054
|
+
name: string;
|
|
1055
|
+
/** @enum {string} */
|
|
1056
|
+
platformPreset?: "NONE" | "WEB" | "ANDROID" | "IOS";
|
|
1057
|
+
redirectUris?: string[];
|
|
1058
|
+
scopes?: string[];
|
|
1059
|
+
};
|
|
1060
|
+
Clients_Multi_Relationship_Data_Document: {
|
|
1061
|
+
data?: components["schemas"]["Resource_Identifier"][];
|
|
1062
|
+
included?: components["schemas"]["Included"];
|
|
1063
|
+
links: components["schemas"]["Links"];
|
|
1064
|
+
};
|
|
1065
|
+
Clients_Multi_Resource_Data_Document: {
|
|
1066
|
+
data: components["schemas"]["Clients_Resource_Object"][];
|
|
1067
|
+
included?: components["schemas"]["Included"];
|
|
1068
|
+
links: components["schemas"]["Links"];
|
|
1069
|
+
};
|
|
1070
|
+
Clients_Relationships: {
|
|
1071
|
+
owners?: components["schemas"]["Multi_Relationship_Data_Document"];
|
|
1072
|
+
};
|
|
1073
|
+
Clients_Resource_Object: {
|
|
1074
|
+
attributes?: components["schemas"]["Clients_Attributes"];
|
|
1075
|
+
/**
|
|
1076
|
+
* @description Resource id
|
|
1077
|
+
* @example 12345
|
|
1078
|
+
*/
|
|
1079
|
+
id: string;
|
|
1080
|
+
relationships?: components["schemas"]["Clients_Relationships"];
|
|
1081
|
+
/**
|
|
1082
|
+
* @description Resource type (enum property replaced by openapi-typescript)
|
|
1083
|
+
* @enum {string}
|
|
1084
|
+
*/
|
|
1085
|
+
type: "clients";
|
|
1086
|
+
};
|
|
1087
|
+
Clients_Single_Resource_Data_Document: {
|
|
1088
|
+
data: components["schemas"]["Clients_Resource_Object"];
|
|
1089
|
+
included?: components["schemas"]["Included"];
|
|
1090
|
+
links: components["schemas"]["Links"];
|
|
1091
|
+
};
|
|
954
1092
|
CommentsCreateOperation_Payload: {
|
|
955
1093
|
data: components["schemas"]["CommentsCreateOperation_Payload_Data"];
|
|
956
1094
|
};
|
|
@@ -1348,6 +1486,7 @@ export declare interface components {
|
|
|
1348
1486
|
certificateUrl?: string;
|
|
1349
1487
|
/** @enum {string} */
|
|
1350
1488
|
drmSystem?: "FAIRPLAY" | "WIDEVINE";
|
|
1489
|
+
initData?: string[];
|
|
1351
1490
|
licenseUrl?: string;
|
|
1352
1491
|
};
|
|
1353
1492
|
DspSharingLinks_Attributes: {
|
|
@@ -1405,13 +1544,13 @@ export declare interface components {
|
|
|
1405
1544
|
* @example HORIZONTAL_LIST
|
|
1406
1545
|
* @enum {string}
|
|
1407
1546
|
*/
|
|
1408
|
-
moduleType: "ARTIST_LIST" | "COMPACT_GRID_CARD" | "COMPACT_HORIZONTAL_LIST" | "COMPACT_HORIZONTAL_LIST_WITH_CONTEXT" | "FEATURED_CARD" | "GRID_CARD" | "GRID_CARD_WITH_CONTEXT" | "GRID_HIGHLIGHT_CARD" | "HORIZONTAL_LIST" | "HORIZONTAL_LIST_WITH_CONTEXT" | "SHORTCUT_LIST" | "TRACK_LIST" | "VERTICAL_LIST_CARD" | "TEXT_CARD" | "LINKS_LIST" | "PUBLIC_PLAYLIST_LIST";
|
|
1547
|
+
moduleType: "ARTIST_LIST" | "COMPACT_GRID_CARD" | "COMPACT_HORIZONTAL_LIST" | "COMPACT_HORIZONTAL_LIST_WITH_CONTEXT" | "FEATURED_CARD" | "GRID_CARD" | "GRID_CARD_WITH_CONTEXT" | "GRID_HIGHLIGHT_CARD" | "ANNIVERSARY_CARD" | "ARTIST_BIRTHDAY_CARD" | "ARTIST_MEMORIAM_CARD" | "ARTIST_TRACK_CREDITS_CARD" | "PILL_LIST" | "VERTICAL_LIST" | "HORIZONTAL_LIST" | "HORIZONTAL_LIST_WITH_CONTEXT" | "SHORTCUT_LIST" | "TRACK_LIST" | "VERTICAL_LIST_CARD" | "TEXT_CARD" | "LINKS_LIST" | "PUBLIC_PLAYLIST_LIST";
|
|
1409
1548
|
/**
|
|
1410
1549
|
* @description Type of source represented by the module
|
|
1411
1550
|
* @example SHORTCUTS
|
|
1412
1551
|
* @enum {string}
|
|
1413
1552
|
*/
|
|
1414
|
-
sourceType: "ALBUM_RECOMMENDATIONS" | "BECAUSE_YOU_LISTENED_TO_ALBUM" | "BECAUSE_YOU_ADDED_ALBUM" | "BECAUSE_YOU_ADDED_ARTIST" | "CONTINUE_LISTEN_TO" | "DAILY_MIXES" | "FORGOTTEN_FAVORITES" | "GENRE_MIXES" | "HISTORY_MIXES" | "LOCAL_PLAYLISTS" | "MY_PLAYLISTS" | "NEW_ALBUM_SUGGESTIONS" | "NEW_TRACK_SUGGESTIONS" | "NEW_ALBUMS" | "NEW_TRACKS" | "POPULAR_PLAYLISTS" | "RECENTLY_UPDATED_FAVORITED_PLAYLIST" | "RECOMMENDED_USERS_PLAYLISTS" | "SUGGESTED_ESSENTIAL_PLAYLISTS" | "SUGGESTED_RADIOS_MIXES" | "WELCOME_MIX" | "YOUR_FAVORITE_ARTISTS" | "UPLOADS_FOR_YOU" | "LATEST_SPOTLIGHTED_TRACKS" | "SHORTCUTS" | "ARTIST_TOP_TRACKS" | "ARTIST_SPOTLIGHTED_TRACKS" | "ARTIST_ALBUMS" | "ARTIST_TOP_SINGLES" | "ARTIST_COMPILATIONS" | "ARTIST_LIVE_ALBUMS" | "ARTIST_APPEARS_ON" | "ARTIST_PLAYLIST" | "ARTIST_PUBLIC_PLAYLIST" | "ARTIST_SIMILAR_ARTISTS" | "ARTIST_TRACK_UPLOADS" | "ARTIST_LINKS" | "ARTIST_VIDEOS" | "ARTIST_CREDITS" | "ALBUM_ITEMS" | "ALBUM_ANNIVERSARY" | "ARTIST_BIRTHDAY" | "ARTIST_MEMORIAM" | "DJ_TOOLS" | "DJ_ARTIST_CURATED" | "THE_HITS" | "FROM_OUR_EDITORS" | "TOP_PLAYLISTS" | "FEATURED_TOP_TRACKS" | "FEATURED_TOP_ALBUMS" | "TOP_ARTISTS_ESSENTIALS" | "FEATURED_RECOMMENDED_PLAYLISTS" | "HOME_3_FEATURED_PLAYLISTS" | "HOME_3_FEATURED_UPLOAD_TRACKS" | "HOME_3_FEATURED_ALBUMS" | "POPULAR_ALBUMS" | "POPULAR_ARTISTS" | "POPULAR_MIXES" | "FEATURED_RECOMMENDED_TRACKS" | "FEATURED_RECOMMENDED_ALBUMS" | "FEATURED_RECOMMENDED_CLASSIC_ALBUMS" | "BACK_TO_SCHOOL_MUSIC_101" | "BACK_TO_SCHOOL_GENRES_FOR_BEGINNERS" | "HEADLINERS_2026" | "HOME_3_0_GENERIC_PLAYLISTS_1" | "HOME_3_0_GENERIC_PLAYLISTS_2" | "HOME_3_0_GENERIC_ALBUMS_1" | "HOME_3_0_GENERIC_TRACKS_1" | "HOME_3_0_GENERIC_ARTISTS_1" | "HOME_3_0_GENERIC_VIDEOS_1" | "BASED_ON_YOUR_INTERESTS_1" | "BASED_ON_YOUR_INTERESTS_2" | "UPLOAD_PAGE_SPOTLIGHTED_PLAYLISTS" | "UPLOAD_PAGE_PAYGATED_ALBUMS" | "UPLOAD_PAGE_ALBUMS" | "UNKNOWN";
|
|
1553
|
+
sourceType: "ALBUM_RECOMMENDATIONS" | "BECAUSE_YOU_LISTENED_TO_ALBUM" | "BECAUSE_YOU_ADDED_ALBUM" | "BECAUSE_YOU_ADDED_ARTIST" | "CONTINUE_LISTEN_TO" | "DAILY_MIXES" | "FORGOTTEN_FAVORITES" | "GENRE_MIXES" | "HISTORY_MIXES" | "LOCAL_PLAYLISTS" | "MY_PLAYLISTS" | "NEW_ALBUM_SUGGESTIONS" | "NEW_TRACK_SUGGESTIONS" | "NEW_ALBUMS" | "NEW_TRACKS" | "POPULAR_PLAYLISTS" | "RECENTLY_UPDATED_FAVORITED_PLAYLIST" | "RECOMMENDED_USERS_PLAYLISTS" | "SUGGESTED_ESSENTIAL_PLAYLISTS" | "SUGGESTED_RADIOS_MIXES" | "WELCOME_MIX" | "YOUR_FAVORITE_ARTISTS" | "UPLOADS_FOR_YOU" | "LATEST_SPOTLIGHTED_TRACKS" | "SHORTCUTS" | "ARTIST_TOP_TRACKS" | "ARTIST_SPOTLIGHTED_TRACKS" | "ARTIST_ALBUMS" | "ARTIST_TOP_SINGLES" | "ARTIST_COMPILATIONS" | "ARTIST_LIVE_ALBUMS" | "ARTIST_APPEARS_ON" | "ARTIST_PLAYLIST" | "ARTIST_PUBLIC_PLAYLIST" | "ARTIST_SIMILAR_ARTISTS" | "ARTIST_TRACK_UPLOADS" | "ARTIST_LINKS" | "ARTIST_VIDEOS" | "ARTIST_CREDITS" | "ALBUM_ITEMS" | "ALBUM_ANNIVERSARY" | "ARTIST_BIRTHDAY" | "ARTIST_MEMORIAM" | "DJ_TOOLS" | "DJ_ARTIST_CURATED" | "THE_HITS" | "FROM_OUR_EDITORS" | "TOP_PLAYLISTS" | "FEATURED_TOP_TRACKS" | "FEATURED_TOP_ALBUMS" | "TOP_ARTISTS_ESSENTIALS" | "FEATURED_RECOMMENDED_PLAYLISTS" | "HOME_3_FEATURED_PLAYLISTS" | "HOME_3_FEATURED_UPLOAD_TRACKS" | "HOME_3_FEATURED_ALBUMS" | "POPULAR_ALBUMS" | "POPULAR_ARTISTS" | "POPULAR_MIXES" | "FEATURED_RECOMMENDED_TRACKS" | "FEATURED_RECOMMENDED_ALBUMS" | "FEATURED_RECOMMENDED_CLASSIC_ALBUMS" | "BACK_TO_SCHOOL_MUSIC_101" | "BACK_TO_SCHOOL_GENRES_FOR_BEGINNERS" | "HEADLINERS_2026" | "HOME_3_0_GENERIC_PLAYLISTS_1" | "HOME_3_0_GENERIC_PLAYLISTS_2" | "HOME_3_0_GENERIC_ALBUMS_1" | "HOME_3_0_GENERIC_TRACKS_1" | "HOME_3_0_GENERIC_ARTISTS_1" | "HOME_3_0_GENERIC_VIDEOS_1" | "STAFF_PICKS_PAGE_ALBUMS_WE_LOVE" | "STAFF_PICKS_PAGE_EXPLORE" | "STAFF_PICKS_PAGE_FAVORITE_SONGS" | "STAFF_PICKS_PAGE_RECENTLY_UPDATED_PLAYLISTS" | "STAFF_PICKS_PAGE_TIDAL_NEWS_MAGAZINE" | "STAFF_PICKS_PAGE_WHAT_LISTENING_TO" | "BASED_ON_YOUR_INTERESTS_1" | "BASED_ON_YOUR_INTERESTS_2" | "UPLOAD_PAGE_SPOTLIGHTED_PLAYLISTS" | "UPLOAD_PAGE_PAYGATED_ALBUMS" | "UPLOAD_PAGE_ALBUMS" | "TOP_UPLOADERS" | "UPLOAD_PAGE_ARTISTS" | "UPLOAD_PAGE_FEATURED_MAGAZINE" | "EXPLORE_DECADES" | "EXPLORE_GENRES" | "EXPLORE_MOODS" | "UNKNOWN";
|
|
1415
1554
|
/**
|
|
1416
1555
|
* @description Subtitle of the module
|
|
1417
1556
|
* @example Short description of this module
|
|
@@ -1637,7 +1776,7 @@ export declare interface components {
|
|
|
1637
1776
|
status: string;
|
|
1638
1777
|
}[];
|
|
1639
1778
|
};
|
|
1640
|
-
Included: (components["schemas"]["AlbumStatistics_Resource_Object"] | components["schemas"]["Albums_Resource_Object"] | components["schemas"]["Appreciations_Resource_Object"] | components["schemas"]["ArtistBiographies_Resource_Object"] | components["schemas"]["ArtistClaims_Resource_Object"] | components["schemas"]["ArtistRoles_Resource_Object"] | components["schemas"]["Artists_Resource_Object"] | components["schemas"]["Artworks_Resource_Object"] | components["schemas"]["Comments_Resource_Object"] | components["schemas"]["ContentClaims_Resource_Object"] | components["schemas"]["Credits_Resource_Object"] | components["schemas"]["Downloads_Resource_Object"] | components["schemas"]["DspSharingLinks_Resource_Object"] | components["schemas"]["DynamicModules_Resource_Object"] | components["schemas"]["DynamicPages_Resource_Object"] | components["schemas"]["Genres_Resource_Object"] | components["schemas"]["Installations_Resource_Object"] | components["schemas"]["Lyrics_Resource_Object"] | components["schemas"]["ManualArtistClaims_Resource_Object"] | components["schemas"]["OfflineTasks_Resource_Object"] | components["schemas"]["PlayQueues_Resource_Object"] | components["schemas"]["Playlists_Resource_Object"] | components["schemas"]["PriceConfigurations_Resource_Object"] | components["schemas"]["Providers_Resource_Object"] | components["schemas"]["Reactions_Resource_Object"] | components["schemas"]["SavedShares_Resource_Object"] | components["schemas"]["SearchResults_Resource_Object"] | components["schemas"]["SearchSuggestions_Resource_Object"] | components["schemas"]["Shares_Resource_Object"] | components["schemas"]["StripeConnections_Resource_Object"] | components["schemas"]["StripeDashboardLinks_Resource_Object"] | components["schemas"]["TrackFiles_Resource_Object"] | components["schemas"]["TrackManifests_Resource_Object"] | components["schemas"]["TrackSourceFiles_Resource_Object"] | components["schemas"]["TrackStatistics_Resource_Object"] | components["schemas"]["Tracks_Resource_Object"] | components["schemas"]["TracksMetadataStatus_Resource_Object"] | components["schemas"]["UsageRules_Resource_Object"] | components["schemas"]["UserCollectionAlbums_Resource_Object"] | components["schemas"]["UserCollectionArtists_Resource_Object"] | components["schemas"]["UserCollectionFolders_Resource_Object"] | components["schemas"]["UserCollectionPlaylists_Resource_Object"] | components["schemas"]["UserCollectionTracks_Resource_Object"] | components["schemas"]["UserCollectionVideos_Resource_Object"] | components["schemas"]["UserCollections_Resource_Object"] | components["schemas"]["UserDataExportRequests_Resource_Object"] | components["schemas"]["UserRecommendations_Resource_Object"] | components["schemas"]["UserReports_Resource_Object"] | components["schemas"]["Users_Resource_Object"] | components["schemas"]["VideoManifests_Resource_Object"] | components["schemas"]["Videos_Resource_Object"])[];
|
|
1779
|
+
Included: (components["schemas"]["AcceptedTerms_Resource_Object"] | components["schemas"]["AlbumStatistics_Resource_Object"] | components["schemas"]["Albums_Resource_Object"] | components["schemas"]["Appreciations_Resource_Object"] | components["schemas"]["ArtistBiographies_Resource_Object"] | components["schemas"]["ArtistClaims_Resource_Object"] | components["schemas"]["ArtistRoles_Resource_Object"] | components["schemas"]["Artists_Resource_Object"] | components["schemas"]["Artworks_Resource_Object"] | components["schemas"]["Clients_Resource_Object"] | components["schemas"]["Comments_Resource_Object"] | components["schemas"]["ContentClaims_Resource_Object"] | components["schemas"]["Credits_Resource_Object"] | components["schemas"]["Downloads_Resource_Object"] | components["schemas"]["DspSharingLinks_Resource_Object"] | components["schemas"]["DynamicModules_Resource_Object"] | components["schemas"]["DynamicPages_Resource_Object"] | components["schemas"]["Genres_Resource_Object"] | components["schemas"]["Installations_Resource_Object"] | components["schemas"]["Lyrics_Resource_Object"] | components["schemas"]["ManualArtistClaims_Resource_Object"] | components["schemas"]["OfflineTasks_Resource_Object"] | components["schemas"]["PlayQueues_Resource_Object"] | components["schemas"]["Playlists_Resource_Object"] | components["schemas"]["PriceConfigurations_Resource_Object"] | components["schemas"]["Providers_Resource_Object"] | components["schemas"]["Reactions_Resource_Object"] | components["schemas"]["SavedShares_Resource_Object"] | components["schemas"]["SearchResults_Resource_Object"] | components["schemas"]["SearchSuggestions_Resource_Object"] | components["schemas"]["Shares_Resource_Object"] | components["schemas"]["StripeConnections_Resource_Object"] | components["schemas"]["StripeDashboardLinks_Resource_Object"] | components["schemas"]["Terms_Resource_Object"] | components["schemas"]["TrackFiles_Resource_Object"] | components["schemas"]["TrackManifests_Resource_Object"] | components["schemas"]["TrackSourceFiles_Resource_Object"] | components["schemas"]["TrackStatistics_Resource_Object"] | components["schemas"]["Tracks_Resource_Object"] | components["schemas"]["TracksMetadataStatus_Resource_Object"] | components["schemas"]["UsageRules_Resource_Object"] | components["schemas"]["UserCollectionAlbums_Resource_Object"] | components["schemas"]["UserCollectionArtists_Resource_Object"] | components["schemas"]["UserCollectionFolders_Resource_Object"] | components["schemas"]["UserCollectionPlaylists_Resource_Object"] | components["schemas"]["UserCollectionTracks_Resource_Object"] | components["schemas"]["UserCollectionVideos_Resource_Object"] | components["schemas"]["UserCollections_Resource_Object"] | components["schemas"]["UserDataExportRequests_Resource_Object"] | components["schemas"]["UserRecommendations_Resource_Object"] | components["schemas"]["UserReports_Resource_Object"] | components["schemas"]["Users_Resource_Object"] | components["schemas"]["VideoManifests_Resource_Object"] | components["schemas"]["Videos_Resource_Object"])[];
|
|
1641
1780
|
InstallationsCreateOperation_Payload: {
|
|
1642
1781
|
data: components["schemas"]["InstallationsCreateOperation_Payload_Data"];
|
|
1643
1782
|
};
|
|
@@ -1882,6 +2021,7 @@ export declare interface components {
|
|
|
1882
2021
|
selectedAlbums?: string[];
|
|
1883
2022
|
selectedSingles?: string[];
|
|
1884
2023
|
socialLink?: components["schemas"]["Link_Object"];
|
|
2024
|
+
upcs?: string[];
|
|
1885
2025
|
websiteOrSocialLink: components["schemas"]["Link_Object"];
|
|
1886
2026
|
};
|
|
1887
2027
|
ManualArtistClaims_Attributes: {
|
|
@@ -1931,6 +2071,8 @@ export declare interface components {
|
|
|
1931
2071
|
* @enum {string}
|
|
1932
2072
|
*/
|
|
1933
2073
|
status?: "SUBMITTED" | "PENDING" | "APPROVED" | "REJECTED";
|
|
2074
|
+
/** @description UPCs associated with the claim */
|
|
2075
|
+
upcs?: string[];
|
|
1934
2076
|
websiteOrSocialLink: components["schemas"]["Link_Object"];
|
|
1935
2077
|
};
|
|
1936
2078
|
ManualArtistClaims_Multi_Resource_Data_Document: {
|
|
@@ -3023,6 +3165,35 @@ export declare interface components {
|
|
|
3023
3165
|
included?: components["schemas"]["Included"];
|
|
3024
3166
|
links: components["schemas"]["Links"];
|
|
3025
3167
|
};
|
|
3168
|
+
Terms_Attributes: {
|
|
3169
|
+
contentMarkdown: string;
|
|
3170
|
+
/** @enum {string} */
|
|
3171
|
+
termsType: "DEVELOPER";
|
|
3172
|
+
termsVersion: string;
|
|
3173
|
+
};
|
|
3174
|
+
Terms_Multi_Resource_Data_Document: {
|
|
3175
|
+
data: components["schemas"]["Terms_Resource_Object"][];
|
|
3176
|
+
included?: components["schemas"]["Included"];
|
|
3177
|
+
links: components["schemas"]["Links"];
|
|
3178
|
+
};
|
|
3179
|
+
Terms_Resource_Object: {
|
|
3180
|
+
attributes?: components["schemas"]["Terms_Attributes"];
|
|
3181
|
+
/**
|
|
3182
|
+
* @description Resource id
|
|
3183
|
+
* @example 12345
|
|
3184
|
+
*/
|
|
3185
|
+
id: string;
|
|
3186
|
+
/**
|
|
3187
|
+
* @description Resource type (enum property replaced by openapi-typescript)
|
|
3188
|
+
* @enum {string}
|
|
3189
|
+
*/
|
|
3190
|
+
type: "terms";
|
|
3191
|
+
};
|
|
3192
|
+
Terms_Single_Resource_Data_Document: {
|
|
3193
|
+
data: components["schemas"]["Terms_Resource_Object"];
|
|
3194
|
+
included?: components["schemas"]["Included"];
|
|
3195
|
+
links: components["schemas"]["Links"];
|
|
3196
|
+
};
|
|
3026
3197
|
ThirdPartyLyricsProvider: Omit<WithRequired<components["schemas"]["LyricsProvider"], "name">, "source"> & {
|
|
3027
3198
|
commonTrackId: string;
|
|
3028
3199
|
lyricsId: string;
|
|
@@ -5012,7 +5183,7 @@ export declare function createAPIClient(credentialsProvider: CredentialsProvider
|
|
|
5012
5183
|
* Do not make direct changes to the file.
|
|
5013
5184
|
*/
|
|
5014
5185
|
declare interface paths {
|
|
5015
|
-
"/
|
|
5186
|
+
"/acceptedTerms": {
|
|
5016
5187
|
parameters: {
|
|
5017
5188
|
query?: never;
|
|
5018
5189
|
header?: never;
|
|
@@ -5020,19 +5191,23 @@ declare interface paths {
|
|
|
5020
5191
|
cookie?: never;
|
|
5021
5192
|
};
|
|
5022
5193
|
/**
|
|
5023
|
-
* Get multiple
|
|
5024
|
-
* @description Retrieves multiple
|
|
5194
|
+
* Get multiple acceptedTerms.
|
|
5195
|
+
* @description Retrieves multiple acceptedTerms by available filters, or without if applicable.
|
|
5025
5196
|
*/
|
|
5026
5197
|
get: {
|
|
5027
5198
|
parameters: {
|
|
5028
5199
|
query?: {
|
|
5029
5200
|
/**
|
|
5030
|
-
* @description Allows the client to customize which related resources should be returned. Available options: owners
|
|
5201
|
+
* @description Allows the client to customize which related resources should be returned. Available options: owners, terms
|
|
5031
5202
|
* @example owners
|
|
5032
5203
|
*/
|
|
5033
5204
|
include?: string[];
|
|
5034
|
-
/** @description
|
|
5035
|
-
"filter[id]"?: string[];
|
|
5205
|
+
/** @description User id. Use `me` for the authenticated user */
|
|
5206
|
+
"filter[owners.id]"?: string[];
|
|
5207
|
+
/** @description Filter by terms.isLatestVersion */
|
|
5208
|
+
"filter[terms.isLatestVersion]"?: string[];
|
|
5209
|
+
/** @description One of: DEVELOPER (e.g. `DEVELOPER`) */
|
|
5210
|
+
"filter[terms.termsType]"?: "DEVELOPER"[];
|
|
5036
5211
|
};
|
|
5037
5212
|
header?: never;
|
|
5038
5213
|
path?: never;
|
|
@@ -5046,7 +5221,7 @@ declare interface paths {
|
|
|
5046
5221
|
[name: string]: unknown;
|
|
5047
5222
|
};
|
|
5048
5223
|
content: {
|
|
5049
|
-
"application/vnd.api+json": components["schemas"]["
|
|
5224
|
+
"application/vnd.api+json": components["schemas"]["AcceptedTerms_Multi_Resource_Data_Document"];
|
|
5050
5225
|
};
|
|
5051
5226
|
};
|
|
5052
5227
|
400: components["responses"]["Default400Response"];
|
|
@@ -5060,14 +5235,54 @@ declare interface paths {
|
|
|
5060
5235
|
};
|
|
5061
5236
|
};
|
|
5062
5237
|
put?: never;
|
|
5063
|
-
|
|
5238
|
+
/**
|
|
5239
|
+
* Create single acceptedTerm.
|
|
5240
|
+
* @description Creates a new acceptedTerm.
|
|
5241
|
+
*/
|
|
5242
|
+
post: {
|
|
5243
|
+
parameters: {
|
|
5244
|
+
query?: never;
|
|
5245
|
+
header?: {
|
|
5246
|
+
/** @description Unique idempotency key for safe retry of mutation requests. If a duplicate key is sent with the same payload, the original response is replayed. If the payload differs, a 422 error is returned. */
|
|
5247
|
+
"Idempotency-Key"?: components["parameters"]["IdempotencyKey"];
|
|
5248
|
+
};
|
|
5249
|
+
path?: never;
|
|
5250
|
+
cookie?: never;
|
|
5251
|
+
};
|
|
5252
|
+
requestBody?: {
|
|
5253
|
+
content: {
|
|
5254
|
+
"application/vnd.api+json": components["schemas"]["AcceptedTermsCreateOperation_Payload"];
|
|
5255
|
+
};
|
|
5256
|
+
};
|
|
5257
|
+
responses: {
|
|
5258
|
+
/** @description Successful response */
|
|
5259
|
+
201: {
|
|
5260
|
+
headers: {
|
|
5261
|
+
[name: string]: unknown;
|
|
5262
|
+
};
|
|
5263
|
+
content: {
|
|
5264
|
+
"application/vnd.api+json": components["schemas"]["AcceptedTerms_Single_Resource_Data_Document"];
|
|
5265
|
+
};
|
|
5266
|
+
};
|
|
5267
|
+
400: components["responses"]["Default400Response"];
|
|
5268
|
+
404: components["responses"]["Default404Response"];
|
|
5269
|
+
405: components["responses"]["Default405Response"];
|
|
5270
|
+
406: components["responses"]["Default406Response"];
|
|
5271
|
+
409: components["responses"]["Idempotency409Response"];
|
|
5272
|
+
415: components["responses"]["Default415Response"];
|
|
5273
|
+
422: components["responses"]["Idempotency422Response"];
|
|
5274
|
+
429: components["responses"]["Default429Response"];
|
|
5275
|
+
500: components["responses"]["Default500Response"];
|
|
5276
|
+
503: components["responses"]["Default503Response"];
|
|
5277
|
+
};
|
|
5278
|
+
};
|
|
5064
5279
|
delete?: never;
|
|
5065
5280
|
options?: never;
|
|
5066
5281
|
head?: never;
|
|
5067
5282
|
patch?: never;
|
|
5068
5283
|
trace?: never;
|
|
5069
5284
|
};
|
|
5070
|
-
"/
|
|
5285
|
+
"/acceptedTerms/{id}/relationships/owners": {
|
|
5071
5286
|
parameters: {
|
|
5072
5287
|
query?: never;
|
|
5073
5288
|
header?: never;
|
|
@@ -5075,8 +5290,8 @@ declare interface paths {
|
|
|
5075
5290
|
cookie?: never;
|
|
5076
5291
|
};
|
|
5077
5292
|
/**
|
|
5078
|
-
* Get
|
|
5079
|
-
* @description Retrieves
|
|
5293
|
+
* Get owners relationship ("to-many").
|
|
5294
|
+
* @description Retrieves owners relationship.
|
|
5080
5295
|
*/
|
|
5081
5296
|
get: {
|
|
5082
5297
|
parameters: {
|
|
@@ -5086,12 +5301,14 @@ declare interface paths {
|
|
|
5086
5301
|
* @example owners
|
|
5087
5302
|
*/
|
|
5088
5303
|
include?: string[];
|
|
5304
|
+
/** @description Server-generated cursor value pointing a certain page of items. Optional, targets first page if not specified */
|
|
5305
|
+
"page[cursor]"?: string;
|
|
5089
5306
|
};
|
|
5090
5307
|
header?: never;
|
|
5091
5308
|
path: {
|
|
5092
5309
|
/**
|
|
5093
|
-
* @description
|
|
5094
|
-
* @example
|
|
5310
|
+
* @description Accepted terms id
|
|
5311
|
+
* @example a468bee88def
|
|
5095
5312
|
*/
|
|
5096
5313
|
id: string;
|
|
5097
5314
|
};
|
|
@@ -5105,7 +5322,7 @@ declare interface paths {
|
|
|
5105
5322
|
[name: string]: unknown;
|
|
5106
5323
|
};
|
|
5107
5324
|
content: {
|
|
5108
|
-
"application/vnd.api+json": components["schemas"]["
|
|
5325
|
+
"application/vnd.api+json": components["schemas"]["AcceptedTerms_Multi_Relationship_Data_Document"];
|
|
5109
5326
|
};
|
|
5110
5327
|
};
|
|
5111
5328
|
400: components["responses"]["Default400Response"];
|
|
@@ -5126,7 +5343,7 @@ declare interface paths {
|
|
|
5126
5343
|
patch?: never;
|
|
5127
5344
|
trace?: never;
|
|
5128
5345
|
};
|
|
5129
|
-
"/
|
|
5346
|
+
"/acceptedTerms/{id}/relationships/terms": {
|
|
5130
5347
|
parameters: {
|
|
5131
5348
|
query?: never;
|
|
5132
5349
|
header?: never;
|
|
@@ -5134,25 +5351,23 @@ declare interface paths {
|
|
|
5134
5351
|
cookie?: never;
|
|
5135
5352
|
};
|
|
5136
5353
|
/**
|
|
5137
|
-
* Get
|
|
5138
|
-
* @description Retrieves
|
|
5354
|
+
* Get terms relationship ("to-one").
|
|
5355
|
+
* @description Retrieves terms relationship.
|
|
5139
5356
|
*/
|
|
5140
5357
|
get: {
|
|
5141
5358
|
parameters: {
|
|
5142
5359
|
query?: {
|
|
5143
5360
|
/**
|
|
5144
|
-
* @description Allows the client to customize which related resources should be returned. Available options:
|
|
5145
|
-
* @example
|
|
5361
|
+
* @description Allows the client to customize which related resources should be returned. Available options: terms
|
|
5362
|
+
* @example terms
|
|
5146
5363
|
*/
|
|
5147
5364
|
include?: string[];
|
|
5148
|
-
/** @description Server-generated cursor value pointing a certain page of items. Optional, targets first page if not specified */
|
|
5149
|
-
"page[cursor]"?: string;
|
|
5150
5365
|
};
|
|
5151
5366
|
header?: never;
|
|
5152
5367
|
path: {
|
|
5153
5368
|
/**
|
|
5154
|
-
* @description
|
|
5155
|
-
* @example
|
|
5369
|
+
* @description Accepted terms id
|
|
5370
|
+
* @example a468bee88def
|
|
5156
5371
|
*/
|
|
5157
5372
|
id: string;
|
|
5158
5373
|
};
|
|
@@ -5166,7 +5381,7 @@ declare interface paths {
|
|
|
5166
5381
|
[name: string]: unknown;
|
|
5167
5382
|
};
|
|
5168
5383
|
content: {
|
|
5169
|
-
"application/vnd.api+json": components["schemas"]["
|
|
5384
|
+
"application/vnd.api+json": components["schemas"]["AcceptedTerms_Single_Relationship_Data_Document"];
|
|
5170
5385
|
};
|
|
5171
5386
|
};
|
|
5172
5387
|
400: components["responses"]["Default400Response"];
|
|
@@ -5187,7 +5402,7 @@ declare interface paths {
|
|
|
5187
5402
|
patch?: never;
|
|
5188
5403
|
trace?: never;
|
|
5189
5404
|
};
|
|
5190
|
-
"/
|
|
5405
|
+
"/albumStatistics": {
|
|
5191
5406
|
parameters: {
|
|
5192
5407
|
query?: never;
|
|
5193
5408
|
header?: never;
|
|
@@ -5195,34 +5410,19 @@ declare interface paths {
|
|
|
5195
5410
|
cookie?: never;
|
|
5196
5411
|
};
|
|
5197
5412
|
/**
|
|
5198
|
-
* Get multiple
|
|
5199
|
-
* @description Retrieves multiple
|
|
5413
|
+
* Get multiple albumStatistics.
|
|
5414
|
+
* @description Retrieves multiple albumStatistics by available filters, or without if applicable.
|
|
5200
5415
|
*/
|
|
5201
5416
|
get: {
|
|
5202
5417
|
parameters: {
|
|
5203
5418
|
query?: {
|
|
5204
|
-
/** @description Server-generated cursor value pointing a certain page of items. Optional, targets first page if not specified */
|
|
5205
|
-
"page[cursor]"?: string;
|
|
5206
|
-
/** @description Values prefixed with "-" are sorted descending; values without it are sorted ascending. */
|
|
5207
|
-
sort?: ("createdAt" | "-createdAt" | "title" | "-title")[];
|
|
5208
|
-
/**
|
|
5209
|
-
* @description ISO 3166-1 alpha-2 country code
|
|
5210
|
-
* @example US
|
|
5211
|
-
*/
|
|
5212
|
-
countryCode?: string;
|
|
5213
5419
|
/**
|
|
5214
|
-
* @description Allows the client to customize which related resources should be returned. Available options:
|
|
5215
|
-
* @example
|
|
5420
|
+
* @description Allows the client to customize which related resources should be returned. Available options: owners
|
|
5421
|
+
* @example owners
|
|
5216
5422
|
*/
|
|
5217
5423
|
include?: string[];
|
|
5218
|
-
/** @description List of
|
|
5219
|
-
"filter[barcodeId]"?: string[];
|
|
5220
|
-
/** @description Album id (e.g. `251380836`) */
|
|
5424
|
+
/** @description List of album IDs (e.g. `251380836`) */
|
|
5221
5425
|
"filter[id]"?: string[];
|
|
5222
|
-
/** @description User id. Use `me` for the authenticated user */
|
|
5223
|
-
"filter[owners.id]"?: string[];
|
|
5224
|
-
/** @description Share code that grants access to UNLISTED resources. When provided, allows non-owners to access resources that would otherwise be restricted. */
|
|
5225
|
-
shareCode?: string;
|
|
5226
5426
|
};
|
|
5227
5427
|
header?: never;
|
|
5228
5428
|
path?: never;
|
|
@@ -5236,7 +5436,7 @@ declare interface paths {
|
|
|
5236
5436
|
[name: string]: unknown;
|
|
5237
5437
|
};
|
|
5238
5438
|
content: {
|
|
5239
|
-
"application/vnd.api+json": components["schemas"]["
|
|
5439
|
+
"application/vnd.api+json": components["schemas"]["AlbumStatistics_Multi_Resource_Data_Document"];
|
|
5240
5440
|
};
|
|
5241
5441
|
};
|
|
5242
5442
|
400: components["responses"]["Default400Response"];
|
|
@@ -5250,54 +5450,73 @@ declare interface paths {
|
|
|
5250
5450
|
};
|
|
5251
5451
|
};
|
|
5252
5452
|
put?: never;
|
|
5453
|
+
post?: never;
|
|
5454
|
+
delete?: never;
|
|
5455
|
+
options?: never;
|
|
5456
|
+
head?: never;
|
|
5457
|
+
patch?: never;
|
|
5458
|
+
trace?: never;
|
|
5459
|
+
};
|
|
5460
|
+
"/albumStatistics/{id}": {
|
|
5461
|
+
parameters: {
|
|
5462
|
+
query?: never;
|
|
5463
|
+
header?: never;
|
|
5464
|
+
path?: never;
|
|
5465
|
+
cookie?: never;
|
|
5466
|
+
};
|
|
5253
5467
|
/**
|
|
5254
|
-
*
|
|
5255
|
-
* @description
|
|
5468
|
+
* Get single albumStatistic.
|
|
5469
|
+
* @description Retrieves single albumStatistic by id.
|
|
5256
5470
|
*/
|
|
5257
|
-
|
|
5471
|
+
get: {
|
|
5258
5472
|
parameters: {
|
|
5259
|
-
query?:
|
|
5260
|
-
|
|
5261
|
-
|
|
5262
|
-
|
|
5473
|
+
query?: {
|
|
5474
|
+
/**
|
|
5475
|
+
* @description Allows the client to customize which related resources should be returned. Available options: owners
|
|
5476
|
+
* @example owners
|
|
5477
|
+
*/
|
|
5478
|
+
include?: string[];
|
|
5263
5479
|
};
|
|
5264
|
-
|
|
5265
|
-
|
|
5266
|
-
|
|
5267
|
-
|
|
5268
|
-
|
|
5269
|
-
|
|
5480
|
+
header?: never;
|
|
5481
|
+
path: {
|
|
5482
|
+
/**
|
|
5483
|
+
* @description Album statistic id
|
|
5484
|
+
* @example 123456
|
|
5485
|
+
*/
|
|
5486
|
+
id: string;
|
|
5270
5487
|
};
|
|
5488
|
+
cookie?: never;
|
|
5271
5489
|
};
|
|
5490
|
+
requestBody?: never;
|
|
5272
5491
|
responses: {
|
|
5273
5492
|
/** @description Successful response */
|
|
5274
|
-
|
|
5493
|
+
200: {
|
|
5275
5494
|
headers: {
|
|
5276
5495
|
[name: string]: unknown;
|
|
5277
5496
|
};
|
|
5278
5497
|
content: {
|
|
5279
|
-
"application/vnd.api+json": components["schemas"]["
|
|
5498
|
+
"application/vnd.api+json": components["schemas"]["AlbumStatistics_Single_Resource_Data_Document"];
|
|
5280
5499
|
};
|
|
5281
5500
|
};
|
|
5282
5501
|
400: components["responses"]["Default400Response"];
|
|
5283
5502
|
404: components["responses"]["Default404Response"];
|
|
5284
5503
|
405: components["responses"]["Default405Response"];
|
|
5285
5504
|
406: components["responses"]["Default406Response"];
|
|
5286
|
-
409: components["responses"]["Idempotency409Response"];
|
|
5287
5505
|
415: components["responses"]["Default415Response"];
|
|
5288
|
-
422: components["responses"]["Idempotency422Response"];
|
|
5289
5506
|
429: components["responses"]["Default429Response"];
|
|
5290
5507
|
500: components["responses"]["Default500Response"];
|
|
5291
5508
|
503: components["responses"]["Default503Response"];
|
|
5292
5509
|
};
|
|
5293
5510
|
};
|
|
5511
|
+
put?: never;
|
|
5512
|
+
post?: never;
|
|
5294
5513
|
delete?: never;
|
|
5295
5514
|
options?: never;
|
|
5296
5515
|
head?: never;
|
|
5297
5516
|
patch?: never;
|
|
5298
5517
|
trace?: never;
|
|
5299
5518
|
};
|
|
5300
|
-
"/
|
|
5519
|
+
"/albumStatistics/{id}/relationships/owners": {
|
|
5301
5520
|
parameters: {
|
|
5302
5521
|
query?: never;
|
|
5303
5522
|
header?: never;
|
|
@@ -5305,19 +5524,190 @@ declare interface paths {
|
|
|
5305
5524
|
cookie?: never;
|
|
5306
5525
|
};
|
|
5307
5526
|
/**
|
|
5308
|
-
* Get
|
|
5309
|
-
* @description Retrieves
|
|
5527
|
+
* Get owners relationship ("to-many").
|
|
5528
|
+
* @description Retrieves owners relationship.
|
|
5310
5529
|
*/
|
|
5311
5530
|
get: {
|
|
5312
5531
|
parameters: {
|
|
5313
5532
|
query?: {
|
|
5314
5533
|
/**
|
|
5315
|
-
* @description
|
|
5534
|
+
* @description Allows the client to customize which related resources should be returned. Available options: owners
|
|
5535
|
+
* @example owners
|
|
5536
|
+
*/
|
|
5537
|
+
include?: string[];
|
|
5538
|
+
/** @description Server-generated cursor value pointing a certain page of items. Optional, targets first page if not specified */
|
|
5539
|
+
"page[cursor]"?: string;
|
|
5540
|
+
};
|
|
5541
|
+
header?: never;
|
|
5542
|
+
path: {
|
|
5543
|
+
/**
|
|
5544
|
+
* @description Album statistic id
|
|
5545
|
+
* @example 123456
|
|
5546
|
+
*/
|
|
5547
|
+
id: string;
|
|
5548
|
+
};
|
|
5549
|
+
cookie?: never;
|
|
5550
|
+
};
|
|
5551
|
+
requestBody?: never;
|
|
5552
|
+
responses: {
|
|
5553
|
+
/** @description Successful response */
|
|
5554
|
+
200: {
|
|
5555
|
+
headers: {
|
|
5556
|
+
[name: string]: unknown;
|
|
5557
|
+
};
|
|
5558
|
+
content: {
|
|
5559
|
+
"application/vnd.api+json": components["schemas"]["AlbumStatistics_Multi_Relationship_Data_Document"];
|
|
5560
|
+
};
|
|
5561
|
+
};
|
|
5562
|
+
400: components["responses"]["Default400Response"];
|
|
5563
|
+
404: components["responses"]["Default404Response"];
|
|
5564
|
+
405: components["responses"]["Default405Response"];
|
|
5565
|
+
406: components["responses"]["Default406Response"];
|
|
5566
|
+
415: components["responses"]["Default415Response"];
|
|
5567
|
+
429: components["responses"]["Default429Response"];
|
|
5568
|
+
500: components["responses"]["Default500Response"];
|
|
5569
|
+
503: components["responses"]["Default503Response"];
|
|
5570
|
+
};
|
|
5571
|
+
};
|
|
5572
|
+
put?: never;
|
|
5573
|
+
post?: never;
|
|
5574
|
+
delete?: never;
|
|
5575
|
+
options?: never;
|
|
5576
|
+
head?: never;
|
|
5577
|
+
patch?: never;
|
|
5578
|
+
trace?: never;
|
|
5579
|
+
};
|
|
5580
|
+
"/albums": {
|
|
5581
|
+
parameters: {
|
|
5582
|
+
query?: never;
|
|
5583
|
+
header?: never;
|
|
5584
|
+
path?: never;
|
|
5585
|
+
cookie?: never;
|
|
5586
|
+
};
|
|
5587
|
+
/**
|
|
5588
|
+
* Get multiple albums.
|
|
5589
|
+
* @description Retrieves multiple albums by available filters, or without if applicable.
|
|
5590
|
+
*/
|
|
5591
|
+
get: {
|
|
5592
|
+
parameters: {
|
|
5593
|
+
query?: {
|
|
5594
|
+
/** @description Server-generated cursor value pointing a certain page of items. Optional, targets first page if not specified */
|
|
5595
|
+
"page[cursor]"?: string;
|
|
5596
|
+
/** @description Values prefixed with "-" are sorted descending; values without it are sorted ascending. */
|
|
5597
|
+
sort?: ("createdAt" | "-createdAt" | "title" | "-title")[];
|
|
5598
|
+
/**
|
|
5599
|
+
* @description ISO 3166-1 alpha-2 country code
|
|
5316
5600
|
* @example US
|
|
5317
5601
|
*/
|
|
5318
5602
|
countryCode?: string;
|
|
5319
5603
|
/**
|
|
5320
|
-
* @description Allows the client to customize which related resources should be returned. Available options: albumStatistics, artists, coverArt, genres, items, owners, priceConfig, providers, similarAlbums, suggestedCoverArts, usageRules
|
|
5604
|
+
* @description Allows the client to customize which related resources should be returned. Available options: albumStatistics, artists, coverArt, genres, items, owners, priceConfig, providers, replacement, similarAlbums, suggestedCoverArts, usageRules
|
|
5605
|
+
* @example albumStatistics
|
|
5606
|
+
*/
|
|
5607
|
+
include?: string[];
|
|
5608
|
+
/** @description List of barcode IDs (EAN-13 or UPC-A). NOTE: Supplying more than one barcode ID will currently only return one album per barcode ID. (e.g. `196589525444`) */
|
|
5609
|
+
"filter[barcodeId]"?: string[];
|
|
5610
|
+
/** @description Album id (e.g. `251380836`) */
|
|
5611
|
+
"filter[id]"?: string[];
|
|
5612
|
+
/** @description User id. Use `me` for the authenticated user */
|
|
5613
|
+
"filter[owners.id]"?: string[];
|
|
5614
|
+
/** @description Share code that grants access to UNLISTED resources. When provided, allows non-owners to access resources that would otherwise be restricted. */
|
|
5615
|
+
shareCode?: string;
|
|
5616
|
+
};
|
|
5617
|
+
header?: never;
|
|
5618
|
+
path?: never;
|
|
5619
|
+
cookie?: never;
|
|
5620
|
+
};
|
|
5621
|
+
requestBody?: never;
|
|
5622
|
+
responses: {
|
|
5623
|
+
/** @description Successful response */
|
|
5624
|
+
200: {
|
|
5625
|
+
headers: {
|
|
5626
|
+
[name: string]: unknown;
|
|
5627
|
+
};
|
|
5628
|
+
content: {
|
|
5629
|
+
"application/vnd.api+json": components["schemas"]["Albums_Multi_Resource_Data_Document"];
|
|
5630
|
+
};
|
|
5631
|
+
};
|
|
5632
|
+
400: components["responses"]["Default400Response"];
|
|
5633
|
+
404: components["responses"]["Default404Response"];
|
|
5634
|
+
405: components["responses"]["Default405Response"];
|
|
5635
|
+
406: components["responses"]["Default406Response"];
|
|
5636
|
+
415: components["responses"]["Default415Response"];
|
|
5637
|
+
429: components["responses"]["Default429Response"];
|
|
5638
|
+
500: components["responses"]["Default500Response"];
|
|
5639
|
+
503: components["responses"]["Default503Response"];
|
|
5640
|
+
};
|
|
5641
|
+
};
|
|
5642
|
+
put?: never;
|
|
5643
|
+
/**
|
|
5644
|
+
* Create single album.
|
|
5645
|
+
* @description Creates a new album.
|
|
5646
|
+
*/
|
|
5647
|
+
post: {
|
|
5648
|
+
parameters: {
|
|
5649
|
+
query?: never;
|
|
5650
|
+
header?: {
|
|
5651
|
+
/** @description Unique idempotency key for safe retry of mutation requests. If a duplicate key is sent with the same payload, the original response is replayed. If the payload differs, a 422 error is returned. */
|
|
5652
|
+
"Idempotency-Key"?: components["parameters"]["IdempotencyKey"];
|
|
5653
|
+
};
|
|
5654
|
+
path?: never;
|
|
5655
|
+
cookie?: never;
|
|
5656
|
+
};
|
|
5657
|
+
requestBody?: {
|
|
5658
|
+
content: {
|
|
5659
|
+
"application/vnd.api+json": components["schemas"]["AlbumsCreateOperation_Payload"];
|
|
5660
|
+
};
|
|
5661
|
+
};
|
|
5662
|
+
responses: {
|
|
5663
|
+
/** @description Successful response */
|
|
5664
|
+
201: {
|
|
5665
|
+
headers: {
|
|
5666
|
+
[name: string]: unknown;
|
|
5667
|
+
};
|
|
5668
|
+
content: {
|
|
5669
|
+
"application/vnd.api+json": components["schemas"]["Albums_Single_Resource_Data_Document"];
|
|
5670
|
+
};
|
|
5671
|
+
};
|
|
5672
|
+
400: components["responses"]["Default400Response"];
|
|
5673
|
+
404: components["responses"]["Default404Response"];
|
|
5674
|
+
405: components["responses"]["Default405Response"];
|
|
5675
|
+
406: components["responses"]["Default406Response"];
|
|
5676
|
+
409: components["responses"]["Idempotency409Response"];
|
|
5677
|
+
415: components["responses"]["Default415Response"];
|
|
5678
|
+
422: components["responses"]["Idempotency422Response"];
|
|
5679
|
+
429: components["responses"]["Default429Response"];
|
|
5680
|
+
500: components["responses"]["Default500Response"];
|
|
5681
|
+
503: components["responses"]["Default503Response"];
|
|
5682
|
+
};
|
|
5683
|
+
};
|
|
5684
|
+
delete?: never;
|
|
5685
|
+
options?: never;
|
|
5686
|
+
head?: never;
|
|
5687
|
+
patch?: never;
|
|
5688
|
+
trace?: never;
|
|
5689
|
+
};
|
|
5690
|
+
"/albums/{id}": {
|
|
5691
|
+
parameters: {
|
|
5692
|
+
query?: never;
|
|
5693
|
+
header?: never;
|
|
5694
|
+
path?: never;
|
|
5695
|
+
cookie?: never;
|
|
5696
|
+
};
|
|
5697
|
+
/**
|
|
5698
|
+
* Get single album.
|
|
5699
|
+
* @description Retrieves single album by id.
|
|
5700
|
+
*/
|
|
5701
|
+
get: {
|
|
5702
|
+
parameters: {
|
|
5703
|
+
query?: {
|
|
5704
|
+
/**
|
|
5705
|
+
* @description ISO 3166-1 alpha-2 country code
|
|
5706
|
+
* @example US
|
|
5707
|
+
*/
|
|
5708
|
+
countryCode?: string;
|
|
5709
|
+
/**
|
|
5710
|
+
* @description Allows the client to customize which related resources should be returned. Available options: albumStatistics, artists, coverArt, genres, items, owners, priceConfig, providers, replacement, similarAlbums, suggestedCoverArts, usageRules
|
|
5321
5711
|
* @example albumStatistics
|
|
5322
5712
|
*/
|
|
5323
5713
|
include?: string[];
|
|
@@ -6037,6 +6427,72 @@ declare interface paths {
|
|
|
6037
6427
|
patch?: never;
|
|
6038
6428
|
trace?: never;
|
|
6039
6429
|
};
|
|
6430
|
+
"/albums/{id}/relationships/replacement": {
|
|
6431
|
+
parameters: {
|
|
6432
|
+
query?: never;
|
|
6433
|
+
header?: never;
|
|
6434
|
+
path?: never;
|
|
6435
|
+
cookie?: never;
|
|
6436
|
+
};
|
|
6437
|
+
/**
|
|
6438
|
+
* Get replacement relationship ("to-one").
|
|
6439
|
+
* @description Retrieves replacement relationship.
|
|
6440
|
+
*/
|
|
6441
|
+
get: {
|
|
6442
|
+
parameters: {
|
|
6443
|
+
query?: {
|
|
6444
|
+
/**
|
|
6445
|
+
* @description ISO 3166-1 alpha-2 country code
|
|
6446
|
+
* @example US
|
|
6447
|
+
*/
|
|
6448
|
+
countryCode?: string;
|
|
6449
|
+
/**
|
|
6450
|
+
* @description Allows the client to customize which related resources should be returned. Available options: replacement
|
|
6451
|
+
* @example replacement
|
|
6452
|
+
*/
|
|
6453
|
+
include?: string[];
|
|
6454
|
+
/** @description Share code that grants access to UNLISTED resources. When provided, allows non-owners to access resources that would otherwise be restricted. */
|
|
6455
|
+
shareCode?: string;
|
|
6456
|
+
};
|
|
6457
|
+
header?: never;
|
|
6458
|
+
path: {
|
|
6459
|
+
/**
|
|
6460
|
+
* @description Album id
|
|
6461
|
+
* @example 251380836
|
|
6462
|
+
*/
|
|
6463
|
+
id: string;
|
|
6464
|
+
};
|
|
6465
|
+
cookie?: never;
|
|
6466
|
+
};
|
|
6467
|
+
requestBody?: never;
|
|
6468
|
+
responses: {
|
|
6469
|
+
/** @description Successful response */
|
|
6470
|
+
200: {
|
|
6471
|
+
headers: {
|
|
6472
|
+
[name: string]: unknown;
|
|
6473
|
+
};
|
|
6474
|
+
content: {
|
|
6475
|
+
"application/vnd.api+json": components["schemas"]["Albums_Single_Relationship_Data_Document"];
|
|
6476
|
+
};
|
|
6477
|
+
};
|
|
6478
|
+
400: components["responses"]["Default400Response"];
|
|
6479
|
+
404: components["responses"]["Default404Response"];
|
|
6480
|
+
405: components["responses"]["Default405Response"];
|
|
6481
|
+
406: components["responses"]["Default406Response"];
|
|
6482
|
+
415: components["responses"]["Default415Response"];
|
|
6483
|
+
429: components["responses"]["Default429Response"];
|
|
6484
|
+
500: components["responses"]["Default500Response"];
|
|
6485
|
+
503: components["responses"]["Default503Response"];
|
|
6486
|
+
};
|
|
6487
|
+
};
|
|
6488
|
+
put?: never;
|
|
6489
|
+
post?: never;
|
|
6490
|
+
delete?: never;
|
|
6491
|
+
options?: never;
|
|
6492
|
+
head?: never;
|
|
6493
|
+
patch?: never;
|
|
6494
|
+
trace?: never;
|
|
6495
|
+
};
|
|
6040
6496
|
"/albums/{id}/relationships/similarAlbums": {
|
|
6041
6497
|
parameters: {
|
|
6042
6498
|
query?: never;
|
|
@@ -8005,36 +8461,273 @@ declare interface paths {
|
|
|
8005
8461
|
};
|
|
8006
8462
|
cookie?: never;
|
|
8007
8463
|
};
|
|
8008
|
-
requestBody?: never;
|
|
8464
|
+
requestBody?: never;
|
|
8465
|
+
responses: {
|
|
8466
|
+
/** @description Successful response */
|
|
8467
|
+
200: {
|
|
8468
|
+
headers: {
|
|
8469
|
+
[name: string]: unknown;
|
|
8470
|
+
};
|
|
8471
|
+
content: {
|
|
8472
|
+
"application/vnd.api+json": components["schemas"]["Artists_TrackProviders_Multi_Relationship_Data_Document"];
|
|
8473
|
+
};
|
|
8474
|
+
};
|
|
8475
|
+
400: components["responses"]["Default400Response"];
|
|
8476
|
+
404: components["responses"]["Default404Response"];
|
|
8477
|
+
405: components["responses"]["Default405Response"];
|
|
8478
|
+
406: components["responses"]["Default406Response"];
|
|
8479
|
+
415: components["responses"]["Default415Response"];
|
|
8480
|
+
429: components["responses"]["Default429Response"];
|
|
8481
|
+
500: components["responses"]["Default500Response"];
|
|
8482
|
+
503: components["responses"]["Default503Response"];
|
|
8483
|
+
};
|
|
8484
|
+
};
|
|
8485
|
+
put?: never;
|
|
8486
|
+
post?: never;
|
|
8487
|
+
delete?: never;
|
|
8488
|
+
options?: never;
|
|
8489
|
+
head?: never;
|
|
8490
|
+
patch?: never;
|
|
8491
|
+
trace?: never;
|
|
8492
|
+
};
|
|
8493
|
+
"/artists/{id}/relationships/tracks": {
|
|
8494
|
+
parameters: {
|
|
8495
|
+
query?: never;
|
|
8496
|
+
header?: never;
|
|
8497
|
+
path?: never;
|
|
8498
|
+
cookie?: never;
|
|
8499
|
+
};
|
|
8500
|
+
/**
|
|
8501
|
+
* Get tracks relationship ("to-many").
|
|
8502
|
+
* @description Retrieves tracks relationship.
|
|
8503
|
+
*/
|
|
8504
|
+
get: {
|
|
8505
|
+
parameters: {
|
|
8506
|
+
query: {
|
|
8507
|
+
/**
|
|
8508
|
+
* @description Collapse by options for getting artist tracks. Available options: FINGERPRINT, ID. FINGERPRINT option might collapse similar tracks based entry fingerprints while collapsing by ID always returns all available items.
|
|
8509
|
+
* @example FINGERPRINT
|
|
8510
|
+
*/
|
|
8511
|
+
collapseBy: "FINGERPRINT" | "NONE";
|
|
8512
|
+
/** @description Server-generated cursor value pointing a certain page of items. Optional, targets first page if not specified */
|
|
8513
|
+
"page[cursor]"?: string;
|
|
8514
|
+
/**
|
|
8515
|
+
* @description ISO 3166-1 alpha-2 country code
|
|
8516
|
+
* @example US
|
|
8517
|
+
*/
|
|
8518
|
+
countryCode?: string;
|
|
8519
|
+
/**
|
|
8520
|
+
* @description Allows the client to customize which related resources should be returned. Available options: tracks
|
|
8521
|
+
* @example tracks
|
|
8522
|
+
*/
|
|
8523
|
+
include?: string[];
|
|
8524
|
+
};
|
|
8525
|
+
header?: never;
|
|
8526
|
+
path: {
|
|
8527
|
+
/**
|
|
8528
|
+
* @description Artist id
|
|
8529
|
+
* @example 1566
|
|
8530
|
+
*/
|
|
8531
|
+
id: string;
|
|
8532
|
+
};
|
|
8533
|
+
cookie?: never;
|
|
8534
|
+
};
|
|
8535
|
+
requestBody?: never;
|
|
8536
|
+
responses: {
|
|
8537
|
+
/** @description Successful response */
|
|
8538
|
+
200: {
|
|
8539
|
+
headers: {
|
|
8540
|
+
[name: string]: unknown;
|
|
8541
|
+
};
|
|
8542
|
+
content: {
|
|
8543
|
+
"application/vnd.api+json": components["schemas"]["Artists_Multi_Relationship_Data_Document"];
|
|
8544
|
+
};
|
|
8545
|
+
};
|
|
8546
|
+
400: components["responses"]["Default400Response"];
|
|
8547
|
+
404: components["responses"]["Default404Response"];
|
|
8548
|
+
405: components["responses"]["Default405Response"];
|
|
8549
|
+
406: components["responses"]["Default406Response"];
|
|
8550
|
+
415: components["responses"]["Default415Response"];
|
|
8551
|
+
429: components["responses"]["Default429Response"];
|
|
8552
|
+
500: components["responses"]["Default500Response"];
|
|
8553
|
+
503: components["responses"]["Default503Response"];
|
|
8554
|
+
};
|
|
8555
|
+
};
|
|
8556
|
+
put?: never;
|
|
8557
|
+
post?: never;
|
|
8558
|
+
delete?: never;
|
|
8559
|
+
options?: never;
|
|
8560
|
+
head?: never;
|
|
8561
|
+
patch?: never;
|
|
8562
|
+
trace?: never;
|
|
8563
|
+
};
|
|
8564
|
+
"/artists/{id}/relationships/videos": {
|
|
8565
|
+
parameters: {
|
|
8566
|
+
query?: never;
|
|
8567
|
+
header?: never;
|
|
8568
|
+
path?: never;
|
|
8569
|
+
cookie?: never;
|
|
8570
|
+
};
|
|
8571
|
+
/**
|
|
8572
|
+
* Get videos relationship ("to-many").
|
|
8573
|
+
* @description Retrieves videos relationship.
|
|
8574
|
+
*/
|
|
8575
|
+
get: {
|
|
8576
|
+
parameters: {
|
|
8577
|
+
query?: {
|
|
8578
|
+
/** @description Server-generated cursor value pointing a certain page of items. Optional, targets first page if not specified */
|
|
8579
|
+
"page[cursor]"?: string;
|
|
8580
|
+
/**
|
|
8581
|
+
* @description ISO 3166-1 alpha-2 country code
|
|
8582
|
+
* @example US
|
|
8583
|
+
*/
|
|
8584
|
+
countryCode?: string;
|
|
8585
|
+
/**
|
|
8586
|
+
* @description Allows the client to customize which related resources should be returned. Available options: videos
|
|
8587
|
+
* @example videos
|
|
8588
|
+
*/
|
|
8589
|
+
include?: string[];
|
|
8590
|
+
};
|
|
8591
|
+
header?: never;
|
|
8592
|
+
path: {
|
|
8593
|
+
/**
|
|
8594
|
+
* @description Artist id
|
|
8595
|
+
* @example 1566
|
|
8596
|
+
*/
|
|
8597
|
+
id: string;
|
|
8598
|
+
};
|
|
8599
|
+
cookie?: never;
|
|
8600
|
+
};
|
|
8601
|
+
requestBody?: never;
|
|
8602
|
+
responses: {
|
|
8603
|
+
/** @description Successful response */
|
|
8604
|
+
200: {
|
|
8605
|
+
headers: {
|
|
8606
|
+
[name: string]: unknown;
|
|
8607
|
+
};
|
|
8608
|
+
content: {
|
|
8609
|
+
"application/vnd.api+json": components["schemas"]["Artists_Multi_Relationship_Data_Document"];
|
|
8610
|
+
};
|
|
8611
|
+
};
|
|
8612
|
+
400: components["responses"]["Default400Response"];
|
|
8613
|
+
404: components["responses"]["Default404Response"];
|
|
8614
|
+
405: components["responses"]["Default405Response"];
|
|
8615
|
+
406: components["responses"]["Default406Response"];
|
|
8616
|
+
415: components["responses"]["Default415Response"];
|
|
8617
|
+
429: components["responses"]["Default429Response"];
|
|
8618
|
+
500: components["responses"]["Default500Response"];
|
|
8619
|
+
503: components["responses"]["Default503Response"];
|
|
8620
|
+
};
|
|
8621
|
+
};
|
|
8622
|
+
put?: never;
|
|
8623
|
+
post?: never;
|
|
8624
|
+
delete?: never;
|
|
8625
|
+
options?: never;
|
|
8626
|
+
head?: never;
|
|
8627
|
+
patch?: never;
|
|
8628
|
+
trace?: never;
|
|
8629
|
+
};
|
|
8630
|
+
"/artworks": {
|
|
8631
|
+
parameters: {
|
|
8632
|
+
query?: never;
|
|
8633
|
+
header?: never;
|
|
8634
|
+
path?: never;
|
|
8635
|
+
cookie?: never;
|
|
8636
|
+
};
|
|
8637
|
+
/**
|
|
8638
|
+
* Get multiple artworks.
|
|
8639
|
+
* @description Retrieves multiple artworks by available filters, or without if applicable.
|
|
8640
|
+
*/
|
|
8641
|
+
get: {
|
|
8642
|
+
parameters: {
|
|
8643
|
+
query?: {
|
|
8644
|
+
/**
|
|
8645
|
+
* @description ISO 3166-1 alpha-2 country code
|
|
8646
|
+
* @example US
|
|
8647
|
+
*/
|
|
8648
|
+
countryCode?: string;
|
|
8649
|
+
/**
|
|
8650
|
+
* @description Allows the client to customize which related resources should be returned. Available options: owners
|
|
8651
|
+
* @example owners
|
|
8652
|
+
*/
|
|
8653
|
+
include?: string[];
|
|
8654
|
+
/** @description Artwork id (e.g. `a468bee88def`) */
|
|
8655
|
+
"filter[id]"?: string[];
|
|
8656
|
+
};
|
|
8657
|
+
header?: never;
|
|
8658
|
+
path?: never;
|
|
8659
|
+
cookie?: never;
|
|
8660
|
+
};
|
|
8661
|
+
requestBody?: never;
|
|
8662
|
+
responses: {
|
|
8663
|
+
/** @description Successful response */
|
|
8664
|
+
200: {
|
|
8665
|
+
headers: {
|
|
8666
|
+
[name: string]: unknown;
|
|
8667
|
+
};
|
|
8668
|
+
content: {
|
|
8669
|
+
"application/vnd.api+json": components["schemas"]["Artworks_Multi_Resource_Data_Document"];
|
|
8670
|
+
};
|
|
8671
|
+
};
|
|
8672
|
+
400: components["responses"]["Default400Response"];
|
|
8673
|
+
404: components["responses"]["Default404Response"];
|
|
8674
|
+
405: components["responses"]["Default405Response"];
|
|
8675
|
+
406: components["responses"]["Default406Response"];
|
|
8676
|
+
415: components["responses"]["Default415Response"];
|
|
8677
|
+
429: components["responses"]["Default429Response"];
|
|
8678
|
+
500: components["responses"]["Default500Response"];
|
|
8679
|
+
503: components["responses"]["Default503Response"];
|
|
8680
|
+
};
|
|
8681
|
+
};
|
|
8682
|
+
put?: never;
|
|
8683
|
+
/**
|
|
8684
|
+
* Create single artwork.
|
|
8685
|
+
* @description Creates a new artwork.
|
|
8686
|
+
*/
|
|
8687
|
+
post: {
|
|
8688
|
+
parameters: {
|
|
8689
|
+
query?: never;
|
|
8690
|
+
header?: {
|
|
8691
|
+
/** @description Unique idempotency key for safe retry of mutation requests. If a duplicate key is sent with the same payload, the original response is replayed. If the payload differs, a 422 error is returned. */
|
|
8692
|
+
"Idempotency-Key"?: components["parameters"]["IdempotencyKey"];
|
|
8693
|
+
};
|
|
8694
|
+
path?: never;
|
|
8695
|
+
cookie?: never;
|
|
8696
|
+
};
|
|
8697
|
+
requestBody?: {
|
|
8698
|
+
content: {
|
|
8699
|
+
"application/vnd.api+json": components["schemas"]["ArtworksCreateOperation_Payload"];
|
|
8700
|
+
};
|
|
8701
|
+
};
|
|
8009
8702
|
responses: {
|
|
8010
8703
|
/** @description Successful response */
|
|
8011
|
-
|
|
8704
|
+
201: {
|
|
8012
8705
|
headers: {
|
|
8013
8706
|
[name: string]: unknown;
|
|
8014
8707
|
};
|
|
8015
8708
|
content: {
|
|
8016
|
-
"application/vnd.api+json": components["schemas"]["
|
|
8709
|
+
"application/vnd.api+json": components["schemas"]["Artworks_Single_Resource_Data_Document"];
|
|
8017
8710
|
};
|
|
8018
8711
|
};
|
|
8019
8712
|
400: components["responses"]["Default400Response"];
|
|
8020
8713
|
404: components["responses"]["Default404Response"];
|
|
8021
8714
|
405: components["responses"]["Default405Response"];
|
|
8022
8715
|
406: components["responses"]["Default406Response"];
|
|
8716
|
+
409: components["responses"]["Idempotency409Response"];
|
|
8023
8717
|
415: components["responses"]["Default415Response"];
|
|
8718
|
+
422: components["responses"]["Idempotency422Response"];
|
|
8024
8719
|
429: components["responses"]["Default429Response"];
|
|
8025
8720
|
500: components["responses"]["Default500Response"];
|
|
8026
8721
|
503: components["responses"]["Default503Response"];
|
|
8027
8722
|
};
|
|
8028
8723
|
};
|
|
8029
|
-
put?: never;
|
|
8030
|
-
post?: never;
|
|
8031
8724
|
delete?: never;
|
|
8032
8725
|
options?: never;
|
|
8033
8726
|
head?: never;
|
|
8034
8727
|
patch?: never;
|
|
8035
8728
|
trace?: never;
|
|
8036
8729
|
};
|
|
8037
|
-
"/
|
|
8730
|
+
"/artworks/{id}": {
|
|
8038
8731
|
parameters: {
|
|
8039
8732
|
query?: never;
|
|
8040
8733
|
header?: never;
|
|
@@ -8042,35 +8735,28 @@ declare interface paths {
|
|
|
8042
8735
|
cookie?: never;
|
|
8043
8736
|
};
|
|
8044
8737
|
/**
|
|
8045
|
-
* Get
|
|
8046
|
-
* @description Retrieves
|
|
8738
|
+
* Get single artwork.
|
|
8739
|
+
* @description Retrieves single artwork by id.
|
|
8047
8740
|
*/
|
|
8048
8741
|
get: {
|
|
8049
8742
|
parameters: {
|
|
8050
|
-
query
|
|
8051
|
-
/**
|
|
8052
|
-
* @description Collapse by options for getting artist tracks. Available options: FINGERPRINT, ID. FINGERPRINT option might collapse similar tracks based entry fingerprints while collapsing by ID always returns all available items.
|
|
8053
|
-
* @example FINGERPRINT
|
|
8054
|
-
*/
|
|
8055
|
-
collapseBy: "FINGERPRINT" | "NONE";
|
|
8056
|
-
/** @description Server-generated cursor value pointing a certain page of items. Optional, targets first page if not specified */
|
|
8057
|
-
"page[cursor]"?: string;
|
|
8743
|
+
query?: {
|
|
8058
8744
|
/**
|
|
8059
8745
|
* @description ISO 3166-1 alpha-2 country code
|
|
8060
8746
|
* @example US
|
|
8061
8747
|
*/
|
|
8062
8748
|
countryCode?: string;
|
|
8063
8749
|
/**
|
|
8064
|
-
* @description Allows the client to customize which related resources should be returned. Available options:
|
|
8065
|
-
* @example
|
|
8750
|
+
* @description Allows the client to customize which related resources should be returned. Available options: owners
|
|
8751
|
+
* @example owners
|
|
8066
8752
|
*/
|
|
8067
8753
|
include?: string[];
|
|
8068
8754
|
};
|
|
8069
8755
|
header?: never;
|
|
8070
8756
|
path: {
|
|
8071
8757
|
/**
|
|
8072
|
-
* @description
|
|
8073
|
-
* @example
|
|
8758
|
+
* @description Artwork id
|
|
8759
|
+
* @example a468bee88def
|
|
8074
8760
|
*/
|
|
8075
8761
|
id: string;
|
|
8076
8762
|
};
|
|
@@ -8084,7 +8770,7 @@ declare interface paths {
|
|
|
8084
8770
|
[name: string]: unknown;
|
|
8085
8771
|
};
|
|
8086
8772
|
content: {
|
|
8087
|
-
"application/vnd.api+json": components["schemas"]["
|
|
8773
|
+
"application/vnd.api+json": components["schemas"]["Artworks_Single_Resource_Data_Document"];
|
|
8088
8774
|
};
|
|
8089
8775
|
};
|
|
8090
8776
|
400: components["responses"]["Default400Response"];
|
|
@@ -8105,7 +8791,7 @@ declare interface paths {
|
|
|
8105
8791
|
patch?: never;
|
|
8106
8792
|
trace?: never;
|
|
8107
8793
|
};
|
|
8108
|
-
"/
|
|
8794
|
+
"/artworks/{id}/relationships/owners": {
|
|
8109
8795
|
parameters: {
|
|
8110
8796
|
query?: never;
|
|
8111
8797
|
header?: never;
|
|
@@ -8113,30 +8799,25 @@ declare interface paths {
|
|
|
8113
8799
|
cookie?: never;
|
|
8114
8800
|
};
|
|
8115
8801
|
/**
|
|
8116
|
-
* Get
|
|
8117
|
-
* @description Retrieves
|
|
8802
|
+
* Get owners relationship ("to-many").
|
|
8803
|
+
* @description Retrieves owners relationship.
|
|
8118
8804
|
*/
|
|
8119
8805
|
get: {
|
|
8120
8806
|
parameters: {
|
|
8121
8807
|
query?: {
|
|
8122
|
-
/** @description Server-generated cursor value pointing a certain page of items. Optional, targets first page if not specified */
|
|
8123
|
-
"page[cursor]"?: string;
|
|
8124
|
-
/**
|
|
8125
|
-
* @description ISO 3166-1 alpha-2 country code
|
|
8126
|
-
* @example US
|
|
8127
|
-
*/
|
|
8128
|
-
countryCode?: string;
|
|
8129
8808
|
/**
|
|
8130
|
-
* @description Allows the client to customize which related resources should be returned. Available options:
|
|
8131
|
-
* @example
|
|
8809
|
+
* @description Allows the client to customize which related resources should be returned. Available options: owners
|
|
8810
|
+
* @example owners
|
|
8132
8811
|
*/
|
|
8133
8812
|
include?: string[];
|
|
8813
|
+
/** @description Server-generated cursor value pointing a certain page of items. Optional, targets first page if not specified */
|
|
8814
|
+
"page[cursor]"?: string;
|
|
8134
8815
|
};
|
|
8135
8816
|
header?: never;
|
|
8136
8817
|
path: {
|
|
8137
8818
|
/**
|
|
8138
|
-
* @description
|
|
8139
|
-
* @example
|
|
8819
|
+
* @description Artwork id
|
|
8820
|
+
* @example a468bee88def
|
|
8140
8821
|
*/
|
|
8141
8822
|
id: string;
|
|
8142
8823
|
};
|
|
@@ -8150,7 +8831,7 @@ declare interface paths {
|
|
|
8150
8831
|
[name: string]: unknown;
|
|
8151
8832
|
};
|
|
8152
8833
|
content: {
|
|
8153
|
-
"application/vnd.api+json": components["schemas"]["
|
|
8834
|
+
"application/vnd.api+json": components["schemas"]["Artworks_Multi_Relationship_Data_Document"];
|
|
8154
8835
|
};
|
|
8155
8836
|
};
|
|
8156
8837
|
400: components["responses"]["Default400Response"];
|
|
@@ -8171,7 +8852,7 @@ declare interface paths {
|
|
|
8171
8852
|
patch?: never;
|
|
8172
8853
|
trace?: never;
|
|
8173
8854
|
};
|
|
8174
|
-
"/
|
|
8855
|
+
"/clients": {
|
|
8175
8856
|
parameters: {
|
|
8176
8857
|
query?: never;
|
|
8177
8858
|
header?: never;
|
|
@@ -8179,24 +8860,19 @@ declare interface paths {
|
|
|
8179
8860
|
cookie?: never;
|
|
8180
8861
|
};
|
|
8181
8862
|
/**
|
|
8182
|
-
* Get multiple
|
|
8183
|
-
* @description Retrieves multiple
|
|
8863
|
+
* Get multiple clients.
|
|
8864
|
+
* @description Retrieves multiple clients by available filters, or without if applicable.
|
|
8184
8865
|
*/
|
|
8185
8866
|
get: {
|
|
8186
8867
|
parameters: {
|
|
8187
8868
|
query?: {
|
|
8188
|
-
/**
|
|
8189
|
-
* @description ISO 3166-1 alpha-2 country code
|
|
8190
|
-
* @example US
|
|
8191
|
-
*/
|
|
8192
|
-
countryCode?: string;
|
|
8193
8869
|
/**
|
|
8194
8870
|
* @description Allows the client to customize which related resources should be returned. Available options: owners
|
|
8195
8871
|
* @example owners
|
|
8196
8872
|
*/
|
|
8197
8873
|
include?: string[];
|
|
8198
|
-
/** @description
|
|
8199
|
-
"filter[id]"?: string[];
|
|
8874
|
+
/** @description User id. Use `me` for the authenticated user */
|
|
8875
|
+
"filter[owners.id]"?: string[];
|
|
8200
8876
|
};
|
|
8201
8877
|
header?: never;
|
|
8202
8878
|
path?: never;
|
|
@@ -8210,7 +8886,7 @@ declare interface paths {
|
|
|
8210
8886
|
[name: string]: unknown;
|
|
8211
8887
|
};
|
|
8212
8888
|
content: {
|
|
8213
|
-
"application/vnd.api+json": components["schemas"]["
|
|
8889
|
+
"application/vnd.api+json": components["schemas"]["Clients_Multi_Resource_Data_Document"];
|
|
8214
8890
|
};
|
|
8215
8891
|
};
|
|
8216
8892
|
400: components["responses"]["Default400Response"];
|
|
@@ -8225,8 +8901,8 @@ declare interface paths {
|
|
|
8225
8901
|
};
|
|
8226
8902
|
put?: never;
|
|
8227
8903
|
/**
|
|
8228
|
-
* Create single
|
|
8229
|
-
* @description Creates a new
|
|
8904
|
+
* Create single client.
|
|
8905
|
+
* @description Creates a new client.
|
|
8230
8906
|
*/
|
|
8231
8907
|
post: {
|
|
8232
8908
|
parameters: {
|
|
@@ -8240,7 +8916,7 @@ declare interface paths {
|
|
|
8240
8916
|
};
|
|
8241
8917
|
requestBody?: {
|
|
8242
8918
|
content: {
|
|
8243
|
-
"application/vnd.api+json": components["schemas"]["
|
|
8919
|
+
"application/vnd.api+json": components["schemas"]["ClientsCreateOperation_Payload"];
|
|
8244
8920
|
};
|
|
8245
8921
|
};
|
|
8246
8922
|
responses: {
|
|
@@ -8250,7 +8926,7 @@ declare interface paths {
|
|
|
8250
8926
|
[name: string]: unknown;
|
|
8251
8927
|
};
|
|
8252
8928
|
content: {
|
|
8253
|
-
"application/vnd.api+json": components["schemas"]["
|
|
8929
|
+
"application/vnd.api+json": components["schemas"]["Clients_Single_Resource_Data_Document"];
|
|
8254
8930
|
};
|
|
8255
8931
|
};
|
|
8256
8932
|
400: components["responses"]["Default400Response"];
|
|
@@ -8271,7 +8947,7 @@ declare interface paths {
|
|
|
8271
8947
|
patch?: never;
|
|
8272
8948
|
trace?: never;
|
|
8273
8949
|
};
|
|
8274
|
-
"/
|
|
8950
|
+
"/clients/{id}": {
|
|
8275
8951
|
parameters: {
|
|
8276
8952
|
query?: never;
|
|
8277
8953
|
header?: never;
|
|
@@ -8279,17 +8955,12 @@ declare interface paths {
|
|
|
8279
8955
|
cookie?: never;
|
|
8280
8956
|
};
|
|
8281
8957
|
/**
|
|
8282
|
-
* Get single
|
|
8283
|
-
* @description Retrieves single
|
|
8958
|
+
* Get single client.
|
|
8959
|
+
* @description Retrieves single client by id.
|
|
8284
8960
|
*/
|
|
8285
8961
|
get: {
|
|
8286
8962
|
parameters: {
|
|
8287
8963
|
query?: {
|
|
8288
|
-
/**
|
|
8289
|
-
* @description ISO 3166-1 alpha-2 country code
|
|
8290
|
-
* @example US
|
|
8291
|
-
*/
|
|
8292
|
-
countryCode?: string;
|
|
8293
8964
|
/**
|
|
8294
8965
|
* @description Allows the client to customize which related resources should be returned. Available options: owners
|
|
8295
8966
|
* @example owners
|
|
@@ -8299,7 +8970,7 @@ declare interface paths {
|
|
|
8299
8970
|
header?: never;
|
|
8300
8971
|
path: {
|
|
8301
8972
|
/**
|
|
8302
|
-
* @description
|
|
8973
|
+
* @description OAuth client identifier
|
|
8303
8974
|
* @example a468bee88def
|
|
8304
8975
|
*/
|
|
8305
8976
|
id: string;
|
|
@@ -8314,7 +8985,7 @@ declare interface paths {
|
|
|
8314
8985
|
[name: string]: unknown;
|
|
8315
8986
|
};
|
|
8316
8987
|
content: {
|
|
8317
|
-
"application/vnd.api+json": components["schemas"]["
|
|
8988
|
+
"application/vnd.api+json": components["schemas"]["Clients_Single_Resource_Data_Document"];
|
|
8318
8989
|
};
|
|
8319
8990
|
};
|
|
8320
8991
|
400: components["responses"]["Default400Response"];
|
|
@@ -8329,13 +9000,83 @@ declare interface paths {
|
|
|
8329
9000
|
};
|
|
8330
9001
|
put?: never;
|
|
8331
9002
|
post?: never;
|
|
8332
|
-
|
|
9003
|
+
/**
|
|
9004
|
+
* Delete single client.
|
|
9005
|
+
* @description Deletes existing client.
|
|
9006
|
+
*/
|
|
9007
|
+
delete: {
|
|
9008
|
+
parameters: {
|
|
9009
|
+
query?: never;
|
|
9010
|
+
header?: {
|
|
9011
|
+
/** @description Unique idempotency key for safe retry of mutation requests. If a duplicate key is sent with the same payload, the original response is replayed. If the payload differs, a 422 error is returned. */
|
|
9012
|
+
"Idempotency-Key"?: components["parameters"]["IdempotencyKey"];
|
|
9013
|
+
};
|
|
9014
|
+
path: {
|
|
9015
|
+
/**
|
|
9016
|
+
* @description OAuth client identifier
|
|
9017
|
+
* @example a468bee88def
|
|
9018
|
+
*/
|
|
9019
|
+
id: string;
|
|
9020
|
+
};
|
|
9021
|
+
cookie?: never;
|
|
9022
|
+
};
|
|
9023
|
+
requestBody?: never;
|
|
9024
|
+
responses: {
|
|
9025
|
+
400: components["responses"]["Default400Response"];
|
|
9026
|
+
404: components["responses"]["Default404Response"];
|
|
9027
|
+
405: components["responses"]["Default405Response"];
|
|
9028
|
+
406: components["responses"]["Default406Response"];
|
|
9029
|
+
409: components["responses"]["Idempotency409Response"];
|
|
9030
|
+
415: components["responses"]["Default415Response"];
|
|
9031
|
+
422: components["responses"]["Idempotency422Response"];
|
|
9032
|
+
429: components["responses"]["Default429Response"];
|
|
9033
|
+
500: components["responses"]["Default500Response"];
|
|
9034
|
+
503: components["responses"]["Default503Response"];
|
|
9035
|
+
};
|
|
9036
|
+
};
|
|
8333
9037
|
options?: never;
|
|
8334
9038
|
head?: never;
|
|
8335
|
-
|
|
9039
|
+
/**
|
|
9040
|
+
* Update single client.
|
|
9041
|
+
* @description Updates existing client.
|
|
9042
|
+
*/
|
|
9043
|
+
patch: {
|
|
9044
|
+
parameters: {
|
|
9045
|
+
query?: never;
|
|
9046
|
+
header?: {
|
|
9047
|
+
/** @description Unique idempotency key for safe retry of mutation requests. If a duplicate key is sent with the same payload, the original response is replayed. If the payload differs, a 422 error is returned. */
|
|
9048
|
+
"Idempotency-Key"?: components["parameters"]["IdempotencyKey"];
|
|
9049
|
+
};
|
|
9050
|
+
path: {
|
|
9051
|
+
/**
|
|
9052
|
+
* @description OAuth client identifier
|
|
9053
|
+
* @example a468bee88def
|
|
9054
|
+
*/
|
|
9055
|
+
id: string;
|
|
9056
|
+
};
|
|
9057
|
+
cookie?: never;
|
|
9058
|
+
};
|
|
9059
|
+
requestBody?: {
|
|
9060
|
+
content: {
|
|
9061
|
+
"application/vnd.api+json": components["schemas"]["ClientsUpdateOperation_Payload"];
|
|
9062
|
+
};
|
|
9063
|
+
};
|
|
9064
|
+
responses: {
|
|
9065
|
+
400: components["responses"]["Default400Response"];
|
|
9066
|
+
404: components["responses"]["Default404Response"];
|
|
9067
|
+
405: components["responses"]["Default405Response"];
|
|
9068
|
+
406: components["responses"]["Default406Response"];
|
|
9069
|
+
409: components["responses"]["Idempotency409Response"];
|
|
9070
|
+
415: components["responses"]["Default415Response"];
|
|
9071
|
+
422: components["responses"]["Idempotency422Response"];
|
|
9072
|
+
429: components["responses"]["Default429Response"];
|
|
9073
|
+
500: components["responses"]["Default500Response"];
|
|
9074
|
+
503: components["responses"]["Default503Response"];
|
|
9075
|
+
};
|
|
9076
|
+
};
|
|
8336
9077
|
trace?: never;
|
|
8337
9078
|
};
|
|
8338
|
-
"/
|
|
9079
|
+
"/clients/{id}/relationships/owners": {
|
|
8339
9080
|
parameters: {
|
|
8340
9081
|
query?: never;
|
|
8341
9082
|
header?: never;
|
|
@@ -8360,7 +9101,7 @@ declare interface paths {
|
|
|
8360
9101
|
header?: never;
|
|
8361
9102
|
path: {
|
|
8362
9103
|
/**
|
|
8363
|
-
* @description
|
|
9104
|
+
* @description OAuth client identifier
|
|
8364
9105
|
* @example a468bee88def
|
|
8365
9106
|
*/
|
|
8366
9107
|
id: string;
|
|
@@ -8375,7 +9116,7 @@ declare interface paths {
|
|
|
8375
9116
|
[name: string]: unknown;
|
|
8376
9117
|
};
|
|
8377
9118
|
content: {
|
|
8378
|
-
"application/vnd.api+json": components["schemas"]["
|
|
9119
|
+
"application/vnd.api+json": components["schemas"]["Clients_Multi_Relationship_Data_Document"];
|
|
8379
9120
|
};
|
|
8380
9121
|
};
|
|
8381
9122
|
400: components["responses"]["Default400Response"];
|
|
@@ -14540,6 +15281,113 @@ declare interface paths {
|
|
|
14540
15281
|
patch?: never;
|
|
14541
15282
|
trace?: never;
|
|
14542
15283
|
};
|
|
15284
|
+
"/terms": {
|
|
15285
|
+
parameters: {
|
|
15286
|
+
query?: never;
|
|
15287
|
+
header?: never;
|
|
15288
|
+
path?: never;
|
|
15289
|
+
cookie?: never;
|
|
15290
|
+
};
|
|
15291
|
+
/**
|
|
15292
|
+
* Get multiple terms.
|
|
15293
|
+
* @description Retrieves multiple terms by available filters, or without if applicable.
|
|
15294
|
+
*/
|
|
15295
|
+
get: {
|
|
15296
|
+
parameters: {
|
|
15297
|
+
query?: {
|
|
15298
|
+
/** @description Terms id (e.g. `4gfFC5kRVs84pMJpMq3Y8K`) */
|
|
15299
|
+
"filter[id]"?: string[];
|
|
15300
|
+
/** @description Filter by isLatestVersion */
|
|
15301
|
+
"filter[isLatestVersion]"?: string[];
|
|
15302
|
+
/** @description One of: DEVELOPER (e.g. `DEVELOPER`) */
|
|
15303
|
+
"filter[termsType]"?: "DEVELOPER"[];
|
|
15304
|
+
};
|
|
15305
|
+
header?: never;
|
|
15306
|
+
path?: never;
|
|
15307
|
+
cookie?: never;
|
|
15308
|
+
};
|
|
15309
|
+
requestBody?: never;
|
|
15310
|
+
responses: {
|
|
15311
|
+
/** @description Successful response */
|
|
15312
|
+
200: {
|
|
15313
|
+
headers: {
|
|
15314
|
+
[name: string]: unknown;
|
|
15315
|
+
};
|
|
15316
|
+
content: {
|
|
15317
|
+
"application/vnd.api+json": components["schemas"]["Terms_Multi_Resource_Data_Document"];
|
|
15318
|
+
};
|
|
15319
|
+
};
|
|
15320
|
+
400: components["responses"]["Default400Response"];
|
|
15321
|
+
404: components["responses"]["Default404Response"];
|
|
15322
|
+
405: components["responses"]["Default405Response"];
|
|
15323
|
+
406: components["responses"]["Default406Response"];
|
|
15324
|
+
415: components["responses"]["Default415Response"];
|
|
15325
|
+
429: components["responses"]["Default429Response"];
|
|
15326
|
+
500: components["responses"]["Default500Response"];
|
|
15327
|
+
503: components["responses"]["Default503Response"];
|
|
15328
|
+
};
|
|
15329
|
+
};
|
|
15330
|
+
put?: never;
|
|
15331
|
+
post?: never;
|
|
15332
|
+
delete?: never;
|
|
15333
|
+
options?: never;
|
|
15334
|
+
head?: never;
|
|
15335
|
+
patch?: never;
|
|
15336
|
+
trace?: never;
|
|
15337
|
+
};
|
|
15338
|
+
"/terms/{id}": {
|
|
15339
|
+
parameters: {
|
|
15340
|
+
query?: never;
|
|
15341
|
+
header?: never;
|
|
15342
|
+
path?: never;
|
|
15343
|
+
cookie?: never;
|
|
15344
|
+
};
|
|
15345
|
+
/**
|
|
15346
|
+
* Get single term.
|
|
15347
|
+
* @description Retrieves single term by id.
|
|
15348
|
+
*/
|
|
15349
|
+
get: {
|
|
15350
|
+
parameters: {
|
|
15351
|
+
query?: never;
|
|
15352
|
+
header?: never;
|
|
15353
|
+
path: {
|
|
15354
|
+
/**
|
|
15355
|
+
* @description Terms id
|
|
15356
|
+
* @example 4gfFC5kRVs84pMJpMq3Y8K
|
|
15357
|
+
*/
|
|
15358
|
+
id: string;
|
|
15359
|
+
};
|
|
15360
|
+
cookie?: never;
|
|
15361
|
+
};
|
|
15362
|
+
requestBody?: never;
|
|
15363
|
+
responses: {
|
|
15364
|
+
/** @description Successful response */
|
|
15365
|
+
200: {
|
|
15366
|
+
headers: {
|
|
15367
|
+
[name: string]: unknown;
|
|
15368
|
+
};
|
|
15369
|
+
content: {
|
|
15370
|
+
"application/vnd.api+json": components["schemas"]["Terms_Single_Resource_Data_Document"];
|
|
15371
|
+
};
|
|
15372
|
+
};
|
|
15373
|
+
400: components["responses"]["Default400Response"];
|
|
15374
|
+
404: components["responses"]["Default404Response"];
|
|
15375
|
+
405: components["responses"]["Default405Response"];
|
|
15376
|
+
406: components["responses"]["Default406Response"];
|
|
15377
|
+
415: components["responses"]["Default415Response"];
|
|
15378
|
+
429: components["responses"]["Default429Response"];
|
|
15379
|
+
500: components["responses"]["Default500Response"];
|
|
15380
|
+
503: components["responses"]["Default503Response"];
|
|
15381
|
+
};
|
|
15382
|
+
};
|
|
15383
|
+
put?: never;
|
|
15384
|
+
post?: never;
|
|
15385
|
+
delete?: never;
|
|
15386
|
+
options?: never;
|
|
15387
|
+
head?: never;
|
|
15388
|
+
patch?: never;
|
|
15389
|
+
trace?: never;
|
|
15390
|
+
};
|
|
14543
15391
|
"/trackFiles/{id}": {
|
|
14544
15392
|
parameters: {
|
|
14545
15393
|
query?: never;
|