n8n-nodes-base
Version:
Base nodes of n8n
121 lines • 3.5 kB
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.mediaFields = exports.mediaOperations = void 0;
exports.mediaOperations = [
{
displayName: 'Operation',
name: 'operation',
type: 'options',
noDataExpression: true,
displayOptions: {
show: {
resource: ['media'],
},
},
options: [
{
name: 'Upload',
value: 'upload',
description: 'Send media to a chat room',
action: 'Upload media to a chatroom',
},
],
default: 'upload',
},
];
exports.mediaFields = [
/* -------------------------------------------------------------------------- */
/* media:upload */
/* -------------------------------------------------------------------------- */
{
displayName: 'Room Name or ID',
name: 'roomId',
type: 'options',
typeOptions: {
loadOptionsMethod: 'getChannels',
},
default: '',
displayOptions: {
show: {
resource: ['media'],
operation: ['upload'],
},
},
description: 'Room ID to post. Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/code/expressions/">expression</a>.',
required: true,
},
{
displayName: 'Input Binary Field',
name: 'binaryPropertyName',
type: 'string',
default: 'data',
required: true,
hint: 'The name of the input binary field containing the file to be uploaded',
displayOptions: {
show: {
resource: ['media'],
operation: ['upload'],
},
},
},
{
displayName: 'Media Type',
name: 'mediaType',
type: 'options',
default: 'image',
displayOptions: {
show: {
resource: ['media'],
operation: ['upload'],
},
},
options: [
{
name: 'File',
value: 'file',
description: 'General file',
},
{
name: 'Image',
value: 'image',
description: 'Image media type',
},
{
name: 'Audio',
value: 'audio',
description: 'Audio media type',
},
{
name: 'Video',
value: 'video',
description: 'Video media type',
},
],
description: 'Type of file being uploaded',
placeholder: 'mxc://matrix.org/uploaded-media-uri',
required: true,
},
{
displayName: 'Additional Fields',
name: 'additionalFields',
type: 'collection',
placeholder: 'Add Field',
default: {},
displayOptions: {
show: {
resource: ['media'],
operation: ['upload'],
},
},
options: [
{
displayName: 'File Name',
name: 'fileName',
type: 'string',
default: '',
description: 'Name of the file being uploaded',
},
],
},
];
//# sourceMappingURL=MediaDescription.js.map