UNPKG

phonic

Version:

[![fern shield](https://img.shields.io/badge/%F0%9F%8C%BF-Built%20with%20Fern-brightgreen)](https://buildwithfern.com?utm_source=github&utm_medium=github&utm_campaign=readme&utm_source=https%3A%2F%2Fgithub.com%2FPhonic-Co%2Fphonic-node) [![npm shield](htt

17 lines (16 loc) 587 B
/** * @example * { * logo_url: "https://example.com/logo.png", * invite_link_allowed_domains: ["example.com"], * ip_allowlist: ["203.0.113.0/24"] * } */ export interface UpdateWorkspaceRequest { /** URL of the workspace logo. Must be an https URL ending in .png or .svg, or null to clear it. */ logo_url?: string | null; /** Email domains allowed to join the workspace via invite link. */ invite_link_allowed_domains?: string[]; /** IP addresses or CIDR ranges allowed to access the workspace. */ ip_allowlist?: string[]; }