Press n or j to go to the next uncovered block, b, p or k for the previous block.
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 | 12x 12x 12x 12x 1x 1x 1x | import ProcessDto from '@orchesty/nodejs-sdk/dist/lib/Utils/ProcessDto';
import AShoptetConnector from './AShoptetConnector';
export const NAME = 'shoptet-get-shipping-methods';
export default class ShoptetGetShippingMethods extends AShoptetConnector {
public getName(): string {
return NAME;
}
public async processAction(dto: ProcessDto): Promise<ProcessDto<IOutput>> {
const url = 'api/shipping-methods';
const response = await this.doRequest(url, dto, null) as IResponse;
return dto.setNewJsonData(response.data);
}
}
export interface IOutput {
shippingMethods: {
guid: string;
name: string;
description: string;
shippingCompany: {
id: number;
code: string;
name: string;
};
trackingUrl: string;
visible: boolean;
priority: number;
wholesale: boolean;
logoUrl: string;
}[];
wholesaleActive: boolean;
defaultRetailMethod: string;
defaultWholesaleMethod: string;
}
interface IResponse {
data: IOutput;
}
|