liveperson-functions-cli
Version:
LivePerson Functions CLI
32 lines (31 loc) • 733 B
TypeScript
export declare const DEFAULT_ENTITIY = "__default__";
export declare const TEN_SECONDS: number;
export declare const CALL_DELAY: number;
export declare const BUILT_IN_NAMESPACES: string[];
export declare const RETRIABLE_NETWORK_ERRORS: string[];
/**
* Domains for the Context Service API.
* Please choose the domain based on the
* location of your account.
*/
export declare const DOMAINS: {
US: string;
EMEA: string;
APAC: string;
};
export declare const ErrorCodes: {
General: {
Issue: string;
Unknown: string;
Timeout: string;
};
Parameter: {
Incorrect: string;
};
Authorization: {
Invalid: string;
};
Data: {
NotFound: string;
};
};