n8n-nodes-mailchimp-cmdesign 0.1.31 → 0.1.33
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.
@@ -4,6 +4,7 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
4
4
|
};
|
5
5
|
Object.defineProperty(exports, "__esModule", { value: true });
|
6
6
|
exports.MailchimpCmNode = void 0;
|
7
|
+
console.log('>>>> LOADING MailchimpCmNode.node.ts');
|
7
8
|
const subscriberInputs_1 = __importDefault(require("./subscriberInputs"));
|
8
9
|
class MailchimpCmNode {
|
9
10
|
constructor() {
|
@@ -31,14 +32,18 @@ class MailchimpCmNode {
|
|
31
32
|
name: 'action',
|
32
33
|
type: 'options',
|
33
34
|
options: [
|
35
|
+
{
|
36
|
+
name: 'Dummy Action',
|
37
|
+
value: 'dummyAction',
|
38
|
+
},
|
34
39
|
{
|
35
40
|
name: 'Create/Update Subscriber',
|
36
41
|
value: 'createUpdateSubscriber',
|
37
42
|
description: 'Create or update a subscriber',
|
38
43
|
action: 'Create or update a subscriber',
|
39
|
-
}
|
44
|
+
}
|
40
45
|
],
|
41
|
-
default: '
|
46
|
+
default: 'dummyAction',
|
42
47
|
required: true,
|
43
48
|
},
|
44
49
|
{
|