mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-17 18:12:04 +00:00
✨ Add Cloud Natural Language node (#1181)
* ✨ Add Cloud Natural Language node * ⬆️ Set google-fonts-webpack-plugin to latest version * 🐛 Rename method composite to compose * ⚡ Improvements to Google Cloud Natural Language Node Improvements to #1171 Co-authored-by: Tanay Pant <tanaypant@protonmail.com>
This commit is contained in:
@@ -0,0 +1,11 @@
|
||||
export interface IData {
|
||||
document: IDocument;
|
||||
encodingType: string;
|
||||
}
|
||||
|
||||
export interface IDocument {
|
||||
type: string;
|
||||
language?: string;
|
||||
content?: string;
|
||||
gcsContentUri?: string;
|
||||
}
|
||||
Reference in New Issue
Block a user