Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

n8n-nodes-appwriten8n

Package Overview
Dependencies
Maintainers
1
Versions
39
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

n8n-nodes-appwriten8n - npm Package Compare versions

Comparing version 0.1.5 to 0.1.6

11

dist/nodes/Appwrite/Appwrite.node.js

@@ -15,7 +15,7 @@ "use strict";

name: 'appwrite',
group: [],
icon: 'file:Appwrite.svg',
group: ['transform'],
version: 1,
subtitle: '={{ $parameter["operation"] + ": " + $parameter["resource"] }}',
description: "Use Appwrite's API from inside N8N, updated by @ZachHandley",
icon: 'file:Appwrite.svg',
defaults: {

@@ -29,3 +29,3 @@ name: 'Appwrite',

name: "appwriteApi",
required: false,
required: true,
},

@@ -38,2 +38,3 @@ ],

noDataExpression: true,
required: true,
type: 'options',

@@ -58,6 +59,6 @@ options: [

...DocumentDescription_1.documentOperations,
...DocumentDescription_1.documentFields,
...StorageDescription_1.storageOperations,
...StorageDescription_1.storageFields,
...FunctionDescription_1.functionOperations,
...DocumentDescription_1.documentFields,
...StorageDescription_1.storageFields,
...FunctionDescription_1.functionFields,

@@ -64,0 +65,0 @@ ],

@@ -6,4 +6,4 @@ "use strict";

{
displayName: 'Options',
name: 'option',
displayName: 'Operation',
name: 'operation',
noDataExpression: true,

@@ -23,3 +23,3 @@ type: 'options',

value: 'createDoc',
action: 'Create Document',
action: 'Create document',
description: 'Create a document in collection',

@@ -31,3 +31,3 @@ },

value: 'deleteDoc',
action: 'Delete Document',
action: 'Delete document',
description: 'Delete document in collection',

@@ -39,3 +39,3 @@ },

value: 'getDoc',
action: 'Get Document by ID',
action: 'Get document by id',
description: 'Get a document in collection',

@@ -47,3 +47,3 @@ },

value: 'getAllDocs',
action: 'Get All Documents with optional queries',
action: 'Get all documents with optional queries',
description: 'Get all documents in collection',

@@ -55,3 +55,3 @@ },

value: 'updateDoc',
action: 'Update Document',
action: 'Update document',
description: 'Get all documents in collection',

@@ -71,2 +71,5 @@ },

show: {
resource: [
'document',
],
operation: [

@@ -79,5 +82,2 @@ 'createDoc',

],
resource: [
'document',
],
},

@@ -96,2 +96,5 @@ },

show: {
resource: [
'document',
],
operation: [

@@ -104,5 +107,2 @@ 'createDoc',

],
resource: [
'document',
],
},

@@ -120,2 +120,5 @@ },

show: {
resource: [
'document',
],
operation: [

@@ -127,5 +130,2 @@ 'createDoc',

],
resource: [
'document',
],
},

@@ -144,2 +144,5 @@ },

show: {
resource: [
'document',
],
operation: [

@@ -149,5 +152,2 @@ 'createDoc',

],
resource: [
'document',
],
},

@@ -169,13 +169,2 @@ },

default: {},
displayOptions: {
show: {
operation: [
'getAllDocs',
'getDoc',
],
resource: [
'document',
],
},
},
options: [

@@ -308,2 +297,13 @@ {

],
displayOptions: {
show: {
resource: [
'document',
],
operation: [
'getAllDocs',
'getDoc',
],
},
},
},

@@ -310,0 +310,0 @@ ],

@@ -6,4 +6,4 @@ "use strict";

{
displayName: 'Options',
name: 'option',
displayName: 'Operation',
name: 'operation',
noDataExpression: true,

@@ -20,15 +20,22 @@ type: 'options',

{
name: 'Execute Function',
displayName: "Execute Function",
value: 'executeFunction',
action: 'Execute function',
description: 'Execute a given function and output its result',
},
{
name: 'Get Function',
displayName: "Get Function",
value: 'getFunction',
action: 'Get function',
description: 'Get a Function in the current project',
},
{
name: 'List Functions',
displayName: "List Functions",
value: 'listFunctions',
action: 'List Functions',
action: 'List functions',
description: 'List Functions in the current project',
},
{
name: 'Execute Function',
displayName: "Execute Function",
value: 'executeFunction',
action: 'Execute Function',
description: 'Execute a given function and output its result',
},
],

@@ -55,3 +62,4 @@ default: 'executeFunction',

default: '',
description: 'Function ID to execute',
requiresDataPath: 'single',
description: 'Function ID to get or execute',
},

@@ -58,0 +66,0 @@ {

@@ -6,4 +6,4 @@ "use strict";

{
displayName: 'Options',
name: 'option',
displayName: 'Operation',
name: 'operation',
noDataExpression: true,

@@ -23,3 +23,3 @@ type: 'options',

value: 'createBucket',
action: 'Create a Storage Bucket',
action: 'Create a storage bucket',
description: 'Create a bucket in the current project',

@@ -31,3 +31,3 @@ },

value: 'createFile',
action: 'Create a File in Bucket',
action: 'Create a file in bucket',
description: 'Create a file in a given bucket',

@@ -39,3 +39,3 @@ },

value: 'deleteBucket',
action: 'Delete a Storage Bucket',
action: 'Delete a storage bucket',
description: 'Delete a bucket from the current project',

@@ -47,3 +47,3 @@ },

value: 'deleteFile',
action: 'Delete a File from Bucket by ID',
action: 'Delete a file from bucket by id',
description: 'Delete a file from a given bucket',

@@ -55,3 +55,3 @@ },

value: 'getFile',
action: 'Get a File from Bucket by ID',
action: 'Get a file from bucket by id',
description: 'Get a file from a given bucket',

@@ -63,3 +63,3 @@ },

value: 'listBuckets',
action: 'List Storage Buckets',
action: 'List storage buckets',
description: 'List your Storage Buckets in the current project',

@@ -71,3 +71,3 @@ },

value: 'listFiles',
action: 'List Files in Bucket',
action: 'List files in bucket',
description: 'List files in a given bucket',

@@ -74,0 +74,0 @@ },

{
"name": "n8n-nodes-appwriten8n",
"version": "0.1.5",
"version": "0.1.6",
"description": "N8N Nodes for Appwrite starting at 1.4.X and up, will be updated.",

@@ -5,0 +5,0 @@ "keywords": [

{
"name": "n8n-nodes-appwriten8n",
"version": "0.1.5",
"version": "0.1.6",
"description": "N8N Nodes for Appwrite starting at 1.4.X and up, will be updated.",

@@ -5,0 +5,0 @@ "keywords": [

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc