@allgroup/yandex-taxi-fleet-api
Version:
Unofficial yandex taxi fleet api library
15 lines (13 loc) • 378 B
text/typescript
export interface Configuration {
fleetParkId: string;
fleetApiKey: string;
fleetClientId: string;
fleetApiEndpoint?: string;
paymentCategory?: string;
currency?: string;
}
export const defaultConfig: Partial<Configuration> = {
fleetApiEndpoint: 'https://fleet-api.taxi.yandex.net',
paymentCategory: 'partner_service_manual_1',
currency: 'KZT'
}