UNPKG

@hotwax/oms-api

Version:

The OMS API package comes with prebuilt methods that helps communicate with HotWax Commerce OMS using Rest API

16 lines (15 loc) 1.03 kB
declare function getNotificationEnumIds(enumTypeId: string): Promise<any>; declare function getNotificationUserPrefTypeIds(applicationId: string, userId: string, filterConditions?: {}): Promise<any>; declare function storeClientRegistrationToken(registrationToken: string, deviceId: string, applicationId: string): Promise<any>; declare function removeClientRegistrationToken(deviceId: string, applicationId: string): Promise<any>; declare function subscribeTopic(topicName: string, applicationId: string): Promise<any>; declare function unsubscribeTopic(topicName: string, applicationId: string): Promise<any>; declare const _default: { getNotificationEnumIds: typeof getNotificationEnumIds; getNotificationUserPrefTypeIds: typeof getNotificationUserPrefTypeIds; removeClientRegistrationToken: typeof removeClientRegistrationToken; storeClientRegistrationToken: typeof storeClientRegistrationToken; subscribeTopic: typeof subscribeTopic; unsubscribeTopic: typeof unsubscribeTopic; }; export default _default;