2020-05-19 06:19:35 -07:00
|
|
|
export interface IStream {
|
2020-05-22 15:59:40 -07:00
|
|
|
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;
|
2020-05-19 08:36:45 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
export interface IPrincipal {
|
2020-05-22 15:59:40 -07:00
|
|
|
email: string;
|
2020-05-19 08:36:45 -07:00
|
|
|
}
|