salesforce-alm
Version:
This package contains tools, and APIs, for an improved salesforce.com developer experience.
21 lines (20 loc) • 756 B
TypeScript
import { Duration } from '@salesforce/kit';
export declare const SANDBOXDEF_SRC_SANDBOXNAME = "SourceSandboxName";
export declare class SandboxConstants {
static readonly DEFAULT_MAX_RETRIES: number;
static DEFAULT_POLL_INTERVAL: Duration;
static readonly SANDBOX_INCOMPLETE_EXCEPTION_MESSAGE = "INVALID_STATUS";
}
export declare class SandboxEventNames {
static readonly EVENT_STATUS: string;
static readonly EVENT_ASYNCRESULT: string;
static readonly EVENT_RESULT: string;
static readonly EVENT_CLIENTID_NOTSUPPORT: string;
}
export declare enum SandboxStatus {
Pending = "Pending",
PendingRemote = "Pending Remote Creation",
Processing = "Processing",
Completed = "Completed",
Activating = "Activating"
}