refactor: Add dto for /credentials/new endpoint (#13307)

This commit is contained in:
Tomi Turtiainen
2025-02-18 16:26:37 +02:00
committed by GitHub
parent 59337019c1
commit 956637b614
5 changed files with 57 additions and 5 deletions

View File

@@ -161,8 +161,6 @@ export declare namespace CredentialRequest {
type Update = AuthenticatedRequest<{ credentialId: string }, {}, CredentialProperties>;
type NewName = AuthenticatedRequest<{}, {}, {}, { name?: string }>;
type Test = AuthenticatedRequest<{}, {}, INodeCredentialTestRequest>;
type Share = AuthenticatedRequest<{ credentialId: string }, {}, { shareWithIds: string[] }>;