n8n-nodes-n8ndesigner-salla-n8nai 0.3.158

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.
Files changed (34) hide show
  1. package/LICENSE +21 -0
  2. package/README.md +37 -0
  3. package/assets/salla-logo.svg +7 -0
  4. package/dist/credentials/SallaActionsApi.credentials.d.ts +19 -0
  5. package/dist/credentials/SallaActionsApi.credentials.js +80 -0
  6. package/dist/data/salla_actions_map.json +9304 -0
  7. package/dist/index.d.ts +5 -0
  8. package/dist/index.js +317 -0
  9. package/dist/nodes/Actions/SallaActions.node.d.ts +14 -0
  10. package/dist/nodes/Actions/SallaActions.node.js +7992 -0
  11. package/dist/nodes/Actions/assets/salla-logo.svg +7 -0
  12. package/dist/nodes/Customers/DeleteCustomer.node.d.ts +8 -0
  13. package/dist/nodes/Customers/DeleteCustomer.node.js +304 -0
  14. package/dist/nodes/Customers/assets/salla-logo.svg +7 -0
  15. package/dist/nodes/Orders/UpdateOrderStatus.node.d.ts +8 -0
  16. package/dist/nodes/Orders/UpdateOrderStatus.node.js +359 -0
  17. package/dist/nodes/Orders/assets/salla-logo.svg +7 -0
  18. package/dist/nodes/Triggers/CustomerCreatedTrigger.node.d.ts +8 -0
  19. package/dist/nodes/Triggers/CustomerCreatedTrigger.node.js +150 -0
  20. package/dist/nodes/Triggers/OrderStatusUpdatedTrigger.node.d.ts +8 -0
  21. package/dist/nodes/Triggers/OrderStatusUpdatedTrigger.node.js +150 -0
  22. package/dist/nodes/Triggers/SallaTrigger.node.d.ts +3 -0
  23. package/dist/nodes/Triggers/SallaTrigger.node.js +30 -0
  24. package/dist/nodes/Triggers/SallaTriggers.node.d.ts +8 -0
  25. package/dist/nodes/Triggers/SallaTriggers.node.js +267 -0
  26. package/dist/nodes/Triggers/assets/salla-logo.svg +7 -0
  27. package/dist/shared/constants.d.ts +5 -0
  28. package/dist/shared/constants.js +36 -0
  29. package/dist/shared/eventStore.d.ts +4 -0
  30. package/dist/shared/eventStore.js +57 -0
  31. package/dist/shared/httpClient.d.ts +33 -0
  32. package/dist/shared/httpClient.js +439 -0
  33. package/dist/shared/sallaActionsMap.js +28 -0
  34. package/package.json +60 -0
@@ -0,0 +1,5 @@
1
+ export { DEFAULT_BASE_URL, SALLA_BRAND_COLOR, SALLA_CREDENTIAL_NAME } from './shared/constants.js';
2
+ export { clearEventCache, isDuplicateEvent } from './shared/eventStore.js';
3
+ export { SallaActionsCredentials, SallaActionsRequestOptions, SallaActionsResponse, SallaProxyRequestOptions, createSallaActionsClient } from './shared/httpClient.js';
4
+ export { SallaActionsApi } from './credentials/SallaActionsApi.credentials.js';
5
+ import 'n8n-workflow';
package/dist/index.js ADDED
@@ -0,0 +1,317 @@
1
+ "use strict";
2
+ var __defProp = Object.defineProperty;
3
+ var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
4
+ var __getOwnPropNames = Object.getOwnPropertyNames;
5
+ var __hasOwnProp = Object.prototype.hasOwnProperty;
6
+ var __export = (target, all) => {
7
+ for (var name in all)
8
+ __defProp(target, name, { get: all[name], enumerable: true });
9
+ };
10
+ var __copyProps = (to, from, except, desc) => {
11
+ if (from && typeof from === "object" || typeof from === "function") {
12
+ for (let key of __getOwnPropNames(from))
13
+ if (!__hasOwnProp.call(to, key) && key !== except)
14
+ __defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
15
+ }
16
+ return to;
17
+ };
18
+ var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
19
+
20
+ // index.ts
21
+ var index_exports = {};
22
+ __export(index_exports, {
23
+ DEFAULT_BASE_URL: () => DEFAULT_BASE_URL,
24
+ SALLA_BRAND_COLOR: () => SALLA_BRAND_COLOR,
25
+ SALLA_CREDENTIAL_NAME: () => SALLA_CREDENTIAL_NAME,
26
+ SallaActionsApi: () => SallaActionsApi,
27
+ clearEventCache: () => clearEventCache,
28
+ createSallaActionsClient: () => createSallaActionsClient,
29
+ isDuplicateEvent: () => isDuplicateEvent
30
+ });
31
+ module.exports = __toCommonJS(index_exports);
32
+
33
+ // shared/constants.ts
34
+ var SALLA_CREDENTIAL_NAME = "sallaActionsApi";
35
+ var DEFAULT_BASE_URL = "https://app.n8ndesigner.com";
36
+ var SALLA_BRAND_COLOR = "#00C58E";
37
+
38
+ // shared/eventStore.ts
39
+ var TTL_MS = 10 * 60 * 1e3;
40
+ var cache = /* @__PURE__ */ new Map();
41
+ function prune() {
42
+ const now = Date.now();
43
+ for (const [id, expiresAt] of cache.entries()) {
44
+ if (expiresAt <= now) {
45
+ cache.delete(id);
46
+ }
47
+ }
48
+ }
49
+ function isDuplicateEvent(eventId) {
50
+ if (!eventId) {
51
+ return false;
52
+ }
53
+ prune();
54
+ const now = Date.now();
55
+ const expiresAt = cache.get(eventId);
56
+ if (expiresAt && expiresAt > now) {
57
+ return true;
58
+ }
59
+ cache.set(eventId, now + TTL_MS);
60
+ return false;
61
+ }
62
+ function clearEventCache() {
63
+ cache.clear();
64
+ }
65
+
66
+ // shared/httpClient.ts
67
+ var import_n8n_workflow = require("n8n-workflow");
68
+ var DEFAULT_TIMEOUT = 12e3;
69
+ var RETRY_DELAYS = [1e3, 3e3];
70
+ var RETRY_ERROR_CODES = /* @__PURE__ */ new Set(["ETIMEDOUT", "ECONNRESET"]);
71
+ function trimTrailingSlash(input) {
72
+ const value = input && input.trim() !== "" ? input : DEFAULT_BASE_URL;
73
+ return value.replace(/\/+$/, "");
74
+ }
75
+ function ensureLeadingSlash(path) {
76
+ if (!path.startsWith("/")) {
77
+ return "/" + path;
78
+ }
79
+ return path;
80
+ }
81
+ function buildActionsUrl(baseUrl, path) {
82
+ const normalizedBase = trimTrailingSlash(baseUrl);
83
+ return normalizedBase + "/api/actions" + ensureLeadingSlash(path);
84
+ }
85
+ function buildProxyUrl(baseUrl) {
86
+ const normalizedBase = trimTrailingSlash(baseUrl);
87
+ return normalizedBase + "/api/merchant/salla";
88
+ }
89
+ function normalizeResponse(rawBody, statusCode) {
90
+ const raw = rawBody ?? null;
91
+ if (rawBody === void 0 || rawBody === null || rawBody === "") {
92
+ return {
93
+ ok: statusCode >= 200 && statusCode < 300,
94
+ status: statusCode,
95
+ data: null,
96
+ error: statusCode >= 400 ? "Request failed with status " + statusCode : null,
97
+ raw
98
+ };
99
+ }
100
+ if (typeof rawBody !== "object") {
101
+ return {
102
+ ok: statusCode >= 200 && statusCode < 300,
103
+ status: statusCode,
104
+ data: rawBody,
105
+ error: statusCode >= 400 ? String(rawBody) : null,
106
+ raw
107
+ };
108
+ }
109
+ const body = rawBody;
110
+ const successFlag = typeof body.success === "boolean" ? body.success : void 0;
111
+ const okFlag = typeof body.ok === "boolean" ? body.ok : void 0;
112
+ const status = typeof body.status === "number" ? body.status : statusCode;
113
+ const ok = okFlag ?? successFlag ?? (status >= 200 && status < 300);
114
+ let data = null;
115
+ if (Object.prototype.hasOwnProperty.call(body, "data")) {
116
+ data = body.data ?? null;
117
+ }
118
+ const errors = body.errors;
119
+ if (errors) {
120
+ if (data && typeof data === "object") {
121
+ data = {
122
+ ...data,
123
+ errors
124
+ };
125
+ } else {
126
+ data = { errors };
127
+ }
128
+ }
129
+ let error = null;
130
+ if (typeof body.error === "string") {
131
+ error = body.error;
132
+ } else if (!ok) {
133
+ if (typeof body.message === "string" && body.message.trim() !== "") {
134
+ error = body.message;
135
+ } else if (body.error && typeof body.error === "object") {
136
+ error = JSON.stringify(body.error);
137
+ }
138
+ }
139
+ if (!ok && !error) {
140
+ error = "Request failed with status " + status;
141
+ }
142
+ return {
143
+ ok,
144
+ status,
145
+ data: data ?? null,
146
+ error,
147
+ raw
148
+ };
149
+ }
150
+ function shouldRetryStatus(status) {
151
+ return status === 429 || status >= 500;
152
+ }
153
+ function shouldRetryError(error) {
154
+ if (!error || typeof error !== "object") {
155
+ return false;
156
+ }
157
+ const err = error;
158
+ const status = err.statusCode ?? err.response?.statusCode;
159
+ if (typeof status === "number" && shouldRetryStatus(status)) {
160
+ return true;
161
+ }
162
+ const code = err.code ?? err.cause?.code;
163
+ return code ? RETRY_ERROR_CODES.has(code) : false;
164
+ }
165
+ async function executeWithRetry(caller, requestOptions) {
166
+ let lastError;
167
+ for (let attempt = 0; attempt <= RETRY_DELAYS.length; attempt++) {
168
+ try {
169
+ const response = await caller(requestOptions);
170
+ const normalized = normalizeResponse(response.body, response.statusCode);
171
+ if (shouldRetryStatus(normalized.status) && attempt < RETRY_DELAYS.length) {
172
+ await (0, import_n8n_workflow.sleep)(RETRY_DELAYS[attempt]);
173
+ continue;
174
+ }
175
+ return normalized;
176
+ } catch (error) {
177
+ lastError = error;
178
+ if (attempt < RETRY_DELAYS.length && shouldRetryError(error)) {
179
+ await (0, import_n8n_workflow.sleep)(RETRY_DELAYS[attempt]);
180
+ continue;
181
+ }
182
+ break;
183
+ }
184
+ }
185
+ if (lastError && typeof lastError === "object") {
186
+ const err = lastError;
187
+ const status = err.statusCode ?? err.response?.statusCode ?? 0;
188
+ const body = err.response?.body;
189
+ const fallback = normalizeResponse(body, status || 0);
190
+ if (fallback.error && err.message && !fallback.error.includes(err.message)) {
191
+ fallback.error = fallback.error + ". " + err.message;
192
+ } else if (!fallback.error) {
193
+ fallback.error = err.message ?? "Request failed";
194
+ }
195
+ return fallback;
196
+ }
197
+ return {
198
+ ok: false,
199
+ status: 0,
200
+ data: null,
201
+ error: lastError instanceof Error ? lastError.message : "Request failed",
202
+ raw: null
203
+ };
204
+ }
205
+ function buildCaller(context, credentialType) {
206
+ return async (options) => {
207
+ const response = await context.helpers.requestWithAuthentication.call(
208
+ context,
209
+ credentialType,
210
+ options
211
+ );
212
+ return {
213
+ statusCode: response.statusCode,
214
+ body: response.body,
215
+ headers: response.headers
216
+ };
217
+ };
218
+ }
219
+ function createSallaActionsClient(context, credentials, credentialType = SALLA_CREDENTIAL_NAME) {
220
+ const caller = buildCaller(context, credentialType);
221
+ async function request(options) {
222
+ const requestOptions = {
223
+ method: options.method,
224
+ url: buildActionsUrl(credentials.baseUrl, options.path),
225
+ qs: options.qs,
226
+ body: options.body,
227
+ headers: options.headers,
228
+ json: true,
229
+ timeout: DEFAULT_TIMEOUT
230
+ };
231
+ const advanced = requestOptions;
232
+ advanced["returnFullResponse"] = true;
233
+ advanced["resolveWithFullResponse"] = true;
234
+ advanced["ignoreHttpStatusErrors"] = true;
235
+ return executeWithRetry(caller, requestOptions);
236
+ }
237
+ async function proxy(options) {
238
+ const requestOptions = {
239
+ method: "POST",
240
+ url: buildProxyUrl(credentials.baseUrl),
241
+ body: {
242
+ salla_merchant_id: credentials.salla_merchant_id,
243
+ method: options.method,
244
+ path: options.path,
245
+ payload: options.payload ?? null
246
+ },
247
+ json: true,
248
+ timeout: DEFAULT_TIMEOUT
249
+ };
250
+ const advanced = requestOptions;
251
+ advanced["returnFullResponse"] = true;
252
+ advanced["resolveWithFullResponse"] = true;
253
+ advanced["ignoreHttpStatusErrors"] = true;
254
+ return executeWithRetry(caller, requestOptions);
255
+ }
256
+ return {
257
+ request,
258
+ proxy
259
+ };
260
+ }
261
+
262
+ // credentials/SallaActionsApi.credentials.ts
263
+ var SallaActionsApi = class {
264
+ constructor() {
265
+ this.name = SALLA_CREDENTIAL_NAME;
266
+ this.displayName = "Salla (N8NDesigner Actions)";
267
+ this.documentationUrl = void 0;
268
+ this.properties = [
269
+ {
270
+ displayName: "Base URL",
271
+ name: "baseUrl",
272
+ type: "string",
273
+ default: DEFAULT_BASE_URL,
274
+ placeholder: DEFAULT_BASE_URL,
275
+ description: "Root URL for the N8NDesigner Actions API. Leave as default unless instructed otherwise."
276
+ },
277
+ {
278
+ displayName: "Salla Merchant ID",
279
+ name: "salla_merchant_id",
280
+ type: "string",
281
+ default: "",
282
+ required: true,
283
+ description: "Numeric merchant identifier from your Salla store configuration."
284
+ },
285
+ {
286
+ displayName: "MAK Key",
287
+ name: "makKey",
288
+ type: "string",
289
+ typeOptions: {
290
+ password: true
291
+ },
292
+ default: "",
293
+ required: true,
294
+ description: "Backend-issued token that starts with mak_. Used for Bearer authentication."
295
+ }
296
+ ];
297
+ this.authenticate = {
298
+ type: "generic",
299
+ properties: {
300
+ headers: {
301
+ Authorization: "={{'Bearer ' + $credentials.makKey}}",
302
+ "Content-Type": "application/json"
303
+ }
304
+ }
305
+ };
306
+ }
307
+ };
308
+ // Annotate the CommonJS export names for ESM import in node:
309
+ 0 && (module.exports = {
310
+ DEFAULT_BASE_URL,
311
+ SALLA_BRAND_COLOR,
312
+ SALLA_CREDENTIAL_NAME,
313
+ SallaActionsApi,
314
+ clearEventCache,
315
+ createSallaActionsClient,
316
+ isDuplicateEvent
317
+ });
@@ -0,0 +1,14 @@
1
+ import { INodeType, INodeTypeDescription, IExecuteFunctions, INodeExecutionData, ILoadOptionsFunctions } from 'n8n-workflow';
2
+
3
+ declare class SallaActions implements INodeType {
4
+ description: INodeTypeDescription;
5
+ methods: {
6
+ loadOptions: {
7
+ getSallaSubResources(this: ILoadOptionsFunctions): Promise<Array<{ name: string; value: string }>>;
8
+ getSallaOperations(this: ILoadOptionsFunctions): Promise<Array<{ name: string; value: string }>>;
9
+ };
10
+ };
11
+ execute(this: IExecuteFunctions): Promise<INodeExecutionData[][]>;
12
+ }
13
+
14
+ export { SallaActions };