n8n-nodes-base 1.106.0 → 1.108.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 (236) hide show
  1. package/dist/known/nodes.json +4 -0
  2. package/dist/methods/defined.json +4 -0
  3. package/dist/methods/referenced.json +4 -0
  4. package/dist/nodes/Affinity/__schema__/v1.0.0/organization/get.json +1 -4
  5. package/dist/nodes/Affinity/__schema__/v1.0.0/person/getAll.json +24 -0
  6. package/dist/nodes/Airtop/__schema__/v1.0.0/extraction/getPaginated.json +7 -1
  7. package/dist/nodes/Airtop/__schema__/v1.0.0/extraction/scrape.json +7 -1
  8. package/dist/nodes/Airtop/__schema__/v1.0.0/interaction/click.json +42 -0
  9. package/dist/nodes/Airtop/__schema__/v1.0.0/session/create.json +60 -1
  10. package/dist/nodes/Airtop/__schema__/v1.0.0/session/terminate.json +9 -0
  11. package/dist/nodes/Airtop/__schema__/v1.0.0/window/create.json +1 -4
  12. package/dist/nodes/Aws/DynamoDB/__schema__/v1.0.0/item/getAll.json +9 -0
  13. package/dist/nodes/BambooHr/__schema__/v1.0.0/companyReport/get.json +1 -7
  14. package/dist/nodes/BambooHr/__schema__/v1.0.0/employee/getAll.json +10 -1
  15. package/dist/nodes/Bitly/__schema__/v1.0.0/link/create.json +7 -1
  16. package/dist/nodes/Box/__schema__/v1.0.0/file/download.json +7 -1
  17. package/dist/nodes/ClickUp/__schema__/v1.0.0/folder/create.json +74 -1
  18. package/dist/nodes/ClickUp/__schema__/v1.0.0/list/customFields.json +26 -1
  19. package/dist/nodes/Coda/__schema__/v1.1.0/table/getAllRows.json +4 -1
  20. package/dist/nodes/Code/Code.node.d.ts.map +1 -1
  21. package/dist/nodes/Code/Code.node.js +3 -0
  22. package/dist/nodes/Code/Code.node.js.map +1 -1
  23. package/dist/nodes/Code/PythonTaskRunnerSandbox.d.ts.map +1 -1
  24. package/dist/nodes/Code/PythonTaskRunnerSandbox.js +8 -0
  25. package/dist/nodes/Code/PythonTaskRunnerSandbox.js.map +1 -1
  26. package/dist/nodes/Code/descriptions/PythonCodeDescription.js +1 -1
  27. package/dist/nodes/Code/descriptions/PythonCodeDescription.js.map +1 -1
  28. package/dist/nodes/CoinGecko/__schema__/v1.0.0/coin/candlestick.json +9 -0
  29. package/dist/nodes/Contentful/__schema__/v1.0.0/contentType/get.json +27 -0
  30. package/dist/nodes/DataTable/DataTable.node.d.ts +19 -0
  31. package/dist/nodes/DataTable/DataTable.node.d.ts.map +1 -0
  32. package/dist/nodes/DataTable/DataTable.node.js +94 -0
  33. package/dist/nodes/DataTable/DataTable.node.js.map +1 -0
  34. package/dist/nodes/DataTable/DataTable.node.json +18 -0
  35. package/dist/nodes/DataTable/actions/router.d.ts +3 -0
  36. package/dist/nodes/DataTable/actions/router.d.ts.map +1 -0
  37. package/dist/nodes/DataTable/actions/router.js +77 -0
  38. package/dist/nodes/DataTable/actions/router.js.map +1 -0
  39. package/dist/nodes/DataTable/actions/row/Row.resource.d.ts +9 -0
  40. package/dist/nodes/DataTable/actions/row/Row.resource.d.ts.map +1 -0
  41. package/dist/nodes/DataTable/actions/row/Row.resource.js +123 -0
  42. package/dist/nodes/DataTable/actions/row/Row.resource.js.map +1 -0
  43. package/dist/nodes/DataTable/actions/row/delete.operation.d.ts +5 -0
  44. package/dist/nodes/DataTable/actions/row/delete.operation.d.ts.map +1 -0
  45. package/dist/nodes/DataTable/actions/row/delete.operation.js +44 -0
  46. package/dist/nodes/DataTable/actions/row/delete.operation.js.map +1 -0
  47. package/dist/nodes/DataTable/actions/row/get.operation.d.ts +5 -0
  48. package/dist/nodes/DataTable/actions/row/get.operation.d.ts.map +1 -0
  49. package/dist/nodes/DataTable/actions/row/get.operation.js +19 -0
  50. package/dist/nodes/DataTable/actions/row/get.operation.js.map +1 -0
  51. package/dist/nodes/DataTable/actions/row/insert.operation.d.ts +5 -0
  52. package/dist/nodes/DataTable/actions/row/insert.operation.d.ts.map +1 -0
  53. package/dist/nodes/DataTable/actions/row/insert.operation.js +21 -0
  54. package/dist/nodes/DataTable/actions/row/insert.operation.js.map +1 -0
  55. package/dist/nodes/DataTable/actions/row/update.operation.d.ts +5 -0
  56. package/dist/nodes/DataTable/actions/row/update.operation.d.ts.map +1 -0
  57. package/dist/nodes/DataTable/actions/row/update.operation.js +41 -0
  58. package/dist/nodes/DataTable/actions/row/update.operation.js.map +1 -0
  59. package/dist/nodes/DataTable/actions/row/upsert.operation.d.ts +5 -0
  60. package/dist/nodes/DataTable/actions/row/upsert.operation.d.ts.map +1 -0
  61. package/dist/nodes/DataTable/actions/row/upsert.operation.js +47 -0
  62. package/dist/nodes/DataTable/actions/row/upsert.operation.js.map +1 -0
  63. package/dist/nodes/DataTable/common/addRow.d.ts +29 -0
  64. package/dist/nodes/DataTable/common/addRow.d.ts.map +1 -0
  65. package/dist/nodes/DataTable/common/addRow.js +54 -0
  66. package/dist/nodes/DataTable/common/addRow.js.map +1 -0
  67. package/dist/nodes/DataTable/common/constants.d.ts +13 -0
  68. package/dist/nodes/DataTable/common/constants.d.ts.map +1 -0
  69. package/dist/nodes/DataTable/common/constants.js +6 -0
  70. package/dist/nodes/DataTable/common/constants.js.map +1 -0
  71. package/dist/nodes/DataTable/common/fields.d.ts +9 -0
  72. package/dist/nodes/DataTable/common/fields.d.ts.map +1 -0
  73. package/dist/nodes/DataTable/common/fields.js +12 -0
  74. package/dist/nodes/DataTable/common/fields.js.map +1 -0
  75. package/dist/nodes/DataTable/common/methods.d.ts +8 -0
  76. package/dist/nodes/DataTable/common/methods.d.ts.map +1 -0
  77. package/dist/nodes/DataTable/common/methods.js +124 -0
  78. package/dist/nodes/DataTable/common/methods.js.map +1 -0
  79. package/dist/nodes/DataTable/common/selectMany.d.ts +7 -0
  80. package/dist/nodes/DataTable/common/selectMany.d.ts.map +1 -0
  81. package/dist/nodes/DataTable/common/selectMany.js +128 -0
  82. package/dist/nodes/DataTable/common/selectMany.js.map +1 -0
  83. package/dist/nodes/DataTable/common/utils.d.ts +11 -0
  84. package/dist/nodes/DataTable/common/utils.d.ts.map +1 -0
  85. package/dist/nodes/DataTable/common/utils.js +109 -0
  86. package/dist/nodes/DataTable/common/utils.js.map +1 -0
  87. package/dist/nodes/Dropbox/__schema__/v1.0.0/file/download.json +1 -19
  88. package/dist/nodes/Dropcontact/__schema__/v1.0.0/contact/enrich.json +1 -19
  89. package/dist/nodes/Elastic/Elasticsearch/__schema__/v1.0.0/document/getAll.json +4 -1
  90. package/dist/nodes/EmailSend/__schema__/v2.1.0/email/send.json +1 -7
  91. package/dist/nodes/Files/ExtractFromFile/actions/moveTo.operation.js +1 -1
  92. package/dist/nodes/Files/ExtractFromFile/actions/moveTo.operation.js.map +1 -1
  93. package/dist/nodes/Files/ReadWriteFile/helpers/utils.d.ts.map +1 -1
  94. package/dist/nodes/Files/ReadWriteFile/helpers/utils.js +18 -16
  95. package/dist/nodes/Files/ReadWriteFile/helpers/utils.js.map +1 -1
  96. package/dist/nodes/FreshworksCrm/__schema__/v1.0.0/search/query.json +35 -0
  97. package/dist/nodes/Github/GithubTrigger.node.js +3 -3
  98. package/dist/nodes/Github/GithubTrigger.node.js.map +1 -1
  99. package/dist/nodes/Github/__schema__/v1.1.0/file/get.json +1 -42
  100. package/dist/nodes/Gitlab/__schema__/v1.0.0/file/get.json +4 -1
  101. package/dist/nodes/Google/Analytics/__schema__/v2.0.0/report/get.json +71 -2
  102. package/dist/nodes/Google/Calendar/GoogleCalendar.node.js +2 -2
  103. package/dist/nodes/Google/Calendar/GoogleCalendar.node.js.map +1 -1
  104. package/dist/nodes/Google/Calendar/__schema__/v1.3.0/event/create.json +4 -1
  105. package/dist/nodes/Google/Calendar/__schema__/v1.3.0/event/getAll.json +1 -4
  106. package/dist/nodes/Google/Chat/__schema__/v1.0.0/message/create.json +30 -1
  107. package/dist/nodes/Google/Chat/__schema__/v1.0.0/message/get.json +1 -63
  108. package/dist/nodes/Google/CloudStorage/__schema__/v1.0.0/object/getAll.json +7 -1
  109. package/dist/nodes/Google/Contacts/__schema__/v1.0.0/contact/getAll.json +21 -1
  110. package/dist/nodes/Google/Drive/__schema__/v3.0.0/file/upload.json +34 -1
  111. package/dist/nodes/Google/Firebase/CloudFirestore/__schema__/v1.1.0/document/create.json +1 -4
  112. package/dist/nodes/Google/Firebase/CloudFirestore/__schema__/v1.1.0/document/getAll.json +1 -4
  113. package/dist/nodes/Google/GSuiteAdmin/__schema__/v1.0.0/user/get.json +1 -65
  114. package/dist/nodes/Google/GSuiteAdmin/__schema__/v1.0.0/user/getAll.json +1 -22
  115. package/dist/nodes/Google/Gmail/__schema__/v2.1.0/message/getAll.json +27 -123
  116. package/dist/nodes/Google/Task/__schema__/v1.0.0/task/getAll.json +4 -4
  117. package/dist/nodes/HighLevel/__schema__/v2.0.0/calendar/bookAppointment.json +36 -0
  118. package/dist/nodes/HomeAssistant/__schema__/v1.0.0/state/get.json +1 -7
  119. package/dist/nodes/HttpRequest/V1/HttpRequestV1.node.d.ts.map +1 -1
  120. package/dist/nodes/HttpRequest/V1/HttpRequestV1.node.js +31 -0
  121. package/dist/nodes/HttpRequest/V1/HttpRequestV1.node.js.map +1 -1
  122. package/dist/nodes/HttpRequest/V2/HttpRequestV2.node.d.ts.map +1 -1
  123. package/dist/nodes/HttpRequest/V2/HttpRequestV2.node.js +46 -0
  124. package/dist/nodes/HttpRequest/V2/HttpRequestV2.node.js.map +1 -1
  125. package/dist/nodes/HttpRequest/V3/HttpRequestV3.node.d.ts.map +1 -1
  126. package/dist/nodes/HttpRequest/V3/HttpRequestV3.node.js +239 -180
  127. package/dist/nodes/HttpRequest/V3/HttpRequestV3.node.js.map +1 -1
  128. package/dist/nodes/Hubspot/Hubspot.node.d.ts.map +1 -1
  129. package/dist/nodes/Hubspot/Hubspot.node.js +2 -1
  130. package/dist/nodes/Hubspot/Hubspot.node.js.map +1 -1
  131. package/dist/nodes/Hubspot/V2/EngagementDescription.d.ts.map +1 -1
  132. package/dist/nodes/Hubspot/V2/EngagementDescription.js +32 -0
  133. package/dist/nodes/Hubspot/V2/EngagementDescription.js.map +1 -1
  134. package/dist/nodes/Hubspot/V2/HubspotV2.node.d.ts.map +1 -1
  135. package/dist/nodes/Hubspot/V2/HubspotV2.node.js +14 -1
  136. package/dist/nodes/Hubspot/V2/HubspotV2.node.js.map +1 -1
  137. package/dist/nodes/Hubspot/V2/utils/parseToTimestamp.d.ts +2 -0
  138. package/dist/nodes/Hubspot/V2/utils/parseToTimestamp.d.ts.map +1 -0
  139. package/dist/nodes/Hubspot/V2/utils/parseToTimestamp.js +18 -0
  140. package/dist/nodes/Hubspot/V2/utils/parseToTimestamp.js.map +1 -0
  141. package/dist/nodes/Hubspot/__schema__/v2.1.0/company/getAll.json +4 -1
  142. package/dist/nodes/Hubspot/__schema__/v2.1.0/deal/getAll.json +1 -257
  143. package/dist/nodes/Hubspot/__schema__/v2.1.0/deal/search.json +10 -1
  144. package/dist/nodes/Hubspot/__schema__/v2.1.0/ticket/get.json +67 -1
  145. package/dist/nodes/Hubspot/__schema__/v2.1.0/ticket/getAll.json +61 -1
  146. package/dist/nodes/Jenkins/__schema__/v1.0.0/job/trigger.json +9 -0
  147. package/dist/nodes/Jenkins/__schema__/v1.0.0/job/triggerParams.json +9 -0
  148. package/dist/nodes/JinaAI/__schema__/v1.0.0/reader/read.json +9 -1
  149. package/dist/nodes/Jira/__schema__/v1.0.0/issue/get.json +121 -1
  150. package/dist/nodes/Jira/__schema__/v1.0.0/issue/getAll.json +310 -1
  151. package/dist/nodes/Lemlist/__schema__/v2.0.0/campaign/getStats.json +39 -0
  152. package/dist/nodes/Lemlist/__schema__/v2.0.0/enrich/get.json +3 -18
  153. package/dist/nodes/Lemlist/__schema__/v2.0.0/lead/get.json +1 -4
  154. package/dist/nodes/Mailchimp/__schema__/v1.0.0/member/create.json +15 -1
  155. package/dist/nodes/Mailchimp/__schema__/v1.0.0/member/get.json +7 -4
  156. package/dist/nodes/Marketstack/__schema__/v1.0.0/endOfDayData/getAll.json +1 -4
  157. package/dist/nodes/Matrix/__schema__/v1.0.0/message/getAll.json +4 -1
  158. package/dist/nodes/Metabase/__schema__/v1.0.0/databases/getAll.json +21 -0
  159. package/dist/nodes/Metabase/__schema__/v1.0.0/databases/getFields.json +9 -13
  160. package/dist/nodes/Metabase/__schema__/v1.0.0/questions/get.json +85 -12
  161. package/dist/nodes/Microsoft/AzureCosmosDb/__schema__/v1.0.0/item/getAll.json +12 -0
  162. package/dist/nodes/Microsoft/Entra/__schema__/v1.0.0/group/getAll.json +27 -0
  163. package/dist/nodes/Microsoft/Entra/__schema__/v1.0.0/user/create.json +13 -18
  164. package/dist/nodes/Microsoft/Entra/__schema__/v1.0.0/user/getAll.json +1 -4
  165. package/dist/nodes/Microsoft/OneDrive/__schema__/v1.0.0/file/download.json +10 -23
  166. package/dist/nodes/Microsoft/OneDrive/__schema__/v1.0.0/folder/create.json +15 -7
  167. package/dist/nodes/Microsoft/Outlook/__schema__/v2.0.0/message/get.json +39 -4
  168. package/dist/nodes/Microsoft/Outlook/__schema__/v2.0.0/message/getAll.json +1 -4
  169. package/dist/nodes/Microsoft/Outlook/__schema__/v2.0.0/messageAttachment/get.json +1 -25
  170. package/dist/nodes/Microsoft/SharePoint/__schema__/v1.0.0/item/get.json +71 -0
  171. package/dist/nodes/Microsoft/SharePoint/__schema__/v1.0.0/item/getAll.json +1 -70
  172. package/dist/nodes/Microsoft/SharePoint/__schema__/v1.0.0/list/get.json +27 -0
  173. package/dist/nodes/Microsoft/SharePoint/__schema__/v1.0.0/list/getAll.json +27 -0
  174. package/dist/nodes/Microsoft/Sql/MicrosoftSql.node.js +1 -1
  175. package/dist/nodes/Microsoft/Sql/MicrosoftSql.node.js.map +1 -1
  176. package/dist/nodes/Microsoft/ToDo/__schema__/v1.0.0/task/getAll.json +18 -1
  177. package/dist/nodes/N8nTrainingCustomerDatastore/__schema__/v1.0.0/execution/get.json +1 -4
  178. package/dist/nodes/N8nTrainingCustomerDatastore/__schema__/v1.0.0/execution/getAll.json +1 -4
  179. package/dist/nodes/N8nTrainingCustomerDatastore/__schema__/v1.0.0/workflow/create.json +10 -1
  180. package/dist/nodes/Nasa/__schema__/v1.0.0/donkiSolarFlare/get.json +1 -7
  181. package/dist/nodes/NextCloud/__schema__/v1.0.0/file/download.json +2 -32
  182. package/dist/nodes/Odoo/__schema__/v1.0.0/contact/get.json +1 -4
  183. package/dist/nodes/Odoo/__schema__/v1.0.0/opportunity/getAll.json +4 -1
  184. package/dist/nodes/Okta/__schema__/v1.0.0/user/getAll.json +1 -37
  185. package/dist/nodes/Perplexity/__schema__/v1.0.0/chat/complete.json +12 -1
  186. package/dist/nodes/Phantombuster/__schema__/v1.0.0/agent/getOutput.json +1 -10
  187. package/dist/nodes/Reddit/__schema__/v1.0.0/post/getAll.json +78 -4
  188. package/dist/nodes/RenameKeys/RenameKeys.node.d.ts.map +1 -1
  189. package/dist/nodes/RenameKeys/RenameKeys.node.js +37 -18
  190. package/dist/nodes/RenameKeys/RenameKeys.node.js.map +1 -1
  191. package/dist/nodes/RespondToWebhook/RespondToWebhook.node.d.ts.map +1 -1
  192. package/dist/nodes/RespondToWebhook/RespondToWebhook.node.js +1 -15
  193. package/dist/nodes/RespondToWebhook/RespondToWebhook.node.js.map +1 -1
  194. package/dist/nodes/RespondToWebhook/utils/binary.d.ts +1 -1
  195. package/dist/nodes/RespondToWebhook/utils/binary.d.ts.map +1 -1
  196. package/dist/nodes/RespondToWebhook/utils/binary.js +2 -17
  197. package/dist/nodes/RespondToWebhook/utils/binary.js.map +1 -1
  198. package/dist/nodes/S3/__schema__/v1.0.0/file/download.json +10 -1
  199. package/dist/nodes/Salesforce/__schema__/v1.0.0/case/getAll.json +4 -1
  200. package/dist/nodes/Salesforce/__schema__/v1.0.0/customObject/create.json +15 -1
  201. package/dist/nodes/Salesforce/__schema__/v1.0.0/customObject/getAll.json +4 -1
  202. package/dist/nodes/Salesforce/__schema__/v1.0.0/customObject/upsert.json +4 -4
  203. package/dist/nodes/Salesforce/__schema__/v1.0.0/opportunity/getAll.json +5 -2
  204. package/dist/nodes/Salesforce/__schema__/v1.0.0/task/getAll.json +10 -4
  205. package/dist/nodes/Salesforce/__schema__/v1.0.0/user/getAll.json +1 -4
  206. package/dist/nodes/SeaTable/__schema__/v2.0.0/row/create.json +24 -0
  207. package/dist/nodes/Shopify/__schema__/v1.0.0/order/getAll.json +4 -45
  208. package/dist/nodes/Shopify/__schema__/v1.0.0/product/get.json +1 -4
  209. package/dist/nodes/Slack/SlackTrigger.node.d.ts.map +1 -1
  210. package/dist/nodes/Slack/SlackTrigger.node.js +2 -1
  211. package/dist/nodes/Slack/SlackTrigger.node.js.map +1 -1
  212. package/dist/nodes/Slack/V2/MessageDescription.js +1 -1
  213. package/dist/nodes/Slack/V2/MessageDescription.js.map +1 -1
  214. package/dist/nodes/Slack/__schema__/v2.3.0/channel/history.json +3 -3
  215. package/dist/nodes/Slack/__schema__/v2.3.0/channel/join.json +2 -174
  216. package/dist/nodes/Slack/__schema__/v2.3.0/channel/replies.json +44 -4
  217. package/dist/nodes/Stripe/__schema__/v1.0.0/balance/get.json +34 -1
  218. package/dist/nodes/Telegram/Telegram.node.js +1 -1
  219. package/dist/nodes/Telegram/Telegram.node.js.map +1 -1
  220. package/dist/nodes/Telegram/__schema__/v1.2.0/chat/get.json +1 -4
  221. package/dist/nodes/Telegram/__schema__/v1.2.0/chat/member.json +4 -4
  222. package/dist/nodes/Telegram/__schema__/v1.2.0/message/editMessageText.json +4 -1
  223. package/dist/nodes/Telegram/__schema__/v1.2.0/message/sendMessage.json +1 -12
  224. package/dist/nodes/Trello/__schema__/v1.0.0/attachment/get.json +4 -1
  225. package/dist/nodes/Trello/__schema__/v1.0.0/label/getAll.json +18 -0
  226. package/dist/nodes/Trello/__schema__/v1.0.0/list/getAll.json +1 -4
  227. package/dist/nodes/Trello/__schema__/v1.0.0/list/getCards.json +11 -2
  228. package/dist/nodes/Twilio/__schema__/v1.0.0/sms/send.json +7 -1
  229. package/dist/nodes/Wise/__schema__/v1.0.0/exchangeRate/get.json +4 -1
  230. package/dist/nodes/Wordpress/__schema__/v1.0.0/post/getAll.json +15 -1
  231. package/dist/nodes/Xero/__schema__/v1.0.0/contact/getAll.json +1 -4
  232. package/dist/nodes/Zoho/__schema__/v1.0.0/contact/getAll.json +15 -14
  233. package/dist/nodes/Zoho/__schema__/v1.0.0/lead/getAll.json +10 -32
  234. package/dist/typecheck.tsbuildinfo +1 -1
  235. package/dist/types/nodes.json +10 -9
  236. package/package.json +7 -6
@@ -6,69 +6,7 @@
6
6
  },
7
7
  "name": {
8
8
  "type": "string"
9
- },
10
- "sender": {
11
- "type": "object",
12
- "properties": {
13
- "displayName": {
14
- "type": "string"
15
- },
16
- "domainId": {
17
- "type": "string"
18
- },
19
- "name": {
20
- "type": "string"
21
- },
22
- "type": {
23
- "type": "string"
24
- }
25
- }
26
- },
27
- "space": {
28
- "type": "object",
29
- "properties": {
30
- "lastActiveTime": {
31
- "type": "string"
32
- },
33
- "membershipCount": {
34
- "type": "object",
35
- "properties": {
36
- "joinedDirectHumanUserCount": {
37
- "type": "integer"
38
- }
39
- }
40
- },
41
- "name": {
42
- "type": "string"
43
- },
44
- "singleUserBotDm": {
45
- "type": "boolean"
46
- },
47
- "spaceHistoryState": {
48
- "type": "string"
49
- },
50
- "spaceThreadingState": {
51
- "type": "string"
52
- },
53
- "spaceType": {
54
- "type": "string"
55
- },
56
- "spaceUri": {
57
- "type": "string"
58
- },
59
- "type": {
60
- "type": "string"
61
- }
62
- }
63
- },
64
- "thread": {
65
- "type": "object",
66
- "properties": {
67
- "name": {
68
- "type": "string"
69
- }
70
- }
71
9
  }
72
10
  },
73
- "version": 1
11
+ "version": 2
74
12
  }
@@ -13,6 +13,9 @@
13
13
  "etag": {
14
14
  "type": "string"
15
15
  },
16
+ "eventBasedHold": {
17
+ "type": "boolean"
18
+ },
16
19
  "generation": {
17
20
  "type": "string"
18
21
  },
@@ -43,6 +46,9 @@
43
46
  "storageClass": {
44
47
  "type": "string"
45
48
  },
49
+ "temporaryHold": {
50
+ "type": "boolean"
51
+ },
46
52
  "timeCreated": {
47
53
  "type": "string"
48
54
  },
@@ -56,5 +62,5 @@
56
62
  "type": "string"
57
63
  }
58
64
  },
59
- "version": 1
65
+ "version": 2
60
66
  }
@@ -7,9 +7,29 @@
7
7
  "etag": {
8
8
  "type": "string"
9
9
  },
10
+ "names": {
11
+ "type": "object",
12
+ "properties": {
13
+ "displayName": {
14
+ "type": "string"
15
+ },
16
+ "displayNameLastFirst": {
17
+ "type": "string"
18
+ },
19
+ "familyName": {
20
+ "type": "string"
21
+ },
22
+ "givenName": {
23
+ "type": "string"
24
+ },
25
+ "unstructuredName": {
26
+ "type": "string"
27
+ }
28
+ }
29
+ },
10
30
  "resourceName": {
11
31
  "type": "string"
12
32
  }
13
33
  },
14
- "version": 3
34
+ "version": 4
15
35
  }
@@ -16,6 +16,9 @@
16
16
  "canChangeCopyRequiresWriterPermission": {
17
17
  "type": "boolean"
18
18
  },
19
+ "canChangeItemDownloadRestriction": {
20
+ "type": "boolean"
21
+ },
19
22
  "canChangeSecurityUpdateEnabled": {
20
23
  "type": "boolean"
21
24
  },
@@ -108,6 +111,33 @@
108
111
  "createdTime": {
109
112
  "type": "string"
110
113
  },
114
+ "downloadRestrictions": {
115
+ "type": "object",
116
+ "properties": {
117
+ "effectiveDownloadRestrictionWithContext": {
118
+ "type": "object",
119
+ "properties": {
120
+ "restrictedForReaders": {
121
+ "type": "boolean"
122
+ },
123
+ "restrictedForWriters": {
124
+ "type": "boolean"
125
+ }
126
+ }
127
+ },
128
+ "itemDownloadRestriction": {
129
+ "type": "object",
130
+ "properties": {
131
+ "restrictedForReaders": {
132
+ "type": "boolean"
133
+ },
134
+ "restrictedForWriters": {
135
+ "type": "boolean"
136
+ }
137
+ }
138
+ }
139
+ }
140
+ },
111
141
  "explicitlyTrashed": {
112
142
  "type": "boolean"
113
143
  },
@@ -290,6 +320,9 @@
290
320
  "starred": {
291
321
  "type": "boolean"
292
322
  },
323
+ "thumbnailLink": {
324
+ "type": "string"
325
+ },
293
326
  "thumbnailVersion": {
294
327
  "type": "string"
295
328
  },
@@ -315,5 +348,5 @@
315
348
  "type": "boolean"
316
349
  }
317
350
  },
318
- "version": 3
351
+ "version": 4
319
352
  }
@@ -6,10 +6,7 @@
6
6
  },
7
7
  "_name": {
8
8
  "type": "string"
9
- },
10
- "_updateTime": {
11
- "type": "string"
12
9
  }
13
10
  },
14
- "version": 2
11
+ "version": 3
15
12
  }
@@ -12,10 +12,7 @@
12
12
  },
13
13
  "_updateTime": {
14
14
  "type": "string"
15
- },
16
- "name": {
17
- "type": "string"
18
15
  }
19
16
  },
20
- "version": 2
17
+ "version": 3
21
18
  }
@@ -1,79 +1,18 @@
1
1
  {
2
2
  "type": "object",
3
3
  "properties": {
4
- "agreedToTerms": {
5
- "type": "boolean"
6
- },
7
- "archived": {
8
- "type": "boolean"
9
- },
10
- "changePasswordAtNextLogin": {
11
- "type": "boolean"
12
- },
13
4
  "creationTime": {
14
5
  "type": "string"
15
6
  },
16
- "customerId": {
17
- "type": "string"
18
- },
19
- "emails": {
20
- "type": "array",
21
- "items": {
22
- "type": "object",
23
- "properties": {
24
- "address": {
25
- "type": "string"
26
- },
27
- "primary": {
28
- "type": "boolean"
29
- }
30
- }
31
- }
32
- },
33
- "etag": {
34
- "type": "string"
35
- },
36
7
  "id": {
37
8
  "type": "string"
38
9
  },
39
- "includeInGlobalAddressList": {
40
- "type": "boolean"
41
- },
42
- "ipWhitelisted": {
43
- "type": "boolean"
44
- },
45
10
  "isAdmin": {
46
11
  "type": "boolean"
47
12
  },
48
- "isDelegatedAdmin": {
49
- "type": "boolean"
50
- },
51
- "isEnforcedIn2Sv": {
52
- "type": "boolean"
53
- },
54
- "isEnrolledIn2Sv": {
55
- "type": "boolean"
56
- },
57
- "isMailboxSetup": {
58
- "type": "boolean"
59
- },
60
13
  "kind": {
61
14
  "type": "string"
62
15
  },
63
- "languages": {
64
- "type": "array",
65
- "items": {
66
- "type": "object",
67
- "properties": {
68
- "languageCode": {
69
- "type": "string"
70
- },
71
- "preference": {
72
- "type": "string"
73
- }
74
- }
75
- }
76
- },
77
16
  "lastLoginTime": {
78
17
  "type": "string"
79
18
  },
@@ -91,9 +30,6 @@
91
30
  }
92
31
  }
93
32
  },
94
- "orgUnitPath": {
95
- "type": "string"
96
- },
97
33
  "primaryEmail": {
98
34
  "type": "string"
99
35
  },
@@ -101,5 +37,5 @@
101
37
  "type": "boolean"
102
38
  }
103
39
  },
104
- "version": 1
40
+ "version": 2
105
41
  }
@@ -4,12 +4,6 @@
4
4
  "agreedToTerms": {
5
5
  "type": "boolean"
6
6
  },
7
- "aliases": {
8
- "type": "array",
9
- "items": {
10
- "type": "string"
11
- }
12
- },
13
7
  "archived": {
14
8
  "type": "boolean"
15
9
  },
@@ -32,9 +26,6 @@
32
26
  },
33
27
  "primary": {
34
28
  "type": "boolean"
35
- },
36
- "type": {
37
- "type": "string"
38
29
  }
39
30
  }
40
31
  }
@@ -100,12 +91,6 @@
100
91
  }
101
92
  }
102
93
  },
103
- "nonEditableAliases": {
104
- "type": "array",
105
- "items": {
106
- "type": "string"
107
- }
108
- },
109
94
  "orgUnitPath": {
110
95
  "type": "string"
111
96
  },
@@ -114,13 +99,7 @@
114
99
  },
115
100
  "suspended": {
116
101
  "type": "boolean"
117
- },
118
- "thumbnailPhotoEtag": {
119
- "type": "string"
120
- },
121
- "thumbnailPhotoUrl": {
122
- "type": "string"
123
102
  }
124
103
  },
125
- "version": 1
104
+ "version": 2
126
105
  }
@@ -1,151 +1,55 @@
1
1
  {
2
2
  "type": "object",
3
3
  "properties": {
4
- "date": {
4
+ "From": {
5
5
  "type": "string"
6
6
  },
7
- "from": {
8
- "type": "object",
9
- "properties": {
10
- "html": {
11
- "type": "string"
12
- },
13
- "text": {
14
- "type": "string"
15
- },
16
- "value": {
17
- "type": "array",
18
- "items": {
19
- "type": "object",
20
- "properties": {
21
- "address": {
22
- "type": "string"
23
- },
24
- "name": {
25
- "type": "string"
26
- }
27
- }
7
+ "historyId": {
8
+ "type": "string"
9
+ },
10
+ "id": {
11
+ "type": "string"
12
+ },
13
+ "internalDate": {
14
+ "type": "string"
15
+ },
16
+ "labels": {
17
+ "type": "array",
18
+ "items": {
19
+ "type": "object",
20
+ "properties": {
21
+ "id": {
22
+ "type": "string"
23
+ },
24
+ "name": {
25
+ "type": "string"
28
26
  }
29
27
  }
30
28
  }
31
29
  },
32
- "headers": {
30
+ "payload": {
33
31
  "type": "object",
34
32
  "properties": {
35
- "arc-authentication-results": {
36
- "type": "string"
37
- },
38
- "arc-message-signature": {
39
- "type": "string"
40
- },
41
- "arc-seal": {
42
- "type": "string"
43
- },
44
- "authentication-results": {
45
- "type": "string"
46
- },
47
- "content-type": {
48
- "type": "string"
49
- },
50
- "date": {
51
- "type": "string"
52
- },
53
- "delivered-to": {
54
- "type": "string"
55
- },
56
- "dkim-signature": {
57
- "type": "string"
58
- },
59
- "feedback-id": {
60
- "type": "string"
61
- },
62
- "from": {
63
- "type": "string"
64
- },
65
- "message-id": {
66
- "type": "string"
67
- },
68
- "mime-version": {
69
- "type": "string"
70
- },
71
- "received": {
72
- "type": "string"
73
- },
74
- "received-spf": {
75
- "type": "string"
76
- },
77
- "reply-to": {
78
- "type": "string"
79
- },
80
- "return-path": {
81
- "type": "string"
82
- },
83
- "subject": {
84
- "type": "string"
85
- },
86
- "to": {
87
- "type": "string"
88
- },
89
- "x-google-smtp-source": {
90
- "type": "string"
91
- },
92
- "x-received": {
33
+ "mimeType": {
93
34
  "type": "string"
94
35
  }
95
36
  }
96
37
  },
97
- "id": {
98
- "type": "string"
99
- },
100
- "labelIds": {
101
- "type": "array",
102
- "items": {
103
- "type": "string"
104
- }
105
- },
106
- "messageId": {
107
- "type": "string"
108
- },
109
38
  "sizeEstimate": {
110
39
  "type": "integer"
111
40
  },
112
- "subject": {
113
- "type": "string"
114
- },
115
- "text": {
41
+ "snippet": {
116
42
  "type": "string"
117
43
  },
118
- "textAsHtml": {
44
+ "Subject": {
119
45
  "type": "string"
120
46
  },
121
47
  "threadId": {
122
48
  "type": "string"
123
49
  },
124
- "to": {
125
- "type": "object",
126
- "properties": {
127
- "html": {
128
- "type": "string"
129
- },
130
- "text": {
131
- "type": "string"
132
- },
133
- "value": {
134
- "type": "array",
135
- "items": {
136
- "type": "object",
137
- "properties": {
138
- "address": {
139
- "type": "string"
140
- },
141
- "name": {
142
- "type": "string"
143
- }
144
- }
145
- }
146
- }
147
- }
50
+ "To": {
51
+ "type": "string"
148
52
  }
149
53
  },
150
- "version": 4
54
+ "version": 5
151
55
  }
@@ -1,9 +1,6 @@
1
1
  {
2
2
  "type": "object",
3
3
  "properties": {
4
- "due": {
5
- "type": "string"
6
- },
7
4
  "etag": {
8
5
  "type": "string"
9
6
  },
@@ -30,6 +27,9 @@
30
27
  }
31
28
  }
32
29
  },
30
+ "notes": {
31
+ "type": "string"
32
+ },
33
33
  "position": {
34
34
  "type": "string"
35
35
  },
@@ -49,5 +49,5 @@
49
49
  "type": "string"
50
50
  }
51
51
  },
52
- "version": 3
52
+ "version": 4
53
53
  }
@@ -0,0 +1,36 @@
1
+ {
2
+ "type": "object",
3
+ "properties": {
4
+ "address": {
5
+ "type": "string"
6
+ },
7
+ "appoinmentStatus": {
8
+ "type": "string"
9
+ },
10
+ "assignedUserId": {
11
+ "type": "string"
12
+ },
13
+ "calendarId": {
14
+ "type": "string"
15
+ },
16
+ "contactId": {
17
+ "type": "string"
18
+ },
19
+ "id": {
20
+ "type": "string"
21
+ },
22
+ "isRecurring": {
23
+ "type": "boolean"
24
+ },
25
+ "status": {
26
+ "type": "string"
27
+ },
28
+ "title": {
29
+ "type": "string"
30
+ },
31
+ "traceId": {
32
+ "type": "string"
33
+ }
34
+ },
35
+ "version": 1
36
+ }
@@ -9,12 +9,6 @@
9
9
  },
10
10
  "friendly_name": {
11
11
  "type": "string"
12
- },
13
- "state_class": {
14
- "type": "string"
15
- },
16
- "unit_of_measurement": {
17
- "type": "string"
18
12
  }
19
13
  }
20
14
  },
@@ -42,5 +36,5 @@
42
36
  "type": "string"
43
37
  }
44
38
  },
45
- "version": 1
39
+ "version": 2
46
40
  }
@@ -1 +1 @@
1
- {"version":3,"file":"HttpRequestV1.node.d.ts","sourceRoot":"","sources":["../../../../nodes/HttpRequest/V1/HttpRequestV1.node.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EACX,iBAAiB,EAEjB,kBAAkB,EAClB,SAAS,EACT,wBAAwB,EACxB,oBAAoB,EAIpB,MAAM,cAAc,CAAC;AAuBtB,qBAAa,aAAc,YAAW,SAAS;IAC9C,WAAW,EAAE,oBAAoB,CAAC;gBAEtB,eAAe,EAAE,wBAAwB;IA8jB/C,OAAO,CAAC,IAAI,EAAE,iBAAiB,GAAG,OAAO,CAAC,kBAAkB,EAAE,EAAE,CAAC;CAghBvE"}
1
+ {"version":3,"file":"HttpRequestV1.node.d.ts","sourceRoot":"","sources":["../../../../nodes/HttpRequest/V1/HttpRequestV1.node.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EACX,iBAAiB,EAEjB,kBAAkB,EAClB,SAAS,EACT,wBAAwB,EACxB,oBAAoB,EAKpB,MAAM,cAAc,CAAC;AAwBtB,qBAAa,aAAc,YAAW,SAAS;IAC9C,WAAW,EAAE,oBAAoB,CAAC;gBAEtB,eAAe,EAAE,wBAAwB;IA8jB/C,OAAO,CAAC,IAAI,EAAE,iBAAiB,GAAG,OAAO,CAAC,kBAAkB,EAAE,EAAE,CAAC;CA6jBvE"}
@@ -627,6 +627,37 @@ class HttpRequestV1 {
627
627
  const parametersAreJson = this.getNodeParameter('jsonParameters', itemIndex);
628
628
  const options = this.getNodeParameter('options', itemIndex, {});
629
629
  const url = this.getNodeParameter('url', itemIndex);
630
+ if (!url.startsWith('http://') && !url.startsWith('https://')) {
631
+ throw new n8n_workflow_1.NodeOperationError(this.getNode(), `Invalid URL: ${url}. URL must start with "http" or "https".`);
632
+ }
633
+ const checkDomainRestrictions = async (credentialData, url, credentialType) => {
634
+ if (credentialData.allowedHttpRequestDomains === 'domains') {
635
+ const allowedDomains = credentialData.allowedDomains;
636
+ if (!allowedDomains || allowedDomains.trim() === '') {
637
+ throw new n8n_workflow_1.NodeOperationError(this.getNode(), 'No allowed domains specified. Configure allowed domains or change restriction setting.');
638
+ }
639
+ if (!(0, n8n_workflow_1.isDomainAllowed)(url, { allowedDomains })) {
640
+ const credentialInfo = credentialType ? ` (${credentialType})` : '';
641
+ throw new n8n_workflow_1.NodeOperationError(this.getNode(), `Domain not allowed: This credential${credentialInfo} is restricted from accessing ${url}. ` +
642
+ `Only the following domains are allowed: ${allowedDomains}`);
643
+ }
644
+ }
645
+ else if (credentialData.allowedHttpRequestDomains === 'none') {
646
+ throw new n8n_workflow_1.NodeOperationError(this.getNode(), 'This credential is configured to prevent use within an HTTP Request node');
647
+ }
648
+ };
649
+ if (httpBasicAuth)
650
+ await checkDomainRestrictions(httpBasicAuth, url);
651
+ if (httpDigestAuth)
652
+ await checkDomainRestrictions(httpDigestAuth, url);
653
+ if (httpHeaderAuth)
654
+ await checkDomainRestrictions(httpHeaderAuth, url);
655
+ if (httpQueryAuth)
656
+ await checkDomainRestrictions(httpQueryAuth, url);
657
+ if (oAuth1Api)
658
+ await checkDomainRestrictions(oAuth1Api, url);
659
+ if (oAuth2Api)
660
+ await checkDomainRestrictions(oAuth2Api, url);
630
661
  if (itemIndex > 0 &&
631
662
  options.batchSize >= 0 &&
632
663
  options.batchInterval > 0) {