UNPKG

@salesforce/core

Version:

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

37 lines 1.54 kB
"use strict"; /* * Copyright 2026, Salesforce, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ Object.defineProperty(exports, "__esModule", { value: true }); exports.BundleEntrySchema = void 0; const zod_1 = require("zod"); /** * Represents an entry in a package bundle, containing version and descriptive information. */ exports.BundleEntrySchema = zod_1.z.object({ name: zod_1.z.string().meta({ title: 'Bundle Name' }).describe('The name of the bundle.'), versionName: zod_1.z.string().meta({ title: 'Version Name' }).describe('Human readable name for the version.'), versionNumber: zod_1.z .string() .regex(/^\d+\.\d+$/) .meta({ title: 'Version Number' }) .describe('The version number in the format major.minor (e.g., 1.0).'), versionDescription: zod_1.z .string() .optional() .meta({ title: 'Version Description' }) .describe('Human readable version information, format not specified.'), }); //# sourceMappingURL=bundleEntry.js.map