mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-17 18:12:04 +00:00
feat: HTTP request tool (#9228)
This commit is contained in:
@@ -0,0 +1,23 @@
|
||||
export type ToolParameter = {
|
||||
name: string;
|
||||
required: boolean;
|
||||
type?: string;
|
||||
description?: string;
|
||||
sendIn: SendIn;
|
||||
key?: string;
|
||||
};
|
||||
|
||||
export type PlaceholderDefinition = {
|
||||
name: string;
|
||||
type?: string;
|
||||
description: string;
|
||||
};
|
||||
|
||||
export type ParametersValues = Array<{
|
||||
name: string;
|
||||
valueProvider: 'modelRequired' | 'modelOptional' | 'fieldValue';
|
||||
value?: string;
|
||||
}>;
|
||||
|
||||
export type ParameterInputType = 'keypair' | 'json' | 'model';
|
||||
export type SendIn = 'body' | 'qs' | 'path' | 'headers';
|
||||
Reference in New Issue
Block a user