
Security News
Attackers Are Hunting High-Impact Node.js Maintainers in a Coordinated Social Engineering Campaign
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.
@sf-explorer/salesforce-metadata-reference
Advanced tools
Salesforce Metadata API object reference from official documentation
Salesforce Metadata API object reference from official documentation.
This package provides programmatic access to Salesforce Metadata API types including CustomObject, ApexClass, Flow, and other components used in deployments and package development.
npm install @sf-explorer/salesforce-metadata-reference
import {
loadIndex,
getObject,
searchObjects,
getAllObjectNames,
getObjectDescription
} from '@sf-explorer/salesforce-metadata-reference';
// Load index
const index = await loadIndex();
console.log(`${index.totalObjects} metadata types available`);
// Get a metadata type
const customObject = await getObject('CustomObject');
if (customObject) {
console.log(customObject.name);
console.log(customObject.description);
}
// Search metadata types
const flowTypes = await searchObjects(/flow/i);
console.log(`Found ${flowTypes.length} flow-related types`);
src/doc/
├── index.json # Master index
└── objects/ # Individual metadata type files
├── A/
│ ├── AccessMapping.json
│ ├── ApexClass.json
│ └── ...
├── C/
│ ├── CustomObject.json
│ └── ...
└── ...
All functions match the standard API across @sf-explorer packages:
loadIndex() - Load master indexgetObject(name) - Get metadata type detailssearchObjects(pattern) - Search by namegetAllObjectNames() - Get all type namesgetObjectDescription(name) - Get lightweight metadataclearCache() - Clear cached dataMIT License - see LICENSE
FAQs
Salesforce Metadata API object reference from official documentation
We found that @sf-explorer/salesforce-metadata-reference demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Security News
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.

Security News
Axios compromise traced to social engineering, showing how attacks on maintainers can bypass controls and expose the broader software supply chain.

Security News
Node.js has paused its bug bounty program after funding ended, removing payouts for vulnerability reports but keeping its security process unchanged.