Compare commits
1 Commits
master
...
loewy/incl
| Author | SHA1 | Date | |
|---|---|---|---|
| cdf438c089 |
@@ -4487,6 +4487,10 @@ export type GetShotsWithMetadataFilterResultQuery = {
|
||||
id: string;
|
||||
streamSegmentType: StreamSegmentTypeEnum;
|
||||
} | null;
|
||||
playlist?: {
|
||||
__typename?: "HLSPlaylistGQL";
|
||||
segmentDurations: Array<number>;
|
||||
} | null;
|
||||
} | null;
|
||||
}>;
|
||||
};
|
||||
@@ -4565,6 +4569,10 @@ export type GetShotsWithMetadataQuery = {
|
||||
id: string;
|
||||
streamSegmentType: StreamSegmentTypeEnum;
|
||||
} | null;
|
||||
playlist?: {
|
||||
__typename?: "HLSPlaylistGQL";
|
||||
segmentDurations: Array<number>;
|
||||
} | null;
|
||||
} | null;
|
||||
}>;
|
||||
};
|
||||
@@ -4632,6 +4640,10 @@ export type GetShotsByIdsQuery = {
|
||||
id: string;
|
||||
streamSegmentType: StreamSegmentTypeEnum;
|
||||
} | null;
|
||||
playlist?: {
|
||||
__typename?: "HLSPlaylistGQL";
|
||||
segmentDurations: Array<number>;
|
||||
} | null;
|
||||
} | null;
|
||||
}>;
|
||||
};
|
||||
@@ -4692,6 +4704,10 @@ export type ShotWithAllFeaturesFragment = {
|
||||
id: string;
|
||||
streamSegmentType: StreamSegmentTypeEnum;
|
||||
} | null;
|
||||
playlist?: {
|
||||
__typename?: "HLSPlaylistGQL";
|
||||
segmentDurations: Array<number>;
|
||||
} | null;
|
||||
} | null;
|
||||
};
|
||||
|
||||
@@ -4769,6 +4785,10 @@ export type EditShotMutation = {
|
||||
id: string;
|
||||
streamSegmentType: StreamSegmentTypeEnum;
|
||||
} | null;
|
||||
playlist?: {
|
||||
__typename?: "HLSPlaylistGQL";
|
||||
segmentDurations: Array<number>;
|
||||
} | null;
|
||||
} | null;
|
||||
} | null;
|
||||
};
|
||||
@@ -6042,6 +6062,9 @@ export const ShotWithAllFeaturesFragmentDoc = gql`
|
||||
id
|
||||
streamSegmentType
|
||||
}
|
||||
playlist {
|
||||
segmentDurations
|
||||
}
|
||||
}
|
||||
}
|
||||
`;
|
||||
|
||||
@@ -191,6 +191,9 @@ fragment ShotWithAllFeatures on ShotGQL {
|
||||
id
|
||||
streamSegmentType
|
||||
}
|
||||
playlist {
|
||||
segmentDurations
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user