@nvs-pinia/common
Version:
NVS Pinia collection shared logic
46 lines (45 loc) • 1.3 kB
TypeScript
declare const API_BASE = "api";
declare const authenticationRoutes: {
LOGIN: string;
RESET_PASSWORD_REQUEST: string;
RESET_PASSWORD: string;
TOKEN_REFRESH: string;
};
declare const syliusApiRoutes: {
ADDRESSES: string;
APPLY_COUPON: string;
CHANGE_ITEM_QUANTITY_BY_ORDER_TOKEN: string;
COMPLETE_ORDER_BY_TOKEN: string;
COMPLETION_INFORMATION: string;
COUNTRIES: string;
CUSTOMERS: string;
ITEM_BY_ID: string;
ORDER_BY_TOKEN: string;
PATCH_ORDER_ADDRESS: string;
PAYMENT_METHODS_BY_ORDER: string;
PAYMENT_METHOD_BY_ID: string;
TAXONS: string;
TAXON_BY_CODE: string;
};
declare const ENDPOINTS: {
LOGIN: string;
RESET_PASSWORD_REQUEST: string;
RESET_PASSWORD: string;
TOKEN_REFRESH: string;
ADDRESSES: string;
APPLY_COUPON: string;
CHANGE_ITEM_QUANTITY_BY_ORDER_TOKEN: string;
COMPLETE_ORDER_BY_TOKEN: string;
COMPLETION_INFORMATION: string;
COUNTRIES: string;
CUSTOMERS: string;
ITEM_BY_ID: string;
ORDER_BY_TOKEN: string;
PATCH_ORDER_ADDRESS: string;
PAYMENT_METHODS_BY_ORDER: string;
PAYMENT_METHOD_BY_ID: string;
TAXONS: string;
TAXON_BY_CODE: string;
API_BASE_URL: string;
};
export { API_BASE, ENDPOINTS, authenticationRoutes, syliusApiRoutes };