UNPKG

n8n-nodes-base

Version:

Base nodes of n8n

27 lines (22 loc) 591 B
/** * Spotify Node - Version 1 * Discriminator: resource=player, operation=resume */ interface Credentials { spotifyOAuth2Api: CredentialReference; } /** Resume playback on the current active device */ export type SpotifyV1PlayerResumeParams = { resource: 'player'; operation: 'resume'; }; export type SpotifyV1PlayerResumeOutput = { success?: boolean; }; export type SpotifyV1PlayerResumeNode = { type: 'n8n-nodes-base.spotify'; version: 1; credentials?: Credentials; config: NodeConfig<SpotifyV1PlayerResumeParams>; output?: Items<SpotifyV1PlayerResumeOutput>; };