feat: Implement getData query and send a message action for slack

This commit is contained in:
Faruk AYDIN
2022-03-15 02:57:37 +03:00
committed by Ömer Faruk Aydın
parent f8c7b85682
commit 8512528fcf
14 changed files with 305 additions and 92 deletions

View File

@@ -70,7 +70,30 @@ export interface IUser {
steps: IStep[];
}
export interface IField {
export interface IFieldDropdown {
key: string;
label: string;
type: 'dropdown';
required: boolean;
readOnly: boolean;
value: string;
placeholder: string | null;
description: string;
docUrl: string;
clickToCopy: boolean;
name: string;
variables: boolean;
source: {
type: string;
name: string;
arguments: {
name: string;
value: string;
}[];
};
}
export interface IFieldText {
key: string;
label: string;
type: string;
@@ -85,6 +108,8 @@ export interface IField {
variables: boolean;
}
type IField = IFieldDropdown | IFieldText;
export interface IAuthenticationStepField {
name: string;
value: string | null;