import type { ExtractStrict } from 'type-fest';
import type { ServiceAgreementSignResponse } from '../../core/models/api/contracts';
import type { EndpointFromPaths } from '../types';
import type { components, paths } from './termsOfService.contract';
type TermsOfServiceEndpoints = EndpointFromPaths<keyof paths>;
export type AcceptedTermsOfServiceEndpoint = ExtractStrict<TermsOfServiceEndpoints, `legalEntities/${string}/termsOfService/acceptedTermsOfServiceDocument/${string}`>;
export type AcceptedTermsOfServiceResponse = components['schemas']['GetAcceptedTermsOfServiceDocumentResponse'];
export type AcceptTermsOfServiceAcceptEndpoint = ExtractStrict<TermsOfServiceEndpoints, `legalEntities/${string}/termsOfService/accept`>;
export type AcceptTermsOfServiceAcceptRequest = components['schemas']['AcceptTermsOfServiceRequest'];
export type AcceptTermsOfServiceAcceptResponse = ServiceAgreementSignResponse;
export {};
