Introducing Socket Firewall: Free, Proactive Protection for Your Software Supply Chain.Learn More
Socket
Book a DemoInstallSign in
Socket

swagger-definitions-to-react-proptypes

Package Overview
Dependencies
Maintainers
1
Versions
6
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

swagger-definitions-to-react-proptypes

CLI that generates React propType definitions from a swagger endpoint

npmnpm
Version
1.2.0
Version published
Weekly downloads
2
-80%
Maintainers
1
Weekly downloads
 
Created
Source

swagger-models-to-react-proptypes

CLI that consumes a swagger endpoint and spits out React propType definitions.

Installation:

npm install -g swagger-models-to-react-proptypes

Usage:

swagger-models-to-react-proptypes http://petstore.swagger.io/v2/swagger.json

/**
Generated PropTypes for http://127.0.0.1:1337/petstore-v2.0.json----------------------------------------------------------------
**/

import PropTypes from "prop-types";


export const Order = PropTypes.shape({
    id: PropTypes.number,
    petId: PropTypes.number,
    quantity: PropTypes.number,
    shipDate: PropTypes.date,
    status: PropTypes.oneOf([
        "placed",
        "approved",
        "delivered"
    ]),
    complete: PropTypes.bool
});

export const Category = PropTypes.shape({
    id: PropTypes.number,
    name: PropTypes.string
});

export const User = PropTypes.shape({
    id: PropTypes.number,
    username: PropTypes.string,
    firstName: PropTypes.string,
    lastName: PropTypes.string,
    email: PropTypes.string,
    password: PropTypes.string,
    phone: PropTypes.string,
    userStatus: PropTypes.number
});

export const Tag = PropTypes.shape({
    id: PropTypes.number,
    name: PropTypes.string
});

export const ApiResponse = PropTypes.shape({
    code: PropTypes.number,
    type: PropTypes.string,
    message: PropTypes.string
});

export const Pet = PropTypes.shape({
    id: PropTypes.number,
    category: PropTypes.shape({
        id: PropTypes.number,
        name: PropTypes.string
    }),
    name: PropTypes.string.isRequired,
    photoUrls: PropTypes.arrayOf(PropTypes.string).isRequired,
    tags: PropTypes.arrayOf(PropTypes.shape({
        id: PropTypes.number,
        name: PropTypes.string
    })),
    status: PropTypes.oneOf([
        "available",
        "pending",
        "sold"
    ]),
    createdAt: PropTypes.date
});

FAQs

Package last updated on 03 Jul 2017

Did you know?

Socket

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.

Install

Related posts