fix(api): enum schema description (#2803)
This commit is contained in:
parent
c0465f85f4
commit
976b70ed32
|
@ -5312,7 +5312,7 @@ components:
|
||||||
readOnly: true
|
readOnly: true
|
||||||
import_status:
|
import_status:
|
||||||
allOf:
|
allOf:
|
||||||
- $ref: "#/components/schemas/PlaylistContentKindEnum"
|
- $ref: "#/components/schemas/FileImportStatusEnum"
|
||||||
minimum: -2147483648
|
minimum: -2147483648
|
||||||
maximum: 2147483647
|
maximum: 2147483647
|
||||||
filepath:
|
filepath:
|
||||||
|
@ -5564,6 +5564,16 @@ components:
|
||||||
- mime
|
- mime
|
||||||
- name
|
- name
|
||||||
- size
|
- size
|
||||||
|
FileImportStatusEnum:
|
||||||
|
enum:
|
||||||
|
- 0
|
||||||
|
- 1
|
||||||
|
- 2
|
||||||
|
type: integer
|
||||||
|
description: |-
|
||||||
|
* `0` - Success
|
||||||
|
* `1` - Pending
|
||||||
|
* `2` - Failed
|
||||||
ImportedPodcast:
|
ImportedPodcast:
|
||||||
type: object
|
type: object
|
||||||
properties:
|
properties:
|
||||||
|
@ -5714,7 +5724,7 @@ components:
|
||||||
readOnly: true
|
readOnly: true
|
||||||
import_status:
|
import_status:
|
||||||
allOf:
|
allOf:
|
||||||
- $ref: "#/components/schemas/PlaylistContentKindEnum"
|
- $ref: "#/components/schemas/FileImportStatusEnum"
|
||||||
minimum: -2147483648
|
minimum: -2147483648
|
||||||
maximum: 2147483647
|
maximum: 2147483647
|
||||||
filepath:
|
filepath:
|
||||||
|
@ -6857,9 +6867,9 @@ components:
|
||||||
- 2
|
- 2
|
||||||
type: integer
|
type: integer
|
||||||
description: |-
|
description: |-
|
||||||
* `0` - Success
|
* `0` - File
|
||||||
* `1` - Pending
|
* `1` - Stream
|
||||||
* `2` - Failed
|
* `2` - Block
|
||||||
PlayoutHistory:
|
PlayoutHistory:
|
||||||
type: object
|
type: object
|
||||||
properties:
|
properties:
|
||||||
|
|
Loading…
Reference in New Issue