n8n-nodes-wazend-api 0.3.1 → 0.3.2
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.
|
@@ -9243,14 +9243,14 @@ var openapi_default = {
|
|
|
9243
9243
|
};
|
|
9244
9244
|
|
|
9245
9245
|
// nodes/Wazend/base/Wazend.node.ts
|
|
9246
|
-
var
|
|
9246
|
+
var wazendBaseDescription = {
|
|
9247
9247
|
name: "wazend",
|
|
9248
9248
|
displayName: "Wazend",
|
|
9249
9249
|
icon: "file:wazend.svg",
|
|
9250
9250
|
description: "Connect with Whatsapp HTTP API",
|
|
9251
9251
|
group: ["transform"]
|
|
9252
9252
|
};
|
|
9253
|
-
var
|
|
9253
|
+
var wazendNodeDescription = {
|
|
9254
9254
|
subtitle: '={{$parameter["resource"] + ": " + $parameter["operation"]}}',
|
|
9255
9255
|
// String literals keep the node working on both the legacy enum export and
|
|
9256
9256
|
// the current `NodeConnectionTypes` object of n8n-workflow.
|
|
@@ -9379,8 +9379,8 @@ var properties = parser.build(customDefaults);
|
|
|
9379
9379
|
var Wazendv202409 = class {
|
|
9380
9380
|
constructor() {
|
|
9381
9381
|
this.description = {
|
|
9382
|
-
...
|
|
9383
|
-
...
|
|
9382
|
+
...wazendBaseDescription,
|
|
9383
|
+
...wazendNodeDescription,
|
|
9384
9384
|
version: 202409,
|
|
9385
9385
|
usableAsTool: true,
|
|
9386
9386
|
// @ts-ignore
|
|
@@ -20550,8 +20550,8 @@ var properties2 = parser2.build(customDefaults2);
|
|
|
20550
20550
|
var Wazendv202502 = class {
|
|
20551
20551
|
constructor() {
|
|
20552
20552
|
this.description = {
|
|
20553
|
-
...
|
|
20554
|
-
...
|
|
20553
|
+
...wazendBaseDescription,
|
|
20554
|
+
...wazendNodeDescription,
|
|
20555
20555
|
version: 202502,
|
|
20556
20556
|
usableAsTool: true,
|
|
20557
20557
|
// @ts-ignore
|
|
@@ -20563,15 +20563,15 @@ var Wazendv202502 = class {
|
|
|
20563
20563
|
// nodes/Wazend/Wazend.node.ts
|
|
20564
20564
|
var Wazend = class extends import_n8n_workflow.VersionedNodeType {
|
|
20565
20565
|
constructor() {
|
|
20566
|
-
const
|
|
20567
|
-
...
|
|
20566
|
+
const baseDescription = {
|
|
20567
|
+
...wazendBaseDescription,
|
|
20568
20568
|
defaultVersion: 202502
|
|
20569
20569
|
};
|
|
20570
20570
|
const nodeVersions = {
|
|
20571
20571
|
202502: new Wazendv202502(),
|
|
20572
20572
|
202409: new Wazendv202409()
|
|
20573
20573
|
};
|
|
20574
|
-
super(nodeVersions,
|
|
20574
|
+
super(nodeVersions, baseDescription);
|
|
20575
20575
|
}
|
|
20576
20576
|
};
|
|
20577
20577
|
// Annotate the CommonJS export names for ESM import in node:
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "n8n-nodes-wazend-api",
|
|
3
|
-
"version": "0.3.
|
|
3
|
+
"version": "0.3.2",
|
|
4
4
|
"description": "Wazend API nodes for WhatsApp messaging and webhook events in n8n",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"n8n-community-node-package"
|
|
@@ -26,11 +26,12 @@
|
|
|
26
26
|
"scripts": {
|
|
27
27
|
"build": "node scripts/build.mjs",
|
|
28
28
|
"test": "jest --runInBand",
|
|
29
|
+
"test:dist": "node scripts/smoke-dist.mjs",
|
|
29
30
|
"test:sync": "node scripts/sync.test.mjs",
|
|
30
31
|
"check:branding": "node scripts/check-branding.mjs",
|
|
31
32
|
"lint": "node scripts/lint-community.mjs",
|
|
32
33
|
"lint:dist": "node scripts/lint-community.mjs --dist",
|
|
33
|
-
"prepublishOnly": "npm run check:branding && npm run lint && npm test && npm run build && npm run lint:dist"
|
|
34
|
+
"prepublishOnly": "npm run check:branding && npm run lint && npm test && npm run build && npm run test:dist && npm run lint:dist"
|
|
34
35
|
},
|
|
35
36
|
"files": [
|
|
36
37
|
"dist",
|