chore(core): Mark item.index as deprecated (#12494)

This commit is contained in:
Iván Ovejero 2025-01-08 11:26:45 +01:00 committed by GitHub
parent 4182095af1
commit ac497c8a67
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -1184,6 +1184,11 @@ export interface INodeExecutionData {
metadata?: {
subExecution: RelatedExecution;
};
/**
* @deprecated This key was added by accident and should not be used as it
* will be removed in future. For more information see PR #12469.
*/
index?: number;
}