Compare commits
No commits in common. "3051c155e29ec8903ff34b9341d4563fe586da98" and "d49f9b213aa8298ed11fd93a667b653c9977b5b0" have entirely different histories.
3051c155e2
...
d49f9b213a
126
src/index.tsx
126
src/index.tsx
@ -2759,28 +2759,6 @@ export type GetShotAnnotationTypesQuery = {
|
|||||||
}>;
|
}>;
|
||||||
};
|
};
|
||||||
|
|
||||||
export type UpdateShotAnnotationsMutationVariables = Exact<{
|
|
||||||
shotId: Scalars["Int"]["input"];
|
|
||||||
annotations: Array<UpdateAnnotationInputGql> | UpdateAnnotationInputGql;
|
|
||||||
}>;
|
|
||||||
|
|
||||||
export type UpdateShotAnnotationsMutation = {
|
|
||||||
__typename?: "Mutation";
|
|
||||||
updateShotAnnotations: {
|
|
||||||
__typename?: "UpdateShotAnnotationReturn";
|
|
||||||
value:
|
|
||||||
| { __typename?: "SuccessfulUpdate"; value: boolean }
|
|
||||||
| {
|
|
||||||
__typename?: "UpdateShotAnnotationErrors";
|
|
||||||
error?: {
|
|
||||||
__typename?: "DoesNotOwnShotErr";
|
|
||||||
shotId: number;
|
|
||||||
msg?: string | null;
|
|
||||||
} | null;
|
|
||||||
};
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
export type GetShotsWithVideoGqlQueryVariables = Exact<{
|
export type GetShotsWithVideoGqlQueryVariables = Exact<{
|
||||||
filterInput: FilterInput;
|
filterInput: FilterInput;
|
||||||
limit?: InputMaybe<Scalars["Int"]["input"]>;
|
limit?: InputMaybe<Scalars["Int"]["input"]>;
|
||||||
@ -2856,16 +2834,6 @@ export type GetShotsWithMetadataFilterResultQuery = {
|
|||||||
__typename?: "SerializedShotPathsGQL";
|
__typename?: "SerializedShotPathsGQL";
|
||||||
b64EncodedBuffer?: string | null;
|
b64EncodedBuffer?: string | null;
|
||||||
} | null;
|
} | null;
|
||||||
annotations: Array<{
|
|
||||||
__typename?: "ShotAnnotationGQL";
|
|
||||||
shotId: number;
|
|
||||||
notes: string;
|
|
||||||
type: {
|
|
||||||
__typename?: "ShotAnnotationTypeGQL";
|
|
||||||
id: number;
|
|
||||||
name: string;
|
|
||||||
};
|
|
||||||
}>;
|
|
||||||
}>;
|
}>;
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
@ -2922,16 +2890,6 @@ export type GetShotsWithMetadataQuery = {
|
|||||||
__typename?: "SerializedShotPathsGQL";
|
__typename?: "SerializedShotPathsGQL";
|
||||||
b64EncodedBuffer?: string | null;
|
b64EncodedBuffer?: string | null;
|
||||||
} | null;
|
} | null;
|
||||||
annotations: Array<{
|
|
||||||
__typename?: "ShotAnnotationGQL";
|
|
||||||
shotId: number;
|
|
||||||
notes: string;
|
|
||||||
type: {
|
|
||||||
__typename?: "ShotAnnotationTypeGQL";
|
|
||||||
id: number;
|
|
||||||
name: string;
|
|
||||||
};
|
|
||||||
}>;
|
|
||||||
}>;
|
}>;
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
@ -2981,12 +2939,6 @@ export type GetShotsByIdsQuery = {
|
|||||||
__typename?: "SerializedShotPathsGQL";
|
__typename?: "SerializedShotPathsGQL";
|
||||||
b64EncodedBuffer?: string | null;
|
b64EncodedBuffer?: string | null;
|
||||||
} | null;
|
} | null;
|
||||||
annotations: Array<{
|
|
||||||
__typename?: "ShotAnnotationGQL";
|
|
||||||
shotId: number;
|
|
||||||
notes: string;
|
|
||||||
type: { __typename?: "ShotAnnotationTypeGQL"; id: number; name: string };
|
|
||||||
}>;
|
|
||||||
}>;
|
}>;
|
||||||
};
|
};
|
||||||
|
|
||||||
@ -3029,12 +2981,6 @@ export type ShotWithAllFeaturesFragment = {
|
|||||||
__typename?: "SerializedShotPathsGQL";
|
__typename?: "SerializedShotPathsGQL";
|
||||||
b64EncodedBuffer?: string | null;
|
b64EncodedBuffer?: string | null;
|
||||||
} | null;
|
} | null;
|
||||||
annotations: Array<{
|
|
||||||
__typename?: "ShotAnnotationGQL";
|
|
||||||
shotId: number;
|
|
||||||
notes: string;
|
|
||||||
type: { __typename?: "ShotAnnotationTypeGQL"; id: number; name: string };
|
|
||||||
}>;
|
|
||||||
};
|
};
|
||||||
|
|
||||||
export type GetProfileImageUploadLinkMutationVariables = Exact<{
|
export type GetProfileImageUploadLinkMutationVariables = Exact<{
|
||||||
@ -3762,14 +3708,6 @@ export const ShotWithAllFeaturesFragmentDoc = gql`
|
|||||||
serializedShotPaths {
|
serializedShotPaths {
|
||||||
b64EncodedBuffer
|
b64EncodedBuffer
|
||||||
}
|
}
|
||||||
annotations {
|
|
||||||
shotId
|
|
||||||
type {
|
|
||||||
id
|
|
||||||
name
|
|
||||||
}
|
|
||||||
notes
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
`;
|
`;
|
||||||
export const VideoStreamMetadataFragmentDoc = gql`
|
export const VideoStreamMetadataFragmentDoc = gql`
|
||||||
@ -4334,70 +4272,6 @@ export type GetShotAnnotationTypesQueryResult = Apollo.QueryResult<
|
|||||||
GetShotAnnotationTypesQuery,
|
GetShotAnnotationTypesQuery,
|
||||||
GetShotAnnotationTypesQueryVariables
|
GetShotAnnotationTypesQueryVariables
|
||||||
>;
|
>;
|
||||||
export const UpdateShotAnnotationsDocument = gql`
|
|
||||||
mutation UpdateShotAnnotations(
|
|
||||||
$shotId: Int!
|
|
||||||
$annotations: [UpdateAnnotationInputGQL!]!
|
|
||||||
) {
|
|
||||||
updateShotAnnotations(shotId: $shotId, annotations: $annotations) {
|
|
||||||
value {
|
|
||||||
... on SuccessfulUpdate {
|
|
||||||
value
|
|
||||||
}
|
|
||||||
... on UpdateShotAnnotationErrors {
|
|
||||||
error {
|
|
||||||
shotId
|
|
||||||
msg
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
`;
|
|
||||||
export type UpdateShotAnnotationsMutationFn = Apollo.MutationFunction<
|
|
||||||
UpdateShotAnnotationsMutation,
|
|
||||||
UpdateShotAnnotationsMutationVariables
|
|
||||||
>;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* __useUpdateShotAnnotationsMutation__
|
|
||||||
*
|
|
||||||
* To run a mutation, you first call `useUpdateShotAnnotationsMutation` within a React component and pass it any options that fit your needs.
|
|
||||||
* When your component renders, `useUpdateShotAnnotationsMutation` returns a tuple that includes:
|
|
||||||
* - A mutate function that you can call at any time to execute the mutation
|
|
||||||
* - An object with fields that represent the current status of the mutation's execution
|
|
||||||
*
|
|
||||||
* @param baseOptions options that will be passed into the mutation, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options-2;
|
|
||||||
*
|
|
||||||
* @example
|
|
||||||
* const [updateShotAnnotationsMutation, { data, loading, error }] = useUpdateShotAnnotationsMutation({
|
|
||||||
* variables: {
|
|
||||||
* shotId: // value for 'shotId'
|
|
||||||
* annotations: // value for 'annotations'
|
|
||||||
* },
|
|
||||||
* });
|
|
||||||
*/
|
|
||||||
export function useUpdateShotAnnotationsMutation(
|
|
||||||
baseOptions?: Apollo.MutationHookOptions<
|
|
||||||
UpdateShotAnnotationsMutation,
|
|
||||||
UpdateShotAnnotationsMutationVariables
|
|
||||||
>,
|
|
||||||
) {
|
|
||||||
const options = { ...defaultOptions, ...baseOptions };
|
|
||||||
return Apollo.useMutation<
|
|
||||||
UpdateShotAnnotationsMutation,
|
|
||||||
UpdateShotAnnotationsMutationVariables
|
|
||||||
>(UpdateShotAnnotationsDocument, options);
|
|
||||||
}
|
|
||||||
export type UpdateShotAnnotationsMutationHookResult = ReturnType<
|
|
||||||
typeof useUpdateShotAnnotationsMutation
|
|
||||||
>;
|
|
||||||
export type UpdateShotAnnotationsMutationResult =
|
|
||||||
Apollo.MutationResult<UpdateShotAnnotationsMutation>;
|
|
||||||
export type UpdateShotAnnotationsMutationOptions = Apollo.BaseMutationOptions<
|
|
||||||
UpdateShotAnnotationsMutation,
|
|
||||||
UpdateShotAnnotationsMutationVariables
|
|
||||||
>;
|
|
||||||
export const GetShotsWithVideoGqlDocument = gql`
|
export const GetShotsWithVideoGqlDocument = gql`
|
||||||
query GetShotsWithVideoGql($filterInput: FilterInput!, $limit: Int) {
|
query GetShotsWithVideoGql($filterInput: FilterInput!, $limit: Int) {
|
||||||
getShotsWithMetadata(filterInput: $filterInput, limit: $limit) {
|
getShotsWithMetadata(filterInput: $filterInput, limit: $limit) {
|
||||||
|
@ -17,25 +17,6 @@ query GetShotAnnotationTypes {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
mutation UpdateShotAnnotations(
|
|
||||||
$shotId: Int!
|
|
||||||
$annotations: [UpdateAnnotationInputGQL!]!
|
|
||||||
) {
|
|
||||||
updateShotAnnotations(shotId: $shotId, annotations: $annotations) {
|
|
||||||
value {
|
|
||||||
... on SuccessfulUpdate {
|
|
||||||
value
|
|
||||||
}
|
|
||||||
... on UpdateShotAnnotationErrors {
|
|
||||||
error {
|
|
||||||
shotId
|
|
||||||
msg
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
query GetShotsWithVideoGql($filterInput: FilterInput!, $limit: Int) {
|
query GetShotsWithVideoGql($filterInput: FilterInput!, $limit: Int) {
|
||||||
getShotsWithMetadata(filterInput: $filterInput, limit: $limit) {
|
getShotsWithMetadata(filterInput: $filterInput, limit: $limit) {
|
||||||
ids
|
ids
|
||||||
@ -134,12 +115,4 @@ fragment ShotWithAllFeatures on ShotGQL {
|
|||||||
serializedShotPaths {
|
serializedShotPaths {
|
||||||
b64EncodedBuffer
|
b64EncodedBuffer
|
||||||
}
|
}
|
||||||
annotations {
|
|
||||||
shotId
|
|
||||||
type {
|
|
||||||
id
|
|
||||||
name
|
|
||||||
}
|
|
||||||
notes
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user