Merge branch 'master' into delete_scene

This commit is contained in:
WithoutPants
2019-08-20 15:37:58 +10:00
committed by GitHub
21 changed files with 458 additions and 17 deletions

View File

@@ -109,6 +109,10 @@ type PerformerCreateInput struct {
Image string `json:"image"`
}
type PerformerDestroyInput struct {
ID string `json:"id"`
}
type PerformerFilterType struct {
// Filter by favorite
FilterFavorites *bool `json:"filter_favorites"`
@@ -260,6 +264,10 @@ type StudioCreateInput struct {
Image string `json:"image"`
}
type StudioDestroyInput struct {
ID string `json:"id"`
}
type StudioUpdateInput struct {
ID string `json:"id"`
Name *string `json:"name"`