mirror of
https://github.com/stashapp/stash.git
synced 2025-12-18 04:44:37 +03:00
added details, deathdate, hair color, weight to performers and added details to studios (#1274)
* added details to performers and studios * added deathdate, hair_color and weight to performers * Simplify performer/studio create mutations * Add changelog and recategorised Co-authored-by: WithoutPants <53250216+WithoutPants@users.noreply.github.com>
This commit is contained in:
@@ -52,10 +52,13 @@ url
|
||||
twitter
|
||||
instagram
|
||||
birthdate
|
||||
death_date
|
||||
ethnicity
|
||||
country
|
||||
hair_color
|
||||
eye_color
|
||||
height
|
||||
weight
|
||||
measurements
|
||||
fake_tits
|
||||
career_length
|
||||
@@ -64,6 +67,7 @@ piercings
|
||||
image (base64 encoding of the image file)
|
||||
created_at
|
||||
updated_at
|
||||
details
|
||||
```
|
||||
|
||||
## Studio
|
||||
@@ -72,7 +76,8 @@ name
|
||||
url
|
||||
image (base64 encoding of the image file)
|
||||
created_at
|
||||
updated_at
|
||||
updated_at
|
||||
details
|
||||
```
|
||||
|
||||
## Scene
|
||||
@@ -229,6 +234,10 @@ For those preferring the json-format, defined [here](https://json-schema.org/),
|
||||
"description": "Birthdate of the performer. Format is YYYY-MM-DD",
|
||||
"type": "string"
|
||||
},
|
||||
"death_date": {
|
||||
"description": "Death date of the performer. Format is YYYY-MM-DD",
|
||||
"type": "string"
|
||||
},
|
||||
"ethnicity": {
|
||||
"description": "Ethnicity of the Performer. Possible values are black, white, asian or hispanic",
|
||||
"type": "string"
|
||||
@@ -237,6 +246,10 @@ For those preferring the json-format, defined [here](https://json-schema.org/),
|
||||
"description": "Country of the performer",
|
||||
"type": "string"
|
||||
},
|
||||
"hair_color": {
|
||||
"description": "Hair color of the performer",
|
||||
"type": "string"
|
||||
},
|
||||
"eye_color": {
|
||||
"description": "Eye color of the performer",
|
||||
"type": "string"
|
||||
@@ -245,6 +258,10 @@ For those preferring the json-format, defined [here](https://json-schema.org/),
|
||||
"description": "Height of the performer in centimeters",
|
||||
"type": "string"
|
||||
},
|
||||
"weight": {
|
||||
"description": "Weight of the performer in kilograms",
|
||||
"type": "string"
|
||||
},
|
||||
"measurements": {
|
||||
"description": "Measurements of the performer",
|
||||
"type": "string"
|
||||
@@ -276,6 +293,10 @@ For those preferring the json-format, defined [here](https://json-schema.org/),
|
||||
"updated_at": {
|
||||
"description": "The time this performers data was last changed in the database. Format is YYYY-MM-DDThh:mm:ssTZD",
|
||||
"type": "string"
|
||||
},
|
||||
"details": {
|
||||
"description": "Description of the performer",
|
||||
"type": "string"
|
||||
}
|
||||
},
|
||||
"required": ["name", "ethnicity", "image", "created_at", "updated_at"]
|
||||
@@ -312,6 +333,10 @@ For those preferring the json-format, defined [here](https://json-schema.org/),
|
||||
"updated_at": {
|
||||
"description": "The time this studios data was last changed in the database. Format is YYYY-MM-DDThh:mm:ssTZD",
|
||||
"type": "string"
|
||||
},
|
||||
"details": {
|
||||
"description": "Description of the studio",
|
||||
"type": "string"
|
||||
}
|
||||
},
|
||||
"required": ["name", "image", "created_at", "updated_at"]
|
||||
|
||||
@@ -740,10 +740,13 @@ URL
|
||||
Twitter
|
||||
Instagram
|
||||
Birthdate
|
||||
DeathDate
|
||||
Ethnicity
|
||||
Country
|
||||
HairColor
|
||||
EyeColor
|
||||
Height
|
||||
Weight
|
||||
Measurements
|
||||
FakeTits
|
||||
CareerLength
|
||||
@@ -752,6 +755,7 @@ Piercings
|
||||
Aliases
|
||||
Tags (see Tag fields)
|
||||
Image
|
||||
Details
|
||||
```
|
||||
|
||||
*Note:* - `Gender` must be one of `male`, `female`, `transgender_male`, `transgender_female`, `intersex`, `non_binary` (case insensitive).
|
||||
|
||||
Reference in New Issue
Block a user