Add updateAnnotation interfaces
All checks were successful
Tests / Tests (pull_request) Successful in 8s
All checks were successful
Tests / Tests (pull_request) Successful in 8s
This commit is contained in:
parent
b2a09c1b8c
commit
91cfcb28e7
@ -1747,6 +1747,7 @@ export type Mutation = {
|
||||
getUploadLink: GetUploadLinkReturn;
|
||||
setLoggerLevel: Scalars["Boolean"]["output"];
|
||||
setSegmentDuration: Scalars["Boolean"]["output"];
|
||||
updateShotAnnotations: UpdateShotAnnotationReturn;
|
||||
};
|
||||
|
||||
export type MutationAddAnnotationToShotArgs = {
|
||||
@ -1800,6 +1801,11 @@ export type MutationSetSegmentDurationArgs = {
|
||||
videoId: Scalars["Int"]["input"];
|
||||
};
|
||||
|
||||
export type MutationUpdateShotAnnotationsArgs = {
|
||||
annotations: Array<UpdateAnnotationInputGql>;
|
||||
shotId: Scalars["Int"]["input"];
|
||||
};
|
||||
|
||||
export type NoInitForChunkedUploadErr = {
|
||||
__typename?: "NoInitForChunkedUploadErr";
|
||||
segmentType: StreamSegmentTypeEnum;
|
||||
@ -2061,6 +2067,15 @@ export type SuccessfulAddAddShotAnnotationErrors =
|
||||
| AddShotAnnotationErrors
|
||||
| SuccessfulAdd;
|
||||
|
||||
export type SuccessfulUpdate = {
|
||||
__typename?: "SuccessfulUpdate";
|
||||
value: Scalars["Boolean"]["output"];
|
||||
};
|
||||
|
||||
export type SuccessfulUpdateUpdateShotAnnotationErrors =
|
||||
| SuccessfulUpdate
|
||||
| UpdateShotAnnotationErrors;
|
||||
|
||||
export type TagGql = {
|
||||
__typename?: "TagGQL";
|
||||
group?: Maybe<Scalars["String"]["output"]>;
|
||||
@ -2098,6 +2113,21 @@ export type TooManyProfileImageUploadsErr = {
|
||||
linksRequested: Scalars["Int"]["output"];
|
||||
};
|
||||
|
||||
export type UpdateAnnotationInputGql = {
|
||||
name: Scalars["String"]["input"];
|
||||
notes?: InputMaybe<Scalars["String"]["input"]>;
|
||||
};
|
||||
|
||||
export type UpdateShotAnnotationErrors = {
|
||||
__typename?: "UpdateShotAnnotationErrors";
|
||||
error?: Maybe<DoesNotOwnShotErr>;
|
||||
};
|
||||
|
||||
export type UpdateShotAnnotationReturn = {
|
||||
__typename?: "UpdateShotAnnotationReturn";
|
||||
value: SuccessfulUpdateUpdateShotAnnotationErrors;
|
||||
};
|
||||
|
||||
export type UploadLink = {
|
||||
__typename?: "UploadLink";
|
||||
headers: Array<Maybe<Header>>;
|
||||
|
@ -545,6 +545,10 @@ type Mutation {
|
||||
annotationName: String!
|
||||
notes: String = null
|
||||
): AddShotAnnotationReturn!
|
||||
updateShotAnnotations(
|
||||
shotId: Int!
|
||||
annotations: [UpdateAnnotationInputGQL!]!
|
||||
): UpdateShotAnnotationReturn!
|
||||
getProfileImageUploadLink(
|
||||
fileExt: String = ".png"
|
||||
): GetProfileUploadLinkReturn!
|
||||
@ -598,6 +602,27 @@ type OtherErrorNeedsNote {
|
||||
msg: String
|
||||
}
|
||||
|
||||
type UpdateShotAnnotationReturn {
|
||||
value: SuccessfulUpdateUpdateShotAnnotationErrors!
|
||||
}
|
||||
|
||||
union SuccessfulUpdateUpdateShotAnnotationErrors =
|
||||
SuccessfulUpdate
|
||||
| UpdateShotAnnotationErrors
|
||||
|
||||
type SuccessfulUpdate {
|
||||
value: Boolean!
|
||||
}
|
||||
|
||||
type UpdateShotAnnotationErrors {
|
||||
error: DoesNotOwnShotErr
|
||||
}
|
||||
|
||||
input UpdateAnnotationInputGQL {
|
||||
name: String!
|
||||
notes: String = null
|
||||
}
|
||||
|
||||
type GetProfileUploadLinkReturn {
|
||||
value: UploadLinkGetProfileUploadLinkErrors!
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user