import { type ProfileData } from '../../data/profiles/data'; import { type IdempotencyParameter, type PaginationParameters, type ThrottlingParameter } from '../../types/parameters'; import type PickOptional from '../../types/PickOptional'; export type CreateParameters = Pick & PickOptional & IdempotencyParameter; export type PageParameters = PaginationParameters; export type IterateParameters = Omit & ThrottlingParameter; export type UpdateParameters = PickOptional; export type DeleteParameters = IdempotencyParameter;