mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-18 18:41:14 +00:00
stream interface, data handling logic
This commit is contained in:
20
packages/nodes-base/nodes/Zulip/StreamInterface.ts
Normal file
20
packages/nodes-base/nodes/Zulip/StreamInterface.ts
Normal file
@@ -0,0 +1,20 @@
|
||||
export interface IStream {
|
||||
subscriptions?: [{}];
|
||||
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;
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user