schema
This commit is contained in:
parent
e55e90f84d
commit
4b3a071150
|
@ -7157,7 +7157,7 @@ paths:
|
||||||
description: ''
|
description: ''
|
||||||
/api/v1/playlists/{uuid}/artists/:
|
/api/v1/playlists/{uuid}/artists/:
|
||||||
get:
|
get:
|
||||||
operationId: get_playlist_artits
|
operationId: get_playlist_artists
|
||||||
parameters:
|
parameters:
|
||||||
- in: query
|
- in: query
|
||||||
name: format
|
name: format
|
||||||
|
@ -16702,7 +16702,7 @@ paths:
|
||||||
description: ''
|
description: ''
|
||||||
/api/v2/playlists/{uuid}/artists/:
|
/api/v2/playlists/{uuid}/artists/:
|
||||||
get:
|
get:
|
||||||
operationId: get_playlist_artits_2
|
operationId: get_playlist_artists_2
|
||||||
parameters:
|
parameters:
|
||||||
- in: query
|
- in: query
|
||||||
name: format
|
name: format
|
||||||
|
@ -20659,18 +20659,32 @@ components:
|
||||||
format: date-time
|
format: date-time
|
||||||
readOnly: true
|
readOnly: true
|
||||||
nullable: true
|
nullable: true
|
||||||
|
type:
|
||||||
|
type: string
|
||||||
|
readOnly: true
|
||||||
|
object:
|
||||||
|
oneOf:
|
||||||
|
- $ref: '#/components/schemas/Artist'
|
||||||
|
- $ref: '#/components/schemas/Album'
|
||||||
|
- $ref: '#/components/schemas/Track'
|
||||||
|
- $ref: '#/components/schemas/APIActor'
|
||||||
|
- $ref: '#/components/schemas/Channel'
|
||||||
|
- $ref: '#/components/schemas/Playlist'
|
||||||
|
readOnly: true
|
||||||
required:
|
required:
|
||||||
- actor
|
- actor
|
||||||
- creation_date
|
- creation_date
|
||||||
- detail
|
- detail
|
||||||
- fetch_date
|
- fetch_date
|
||||||
- id
|
- id
|
||||||
|
- object
|
||||||
- status
|
- status
|
||||||
|
- type
|
||||||
- url
|
- url
|
||||||
FetchRequest:
|
FetchRequest:
|
||||||
type: object
|
type: object
|
||||||
properties:
|
properties:
|
||||||
object:
|
object_uri:
|
||||||
type: string
|
type: string
|
||||||
writeOnly: true
|
writeOnly: true
|
||||||
minLength: 1
|
minLength: 1
|
||||||
|
@ -20679,7 +20693,7 @@ components:
|
||||||
writeOnly: true
|
writeOnly: true
|
||||||
default: false
|
default: false
|
||||||
required:
|
required:
|
||||||
- object
|
- object_uri
|
||||||
FetchStatusEnum:
|
FetchStatusEnum:
|
||||||
enum:
|
enum:
|
||||||
- pending
|
- pending
|
||||||
|
|
|
@ -2288,7 +2288,7 @@ export interface paths {
|
||||||
path?: never;
|
path?: never;
|
||||||
cookie?: never;
|
cookie?: never;
|
||||||
};
|
};
|
||||||
get: operations["get_playlist_artits"];
|
get: operations["get_playlist_artists"];
|
||||||
put?: never;
|
put?: never;
|
||||||
post?: never;
|
post?: never;
|
||||||
delete?: never;
|
delete?: never;
|
||||||
|
@ -5281,7 +5281,7 @@ export interface paths {
|
||||||
path?: never;
|
path?: never;
|
||||||
cookie?: never;
|
cookie?: never;
|
||||||
};
|
};
|
||||||
get: operations["get_playlist_artits_2"];
|
get: operations["get_playlist_artists_2"];
|
||||||
put?: never;
|
put?: never;
|
||||||
post?: never;
|
post?: never;
|
||||||
delete?: never;
|
delete?: never;
|
||||||
|
@ -14304,7 +14304,7 @@ export interface operations {
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
get_playlist_artits: {
|
get_playlist_artists: {
|
||||||
parameters: {
|
parameters: {
|
||||||
query?: {
|
query?: {
|
||||||
format?: "json" | "xspf";
|
format?: "json" | "xspf";
|
||||||
|
@ -21305,7 +21305,7 @@ export interface operations {
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
get_playlist_artits_2: {
|
get_playlist_artists_2: {
|
||||||
parameters: {
|
parameters: {
|
||||||
query?: {
|
query?: {
|
||||||
format?: "json" | "xspf";
|
format?: "json" | "xspf";
|
||||||
|
|
Loading…
Reference in New Issue