feat: Implement getData query and send a message action for slack
This commit is contained in:

committed by
Ömer Faruk Aydın

parent
f8c7b85682
commit
8512528fcf
27
packages/types/index.d.ts
vendored
27
packages/types/index.d.ts
vendored
@@ -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;
|
||||
|
Reference in New Issue
Block a user