@wals-pro/n8n-nodes-weclapp 0.3.0

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 (98) hide show
  1. package/LICENSE +21 -0
  2. package/README.md +206 -0
  3. package/dist/credentials/WeclappApi.credentials.d.ts +10 -0
  4. package/dist/credentials/WeclappApi.credentials.js +56 -0
  5. package/dist/credentials/WeclappApi.credentials.js.map +1 -0
  6. package/dist/credentials/weclapp.dark.svg +19 -0
  7. package/dist/credentials/weclapp.light.svg +19 -0
  8. package/dist/nodes/Weclapp/GenericFunctions.d.ts +19 -0
  9. package/dist/nodes/Weclapp/GenericFunctions.js +287 -0
  10. package/dist/nodes/Weclapp/GenericFunctions.js.map +1 -0
  11. package/dist/nodes/Weclapp/SharedFields.d.ts +24 -0
  12. package/dist/nodes/Weclapp/SharedFields.js +348 -0
  13. package/dist/nodes/Weclapp/SharedFields.js.map +1 -0
  14. package/dist/nodes/Weclapp/Weclapp.node.d.ts +27 -0
  15. package/dist/nodes/Weclapp/Weclapp.node.js +231 -0
  16. package/dist/nodes/Weclapp/Weclapp.node.js.map +1 -0
  17. package/dist/nodes/Weclapp/actions/applyPayment.d.ts +9 -0
  18. package/dist/nodes/Weclapp/actions/applyPayment.js +64 -0
  19. package/dist/nodes/Weclapp/actions/applyPayment.js.map +1 -0
  20. package/dist/nodes/Weclapp/actions/articlePriceSync.d.ts +41 -0
  21. package/dist/nodes/Weclapp/actions/articlePriceSync.js +238 -0
  22. package/dist/nodes/Weclapp/actions/articlePriceSync.js.map +1 -0
  23. package/dist/nodes/Weclapp/actions/documentUpload.d.ts +3 -0
  24. package/dist/nodes/Weclapp/actions/documentUpload.js +90 -0
  25. package/dist/nodes/Weclapp/actions/documentUpload.js.map +1 -0
  26. package/dist/nodes/Weclapp/descriptions/ArticleDescription.d.ts +3 -0
  27. package/dist/nodes/Weclapp/descriptions/ArticleDescription.js +724 -0
  28. package/dist/nodes/Weclapp/descriptions/ArticleDescription.js.map +1 -0
  29. package/dist/nodes/Weclapp/descriptions/BankDescription.d.ts +6 -0
  30. package/dist/nodes/Weclapp/descriptions/BankDescription.js +471 -0
  31. package/dist/nodes/Weclapp/descriptions/BankDescription.js.map +1 -0
  32. package/dist/nodes/Weclapp/descriptions/CustomApiDescription.d.ts +4 -0
  33. package/dist/nodes/Weclapp/descriptions/CustomApiDescription.js +238 -0
  34. package/dist/nodes/Weclapp/descriptions/CustomApiDescription.js.map +1 -0
  35. package/dist/nodes/Weclapp/descriptions/DocumentDescription.d.ts +3 -0
  36. package/dist/nodes/Weclapp/descriptions/DocumentDescription.js +976 -0
  37. package/dist/nodes/Weclapp/descriptions/DocumentDescription.js.map +1 -0
  38. package/dist/nodes/Weclapp/descriptions/PartyDescription.d.ts +4 -0
  39. package/dist/nodes/Weclapp/descriptions/PartyDescription.js +408 -0
  40. package/dist/nodes/Weclapp/descriptions/PartyDescription.js.map +1 -0
  41. package/dist/nodes/Weclapp/descriptions/ProductionOrderDescription.d.ts +4 -0
  42. package/dist/nodes/Weclapp/descriptions/ProductionOrderDescription.js +628 -0
  43. package/dist/nodes/Weclapp/descriptions/ProductionOrderDescription.js.map +1 -0
  44. package/dist/nodes/Weclapp/descriptions/PurchaseInvoiceDescription.d.ts +3 -0
  45. package/dist/nodes/Weclapp/descriptions/PurchaseInvoiceDescription.js +559 -0
  46. package/dist/nodes/Weclapp/descriptions/PurchaseInvoiceDescription.js.map +1 -0
  47. package/dist/nodes/Weclapp/descriptions/PurchaseOrderDescription.d.ts +3 -0
  48. package/dist/nodes/Weclapp/descriptions/PurchaseOrderDescription.js +681 -0
  49. package/dist/nodes/Weclapp/descriptions/PurchaseOrderDescription.js.map +1 -0
  50. package/dist/nodes/Weclapp/descriptions/QuotationDescription.d.ts +3 -0
  51. package/dist/nodes/Weclapp/descriptions/QuotationDescription.js +1069 -0
  52. package/dist/nodes/Weclapp/descriptions/QuotationDescription.js.map +1 -0
  53. package/dist/nodes/Weclapp/descriptions/SalesInvoiceDescription.d.ts +3 -0
  54. package/dist/nodes/Weclapp/descriptions/SalesInvoiceDescription.js +994 -0
  55. package/dist/nodes/Weclapp/descriptions/SalesInvoiceDescription.js.map +1 -0
  56. package/dist/nodes/Weclapp/descriptions/SalesOrderDescription.d.ts +4 -0
  57. package/dist/nodes/Weclapp/descriptions/SalesOrderDescription.js +1122 -0
  58. package/dist/nodes/Weclapp/descriptions/SalesOrderDescription.js.map +1 -0
  59. package/dist/nodes/Weclapp/descriptions/ShipmentDescription.d.ts +3 -0
  60. package/dist/nodes/Weclapp/descriptions/ShipmentDescription.js +502 -0
  61. package/dist/nodes/Weclapp/descriptions/ShipmentDescription.js.map +1 -0
  62. package/dist/nodes/Weclapp/descriptions/TagUnitUserDescription.d.ts +9 -0
  63. package/dist/nodes/Weclapp/descriptions/TagUnitUserDescription.js +664 -0
  64. package/dist/nodes/Weclapp/descriptions/TagUnitUserDescription.js.map +1 -0
  65. package/dist/nodes/Weclapp/descriptions/TicketDescription.d.ts +9 -0
  66. package/dist/nodes/Weclapp/descriptions/TicketDescription.js +745 -0
  67. package/dist/nodes/Weclapp/descriptions/TicketDescription.js.map +1 -0
  68. package/dist/nodes/Weclapp/descriptions/WarehouseDescription.d.ts +35 -0
  69. package/dist/nodes/Weclapp/descriptions/WarehouseDescription.js +935 -0
  70. package/dist/nodes/Weclapp/descriptions/WarehouseDescription.js.map +1 -0
  71. package/dist/nodes/Weclapp/descriptions/WebhookDescription.d.ts +4 -0
  72. package/dist/nodes/Weclapp/descriptions/WebhookDescription.js +411 -0
  73. package/dist/nodes/Weclapp/descriptions/WebhookDescription.js.map +1 -0
  74. package/dist/nodes/Weclapp/descriptions/index.d.ts +3 -0
  75. package/dist/nodes/Weclapp/descriptions/index.js +56 -0
  76. package/dist/nodes/Weclapp/descriptions/index.js.map +1 -0
  77. package/dist/nodes/Weclapp/generated/entityMetadata.d.ts +3 -0
  78. package/dist/nodes/Weclapp/generated/entityMetadata.js +368 -0
  79. package/dist/nodes/Weclapp/generated/entityMetadata.js.map +1 -0
  80. package/dist/nodes/Weclapp/generated/openapiMetadata.d.ts +3 -0
  81. package/dist/nodes/Weclapp/generated/openapiMetadata.js +212 -0
  82. package/dist/nodes/Weclapp/generated/openapiMetadata.js.map +1 -0
  83. package/dist/nodes/Weclapp/methods/customAttributes.d.ts +32 -0
  84. package/dist/nodes/Weclapp/methods/customAttributes.js +156 -0
  85. package/dist/nodes/Weclapp/methods/customAttributes.js.map +1 -0
  86. package/dist/nodes/Weclapp/methods/loadOptions.d.ts +3 -0
  87. package/dist/nodes/Weclapp/methods/loadOptions.js +107 -0
  88. package/dist/nodes/Weclapp/methods/loadOptions.js.map +1 -0
  89. package/dist/nodes/Weclapp/weclapp.dark.svg +19 -0
  90. package/dist/nodes/Weclapp/weclapp.light.svg +19 -0
  91. package/dist/nodes/WeclappTrigger/WeclappTrigger.node.d.ts +12 -0
  92. package/dist/nodes/WeclappTrigger/WeclappTrigger.node.js +198 -0
  93. package/dist/nodes/WeclappTrigger/WeclappTrigger.node.js.map +1 -0
  94. package/dist/nodes/WeclappTrigger/weclapp.dark.svg +19 -0
  95. package/dist/nodes/WeclappTrigger/weclapp.light.svg +19 -0
  96. package/dist/package.json +78 -0
  97. package/dist/tsconfig.tsbuildinfo +1 -0
  98. package/package.json +78 -0
@@ -0,0 +1,107 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.loadOptions = exports.listSearch = void 0;
4
+ const GenericFunctions_1 = require("../GenericFunctions");
5
+ const LIST_SEARCH_PAGE_SIZE = 50;
6
+ function decodePageToken(token) {
7
+ if (!token)
8
+ return 1;
9
+ const n = parseInt(token, 10);
10
+ return Number.isFinite(n) && n > 0 ? n : 1;
11
+ }
12
+ function encodeNextPageToken(currentPage, resultCount, pageSize) {
13
+ return resultCount >= pageSize ? String(currentPage + 1) : undefined;
14
+ }
15
+ function makeListSearch(endpoint, properties, filterField, toName) {
16
+ return async function (filter, paginationToken) {
17
+ var _a;
18
+ const page = decodePageToken(paginationToken);
19
+ const qs = { properties, pageSize: LIST_SEARCH_PAGE_SIZE, page };
20
+ if (filter) {
21
+ qs[`${filterField}-ilike`] = `%${filter}%`;
22
+ }
23
+ const response = await GenericFunctions_1.weclappApiRequest.call(this, 'GET', endpoint, undefined, qs);
24
+ const items = (_a = response.result) !== null && _a !== void 0 ? _a : [];
25
+ const results = items.map((item) => ({
26
+ name: toName(item),
27
+ value: item.id,
28
+ }));
29
+ return {
30
+ results,
31
+ paginationToken: encodeNextPageToken(page, items.length, LIST_SEARCH_PAGE_SIZE),
32
+ };
33
+ };
34
+ }
35
+ function labelWithId(item) {
36
+ const name = item.name;
37
+ return name ? `${name} (${item.id})` : String(item.id);
38
+ }
39
+ function makeSimpleLoadOptions(endpoint, toName = labelWithId) {
40
+ return async function () {
41
+ var _a;
42
+ const response = await GenericFunctions_1.weclappApiRequest.call(this, 'GET', endpoint, undefined, { pageSize: 1000 });
43
+ const items = (_a = response.result) !== null && _a !== void 0 ? _a : [];
44
+ return items.map((item) => ({ name: toName(item), value: item.id }));
45
+ };
46
+ }
47
+ exports.listSearch = {
48
+ searchArticles: makeListSearch('/article', 'id,articleNumber,name', 'articleNumber', (item) => [item.articleNumber, item.name].filter(Boolean).join(' — ')),
49
+ searchParties: makeListSearch('/party', 'id,partyNumber,name,firstName,lastName', 'name', (item) => {
50
+ var _a;
51
+ const fullName = [item.firstName, item.lastName].filter(Boolean).join(' ');
52
+ const label = item.name || fullName || String((_a = item.partyNumber) !== null && _a !== void 0 ? _a : item.id);
53
+ return [item.partyNumber, label].filter(Boolean).join(' — ');
54
+ }),
55
+ searchSalesOrders: makeListSearch('/salesOrder', 'id,orderNumber,commission', 'orderNumber', (item) => [item.orderNumber, item.commission].filter(Boolean).join(' — ')),
56
+ searchPurchaseOrders: makeListSearch('/purchaseOrder', 'id,orderNumber', 'orderNumber', (item) => { var _a; return String((_a = item.orderNumber) !== null && _a !== void 0 ? _a : item.id); }),
57
+ searchSalesInvoices: makeListSearch('/salesInvoice', 'id,invoiceNumber', 'invoiceNumber', (item) => { var _a; return String((_a = item.invoiceNumber) !== null && _a !== void 0 ? _a : item.id); }),
58
+ searchPurchaseInvoices: makeListSearch('/purchaseInvoice', 'id,invoiceNumber', 'invoiceNumber', (item) => { var _a; return String((_a = item.invoiceNumber) !== null && _a !== void 0 ? _a : item.id); }),
59
+ searchQuotations: makeListSearch('/quotation', 'id,quotationNumber', 'quotationNumber', (item) => { var _a; return String((_a = item.quotationNumber) !== null && _a !== void 0 ? _a : item.id); }),
60
+ searchArticleCategories: makeListSearch('/articleCategory', 'id,name', 'name', (item) => { var _a; return String((_a = item.name) !== null && _a !== void 0 ? _a : item.id); }),
61
+ searchProductionOrders: makeListSearch('/productionOrder', 'id,productionOrderNumber', 'productionOrderNumber', (item) => { var _a; return `${(_a = item.productionOrderNumber) !== null && _a !== void 0 ? _a : item.id} (${item.id})`; }),
62
+ searchShipments: makeListSearch('/shipment', 'id,shipmentNumber,shipmentType', 'shipmentNumber', (item) => { var _a; return `${(_a = item.shipmentNumber) !== null && _a !== void 0 ? _a : item.id} (${item.id})`; }),
63
+ searchTickets: makeListSearch('/ticket', 'id,subject', 'subject', (item) => { var _a; return `${(_a = item.subject) !== null && _a !== void 0 ? _a : item.id} (${item.id})`; }),
64
+ searchDocuments: makeListSearch('/document', 'id,name', 'name', (item) => { var _a; return `${(_a = item.name) !== null && _a !== void 0 ? _a : item.id} (${item.id})`; }),
65
+ searchWebhooks: makeListSearch('/webhook', 'id,entityName,url', 'entityName', (item) => { var _a, _b; return `${(_b = (_a = item.entityName) !== null && _a !== void 0 ? _a : item.url) !== null && _b !== void 0 ? _b : item.id} (${item.id})`; }),
66
+ searchBankAccounts: makeListSearch('/bankAccount', 'id,accountHolder,iban', 'accountHolder', (item) => { var _a, _b; return `${(_b = (_a = item.accountHolder) !== null && _a !== void 0 ? _a : item.iban) !== null && _b !== void 0 ? _b : item.id} (${item.id})`; }),
67
+ searchWarehouses: makeListSearch('/warehouse', 'id,name', 'name', (item) => { var _a; return `${(_a = item.name) !== null && _a !== void 0 ? _a : item.id} (${item.id})`; }),
68
+ };
69
+ exports.loadOptions = {
70
+ getWarehouses: async function () {
71
+ const items = await GenericFunctions_1.weclappApiRequestAllItems.call(this, 'GET', '/warehouse');
72
+ return items.map((item) => ({ name: labelWithId(item), value: item.id }));
73
+ },
74
+ getCurrencies: makeSimpleLoadOptions('/currency'),
75
+ getPaymentMethods: makeSimpleLoadOptions('/paymentMethod'),
76
+ getTermsOfPayment: makeSimpleLoadOptions('/termOfPayment'),
77
+ getTicketStatuses: makeSimpleLoadOptions('/ticketStatus'),
78
+ getTags: makeSimpleLoadOptions('/tag'),
79
+ getUnits: makeSimpleLoadOptions('/unit'),
80
+ getShipmentMethods: makeSimpleLoadOptions('/shipmentMethod'),
81
+ getShippingCarriers: makeSimpleLoadOptions('/shippingCarrier'),
82
+ getArticleCategories: makeSimpleLoadOptions('/articleCategory'),
83
+ getManufacturers: makeSimpleLoadOptions('/manufacturer'),
84
+ getCustomerCategories: makeSimpleLoadOptions('/customerCategory'),
85
+ getSectors: makeSimpleLoadOptions('/sector'),
86
+ getFulfillmentProviders: makeSimpleLoadOptions('/fulfillmentProvider'),
87
+ getCommercialLanguages: makeSimpleLoadOptions('/commercialLanguage', (item) => {
88
+ var _a;
89
+ const code = (_a = item.languageCode) !== null && _a !== void 0 ? _a : item.countryCode;
90
+ return code ? `${code} (${item.id})` : String(item.id);
91
+ }),
92
+ getUsers: async function () {
93
+ var _a;
94
+ const response = await GenericFunctions_1.weclappApiRequest.call(this, 'GET', '/user', undefined, {
95
+ 'active-eq': 'true',
96
+ pageSize: 1000,
97
+ });
98
+ const items = (_a = response.result) !== null && _a !== void 0 ? _a : [];
99
+ return items.map((item) => {
100
+ var _a;
101
+ const fullName = [item.firstName, item.lastName].filter(Boolean).join(' ');
102
+ const name = fullName || String((_a = item.username) !== null && _a !== void 0 ? _a : item.id);
103
+ return { name: `${name} (${item.id})`, value: item.id };
104
+ });
105
+ },
106
+ };
107
+ //# sourceMappingURL=loadOptions.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"loadOptions.js","sourceRoot":"","sources":["../../../../nodes/Weclapp/methods/loadOptions.ts"],"names":[],"mappings":"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"}
@@ -0,0 +1,19 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 400 400" width="400" height="400">
3
+ <g transform="translate(30 48.5) scale(0.865)">
4
+ <g id="Page-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
5
+ <g id="weclapp-rgb-vertical-negative" fill-rule="nonzero">
6
+ <polygon id="Path" fill="#FFFFFF" points="0.06 278.76 14.7 278.76 26.08 309.05 38.18 278.76 49.06 278.76 61.26 309.05 72.54 278.76 87.18 278.76 66.54 329.58 56.38 329.58 43.67 299.39 30.86 329.58 20.7 329.58"></polygon>
7
+ <path d="M88.6,293.7 C89.7549812,290.556297 91.5186333,287.671248 93.79,285.21 C96.0819005,282.766589 98.8713328,280.843313 101.97,279.57 C105.408829,278.182019 109.092253,277.501792 112.8,277.57 C116.383149,277.516316 119.9415,278.172249 123.27,279.5 C126.278588,280.713019 128.985245,282.569793 131.2,284.94 C133.453698,287.399678 135.158118,290.310828 136.2,293.48 C137.389464,297.068495 137.9741,300.829765 137.93,304.61 L137.93,308.27 L100.5,308.27 L100.6,308.47 C100.963056,310.047346 101.643552,311.534229 102.6,312.84 C104.378807,315.23323 106.929027,316.939263 109.82,317.67 C111.264282,318.039908 112.749101,318.22803 114.24,318.23 C117.034683,318.271772 119.8125,317.790148 122.43,316.81 C124.717426,315.927797 126.832704,314.651862 128.68,313.04 L134.27,324.13 C131.853226,326.079931 129.156242,327.654296 126.27,328.8 C122.373531,330.259112 118.228396,330.938642 114.07,330.8 C110.147275,330.875128 106.246626,330.196164 102.58,328.8 C99.3584146,327.555615 96.4325126,325.651565 93.99,323.21 C91.629241,320.809071 89.8086153,317.931527 88.65,314.77 C86.2325105,307.978723 86.2325105,300.561277 88.65,293.77 L88.6,293.7 Z M120,291.62 C118.166667,289.82 115.623333,288.92 112.37,288.92 C106.48962,288.491711 101.266707,292.652633 100.37,298.48 L123.24,298.48 C122.993407,295.885363 121.847257,293.458638 120,291.62 L120,291.62 Z" id="Shape" fill="#FFFFFF"></path>
8
+ <path d="M145.23,293.24 C147.781764,286.812356 152.960521,281.782812 159.46,279.42 C162.941683,278.135121 166.629035,277.497968 170.34,277.54 C174.101683,277.486862 177.837769,278.16615 181.34,279.54 C184.456776,280.769812 187.290878,282.620655 189.67,284.98 L182,295.73 C180.528647,294.276994 178.842194,293.059375 177,292.12 C174.913877,291.098144 172.612273,290.593917 170.29,290.65 C168.478897,290.641472 166.683018,290.980958 165,291.65 C163.41903,292.261759 161.982107,293.194737 160.78,294.39 C159.577155,295.615131 158.628906,297.066394 157.99,298.66 C156.629541,302.22805 156.629541,306.17195 157.99,309.74 C158.628906,311.333606 159.577155,312.784869 160.78,314.01 C161.984251,315.205056 163.420399,316.140935 165,316.76 C166.684319,317.424551 168.479325,317.763871 170.29,317.76 C172.664758,317.803599 175.015925,317.28264 177.15,316.24 C179.041888,315.297461 180.773182,314.062268 182.28,312.58 L189.71,323.35 C187.33326,325.657036 184.536056,327.48676 181.47,328.74 C177.860509,330.214882 173.988571,330.939594 170.09,330.87 C166.412019,330.906801 162.758401,330.269621 159.31,328.99 C156.116436,327.817657 153.206325,325.984355 150.77,323.61 C148.362254,321.217017 146.461122,318.363618 145.18,315.22 C142.472896,308.167525 142.472896,300.362475 145.18,293.31 L145.23,293.24 Z" id="Path" fill="#FFFFFF"></path>
9
+ <polygon id="Path" fill="#FFFFFF" points="210.9 329.58 197.38 329.58 197.38 258.42 210.9 258.42"></polygon>
10
+ <path d="M229.4,280.48 C233.869945,278.47695 238.7336,277.50627 243.63,277.64 C251.09,277.64 256.666667,279.306667 260.36,282.64 C264.053333,285.973333 265.9,291.19 265.9,298.29 L265.9,329.71 L252.48,329.71 L252.48,322.79 C250.933373,325.007227 248.940862,326.877122 246.63,328.28 C243.662782,330.020032 240.256629,330.86723 236.82,330.72 C234.465301,330.74549 232.125055,330.34924 229.91,329.55 C227.904257,328.827177 226.05707,327.723618 224.47,326.3 C222.944725,324.902403 221.731618,323.198601 220.91,321.3 C220.043429,319.257987 219.610941,317.058089 219.64,314.84 C219.611456,312.694839 220.026819,310.566952 220.86,308.59 C221.653377,306.763169 222.814104,305.11909 224.27,303.76 C225.780645,302.377247 227.515354,301.261352 229.4,300.46 C231.471476,299.588382 233.669435,299.054929 235.91,298.88 L249.84,297.66 C251.6,297.46 252.48,296.78 252.48,295.66 L252.48,294.85 C252.469567,293.335897 251.654374,291.94169 250.34,291.19 C248.92,290.236667 246.683333,289.763333 243.63,289.77 C242.288692,289.762216 240.949574,289.879389 239.63,290.12 C238.370424,290.349021 237.142039,290.72492 235.97,291.24 C234.850275,291.734419 233.819775,292.410157 232.92,293.24 C232.027382,294.089108 231.342929,295.132899 230.92,296.29 L220.92,289.18 C222.568914,285.328033 225.59152,282.22701 229.4,280.48 Z M239.87,308.54 C238.133964,308.727007 236.491887,309.422802 235.15,310.54 C234.094149,311.525097 233.515754,312.918577 233.56367,314.361817 C233.611586,315.805057 234.281134,317.157105 235.4,318.07 C236.978704,319.155497 238.878787,319.673702 240.79,319.54 C242.439634,319.558144 244.078012,319.266425 245.62,318.68 C246.988069,318.153527 248.246169,317.376964 249.33,316.39 C251.367343,314.504845 252.511721,311.845531 252.48,309.07 L252.48,307.07 L239.87,308.54 Z" id="Shape" fill="#FFFFFF"></path>
11
+ <path d="M277.29,278.76 L290.7,278.76 L290.7,285.87 C292.523004,283.303245 294.919911,281.19739 297.7,279.72 C300.744903,278.148079 304.133981,277.36096 307.56,277.43 C310.612799,277.420315 313.636269,278.025689 316.45,279.21 C319.264069,280.398281 321.795845,282.166776 323.88,284.4 C326.095489,286.827006 327.79636,289.677667 328.88,292.78 C331.320066,300.177309 331.320066,308.162691 328.88,315.56 C327.786949,318.657928 326.087142,321.506804 323.88,323.94 C321.832391,326.165816 319.338023,327.934364 316.56,329.13 C313.761198,330.317236 310.750173,330.922843 307.71,330.91 C304.14414,331.018331 300.615627,330.157803 297.5,328.42 C294.807427,326.869794 292.467642,324.775226 290.63,322.27 L290.63,349.92 L277.29,349.92 L277.29,278.76 Z M308.9,316.83 C312.13121,315.573945 314.676158,313.003548 315.9,309.76 C317.259788,306.157373 317.259788,302.182627 315.9,298.58 C315.279992,296.961926 314.329822,295.490695 313.11,294.26 C311.907367,293.062942 310.470778,292.126776 308.89,291.51 C307.205681,290.845449 305.410675,290.506129 303.6,290.51 C300.070944,290.408379 296.648654,291.726862 294.1,294.17 C291.56,296.61 290.29,299.943333 290.29,304.17 C290.29,308.396667 291.56,311.73 294.1,314.17 C296.662164,316.58629 300.079756,317.884975 303.6,317.78 C305.410824,317.80107 307.209232,317.478714 308.9,316.83 L308.9,316.83 Z" id="Shape" fill="#FFFFFF"></path>
12
+ <path d="M339.4,278.76 L352.82,278.76 L352.82,285.87 C354.644651,283.30473 357.041172,281.199215 359.82,279.72 C362.86578,278.150466 366.254246,277.36349 369.68,277.43 C372.736058,277.420065 375.762845,278.025422 378.58,279.21 C381.389758,280.400816 383.917768,282.16906 386,284.4 C388.215489,286.827006 389.91636,289.677667 391,292.78 C393.440066,300.177309 393.440066,308.162691 391,315.56 C389.906949,318.657928 388.207142,321.506804 386,323.94 C383.956222,326.170162 381.460857,327.939417 378.68,329.13 C375.884379,330.316174 372.876836,330.921765 369.84,330.91 C366.270982,331.018146 362.7393,330.157687 359.62,328.42 C356.930345,326.869623 354.593865,324.774966 352.76,322.27 L352.76,349.92 L339.4,349.92 L339.4,278.76 Z M371,316.83 C372.582106,316.215809 374.019196,315.279316 375.22,314.08 C376.441599,312.848773 377.394954,311.377881 378.02,309.76 C379.379788,306.157373 379.379788,302.182627 378.02,298.58 C377.392642,296.9633 376.439576,295.492855 375.22,294.26 C374.019196,293.060684 372.582106,292.124191 371,291.51 C369.319417,290.844585 367.527516,290.50521 365.72,290.51 C362.187898,290.407932 358.762338,291.726286 356.21,294.17 C353.67,296.61 352.4,299.943333 352.4,304.17 C352.4,308.396667 353.67,311.73 356.21,314.17 C358.775828,316.586876 362.196699,317.88544 365.72,317.78 C367.524293,317.800719 369.316085,317.478332 371,316.83 L371,316.83 Z" id="Shape" fill="#FFFFFF"></path>
13
+ <path d="M141,21.83 L123.22,140.83 C120.31,159.18 93.53,158.77 91.22,140.83 L73.44,21.83 C70.98,10.83 78.82,0.32 89.44,0.32 L125,0.32 C135.61,0.32 143.45,10.85 141,21.83 Z" id="Path" fill="#12DA9D"></path>
14
+ <path d="M319.5,21.83 L301.72,140.83 C298.81,159.18 272.03,158.77 269.72,140.83 L251.94,21.83 C249.48,10.83 257.32,0.32 267.94,0.32 L303.5,0.32 C314.12,0.32 322,10.85 319.5,21.83 Z" id="Path" fill="#12DA9D"></path>
15
+ <path d="M162.68,186.45 L180.47,67.45 C183.38,49.11 210.15,49.52 212.47,67.45 L230.26,186.45 C232.71,197.45 224.88,207.96 214.26,207.96 L178.68,207.96 C168.06,208 160.23,197.42 162.68,186.45 Z" id="Path" fill="#12DA9D"></path>
16
+ </g>
17
+ </g>
18
+ </g>
19
+ </svg>
@@ -0,0 +1,19 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 400 400" width="400" height="400">
3
+ <g transform="translate(30 48.5) scale(0.865)">
4
+ <g id="Page-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
5
+ <g id="weclapp-rgb-vertical-positive" fill-rule="nonzero">
6
+ <polygon id="Path" fill="#000000" points="0.06 278.76 14.7 278.76 26.08 309.05 38.18 278.76 49.06 278.76 61.26 309.05 72.54 278.76 87.18 278.76 66.54 329.58 56.38 329.58 43.67 299.39 30.86 329.58 20.7 329.58"></polygon>
7
+ <path d="M88.6,293.7 C89.7549812,290.556297 91.5186333,287.671248 93.79,285.21 C96.0819005,282.766589 98.8713328,280.843313 101.97,279.57 C105.408829,278.182019 109.092253,277.501792 112.8,277.57 C116.383149,277.516316 119.9415,278.172249 123.27,279.5 C126.278588,280.713019 128.985245,282.569793 131.2,284.94 C133.453698,287.399678 135.158118,290.310828 136.2,293.48 C137.389464,297.068495 137.9741,300.829765 137.93,304.61 L137.93,308.27 L100.5,308.27 L100.6,308.47 C100.963056,310.047346 101.643552,311.534229 102.6,312.84 C104.378807,315.23323 106.929027,316.939263 109.82,317.67 C111.264282,318.039908 112.749101,318.22803 114.24,318.23 C117.034683,318.271772 119.8125,317.790148 122.43,316.81 C124.717426,315.927797 126.832704,314.651862 128.68,313.04 L134.27,324.13 C131.853226,326.079931 129.156242,327.654296 126.27,328.8 C122.373531,330.259112 118.228396,330.938642 114.07,330.8 C110.147275,330.875128 106.246626,330.196164 102.58,328.8 C99.3584146,327.555615 96.4325126,325.651565 93.99,323.21 C91.629241,320.809071 89.8086153,317.931527 88.65,314.77 C86.2325105,307.978723 86.2325105,300.561277 88.65,293.77 L88.6,293.7 Z M120,291.62 C118.166667,289.82 115.623333,288.92 112.37,288.92 C106.48962,288.491711 101.266707,292.652633 100.37,298.48 L123.24,298.48 C122.993407,295.885363 121.847257,293.458638 120,291.62 L120,291.62 Z" id="Shape" fill="#000000"></path>
8
+ <path d="M145.23,293.24 C147.781764,286.812356 152.960521,281.782812 159.46,279.42 C162.941683,278.135121 166.629035,277.497968 170.34,277.54 C174.101683,277.486862 177.837769,278.16615 181.34,279.54 C184.456776,280.769812 187.290878,282.620655 189.67,284.98 L182,295.73 C180.528647,294.276994 178.842194,293.059375 177,292.12 C174.913877,291.098144 172.612273,290.593917 170.29,290.65 C168.478897,290.641472 166.683018,290.980958 165,291.65 C163.41903,292.261759 161.982107,293.194737 160.78,294.39 C159.577155,295.615131 158.628906,297.066394 157.99,298.66 C156.629541,302.22805 156.629541,306.17195 157.99,309.74 C158.628906,311.333606 159.577155,312.784869 160.78,314.01 C161.984251,315.205056 163.420399,316.140935 165,316.76 C166.684319,317.424551 168.479325,317.763871 170.29,317.76 C172.664758,317.803599 175.015925,317.28264 177.15,316.24 C179.041888,315.297461 180.773182,314.062268 182.28,312.58 L189.71,323.35 C187.33326,325.657036 184.536056,327.48676 181.47,328.74 C177.860509,330.214882 173.988571,330.939594 170.09,330.87 C166.412019,330.906801 162.758401,330.269621 159.31,328.99 C156.116436,327.817657 153.206325,325.984355 150.77,323.61 C148.362254,321.217017 146.461122,318.363618 145.18,315.22 C142.472896,308.167525 142.472896,300.362475 145.18,293.31 L145.23,293.24 Z" id="Path" fill="#000000"></path>
9
+ <polygon id="Path" fill="#000000" points="210.9 329.58 197.38 329.58 197.38 258.42 210.9 258.42"></polygon>
10
+ <path d="M229.4,280.48 C233.869945,278.47695 238.7336,277.50627 243.63,277.64 C251.09,277.64 256.666667,279.306667 260.36,282.64 C264.053333,285.973333 265.9,291.19 265.9,298.29 L265.9,329.71 L252.48,329.71 L252.48,322.79 C250.933373,325.007227 248.940862,326.877122 246.63,328.28 C243.662782,330.020032 240.256629,330.86723 236.82,330.72 C234.465301,330.74549 232.125055,330.34924 229.91,329.55 C227.904257,328.827177 226.05707,327.723618 224.47,326.3 C222.944725,324.902403 221.731618,323.198601 220.91,321.3 C220.043429,319.257987 219.610941,317.058089 219.64,314.84 C219.611456,312.694839 220.026819,310.566952 220.86,308.59 C221.653377,306.763169 222.814104,305.11909 224.27,303.76 C225.780645,302.377247 227.515354,301.261352 229.4,300.46 C231.471476,299.588382 233.669435,299.054929 235.91,298.88 L249.84,297.66 C251.6,297.46 252.48,296.78 252.48,295.66 L252.48,294.85 C252.469567,293.335897 251.654374,291.94169 250.34,291.19 C248.92,290.236667 246.683333,289.763333 243.63,289.77 C242.288692,289.762216 240.949574,289.879389 239.63,290.12 C238.370424,290.349021 237.142039,290.72492 235.97,291.24 C234.850275,291.734419 233.819775,292.410157 232.92,293.24 C232.027382,294.089108 231.342929,295.132899 230.92,296.29 L220.92,289.18 C222.568914,285.328033 225.59152,282.22701 229.4,280.48 Z M239.87,308.54 C238.133964,308.727007 236.491887,309.422802 235.15,310.54 C234.094149,311.525097 233.515754,312.918577 233.56367,314.361817 C233.611586,315.805057 234.281134,317.157105 235.4,318.07 C236.978704,319.155497 238.878787,319.673702 240.79,319.54 C242.439634,319.558144 244.078012,319.266425 245.62,318.68 C246.988069,318.153527 248.246169,317.376964 249.33,316.39 C251.367343,314.504845 252.511721,311.845531 252.48,309.07 L252.48,307.07 L239.87,308.54 Z" id="Shape" fill="#000000"></path>
11
+ <path d="M277.29,278.76 L290.7,278.76 L290.7,285.87 C292.523004,283.303245 294.919911,281.19739 297.7,279.72 C300.744903,278.148079 304.133981,277.36096 307.56,277.43 C310.612799,277.420315 313.636269,278.025689 316.45,279.21 C319.264069,280.398281 321.795845,282.166776 323.88,284.4 C326.095489,286.827006 327.79636,289.677667 328.88,292.78 C331.320066,300.177309 331.320066,308.162691 328.88,315.56 C327.786949,318.657928 326.087142,321.506804 323.88,323.94 C321.832391,326.165816 319.338023,327.934364 316.56,329.13 C313.761198,330.317236 310.750173,330.922843 307.71,330.91 C304.14414,331.018331 300.615627,330.157803 297.5,328.42 C294.807427,326.869794 292.467642,324.775226 290.63,322.27 L290.63,349.92 L277.29,349.92 L277.29,278.76 Z M308.9,316.83 C312.13121,315.573945 314.676158,313.003548 315.9,309.76 C317.259788,306.157373 317.259788,302.182627 315.9,298.58 C315.279992,296.961926 314.329822,295.490695 313.11,294.26 C311.907367,293.062942 310.470778,292.126776 308.89,291.51 C307.205681,290.845449 305.410675,290.506129 303.6,290.51 C300.070944,290.408379 296.648654,291.726862 294.1,294.17 C291.56,296.61 290.29,299.943333 290.29,304.17 C290.29,308.396667 291.56,311.73 294.1,314.17 C296.662164,316.58629 300.079756,317.884975 303.6,317.78 C305.410824,317.80107 307.209232,317.478714 308.9,316.83 L308.9,316.83 Z" id="Shape" fill="#000000"></path>
12
+ <path d="M339.4,278.76 L352.82,278.76 L352.82,285.87 C354.644651,283.30473 357.041172,281.199215 359.82,279.72 C362.86578,278.150466 366.254246,277.36349 369.68,277.43 C372.736058,277.420065 375.762845,278.025422 378.58,279.21 C381.389758,280.400816 383.917768,282.16906 386,284.4 C388.215489,286.827006 389.91636,289.677667 391,292.78 C393.440066,300.177309 393.440066,308.162691 391,315.56 C389.906949,318.657928 388.207142,321.506804 386,323.94 C383.956222,326.170162 381.460857,327.939417 378.68,329.13 C375.884379,330.316174 372.876836,330.921765 369.84,330.91 C366.270982,331.018146 362.7393,330.157687 359.62,328.42 C356.930345,326.869623 354.593865,324.774966 352.76,322.27 L352.76,349.92 L339.4,349.92 L339.4,278.76 Z M371,316.83 C372.582106,316.215809 374.019196,315.279316 375.22,314.08 C376.441599,312.848773 377.394954,311.377881 378.02,309.76 C379.379788,306.157373 379.379788,302.182627 378.02,298.58 C377.392642,296.9633 376.439576,295.492855 375.22,294.26 C374.019196,293.060684 372.582106,292.124191 371,291.51 C369.319417,290.844585 367.527516,290.50521 365.72,290.51 C362.187898,290.407932 358.762338,291.726286 356.21,294.17 C353.67,296.61 352.4,299.943333 352.4,304.17 C352.4,308.396667 353.67,311.73 356.21,314.17 C358.775828,316.586876 362.196699,317.88544 365.72,317.78 C367.524293,317.800719 369.316085,317.478332 371,316.83 L371,316.83 Z" id="Shape" fill="#000000"></path>
13
+ <path d="M141,21.83 L123.22,140.83 C120.31,159.18 93.53,158.77 91.22,140.83 L73.44,21.83 C70.98,10.83 78.82,0.32 89.44,0.32 L125,0.32 C135.61,0.32 143.45,10.85 141,21.83 Z" id="Path" fill="#12DA9D"></path>
14
+ <path d="M319.5,21.83 L301.72,140.83 C298.81,159.18 272.03,158.77 269.72,140.83 L251.94,21.83 C249.48,10.83 257.32,0.32 267.94,0.32 L303.5,0.32 C314.12,0.32 322,10.85 319.5,21.83 Z" id="Path" fill="#12DA9D"></path>
15
+ <path d="M162.68,186.45 L180.47,67.45 C183.38,49.11 210.15,49.52 212.47,67.45 L230.26,186.45 C232.71,197.45 224.88,207.96 214.26,207.96 L178.68,207.96 C168.06,208 160.23,197.42 162.68,186.45 Z" id="Path" fill="#12DA9D"></path>
16
+ </g>
17
+ </g>
18
+ </g>
19
+ </svg>
@@ -0,0 +1,12 @@
1
+ import type { IHookFunctions, INodeType, INodeTypeDescription, IWebhookFunctions, IWebhookResponseData } from 'n8n-workflow';
2
+ export declare class WeclappTrigger implements INodeType {
3
+ description: INodeTypeDescription;
4
+ webhookMethods: {
5
+ default: {
6
+ checkExists(this: IHookFunctions): Promise<boolean>;
7
+ create(this: IHookFunctions): Promise<boolean>;
8
+ delete(this: IHookFunctions): Promise<boolean>;
9
+ };
10
+ };
11
+ webhook(this: IWebhookFunctions): Promise<IWebhookResponseData>;
12
+ }
@@ -0,0 +1,198 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.WeclappTrigger = void 0;
4
+ const n8n_workflow_1 = require("n8n-workflow");
5
+ const CREDENTIAL_NAME = 'weclappApi';
6
+ function buildUrl(baseUrl, path) {
7
+ return `${baseUrl.replace(/\/$/, '')}${path}`;
8
+ }
9
+ class WeclappTrigger {
10
+ constructor() {
11
+ this.description = {
12
+ displayName: 'weclapp Trigger',
13
+ name: 'weclappTrigger',
14
+ icon: {
15
+ light: 'file:weclapp.light.svg',
16
+ dark: 'file:weclapp.dark.svg',
17
+ },
18
+ group: ['trigger'],
19
+ version: 1,
20
+ description: 'Starts the workflow when a weclapp entity event fires. Automatically registers and removes the webhook subscription on workflow activate/deactivate. Maintained by Wals-pro (wals.pro).',
21
+ defaults: {
22
+ name: 'weclapp Trigger',
23
+ },
24
+ inputs: [],
25
+ outputs: ['main'],
26
+ credentials: [
27
+ {
28
+ name: CREDENTIAL_NAME,
29
+ required: true,
30
+ },
31
+ ],
32
+ usableAsTool: true,
33
+ webhooks: [
34
+ {
35
+ name: 'default',
36
+ httpMethod: 'POST',
37
+ responseMode: 'onReceived',
38
+ path: 'webhook',
39
+ isFullPath: false,
40
+ },
41
+ ],
42
+ properties: [
43
+ {
44
+ displayName: 'Built by <a href="https://wals.pro" target="_blank">Wals-pro</a> — try the AI copilot at <a href="https://dev.weclapp-ai.wals.pro" target="_blank">weclapp-ai.wals.pro</a> (Beta)',
45
+ name: 'walsproNotice',
46
+ type: 'notice',
47
+ default: '',
48
+ },
49
+ {
50
+ displayName: 'Entity Name',
51
+ name: 'entityName',
52
+ type: 'options',
53
+ noDataExpression: true,
54
+ required: true,
55
+ placeholder: 'Entity to subscribe to',
56
+ options: [
57
+ { name: 'Article', value: 'article' },
58
+ { name: 'Bank Transaction', value: 'bankTransaction' },
59
+ { name: 'Document', value: 'document' },
60
+ { name: 'Party', value: 'party' },
61
+ { name: 'Production Order', value: 'productionOrder' },
62
+ { name: 'Purchase Invoice', value: 'purchaseInvoice' },
63
+ { name: 'Purchase Order', value: 'purchaseOrder' },
64
+ { name: 'Quotation', value: 'quotation' },
65
+ { name: 'Sales Invoice', value: 'salesInvoice' },
66
+ { name: 'Sales Order', value: 'salesOrder' },
67
+ { name: 'Shipment', value: 'shipment' },
68
+ { name: 'Ticket', value: 'ticket' },
69
+ { name: 'Warehouse Stock', value: 'warehouseStock' },
70
+ { name: 'Webhook', value: 'webhook' },
71
+ ],
72
+ default: 'salesOrder',
73
+ description: 'The weclapp entity type to watch',
74
+ },
75
+ {
76
+ displayName: 'Events',
77
+ name: 'events',
78
+ type: 'multiOptions',
79
+ required: true,
80
+ options: [
81
+ { name: 'Created', value: 'created' },
82
+ { name: 'Updated', value: 'updated' },
83
+ { name: 'Deleted', value: 'deleted' },
84
+ ],
85
+ default: ['created', 'updated'],
86
+ description: 'Which lifecycle events to subscribe to',
87
+ },
88
+ {
89
+ displayName: 'Additional Options',
90
+ name: 'additionalOptions',
91
+ type: 'collection',
92
+ placeholder: 'Add option',
93
+ default: {},
94
+ options: [
95
+ {
96
+ displayName: 'Include History',
97
+ name: 'includeHistory',
98
+ type: 'boolean',
99
+ default: false,
100
+ description: 'Whether to include field-level change history in the webhook payload (if supported by the entity)',
101
+ },
102
+ ],
103
+ },
104
+ ],
105
+ };
106
+ this.webhookMethods = {
107
+ default: {
108
+ async checkExists() {
109
+ var _a;
110
+ const credentials = await this.getCredentials(CREDENTIAL_NAME);
111
+ const webhookUrl = this.getNodeWebhookUrl('default');
112
+ if (!webhookUrl) {
113
+ return false;
114
+ }
115
+ const entityName = this.getNodeParameter('entityName');
116
+ const response = (await this.helpers.httpRequestWithAuthentication.call(this, CREDENTIAL_NAME, {
117
+ method: 'GET',
118
+ url: buildUrl(credentials.baseUrl, '/webhook'),
119
+ qs: {
120
+ 'url-eq': webhookUrl,
121
+ 'entityName-eq': entityName,
122
+ },
123
+ json: true,
124
+ }));
125
+ const rows = (_a = response === null || response === void 0 ? void 0 : response.result) !== null && _a !== void 0 ? _a : [];
126
+ return rows.some((row) => row.url === webhookUrl && row.entityName === entityName);
127
+ },
128
+ async create() {
129
+ const credentials = await this.getCredentials(CREDENTIAL_NAME);
130
+ const webhookUrl = this.getNodeWebhookUrl('default');
131
+ if (!webhookUrl) {
132
+ throw new n8n_workflow_1.NodeOperationError(this.getNode(), 'Could not determine the n8n webhook URL');
133
+ }
134
+ const entityName = this.getNodeParameter('entityName');
135
+ const events = this.getNodeParameter('events');
136
+ if (!events || events.length === 0) {
137
+ throw new n8n_workflow_1.NodeOperationError(this.getNode(), 'At least one event must be selected');
138
+ }
139
+ const response = (await this.helpers.httpRequestWithAuthentication.call(this, CREDENTIAL_NAME, {
140
+ method: 'POST',
141
+ url: buildUrl(credentials.baseUrl, '/webhook'),
142
+ body: {
143
+ entityName,
144
+ url: webhookUrl,
145
+ requestMethod: 'POST',
146
+ atCreate: events.includes('created'),
147
+ atUpdate: events.includes('updated'),
148
+ atDelete: events.includes('deleted'),
149
+ },
150
+ json: true,
151
+ }));
152
+ if (!(response === null || response === void 0 ? void 0 : response.id)) {
153
+ throw new n8n_workflow_1.NodeOperationError(this.getNode(), `weclapp did not return an id for entity "${entityName}"`);
154
+ }
155
+ const staticData = this.getWorkflowStaticData('node');
156
+ staticData.weclappWebhookId = response.id;
157
+ return true;
158
+ },
159
+ async delete() {
160
+ const staticData = this.getWorkflowStaticData('node');
161
+ const id = staticData.weclappWebhookId;
162
+ if (!id) {
163
+ return true;
164
+ }
165
+ const credentials = await this.getCredentials(CREDENTIAL_NAME);
166
+ await this.helpers.httpRequestWithAuthentication
167
+ .call(this, CREDENTIAL_NAME, {
168
+ method: 'DELETE',
169
+ url: buildUrl(credentials.baseUrl, `/webhook/id/${id}`),
170
+ json: true,
171
+ })
172
+ .catch(() => {
173
+ });
174
+ staticData.weclappWebhookId = undefined;
175
+ return true;
176
+ },
177
+ },
178
+ };
179
+ }
180
+ async webhook() {
181
+ const body = this.getBodyData();
182
+ const headers = this.getHeaderData();
183
+ return {
184
+ workflowData: [
185
+ [
186
+ {
187
+ json: {
188
+ ...body,
189
+ _headers: headers,
190
+ },
191
+ },
192
+ ],
193
+ ],
194
+ };
195
+ }
196
+ }
197
+ exports.WeclappTrigger = WeclappTrigger;
198
+ //# sourceMappingURL=WeclappTrigger.node.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"WeclappTrigger.node.js","sourceRoot":"","sources":["../../../nodes/WeclappTrigger/WeclappTrigger.node.ts"],"names":[],"mappings":"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"}
@@ -0,0 +1,19 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 400 400" width="400" height="400">
3
+ <g transform="translate(30 48.5) scale(0.865)">
4
+ <g id="Page-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
5
+ <g id="weclapp-rgb-vertical-negative" fill-rule="nonzero">
6
+ <polygon id="Path" fill="#FFFFFF" points="0.06 278.76 14.7 278.76 26.08 309.05 38.18 278.76 49.06 278.76 61.26 309.05 72.54 278.76 87.18 278.76 66.54 329.58 56.38 329.58 43.67 299.39 30.86 329.58 20.7 329.58"></polygon>
7
+ <path d="M88.6,293.7 C89.7549812,290.556297 91.5186333,287.671248 93.79,285.21 C96.0819005,282.766589 98.8713328,280.843313 101.97,279.57 C105.408829,278.182019 109.092253,277.501792 112.8,277.57 C116.383149,277.516316 119.9415,278.172249 123.27,279.5 C126.278588,280.713019 128.985245,282.569793 131.2,284.94 C133.453698,287.399678 135.158118,290.310828 136.2,293.48 C137.389464,297.068495 137.9741,300.829765 137.93,304.61 L137.93,308.27 L100.5,308.27 L100.6,308.47 C100.963056,310.047346 101.643552,311.534229 102.6,312.84 C104.378807,315.23323 106.929027,316.939263 109.82,317.67 C111.264282,318.039908 112.749101,318.22803 114.24,318.23 C117.034683,318.271772 119.8125,317.790148 122.43,316.81 C124.717426,315.927797 126.832704,314.651862 128.68,313.04 L134.27,324.13 C131.853226,326.079931 129.156242,327.654296 126.27,328.8 C122.373531,330.259112 118.228396,330.938642 114.07,330.8 C110.147275,330.875128 106.246626,330.196164 102.58,328.8 C99.3584146,327.555615 96.4325126,325.651565 93.99,323.21 C91.629241,320.809071 89.8086153,317.931527 88.65,314.77 C86.2325105,307.978723 86.2325105,300.561277 88.65,293.77 L88.6,293.7 Z M120,291.62 C118.166667,289.82 115.623333,288.92 112.37,288.92 C106.48962,288.491711 101.266707,292.652633 100.37,298.48 L123.24,298.48 C122.993407,295.885363 121.847257,293.458638 120,291.62 L120,291.62 Z" id="Shape" fill="#FFFFFF"></path>
8
+ <path d="M145.23,293.24 C147.781764,286.812356 152.960521,281.782812 159.46,279.42 C162.941683,278.135121 166.629035,277.497968 170.34,277.54 C174.101683,277.486862 177.837769,278.16615 181.34,279.54 C184.456776,280.769812 187.290878,282.620655 189.67,284.98 L182,295.73 C180.528647,294.276994 178.842194,293.059375 177,292.12 C174.913877,291.098144 172.612273,290.593917 170.29,290.65 C168.478897,290.641472 166.683018,290.980958 165,291.65 C163.41903,292.261759 161.982107,293.194737 160.78,294.39 C159.577155,295.615131 158.628906,297.066394 157.99,298.66 C156.629541,302.22805 156.629541,306.17195 157.99,309.74 C158.628906,311.333606 159.577155,312.784869 160.78,314.01 C161.984251,315.205056 163.420399,316.140935 165,316.76 C166.684319,317.424551 168.479325,317.763871 170.29,317.76 C172.664758,317.803599 175.015925,317.28264 177.15,316.24 C179.041888,315.297461 180.773182,314.062268 182.28,312.58 L189.71,323.35 C187.33326,325.657036 184.536056,327.48676 181.47,328.74 C177.860509,330.214882 173.988571,330.939594 170.09,330.87 C166.412019,330.906801 162.758401,330.269621 159.31,328.99 C156.116436,327.817657 153.206325,325.984355 150.77,323.61 C148.362254,321.217017 146.461122,318.363618 145.18,315.22 C142.472896,308.167525 142.472896,300.362475 145.18,293.31 L145.23,293.24 Z" id="Path" fill="#FFFFFF"></path>
9
+ <polygon id="Path" fill="#FFFFFF" points="210.9 329.58 197.38 329.58 197.38 258.42 210.9 258.42"></polygon>
10
+ <path d="M229.4,280.48 C233.869945,278.47695 238.7336,277.50627 243.63,277.64 C251.09,277.64 256.666667,279.306667 260.36,282.64 C264.053333,285.973333 265.9,291.19 265.9,298.29 L265.9,329.71 L252.48,329.71 L252.48,322.79 C250.933373,325.007227 248.940862,326.877122 246.63,328.28 C243.662782,330.020032 240.256629,330.86723 236.82,330.72 C234.465301,330.74549 232.125055,330.34924 229.91,329.55 C227.904257,328.827177 226.05707,327.723618 224.47,326.3 C222.944725,324.902403 221.731618,323.198601 220.91,321.3 C220.043429,319.257987 219.610941,317.058089 219.64,314.84 C219.611456,312.694839 220.026819,310.566952 220.86,308.59 C221.653377,306.763169 222.814104,305.11909 224.27,303.76 C225.780645,302.377247 227.515354,301.261352 229.4,300.46 C231.471476,299.588382 233.669435,299.054929 235.91,298.88 L249.84,297.66 C251.6,297.46 252.48,296.78 252.48,295.66 L252.48,294.85 C252.469567,293.335897 251.654374,291.94169 250.34,291.19 C248.92,290.236667 246.683333,289.763333 243.63,289.77 C242.288692,289.762216 240.949574,289.879389 239.63,290.12 C238.370424,290.349021 237.142039,290.72492 235.97,291.24 C234.850275,291.734419 233.819775,292.410157 232.92,293.24 C232.027382,294.089108 231.342929,295.132899 230.92,296.29 L220.92,289.18 C222.568914,285.328033 225.59152,282.22701 229.4,280.48 Z M239.87,308.54 C238.133964,308.727007 236.491887,309.422802 235.15,310.54 C234.094149,311.525097 233.515754,312.918577 233.56367,314.361817 C233.611586,315.805057 234.281134,317.157105 235.4,318.07 C236.978704,319.155497 238.878787,319.673702 240.79,319.54 C242.439634,319.558144 244.078012,319.266425 245.62,318.68 C246.988069,318.153527 248.246169,317.376964 249.33,316.39 C251.367343,314.504845 252.511721,311.845531 252.48,309.07 L252.48,307.07 L239.87,308.54 Z" id="Shape" fill="#FFFFFF"></path>
11
+ <path d="M277.29,278.76 L290.7,278.76 L290.7,285.87 C292.523004,283.303245 294.919911,281.19739 297.7,279.72 C300.744903,278.148079 304.133981,277.36096 307.56,277.43 C310.612799,277.420315 313.636269,278.025689 316.45,279.21 C319.264069,280.398281 321.795845,282.166776 323.88,284.4 C326.095489,286.827006 327.79636,289.677667 328.88,292.78 C331.320066,300.177309 331.320066,308.162691 328.88,315.56 C327.786949,318.657928 326.087142,321.506804 323.88,323.94 C321.832391,326.165816 319.338023,327.934364 316.56,329.13 C313.761198,330.317236 310.750173,330.922843 307.71,330.91 C304.14414,331.018331 300.615627,330.157803 297.5,328.42 C294.807427,326.869794 292.467642,324.775226 290.63,322.27 L290.63,349.92 L277.29,349.92 L277.29,278.76 Z M308.9,316.83 C312.13121,315.573945 314.676158,313.003548 315.9,309.76 C317.259788,306.157373 317.259788,302.182627 315.9,298.58 C315.279992,296.961926 314.329822,295.490695 313.11,294.26 C311.907367,293.062942 310.470778,292.126776 308.89,291.51 C307.205681,290.845449 305.410675,290.506129 303.6,290.51 C300.070944,290.408379 296.648654,291.726862 294.1,294.17 C291.56,296.61 290.29,299.943333 290.29,304.17 C290.29,308.396667 291.56,311.73 294.1,314.17 C296.662164,316.58629 300.079756,317.884975 303.6,317.78 C305.410824,317.80107 307.209232,317.478714 308.9,316.83 L308.9,316.83 Z" id="Shape" fill="#FFFFFF"></path>
12
+ <path d="M339.4,278.76 L352.82,278.76 L352.82,285.87 C354.644651,283.30473 357.041172,281.199215 359.82,279.72 C362.86578,278.150466 366.254246,277.36349 369.68,277.43 C372.736058,277.420065 375.762845,278.025422 378.58,279.21 C381.389758,280.400816 383.917768,282.16906 386,284.4 C388.215489,286.827006 389.91636,289.677667 391,292.78 C393.440066,300.177309 393.440066,308.162691 391,315.56 C389.906949,318.657928 388.207142,321.506804 386,323.94 C383.956222,326.170162 381.460857,327.939417 378.68,329.13 C375.884379,330.316174 372.876836,330.921765 369.84,330.91 C366.270982,331.018146 362.7393,330.157687 359.62,328.42 C356.930345,326.869623 354.593865,324.774966 352.76,322.27 L352.76,349.92 L339.4,349.92 L339.4,278.76 Z M371,316.83 C372.582106,316.215809 374.019196,315.279316 375.22,314.08 C376.441599,312.848773 377.394954,311.377881 378.02,309.76 C379.379788,306.157373 379.379788,302.182627 378.02,298.58 C377.392642,296.9633 376.439576,295.492855 375.22,294.26 C374.019196,293.060684 372.582106,292.124191 371,291.51 C369.319417,290.844585 367.527516,290.50521 365.72,290.51 C362.187898,290.407932 358.762338,291.726286 356.21,294.17 C353.67,296.61 352.4,299.943333 352.4,304.17 C352.4,308.396667 353.67,311.73 356.21,314.17 C358.775828,316.586876 362.196699,317.88544 365.72,317.78 C367.524293,317.800719 369.316085,317.478332 371,316.83 L371,316.83 Z" id="Shape" fill="#FFFFFF"></path>
13
+ <path d="M141,21.83 L123.22,140.83 C120.31,159.18 93.53,158.77 91.22,140.83 L73.44,21.83 C70.98,10.83 78.82,0.32 89.44,0.32 L125,0.32 C135.61,0.32 143.45,10.85 141,21.83 Z" id="Path" fill="#12DA9D"></path>
14
+ <path d="M319.5,21.83 L301.72,140.83 C298.81,159.18 272.03,158.77 269.72,140.83 L251.94,21.83 C249.48,10.83 257.32,0.32 267.94,0.32 L303.5,0.32 C314.12,0.32 322,10.85 319.5,21.83 Z" id="Path" fill="#12DA9D"></path>
15
+ <path d="M162.68,186.45 L180.47,67.45 C183.38,49.11 210.15,49.52 212.47,67.45 L230.26,186.45 C232.71,197.45 224.88,207.96 214.26,207.96 L178.68,207.96 C168.06,208 160.23,197.42 162.68,186.45 Z" id="Path" fill="#12DA9D"></path>
16
+ </g>
17
+ </g>
18
+ </g>
19
+ </svg>
@@ -0,0 +1,19 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 400 400" width="400" height="400">
3
+ <g transform="translate(30 48.5) scale(0.865)">
4
+ <g id="Page-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
5
+ <g id="weclapp-rgb-vertical-positive" fill-rule="nonzero">
6
+ <polygon id="Path" fill="#000000" points="0.06 278.76 14.7 278.76 26.08 309.05 38.18 278.76 49.06 278.76 61.26 309.05 72.54 278.76 87.18 278.76 66.54 329.58 56.38 329.58 43.67 299.39 30.86 329.58 20.7 329.58"></polygon>
7
+ <path d="M88.6,293.7 C89.7549812,290.556297 91.5186333,287.671248 93.79,285.21 C96.0819005,282.766589 98.8713328,280.843313 101.97,279.57 C105.408829,278.182019 109.092253,277.501792 112.8,277.57 C116.383149,277.516316 119.9415,278.172249 123.27,279.5 C126.278588,280.713019 128.985245,282.569793 131.2,284.94 C133.453698,287.399678 135.158118,290.310828 136.2,293.48 C137.389464,297.068495 137.9741,300.829765 137.93,304.61 L137.93,308.27 L100.5,308.27 L100.6,308.47 C100.963056,310.047346 101.643552,311.534229 102.6,312.84 C104.378807,315.23323 106.929027,316.939263 109.82,317.67 C111.264282,318.039908 112.749101,318.22803 114.24,318.23 C117.034683,318.271772 119.8125,317.790148 122.43,316.81 C124.717426,315.927797 126.832704,314.651862 128.68,313.04 L134.27,324.13 C131.853226,326.079931 129.156242,327.654296 126.27,328.8 C122.373531,330.259112 118.228396,330.938642 114.07,330.8 C110.147275,330.875128 106.246626,330.196164 102.58,328.8 C99.3584146,327.555615 96.4325126,325.651565 93.99,323.21 C91.629241,320.809071 89.8086153,317.931527 88.65,314.77 C86.2325105,307.978723 86.2325105,300.561277 88.65,293.77 L88.6,293.7 Z M120,291.62 C118.166667,289.82 115.623333,288.92 112.37,288.92 C106.48962,288.491711 101.266707,292.652633 100.37,298.48 L123.24,298.48 C122.993407,295.885363 121.847257,293.458638 120,291.62 L120,291.62 Z" id="Shape" fill="#000000"></path>
8
+ <path d="M145.23,293.24 C147.781764,286.812356 152.960521,281.782812 159.46,279.42 C162.941683,278.135121 166.629035,277.497968 170.34,277.54 C174.101683,277.486862 177.837769,278.16615 181.34,279.54 C184.456776,280.769812 187.290878,282.620655 189.67,284.98 L182,295.73 C180.528647,294.276994 178.842194,293.059375 177,292.12 C174.913877,291.098144 172.612273,290.593917 170.29,290.65 C168.478897,290.641472 166.683018,290.980958 165,291.65 C163.41903,292.261759 161.982107,293.194737 160.78,294.39 C159.577155,295.615131 158.628906,297.066394 157.99,298.66 C156.629541,302.22805 156.629541,306.17195 157.99,309.74 C158.628906,311.333606 159.577155,312.784869 160.78,314.01 C161.984251,315.205056 163.420399,316.140935 165,316.76 C166.684319,317.424551 168.479325,317.763871 170.29,317.76 C172.664758,317.803599 175.015925,317.28264 177.15,316.24 C179.041888,315.297461 180.773182,314.062268 182.28,312.58 L189.71,323.35 C187.33326,325.657036 184.536056,327.48676 181.47,328.74 C177.860509,330.214882 173.988571,330.939594 170.09,330.87 C166.412019,330.906801 162.758401,330.269621 159.31,328.99 C156.116436,327.817657 153.206325,325.984355 150.77,323.61 C148.362254,321.217017 146.461122,318.363618 145.18,315.22 C142.472896,308.167525 142.472896,300.362475 145.18,293.31 L145.23,293.24 Z" id="Path" fill="#000000"></path>
9
+ <polygon id="Path" fill="#000000" points="210.9 329.58 197.38 329.58 197.38 258.42 210.9 258.42"></polygon>
10
+ <path d="M229.4,280.48 C233.869945,278.47695 238.7336,277.50627 243.63,277.64 C251.09,277.64 256.666667,279.306667 260.36,282.64 C264.053333,285.973333 265.9,291.19 265.9,298.29 L265.9,329.71 L252.48,329.71 L252.48,322.79 C250.933373,325.007227 248.940862,326.877122 246.63,328.28 C243.662782,330.020032 240.256629,330.86723 236.82,330.72 C234.465301,330.74549 232.125055,330.34924 229.91,329.55 C227.904257,328.827177 226.05707,327.723618 224.47,326.3 C222.944725,324.902403 221.731618,323.198601 220.91,321.3 C220.043429,319.257987 219.610941,317.058089 219.64,314.84 C219.611456,312.694839 220.026819,310.566952 220.86,308.59 C221.653377,306.763169 222.814104,305.11909 224.27,303.76 C225.780645,302.377247 227.515354,301.261352 229.4,300.46 C231.471476,299.588382 233.669435,299.054929 235.91,298.88 L249.84,297.66 C251.6,297.46 252.48,296.78 252.48,295.66 L252.48,294.85 C252.469567,293.335897 251.654374,291.94169 250.34,291.19 C248.92,290.236667 246.683333,289.763333 243.63,289.77 C242.288692,289.762216 240.949574,289.879389 239.63,290.12 C238.370424,290.349021 237.142039,290.72492 235.97,291.24 C234.850275,291.734419 233.819775,292.410157 232.92,293.24 C232.027382,294.089108 231.342929,295.132899 230.92,296.29 L220.92,289.18 C222.568914,285.328033 225.59152,282.22701 229.4,280.48 Z M239.87,308.54 C238.133964,308.727007 236.491887,309.422802 235.15,310.54 C234.094149,311.525097 233.515754,312.918577 233.56367,314.361817 C233.611586,315.805057 234.281134,317.157105 235.4,318.07 C236.978704,319.155497 238.878787,319.673702 240.79,319.54 C242.439634,319.558144 244.078012,319.266425 245.62,318.68 C246.988069,318.153527 248.246169,317.376964 249.33,316.39 C251.367343,314.504845 252.511721,311.845531 252.48,309.07 L252.48,307.07 L239.87,308.54 Z" id="Shape" fill="#000000"></path>
11
+ <path d="M277.29,278.76 L290.7,278.76 L290.7,285.87 C292.523004,283.303245 294.919911,281.19739 297.7,279.72 C300.744903,278.148079 304.133981,277.36096 307.56,277.43 C310.612799,277.420315 313.636269,278.025689 316.45,279.21 C319.264069,280.398281 321.795845,282.166776 323.88,284.4 C326.095489,286.827006 327.79636,289.677667 328.88,292.78 C331.320066,300.177309 331.320066,308.162691 328.88,315.56 C327.786949,318.657928 326.087142,321.506804 323.88,323.94 C321.832391,326.165816 319.338023,327.934364 316.56,329.13 C313.761198,330.317236 310.750173,330.922843 307.71,330.91 C304.14414,331.018331 300.615627,330.157803 297.5,328.42 C294.807427,326.869794 292.467642,324.775226 290.63,322.27 L290.63,349.92 L277.29,349.92 L277.29,278.76 Z M308.9,316.83 C312.13121,315.573945 314.676158,313.003548 315.9,309.76 C317.259788,306.157373 317.259788,302.182627 315.9,298.58 C315.279992,296.961926 314.329822,295.490695 313.11,294.26 C311.907367,293.062942 310.470778,292.126776 308.89,291.51 C307.205681,290.845449 305.410675,290.506129 303.6,290.51 C300.070944,290.408379 296.648654,291.726862 294.1,294.17 C291.56,296.61 290.29,299.943333 290.29,304.17 C290.29,308.396667 291.56,311.73 294.1,314.17 C296.662164,316.58629 300.079756,317.884975 303.6,317.78 C305.410824,317.80107 307.209232,317.478714 308.9,316.83 L308.9,316.83 Z" id="Shape" fill="#000000"></path>
12
+ <path d="M339.4,278.76 L352.82,278.76 L352.82,285.87 C354.644651,283.30473 357.041172,281.199215 359.82,279.72 C362.86578,278.150466 366.254246,277.36349 369.68,277.43 C372.736058,277.420065 375.762845,278.025422 378.58,279.21 C381.389758,280.400816 383.917768,282.16906 386,284.4 C388.215489,286.827006 389.91636,289.677667 391,292.78 C393.440066,300.177309 393.440066,308.162691 391,315.56 C389.906949,318.657928 388.207142,321.506804 386,323.94 C383.956222,326.170162 381.460857,327.939417 378.68,329.13 C375.884379,330.316174 372.876836,330.921765 369.84,330.91 C366.270982,331.018146 362.7393,330.157687 359.62,328.42 C356.930345,326.869623 354.593865,324.774966 352.76,322.27 L352.76,349.92 L339.4,349.92 L339.4,278.76 Z M371,316.83 C372.582106,316.215809 374.019196,315.279316 375.22,314.08 C376.441599,312.848773 377.394954,311.377881 378.02,309.76 C379.379788,306.157373 379.379788,302.182627 378.02,298.58 C377.392642,296.9633 376.439576,295.492855 375.22,294.26 C374.019196,293.060684 372.582106,292.124191 371,291.51 C369.319417,290.844585 367.527516,290.50521 365.72,290.51 C362.187898,290.407932 358.762338,291.726286 356.21,294.17 C353.67,296.61 352.4,299.943333 352.4,304.17 C352.4,308.396667 353.67,311.73 356.21,314.17 C358.775828,316.586876 362.196699,317.88544 365.72,317.78 C367.524293,317.800719 369.316085,317.478332 371,316.83 L371,316.83 Z" id="Shape" fill="#000000"></path>
13
+ <path d="M141,21.83 L123.22,140.83 C120.31,159.18 93.53,158.77 91.22,140.83 L73.44,21.83 C70.98,10.83 78.82,0.32 89.44,0.32 L125,0.32 C135.61,0.32 143.45,10.85 141,21.83 Z" id="Path" fill="#12DA9D"></path>
14
+ <path d="M319.5,21.83 L301.72,140.83 C298.81,159.18 272.03,158.77 269.72,140.83 L251.94,21.83 C249.48,10.83 257.32,0.32 267.94,0.32 L303.5,0.32 C314.12,0.32 322,10.85 319.5,21.83 Z" id="Path" fill="#12DA9D"></path>
15
+ <path d="M162.68,186.45 L180.47,67.45 C183.38,49.11 210.15,49.52 212.47,67.45 L230.26,186.45 C232.71,197.45 224.88,207.96 214.26,207.96 L178.68,207.96 C168.06,208 160.23,197.42 162.68,186.45 Z" id="Path" fill="#12DA9D"></path>
16
+ </g>
17
+ </g>
18
+ </g>
19
+ </svg>
@@ -0,0 +1,78 @@
1
+ {
2
+ "name": "@wals-pro/n8n-nodes-weclapp",
3
+ "version": "0.3.0",
4
+ "publishConfig": {
5
+ "access": "public"
6
+ },
7
+ "description": "n8n community node for the weclapp ERP API — CRUD, actions, binary downloads, webhook trigger",
8
+ "license": "MIT",
9
+ "homepage": "https://github.com/Wals-pro/n8n-nodes-weclapp#readme",
10
+ "funding": {
11
+ "type": "homepage",
12
+ "url": "https://wals.pro"
13
+ },
14
+ "keywords": [
15
+ "n8n-community-node-package",
16
+ "weclapp",
17
+ "erp"
18
+ ],
19
+ "author": {
20
+ "name": "Markus Wals",
21
+ "email": "markus@wals.pro",
22
+ "url": "https://wals.pro"
23
+ },
24
+ "repository": {
25
+ "type": "git",
26
+ "url": "git+https://github.com/Wals-pro/n8n-nodes-weclapp.git"
27
+ },
28
+ "bugs": {
29
+ "url": "https://github.com/Wals-pro/n8n-nodes-weclapp/issues"
30
+ },
31
+ "engines": {
32
+ "node": ">=20.15"
33
+ },
34
+ "publishConfig": {
35
+ "access": "public"
36
+ },
37
+ "scripts": {
38
+ "build": "n8n-node build",
39
+ "build:watch": "tsc --watch",
40
+ "codegen": "tsx scripts/vendor-sdk-metadata.ts && tsx scripts/generate-descriptors.ts",
41
+ "dev": "n8n-node dev",
42
+ "format": "prettier --write .",
43
+ "lint": "n8n-node lint",
44
+ "lint:fix": "n8n-node lint --fix",
45
+ "prepublishOnly": "n8n-node prerelease",
46
+ "release": "n8n-node release",
47
+ "test": "vitest run",
48
+ "test:watch": "vitest"
49
+ },
50
+ "files": [
51
+ "dist"
52
+ ],
53
+ "n8n": {
54
+ "n8nNodesApiVersion": 1,
55
+ "credentials": [
56
+ "dist/credentials/WeclappApi.credentials.js"
57
+ ],
58
+ "nodes": [
59
+ "dist/nodes/Weclapp/Weclapp.node.js",
60
+ "dist/nodes/WeclappTrigger/WeclappTrigger.node.js"
61
+ ]
62
+ },
63
+ "devDependencies": {
64
+ "@n8n/node-cli": ">=0.23.0",
65
+ "@stoplight/prism-cli": "^5.12.0",
66
+ "@types/node": "^20.17.0",
67
+ "@weclapp/sdk": "latest",
68
+ "eslint": "9.39.4",
69
+ "prettier": "3.8.1",
70
+ "release-it": "19.2.4",
71
+ "tsx": "^4.19.0",
72
+ "typescript": "5.9.3",
73
+ "vitest": "^2.1.0"
74
+ },
75
+ "peerDependencies": {
76
+ "n8n-workflow": "*"
77
+ }
78
+ }