@allofshop/aos-sdk-nodejs
Version:
AOS SDK for NodeJS
9 lines (8 loc) • 848 B
TypeScript
import * as lite from '@allofshop/aos-sdk-nodejs-lite';
import { CreateCustomerServiceDto, FindCustomerServicesDto, GetCustomerServiceStatsDto } from './type';
export declare function createUserCustomerService(body: CreateCustomerServiceDto): Promise<lite.AllOfShopResponse<unknown>>;
export declare function getUserCustomerService(customerServiceId: string): Promise<lite.AllOfShopResponse<unknown>>;
export declare function updateUserCustomerService(customerServiceId: string, body: any): Promise<lite.AllOfShopResponse<unknown>>;
export declare function deleteUserCustomerService(customerServiceId: string): Promise<{}>;
export declare function getUserCustomerServices(query: FindCustomerServicesDto): Promise<lite.AllOfShopResponse<unknown>>;
export declare function getUserCustomerServiceStats(query: GetCustomerServiceStatsDto): Promise<{}>;