UNPKG

@salesforce/core

Version:

Core libraries to interact with SFDX projects, orgs, and APIs.

12 lines (11 loc) 396 B
import { z } from 'zod'; /** * Represents an entry in a package bundle, containing version and descriptive information. */ export declare const BundleEntrySchema: z.ZodObject<{ name: z.ZodString; versionName: z.ZodString; versionNumber: z.ZodString; versionDescription: z.ZodOptional<z.ZodString>; }, z.core.$strip>; export type BundleEntry = z.infer<typeof BundleEntrySchema>;