export type app_instance_AppConnectInput = { /** * AutoSizeEmbed controls whether an embed connection auto-sizes its iframe; defaults to true. */ autoSizeEmbed?: boolean; /** * ClientIDs are the clients the connection should be scoped to; all must belong to the same company. */ clientIds?: Array; /** * CompanyID scopes the connection to a company; required when no clients are provided. */ companyId?: string; /** * Content is the embed code (for embed connections) or the destination URL (for link connections). */ content: string; /** * MembershipType overrides how the connection's membership is interpreted (individual, group, or company). */ membershipType?: app_instance_AppConnectInput.membershipType; /** * Type is the kind of connection to create. */ type: app_instance_AppConnectInput.type; }; export declare namespace app_instance_AppConnectInput { /** * MembershipType overrides how the connection's membership is interpreted (individual, group, or company). */ enum membershipType { INDIVIDUAL = "individual", GROUP = "group", COMPANY = "company" } /** * Type is the kind of connection to create. */ enum type { EMBED = "embed", LINK = "link" } }