sfdx-hardis
Version:
Swiss-army-knife Toolbox for Salesforce. Allows you to define a complete CD/CD Pipeline. Orchestrate base commands and assist users with interactive wizards
11 lines (10 loc) • 420 B
TypeScript
export interface KeyValueProviderInterface {
name: string;
description: string;
userSetup(options?: any): Promise<boolean>;
userAuthenticate(options?: any): Promise<boolean>;
initialize(options?: any): Promise<boolean>;
getValue(key: string | null): Promise<any>;
setValue(key: string | null, value: any): Promise<boolean>;
updateActiveScratchOrg(scratchOrg: any, keyValues: any): any;
}