Add streamSegmentType to feed and playlist shot operations #181
@ -3831,6 +3831,15 @@ export type GetShotsWithMetadataFilterResultQuery = {
|
||||
name: string;
|
||||
};
|
||||
}>;
|
||||
video?: {
|
||||
__typename?: "VideoGQL";
|
||||
id: number;
|
||||
stream?: {
|
||||
__typename?: "UploadStreamGQL";
|
||||
id: string;
|
||||
streamSegmentType: StreamSegmentTypeEnum;
|
||||
} | null;
|
||||
} | null;
|
||||
}>;
|
||||
};
|
||||
};
|
||||
@ -3900,6 +3909,15 @@ export type GetShotsWithMetadataQuery = {
|
||||
name: string;
|
||||
};
|
||||
}>;
|
||||
video?: {
|
||||
__typename?: "VideoGQL";
|
||||
id: number;
|
||||
stream?: {
|
||||
__typename?: "UploadStreamGQL";
|
||||
id: string;
|
||||
streamSegmentType: StreamSegmentTypeEnum;
|
||||
} | null;
|
||||
} | null;
|
||||
}>;
|
||||
};
|
||||
};
|
||||
@ -3958,6 +3976,15 @@ export type GetShotsByIdsQuery = {
|
||||
notes: string;
|
||||
type: { __typename?: "ShotAnnotationTypeGQL"; id: number; name: string };
|
||||
}>;
|
||||
video?: {
|
||||
__typename?: "VideoGQL";
|
||||
id: number;
|
||||
stream?: {
|
||||
__typename?: "UploadStreamGQL";
|
||||
id: string;
|
||||
streamSegmentType: StreamSegmentTypeEnum;
|
||||
} | null;
|
||||
} | null;
|
||||
}>;
|
||||
};
|
||||
|
||||
@ -4009,6 +4036,15 @@ export type ShotWithAllFeaturesFragment = {
|
||||
notes: string;
|
||||
type: { __typename?: "ShotAnnotationTypeGQL"; id: number; name: string };
|
||||
}>;
|
||||
video?: {
|
||||
__typename?: "VideoGQL";
|
||||
id: number;
|
||||
stream?: {
|
||||
__typename?: "UploadStreamGQL";
|
||||
id: string;
|
||||
streamSegmentType: StreamSegmentTypeEnum;
|
||||
} | null;
|
||||
} | null;
|
||||
};
|
||||
|
||||
export type EditShotMutationVariables = Exact<{
|
||||
@ -4077,6 +4113,15 @@ export type EditShotMutation = {
|
||||
name: string;
|
||||
};
|
||||
}>;
|
||||
video?: {
|
||||
__typename?: "VideoGQL";
|
||||
id: number;
|
||||
stream?: {
|
||||
__typename?: "UploadStreamGQL";
|
||||
id: string;
|
||||
streamSegmentType: StreamSegmentTypeEnum;
|
||||
} | null;
|
||||
} | null;
|
||||
} | null;
|
||||
};
|
||||
};
|
||||
@ -5205,6 +5250,13 @@ export const ShotWithAllFeaturesFragmentDoc = gql`
|
||||
}
|
||||
notes
|
||||
}
|
||||
video {
|
||||
id
|
||||
stream {
|
||||
id
|
||||
streamSegmentType
|
||||
}
|
||||
}
|
||||
}
|
||||
`;
|
||||
export const UserFragmentFragmentDoc = gql`
|
||||
|
@ -185,6 +185,13 @@ fragment ShotWithAllFeatures on ShotGQL {
|
||||
}
|
||||
notes
|
||||
}
|
||||
video {
|
||||
id
|
||||
stream {
|
||||
id
|
||||
streamSegmentType
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
mutation EditShot($shotId: Int!, $fieldsToEdit: EditableShotFieldInputGQL!) {
|
||||
|
Loading…
x
Reference in New Issue
Block a user