n8n-nodes-base 1.91.1 → 1.93.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 (330) hide show
  1. package/dist/credentials/Aws.credentials.js +0 -2
  2. package/dist/credentials/Aws.credentials.js.map +1 -1
  3. package/dist/credentials/JinaAiApi.credentials.js +61 -0
  4. package/dist/credentials/JinaAiApi.credentials.js.map +1 -0
  5. package/dist/credentials/MicrosoftAzureCosmosDbSharedKeyApi.credentials.js +1 -1
  6. package/dist/credentials/MicrosoftAzureCosmosDbSharedKeyApi.credentials.js.map +1 -1
  7. package/dist/credentials/MicrosoftSharePointOAuth2Api.credentials.js +0 -9
  8. package/dist/credentials/MicrosoftSharePointOAuth2Api.credentials.js.map +1 -1
  9. package/dist/credentials/MicrosoftTeamsOAuth2Api.credentials.js +13 -0
  10. package/dist/credentials/MicrosoftTeamsOAuth2Api.credentials.js.map +1 -1
  11. package/dist/credentials/Snowflake.credentials.js +46 -2
  12. package/dist/credentials/Snowflake.credentials.js.map +1 -1
  13. package/dist/known/credentials.json +18 -1
  14. package/dist/known/nodes.json +28 -0
  15. package/dist/methods/defined.json +6 -0
  16. package/dist/methods/referenced.json +3 -0
  17. package/dist/nodes/Affinity/__schema__/v1.0.0/listEntry/getAll.json +1 -4
  18. package/dist/nodes/Airtop/__schema__/v1.0.0/extraction/query.json +47 -0
  19. package/dist/nodes/Aws/Cognito/AwsCognito.node.js +102 -0
  20. package/dist/nodes/Aws/Cognito/AwsCognito.node.js.map +1 -0
  21. package/dist/nodes/Aws/Cognito/AwsCognito.node.json +18 -0
  22. package/dist/nodes/Aws/Cognito/cognito.svg +1 -0
  23. package/dist/nodes/Aws/Cognito/descriptions/common.description.js +160 -0
  24. package/dist/nodes/Aws/Cognito/descriptions/common.description.js.map +1 -0
  25. package/dist/nodes/Aws/Cognito/descriptions/group/Group.resource.js +189 -0
  26. package/dist/nodes/Aws/Cognito/descriptions/group/Group.resource.js.map +1 -0
  27. package/dist/nodes/Aws/Cognito/descriptions/group/create.operation.js +126 -0
  28. package/dist/nodes/Aws/Cognito/descriptions/group/create.operation.js.map +1 -0
  29. package/dist/nodes/Aws/Cognito/descriptions/group/delete.operation.js +47 -0
  30. package/dist/nodes/Aws/Cognito/descriptions/group/delete.operation.js.map +1 -0
  31. package/dist/nodes/Aws/Cognito/descriptions/group/get.operation.js +54 -0
  32. package/dist/nodes/Aws/Cognito/descriptions/group/get.operation.js.map +1 -0
  33. package/dist/nodes/Aws/Cognito/descriptions/group/getAll.operation.js +95 -0
  34. package/dist/nodes/Aws/Cognito/descriptions/group/getAll.operation.js.map +1 -0
  35. package/dist/nodes/Aws/Cognito/descriptions/group/update.operation.js +120 -0
  36. package/dist/nodes/Aws/Cognito/descriptions/group/update.operation.js.map +1 -0
  37. package/dist/nodes/Aws/Cognito/descriptions/index.js +45 -0
  38. package/dist/nodes/Aws/Cognito/descriptions/index.js.map +1 -0
  39. package/dist/nodes/Aws/Cognito/descriptions/user/User.resource.js +263 -0
  40. package/dist/nodes/Aws/Cognito/descriptions/user/User.resource.js.map +1 -0
  41. package/dist/nodes/Aws/Cognito/descriptions/user/addToGroup.operation.js +51 -0
  42. package/dist/nodes/Aws/Cognito/descriptions/user/addToGroup.operation.js.map +1 -0
  43. package/dist/nodes/Aws/Cognito/descriptions/user/create.operation.js +299 -0
  44. package/dist/nodes/Aws/Cognito/descriptions/user/create.operation.js.map +1 -0
  45. package/dist/nodes/Aws/Cognito/descriptions/user/delete.operation.js +47 -0
  46. package/dist/nodes/Aws/Cognito/descriptions/user/delete.operation.js.map +1 -0
  47. package/dist/nodes/Aws/Cognito/descriptions/user/get.operation.js +54 -0
  48. package/dist/nodes/Aws/Cognito/descriptions/user/get.operation.js.map +1 -0
  49. package/dist/nodes/Aws/Cognito/descriptions/user/getAll.operation.js +187 -0
  50. package/dist/nodes/Aws/Cognito/descriptions/user/getAll.operation.js.map +1 -0
  51. package/dist/nodes/Aws/Cognito/descriptions/user/removeFromGroup.operation.js +60 -0
  52. package/dist/nodes/Aws/Cognito/descriptions/user/removeFromGroup.operation.js.map +1 -0
  53. package/dist/nodes/Aws/Cognito/descriptions/user/update.operation.js +189 -0
  54. package/dist/nodes/Aws/Cognito/descriptions/user/update.operation.js.map +1 -0
  55. package/dist/nodes/Aws/Cognito/descriptions/userPool/UserPool.resource.js +81 -0
  56. package/dist/nodes/Aws/Cognito/descriptions/userPool/UserPool.resource.js.map +1 -0
  57. package/dist/nodes/Aws/Cognito/descriptions/userPool/get.operation.js +50 -0
  58. package/dist/nodes/Aws/Cognito/descriptions/userPool/get.operation.js.map +1 -0
  59. package/dist/nodes/Aws/Cognito/helpers/constants.js +91 -0
  60. package/dist/nodes/Aws/Cognito/helpers/constants.js.map +1 -0
  61. package/dist/nodes/Aws/Cognito/helpers/errorHandler.js +109 -0
  62. package/dist/nodes/Aws/Cognito/helpers/errorHandler.js.map +1 -0
  63. package/dist/nodes/Aws/Cognito/helpers/interfaces.js +17 -0
  64. package/dist/nodes/Aws/Cognito/helpers/interfaces.js.map +1 -0
  65. package/dist/nodes/Aws/Cognito/helpers/utils.js +318 -0
  66. package/dist/nodes/Aws/Cognito/helpers/utils.js.map +1 -0
  67. package/dist/nodes/Aws/Cognito/methods/index.js +39 -0
  68. package/dist/nodes/Aws/Cognito/methods/index.js.map +1 -0
  69. package/dist/nodes/Aws/Cognito/methods/listSearch.js +157 -0
  70. package/dist/nodes/Aws/Cognito/methods/listSearch.js.map +1 -0
  71. package/dist/nodes/Aws/Cognito/transport/index.js +72 -0
  72. package/dist/nodes/Aws/Cognito/transport/index.js.map +1 -0
  73. package/dist/nodes/Aws/IAM/AwsIam.node.js +95 -0
  74. package/dist/nodes/Aws/IAM/AwsIam.node.js.map +1 -0
  75. package/dist/nodes/Aws/IAM/AwsIam.node.json +18 -0
  76. package/dist/nodes/Aws/IAM/AwsIam.svg +18 -0
  77. package/dist/nodes/Aws/IAM/descriptions/common.js +188 -0
  78. package/dist/nodes/Aws/IAM/descriptions/common.js.map +1 -0
  79. package/dist/nodes/Aws/IAM/descriptions/group/Group.resource.js +175 -0
  80. package/dist/nodes/Aws/IAM/descriptions/group/Group.resource.js.map +1 -0
  81. package/dist/nodes/Aws/IAM/descriptions/group/create.operation.js +66 -0
  82. package/dist/nodes/Aws/IAM/descriptions/group/create.operation.js.map +1 -0
  83. package/dist/nodes/Aws/IAM/descriptions/group/delete.operation.js +43 -0
  84. package/dist/nodes/Aws/IAM/descriptions/group/delete.operation.js.map +1 -0
  85. package/dist/nodes/Aws/IAM/descriptions/group/get.operation.js +50 -0
  86. package/dist/nodes/Aws/IAM/descriptions/group/get.operation.js.map +1 -0
  87. package/dist/nodes/Aws/IAM/descriptions/group/getAll.operation.js +47 -0
  88. package/dist/nodes/Aws/IAM/descriptions/group/getAll.operation.js.map +1 -0
  89. package/dist/nodes/Aws/IAM/descriptions/group/update.operation.js +70 -0
  90. package/dist/nodes/Aws/IAM/descriptions/group/update.operation.js.map +1 -0
  91. package/dist/nodes/Aws/IAM/descriptions/index.js +42 -0
  92. package/dist/nodes/Aws/IAM/descriptions/index.js.map +1 -0
  93. package/dist/nodes/Aws/IAM/descriptions/user/User.resource.js +231 -0
  94. package/dist/nodes/Aws/IAM/descriptions/user/User.resource.js.map +1 -0
  95. package/dist/nodes/Aws/IAM/descriptions/user/addToGroup.operation.js +47 -0
  96. package/dist/nodes/Aws/IAM/descriptions/user/addToGroup.operation.js.map +1 -0
  97. package/dist/nodes/Aws/IAM/descriptions/user/create.operation.js +118 -0
  98. package/dist/nodes/Aws/IAM/descriptions/user/create.operation.js.map +1 -0
  99. package/dist/nodes/Aws/IAM/descriptions/user/delete.operation.js +43 -0
  100. package/dist/nodes/Aws/IAM/descriptions/user/delete.operation.js.map +1 -0
  101. package/dist/nodes/Aws/IAM/descriptions/user/get.operation.js +43 -0
  102. package/dist/nodes/Aws/IAM/descriptions/user/get.operation.js.map +1 -0
  103. package/dist/nodes/Aws/IAM/descriptions/user/getAll.operation.js +66 -0
  104. package/dist/nodes/Aws/IAM/descriptions/user/getAll.operation.js.map +1 -0
  105. package/dist/nodes/Aws/IAM/descriptions/user/removeFromGroup.operation.js +74 -0
  106. package/dist/nodes/Aws/IAM/descriptions/user/removeFromGroup.operation.js.map +1 -0
  107. package/dist/nodes/Aws/IAM/descriptions/user/update.operation.js +68 -0
  108. package/dist/nodes/Aws/IAM/descriptions/user/update.operation.js.map +1 -0
  109. package/dist/nodes/Aws/IAM/helpers/constants.js +47 -0
  110. package/dist/nodes/Aws/IAM/helpers/constants.js.map +1 -0
  111. package/dist/nodes/Aws/IAM/helpers/errorHandler.js +90 -0
  112. package/dist/nodes/Aws/IAM/helpers/errorHandler.js.map +1 -0
  113. package/dist/nodes/Aws/IAM/helpers/types.js +17 -0
  114. package/dist/nodes/Aws/IAM/helpers/types.js.map +1 -0
  115. package/dist/nodes/Aws/IAM/helpers/utils.js +279 -0
  116. package/dist/nodes/Aws/IAM/helpers/utils.js.map +1 -0
  117. package/dist/nodes/Aws/IAM/methods/index.js +39 -0
  118. package/dist/nodes/Aws/IAM/methods/index.js.map +1 -0
  119. package/dist/nodes/Aws/IAM/methods/listSearch.js +132 -0
  120. package/dist/nodes/Aws/IAM/methods/listSearch.js.map +1 -0
  121. package/dist/nodes/Aws/IAM/transport/index.js +64 -0
  122. package/dist/nodes/Aws/IAM/transport/index.js.map +1 -0
  123. package/dist/nodes/Aws/S3/__schema__/v2.0.0/file/getAll.json +1 -7
  124. package/dist/nodes/BambooHr/__schema__/v1.0.0/employee/get.json +10 -1
  125. package/dist/nodes/Cron/Cron.node.js +1 -1
  126. package/dist/nodes/Cron/Cron.node.js.map +1 -1
  127. package/dist/nodes/Dropcontact/__schema__/v1.0.0/contact/enrich.json +7 -15
  128. package/dist/nodes/EmailReadImap/v1/EmailReadImapV1.node.js +2 -2
  129. package/dist/nodes/EmailReadImap/v1/EmailReadImapV1.node.js.map +1 -1
  130. package/dist/nodes/EmailReadImap/v2/EmailReadImapV2.node.js +2 -2
  131. package/dist/nodes/EmailReadImap/v2/EmailReadImapV2.node.js.map +1 -1
  132. package/dist/nodes/EmailSend/__schema__/v2.1.0/email/send.json +7 -1
  133. package/dist/nodes/Evaluation/Evaluation/Description.node.js +146 -0
  134. package/dist/nodes/Evaluation/Evaluation/Description.node.js.map +1 -0
  135. package/dist/nodes/Evaluation/Evaluation/Evaluation.node.ee.js +117 -0
  136. package/dist/nodes/Evaluation/Evaluation/Evaluation.node.ee.js.map +1 -0
  137. package/dist/nodes/Evaluation/EvaluationTrigger/EvaluationTrigger.node.ee.js +187 -0
  138. package/dist/nodes/Evaluation/EvaluationTrigger/EvaluationTrigger.node.ee.js.map +1 -0
  139. package/dist/nodes/Evaluation/methods/index.js +42 -0
  140. package/dist/nodes/Evaluation/methods/index.js.map +1 -0
  141. package/dist/nodes/Evaluation/methods/loadOptions.js +40 -0
  142. package/dist/nodes/Evaluation/methods/loadOptions.js.map +1 -0
  143. package/dist/nodes/Evaluation/utils/evaluationTriggerUtils.js +119 -0
  144. package/dist/nodes/Evaluation/utils/evaluationTriggerUtils.js.map +1 -0
  145. package/dist/nodes/Evaluation/utils/evaluationUtils.js +171 -0
  146. package/dist/nodes/Evaluation/utils/evaluationUtils.js.map +1 -0
  147. package/dist/nodes/ExecuteWorkflow/ExecuteWorkflowTrigger/ExecuteWorkflowTrigger.node.js +4 -3
  148. package/dist/nodes/ExecuteWorkflow/ExecuteWorkflowTrigger/ExecuteWorkflowTrigger.node.js.map +1 -1
  149. package/dist/nodes/Form/common.descriptions.js +2 -2
  150. package/dist/nodes/Form/common.descriptions.js.map +1 -1
  151. package/dist/nodes/Github/__schema__/v1.1.0/file/list.json +44 -0
  152. package/dist/nodes/Gitlab/__schema__/v1.0.0/file/get.json +1 -4
  153. package/dist/nodes/Google/BusinessProfile/__schema__/v1.0.0/review/getAll.json +1 -12
  154. package/dist/nodes/Google/Calendar/__schema__/v1.3.0/event/getAll.json +4 -7
  155. package/dist/nodes/Google/Contacts/__schema__/v1.0.0/contact/getAll.json +1 -12
  156. package/dist/nodes/Google/Drive/__schema__/v3.0.0/file/download.json +9 -0
  157. package/dist/nodes/Google/Firebase/CloudFirestore/__schema__/v1.1.0/document/query.json +7 -1
  158. package/dist/nodes/Google/Gmail/__schema__/v2.1.0/message/addLabels.json +1 -13
  159. package/dist/nodes/Google/Gmail/__schema__/v2.1.0/message/get.json +7 -1
  160. package/dist/nodes/Google/Gmail/__schema__/v2.1.0/message/getAll.json +29 -113
  161. package/dist/nodes/Google/Gmail/__schema__/v2.1.0/thread/get.json +1 -60
  162. package/dist/nodes/Google/Sheet/GoogleSheets.node.js +3 -2
  163. package/dist/nodes/Google/Sheet/GoogleSheets.node.js.map +1 -1
  164. package/dist/nodes/Google/Sheet/GoogleSheetsTrigger.node.js +113 -107
  165. package/dist/nodes/Google/Sheet/GoogleSheetsTrigger.node.js.map +1 -1
  166. package/dist/nodes/Google/Sheet/v2/actions/sheet/read.operation.js +52 -105
  167. package/dist/nodes/Google/Sheet/v2/actions/sheet/read.operation.js.map +1 -1
  168. package/dist/nodes/Google/Sheet/v2/actions/utils/readOperation.js +97 -0
  169. package/dist/nodes/Google/Sheet/v2/actions/utils/readOperation.js.map +1 -0
  170. package/dist/nodes/Google/Sheet/v2/actions/versionDescription.js +21 -18
  171. package/dist/nodes/Google/Sheet/v2/actions/versionDescription.js.map +1 -1
  172. package/dist/nodes/Google/Sheet/v2/helpers/GoogleSheet.js +4 -0
  173. package/dist/nodes/Google/Sheet/v2/helpers/GoogleSheet.js.map +1 -1
  174. package/dist/nodes/Google/Task/__schema__/v1.0.0/task/getAll.json +1 -4
  175. package/dist/nodes/Google/YouTube/YouTube.node.js +4 -2
  176. package/dist/nodes/Google/YouTube/YouTube.node.js.map +1 -1
  177. package/dist/nodes/Google/YouTube/__schema__/v1.0.0/video/get.json +35 -1
  178. package/dist/nodes/Hubspot/__schema__/v2.1.0/company/getAll.json +4 -1
  179. package/dist/nodes/Hubspot/__schema__/v2.1.0/contact/search.json +1 -4
  180. package/dist/nodes/Hubspot/__schema__/v2.1.0/deal/getAll.json +45 -11
  181. package/dist/nodes/Hubspot/__schema__/v2.1.0/deal/search.json +2 -5
  182. package/dist/nodes/Hubspot/__schema__/v2.1.0/ticket/get.json +4 -4
  183. package/dist/nodes/Interval/Interval.node.js +1 -1
  184. package/dist/nodes/Interval/Interval.node.js.map +1 -1
  185. package/dist/nodes/ItemLists/__schema__/v3.0.0/itemList/limit.json +4 -1
  186. package/dist/nodes/JinaAI/JinaAi.node.js +486 -0
  187. package/dist/nodes/JinaAI/JinaAi.node.js.map +1 -0
  188. package/dist/nodes/JinaAI/JinaAi.node.json +18 -0
  189. package/dist/nodes/JinaAI/jinaAi.dark.svg +6 -0
  190. package/dist/nodes/JinaAI/jinaAi.svg +6 -0
  191. package/dist/nodes/Jira/__schema__/v1.0.0/issue/get.json +259 -1
  192. package/dist/nodes/Jira/__schema__/v1.0.0/issue/getAll.json +57 -37
  193. package/dist/nodes/Linear/__schema__/v1.0.0/issue/getAll.json +1 -12
  194. package/dist/nodes/LocalFileTrigger/LocalFileTrigger.node.js +2 -2
  195. package/dist/nodes/LocalFileTrigger/LocalFileTrigger.node.js.map +1 -1
  196. package/dist/nodes/MQTT/MqttTrigger.node.js +2 -2
  197. package/dist/nodes/MQTT/MqttTrigger.node.js.map +1 -1
  198. package/dist/nodes/ManualTrigger/ManualTrigger.node.js +1 -1
  199. package/dist/nodes/ManualTrigger/ManualTrigger.node.js.map +1 -1
  200. package/dist/nodes/Microsoft/AzureCosmosDb/AzureCosmosDb.node.json +2 -2
  201. package/dist/nodes/Microsoft/Entra/MicrosoftEntra.node.js +2 -2
  202. package/dist/nodes/Microsoft/Entra/MicrosoftEntra.node.js.map +1 -1
  203. package/dist/nodes/Microsoft/Entra/__schema__/v1.0.0/user/getAll.json +1 -7
  204. package/dist/nodes/Microsoft/Outlook/__schema__/v2.0.0/event/getAll.json +4 -1
  205. package/dist/nodes/Microsoft/Outlook/__schema__/v2.0.0/folderMessage/getAll.json +8 -47
  206. package/dist/nodes/Microsoft/Outlook/__schema__/v2.0.0/message/get.json +124 -1
  207. package/dist/nodes/Microsoft/Outlook/__schema__/v2.0.0/message/getAll.json +40 -20
  208. package/dist/nodes/Microsoft/Outlook/__schema__/v2.0.0/message/sendAndWait.json +12 -11
  209. package/dist/nodes/Microsoft/Outlook/__schema__/v2.0.0/messageAttachment/get.json +13 -1
  210. package/dist/nodes/Microsoft/SharePoint/MicrosoftSharePoint.node.js +93 -0
  211. package/dist/nodes/Microsoft/SharePoint/MicrosoftSharePoint.node.js.map +1 -0
  212. package/dist/nodes/Microsoft/SharePoint/MicrosoftSharepoint.node.json +18 -0
  213. package/dist/nodes/Microsoft/SharePoint/descriptions/common.descriptions.js +190 -0
  214. package/dist/nodes/Microsoft/SharePoint/descriptions/common.descriptions.js.map +1 -0
  215. package/dist/nodes/Microsoft/SharePoint/descriptions/file/File.resource.js +108 -0
  216. package/dist/nodes/Microsoft/SharePoint/descriptions/file/File.resource.js.map +1 -0
  217. package/dist/nodes/Microsoft/SharePoint/descriptions/file/download.operation.js +62 -0
  218. package/dist/nodes/Microsoft/SharePoint/descriptions/file/download.operation.js.map +1 -0
  219. package/dist/nodes/Microsoft/SharePoint/descriptions/file/update.operation.js +129 -0
  220. package/dist/nodes/Microsoft/SharePoint/descriptions/file/update.operation.js.map +1 -0
  221. package/dist/nodes/Microsoft/SharePoint/descriptions/file/upload.operation.js +77 -0
  222. package/dist/nodes/Microsoft/SharePoint/descriptions/file/upload.operation.js.map +1 -0
  223. package/dist/nodes/Microsoft/SharePoint/descriptions/index.js +45 -0
  224. package/dist/nodes/Microsoft/SharePoint/descriptions/index.js.map +1 -0
  225. package/dist/nodes/Microsoft/SharePoint/descriptions/item/Item.resource.js +175 -0
  226. package/dist/nodes/Microsoft/SharePoint/descriptions/item/Item.resource.js.map +1 -0
  227. package/dist/nodes/Microsoft/SharePoint/descriptions/item/create.operation.js +100 -0
  228. package/dist/nodes/Microsoft/SharePoint/descriptions/item/create.operation.js.map +1 -0
  229. package/dist/nodes/Microsoft/SharePoint/descriptions/item/delete.operation.js +62 -0
  230. package/dist/nodes/Microsoft/SharePoint/descriptions/item/delete.operation.js.map +1 -0
  231. package/dist/nodes/Microsoft/SharePoint/descriptions/item/get.operation.js +83 -0
  232. package/dist/nodes/Microsoft/SharePoint/descriptions/item/get.operation.js.map +1 -0
  233. package/dist/nodes/Microsoft/SharePoint/descriptions/item/getAll.operation.js +203 -0
  234. package/dist/nodes/Microsoft/SharePoint/descriptions/item/getAll.operation.js.map +1 -0
  235. package/dist/nodes/Microsoft/SharePoint/descriptions/item/update.operation.js +100 -0
  236. package/dist/nodes/Microsoft/SharePoint/descriptions/item/update.operation.js.map +1 -0
  237. package/dist/nodes/Microsoft/SharePoint/descriptions/item/upsert.operation.js +100 -0
  238. package/dist/nodes/Microsoft/SharePoint/descriptions/item/upsert.operation.js.map +1 -0
  239. package/dist/nodes/Microsoft/SharePoint/descriptions/list/List.resource.js +99 -0
  240. package/dist/nodes/Microsoft/SharePoint/descriptions/list/List.resource.js.map +1 -0
  241. package/dist/nodes/Microsoft/SharePoint/descriptions/list/get.operation.js +65 -0
  242. package/dist/nodes/Microsoft/SharePoint/descriptions/list/get.operation.js.map +1 -0
  243. package/dist/nodes/Microsoft/SharePoint/descriptions/list/getAll.operation.js +105 -0
  244. package/dist/nodes/Microsoft/SharePoint/descriptions/list/getAll.operation.js.map +1 -0
  245. package/dist/nodes/Microsoft/SharePoint/helpers/interfaces.js +17 -0
  246. package/dist/nodes/Microsoft/SharePoint/helpers/interfaces.js.map +1 -0
  247. package/dist/nodes/Microsoft/SharePoint/helpers/utils.js +252 -0
  248. package/dist/nodes/Microsoft/SharePoint/helpers/utils.js.map +1 -0
  249. package/dist/nodes/Microsoft/SharePoint/methods/index.js +42 -0
  250. package/dist/nodes/Microsoft/SharePoint/methods/index.js.map +1 -0
  251. package/dist/nodes/Microsoft/SharePoint/methods/listSearch.js +222 -0
  252. package/dist/nodes/Microsoft/SharePoint/methods/listSearch.js.map +1 -0
  253. package/dist/nodes/Microsoft/SharePoint/methods/resourceMapping.js +104 -0
  254. package/dist/nodes/Microsoft/SharePoint/methods/resourceMapping.js.map +1 -0
  255. package/dist/nodes/Microsoft/SharePoint/test/credentials.js +54 -0
  256. package/dist/nodes/Microsoft/SharePoint/test/credentials.js.map +1 -0
  257. package/dist/nodes/Microsoft/SharePoint/transport/index.js +46 -0
  258. package/dist/nodes/Microsoft/SharePoint/transport/index.js.map +1 -0
  259. package/dist/nodes/Microsoft/Storage/__schema__/v1.0.0/blob/getAll.json +44 -0
  260. package/dist/nodes/Microsoft/Teams/MicrosoftTeamsTrigger.node.js +387 -0
  261. package/dist/nodes/Microsoft/Teams/MicrosoftTeamsTrigger.node.js.map +1 -0
  262. package/dist/nodes/Microsoft/Teams/MicrosoftTeamsTrigger.node.json +18 -0
  263. package/dist/nodes/Microsoft/Teams/__schema__/v2.0.0/channel/getAll.json +1 -4
  264. package/dist/nodes/Microsoft/Teams/v2/helpers/types.js +17 -0
  265. package/dist/nodes/Microsoft/Teams/v2/helpers/types.js.map +1 -0
  266. package/dist/nodes/Microsoft/Teams/v2/helpers/utils-trigger.js +147 -0
  267. package/dist/nodes/Microsoft/Teams/v2/helpers/utils-trigger.js.map +1 -0
  268. package/dist/nodes/Microsoft/Teams/v2/transport/index.js.map +1 -1
  269. package/dist/nodes/Microsoft/ToDo/__schema__/v1.0.0/task/getAll.json +21 -5
  270. package/dist/nodes/Notion/__schema__/v2.2.0/database/get.json +149 -2
  271. package/dist/nodes/Odoo/__schema__/v1.0.0/contact/getAll.json +10 -1
  272. package/dist/nodes/Odoo/__schema__/v1.0.0/custom/getAll.json +1 -4
  273. package/dist/nodes/Odoo/__schema__/v1.0.0/opportunity/getAll.json +49 -1
  274. package/dist/nodes/OpenAi/__schema__/v1.1.0/chat/complete.json +1 -29
  275. package/dist/nodes/Pipedrive/__schema__/v1.0.0/organization/search.json +20 -25
  276. package/dist/nodes/Pipedrive/__schema__/v1.0.0/person/search.json +1 -18
  277. package/dist/nodes/Plivo/__schema__/v1.0.0/call/make.json +15 -0
  278. package/dist/nodes/PostBin/BinDescription.js +1 -1
  279. package/dist/nodes/PostBin/BinDescription.js.map +1 -1
  280. package/dist/nodes/PostBin/GenericFunctions.js +5 -5
  281. package/dist/nodes/PostBin/GenericFunctions.js.map +1 -1
  282. package/dist/nodes/PostBin/PostBin.node.js +1 -1
  283. package/dist/nodes/PostBin/PostBin.node.js.map +1 -1
  284. package/dist/nodes/PostBin/RequestDescription.js +2 -2
  285. package/dist/nodes/PostBin/RequestDescription.js.map +1 -1
  286. package/dist/nodes/Postgres/PostgresTrigger.node.js +2 -2
  287. package/dist/nodes/Postgres/PostgresTrigger.node.js.map +1 -1
  288. package/dist/nodes/QuickBooks/__schema__/v1.0.0/transaction/getReport.json +1 -4
  289. package/dist/nodes/RabbitMQ/RabbitMQTrigger.node.js +2 -2
  290. package/dist/nodes/RabbitMQ/RabbitMQTrigger.node.js.map +1 -1
  291. package/dist/nodes/RespondToWebhook/RespondToWebhook.node.js +8 -3
  292. package/dist/nodes/RespondToWebhook/RespondToWebhook.node.js.map +1 -1
  293. package/dist/nodes/RespondToWebhook/utils.js +43 -0
  294. package/dist/nodes/RespondToWebhook/utils.js.map +1 -0
  295. package/dist/nodes/Salesforce/__schema__/v1.0.0/customObject/getAll.json +2 -2
  296. package/dist/nodes/Salesforce/__schema__/v1.0.0/opportunity/getAll.json +5 -2
  297. package/dist/nodes/Salesforce/__schema__/v1.0.0/task/getAll.json +4 -1
  298. package/dist/nodes/Schedule/ScheduleTrigger.node.js +1 -1
  299. package/dist/nodes/Schedule/ScheduleTrigger.node.js.map +1 -1
  300. package/dist/nodes/SeaTable/__schema__/v2.0.0/row/list.json +30 -0
  301. package/dist/nodes/ServiceNow/__schema__/v1.0.0/tableRecord/getAll.json +1 -4
  302. package/dist/nodes/Slack/__schema__/v2.3.0/channel/history.json +49 -3
  303. package/dist/nodes/Slack/__schema__/v2.3.0/message/post.json +4 -1
  304. package/dist/nodes/Snowflake/GenericFunctions.js +34 -2
  305. package/dist/nodes/Snowflake/GenericFunctions.js.map +1 -1
  306. package/dist/nodes/Snowflake/Snowflake.node.js +5 -7
  307. package/dist/nodes/Snowflake/Snowflake.node.js.map +1 -1
  308. package/dist/nodes/SseTrigger/SseTrigger.node.js +2 -2
  309. package/dist/nodes/SseTrigger/SseTrigger.node.js.map +1 -1
  310. package/dist/nodes/Ssh/__schema__/v1.0.0/command/execute.json +4 -1
  311. package/dist/nodes/Strapi/__schema__/v1.0.0/entry/get.json +32 -0
  312. package/dist/nodes/Strapi/__schema__/v1.0.0/entry/getAll.json +1 -4
  313. package/dist/nodes/Telegram/__schema__/v1.2.0/chat/get.json +27 -1
  314. package/dist/nodes/Telegram/__schema__/v1.2.0/chat/member.json +7 -1
  315. package/dist/nodes/Telegram/__schema__/v1.2.0/message/sendMessage.json +1 -4
  316. package/dist/nodes/Telegram/__schema__/v1.2.0/message/sendPhoto.json +4 -1
  317. package/dist/nodes/Trello/__schema__/v1.0.0/list/getAll.json +7 -1
  318. package/dist/nodes/Trello/__schema__/v1.0.0/list/getCards.json +13 -1
  319. package/dist/nodes/Wordpress/PageDescription.js +0 -17
  320. package/dist/nodes/Wordpress/PageDescription.js.map +1 -1
  321. package/dist/nodes/Wordpress/__schema__/v1.0.0/post/get.json +7 -1
  322. package/dist/nodes/Zoho/__schema__/v1.0.0/contact/getAll.json +15 -16
  323. package/dist/nodes/Zoho/__schema__/v1.0.0/lead/getAll.json +1 -122
  324. package/dist/nodes/Zoom/__schema__/v1.0.0/meeting/getAll.json +1 -4
  325. package/dist/types/credentials.json +8 -7
  326. package/dist/types/nodes.json +29 -22
  327. package/dist/utils/workflowInputsResourceMapping/GenericFunctions.js +12 -2
  328. package/dist/utils/workflowInputsResourceMapping/GenericFunctions.js.map +1 -1
  329. package/package.json +16 -9
  330. /package/dist/{credentials/icons/SharePoint.svg → nodes/Microsoft/SharePoint/microsoftSharePoint.svg} +0 -0
@@ -0,0 +1,44 @@
1
+ {
2
+ "type": "object",
3
+ "properties": {
4
+ "_links": {
5
+ "type": "object",
6
+ "properties": {
7
+ "git": {
8
+ "type": "string"
9
+ },
10
+ "html": {
11
+ "type": "string"
12
+ },
13
+ "self": {
14
+ "type": "string"
15
+ }
16
+ }
17
+ },
18
+ "git_url": {
19
+ "type": "string"
20
+ },
21
+ "html_url": {
22
+ "type": "string"
23
+ },
24
+ "name": {
25
+ "type": "string"
26
+ },
27
+ "path": {
28
+ "type": "string"
29
+ },
30
+ "sha": {
31
+ "type": "string"
32
+ },
33
+ "size": {
34
+ "type": "integer"
35
+ },
36
+ "type": {
37
+ "type": "string"
38
+ },
39
+ "url": {
40
+ "type": "string"
41
+ }
42
+ },
43
+ "version": 1
44
+ }
@@ -19,9 +19,6 @@
19
19
  "execute_filemode": {
20
20
  "type": "boolean"
21
21
  },
22
- "file_name": {
23
- "type": "string"
24
- },
25
22
  "file_path": {
26
23
  "type": "string"
27
24
  },
@@ -35,5 +32,5 @@
35
32
  "type": "integer"
36
33
  }
37
34
  },
38
- "version": 1
35
+ "version": 2
39
36
  }
@@ -24,17 +24,6 @@
24
24
  "reviewId": {
25
25
  "type": "string"
26
26
  },
27
- "reviewReply": {
28
- "type": "object",
29
- "properties": {
30
- "comment": {
31
- "type": "string"
32
- },
33
- "updateTime": {
34
- "type": "string"
35
- }
36
- }
37
- },
38
27
  "starRating": {
39
28
  "type": "string"
40
29
  },
@@ -42,5 +31,5 @@
42
31
  "type": "string"
43
32
  }
44
33
  },
45
- "version": 1
34
+ "version": 2
46
35
  }
@@ -15,9 +15,6 @@
15
15
  }
16
16
  }
17
17
  },
18
- "description": {
19
- "type": "string"
20
- },
21
18
  "end": {
22
19
  "type": "object",
23
20
  "properties": {
@@ -47,12 +44,12 @@
47
44
  "kind": {
48
45
  "type": "string"
49
46
  },
50
- "location": {
51
- "type": "string"
52
- },
53
47
  "organizer": {
54
48
  "type": "object",
55
49
  "properties": {
50
+ "displayName": {
51
+ "type": "string"
52
+ },
56
53
  "email": {
57
54
  "type": "string"
58
55
  },
@@ -93,5 +90,5 @@
93
90
  "type": "string"
94
91
  }
95
92
  },
96
- "version": 2
93
+ "version": 3
97
94
  }
@@ -27,20 +27,9 @@
27
27
  }
28
28
  }
29
29
  },
30
- "phoneNumbers": {
31
- "type": "object",
32
- "properties": {
33
- "mobile": {
34
- "type": "array",
35
- "items": {
36
- "type": "string"
37
- }
38
- }
39
- }
40
- },
41
30
  "resourceName": {
42
31
  "type": "string"
43
32
  }
44
33
  },
45
- "version": 1
34
+ "version": 2
46
35
  }
@@ -0,0 +1,9 @@
1
+ {
2
+ "type": "object",
3
+ "properties": {
4
+ "name": {
5
+ "type": "string"
6
+ }
7
+ },
8
+ "version": 1
9
+ }
@@ -12,7 +12,13 @@
12
12
  },
13
13
  "_updateTime": {
14
14
  "type": "string"
15
+ },
16
+ "chat_id": {
17
+ "type": "string"
18
+ },
19
+ "lastInteraction": {
20
+ "type": "string"
15
21
  }
16
22
  },
17
- "version": 1
23
+ "version": 2
18
24
  }
@@ -1,30 +1,18 @@
1
1
  {
2
2
  "type": "object",
3
3
  "properties": {
4
- "historyId": {
5
- "type": "string"
6
- },
7
4
  "id": {
8
5
  "type": "string"
9
6
  },
10
- "internalDate": {
11
- "type": "string"
12
- },
13
7
  "labelIds": {
14
8
  "type": "array",
15
9
  "items": {
16
10
  "type": "string"
17
11
  }
18
12
  },
19
- "sizeEstimate": {
20
- "type": "integer"
21
- },
22
- "snippet": {
23
- "type": "string"
24
- },
25
13
  "threadId": {
26
14
  "type": "string"
27
15
  }
28
16
  },
29
- "version": 1
17
+ "version": 2
30
18
  }
@@ -80,6 +80,12 @@
80
80
  "to": {
81
81
  "type": "string"
82
82
  },
83
+ "x-gm-message-state": {
84
+ "type": "string"
85
+ },
86
+ "x-google-dkim-signature": {
87
+ "type": "string"
88
+ },
83
89
  "x-google-smtp-source": {
84
90
  "type": "string"
85
91
  },
@@ -141,5 +147,5 @@
141
147
  }
142
148
  }
143
149
  },
144
- "version": 2
150
+ "version": 3
145
151
  }
@@ -1,139 +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
- "from": {
60
- "type": "string"
61
- },
62
- "message-id": {
63
- "type": "string"
64
- },
65
- "mime-version": {
66
- "type": "string"
67
- },
68
- "received": {
69
- "type": "string"
70
- },
71
- "received-spf": {
72
- "type": "string"
73
- },
74
- "return-path": {
75
- "type": "string"
76
- },
77
- "subject": {
78
- "type": "string"
79
- },
80
- "to": {
81
- "type": "string"
82
- },
83
- "x-google-smtp-source": {
84
- "type": "string"
85
- },
86
- "x-received": {
33
+ "mimeType": {
87
34
  "type": "string"
88
35
  }
89
36
  }
90
37
  },
91
- "id": {
92
- "type": "string"
93
- },
94
- "labelIds": {
95
- "type": "array",
96
- "items": {
97
- "type": "string"
98
- }
99
- },
100
- "messageId": {
101
- "type": "string"
102
- },
103
38
  "sizeEstimate": {
104
39
  "type": "integer"
105
40
  },
106
- "subject": {
41
+ "snippet": {
42
+ "type": "string"
43
+ },
44
+ "Subject": {
107
45
  "type": "string"
108
46
  },
109
47
  "threadId": {
110
48
  "type": "string"
111
49
  },
112
- "to": {
113
- "type": "object",
114
- "properties": {
115
- "html": {
116
- "type": "string"
117
- },
118
- "text": {
119
- "type": "string"
120
- },
121
- "value": {
122
- "type": "array",
123
- "items": {
124
- "type": "object",
125
- "properties": {
126
- "address": {
127
- "type": "string"
128
- },
129
- "name": {
130
- "type": "string"
131
- }
132
- }
133
- }
134
- }
135
- }
50
+ "To": {
51
+ "type": "string"
136
52
  }
137
53
  },
138
- "version": 2
54
+ "version": 3
139
55
  }
@@ -12,27 +12,6 @@
12
12
  "items": {
13
13
  "type": "object",
14
14
  "properties": {
15
- "ARC-Authentication-Results": {
16
- "type": "string"
17
- },
18
- "ARC-Message-Signature": {
19
- "type": "string"
20
- },
21
- "ARC-Seal": {
22
- "type": "string"
23
- },
24
- "Authentication-Results": {
25
- "type": "string"
26
- },
27
- "Content-Type": {
28
- "type": "string"
29
- },
30
- "Date": {
31
- "type": "string"
32
- },
33
- "Delivered-To": {
34
- "type": "string"
35
- },
36
15
  "From": {
37
16
  "type": "string"
38
17
  },
@@ -59,46 +38,14 @@
59
38
  }
60
39
  }
61
40
  },
62
- "Message-ID": {
63
- "type": "string"
64
- },
65
- "MIME-Version": {
66
- "type": "string"
67
- },
68
41
  "payload": {
69
42
  "type": "object",
70
43
  "properties": {
71
- "body": {
72
- "type": "object",
73
- "properties": {
74
- "data": {
75
- "type": "string"
76
- },
77
- "size": {
78
- "type": "integer"
79
- }
80
- }
81
- },
82
- "filename": {
83
- "type": "string"
84
- },
85
44
  "mimeType": {
86
45
  "type": "string"
87
- },
88
- "partId": {
89
- "type": "string"
90
46
  }
91
47
  }
92
48
  },
93
- "Received": {
94
- "type": "string"
95
- },
96
- "Received-SPF": {
97
- "type": "string"
98
- },
99
- "Return-Path": {
100
- "type": "string"
101
- },
102
49
  "sizeEstimate": {
103
50
  "type": "integer"
104
51
  },
@@ -113,16 +60,10 @@
113
60
  },
114
61
  "To": {
115
62
  "type": "string"
116
- },
117
- "X-Google-Smtp-Source": {
118
- "type": "string"
119
- },
120
- "X-Received": {
121
- "type": "string"
122
63
  }
123
64
  }
124
65
  }
125
66
  }
126
67
  },
127
- "version": 2
68
+ "version": 3
128
69
  }
@@ -31,7 +31,7 @@ class GoogleSheets extends import_n8n_workflow.VersionedNodeType {
31
31
  name: "googleSheets",
32
32
  icon: "file:googleSheets.svg",
33
33
  group: ["input", "output"],
34
- defaultVersion: 4.5,
34
+ defaultVersion: 4.6,
35
35
  subtitle: '={{$parameter["operation"] + ": " + $parameter["resource"]}}',
36
36
  description: "Read, update and write data to Google Sheets"
37
37
  };
@@ -44,7 +44,8 @@ class GoogleSheets extends import_n8n_workflow.VersionedNodeType {
44
44
  4.2: new import_GoogleSheetsV2.GoogleSheetsV2(baseDescription),
45
45
  4.3: new import_GoogleSheetsV2.GoogleSheetsV2(baseDescription),
46
46
  4.4: new import_GoogleSheetsV2.GoogleSheetsV2(baseDescription),
47
- 4.5: new import_GoogleSheetsV2.GoogleSheetsV2(baseDescription)
47
+ 4.5: new import_GoogleSheetsV2.GoogleSheetsV2(baseDescription),
48
+ 4.6: new import_GoogleSheetsV2.GoogleSheetsV2(baseDescription)
48
49
  };
49
50
  super(nodeVersions, baseDescription);
50
51
  }
@@ -1 +1 @@
1
- {"version":3,"sources":["../../../../nodes/Google/Sheet/GoogleSheets.node.ts"],"sourcesContent":["import type { INodeTypeBaseDescription, IVersionedNodeType } from 'n8n-workflow';\nimport { VersionedNodeType } from 'n8n-workflow';\n\nimport { GoogleSheetsV1 } from './v1/GoogleSheetsV1.node';\nimport { GoogleSheetsV2 } from './v2/GoogleSheetsV2.node';\n\nexport class GoogleSheets extends VersionedNodeType {\n\tconstructor() {\n\t\tconst baseDescription: INodeTypeBaseDescription = {\n\t\t\tdisplayName: 'Google Sheets',\n\t\t\tname: 'googleSheets',\n\t\t\ticon: 'file:googleSheets.svg',\n\t\t\tgroup: ['input', 'output'],\n\t\t\tdefaultVersion: 4.5,\n\t\t\tsubtitle: '={{$parameter[\"operation\"] + \": \" + $parameter[\"resource\"]}}',\n\t\t\tdescription: 'Read, update and write data to Google Sheets',\n\t\t};\n\n\t\tconst nodeVersions: IVersionedNodeType['nodeVersions'] = {\n\t\t\t1: new GoogleSheetsV1(baseDescription),\n\t\t\t2: new GoogleSheetsV1(baseDescription),\n\t\t\t3: new GoogleSheetsV2(baseDescription),\n\t\t\t4: new GoogleSheetsV2(baseDescription),\n\t\t\t4.1: new GoogleSheetsV2(baseDescription),\n\t\t\t4.2: new GoogleSheetsV2(baseDescription),\n\t\t\t4.3: new GoogleSheetsV2(baseDescription),\n\t\t\t4.4: new GoogleSheetsV2(baseDescription),\n\t\t\t4.5: new GoogleSheetsV2(baseDescription),\n\t\t};\n\n\t\tsuper(nodeVersions, baseDescription);\n\t}\n}\n"],"mappings":";;;;;;;;;;;;;;;;;;AAAA;AAAA;AAAA;AAAA;AAAA;AACA,0BAAkC;AAElC,4BAA+B;AAC/B,4BAA+B;AAExB,MAAM,qBAAqB,sCAAkB;AAAA,EACnD,cAAc;AACb,UAAM,kBAA4C;AAAA,MACjD,aAAa;AAAA,MACb,MAAM;AAAA,MACN,MAAM;AAAA,MACN,OAAO,CAAC,SAAS,QAAQ;AAAA,MACzB,gBAAgB;AAAA,MAChB,UAAU;AAAA,MACV,aAAa;AAAA,IACd;AAEA,UAAM,eAAmD;AAAA,MACxD,GAAG,IAAI,qCAAe,eAAe;AAAA,MACrC,GAAG,IAAI,qCAAe,eAAe;AAAA,MACrC,GAAG,IAAI,qCAAe,eAAe;AAAA,MACrC,GAAG,IAAI,qCAAe,eAAe;AAAA,MACrC,KAAK,IAAI,qCAAe,eAAe;AAAA,MACvC,KAAK,IAAI,qCAAe,eAAe;AAAA,MACvC,KAAK,IAAI,qCAAe,eAAe;AAAA,MACvC,KAAK,IAAI,qCAAe,eAAe;AAAA,MACvC,KAAK,IAAI,qCAAe,eAAe;AAAA,IACxC;AAEA,UAAM,cAAc,eAAe;AAAA,EACpC;AACD;","names":[]}
1
+ {"version":3,"sources":["../../../../nodes/Google/Sheet/GoogleSheets.node.ts"],"sourcesContent":["import type { INodeTypeBaseDescription, IVersionedNodeType } from 'n8n-workflow';\nimport { VersionedNodeType } from 'n8n-workflow';\n\nimport { GoogleSheetsV1 } from './v1/GoogleSheetsV1.node';\nimport { GoogleSheetsV2 } from './v2/GoogleSheetsV2.node';\n\nexport class GoogleSheets extends VersionedNodeType {\n\tconstructor() {\n\t\tconst baseDescription: INodeTypeBaseDescription = {\n\t\t\tdisplayName: 'Google Sheets',\n\t\t\tname: 'googleSheets',\n\t\t\ticon: 'file:googleSheets.svg',\n\t\t\tgroup: ['input', 'output'],\n\t\t\tdefaultVersion: 4.6,\n\t\t\tsubtitle: '={{$parameter[\"operation\"] + \": \" + $parameter[\"resource\"]}}',\n\t\t\tdescription: 'Read, update and write data to Google Sheets',\n\t\t};\n\n\t\tconst nodeVersions: IVersionedNodeType['nodeVersions'] = {\n\t\t\t1: new GoogleSheetsV1(baseDescription),\n\t\t\t2: new GoogleSheetsV1(baseDescription),\n\t\t\t3: new GoogleSheetsV2(baseDescription),\n\t\t\t4: new GoogleSheetsV2(baseDescription),\n\t\t\t4.1: new GoogleSheetsV2(baseDescription),\n\t\t\t4.2: new GoogleSheetsV2(baseDescription),\n\t\t\t4.3: new GoogleSheetsV2(baseDescription),\n\t\t\t4.4: new GoogleSheetsV2(baseDescription),\n\t\t\t4.5: new GoogleSheetsV2(baseDescription),\n\t\t\t4.6: new GoogleSheetsV2(baseDescription),\n\t\t};\n\n\t\tsuper(nodeVersions, baseDescription);\n\t}\n}\n"],"mappings":";;;;;;;;;;;;;;;;;;AAAA;AAAA;AAAA;AAAA;AAAA;AACA,0BAAkC;AAElC,4BAA+B;AAC/B,4BAA+B;AAExB,MAAM,qBAAqB,sCAAkB;AAAA,EACnD,cAAc;AACb,UAAM,kBAA4C;AAAA,MACjD,aAAa;AAAA,MACb,MAAM;AAAA,MACN,MAAM;AAAA,MACN,OAAO,CAAC,SAAS,QAAQ;AAAA,MACzB,gBAAgB;AAAA,MAChB,UAAU;AAAA,MACV,aAAa;AAAA,IACd;AAEA,UAAM,eAAmD;AAAA,MACxD,GAAG,IAAI,qCAAe,eAAe;AAAA,MACrC,GAAG,IAAI,qCAAe,eAAe;AAAA,MACrC,GAAG,IAAI,qCAAe,eAAe;AAAA,MACrC,GAAG,IAAI,qCAAe,eAAe;AAAA,MACrC,KAAK,IAAI,qCAAe,eAAe;AAAA,MACvC,KAAK,IAAI,qCAAe,eAAe;AAAA,MACvC,KAAK,IAAI,qCAAe,eAAe;AAAA,MACvC,KAAK,IAAI,qCAAe,eAAe;AAAA,MACvC,KAAK,IAAI,qCAAe,eAAe;AAAA,MACvC,KAAK,IAAI,qCAAe,eAAe;AAAA,IACxC;AAEA,UAAM,cAAc,eAAe;AAAA,EACpC;AACD;","names":[]}