npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

salesforce-sobject-type-generator-sfdx

v0.0.3

Published

Generate Salesforce typings from SFDX

Downloads

44

Readme

salesforce-to-types

A Salesforce CLI plugin to generate typescript types for different Salesforce resources, like sobjects, using the APIs.

$ git clone https://github.com/JoelBrenstrum/salesforce-to-types.git
$ sfdx plugins:link <path to clone>
$ sfdx types:sobject:create -c salesforce-to-types.json 
...

sfdx types:sobject:create

Generates a typescript type for a Salesforce sobject!

USAGE
  $ sfdx types:sobject:create

OPTIONS
  -c, --config=config                             config file
  -o, --outputdir=outputdir                       [default: ./src/types] the output directory to put the generated types
  -s, --sobject=sobject                           the sobject to describe and generate a type for
  -u, --targetusername=targetusername             username or alias for the target org; overrides default target org
  --apiversion=apiversion                         override the api version used for api requests made by this command
  --json                                          format output as json
  --loglevel=(trace|debug|info|warn|error|fatal)  logging level for this command invocation

EXAMPLES
  $ sfdx types:sobject:create --sobject Account
  $ sfdx types:sobject:create --sobject MyCustomObject__c --directory types/ --targetusername [email protected]

sfdx types:sobject:create

Generates a typescript type for a Salesforce sobject!

USAGE
  $ sfdx types:sobject:create

OPTIONS
  -c, --config=config                             config file
  -o, --outputdir=outputdir                       [default: ./src/types] the output directory to put the generated types
  -s, --sobject=sobject                           the sobject to describe and generate a type for
  -u, --targetusername=targetusername             username or alias for the target org; overrides default target org
  --apiversion=apiversion                         override the api version used for api requests made by this command
  --json                                          format output as json
  --loglevel=(trace|debug|info|warn|error|fatal)  logging level for this command invocation

EXAMPLES
  $ sfdx types:sobject:create --sobject Account
  $ sfdx types:sobject:create --config salesforce-to-types.json
  $ sfdx types:sobject:create --sobject MyCustomObject__c --directory types/ --targetusername [email protected]

EXAMPLE CONFIG
  {
    "sobjects": [
        "Account",
        "Contact",
        "Opportunity"
    ]
  }

EXAMPLE OUTPUT
/**
 * DO NOT MODIFY THIS FILE!
 *
 * This file is generated by the salesforce-to-types plugin and
 * may be regenerated in the future. It is recommended to make
 * changes to that plugin then regenerate these files.
 *
 */

import { SObjectAttribute } from './sobject';
import { ID, ChildRecords, DateString, PhoneString } from './sobjectFieldTypes';

export interface Account extends SObjectAttribute<'Account'> {
  Name: string;
  BillingAddress: string //address;
  Phone: PhoneString;
  LastModifiedDate: DateString | null;
  ChildAccounts: ChildRecords<Account, 'Account'>;
  Cases: ChildRecords<Case, 'Case'>;
  Contacts: ChildRecords<Contact, 'Contact'>;
  ...
};


export interface Contact extends SObjectAttribute<'Contact'> {
  AccountId: ID;
  Account: Account;
  LastName: string;
  FirstName: string;
  Phone: PhoneString;
  Cases: ChildRecords<Case, 'Case'>;
  ...
};


export interface Opportunity extends SObjectAttribute<'Opportunity'> {
  Account: Account;
  Name: string;
  Description: string;
  Amount: number;
  Quotes__r: ChildRecords<Quote__c, 'Quote__c'>;
  ...
};

type Case = any; 
type Quote__c = any; 

See code: src/commands/types/sobject/create.ts