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; export type AcceptedTermsOfServiceEndpoint = ExtractStrict; export type AcceptedTermsOfServiceResponse = components['schemas']['GetAcceptedTermsOfServiceDocumentResponse']; export type AcceptTermsOfServiceAcceptEndpoint = ExtractStrict; export type AcceptTermsOfServiceAcceptRequest = components['schemas']['AcceptTermsOfServiceRequest']; export type AcceptTermsOfServiceAcceptResponse = ServiceAgreementSignResponse; export {};