1 import { PHOTOS_PAGE_SIZE } from '../../drive/constants';
3 export const queryPhotos = (
7 PreviousPageLastLinkID?: string;
8 MinimumCaptureTime?: number;
12 url: `drive/volumes/${volumeId}/photos`,
14 PageSize: PHOTOS_PAGE_SIZE,
18 export const queryDeletePhotosShare = (volumeId: string, shareId: string) => ({
20 url: `drive/volumes/${volumeId}/photos/share/${shareId}`,
23 export const queryPhotosDuplicates = (volumeId: string, { nameHashes }: { nameHashes: string[] }) => ({
25 url: `drive/volumes/${volumeId}/photos/duplicates`,
27 NameHashes: nameHashes,