mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-18 10:31:15 +00:00
feat(core): Execution curation (#10342)
Co-authored-by: oleg <me@olegivaniv.com>
This commit is contained in:
@@ -448,6 +448,17 @@ export declare namespace TagsRequest {
|
||||
type Delete = AuthenticatedRequest<{ id: string }>;
|
||||
}
|
||||
|
||||
// ----------------------------------
|
||||
// /annotation-tags
|
||||
// ----------------------------------
|
||||
|
||||
export declare namespace AnnotationTagsRequest {
|
||||
type GetAll = AuthenticatedRequest<{}, {}, {}, { withUsageCount: string }>;
|
||||
type Create = AuthenticatedRequest<{}, {}, { name: string }>;
|
||||
type Update = AuthenticatedRequest<{ id: string }, {}, { name: string }>;
|
||||
type Delete = AuthenticatedRequest<{ id: string }>;
|
||||
}
|
||||
|
||||
// ----------------------------------
|
||||
// /nodes
|
||||
// ----------------------------------
|
||||
|
||||
Reference in New Issue
Block a user