2020-08-15 19:36:11 -07:00
import {
INodeProperties ,
} from 'n8n-workflow' ;
2021-12-03 00:44:16 -08:00
export const playlistItemOperations : INodeProperties [ ] = [
2020-08-15 19:36:11 -07:00
{
displayName : 'Operation' ,
name : 'operation' ,
type : 'options' ,
2022-05-20 14:47:24 -07:00
noDataExpression : true ,
2020-08-15 19:36:11 -07:00
displayOptions : {
show : {
resource : [
'playlistItem' ,
] ,
} ,
} ,
options : [
{
name : 'Add' ,
value : 'add' ,
description : 'Add an item to a playlist' ,
} ,
{
name : 'Delete' ,
value : 'delete' ,
description : 'Delete a item from a playlist' ,
} ,
{
name : 'Get' ,
value : 'get' ,
2022-05-06 14:01:25 -07:00
description : 'Get a playlist\'s item' ,
2020-08-15 19:36:11 -07:00
} ,
{
name : 'Get All' ,
value : 'getAll' ,
description : 'Retrieve all playlist items' ,
} ,
] ,
default : 'add' ,
2020-10-22 06:46:03 -07:00
} ,
2021-12-03 00:44:16 -08:00
] ;
2020-08-15 19:36:11 -07:00
2021-12-03 00:44:16 -08:00
export const playlistItemFields : INodeProperties [ ] = [
2020-08-15 19:36:11 -07:00
/* -------------------------------------------------------------------------- */
/* playlistItem:add */
/* -------------------------------------------------------------------------- */
{
displayName : 'Playlist ID' ,
name : 'playlistId' ,
type : 'options' ,
typeOptions : {
loadOptionsMethod : 'getPlaylists' ,
} ,
required : true ,
displayOptions : {
show : {
operation : [
'add' ,
] ,
resource : [
'playlistItem' ,
] ,
} ,
} ,
default : '' ,
} ,
{
displayName : 'Video ID' ,
name : 'videoId' ,
type : 'string' ,
required : true ,
displayOptions : {
show : {
operation : [
'add' ,
] ,
resource : [
'playlistItem' ,
] ,
} ,
} ,
default : '' ,
} ,
{
displayName : 'Options' ,
name : 'options' ,
type : 'collection' ,
placeholder : 'Add Option' ,
default : { } ,
displayOptions : {
show : {
operation : [
'add' ,
] ,
resource : [
'playlistItem' ,
] ,
} ,
} ,
options : [
{
2020-08-16 00:40:15 -07:00
displayName : 'End At' ,
name : 'endAt' ,
type : 'dateTime' ,
2020-08-15 19:36:11 -07:00
default : '' ,
2022-05-06 14:01:25 -07:00
description : 'The time, measured in seconds from the start of the video, when the video should stop playing' ,
2020-08-15 19:36:11 -07:00
} ,
{
displayName : 'Note' ,
name : 'note' ,
type : 'string' ,
default : '' ,
2022-05-06 14:01:25 -07:00
description : 'A user-generated note for this item. The property value has a maximum length of 280 characters.' ,
2020-08-15 19:36:11 -07:00
} ,
{
2020-08-16 00:40:15 -07:00
displayName : 'On Behalf Of Content Owner' ,
name : 'onBehalfOfContentOwner' ,
type : 'string' ,
2020-08-15 19:36:11 -07:00
default : '' ,
2022-05-06 14:01:25 -07:00
description : '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' ,
2020-08-15 19:36:11 -07:00
} ,
{
2020-08-16 00:40:15 -07:00
displayName : 'Position' ,
name : 'position' ,
type : 'number' ,
typeOptions : {
minValue : 0 ,
} ,
2020-08-15 19:36:11 -07:00
default : '' ,
2022-05-06 14:01:25 -07:00
description : 'The order in which the item appears in the playlist. The value uses a zero-based index, so the first item has a position of 0, the second item has a position of 1, and so forth.' ,
2020-08-15 19:36:11 -07:00
} ,
{
2020-08-16 00:40:15 -07:00
displayName : 'Start At' ,
name : 'startAt' ,
type : 'dateTime' ,
2020-08-15 19:36:11 -07:00
default : '' ,
2022-05-06 14:01:25 -07:00
description : 'The time, measured in seconds from the start of the video, when the video should start playing' ,
2020-08-15 19:36:11 -07:00
} ,
] ,
} ,
/* -------------------------------------------------------------------------- */
/* playlistItem:get */
/* -------------------------------------------------------------------------- */
{
displayName : 'Playlist Item ID' ,
name : 'playlistItemId' ,
type : 'string' ,
required : true ,
displayOptions : {
show : {
operation : [
'get' ,
] ,
resource : [
'playlistItem' ,
] ,
} ,
} ,
default : '' ,
} ,
{
displayName : 'Fields' ,
name : 'part' ,
type : 'multiOptions' ,
options : [
{
name : '*' ,
value : '*' ,
} ,
{
name : 'Content Details' ,
value : 'contentDetails' ,
} ,
{
name : 'ID' ,
value : 'id' ,
} ,
{
name : 'Snippet' ,
value : 'snippet' ,
} ,
{
name : 'Status' ,
value : 'status' ,
} ,
] ,
required : true ,
displayOptions : {
show : {
operation : [
'get' ,
] ,
resource : [
'playlistItem' ,
] ,
} ,
} ,
2022-05-06 14:01:25 -07:00
description : 'The fields parameter specifies a comma-separated list of one or more playlistItem resource properties that the API response will include' ,
2020-08-15 19:36:11 -07:00
default : [ '*' ] ,
} ,
{
displayName : 'Options' ,
name : 'options' ,
type : 'collection' ,
placeholder : 'Add Option' ,
default : { } ,
displayOptions : {
show : {
operation : [
'get' ,
] ,
resource : [
'playlistItem' ,
] ,
} ,
} ,
options : [
{
displayName : 'On Behalf Of Content Owner' ,
name : 'onBehalfOfContentOwner' ,
type : 'string' ,
default : '' ,
2022-05-06 14:01:25 -07:00
description : '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' ,
2020-08-15 19:36:11 -07:00
} ,
] ,
} ,
/* -------------------------------------------------------------------------- */
/* playlistItem:delete */
/* -------------------------------------------------------------------------- */
{
displayName : 'Playlist Item ID' ,
name : 'playlistItemId' ,
type : 'string' ,
required : true ,
displayOptions : {
show : {
operation : [
'delete' ,
] ,
resource : [
'playlistItem' ,
] ,
} ,
} ,
default : '' ,
} ,
{
displayName : 'Options' ,
name : 'options' ,
type : 'collection' ,
placeholder : 'Add Option' ,
default : { } ,
displayOptions : {
show : {
operation : [
'delete' ,
] ,
resource : [
'playlistItem' ,
] ,
} ,
} ,
options : [
{
displayName : 'On Behalf Of Content Owner' ,
name : 'onBehalfOfContentOwner' ,
type : 'string' ,
default : '' ,
2022-05-06 14:01:25 -07:00
description : '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' ,
2020-08-15 19:36:11 -07:00
} ,
] ,
} ,
/* -------------------------------------------------------------------------- */
/* playlistItem:getAll */
/* -------------------------------------------------------------------------- */
{
displayName : 'Playlist ID' ,
name : 'playlistId' ,
type : 'options' ,
typeOptions : {
loadOptionsMethod : 'getPlaylists' ,
} ,
required : true ,
displayOptions : {
show : {
operation : [
'getAll' ,
] ,
resource : [
'playlistItem' ,
] ,
} ,
} ,
2020-10-22 06:46:03 -07:00
default : '' ,
2020-08-15 19:36:11 -07:00
} ,
{
displayName : 'Fields' ,
name : 'part' ,
type : 'multiOptions' ,
options : [
{
name : '*' ,
value : '*' ,
} ,
{
name : 'Content Details' ,
value : 'contentDetails' ,
} ,
{
name : 'ID' ,
value : 'id' ,
} ,
{
name : 'Snippet' ,
value : 'snippet' ,
} ,
{
name : 'Status' ,
value : 'status' ,
} ,
] ,
required : true ,
displayOptions : {
show : {
operation : [
'getAll' ,
] ,
resource : [
'playlistItem' ,
] ,
} ,
} ,
2022-05-06 14:01:25 -07:00
description : 'The fields parameter specifies a comma-separated list of one or more playlistItem resource properties that the API response will include' ,
2020-08-15 19:36:11 -07:00
default : [ '*' ] ,
} ,
{
displayName : 'Return All' ,
name : 'returnAll' ,
type : 'boolean' ,
displayOptions : {
show : {
operation : [
'getAll' ,
] ,
resource : [
'playlistItem' ,
] ,
} ,
} ,
default : false ,
2022-05-06 14:01:25 -07:00
description : 'Whether to return all results or only up to a given limit' ,
2020-08-15 19:36:11 -07:00
} ,
{
displayName : 'Limit' ,
name : 'limit' ,
type : 'number' ,
displayOptions : {
show : {
operation : [
'getAll' ,
] ,
resource : [
'playlistItem' ,
] ,
returnAll : [
false ,
] ,
} ,
} ,
typeOptions : {
minValue : 1 ,
maxValue : 50 ,
} ,
default : 25 ,
2022-05-06 14:01:25 -07:00
description : 'Max number of results to return' ,
2020-08-15 19:36:11 -07:00
} ,
{
displayName : 'Options' ,
name : 'options' ,
type : 'collection' ,
placeholder : 'Add Option' ,
default : { } ,
displayOptions : {
show : {
operation : [
'getAll' ,
] ,
resource : [
'playlistItem' ,
] ,
} ,
} ,
options : [
{
displayName : 'On Behalf Of Content Owner' ,
name : 'onBehalfOfContentOwner' ,
type : 'string' ,
default : '' ,
2022-05-06 14:01:25 -07:00
description : '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' ,
2020-08-15 19:36:11 -07:00
} ,
] ,
} ,
2021-12-03 00:44:16 -08:00
] ;