mirror of
https://github.com/czlonkowski/n8n-mcp.git
synced 2026-02-06 21:43:07 +00:00
chore: add pre-built dist folder for npx usage
This commit is contained in:
committed by
Romuald Członkowski
parent
a70d96a373
commit
5057481e70
44
dist/services/property-filter.d.ts
vendored
Normal file
44
dist/services/property-filter.d.ts
vendored
Normal file
@@ -0,0 +1,44 @@
|
||||
export interface SimplifiedProperty {
|
||||
name: string;
|
||||
displayName: string;
|
||||
type: string;
|
||||
description: string;
|
||||
default?: any;
|
||||
options?: Array<{
|
||||
value: string;
|
||||
label: string;
|
||||
}>;
|
||||
required?: boolean;
|
||||
placeholder?: string;
|
||||
showWhen?: Record<string, any>;
|
||||
usageHint?: string;
|
||||
expectedFormat?: {
|
||||
structure: Record<string, string>;
|
||||
modes?: string[];
|
||||
example: Record<string, any>;
|
||||
};
|
||||
}
|
||||
export interface EssentialConfig {
|
||||
required: string[];
|
||||
common: string[];
|
||||
categoryPriority?: string[];
|
||||
}
|
||||
export interface FilteredProperties {
|
||||
required: SimplifiedProperty[];
|
||||
common: SimplifiedProperty[];
|
||||
}
|
||||
export declare class PropertyFilter {
|
||||
private static ESSENTIAL_PROPERTIES;
|
||||
static deduplicateProperties(properties: any[]): any[];
|
||||
static getEssentials(allProperties: any[], nodeType: string): FilteredProperties;
|
||||
private static extractProperties;
|
||||
private static findPropertyByName;
|
||||
private static simplifyProperty;
|
||||
private static generateUsageHint;
|
||||
private static extractDescription;
|
||||
private static generateDescription;
|
||||
private static inferEssentials;
|
||||
static searchProperties(allProperties: any[], query: string, maxResults?: number): SimplifiedProperty[];
|
||||
private static searchPropertiesRecursive;
|
||||
}
|
||||
//# sourceMappingURL=property-filter.d.ts.map
|
||||
Reference in New Issue
Block a user