Security: Sync from Public / sync-from-public (push) Has been cancelled
Test: Benchmark Nightly / build (push) Has been cancelled
Test: Benchmark Nightly / Notify Cats on failure (push) Has been cancelled
CI: Python / Checks (push) Has been cancelled
Test: Evals Python / Workflow Comparison Python (push) Has been cancelled
Util: Check Docs URLs / check-docs-urls (push) Has been cancelled
Test: Visual Storybook / Cloudflare Pages (push) Has been cancelled
Test: E2E Performance / build-and-test-performance (push) Has been cancelled
Test: Workflows Nightly / Run Workflow Tests (push) Has been cancelled
Util: Cleanup CI Docker Images / Delete stale CI images (push) Has been cancelled
Test: Benchmark Destroy Env / build (push) Has been cancelled
Util: Update Node Popularity / update-popularity (push) Has been cancelled
Test: E2E Coverage Weekly / Coverage Tests (push) Has been cancelled
30 lines
1.0 KiB
TypeScript
30 lines
1.0 KiB
TypeScript
import type { AllEntities, Entity, PropertiesOf } from 'n8n-workflow';
|
|
|
|
type MattermostMap = {
|
|
channel: 'addUser' | 'create' | 'delete' | 'members' | 'restore' | 'statistics' | 'search';
|
|
message: 'delete' | 'post' | 'postEphemeral';
|
|
reaction: 'create' | 'delete' | 'getAll';
|
|
user: 'create' | 'deactive' | 'getAll' | 'getByEmail' | 'getById' | 'invite';
|
|
};
|
|
|
|
export type Mattermost = AllEntities<MattermostMap>;
|
|
|
|
export type MattermostChannel = Entity<MattermostMap, 'channel'>;
|
|
export type MattermostMessage = Entity<MattermostMap, 'message'>;
|
|
export type MattermostReaction = Entity<MattermostMap, 'reaction'>;
|
|
export type MattermostUser = Entity<MattermostMap, 'user'>;
|
|
|
|
export type ChannelProperties = PropertiesOf<MattermostChannel>;
|
|
export type MessageProperties = PropertiesOf<MattermostMessage>;
|
|
export type ReactionProperties = PropertiesOf<MattermostReaction>;
|
|
export type UserProperties = PropertiesOf<MattermostUser>;
|
|
|
|
export interface IAttachment {
|
|
fields: {
|
|
item?: object[];
|
|
};
|
|
actions: {
|
|
item?: object[];
|
|
};
|
|
}
|