@salesforce/plugin-schema
Version:
Commands to interact with salesforce sobject schemas
22 lines (21 loc) • 1.06 kB
TypeScript
import { SfCommand } from '@salesforce/sf-plugins-core';
export declare enum SObjectType {
ALL = 0,
STANDARD = 1,
CUSTOM = 2
}
export type SObjectListResult = string[];
export declare class SObjectList extends SfCommand<SObjectListResult> {
static readonly summary: string;
static readonly description: string;
static readonly examples: string[];
static readonly aliases: string[];
static readonly deprecateAliases = true;
static readonly flags: {
'target-org': import("@oclif/core/interfaces").OptionFlag<import("@salesforce/core").Org, import("@oclif/core/interfaces").CustomOptions>;
'api-version': import("@oclif/core/interfaces").OptionFlag<string | undefined, import("@oclif/core/interfaces").CustomOptions>;
loglevel: import("@oclif/core/interfaces").OptionFlag<string | undefined, import("@oclif/core/interfaces").CustomOptions>;
sobject: import("@oclif/core/interfaces").OptionFlag<string, import("@oclif/core/interfaces").CustomOptions>;
};
run(): Promise<SObjectListResult>;
}