* Playbook run status update post * Show Playbooks button in Channel Info screen only if playbooks is enabled * Handle Playbook links * Fetch playbook if needed * fix playbooks migration * fix deeplinks using parsedUrl * update last time playbooks where fetched if no errors * show participants for run status update post * fix tests * remove console.log in test * feedback review * wrap participants footer * add fastlane FASTLANE_XCODEBUILD_SETTINGS_RETRIES env vars
61 lines
1.4 KiB
TypeScript
61 lines
1.4 KiB
TypeScript
// Copyright (c) 2015-present Mattermost, Inc. All Rights Reserved.
|
|
// See LICENSE.txt for license information.
|
|
|
|
import type {DeepLink as DeepLinkConstant, Launch} from '@constants';
|
|
|
|
export interface DeepLink {
|
|
serverUrl: string;
|
|
teamName: string;
|
|
}
|
|
|
|
export interface DeepLinkServer {
|
|
serverUrl: string;
|
|
}
|
|
|
|
export interface DeepLinkChannel extends DeepLink {
|
|
channelName: string;
|
|
}
|
|
|
|
export interface DeepLinkDM extends DeepLink {
|
|
userName: string;
|
|
}
|
|
|
|
export interface DeepLinkPermalink extends DeepLink {
|
|
postId: string;
|
|
}
|
|
|
|
export interface DeepLinkGM extends DeepLink {
|
|
channelName: string;
|
|
}
|
|
|
|
export interface DeepLinkPlugin extends DeepLink {
|
|
id: string;
|
|
route?: string;
|
|
}
|
|
|
|
export interface DeepLinkPlaybooks extends DeepLink {
|
|
playbookId: string;
|
|
}
|
|
|
|
export interface DeepLinkPlaybookRuns extends DeepLink {
|
|
playbookRunId: string;
|
|
}
|
|
|
|
export type DeepLinkType = typeof DeepLinkConstant[keyof typeof DeepLinkConstant];
|
|
|
|
export interface DeepLinkWithData {
|
|
type: DeepLinkType;
|
|
url: string;
|
|
data?: DeepLinkChannel | DeepLinkDM | DeepLinkGM | DeepLinkPermalink | DeepLinkPlugin | DeepLinkServer | DeepLinkPlaybooks | DeepLinkPlaybookRuns;
|
|
}
|
|
|
|
export type LaunchType = typeof Launch[keyof typeof Launch];
|
|
|
|
export interface LaunchProps {
|
|
extra?: DeepLinkWithData | NotificationWithData;
|
|
launchType: LaunchType;
|
|
launchError?: Boolean;
|
|
serverUrl?: string;
|
|
displayName?: string;
|
|
coldStart?: boolean;
|
|
}
|