@neynar/nodejs-sdk
Version:
SDK to interact with Neynar APIs (https://docs.neynar.com/reference/quickstart)
48 lines (47 loc) • 1.35 kB
TypeScript
/**
* Neynar API
* The Neynar API allows you to interact with the Farcaster protocol among other things. See the [Neynar docs](https://docs.neynar.com/reference) for more details.
*
* The version of the OpenAPI document: 3.137.0
* Contact: team@neynar.com
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* https://openapi-generator.tech
* Do not edit the class manually.
*/
/**
*
* @export
* @interface BuildRequest
*/
export interface BuildRequest {
/**
* Deployment ID
* @type {string}
* @memberof BuildRequest
*/
'deployment_id'?: string;
/**
* Kubernetes deployment name
* @type {string}
* @memberof BuildRequest
*/
'name'?: string;
/**
* Kubernetes namespace
* @type {string}
* @memberof BuildRequest
*/
'namespace'?: string;
/**
* Build tool to use. \"vercel\" runs vercel build for production deployment. \"npm\" runs npm run build for dev server recovery.
* @type {string}
* @memberof BuildRequest
*/
'build_type'?: BuildRequestBuildTypeEnum;
}
export declare const BuildRequestBuildTypeEnum: {
readonly Npm: "npm";
readonly Vercel: "vercel";
};
export type BuildRequestBuildTypeEnum = typeof BuildRequestBuildTypeEnum[keyof typeof BuildRequestBuildTypeEnum];