/** * Zulip Node - Version 1 * Discriminator: resource=user, operation=getAll */ interface Credentials { zulipApi: CredentialReference; } /** Get many streams */ export type ZulipV1UserGetAllParams = { resource: 'user'; operation: 'getAll'; /** * Additional Fields * @default {} */ additionalFields?: { /** Whether the client supports computing gravatars URLs. If enabled, avatar_url will be included in the response only if there is a Zulip avatar, and will be null for users who are using gravatar as their avatar. * @default false */ clientGravatar?: boolean | Expression; /** Whether the client wants custom profile field data to be included in the response * @default false */ includeCustomProfileFields?: boolean | Expression; }; }; export type ZulipV1UserGetAllNode = { type: 'n8n-nodes-base.zulip'; version: 1; credentials?: Credentials; config: NodeConfig; };