n8n-nodes-ms-dataverse 0.3.3 → 0.5.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +45 -0
- package/dist/nodes/Dataverse/Dataverse.node.d.ts +3 -0
- package/dist/nodes/Dataverse/Dataverse.node.js +108 -1
- package/dist/nodes/Dataverse/Dataverse.node.js.map +1 -1
- package/dist/nodes/Dataverse/descriptions.d.ts +6 -0
- package/dist/nodes/Dataverse/descriptions.js +708 -6
- package/dist/nodes/Dataverse/descriptions.js.map +1 -1
- package/dist/nodes/Dataverse/operations/PluginOperations.d.ts +5 -0
- package/dist/nodes/Dataverse/operations/PluginOperations.js +132 -0
- package/dist/nodes/Dataverse/operations/PluginOperations.js.map +1 -0
- package/dist/nodes/Dataverse/operations/RecordOperations.js +24 -6
- package/dist/nodes/Dataverse/operations/RecordOperations.js.map +1 -1
- package/dist/nodes/Dataverse/operations/WebResourceOperations.d.ts +5 -0
- package/dist/nodes/Dataverse/operations/WebResourceOperations.js +95 -0
- package/dist/nodes/Dataverse/operations/WebResourceOperations.js.map +1 -0
- package/dist/nodes/Dataverse/operations/WebhookOperations.d.ts +8 -0
- package/dist/nodes/Dataverse/operations/WebhookOperations.js +196 -0
- package/dist/nodes/Dataverse/operations/WebhookOperations.js.map +1 -0
- package/dist/nodes/Dataverse/types.d.ts +1 -1
- package/dist/package.json +1 -1
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -43,6 +43,51 @@ This node supports the following operations on Dataverse records:
|
|
|
43
43
|
- Read-only access (no INSERT, UPDATE, DELETE)
|
|
44
44
|
- Requires TDS endpoint to be enabled in your Dataverse environment
|
|
45
45
|
|
|
46
|
+
### Webhook Operations
|
|
47
|
+
|
|
48
|
+
Manage webhook endpoints and steps for real-time event notifications from Dataverse.
|
|
49
|
+
|
|
50
|
+
- **Register Endpoint**: Create a reusable webhook URL (ServiceEndpoint)
|
|
51
|
+
- **Register Step**: Link an endpoint to a specific table and operation (SDK Message Processing Step)
|
|
52
|
+
- **List Endpoints**: List all registered webhook endpoints
|
|
53
|
+
- **List Endpoint Steps**: List steps associated with an endpoint
|
|
54
|
+
- **Delete Endpoint**: Delete a webhook endpoint and all its associated steps
|
|
55
|
+
- **Delete Step**: Delete a specific SDK message processing step
|
|
56
|
+
- **List SDK Message Filters**: List available message filters for a table
|
|
57
|
+
|
|
58
|
+
**Two-stage registration:**
|
|
59
|
+
1. First, register a reusable endpoint (webhook URL)
|
|
60
|
+
2. Then, register one or more steps to link that endpoint to table events (Create, Update, Delete, Assign, SetState)
|
|
61
|
+
|
|
62
|
+
For Update operations, you can specify **Filtering Attributes** — a comma-separated list of field names that trigger the webhook (e.g., `name,emailaddress1`).
|
|
63
|
+
|
|
64
|
+
### Plugin Operations
|
|
65
|
+
|
|
66
|
+
Manage DLL plugin assemblies and their registration steps.
|
|
67
|
+
|
|
68
|
+
- **Upload Assembly**: Upload a DLL plugin assembly to Dataverse
|
|
69
|
+
- **Register Step**: Register a plugin step for a table/operation
|
|
70
|
+
- **List Assemblies**: List all plugin assemblies
|
|
71
|
+
- **Delete Assembly**: Delete a plugin assembly
|
|
72
|
+
|
|
73
|
+
Plugin steps support:
|
|
74
|
+
- **Event Operations**: Create, Update, Delete
|
|
75
|
+
- **Execution Stages**: Pre-Validation, Pre-Operation, Post-Operation
|
|
76
|
+
- **Filtering Attributes**: Specify which fields trigger the plugin (Update only)
|
|
77
|
+
|
|
78
|
+
### Web Resource Operations
|
|
79
|
+
|
|
80
|
+
Upload and manage web resources (JavaScript, CSS, HTML, images, etc.).
|
|
81
|
+
|
|
82
|
+
- **Upload**: Create a new web resource
|
|
83
|
+
- **Update**: Update content of an existing web resource
|
|
84
|
+
- **List**: List web resources with optional type filter
|
|
85
|
+
- **Delete**: Delete a web resource
|
|
86
|
+
|
|
87
|
+
Supported web resource types: HTML, CSS, JavaScript, XML, PNG, JPG, GIF, XAP (Silverlight), XSL, ICO, SVG, RESX.
|
|
88
|
+
|
|
89
|
+
For text-based types (JS, CSS, HTML, XML), provide raw code — it will be base64-encoded automatically. For binary types (images), provide pre-encoded base64 content.
|
|
90
|
+
|
|
46
91
|
### Features
|
|
47
92
|
|
|
48
93
|
- **Dynamic Table Discovery**: Automatically loads available tables from your Dataverse environment using the OData metadata endpoint
|
|
@@ -1,5 +1,8 @@
|
|
|
1
1
|
import type { IExecuteFunctions, INodeExecutionData, INodeType, INodeTypeDescription } from 'n8n-workflow';
|
|
2
2
|
import { searchTables, getTableFieldsForDisplay } from './GenericFunctions';
|
|
3
|
+
export type RecordIdType = 'id' | 'alternateKey';
|
|
4
|
+
export type QueryType = 'odata' | 'fetchxml';
|
|
5
|
+
export type Operation = 'create' | 'delete' | 'get' | 'getMany' | 'update' | 'executeQuery' | 'registerEndpoint' | 'registerWebhookStep' | 'listEndpoints' | 'deleteEndpoint' | 'listEndpointSteps' | 'deleteStep' | 'listSdkMessageFilters' | 'uploadPluginAssembly' | 'registerPluginStep' | 'listPluginAssemblies' | 'deletePluginAssembly' | 'uploadWebResource' | 'updateWebResource' | 'listWebResources' | 'deleteWebResource';
|
|
3
6
|
export declare class Dataverse implements INodeType {
|
|
4
7
|
description: INodeTypeDescription;
|
|
5
8
|
methods: {
|
|
@@ -5,7 +5,10 @@ const n8n_workflow_1 = require("n8n-workflow");
|
|
|
5
5
|
const GenericFunctions_1 = require("./GenericFunctions");
|
|
6
6
|
const descriptions_1 = require("./descriptions");
|
|
7
7
|
const RecordOperations_1 = require("./operations/RecordOperations");
|
|
8
|
+
const PluginOperations_1 = require("./operations/PluginOperations");
|
|
9
|
+
const WebResourceOperations_1 = require("./operations/WebResourceOperations");
|
|
8
10
|
const SqlOperations_1 = require("./operations/SqlOperations");
|
|
11
|
+
const WebhookOperations_1 = require("./operations/WebhookOperations");
|
|
9
12
|
class Dataverse {
|
|
10
13
|
constructor() {
|
|
11
14
|
this.description = {
|
|
@@ -38,7 +41,12 @@ class Dataverse {
|
|
|
38
41
|
properties: [
|
|
39
42
|
descriptions_1.resourceDescription,
|
|
40
43
|
descriptions_1.operationDescription,
|
|
41
|
-
descriptions_1.
|
|
44
|
+
descriptions_1.pluginOperationDescription,
|
|
45
|
+
...descriptions_1.pluginOperationFields,
|
|
46
|
+
descriptions_1.webResourceOperationDescription,
|
|
47
|
+
...descriptions_1.webResourceOperationFields,
|
|
48
|
+
descriptions_1.webhookOperationDescription,
|
|
49
|
+
...descriptions_1.webhookOperationFields,
|
|
42
50
|
descriptions_1.tableDescription,
|
|
43
51
|
descriptions_1.fieldSchemaSelector,
|
|
44
52
|
...descriptions_1.createOperationFields,
|
|
@@ -106,6 +114,105 @@ class Dataverse {
|
|
|
106
114
|
returnData.push(result);
|
|
107
115
|
}
|
|
108
116
|
}
|
|
117
|
+
else if (resource === 'webhook') {
|
|
118
|
+
let result;
|
|
119
|
+
switch (operation) {
|
|
120
|
+
case 'registerEndpoint': {
|
|
121
|
+
result = await WebhookOperations_1.registerEndpoint.call(this, i);
|
|
122
|
+
break;
|
|
123
|
+
}
|
|
124
|
+
case 'registerWebhookStep': {
|
|
125
|
+
result = await WebhookOperations_1.registerWebhookStep.call(this, i);
|
|
126
|
+
break;
|
|
127
|
+
}
|
|
128
|
+
case 'listEndpoints': {
|
|
129
|
+
result = await WebhookOperations_1.listEndpoints.call(this, i);
|
|
130
|
+
break;
|
|
131
|
+
}
|
|
132
|
+
case 'deleteEndpoint': {
|
|
133
|
+
result = await WebhookOperations_1.deleteEndpoint.call(this, i);
|
|
134
|
+
break;
|
|
135
|
+
}
|
|
136
|
+
case 'listEndpointSteps': {
|
|
137
|
+
result = await WebhookOperations_1.listEndpointSteps.call(this, i);
|
|
138
|
+
break;
|
|
139
|
+
}
|
|
140
|
+
case 'deleteStep': {
|
|
141
|
+
result = await WebhookOperations_1.deleteStep.call(this, i);
|
|
142
|
+
break;
|
|
143
|
+
}
|
|
144
|
+
case 'listSdkMessageFilters': {
|
|
145
|
+
result = await WebhookOperations_1.listSdkMessageFilters.call(this, i);
|
|
146
|
+
break;
|
|
147
|
+
}
|
|
148
|
+
default:
|
|
149
|
+
throw new n8n_workflow_1.NodeOperationError(this.getNode(), `The webhook operation "${operation}" is not supported`);
|
|
150
|
+
}
|
|
151
|
+
if (Array.isArray(result)) {
|
|
152
|
+
returnData.push(...result);
|
|
153
|
+
}
|
|
154
|
+
else {
|
|
155
|
+
returnData.push(result);
|
|
156
|
+
}
|
|
157
|
+
}
|
|
158
|
+
else if (resource === 'plugin') {
|
|
159
|
+
let result;
|
|
160
|
+
switch (operation) {
|
|
161
|
+
case 'uploadPluginAssembly': {
|
|
162
|
+
result = await PluginOperations_1.uploadPluginAssembly.call(this, i);
|
|
163
|
+
break;
|
|
164
|
+
}
|
|
165
|
+
case 'registerPluginStep': {
|
|
166
|
+
result = await PluginOperations_1.registerPluginStep.call(this, i);
|
|
167
|
+
break;
|
|
168
|
+
}
|
|
169
|
+
case 'listPluginAssemblies': {
|
|
170
|
+
result = await PluginOperations_1.listPluginAssemblies.call(this, i);
|
|
171
|
+
break;
|
|
172
|
+
}
|
|
173
|
+
case 'deletePluginAssembly': {
|
|
174
|
+
result = await PluginOperations_1.deletePluginAssembly.call(this, i);
|
|
175
|
+
break;
|
|
176
|
+
}
|
|
177
|
+
default:
|
|
178
|
+
throw new n8n_workflow_1.NodeOperationError(this.getNode(), `The plugin operation "${operation}" is not supported`);
|
|
179
|
+
}
|
|
180
|
+
if (Array.isArray(result)) {
|
|
181
|
+
returnData.push(...result);
|
|
182
|
+
}
|
|
183
|
+
else {
|
|
184
|
+
returnData.push(result);
|
|
185
|
+
}
|
|
186
|
+
}
|
|
187
|
+
else if (resource === 'webresource') {
|
|
188
|
+
let result;
|
|
189
|
+
switch (operation) {
|
|
190
|
+
case 'uploadWebResource': {
|
|
191
|
+
result = await WebResourceOperations_1.uploadWebResource.call(this, i);
|
|
192
|
+
break;
|
|
193
|
+
}
|
|
194
|
+
case 'updateWebResource': {
|
|
195
|
+
result = await WebResourceOperations_1.updateWebResource.call(this, i);
|
|
196
|
+
break;
|
|
197
|
+
}
|
|
198
|
+
case 'listWebResources': {
|
|
199
|
+
result = await WebResourceOperations_1.listWebResources.call(this, i);
|
|
200
|
+
break;
|
|
201
|
+
}
|
|
202
|
+
case 'deleteWebResource': {
|
|
203
|
+
result = await WebResourceOperations_1.deleteWebResource.call(this, i);
|
|
204
|
+
break;
|
|
205
|
+
}
|
|
206
|
+
default:
|
|
207
|
+
throw new n8n_workflow_1.NodeOperationError(this.getNode(), `The web resource operation "${operation}" is not supported`);
|
|
208
|
+
}
|
|
209
|
+
if (Array.isArray(result)) {
|
|
210
|
+
returnData.push(...result);
|
|
211
|
+
}
|
|
212
|
+
else {
|
|
213
|
+
returnData.push(result);
|
|
214
|
+
}
|
|
215
|
+
}
|
|
109
216
|
}
|
|
110
217
|
catch (error) {
|
|
111
218
|
if (this.continueOnFail()) {
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Dataverse.node.js","sourceRoot":"","sources":["../../../nodes/Dataverse/Dataverse.node.ts"],"names":[],"mappings":";;;AAMA,+CAAkD;AAElD,yDAA4E;AAC5E,
|
|
1
|
+
{"version":3,"file":"Dataverse.node.js","sourceRoot":"","sources":["../../../nodes/Dataverse/Dataverse.node.ts"],"names":[],"mappings":"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"}
|
|
@@ -8,5 +8,11 @@ export declare const createOperationFields: INodeProperties[];
|
|
|
8
8
|
export declare const getOperationFields: INodeProperties[];
|
|
9
9
|
export declare const updateOperationFields: INodeProperties[];
|
|
10
10
|
export declare const getManyOperationFields: INodeProperties[];
|
|
11
|
+
export declare const webhookOperationDescription: INodeProperties;
|
|
12
|
+
export declare const webhookOperationFields: INodeProperties[];
|
|
11
13
|
export declare const sqlOperationDescription: INodeProperties;
|
|
12
14
|
export declare const sqlQueryFields: INodeProperties[];
|
|
15
|
+
export declare const pluginOperationDescription: INodeProperties;
|
|
16
|
+
export declare const pluginOperationFields: INodeProperties[];
|
|
17
|
+
export declare const webResourceOperationDescription: INodeProperties;
|
|
18
|
+
export declare const webResourceOperationFields: INodeProperties[];
|