@adaptive-ds/n8n-nodes-publer 1.1.10 → 1.1.11

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.
@@ -30,7 +30,7 @@ class PublerApi {
30
30
  properties: {
31
31
  headers: {
32
32
  Authorization: "=Bearer-API {{$credentials.apiToken}}",
33
- "Publer-Workspace-Id": "={{$credentials.workspaceId}}",
33
+ "Publer-Workspace-Id": "={{ $credentials.workspaceId ? $credentials.workspaceId : undefined }}",
34
34
  },
35
35
  },
36
36
  };
@@ -1 +1 @@
1
- {"version":3,"file":"PublerApi.credentials.js","sourceRoot":"","sources":["../../credentials/PublerApi.credentials.ts"],"names":[],"mappings":";;;AAEA,MAAa,SAAS;IAAtB;QACE,SAAI,GAAG,WAAW,CAAA;QAClB,gBAAW,GAAG,YAAY,CAAA;QAC1B,qBAAgB,GAAG,yBAAyB,CAAA;QAC5C,eAAU,GAAsB;YAC9B;gBACE,WAAW,EAAE,WAAW;gBACxB,IAAI,EAAE,UAAU;gBAChB,IAAI,EAAE,QAAQ;gBACd,WAAW,EAAE;oBACX,QAAQ,EAAE,IAAI;iBACf;gBACD,OAAO,EAAE,EAAE;gBACX,WAAW,EAAE,uBAAuB;aACrC;YACD;gBACE,WAAW,EAAE,cAAc;gBAC3B,IAAI,EAAE,aAAa;gBACnB,IAAI,EAAE,QAAQ;gBACd,OAAO,EAAE,EAAE;gBACX,WAAW,EAAE,6EAA6E;aAC3F;SACF,CAAA;QACD,iBAAY,GAAG;YACb,IAAI,EAAE,SAAkB;YACxB,UAAU,EAAE;gBACV,OAAO,EAAE;oBACP,aAAa,EAAE,uCAAuC;oBACtD,qBAAqB,EAAE,+BAA+B;iBACvD;aACF;SACF,CAAA;IACH,CAAC;CAAA;AAhCD,8BAgCC"}
1
+ {"version":3,"file":"PublerApi.credentials.js","sourceRoot":"","sources":["../../credentials/PublerApi.credentials.ts"],"names":[],"mappings":";;;AAEA,MAAa,SAAS;IAAtB;QACE,SAAI,GAAG,WAAW,CAAA;QAClB,gBAAW,GAAG,YAAY,CAAA;QAC1B,qBAAgB,GAAG,yBAAyB,CAAA;QAC5C,eAAU,GAAsB;YAC9B;gBACE,WAAW,EAAE,WAAW;gBACxB,IAAI,EAAE,UAAU;gBAChB,IAAI,EAAE,QAAQ;gBACd,WAAW,EAAE;oBACX,QAAQ,EAAE,IAAI;iBACf;gBACD,OAAO,EAAE,EAAE;gBACX,WAAW,EAAE,uBAAuB;aACrC;YACD;gBACE,WAAW,EAAE,cAAc;gBAC3B,IAAI,EAAE,aAAa;gBACnB,IAAI,EAAE,QAAQ;gBACd,OAAO,EAAE,EAAE;gBACX,WAAW,EAAE,6EAA6E;aAC3F;SACF,CAAA;QACD,iBAAY,GAAG;YACb,IAAI,EAAE,SAAkB;YACxB,UAAU,EAAE;gBACV,OAAO,EAAE;oBACP,aAAa,EAAE,uCAAuC;oBACtD,qBAAqB,EAAE,wEAAwE;iBAChG;aACF;SACF,CAAA;IACH,CAAC;CAAA;AAhCD,8BAgCC"}
@@ -12,12 +12,12 @@
12
12
  ],
13
13
  "security": [
14
14
  {
15
- "BearerApiAuth": []
15
+ "publerApi": []
16
16
  }
17
17
  ],
18
18
  "components": {
19
19
  "securitySchemes": {
20
- "BearerApiAuth": {
20
+ "publerApi": {
21
21
  "type": "apiKey",
22
22
  "name": "Authorization",
23
23
  "in": "header",
@@ -12,12 +12,12 @@
12
12
  ],
13
13
  "security": [
14
14
  {
15
- "BearerApiAuth": []
15
+ "publerApi": []
16
16
  }
17
17
  ],
18
18
  "components": {
19
19
  "securitySchemes": {
20
- "BearerApiAuth": {
20
+ "publerApi": {
21
21
  "type": "apiKey",
22
22
  "name": "Authorization",
23
23
  "in": "header",
@@ -12,12 +12,12 @@
12
12
  ],
13
13
  "security": [
14
14
  {
15
- "BearerApiAuth": []
15
+ "publerApi": []
16
16
  }
17
17
  ],
18
18
  "components": {
19
19
  "securitySchemes": {
20
- "BearerApiAuth": {
20
+ "publerApi": {
21
21
  "type": "apiKey",
22
22
  "name": "Authorization",
23
23
  "in": "header",
@@ -12,12 +12,12 @@
12
12
  ],
13
13
  "security": [
14
14
  {
15
- "BearerApiAuth": []
15
+ "publerApi": []
16
16
  }
17
17
  ],
18
18
  "components": {
19
19
  "securitySchemes": {
20
- "BearerApiAuth": {
20
+ "publerApi": {
21
21
  "type": "apiKey",
22
22
  "name": "Authorization",
23
23
  "in": "header",
@@ -0,0 +1,5 @@
1
+ import type { IExecuteFunctions, INodeExecutionData, INodeType, INodeTypeDescription } from "n8n-workflow";
2
+ export declare class PublerMe implements INodeType {
3
+ description: INodeTypeDescription;
4
+ execute(this: IExecuteFunctions): Promise<INodeExecutionData[][]>;
5
+ }
@@ -0,0 +1,120 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.PublerMe = void 0;
4
+ class PublerMe {
5
+ constructor() {
6
+ this.description = {
7
+ displayName: "Publer Me",
8
+ name: "publerMe",
9
+ icon: "file:logo.svg",
10
+ group: ["input"],
11
+ version: 1,
12
+ description: "Get current authenticated user information from Publer",
13
+ defaults: {
14
+ name: "Publer Me",
15
+ },
16
+ inputs: ["main"],
17
+ outputs: ["main"],
18
+ credentials: [
19
+ {
20
+ name: "publerApi",
21
+ required: true,
22
+ },
23
+ ],
24
+ properties: [
25
+ {
26
+ displayName: "Operation",
27
+ name: "operation",
28
+ type: "options",
29
+ noDataExpression: true,
30
+ options: [
31
+ {
32
+ name: "Get Current User",
33
+ value: "getCurrentUser",
34
+ description: "Get information about the currently authenticated user",
35
+ action: "Get current user",
36
+ },
37
+ ],
38
+ default: "getCurrentUser",
39
+ },
40
+ ],
41
+ };
42
+ }
43
+ async execute() {
44
+ const items = this.getInputData();
45
+ const returnData = [];
46
+ const credentials = await this.getCredentials("publerApi");
47
+ const apiToken = credentials.apiToken;
48
+ if (!apiToken) {
49
+ this.logger.error("API Token is missing", {
50
+ credentialName: "publerApi",
51
+ });
52
+ throw new Error("API Token is required");
53
+ }
54
+ this.logger.debug("Credentials retrieved", {
55
+ hasApiToken: !!apiToken,
56
+ itemCount: items.length,
57
+ });
58
+ const operation = this.getNodeParameter("operation", 0);
59
+ this.logger.info("Starting execution", { operation, itemCount: items.length });
60
+ for (let itemIndex = 0; itemIndex < items.length; itemIndex++) {
61
+ try {
62
+ if (operation === "getCurrentUser") {
63
+ const endpoint = "https://app.publer.com/api/v1/users/me";
64
+ this.logger.info("Making API request", {
65
+ itemIndex,
66
+ endpoint,
67
+ method: "GET",
68
+ });
69
+ const response = await this.helpers.requestWithAuthentication.call(this, "publerApi", {
70
+ method: "GET",
71
+ url: endpoint,
72
+ headers: {
73
+ Authorization: `Bearer-API ${apiToken}`,
74
+ Accept: "application/json",
75
+ },
76
+ json: true,
77
+ });
78
+ this.logger.info("API request successful", {
79
+ itemIndex,
80
+ endpoint,
81
+ responseType: typeof response,
82
+ });
83
+ this.logger.debug("Response data", {
84
+ itemIndex,
85
+ responseKeys: response ? Object.keys(response) : [],
86
+ });
87
+ returnData.push({
88
+ json: response,
89
+ pairedItem: { item: itemIndex },
90
+ });
91
+ }
92
+ }
93
+ catch (error) {
94
+ this.logger.error("API request failed", {
95
+ itemIndex,
96
+ operation,
97
+ error: error.message,
98
+ stack: error.stack,
99
+ });
100
+ if (this.continueOnFail()) {
101
+ this.logger.warn("Continuing on fail", { itemIndex });
102
+ returnData.push({
103
+ json: { error: error.message },
104
+ pairedItem: { item: itemIndex },
105
+ });
106
+ }
107
+ else {
108
+ throw error;
109
+ }
110
+ }
111
+ }
112
+ this.logger.info("Execution completed", {
113
+ operation,
114
+ processedItems: returnData.length,
115
+ });
116
+ return [returnData];
117
+ }
118
+ }
119
+ exports.PublerMe = PublerMe;
120
+ //# sourceMappingURL=PublerMe.node.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"PublerMe.node.js","sourceRoot":"","sources":["../../../nodes/PublerMe/PublerMe.node.ts"],"names":[],"mappings":"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"}
@@ -0,0 +1 @@
1
+ export {};
@@ -0,0 +1,8 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ const PublerMe_node_1 = require("./PublerMe.node");
4
+ test("PublerMe", () => {
5
+ const node = new PublerMe_node_1.PublerMe();
6
+ expect(node.description.properties).toBeDefined();
7
+ });
8
+ //# sourceMappingURL=PublerMe.spec.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"PublerMe.spec.js","sourceRoot":"","sources":["../../../nodes/PublerMe/PublerMe.spec.ts"],"names":[],"mappings":";;AAAA,mDAA0C;AAE1C,IAAI,CAAC,UAAU,EAAE,GAAG,EAAE;IACpB,MAAM,IAAI,GAAG,IAAI,wBAAQ,EAAE,CAAA;IAC3B,MAAM,CAAC,IAAI,CAAC,WAAW,CAAC,UAAU,CAAC,CAAC,WAAW,EAAE,CAAA;AACnD,CAAC,CAAC,CAAA"}
@@ -0,0 +1,44 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 115 38" height='38' width="115">
2
+ <path
3
+ fill="#113A54"
4
+ d="M43.6 31V13.4h7.7c1 0 1.8.1 2.6.4.6.3 1.1.7 1.5 1.2.4.6.7 1.2.8 1.9a14 14 0 0 1 0 4.7c-.1.6-.4 1.3-.8 1.8-.3.6-.9 1-1.5 1.2-.8.3-1.7.4-2.6.4H47v6h-3.5Zm3.5-8.8h2.8c.5 0 1.1 0 1.6-.2.4 0 .7-.2 1-.4l.3-.9.2-1.5c0-.5 0-1-.2-1.4l-.3-.9c-.3-.2-.6-.4-.9-.4l-1.6-.1h-3v5.8ZM63 31.1c-.7 0-1.4 0-2-.3-.5-.2-.9-.5-1.2-1-.3-.4-.5-1-.5-1.5A14 14 0 0 1 59 26v-8h3.2v6.8l.1 1.9c0 .4.1.7.3 1 .2.2.4.4.7.4l1.1.1c.4 0 .9 0 1.3-.2.3 0 .5-.3.7-.6l.2-1V18H70v13h-3l-.1-1.6h-.2a3 3 0 0 1-.9 1c-.3.3-.8.5-1.2.6-.6.1-1.1.2-1.7.1Zm17.4 0-1.5-.1-1.2-.5a3 3 0 0 1-1-1.2h-.2l-.1 1.7h-3V12h3.2v7.4h.2a2 2 0 0 1 1-1c.3-.3.7-.4 1.1-.5a7.3 7.3 0 0 1 3.4.2c.5.2 1 .6 1.3 1.1.4.6.6 1.3.7 2a18.9 18.9 0 0 1 0 6.5c0 .8-.3 1.5-.7 2-.3.6-.8 1-1.3 1.2-.6.2-1.3.3-2 .2ZM79 28.2h1.3c.3-.1.5-.3.7-.6.2-.3.3-.7.3-1v-4.2a2 2 0 0 0-.3-1.1c-.2-.3-.4-.4-.7-.5a5 5 0 0 0-1.3-.1 4 4 0 0 0-1.2.1 1.1 1.1 0 0 0-.7.6l-.4 1.2a15.5 15.5 0 0 0 0 3.6c0 .5.2.9.4 1.2.1.3.4.5.7.6.4.2.8.2 1.2.2Zm8.6 2.8V12h3.2v19h-3.2Zm12.2.1c-1 0-1.8 0-2.7-.2a4 4 0 0 1-1.8-.7c-.4-.3-.7-.8-1-1.3-.2-.6-.3-1.2-.3-1.9l-.1-2.5.1-3c.1-.8.4-1.5.7-2.1.5-.6 1-1 1.7-1.2 1-.3 2-.4 3-.4s1.8 0 2.6.2c.6.2 1 .4 1.5.8.4.3.7.8.9 1.3.2.6.3 1.2.3 1.9v3.5H97l.1 1.6c0 .3.2.6.4.9l1 .4h4.5l1.3-.2v2.5l-1.3.2-1.7.2h-1.5Zm1.9-7.3v-.4l-.1-1.6c0-.3-.2-.6-.4-.9l-.7-.4h-2.3c-.3.1-.6.2-.8.5l-.3.9v1.5h5l-.4.4Zm6.1 7.2V18h3v2.2h.2c.2-.6.5-1.1.9-1.5.3-.4.8-.7 1.3-.8l1.8-.1V21a5 5 0 0 0-2.4.5c-.6.3-1 .8-1.3 1.5-.3.9-.4 1.8-.3 2.8V31h-3.2Z"
5
+ />
6
+ <path
7
+ fill="url(#publer_logo_letter)"
8
+ d="m31 34.4 7.1-28.8a4.3 4.3 0 0 0-.4-3.1A4 4 0 0 0 35.3.6l-1-.1H3.8a3.7 3.7 0 0 0-2.7 1.2A4 4 0 0 0 0 4.6l.1 1 7 28.8a4 4 0 0 0 1.4 2.2c.7.6 1.5.9 2.4.9h16.4c.9 0 1.7-.3 2.4-.9.7-.5 1.1-1.3 1.4-2.2Z"
9
+ />
10
+ <path
11
+ fill="#fff"
12
+ d="M30.6 5.5h-23a2 2 0 0 0-1.5.7 2.3 2.3 0 0 0-.6 2.1L11 30.8c.1.5.4 1 .8 1.2.3.3.8.5 1.3.5h2.5a2 2 0 0 0 1.5-.7 2.3 2.3 0 0 0 .6-1.6v-.5l-1-4.6-2.4-1.6h13c.5 0 1-.2 1.3-.5.4-.3.7-.7.8-1.2l3.3-13.5a2.4 2.4 0 0 0-.3-1.7 2.2 2.2 0 0 0-1.3-1 2 2 0 0 0-.5 0Z"
13
+ />
14
+ <path
15
+ fill="url(#publer_logo_text)"
16
+ d="m11.3 12 2.4 1.9.5 2.1c0 .3.2.5.4.7.2.2.5.3.7.3H24c.2 0 .5 0 .7-.3.2-.1.4-.4.5-.7l.6-4H11.3Z"
17
+ />
18
+ <defs>
19
+ <linearGradient
20
+ id="publer_logo_letter"
21
+ x1="-11.6"
22
+ x2="37"
23
+ y1="52.6"
24
+ y2="-1.9"
25
+ gradientUnits="userSpaceOnUse"
26
+ >
27
+ <stop offset=".5" stop-color="#00C2FF" />
28
+ <stop offset=".8" stop-color="#00E2CE" />
29
+ <stop offset="1" stop-color="#00FAA8" />
30
+ </linearGradient>
31
+ <linearGradient
32
+ id="publer_logo_text"
33
+ x1="-141.9"
34
+ x2="-26.2"
35
+ y1="-38.3"
36
+ y2="348.4"
37
+ gradientUnits="userSpaceOnUse"
38
+ >
39
+ <stop offset=".5" stop-color="#00C2FF" />
40
+ <stop offset=".8" stop-color="#00E2CE" />
41
+ <stop offset="1" stop-color="#00FAA8" />
42
+ </linearGradient>
43
+ </defs>
44
+ </svg>
@@ -12,12 +12,12 @@
12
12
  ],
13
13
  "security": [
14
14
  {
15
- "BearerApiAuth": []
15
+ "publerApi": []
16
16
  }
17
17
  ],
18
18
  "components": {
19
19
  "securitySchemes": {
20
- "BearerApiAuth": {
20
+ "publerApi": {
21
21
  "type": "apiKey",
22
22
  "name": "Authorization",
23
23
  "in": "header",
@@ -12,12 +12,12 @@
12
12
  ],
13
13
  "security": [
14
14
  {
15
- "BearerApiAuth": []
15
+ "publerApi": []
16
16
  }
17
17
  ],
18
18
  "components": {
19
19
  "securitySchemes": {
20
- "BearerApiAuth": {
20
+ "publerApi": {
21
21
  "type": "apiKey",
22
22
  "name": "Authorization",
23
23
  "in": "header",
@@ -12,12 +12,12 @@
12
12
  ],
13
13
  "security": [
14
14
  {
15
- "BearerApiAuth": []
15
+ "publerApi": []
16
16
  }
17
17
  ],
18
18
  "components": {
19
19
  "securitySchemes": {
20
- "BearerApiAuth": {
20
+ "publerApi": {
21
21
  "type": "apiKey",
22
22
  "name": "Authorization",
23
23
  "in": "header",
@@ -12,12 +12,12 @@
12
12
  ],
13
13
  "security": [
14
14
  {
15
- "BearerApiAuth": []
15
+ "publerApi": []
16
16
  }
17
17
  ],
18
18
  "components": {
19
19
  "securitySchemes": {
20
- "BearerApiAuth": {
20
+ "publerApi": {
21
21
  "type": "apiKey",
22
22
  "name": "Authorization",
23
23
  "in": "header",
package/dist/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@adaptive-ds/n8n-nodes-publer",
3
- "version": "1.1.10",
3
+ "version": "1.1.11",
4
4
  "description": "n8n node to connect with Publer.com social media management API",
5
5
  "keywords": [
6
6
  "n8n",
@@ -48,6 +48,7 @@
48
48
  "dist/credentials/PublerApi.credentials.js"
49
49
  ],
50
50
  "nodes": [
51
+ "dist/nodes/PublerMe/PublerMe.node.js",
51
52
  "dist/nodes/PublerBasic/PublerBasic.node.js",
52
53
  "dist/nodes/PublerMedia/PublerMedia.node.js",
53
54
  "dist/nodes/PublerPostsSchedule/PublerPostsSchedule.node.js",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@adaptive-ds/n8n-nodes-publer",
3
- "version": "1.1.10",
3
+ "version": "1.1.11",
4
4
  "description": "n8n node to connect with Publer.com social media management API",
5
5
  "keywords": [
6
6
  "n8n",
@@ -48,6 +48,7 @@
48
48
  "dist/credentials/PublerApi.credentials.js"
49
49
  ],
50
50
  "nodes": [
51
+ "dist/nodes/PublerMe/PublerMe.node.js",
51
52
  "dist/nodes/PublerBasic/PublerBasic.node.js",
52
53
  "dist/nodes/PublerMedia/PublerMedia.node.js",
53
54
  "dist/nodes/PublerPostsSchedule/PublerPostsSchedule.node.js",