UNPKG

sindri

Version:

The Sindri Labs JavaScript SDK and CLI tool.

23 lines (21 loc) 465 B
/* generated using openapi-typescript-codegen -- do no edit */ /* istanbul ignore file */ /* tslint:disable */ /* eslint-disable */ /** * Client input to update project settings. */ export type ProjectSettingsInput = { /** * Whether the project is public. */ is_public?: boolean | null; /** * The name of the project. */ name?: string | null; /** * List of labels to associate with the project. */ labels?: Array<string> | null; };