mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-18 02:21:13 +00:00
chore: Deprecate Zep nodes (#18061)
Co-authored-by: Oleg Ivaniv <me@olegivaniv.com>
This commit is contained in:
@@ -13,6 +13,12 @@ export class ZepApi implements ICredentialType {
|
|||||||
documentationUrl = 'zep';
|
documentationUrl = 'zep';
|
||||||
|
|
||||||
properties: INodeProperties[] = [
|
properties: INodeProperties[] = [
|
||||||
|
{
|
||||||
|
displayName: 'This Zep integration is deprecated and will be removed in a future version.',
|
||||||
|
name: 'deprecationNotice',
|
||||||
|
type: 'notice',
|
||||||
|
default: '',
|
||||||
|
},
|
||||||
{
|
{
|
||||||
displayName: 'API Key',
|
displayName: 'API Key',
|
||||||
name: 'apiKey',
|
name: 'apiKey',
|
||||||
|
|||||||
@@ -33,6 +33,7 @@ export class MemoryZep implements INodeType {
|
|||||||
description: INodeTypeDescription = {
|
description: INodeTypeDescription = {
|
||||||
displayName: 'Zep',
|
displayName: 'Zep',
|
||||||
name: 'memoryZep',
|
name: 'memoryZep',
|
||||||
|
hidden: true,
|
||||||
// eslint-disable-next-line n8n-nodes-base/node-class-description-icon-not-svg
|
// eslint-disable-next-line n8n-nodes-base/node-class-description-icon-not-svg
|
||||||
icon: 'file:zep.png',
|
icon: 'file:zep.png',
|
||||||
group: ['transform'],
|
group: ['transform'],
|
||||||
@@ -67,6 +68,12 @@ export class MemoryZep implements INodeType {
|
|||||||
},
|
},
|
||||||
],
|
],
|
||||||
properties: [
|
properties: [
|
||||||
|
{
|
||||||
|
displayName: 'This Zep integration is deprecated and will be removed in a future version.',
|
||||||
|
name: 'deprecationNotice',
|
||||||
|
type: 'notice',
|
||||||
|
default: '',
|
||||||
|
},
|
||||||
getConnectionHintNoticeField([NodeConnectionTypes.AiAgent]),
|
getConnectionHintNoticeField([NodeConnectionTypes.AiAgent]),
|
||||||
{
|
{
|
||||||
displayName: 'Only works with Zep Cloud and Community edition <= v0.27.2',
|
displayName: 'Only works with Zep Cloud and Community edition <= v0.27.2',
|
||||||
|
|||||||
@@ -50,6 +50,7 @@ export class VectorStoreZep extends createVectorStoreNode<ZepVectorStore | ZepCl
|
|||||||
meta: {
|
meta: {
|
||||||
displayName: 'Zep Vector Store',
|
displayName: 'Zep Vector Store',
|
||||||
name: 'vectorStoreZep',
|
name: 'vectorStoreZep',
|
||||||
|
hidden: true,
|
||||||
description: 'Work with your data in Zep Vector Store',
|
description: 'Work with your data in Zep Vector Store',
|
||||||
credentials: [
|
credentials: [
|
||||||
{
|
{
|
||||||
@@ -62,6 +63,12 @@ export class VectorStoreZep extends createVectorStoreNode<ZepVectorStore | ZepCl
|
|||||||
'https://docs.n8n.io/integrations/builtin/cluster-nodes/root-nodes/n8n-nodes-langchain.vectorstorezep/',
|
'https://docs.n8n.io/integrations/builtin/cluster-nodes/root-nodes/n8n-nodes-langchain.vectorstorezep/',
|
||||||
},
|
},
|
||||||
sharedFields: [
|
sharedFields: [
|
||||||
|
{
|
||||||
|
displayName: 'This Zep integration is deprecated and will be removed in a future version.',
|
||||||
|
name: 'deprecationNotice',
|
||||||
|
type: 'notice',
|
||||||
|
default: '',
|
||||||
|
},
|
||||||
{
|
{
|
||||||
displayName: 'Collection Name',
|
displayName: 'Collection Name',
|
||||||
name: 'collectionName',
|
name: 'collectionName',
|
||||||
|
|||||||
@@ -63,6 +63,12 @@ export class VectorStoreZepInsert implements INodeType {
|
|||||||
],
|
],
|
||||||
outputs: [NodeConnectionTypes.Main],
|
outputs: [NodeConnectionTypes.Main],
|
||||||
properties: [
|
properties: [
|
||||||
|
{
|
||||||
|
displayName: 'This Zep integration is deprecated and will be removed in a future version.',
|
||||||
|
name: 'deprecationNotice',
|
||||||
|
type: 'notice',
|
||||||
|
default: '',
|
||||||
|
},
|
||||||
{
|
{
|
||||||
displayName: 'Collection Name',
|
displayName: 'Collection Name',
|
||||||
name: 'collectionName',
|
name: 'collectionName',
|
||||||
|
|||||||
@@ -57,6 +57,12 @@ export class VectorStoreZepLoad implements INodeType {
|
|||||||
outputs: [NodeConnectionTypes.AiVectorStore],
|
outputs: [NodeConnectionTypes.AiVectorStore],
|
||||||
outputNames: ['Vector Store'],
|
outputNames: ['Vector Store'],
|
||||||
properties: [
|
properties: [
|
||||||
|
{
|
||||||
|
displayName: 'This Zep integration is deprecated and will be removed in a future version.',
|
||||||
|
name: 'deprecationNotice',
|
||||||
|
type: 'notice',
|
||||||
|
default: '',
|
||||||
|
},
|
||||||
{
|
{
|
||||||
displayName: 'Collection Name',
|
displayName: 'Collection Name',
|
||||||
name: 'collectionName',
|
name: 'collectionName',
|
||||||
|
|||||||
@@ -19,6 +19,7 @@ export type NodeOperationMode = 'insert' | 'load' | 'retrieve' | 'update' | 'ret
|
|||||||
export interface NodeMeta {
|
export interface NodeMeta {
|
||||||
displayName: string;
|
displayName: string;
|
||||||
name: string;
|
name: string;
|
||||||
|
hidden?: boolean;
|
||||||
description: string;
|
description: string;
|
||||||
docsUrl: string;
|
docsUrl: string;
|
||||||
icon: Icon;
|
icon: Icon;
|
||||||
|
|||||||
Reference in New Issue
Block a user