import type { INodeProperties } from 'n8n-workflow'; export const EXTERNAL_SECRETS_DB_KEY = 'feature.externalSecrets'; export const EXTERNAL_SECRETS_INITIAL_BACKOFF = 10 * 1000; export const EXTERNAL_SECRETS_MAX_BACKOFF = 5 * 60 * 1000; export const EXTERNAL_SECRETS_NAME_REGEX = /^[a-zA-Z0-9\-\_\/]+$/; export const DOCS_HELP_NOTICE: INodeProperties = { displayName: 'Need help filling out these fields? Open docs', name: 'notice', type: 'notice', default: '', noDataExpression: true, };