mirror of
https://github.com/n8n-io/n8n.git
synced 2024-11-10 14:44:05 -08:00
24 lines
620 B
TypeScript
24 lines
620 B
TypeScript
export interface IStream {
|
|
subscriptions?: string;
|
|
invite_only?: boolean;
|
|
principals?: string;
|
|
authorization_errors_fatal?: boolean;
|
|
history_public_to_subscribers?: boolean;
|
|
stream_post_policy?: number;
|
|
announce?: boolean;
|
|
include_public?: boolean;
|
|
include_subscribed?: boolean;
|
|
include_all_active?: boolean;
|
|
include_default?: boolean;
|
|
include_owner_subscribed?: boolean;
|
|
include_subscribers?: boolean;
|
|
description?: string;
|
|
new_name?: string;
|
|
is_private?: boolean;
|
|
is_announcement_only?: boolean;
|
|
}
|
|
|
|
export interface IPrincipal {
|
|
email: string;
|
|
}
|