n8n-nodes-base
Version:
Base nodes of n8n
36 lines (32 loc) • 977 B
text/typescript
/**
* 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<boolean>;
/** Whether the client wants custom profile field data to be included in the response
* @default false
*/
includeCustomProfileFields?: boolean | Expression<boolean>;
};
};
export type ZulipV1UserGetAllNode = {
type: 'n8n-nodes-base.zulip';
version: 1;
credentials?: Credentials;
config: NodeConfig<ZulipV1UserGetAllParams>;
};