UNPKG

@twilio-labs/serverless-api

Version:
64 lines (63 loc) 1.57 kB
/** @module @twilio-labs/serverless-api */ /// <reference types="node" /> import { Got } from 'got'; export type GotClient = Got; export type EnvironmentVariables = { [key: string]: string | undefined; }; export type FileInfo = { name: string; path: string; }; /** * Necessary info to deploy a function */ export type ServerlessResourceConfig = { /** * Access for the function */ access: AccessOptions; /** * Content of the uploaded function */ content: string | Buffer; /** * Function name */ name: string; /** * Path for the serverless resource * Functions: '/some-function' * Assets: '/some-assets.jpg' */ path: string; }; export type ServerlessResourceConfigWithFilePath = ServerlessResourceConfig & { /** * Path to the actual file on the file system. */ filePath: string; }; export type FunctionResource = ServerlessResourceConfig & { sid: string; } & Partial<ServerlessResourceConfigWithFilePath>; export type AssetResource = ServerlessResourceConfig & { sid: string; } & Partial<ServerlessResourceConfigWithFilePath>; export type Dependency = { name: string; version: string; }; export type Variable = { key: string; value: string; }; export type AccessOptions = 'private' | 'protected' | 'public'; export type ResourcePathAndAccess = { path: string; access: AccessOptions; }; export type DirectoryContent = { assets: ServerlessResourceConfigWithFilePath[]; functions: ServerlessResourceConfigWithFilePath[]; };