mirror of
https://github.com/n8n-io/n8n.git
synced 2025-03-05 20:50:17 -08:00
* 👕 Move `consistent-type-imports` to top level * 👕 Apply lintfixes * 👕 Apply more lintfixes * 👕 More lintfixes * 👕 More lintfixes
17 lines
469 B
TypeScript
17 lines
469 B
TypeScript
import type { ICredentialsResponse, IRestApiContext, IShareCredentialsPayload } from '@/Interface';
|
|
import { makeRestApiRequest } from '@/utils';
|
|
import type { IDataObject } from 'n8n-workflow';
|
|
|
|
export async function setCredentialSharedWith(
|
|
context: IRestApiContext,
|
|
id: string,
|
|
data: IShareCredentialsPayload,
|
|
): Promise<ICredentialsResponse> {
|
|
return makeRestApiRequest(
|
|
context,
|
|
'PUT',
|
|
`/credentials/${id}/share`,
|
|
data as unknown as IDataObject,
|
|
);
|
|
}
|