mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-17 18:12:04 +00:00
24 lines
497 B
TypeScript
24 lines
497 B
TypeScript
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';
|