/** * YouTube Node - Version 1 * Discriminator: resource=playlist, operation=delete */ interface Credentials { youTubeOAuth2Api: CredentialReference; } /** Delete a playlist */ export type YouTubeV1PlaylistDeleteParams = { resource: 'playlist'; operation: 'delete'; /** * Playlist ID */ playlistId?: string | Expression | PlaceholderValue; /** * Options * @default {} */ options?: { /** The onBehalfOfContentOwner parameter indicates that the request's authorization credentials identify a YouTube CMS user who is acting on behalf of the content owner specified in the parameter value */ onBehalfOfContentOwner?: string | Expression | PlaceholderValue; }; }; export type YouTubeV1PlaylistDeleteNode = { type: 'n8n-nodes-base.youTube'; version: 1; credentials?: Credentials; config: NodeConfig; };