mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-18 02:21:13 +00:00
feat: External Secrets storage for credentials (#6477)
Github issue / Community forum post (link here to close automatically): --------- Co-authored-by: Romain Minaud <romain.minaud@gmail.com> Co-authored-by: Valya Bullions <valya@n8n.io> Co-authored-by: Csaba Tuncsik <csaba@n8n.io> Co-authored-by: Giulio Andreini <g.andreini@gmail.com> Co-authored-by: Omar Ajoue <krynble@gmail.com>
This commit is contained in:
@@ -44,6 +44,7 @@ import type {
|
||||
} from './constants';
|
||||
import type { BulkCommand, Undoable } from '@/models/history';
|
||||
import type { PartialBy } from '@/utils/typeHelpers';
|
||||
import type { INodeProperties } from 'n8n-workflow';
|
||||
|
||||
export * from 'n8n-design-system/types';
|
||||
|
||||
@@ -1542,6 +1543,26 @@ export interface InstanceUsage {
|
||||
|
||||
export type CloudPlanAndUsageData = Cloud.PlanData & { usage: InstanceUsage };
|
||||
|
||||
export interface ExternalSecretsProviderSecret {
|
||||
key: string;
|
||||
}
|
||||
|
||||
export type ExternalSecretsProviderData = Record<string, IUpdateInformation['value']>;
|
||||
|
||||
export interface ExternalSecretsProvider {
|
||||
icon: string;
|
||||
name: string;
|
||||
displayName: string;
|
||||
connected: boolean;
|
||||
connectedAt: string | false;
|
||||
state: 'connected' | 'tested' | 'initializing' | 'error';
|
||||
data?: ExternalSecretsProviderData;
|
||||
}
|
||||
|
||||
export interface ExternalSecretsProviderWithProperties extends ExternalSecretsProvider {
|
||||
properties: INodeProperties[];
|
||||
}
|
||||
|
||||
export type CloudUpdateLinkSourceType =
|
||||
| 'canvas-nav'
|
||||
| 'custom-data-filter'
|
||||
|
||||
Reference in New Issue
Block a user