@starsched/sdk
Version:
ABA clinic control and management service API SDK
15 lines • 735 B
TypeScript
import type { StarSchedAPIProtocols } from '../../../common/types/common';
import type { HttpClientProtocols } from '../../../http/protocols/client.protocols';
import type { Authentication } from './authentication';
export declare namespace RefreshAccessToken {
type Input = {
refresh_token: string;
};
type Options = Pick<HttpClientProtocols.PostOptions, 'abortSignal'>;
type Success = Authentication;
type ErrorCodes = 'validation' | 'user.not.exists' | 'internal';
type Failure = StarSchedAPIProtocols.FailureResponse<ErrorCodes>;
type Output = Success | Failure;
type Response = StarSchedAPIProtocols.Response<Success, Failure>;
}
//# sourceMappingURL=refresh-access-token.protocols.d.ts.map