n8n-nodes-base 1.0.5 → 1.1.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 (633) hide show
  1. package/dist/build.tsbuildinfo +1 -1
  2. package/dist/credentials/AirtableTokenApi.credentials.js +10 -0
  3. package/dist/credentials/AirtableTokenApi.credentials.js.map +1 -1
  4. package/dist/credentials/CrowdDevApi.credentials.d.ts +9 -0
  5. package/dist/credentials/CrowdDevApi.credentials.js +62 -0
  6. package/dist/credentials/CrowdDevApi.credentials.js.map +1 -0
  7. package/dist/credentials/GoogleDriveOAuth2Api.credentials.js +6 -0
  8. package/dist/credentials/GoogleDriveOAuth2Api.credentials.js.map +1 -1
  9. package/dist/credentials/GoogleSheetsOAuth2Api.credentials.js +3 -0
  10. package/dist/credentials/GoogleSheetsOAuth2Api.credentials.js.map +1 -1
  11. package/dist/credentials/GoogleSheetsTriggerOAuth2Api.credentials.js +3 -0
  12. package/dist/credentials/GoogleSheetsTriggerOAuth2Api.credentials.js.map +1 -1
  13. package/dist/credentials/HttpCustomAuth.credentials.d.ts +9 -0
  14. package/dist/credentials/HttpCustomAuth.credentials.js +25 -0
  15. package/dist/credentials/HttpCustomAuth.credentials.js.map +1 -0
  16. package/dist/credentials/TwitterOAuth1Api.credentials.js +6 -0
  17. package/dist/credentials/TwitterOAuth1Api.credentials.js.map +1 -1
  18. package/dist/credentials/TwitterOAuth2Api.credentials.d.ts +8 -0
  19. package/dist/credentials/TwitterOAuth2Api.credentials.js +73 -0
  20. package/dist/credentials/TwitterOAuth2Api.credentials.js.map +1 -0
  21. package/dist/known/credentials.json +36 -6
  22. package/dist/known/nodes.json +8 -0
  23. package/dist/methods/defined.json +6 -0
  24. package/dist/methods/referenced.json +4 -0
  25. package/dist/nodes/ActionNetwork/GenericFunctions.d.ts +23 -7
  26. package/dist/nodes/ActionNetwork/types.d.ts +79 -0
  27. package/dist/nodes/ActionNetwork/types.js +3 -0
  28. package/dist/nodes/ActionNetwork/types.js.map +1 -0
  29. package/dist/nodes/Adalo/types.d.ts +9 -0
  30. package/dist/nodes/Adalo/types.js +3 -0
  31. package/dist/nodes/Adalo/types.js.map +1 -0
  32. package/dist/nodes/Airtable/Airtable.node.d.ts +3 -4
  33. package/dist/nodes/Airtable/Airtable.node.js +10 -701
  34. package/dist/nodes/Airtable/Airtable.node.js.map +1 -1
  35. package/dist/nodes/Airtable/AirtableTrigger.node.js +14 -1
  36. package/dist/nodes/Airtable/AirtableTrigger.node.js.map +1 -1
  37. package/dist/nodes/Airtable/test/v2/node/helpers.d.ts +3 -0
  38. package/dist/nodes/Airtable/test/v2/node/helpers.js +31 -0
  39. package/dist/nodes/Airtable/test/v2/node/helpers.js.map +1 -0
  40. package/dist/nodes/Airtable/v1/AirtableV1.node.d.ts +6 -0
  41. package/dist/nodes/Airtable/v1/AirtableV1.node.js +722 -0
  42. package/dist/nodes/Airtable/v1/AirtableV1.node.js.map +1 -0
  43. package/dist/nodes/Airtable/v1/GenericFunctions.js.map +1 -0
  44. package/dist/nodes/Airtable/v2/AirtableV2.node.d.ts +12 -0
  45. package/dist/nodes/Airtable/v2/AirtableV2.node.js +24 -0
  46. package/dist/nodes/Airtable/v2/AirtableV2.node.js.map +1 -0
  47. package/dist/nodes/Airtable/v2/actions/base/Base.resource.d.ts +5 -0
  48. package/dist/nodes/Airtable/v2/actions/base/Base.resource.js +61 -0
  49. package/dist/nodes/Airtable/v2/actions/base/Base.resource.js.map +1 -0
  50. package/dist/nodes/Airtable/v2/actions/base/getMany.operation.d.ts +22 -0
  51. package/dist/nodes/Airtable/v2/actions/base/getMany.operation.js +106 -0
  52. package/dist/nodes/Airtable/v2/actions/base/getMany.operation.js.map +1 -0
  53. package/dist/nodes/Airtable/v2/actions/base/getSchema.operation.d.ts +22 -0
  54. package/dist/nodes/Airtable/v2/actions/base/getSchema.operation.js +42 -0
  55. package/dist/nodes/Airtable/v2/actions/base/getSchema.operation.js.map +1 -0
  56. package/dist/nodes/Airtable/v2/actions/common.descriptions.d.ts +5 -0
  57. package/dist/nodes/Airtable/v2/actions/common.descriptions.js +203 -0
  58. package/dist/nodes/Airtable/v2/actions/common.descriptions.js.map +1 -0
  59. package/dist/nodes/Airtable/v2/actions/node.type.d.ts +8 -0
  60. package/dist/nodes/Airtable/v2/actions/node.type.js +3 -0
  61. package/dist/nodes/Airtable/v2/actions/node.type.js.map +1 -0
  62. package/dist/nodes/Airtable/v2/actions/record/Record.resource.d.ts +9 -0
  63. package/dist/nodes/Airtable/v2/actions/record/Record.resource.js +114 -0
  64. package/dist/nodes/Airtable/v2/actions/record/Record.resource.js.map +1 -0
  65. package/dist/nodes/Airtable/v2/actions/record/create.operation.d.ts +22 -0
  66. package/dist/nodes/Airtable/v2/actions/record/create.operation.js +74 -0
  67. package/dist/nodes/Airtable/v2/actions/record/create.operation.js.map +1 -0
  68. package/dist/nodes/Airtable/v2/actions/record/deleteRecord.operation.d.ts +22 -0
  69. package/dist/nodes/Airtable/v2/actions/record/deleteRecord.operation.js +47 -0
  70. package/dist/nodes/Airtable/v2/actions/record/deleteRecord.operation.js.map +1 -0
  71. package/dist/nodes/Airtable/v2/actions/record/get.operation.d.ts +22 -0
  72. package/dist/nodes/Airtable/v2/actions/record/get.operation.js +74 -0
  73. package/dist/nodes/Airtable/v2/actions/record/get.operation.js.map +1 -0
  74. package/dist/nodes/Airtable/v2/actions/record/search.operation.d.ts +22 -0
  75. package/dist/nodes/Airtable/v2/actions/record/search.operation.js +188 -0
  76. package/dist/nodes/Airtable/v2/actions/record/search.operation.js.map +1 -0
  77. package/dist/nodes/Airtable/v2/actions/record/update.operation.d.ts +22 -0
  78. package/dist/nodes/Airtable/v2/actions/record/update.operation.js +106 -0
  79. package/dist/nodes/Airtable/v2/actions/record/update.operation.js.map +1 -0
  80. package/dist/nodes/Airtable/v2/actions/record/upsert.operation.d.ts +22 -0
  81. package/dist/nodes/Airtable/v2/actions/record/upsert.operation.js +129 -0
  82. package/dist/nodes/Airtable/v2/actions/record/upsert.operation.js.map +1 -0
  83. package/dist/nodes/Airtable/v2/actions/router.d.ts +2 -0
  84. package/dist/nodes/Airtable/v2/actions/router.js +67 -0
  85. package/dist/nodes/Airtable/v2/actions/router.js.map +1 -0
  86. package/dist/nodes/Airtable/v2/actions/versionDescription.d.ts +2 -0
  87. package/dist/nodes/Airtable/v2/actions/versionDescription.js +100 -0
  88. package/dist/nodes/Airtable/v2/actions/versionDescription.js.map +1 -0
  89. package/dist/nodes/Airtable/v2/helpers/interfaces.d.ts +22 -0
  90. package/dist/nodes/Airtable/v2/helpers/interfaces.js +3 -0
  91. package/dist/nodes/Airtable/v2/helpers/interfaces.js.map +1 -0
  92. package/dist/nodes/Airtable/v2/helpers/utils.d.ts +8 -0
  93. package/dist/nodes/Airtable/v2/helpers/utils.js +76 -0
  94. package/dist/nodes/Airtable/v2/helpers/utils.js.map +1 -0
  95. package/dist/nodes/Airtable/v2/methods/index.d.ts +3 -0
  96. package/dist/nodes/Airtable/v2/methods/index.js +30 -0
  97. package/dist/nodes/Airtable/v2/methods/index.js.map +1 -0
  98. package/dist/nodes/Airtable/v2/methods/listSearch.d.ts +4 -0
  99. package/dist/nodes/Airtable/v2/methods/listSearch.js +124 -0
  100. package/dist/nodes/Airtable/v2/methods/listSearch.js.map +1 -0
  101. package/dist/nodes/Airtable/v2/methods/loadOptions.d.ts +5 -0
  102. package/dist/nodes/Airtable/v2/methods/loadOptions.js +78 -0
  103. package/dist/nodes/Airtable/v2/methods/loadOptions.js.map +1 -0
  104. package/dist/nodes/Airtable/v2/methods/resourceMapping.d.ts +3 -0
  105. package/dist/nodes/Airtable/v2/methods/resourceMapping.js +105 -0
  106. package/dist/nodes/Airtable/v2/methods/resourceMapping.js.map +1 -0
  107. package/dist/nodes/Airtable/v2/transport/index.d.ts +8 -0
  108. package/dist/nodes/Airtable/v2/transport/index.js +102 -0
  109. package/dist/nodes/Airtable/v2/transport/index.js.map +1 -0
  110. package/dist/nodes/Aws/DynamoDB/types.d.ts +67 -0
  111. package/dist/nodes/Aws/DynamoDB/types.js +17 -0
  112. package/dist/nodes/Aws/DynamoDB/types.js.map +1 -0
  113. package/dist/nodes/Aws/S3/V2/AwsS3V2.node.js +50 -32
  114. package/dist/nodes/Aws/S3/V2/AwsS3V2.node.js.map +1 -1
  115. package/dist/nodes/Baserow/types.d.ts +35 -0
  116. package/dist/nodes/Baserow/types.js +3 -0
  117. package/dist/nodes/Baserow/types.js.map +1 -0
  118. package/dist/nodes/Chargebee/Chargebee.node.js +0 -2
  119. package/dist/nodes/Chargebee/Chargebee.node.js.map +1 -1
  120. package/dist/nodes/Copper/utils/types.d.ts +26 -0
  121. package/dist/nodes/Copper/utils/types.js +3 -0
  122. package/dist/nodes/Copper/utils/types.js.map +1 -0
  123. package/dist/nodes/CrateDb/CrateDb.node.js +1 -1
  124. package/dist/nodes/CrateDb/CrateDb.node.js.map +1 -1
  125. package/dist/nodes/CrowdDev/CrowdDev.node.d.ts +4 -0
  126. package/dist/nodes/CrowdDev/CrowdDev.node.js +36 -0
  127. package/dist/nodes/CrowdDev/CrowdDev.node.js.map +1 -0
  128. package/dist/nodes/CrowdDev/CrowdDev.node.json +18 -0
  129. package/dist/nodes/CrowdDev/CrowdDevTrigger.node.d.ts +12 -0
  130. package/dist/nodes/CrowdDev/CrowdDevTrigger.node.js +145 -0
  131. package/dist/nodes/CrowdDev/CrowdDevTrigger.node.js.map +1 -0
  132. package/dist/nodes/CrowdDev/CrowdDevTrigger.node.json +18 -0
  133. package/dist/nodes/CrowdDev/GenericFunctions.d.ts +7 -0
  134. package/dist/nodes/CrowdDev/GenericFunctions.js +157 -0
  135. package/dist/nodes/CrowdDev/GenericFunctions.js.map +1 -0
  136. package/dist/nodes/CrowdDev/crowdDev.svg +15 -0
  137. package/dist/nodes/CrowdDev/descriptions/activityFields.d.ts +4 -0
  138. package/dist/nodes/CrowdDev/descriptions/activityFields.js +180 -0
  139. package/dist/nodes/CrowdDev/descriptions/activityFields.js.map +1 -0
  140. package/dist/nodes/CrowdDev/descriptions/automationFields.d.ts +4 -0
  141. package/dist/nodes/CrowdDev/descriptions/automationFields.js +126 -0
  142. package/dist/nodes/CrowdDev/descriptions/automationFields.js.map +1 -0
  143. package/dist/nodes/CrowdDev/descriptions/index.d.ts +2 -0
  144. package/dist/nodes/CrowdDev/descriptions/index.js +26 -0
  145. package/dist/nodes/CrowdDev/descriptions/index.js.map +1 -0
  146. package/dist/nodes/CrowdDev/descriptions/memberFields.d.ts +4 -0
  147. package/dist/nodes/CrowdDev/descriptions/memberFields.js +291 -0
  148. package/dist/nodes/CrowdDev/descriptions/memberFields.js.map +1 -0
  149. package/dist/nodes/CrowdDev/descriptions/noteFields.d.ts +4 -0
  150. package/dist/nodes/CrowdDev/descriptions/noteFields.js +90 -0
  151. package/dist/nodes/CrowdDev/descriptions/noteFields.js.map +1 -0
  152. package/dist/nodes/CrowdDev/descriptions/organizationFields.d.ts +4 -0
  153. package/dist/nodes/CrowdDev/descriptions/organizationFields.js +146 -0
  154. package/dist/nodes/CrowdDev/descriptions/organizationFields.js.map +1 -0
  155. package/dist/nodes/CrowdDev/descriptions/resources.d.ts +2 -0
  156. package/dist/nodes/CrowdDev/descriptions/resources.js +38 -0
  157. package/dist/nodes/CrowdDev/descriptions/resources.js.map +1 -0
  158. package/dist/nodes/CrowdDev/descriptions/shared.d.ts +2 -0
  159. package/dist/nodes/CrowdDev/descriptions/shared.js +29 -0
  160. package/dist/nodes/CrowdDev/descriptions/shared.js.map +1 -0
  161. package/dist/nodes/CrowdDev/descriptions/taskFields.d.ts +4 -0
  162. package/dist/nodes/CrowdDev/descriptions/taskFields.js +159 -0
  163. package/dist/nodes/CrowdDev/descriptions/taskFields.js.map +1 -0
  164. package/dist/nodes/CrowdDev/descriptions/utils.d.ts +5 -0
  165. package/dist/nodes/CrowdDev/descriptions/utils.js +55 -0
  166. package/dist/nodes/CrowdDev/descriptions/utils.js.map +1 -0
  167. package/dist/nodes/Disqus/Disqus.node.js +0 -2
  168. package/dist/nodes/Disqus/Disqus.node.js.map +1 -1
  169. package/dist/nodes/Elastic/ElasticSecurity/types.d.ts +48 -0
  170. package/dist/nodes/Elastic/ElasticSecurity/types.js +3 -0
  171. package/dist/nodes/Elastic/ElasticSecurity/types.js.map +1 -0
  172. package/dist/nodes/Elastic/Elasticsearch/types.d.ts +39 -0
  173. package/dist/nodes/Elastic/Elasticsearch/types.js +3 -0
  174. package/dist/nodes/Elastic/Elasticsearch/types.js.map +1 -0
  175. package/dist/nodes/Freshservice/types.d.ts +27 -0
  176. package/dist/nodes/Freshservice/types.js +3 -0
  177. package/dist/nodes/Freshservice/types.js.map +1 -0
  178. package/dist/nodes/FreshworksCrm/types.d.ts +36 -0
  179. package/dist/nodes/FreshworksCrm/types.js +3 -0
  180. package/dist/nodes/FreshworksCrm/types.js.map +1 -0
  181. package/dist/nodes/Git/Git.node.js +0 -2
  182. package/dist/nodes/Git/Git.node.js.map +1 -1
  183. package/dist/nodes/Gitlab/Gitlab.node.js +0 -16
  184. package/dist/nodes/Gitlab/Gitlab.node.js.map +1 -1
  185. package/dist/nodes/Google/BigQuery/v1/GoogleBigQueryV1.node.d.ts +1 -2
  186. package/dist/nodes/Google/BigQuery/v1/GoogleBigQueryV1.node.js.map +1 -1
  187. package/dist/nodes/Google/BigQuery/v2/GoogleBigQueryV2.node.d.ts +1 -2
  188. package/dist/nodes/Google/BigQuery/v2/GoogleBigQueryV2.node.js.map +1 -1
  189. package/dist/nodes/Google/BigQuery/v2/actions/database/executeQuery.operation.d.ts +1 -2
  190. package/dist/nodes/Google/BigQuery/v2/actions/database/executeQuery.operation.js +2 -2
  191. package/dist/nodes/Google/BigQuery/v2/actions/database/executeQuery.operation.js.map +1 -1
  192. package/dist/nodes/Google/BigQuery/v2/actions/database/insert.operation.d.ts +1 -2
  193. package/dist/nodes/Google/BigQuery/v2/actions/database/insert.operation.js.map +1 -1
  194. package/dist/nodes/Google/BigQuery/v2/actions/router.d.ts +1 -2
  195. package/dist/nodes/Google/BigQuery/v2/actions/router.js.map +1 -1
  196. package/dist/nodes/Google/BigQuery/v2/helpers/utils.d.ts +2 -3
  197. package/dist/nodes/Google/BigQuery/v2/helpers/utils.js +1 -2
  198. package/dist/nodes/Google/BigQuery/v2/helpers/utils.js.map +1 -1
  199. package/dist/nodes/Google/BigQuery/v2/transport/index.d.ts +1 -2
  200. package/dist/nodes/Google/BigQuery/v2/transport/index.js.map +1 -1
  201. package/dist/nodes/Google/CloudStorage/ObjectDescription.d.ts +1 -1
  202. package/dist/nodes/Google/CloudStorage/ObjectDescription.js +17 -4
  203. package/dist/nodes/Google/CloudStorage/ObjectDescription.js.map +1 -1
  204. package/dist/nodes/Google/Docs/interfaces.d.ts +13 -0
  205. package/dist/nodes/Google/Docs/interfaces.js +3 -0
  206. package/dist/nodes/Google/Docs/interfaces.js.map +1 -0
  207. package/dist/nodes/Google/Drive/GoogleDrive.node.d.ts +3 -12
  208. package/dist/nodes/Google/Drive/GoogleDrive.node.js +10 -2301
  209. package/dist/nodes/Google/Drive/GoogleDrive.node.js.map +1 -1
  210. package/dist/nodes/Google/Drive/GoogleDriveTrigger.node.d.ts +1 -1
  211. package/dist/nodes/Google/Drive/GoogleDriveTrigger.node.js +2 -2
  212. package/dist/nodes/Google/Drive/GoogleDriveTrigger.node.js.map +1 -1
  213. package/dist/nodes/Google/Drive/test/v2/node/helpers.d.ts +3 -0
  214. package/dist/nodes/Google/Drive/test/v2/node/helpers.js +34 -0
  215. package/dist/nodes/Google/Drive/test/v2/node/helpers.js.map +1 -0
  216. package/dist/nodes/Google/Drive/{GenericFunctions.js → v1/GenericFunctions.js} +1 -1
  217. package/dist/nodes/Google/Drive/v1/GenericFunctions.js.map +1 -0
  218. package/dist/nodes/Google/Drive/v1/GoogleDriveV1.node.d.ts +14 -0
  219. package/dist/nodes/Google/Drive/v1/GoogleDriveV1.node.js +2325 -0
  220. package/dist/nodes/Google/Drive/v1/GoogleDriveV1.node.js.map +1 -0
  221. package/dist/nodes/Google/Drive/v1/SearchFunctions.js.map +1 -0
  222. package/dist/nodes/Google/Drive/v2/GoogleDriveV2.node.d.ts +10 -0
  223. package/dist/nodes/Google/Drive/v2/GoogleDriveV2.node.js +20 -0
  224. package/dist/nodes/Google/Drive/v2/GoogleDriveV2.node.js.map +1 -0
  225. package/dist/nodes/Google/Drive/v2/actions/common.descriptions.d.ts +19 -0
  226. package/dist/nodes/Google/Drive/v2/actions/common.descriptions.js +599 -0
  227. package/dist/nodes/Google/Drive/v2/actions/common.descriptions.js.map +1 -0
  228. package/dist/nodes/Google/Drive/v2/actions/drive/Drive.resource.d.ts +8 -0
  229. package/dist/nodes/Google/Drive/v2/actions/drive/Drive.resource.js +88 -0
  230. package/dist/nodes/Google/Drive/v2/actions/drive/Drive.resource.js.map +1 -0
  231. package/dist/nodes/Google/Drive/v2/actions/drive/create.operation.d.ts +22 -0
  232. package/dist/nodes/Google/Drive/v2/actions/drive/create.operation.js +235 -0
  233. package/dist/nodes/Google/Drive/v2/actions/drive/create.operation.js.map +1 -0
  234. package/dist/nodes/Google/Drive/v2/actions/drive/deleteDrive.operation.d.ts +22 -0
  235. package/dist/nodes/Google/Drive/v2/actions/drive/deleteDrive.operation.js +31 -0
  236. package/dist/nodes/Google/Drive/v2/actions/drive/deleteDrive.operation.js.map +1 -0
  237. package/dist/nodes/Google/Drive/v2/actions/drive/get.operation.d.ts +22 -0
  238. package/dist/nodes/Google/Drive/v2/actions/drive/get.operation.js +50 -0
  239. package/dist/nodes/Google/Drive/v2/actions/drive/get.operation.js.map +1 -0
  240. package/dist/nodes/Google/Drive/v2/actions/drive/list.operation.d.ts +22 -0
  241. package/dist/nodes/Google/Drive/v2/actions/drive/list.operation.js +81 -0
  242. package/dist/nodes/Google/Drive/v2/actions/drive/list.operation.js.map +1 -0
  243. package/dist/nodes/Google/Drive/v2/actions/drive/update.operation.d.ts +22 -0
  244. package/dist/nodes/Google/Drive/v2/actions/drive/update.operation.js +100 -0
  245. package/dist/nodes/Google/Drive/v2/actions/drive/update.operation.js.map +1 -0
  246. package/dist/nodes/Google/Drive/v2/actions/file/File.resource.d.ts +11 -0
  247. package/dist/nodes/Google/Drive/v2/actions/file/File.resource.js +115 -0
  248. package/dist/nodes/Google/Drive/v2/actions/file/File.resource.js.map +1 -0
  249. package/dist/nodes/Google/Drive/v2/actions/file/copy.operation.d.ts +22 -0
  250. package/dist/nodes/Google/Drive/v2/actions/file/copy.operation.js +104 -0
  251. package/dist/nodes/Google/Drive/v2/actions/file/copy.operation.js.map +1 -0
  252. package/dist/nodes/Google/Drive/v2/actions/file/createFromText.operation.d.ts +22 -0
  253. package/dist/nodes/Google/Drive/v2/actions/file/createFromText.operation.js +134 -0
  254. package/dist/nodes/Google/Drive/v2/actions/file/createFromText.operation.js.map +1 -0
  255. package/dist/nodes/Google/Drive/v2/actions/file/deleteFile.operation.d.ts +22 -0
  256. package/dist/nodes/Google/Drive/v2/actions/file/deleteFile.operation.js +57 -0
  257. package/dist/nodes/Google/Drive/v2/actions/file/deleteFile.operation.js.map +1 -0
  258. package/dist/nodes/Google/Drive/v2/actions/file/download.operation.d.ts +22 -0
  259. package/dist/nodes/Google/Drive/v2/actions/file/download.operation.js +218 -0
  260. package/dist/nodes/Google/Drive/v2/actions/file/download.operation.js.map +1 -0
  261. package/dist/nodes/Google/Drive/v2/actions/file/move.operation.d.ts +22 -0
  262. package/dist/nodes/Google/Drive/v2/actions/file/move.operation.js +60 -0
  263. package/dist/nodes/Google/Drive/v2/actions/file/move.operation.js.map +1 -0
  264. package/dist/nodes/Google/Drive/v2/actions/file/share.operation.d.ts +22 -0
  265. package/dist/nodes/Google/Drive/v2/actions/file/share.operation.js +43 -0
  266. package/dist/nodes/Google/Drive/v2/actions/file/share.operation.js.map +1 -0
  267. package/dist/nodes/Google/Drive/v2/actions/file/update.operation.d.ts +22 -0
  268. package/dist/nodes/Google/Drive/v2/actions/file/update.operation.js +221 -0
  269. package/dist/nodes/Google/Drive/v2/actions/file/update.operation.js.map +1 -0
  270. package/dist/nodes/Google/Drive/v2/actions/file/upload.operation.d.ts +22 -0
  271. package/dist/nodes/Google/Drive/v2/actions/file/upload.operation.js +135 -0
  272. package/dist/nodes/Google/Drive/v2/actions/file/upload.operation.js.map +1 -0
  273. package/dist/nodes/Google/Drive/v2/actions/fileFolder/FileFolder.resource.d.ts +4 -0
  274. package/dist/nodes/Google/Drive/v2/actions/fileFolder/FileFolder.resource.js +52 -0
  275. package/dist/nodes/Google/Drive/v2/actions/fileFolder/FileFolder.resource.js.map +1 -0
  276. package/dist/nodes/Google/Drive/v2/actions/fileFolder/search.operation.d.ts +22 -0
  277. package/dist/nodes/Google/Drive/v2/actions/fileFolder/search.operation.js +335 -0
  278. package/dist/nodes/Google/Drive/v2/actions/fileFolder/search.operation.js.map +1 -0
  279. package/dist/nodes/Google/Drive/v2/actions/folder/Folder.resource.d.ts +6 -0
  280. package/dist/nodes/Google/Drive/v2/actions/folder/Folder.resource.js +70 -0
  281. package/dist/nodes/Google/Drive/v2/actions/folder/Folder.resource.js.map +1 -0
  282. package/dist/nodes/Google/Drive/v2/actions/folder/create.operation.d.ts +22 -0
  283. package/dist/nodes/Google/Drive/v2/actions/folder/create.operation.js +92 -0
  284. package/dist/nodes/Google/Drive/v2/actions/folder/create.operation.js.map +1 -0
  285. package/dist/nodes/Google/Drive/v2/actions/folder/deleteFolder.operation.d.ts +22 -0
  286. package/dist/nodes/Google/Drive/v2/actions/folder/deleteFolder.operation.js +59 -0
  287. package/dist/nodes/Google/Drive/v2/actions/folder/deleteFolder.operation.js.map +1 -0
  288. package/dist/nodes/Google/Drive/v2/actions/folder/share.operation.d.ts +22 -0
  289. package/dist/nodes/Google/Drive/v2/actions/folder/share.operation.js +43 -0
  290. package/dist/nodes/Google/Drive/v2/actions/folder/share.operation.js.map +1 -0
  291. package/dist/nodes/Google/Drive/v2/actions/node.type.d.ts +9 -0
  292. package/dist/nodes/Google/Drive/v2/actions/node.type.js +3 -0
  293. package/dist/nodes/Google/Drive/v2/actions/node.type.js.map +1 -0
  294. package/dist/nodes/Google/Drive/v2/actions/router.d.ts +2 -0
  295. package/dist/nodes/Google/Drive/v2/actions/router.js +76 -0
  296. package/dist/nodes/Google/Drive/v2/actions/router.js.map +1 -0
  297. package/dist/nodes/Google/Drive/v2/actions/versionDescription.d.ts +2 -0
  298. package/dist/nodes/Google/Drive/v2/actions/versionDescription.js +112 -0
  299. package/dist/nodes/Google/Drive/v2/actions/versionDescription.js.map +1 -0
  300. package/dist/nodes/Google/Drive/v2/helpers/interfaces.d.ts +34 -0
  301. package/dist/nodes/Google/Drive/v2/helpers/interfaces.js +26 -0
  302. package/dist/nodes/Google/Drive/v2/helpers/interfaces.js.map +1 -0
  303. package/dist/nodes/Google/Drive/v2/helpers/utils.d.ts +15 -0
  304. package/dist/nodes/Google/Drive/v2/helpers/utils.js +104 -0
  305. package/dist/nodes/Google/Drive/v2/helpers/utils.js.map +1 -0
  306. package/dist/nodes/Google/Drive/v2/methods/index.d.ts +1 -0
  307. package/dist/nodes/Google/Drive/v2/methods/index.js +28 -0
  308. package/dist/nodes/Google/Drive/v2/methods/index.js.map +1 -0
  309. package/dist/nodes/Google/Drive/v2/methods/listSearch.d.ts +6 -0
  310. package/dist/nodes/Google/Drive/v2/methods/listSearch.js +144 -0
  311. package/dist/nodes/Google/Drive/v2/methods/listSearch.js.map +1 -0
  312. package/dist/nodes/Google/Drive/v2/transport/index.d.ts +4 -0
  313. package/dist/nodes/Google/Drive/v2/transport/index.js +68 -0
  314. package/dist/nodes/Google/Drive/v2/transport/index.js.map +1 -0
  315. package/dist/nodes/Google/GenericFunctions.d.ts +1 -2
  316. package/dist/nodes/Google/GenericFunctions.js.map +1 -1
  317. package/dist/nodes/Google/Gmail/GmailTrigger.node.js +7 -2
  318. package/dist/nodes/Google/Gmail/GmailTrigger.node.js.map +1 -1
  319. package/dist/nodes/Google/Perspective/types.d.ts +22 -0
  320. package/dist/nodes/Google/Perspective/types.js +3 -0
  321. package/dist/nodes/Google/Perspective/types.js.map +1 -0
  322. package/dist/nodes/Google/Sheet/v1/GoogleSheet.js +2 -2
  323. package/dist/nodes/Google/Sheet/v1/GoogleSheet.js.map +1 -1
  324. package/dist/nodes/Google/Sheet/v1/GoogleSheetsV1.node.js +4 -4
  325. package/dist/nodes/Google/Sheet/v1/GoogleSheetsV1.node.js.map +1 -1
  326. package/dist/nodes/Google/Sheet/v1/versionDescription.js.map +1 -1
  327. package/dist/nodes/Google/Sheet/v2/methods/resourceMapping.d.ts +1 -2
  328. package/dist/nodes/Google/Sheet/v2/methods/resourceMapping.js.map +1 -1
  329. package/dist/nodes/Grafana/types.d.ts +30 -0
  330. package/dist/nodes/Grafana/types.js +3 -0
  331. package/dist/nodes/Grafana/types.js.map +1 -0
  332. package/dist/nodes/GraphQL/GraphQL.node.js +32 -0
  333. package/dist/nodes/GraphQL/GraphQL.node.js.map +1 -1
  334. package/dist/nodes/Grist/types.d.ts +50 -0
  335. package/dist/nodes/Grist/types.js +3 -0
  336. package/dist/nodes/Grist/types.js.map +1 -0
  337. package/dist/nodes/HelpScout/HelpScout.node.js +0 -2
  338. package/dist/nodes/HelpScout/HelpScout.node.js.map +1 -1
  339. package/dist/nodes/Html/Html.node.d.ts +1 -0
  340. package/dist/nodes/Html/Html.node.js +143 -2
  341. package/dist/nodes/Html/Html.node.js.map +1 -1
  342. package/dist/nodes/Html/Html.node.json +1 -1
  343. package/dist/nodes/HttpRequest/V3/HttpRequestV3.node.js +22 -0
  344. package/dist/nodes/HttpRequest/V3/HttpRequestV3.node.js.map +1 -1
  345. package/dist/nodes/Hubspot/V1/GenericFunctions.d.ts +1 -2
  346. package/dist/nodes/Hubspot/V1/GenericFunctions.js.map +1 -1
  347. package/dist/nodes/Hubspot/V1/HubspotV1.node.d.ts +1 -2
  348. package/dist/nodes/Hubspot/V1/HubspotV1.node.js.map +1 -1
  349. package/dist/nodes/Hubspot/V2/HubspotV2.node.d.ts +1 -2
  350. package/dist/nodes/Hubspot/V2/HubspotV2.node.js.map +1 -1
  351. package/dist/nodes/ItemLists/ItemLists.node.js +3 -1
  352. package/dist/nodes/ItemLists/ItemLists.node.js.map +1 -1
  353. package/dist/nodes/ItemLists/V3/ItemListsV3.node.d.ts +6 -0
  354. package/dist/nodes/ItemLists/V3/ItemListsV3.node.js +18 -0
  355. package/dist/nodes/ItemLists/V3/ItemListsV3.node.js.map +1 -0
  356. package/dist/nodes/ItemLists/V3/actions/common.descriptions.d.ts +2 -0
  357. package/dist/nodes/ItemLists/V3/actions/common.descriptions.js +11 -0
  358. package/dist/nodes/ItemLists/V3/actions/common.descriptions.js.map +1 -0
  359. package/dist/nodes/ItemLists/V3/actions/itemList/concatenateItems.operation.d.ts +22 -0
  360. package/dist/nodes/ItemLists/V3/actions/itemList/concatenateItems.operation.js +303 -0
  361. package/dist/nodes/ItemLists/V3/actions/itemList/concatenateItems.operation.js.map +1 -0
  362. package/dist/nodes/ItemLists/V3/actions/itemList/index.d.ts +9 -0
  363. package/dist/nodes/ItemLists/V3/actions/itemList/index.js +97 -0
  364. package/dist/nodes/ItemLists/V3/actions/itemList/index.js.map +1 -0
  365. package/dist/nodes/ItemLists/V3/actions/itemList/limit.operation.d.ts +22 -0
  366. package/dist/nodes/ItemLists/V3/actions/itemList/limit.operation.js +57 -0
  367. package/dist/nodes/ItemLists/V3/actions/itemList/limit.operation.js.map +1 -0
  368. package/dist/nodes/ItemLists/V3/actions/itemList/removeDuplicates.operation.d.ts +22 -0
  369. package/dist/nodes/ItemLists/V3/actions/itemList/removeDuplicates.operation.js +204 -0
  370. package/dist/nodes/ItemLists/V3/actions/itemList/removeDuplicates.operation.js.map +1 -0
  371. package/dist/nodes/ItemLists/V3/actions/itemList/sort.operation.d.ts +22 -0
  372. package/dist/nodes/ItemLists/V3/actions/itemList/sort.operation.js +262 -0
  373. package/dist/nodes/ItemLists/V3/actions/itemList/sort.operation.js.map +1 -0
  374. package/dist/nodes/ItemLists/V3/actions/itemList/splitOutItems.operation.d.ts +22 -0
  375. package/dist/nodes/ItemLists/V3/actions/itemList/splitOutItems.operation.js +183 -0
  376. package/dist/nodes/ItemLists/V3/actions/itemList/splitOutItems.operation.js.map +1 -0
  377. package/dist/nodes/ItemLists/V3/actions/itemList/summarize.operation.d.ts +23 -0
  378. package/dist/nodes/ItemLists/V3/actions/itemList/summarize.operation.js +491 -0
  379. package/dist/nodes/ItemLists/V3/actions/itemList/summarize.operation.js.map +1 -0
  380. package/dist/nodes/ItemLists/V3/actions/node.type.d.ts +6 -0
  381. package/dist/nodes/ItemLists/V3/actions/node.type.js +3 -0
  382. package/dist/nodes/ItemLists/V3/actions/node.type.js.map +1 -0
  383. package/dist/nodes/ItemLists/V3/actions/router.d.ts +2 -0
  384. package/dist/nodes/ItemLists/V3/actions/router.js +53 -0
  385. package/dist/nodes/ItemLists/V3/actions/router.js.map +1 -0
  386. package/dist/nodes/ItemLists/V3/actions/versionDescription.d.ts +2 -0
  387. package/dist/nodes/ItemLists/V3/actions/versionDescription.js +58 -0
  388. package/dist/nodes/ItemLists/V3/actions/versionDescription.js.map +1 -0
  389. package/dist/nodes/ItemLists/V3/helpers/utils.d.ts +5 -0
  390. package/dist/nodes/ItemLists/V3/helpers/utils.js +57 -0
  391. package/dist/nodes/ItemLists/V3/helpers/utils.js.map +1 -0
  392. package/dist/nodes/ItemLists/test/node/workflow.update_3.json +606 -0
  393. package/dist/nodes/Ldap/Ldap.node.d.ts +1 -2
  394. package/dist/nodes/LoneScale/GenericFunctions.d.ts +1 -2
  395. package/dist/nodes/LoneScale/GenericFunctions.js.map +1 -1
  396. package/dist/nodes/LoneScale/LoneScaleTrigger.node.d.ts +1 -2
  397. package/dist/nodes/LoneScale/LoneScaleTrigger.node.js.map +1 -1
  398. package/dist/nodes/Magento/GenericFunctions.d.ts +1 -1
  399. package/dist/nodes/Magento/GenericFunctions.js.map +1 -1
  400. package/dist/nodes/Magento/types.d.ts +173 -0
  401. package/dist/nodes/Magento/types.js +3 -0
  402. package/dist/nodes/Magento/types.js.map +1 -0
  403. package/dist/nodes/Marketstack/types.d.ts +10 -0
  404. package/dist/nodes/Marketstack/types.js +3 -0
  405. package/dist/nodes/Marketstack/types.js.map +1 -0
  406. package/dist/nodes/Matrix/GenericFunctions.js +8 -2
  407. package/dist/nodes/Matrix/GenericFunctions.js.map +1 -1
  408. package/dist/nodes/Matrix/MediaDescription.js +23 -1
  409. package/dist/nodes/Matrix/MediaDescription.js.map +1 -1
  410. package/dist/nodes/Microsoft/Excel/v1/MicrosoftExcelV1.node.d.ts +1 -2
  411. package/dist/nodes/Microsoft/Excel/v1/MicrosoftExcelV1.node.js.map +1 -1
  412. package/dist/nodes/Microsoft/Excel/v2/MicrosoftExcelV2.node.d.ts +1 -2
  413. package/dist/nodes/Microsoft/Excel/v2/MicrosoftExcelV2.node.js.map +1 -1
  414. package/dist/nodes/Microsoft/Excel/v2/actions/router.d.ts +1 -2
  415. package/dist/nodes/Microsoft/Excel/v2/actions/router.js.map +1 -1
  416. package/dist/nodes/Microsoft/Excel/v2/actions/table/addTable.operation.d.ts +1 -2
  417. package/dist/nodes/Microsoft/Excel/v2/actions/table/addTable.operation.js.map +1 -1
  418. package/dist/nodes/Microsoft/Excel/v2/actions/table/append.operation.d.ts +1 -2
  419. package/dist/nodes/Microsoft/Excel/v2/actions/table/append.operation.js +1 -1
  420. package/dist/nodes/Microsoft/Excel/v2/actions/table/append.operation.js.map +1 -1
  421. package/dist/nodes/Microsoft/Excel/v2/actions/table/convertToRange.operation.d.ts +1 -2
  422. package/dist/nodes/Microsoft/Excel/v2/actions/table/convertToRange.operation.js.map +1 -1
  423. package/dist/nodes/Microsoft/Excel/v2/actions/table/deleteTable.operation.d.ts +1 -2
  424. package/dist/nodes/Microsoft/Excel/v2/actions/table/deleteTable.operation.js.map +1 -1
  425. package/dist/nodes/Microsoft/Excel/v2/actions/table/getColumns.operation.d.ts +1 -2
  426. package/dist/nodes/Microsoft/Excel/v2/actions/table/getColumns.operation.js.map +1 -1
  427. package/dist/nodes/Microsoft/Excel/v2/actions/table/getRows.operation.d.ts +1 -2
  428. package/dist/nodes/Microsoft/Excel/v2/actions/table/getRows.operation.js.map +1 -1
  429. package/dist/nodes/Microsoft/Excel/v2/actions/table/lookup.operation.d.ts +1 -2
  430. package/dist/nodes/Microsoft/Excel/v2/actions/table/lookup.operation.js.map +1 -1
  431. package/dist/nodes/Microsoft/Excel/v2/actions/workbook/addWorksheet.operation.d.ts +1 -2
  432. package/dist/nodes/Microsoft/Excel/v2/actions/workbook/addWorksheet.operation.js.map +1 -1
  433. package/dist/nodes/Microsoft/Excel/v2/actions/workbook/deleteWorkbook.operation.d.ts +1 -2
  434. package/dist/nodes/Microsoft/Excel/v2/actions/workbook/deleteWorkbook.operation.js.map +1 -1
  435. package/dist/nodes/Microsoft/Excel/v2/actions/workbook/getAll.operation.d.ts +1 -2
  436. package/dist/nodes/Microsoft/Excel/v2/actions/workbook/getAll.operation.js.map +1 -1
  437. package/dist/nodes/Microsoft/Excel/v2/actions/worksheet/append.operation.d.ts +1 -2
  438. package/dist/nodes/Microsoft/Excel/v2/actions/worksheet/append.operation.js +5 -1
  439. package/dist/nodes/Microsoft/Excel/v2/actions/worksheet/append.operation.js.map +1 -1
  440. package/dist/nodes/Microsoft/Excel/v2/actions/worksheet/clear.operation.d.ts +1 -2
  441. package/dist/nodes/Microsoft/Excel/v2/actions/worksheet/clear.operation.js.map +1 -1
  442. package/dist/nodes/Microsoft/Excel/v2/actions/worksheet/deleteWorksheet.operation.d.ts +1 -2
  443. package/dist/nodes/Microsoft/Excel/v2/actions/worksheet/deleteWorksheet.operation.js.map +1 -1
  444. package/dist/nodes/Microsoft/Excel/v2/actions/worksheet/getAll.operation.d.ts +1 -2
  445. package/dist/nodes/Microsoft/Excel/v2/actions/worksheet/getAll.operation.js.map +1 -1
  446. package/dist/nodes/Microsoft/Excel/v2/actions/worksheet/readRows.operation.d.ts +1 -2
  447. package/dist/nodes/Microsoft/Excel/v2/actions/worksheet/readRows.operation.js +2 -2
  448. package/dist/nodes/Microsoft/Excel/v2/actions/worksheet/readRows.operation.js.map +1 -1
  449. package/dist/nodes/Microsoft/Excel/v2/actions/worksheet/update.operation.d.ts +1 -2
  450. package/dist/nodes/Microsoft/Excel/v2/actions/worksheet/update.operation.js +2 -2
  451. package/dist/nodes/Microsoft/Excel/v2/actions/worksheet/update.operation.js.map +1 -1
  452. package/dist/nodes/Microsoft/Excel/v2/actions/worksheet/upsert.operation.d.ts +1 -2
  453. package/dist/nodes/Microsoft/Excel/v2/actions/worksheet/upsert.operation.js +1 -1
  454. package/dist/nodes/Microsoft/Excel/v2/actions/worksheet/upsert.operation.js.map +1 -1
  455. package/dist/nodes/Microsoft/Excel/v2/helpers/utils.d.ts +2 -3
  456. package/dist/nodes/Microsoft/Excel/v2/helpers/utils.js +2 -3
  457. package/dist/nodes/Microsoft/Excel/v2/helpers/utils.js.map +1 -1
  458. package/dist/nodes/Microsoft/Excel/v2/transport/index.d.ts +1 -2
  459. package/dist/nodes/Microsoft/Excel/v2/transport/index.js.map +1 -1
  460. package/dist/nodes/Microsoft/ToDo/MicrosoftToDo.node.js +7 -0
  461. package/dist/nodes/Microsoft/ToDo/MicrosoftToDo.node.js.map +1 -1
  462. package/dist/nodes/Microsoft/ToDo/TaskDescription.js +7 -0
  463. package/dist/nodes/Microsoft/ToDo/TaskDescription.js.map +1 -1
  464. package/dist/nodes/Misp/types.d.ts +31 -0
  465. package/dist/nodes/Misp/types.js +3 -0
  466. package/dist/nodes/Misp/types.js.map +1 -0
  467. package/dist/nodes/MonicaCrm/types.d.ts +11 -0
  468. package/dist/nodes/MonicaCrm/types.js +3 -0
  469. package/dist/nodes/MonicaCrm/types.js.map +1 -0
  470. package/dist/nodes/MySql/v1/MySqlV1.node.d.ts +1 -2
  471. package/dist/nodes/MySql/v1/MySqlV1.node.js.map +1 -1
  472. package/dist/nodes/MySql/v2/MySqlV2.node.d.ts +1 -2
  473. package/dist/nodes/MySql/v2/MySqlV2.node.js.map +1 -1
  474. package/dist/nodes/MySql/v2/actions/database/deleteTable.operation.d.ts +1 -2
  475. package/dist/nodes/MySql/v2/actions/database/deleteTable.operation.js.map +1 -1
  476. package/dist/nodes/MySql/v2/actions/database/executeQuery.operation.d.ts +1 -2
  477. package/dist/nodes/MySql/v2/actions/database/executeQuery.operation.js.map +1 -1
  478. package/dist/nodes/MySql/v2/actions/database/insert.operation.d.ts +1 -2
  479. package/dist/nodes/MySql/v2/actions/database/insert.operation.js.map +1 -1
  480. package/dist/nodes/MySql/v2/actions/database/select.operation.d.ts +1 -2
  481. package/dist/nodes/MySql/v2/actions/database/select.operation.js.map +1 -1
  482. package/dist/nodes/MySql/v2/actions/database/update.operation.d.ts +1 -2
  483. package/dist/nodes/MySql/v2/actions/database/update.operation.js.map +1 -1
  484. package/dist/nodes/MySql/v2/actions/database/upsert.operation.d.ts +1 -2
  485. package/dist/nodes/MySql/v2/actions/database/upsert.operation.js.map +1 -1
  486. package/dist/nodes/MySql/v2/actions/router.d.ts +1 -2
  487. package/dist/nodes/MySql/v2/actions/router.js.map +1 -1
  488. package/dist/nodes/Notion/DatabasePageDescription.js +41 -0
  489. package/dist/nodes/Notion/DatabasePageDescription.js.map +1 -1
  490. package/dist/nodes/Notion/v2/NotionV2.node.js +9 -0
  491. package/dist/nodes/Notion/v2/NotionV2.node.js.map +1 -1
  492. package/dist/nodes/OpenAi/ChatDescription.js +2 -2
  493. package/dist/nodes/OpenAi/ChatDescription.js.map +1 -1
  494. package/dist/nodes/OpenAi/TextDescription.js +2 -2
  495. package/dist/nodes/OpenAi/TextDescription.js.map +1 -1
  496. package/dist/nodes/Postgres/v1/PostgresV1.node.d.ts +1 -2
  497. package/dist/nodes/Postgres/v2/PostgresV2.node.d.ts +1 -2
  498. package/dist/nodes/Postgres/v2/actions/database/deleteTable.operation.d.ts +1 -2
  499. package/dist/nodes/Postgres/v2/actions/database/deleteTable.operation.js.map +1 -1
  500. package/dist/nodes/Postgres/v2/actions/database/executeQuery.operation.d.ts +1 -2
  501. package/dist/nodes/Postgres/v2/actions/database/executeQuery.operation.js +28 -6
  502. package/dist/nodes/Postgres/v2/actions/database/executeQuery.operation.js.map +1 -1
  503. package/dist/nodes/Postgres/v2/actions/database/insert.operation.d.ts +1 -2
  504. package/dist/nodes/Postgres/v2/actions/database/insert.operation.js.map +1 -1
  505. package/dist/nodes/Postgres/v2/actions/database/select.operation.d.ts +1 -2
  506. package/dist/nodes/Postgres/v2/actions/database/select.operation.js.map +1 -1
  507. package/dist/nodes/Postgres/v2/actions/database/update.operation.d.ts +1 -2
  508. package/dist/nodes/Postgres/v2/actions/database/update.operation.js.map +1 -1
  509. package/dist/nodes/Postgres/v2/actions/database/upsert.operation.d.ts +1 -2
  510. package/dist/nodes/Postgres/v2/actions/database/upsert.operation.js.map +1 -1
  511. package/dist/nodes/Postgres/v2/actions/router.js +2 -1
  512. package/dist/nodes/Postgres/v2/actions/router.js.map +1 -1
  513. package/dist/nodes/Postgres/v2/helpers/interfaces.d.ts +1 -4
  514. package/dist/nodes/Postgres/v2/helpers/utils.d.ts +3 -3
  515. package/dist/nodes/Postgres/v2/helpers/utils.js +68 -65
  516. package/dist/nodes/Postgres/v2/helpers/utils.js.map +1 -1
  517. package/dist/nodes/QuickBooks/types.d.ts +47 -0
  518. package/dist/nodes/QuickBooks/types.js +3 -0
  519. package/dist/nodes/QuickBooks/types.js.map +1 -0
  520. package/dist/nodes/ReadPdf/ReadPDF.node.d.ts +1 -1
  521. package/dist/nodes/ReadPdf/ReadPDF.node.js +69 -11
  522. package/dist/nodes/ReadPdf/ReadPDF.node.js.map +1 -1
  523. package/dist/nodes/ReadPdf/test/ReadPDF-encrypted.workflow.json +87 -0
  524. package/dist/nodes/ReadPdf/test/ReadPDF.workflow.json +47 -27
  525. package/dist/nodes/RssFeedRead/RssFeedRead.node.js +1 -1
  526. package/dist/nodes/RssFeedRead/RssFeedRead.node.js.map +1 -1
  527. package/dist/nodes/Rundeck/Rundeck.node.js +17 -1
  528. package/dist/nodes/Rundeck/Rundeck.node.js.map +1 -1
  529. package/dist/nodes/Rundeck/RundeckApi.d.ts +1 -1
  530. package/dist/nodes/Rundeck/RundeckApi.js +6 -2
  531. package/dist/nodes/Rundeck/RundeckApi.js.map +1 -1
  532. package/dist/nodes/SeaTable/Schema.d.ts +4 -4
  533. package/dist/nodes/SeaTable/types.d.ts +33 -0
  534. package/dist/nodes/SeaTable/types.js +3 -0
  535. package/dist/nodes/SeaTable/types.js.map +1 -0
  536. package/dist/nodes/Sendy/Sendy.node.js.map +1 -1
  537. package/dist/nodes/Slack/Slack.node.js +2 -1
  538. package/dist/nodes/Slack/Slack.node.js.map +1 -1
  539. package/dist/nodes/Slack/V2/GenericFunctions.d.ts +1 -0
  540. package/dist/nodes/Slack/V2/GenericFunctions.js +44 -1
  541. package/dist/nodes/Slack/V2/GenericFunctions.js.map +1 -1
  542. package/dist/nodes/Slack/V2/MessageDescription.js +7 -0
  543. package/dist/nodes/Slack/V2/MessageDescription.js.map +1 -1
  544. package/dist/nodes/Slack/V2/SlackV2.node.js +2 -20
  545. package/dist/nodes/Slack/V2/SlackV2.node.js.map +1 -1
  546. package/dist/nodes/Splunk/types.d.ts +40 -0
  547. package/dist/nodes/Splunk/types.js +3 -0
  548. package/dist/nodes/Splunk/types.js.map +1 -0
  549. package/dist/nodes/Strava/ActivityDescription.js +7 -0
  550. package/dist/nodes/Strava/ActivityDescription.js.map +1 -1
  551. package/dist/nodes/Strava/Strava.node.js +0 -6
  552. package/dist/nodes/Strava/Strava.node.js.map +1 -1
  553. package/dist/nodes/Taiga/types.d.ts +31 -0
  554. package/dist/nodes/Taiga/types.js +2 -0
  555. package/dist/nodes/Taiga/types.js.map +1 -0
  556. package/dist/nodes/Telegram/TelegramTrigger.node.js +1 -1
  557. package/dist/nodes/Telegram/TelegramTrigger.node.js.map +1 -1
  558. package/dist/nodes/Twitter/Twitter.node.d.ts +3 -9
  559. package/dist/nodes/Twitter/Twitter.node.js +12 -224
  560. package/dist/nodes/Twitter/Twitter.node.js.map +1 -1
  561. package/dist/nodes/Twitter/Twitter.node.json +2 -1
  562. package/dist/nodes/Twitter/V1/DirectMessageDescription.js.map +1 -0
  563. package/dist/nodes/Twitter/V1/GenericFunctions.js.map +1 -0
  564. package/dist/nodes/Twitter/V1/TweetDescription.js.map +1 -0
  565. package/dist/nodes/Twitter/V1/TweetInterface.js.map +1 -0
  566. package/dist/nodes/Twitter/V1/TwitterV1.node.d.ts +11 -0
  567. package/dist/nodes/Twitter/V1/TwitterV1.node.js +235 -0
  568. package/dist/nodes/Twitter/V1/TwitterV1.node.js.map +1 -0
  569. package/dist/nodes/Twitter/V2/DirectMessageDescription.d.ts +3 -0
  570. package/dist/nodes/Twitter/V2/DirectMessageDescription.js +100 -0
  571. package/dist/nodes/Twitter/V2/DirectMessageDescription.js.map +1 -0
  572. package/dist/nodes/Twitter/V2/GenericFunctions.d.ts +5 -0
  573. package/dist/nodes/Twitter/V2/GenericFunctions.js +88 -0
  574. package/dist/nodes/Twitter/V2/GenericFunctions.js.map +1 -0
  575. package/dist/nodes/Twitter/V2/ListDescription.d.ts +3 -0
  576. package/dist/nodes/Twitter/V2/ListDescription.js +92 -0
  577. package/dist/nodes/Twitter/V2/ListDescription.js.map +1 -0
  578. package/dist/nodes/Twitter/V2/TweetDescription.d.ts +3 -0
  579. package/dist/nodes/Twitter/V2/TweetDescription.js +452 -0
  580. package/dist/nodes/Twitter/V2/TweetDescription.js.map +1 -0
  581. package/dist/nodes/Twitter/V2/TweetInterface.d.ts +23 -0
  582. package/dist/nodes/Twitter/V2/TweetInterface.js +3 -0
  583. package/dist/nodes/Twitter/V2/TweetInterface.js.map +1 -0
  584. package/dist/nodes/Twitter/V2/TwitterV2.node.d.ts +11 -0
  585. package/dist/nodes/Twitter/V2/TwitterV2.node.js +245 -0
  586. package/dist/nodes/Twitter/V2/TwitterV2.node.js.map +1 -0
  587. package/dist/nodes/Twitter/V2/UserDescription.d.ts +3 -0
  588. package/dist/nodes/Twitter/V2/UserDescription.js +76 -0
  589. package/dist/nodes/Twitter/V2/UserDescription.js.map +1 -0
  590. package/dist/nodes/Twitter/test/Workflow_Twitter_UnitTest.json +284 -0
  591. package/dist/nodes/UProc/UProc.node.js +0 -1
  592. package/dist/nodes/UProc/UProc.node.js.map +1 -1
  593. package/dist/nodes/Wait/Wait.node.d.ts +7 -4
  594. package/dist/nodes/Wait/Wait.node.js +77 -499
  595. package/dist/nodes/Wait/Wait.node.js.map +1 -1
  596. package/dist/nodes/Webhook/Webhook.node.d.ts +8 -3
  597. package/dist/nodes/Webhook/Webhook.node.js +148 -460
  598. package/dist/nodes/Webhook/Webhook.node.js.map +1 -1
  599. package/dist/nodes/Webhook/description.d.ts +10 -0
  600. package/dist/nodes/Webhook/description.js +325 -0
  601. package/dist/nodes/Webhook/description.js.map +1 -0
  602. package/dist/nodes/Webhook/error.d.ts +4 -0
  603. package/dist/nodes/Webhook/error.js +20 -0
  604. package/dist/nodes/Webhook/error.js.map +1 -0
  605. package/dist/nodes/Zammad/types.d.ts +81 -0
  606. package/dist/nodes/Zammad/types.js +3 -0
  607. package/dist/nodes/Zammad/types.js.map +1 -0
  608. package/dist/nodes/Zoho/types.d.ts +93 -0
  609. package/dist/nodes/Zoho/types.js +3 -0
  610. package/dist/nodes/Zoho/types.js.map +1 -0
  611. package/dist/types/credentials.json +8 -5
  612. package/dist/types/nodes.json +30 -22
  613. package/package.json +9 -5
  614. package/dist/nodes/Airtable/GenericFunctions.js.map +0 -1
  615. package/dist/nodes/Google/Drive/GenericFunctions.js.map +0 -1
  616. package/dist/nodes/Google/Drive/SearchFunctions.js.map +0 -1
  617. package/dist/nodes/Twitter/DirectMessageDescription.js.map +0 -1
  618. package/dist/nodes/Twitter/GenericFunctions.js.map +0 -1
  619. package/dist/nodes/Twitter/TweetDescription.js.map +0 -1
  620. package/dist/nodes/Twitter/TweetInterface.js.map +0 -1
  621. /package/dist/nodes/Airtable/{GenericFunctions.d.ts → v1/GenericFunctions.d.ts} +0 -0
  622. /package/dist/nodes/Airtable/{GenericFunctions.js → v1/GenericFunctions.js} +0 -0
  623. /package/dist/nodes/Google/Drive/{GenericFunctions.d.ts → v1/GenericFunctions.d.ts} +0 -0
  624. /package/dist/nodes/Google/Drive/{SearchFunctions.d.ts → v1/SearchFunctions.d.ts} +0 -0
  625. /package/dist/nodes/Google/Drive/{SearchFunctions.js → v1/SearchFunctions.js} +0 -0
  626. /package/dist/nodes/Twitter/{DirectMessageDescription.d.ts → V1/DirectMessageDescription.d.ts} +0 -0
  627. /package/dist/nodes/Twitter/{DirectMessageDescription.js → V1/DirectMessageDescription.js} +0 -0
  628. /package/dist/nodes/Twitter/{GenericFunctions.d.ts → V1/GenericFunctions.d.ts} +0 -0
  629. /package/dist/nodes/Twitter/{GenericFunctions.js → V1/GenericFunctions.js} +0 -0
  630. /package/dist/nodes/Twitter/{TweetDescription.d.ts → V1/TweetDescription.d.ts} +0 -0
  631. /package/dist/nodes/Twitter/{TweetDescription.js → V1/TweetDescription.js} +0 -0
  632. /package/dist/nodes/Twitter/{TweetInterface.d.ts → V1/TweetInterface.d.ts} +0 -0
  633. /package/dist/nodes/Twitter/{TweetInterface.js → V1/TweetInterface.js} +0 -0
@@ -0,0 +1,114 @@
1
+ "use strict";
2
+ var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
3
+ if (k2 === undefined) k2 = k;
4
+ var desc = Object.getOwnPropertyDescriptor(m, k);
5
+ if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
6
+ desc = { enumerable: true, get: function() { return m[k]; } };
7
+ }
8
+ Object.defineProperty(o, k2, desc);
9
+ }) : (function(o, m, k, k2) {
10
+ if (k2 === undefined) k2 = k;
11
+ o[k2] = m[k];
12
+ }));
13
+ var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
14
+ Object.defineProperty(o, "default", { enumerable: true, value: v });
15
+ }) : function(o, v) {
16
+ o["default"] = v;
17
+ });
18
+ var __importStar = (this && this.__importStar) || function (mod) {
19
+ if (mod && mod.__esModule) return mod;
20
+ var result = {};
21
+ if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
22
+ __setModuleDefault(result, mod);
23
+ return result;
24
+ };
25
+ Object.defineProperty(exports, "__esModule", { value: true });
26
+ exports.description = exports.upsert = exports.update = exports.search = exports.get = exports.deleteRecord = exports.create = void 0;
27
+ const common_descriptions_1 = require("../common.descriptions");
28
+ const create = __importStar(require("./create.operation"));
29
+ exports.create = create;
30
+ const deleteRecord = __importStar(require("./deleteRecord.operation"));
31
+ exports.deleteRecord = deleteRecord;
32
+ const get = __importStar(require("./get.operation"));
33
+ exports.get = get;
34
+ const search = __importStar(require("./search.operation"));
35
+ exports.search = search;
36
+ const update = __importStar(require("./update.operation"));
37
+ exports.update = update;
38
+ const upsert = __importStar(require("./upsert.operation"));
39
+ exports.upsert = upsert;
40
+ exports.description = [
41
+ {
42
+ displayName: 'Operation',
43
+ name: 'operation',
44
+ type: 'options',
45
+ noDataExpression: true,
46
+ options: [
47
+ {
48
+ name: 'Create',
49
+ value: 'create',
50
+ description: 'Create a new record in a table',
51
+ action: 'Create a record',
52
+ },
53
+ {
54
+ name: 'Create or Update',
55
+ value: 'upsert',
56
+ description: 'Create a new record, or update the current one if it already exists (upsert)',
57
+ action: 'Create or update a record',
58
+ },
59
+ {
60
+ name: 'Delete',
61
+ value: 'deleteRecord',
62
+ description: 'Delete a record from a table',
63
+ action: 'Delete a record',
64
+ },
65
+ {
66
+ name: 'Get',
67
+ value: 'get',
68
+ description: 'Retrieve a record from a table',
69
+ action: 'Get a record',
70
+ },
71
+ {
72
+ name: 'Search',
73
+ value: 'search',
74
+ description: 'Search for specific records or list all',
75
+ action: 'Search records',
76
+ },
77
+ {
78
+ name: 'Update',
79
+ value: 'update',
80
+ description: 'Update a record in a table',
81
+ action: 'Update record',
82
+ },
83
+ ],
84
+ default: 'read',
85
+ displayOptions: {
86
+ show: {
87
+ resource: ['record'],
88
+ },
89
+ },
90
+ },
91
+ {
92
+ ...common_descriptions_1.baseRLC,
93
+ displayOptions: {
94
+ show: {
95
+ resource: ['record'],
96
+ },
97
+ },
98
+ },
99
+ {
100
+ ...common_descriptions_1.tableRLC,
101
+ displayOptions: {
102
+ show: {
103
+ resource: ['record'],
104
+ },
105
+ },
106
+ },
107
+ ...create.description,
108
+ ...deleteRecord.description,
109
+ ...get.description,
110
+ ...search.description,
111
+ ...update.description,
112
+ ...upsert.description,
113
+ ];
114
+ //# sourceMappingURL=Record.resource.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"Record.resource.js","sourceRoot":"","sources":["../../../../../../nodes/Airtable/v2/actions/record/Record.resource.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;AACA,gEAA2D;AAE3D,2DAA6C;AAOpC,wBAAM;AANf,uEAAyD;AAMxC,oCAAY;AAL7B,qDAAuC;AAKR,kBAAG;AAJlC,2DAA6C;AAIT,wBAAM;AAH1C,2DAA6C;AAGD,wBAAM;AAFlD,2DAA6C;AAEO,wBAAM;AAE7C,QAAA,WAAW,GAAsB;IAC7C;QACC,WAAW,EAAE,WAAW;QACxB,IAAI,EAAE,WAAW;QACjB,IAAI,EAAE,SAAS;QACf,gBAAgB,EAAE,IAAI;QACtB,OAAO,EAAE;YACR;gBACC,IAAI,EAAE,QAAQ;gBACd,KAAK,EAAE,QAAQ;gBACf,WAAW,EAAE,gCAAgC;gBAC7C,MAAM,EAAE,iBAAiB;aACzB;YACD;gBAEC,IAAI,EAAE,kBAAkB;gBACxB,KAAK,EAAE,QAAQ;gBACf,WAAW,EAAE,8EAA8E;gBAC3F,MAAM,EAAE,2BAA2B;aACnC;YACD;gBACC,IAAI,EAAE,QAAQ;gBACd,KAAK,EAAE,cAAc;gBACrB,WAAW,EAAE,8BAA8B;gBAC3C,MAAM,EAAE,iBAAiB;aACzB;YACD;gBACC,IAAI,EAAE,KAAK;gBACX,KAAK,EAAE,KAAK;gBACZ,WAAW,EAAE,gCAAgC;gBAC7C,MAAM,EAAE,cAAc;aACtB;YACD;gBACC,IAAI,EAAE,QAAQ;gBACd,KAAK,EAAE,QAAQ;gBACf,WAAW,EAAE,yCAAyC;gBACtD,MAAM,EAAE,gBAAgB;aACxB;YACD;gBACC,IAAI,EAAE,QAAQ;gBACd,KAAK,EAAE,QAAQ;gBACf,WAAW,EAAE,4BAA4B;gBACzC,MAAM,EAAE,eAAe;aACvB;SACD;QACD,OAAO,EAAE,MAAM;QACf,cAAc,EAAE;YACf,IAAI,EAAE;gBACL,QAAQ,EAAE,CAAC,QAAQ,CAAC;aACpB;SACD;KACD;IACD;QACC,GAAG,6BAAO;QACV,cAAc,EAAE;YACf,IAAI,EAAE;gBACL,QAAQ,EAAE,CAAC,QAAQ,CAAC;aACpB;SACD;KACD;IACD;QACC,GAAG,8BAAQ;QACX,cAAc,EAAE;YACf,IAAI,EAAE;gBACL,QAAQ,EAAE,CAAC,QAAQ,CAAC;aACpB;SACD;KACD;IACD,GAAG,MAAM,CAAC,WAAW;IACrB,GAAG,YAAY,CAAC,WAAW;IAC3B,GAAG,GAAG,CAAC,WAAW;IAClB,GAAG,MAAM,CAAC,WAAW;IACrB,GAAG,MAAM,CAAC,WAAW;IACrB,GAAG,MAAM,CAAC,WAAW;CACrB,CAAC"}
@@ -0,0 +1,22 @@
1
+ import type { INodeExecutionData, INodeProperties, IExecuteFunctions } from 'n8n-workflow';
2
+ export declare const description: {
3
+ displayOptions: import("n8n-workflow").IDisplayOptions;
4
+ displayName: string;
5
+ name: string;
6
+ type: import("n8n-workflow").NodePropertyTypes;
7
+ typeOptions?: import("n8n-workflow").INodePropertyTypeOptions | undefined;
8
+ default: import("n8n-workflow").NodeParameterValueType;
9
+ description?: string | undefined;
10
+ hint?: string | undefined;
11
+ options?: (INodeProperties | import("n8n-workflow").INodePropertyOptions | import("n8n-workflow").INodePropertyCollection)[] | undefined;
12
+ placeholder?: string | undefined;
13
+ isNodeSetting?: boolean | undefined;
14
+ noDataExpression?: boolean | undefined;
15
+ required?: boolean | undefined;
16
+ routing?: import("n8n-workflow").INodePropertyRouting | undefined;
17
+ credentialTypes?: ("extends:oAuth2Api" | "extends:oAuth1Api" | "has:authenticate" | "has:genericAuth")[] | undefined;
18
+ extractValue?: import("n8n-workflow").INodePropertyValueExtractorRegex | undefined;
19
+ modes?: import("n8n-workflow").INodePropertyMode[] | undefined;
20
+ requiresDataPath?: "single" | "multiple" | undefined;
21
+ }[];
22
+ export declare function execute(this: IExecuteFunctions, items: INodeExecutionData[], base: string, table: string): Promise<INodeExecutionData[]>;
@@ -0,0 +1,74 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.execute = exports.description = void 0;
4
+ const utilities_1 = require("../../../../../utils/utilities");
5
+ const transport_1 = require("../../transport");
6
+ const common_descriptions_1 = require("../common.descriptions");
7
+ const utils_1 = require("../../helpers/utils");
8
+ const properties = [
9
+ {
10
+ displayName: 'Columns',
11
+ name: 'columns',
12
+ type: 'resourceMapper',
13
+ default: {
14
+ mappingMode: 'defineBelow',
15
+ value: null,
16
+ },
17
+ noDataExpression: true,
18
+ required: true,
19
+ typeOptions: {
20
+ loadOptionsDependsOn: ['table.value', 'base.value'],
21
+ resourceMapper: {
22
+ resourceMapperMethod: 'getColumns',
23
+ mode: 'add',
24
+ fieldWords: {
25
+ singular: 'column',
26
+ plural: 'columns',
27
+ },
28
+ addAllFields: true,
29
+ multiKeyMatch: true,
30
+ },
31
+ },
32
+ },
33
+ ...common_descriptions_1.insertUpdateOptions,
34
+ ];
35
+ const displayOptions = {
36
+ show: {
37
+ resource: ['record'],
38
+ operation: ['create'],
39
+ },
40
+ };
41
+ exports.description = (0, utilities_1.updateDisplayOptions)(displayOptions, properties);
42
+ async function execute(items, base, table) {
43
+ const returnData = [];
44
+ const endpoint = `${base}/${table}`;
45
+ const dataMode = this.getNodeParameter('columns.mappingMode', 0);
46
+ for (let i = 0; i < items.length; i++) {
47
+ try {
48
+ const options = this.getNodeParameter('options', i, {});
49
+ const body = {
50
+ typecast: options.typecast ? true : false,
51
+ };
52
+ if (dataMode === 'autoMapInputData') {
53
+ body.fields = (0, utils_1.removeIgnored)(items[i].json, options.ignoreFields);
54
+ }
55
+ if (dataMode === 'defineBelow') {
56
+ const fields = this.getNodeParameter('columns.value', i, []);
57
+ body.fields = fields;
58
+ }
59
+ const responseData = await transport_1.apiRequest.call(this, 'POST', endpoint, body);
60
+ const executionData = this.helpers.constructExecutionMetaData((0, utilities_1.wrapData)(responseData), { itemData: { item: i } });
61
+ returnData.push(...executionData);
62
+ }
63
+ catch (error) {
64
+ if (this.continueOnFail()) {
65
+ returnData.push({ json: { message: error.message, error } });
66
+ continue;
67
+ }
68
+ throw error;
69
+ }
70
+ }
71
+ return returnData;
72
+ }
73
+ exports.execute = execute;
74
+ //# sourceMappingURL=create.operation.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"create.operation.js","sourceRoot":"","sources":["../../../../../../nodes/Airtable/v2/actions/record/create.operation.ts"],"names":[],"mappings":"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"}
@@ -0,0 +1,22 @@
1
+ import type { INodeExecutionData, INodeProperties, IExecuteFunctions } from 'n8n-workflow';
2
+ export declare const description: {
3
+ displayOptions: import("n8n-workflow").IDisplayOptions;
4
+ displayName: string;
5
+ name: string;
6
+ type: import("n8n-workflow").NodePropertyTypes;
7
+ typeOptions?: import("n8n-workflow").INodePropertyTypeOptions | undefined;
8
+ default: import("n8n-workflow").NodeParameterValueType;
9
+ description?: string | undefined;
10
+ hint?: string | undefined;
11
+ options?: (INodeProperties | import("n8n-workflow").INodePropertyOptions | import("n8n-workflow").INodePropertyCollection)[] | undefined;
12
+ placeholder?: string | undefined;
13
+ isNodeSetting?: boolean | undefined;
14
+ noDataExpression?: boolean | undefined;
15
+ required?: boolean | undefined;
16
+ routing?: import("n8n-workflow").INodePropertyRouting | undefined;
17
+ credentialTypes?: ("extends:oAuth2Api" | "extends:oAuth1Api" | "has:authenticate" | "has:genericAuth")[] | undefined;
18
+ extractValue?: import("n8n-workflow").INodePropertyValueExtractorRegex | undefined;
19
+ modes?: import("n8n-workflow").INodePropertyMode[] | undefined;
20
+ requiresDataPath?: "single" | "multiple" | undefined;
21
+ }[];
22
+ export declare function execute(this: IExecuteFunctions, items: INodeExecutionData[], base: string, table: string): Promise<INodeExecutionData[]>;
@@ -0,0 +1,47 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.execute = exports.description = void 0;
4
+ const utilities_1 = require("../../../../../utils/utilities");
5
+ const transport_1 = require("../../transport");
6
+ const utils_1 = require("../../helpers/utils");
7
+ const properties = [
8
+ {
9
+ displayName: 'Record ID',
10
+ name: 'id',
11
+ type: 'string',
12
+ default: '',
13
+ placeholder: 'e.g. recf7EaZp707CEc8g',
14
+ required: true,
15
+ description: 'ID of the record to delete. <a href="https://support.airtable.com/docs/record-id" target="_blank">More info</a>.',
16
+ },
17
+ ];
18
+ const displayOptions = {
19
+ show: {
20
+ resource: ['record'],
21
+ operation: ['deleteRecord'],
22
+ },
23
+ };
24
+ exports.description = (0, utilities_1.updateDisplayOptions)(displayOptions, properties);
25
+ async function execute(items, base, table) {
26
+ const returnData = [];
27
+ for (let i = 0; i < items.length; i++) {
28
+ let id;
29
+ try {
30
+ id = this.getNodeParameter('id', i);
31
+ const responseData = await transport_1.apiRequest.call(this, 'DELETE', `${base}/${table}/${id}`);
32
+ const executionData = this.helpers.constructExecutionMetaData((0, utilities_1.wrapData)(responseData), { itemData: { item: i } });
33
+ returnData.push(...executionData);
34
+ }
35
+ catch (error) {
36
+ error = (0, utils_1.processAirtableError)(error, id);
37
+ if (this.continueOnFail()) {
38
+ returnData.push({ json: { error: error.message } });
39
+ continue;
40
+ }
41
+ throw error;
42
+ }
43
+ }
44
+ return returnData;
45
+ }
46
+ exports.execute = execute;
47
+ //# sourceMappingURL=deleteRecord.operation.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"deleteRecord.operation.js","sourceRoot":"","sources":["../../../../../../nodes/Airtable/v2/actions/record/deleteRecord.operation.ts"],"names":[],"mappings":";;;AAOA,8DAAgF;AAChF,+CAA6C;AAC7C,+CAA2D;AAE3D,MAAM,UAAU,GAAsB;IACrC;QACC,WAAW,EAAE,WAAW;QACxB,IAAI,EAAE,IAAI;QACV,IAAI,EAAE,QAAQ;QACd,OAAO,EAAE,EAAE;QACX,WAAW,EAAE,wBAAwB;QACrC,QAAQ,EAAE,IAAI;QAEd,WAAW,EACV,kHAAkH;KACnH;CACD,CAAC;AAEF,MAAM,cAAc,GAAG;IACtB,IAAI,EAAE;QACL,QAAQ,EAAE,CAAC,QAAQ,CAAC;QACpB,SAAS,EAAE,CAAC,cAAc,CAAC;KAC3B;CACD,CAAC;AAEW,QAAA,WAAW,GAAG,IAAA,gCAAoB,EAAC,cAAc,EAAE,UAAU,CAAC,CAAC;AAErE,KAAK,UAAU,OAAO,CAE5B,KAA2B,EAC3B,IAAY,EACZ,KAAa;IAEb,MAAM,UAAU,GAAyB,EAAE,CAAC;IAE5C,KAAK,IAAI,CAAC,GAAG,CAAC,EAAE,CAAC,GAAG,KAAK,CAAC,MAAM,EAAE,CAAC,EAAE,EAAE;QACtC,IAAI,EAAE,CAAC;QACP,IAAI;YACH,EAAE,GAAG,IAAI,CAAC,gBAAgB,CAAC,IAAI,EAAE,CAAC,CAAW,CAAC;YAE9C,MAAM,YAAY,GAAG,MAAM,sBAAU,CAAC,IAAI,CAAC,IAAI,EAAE,QAAQ,EAAE,GAAG,IAAI,IAAI,KAAK,IAAI,EAAE,EAAE,CAAC,CAAC;YAErF,MAAM,aAAa,GAAG,IAAI,CAAC,OAAO,CAAC,0BAA0B,CAC5D,IAAA,oBAAQ,EAAC,YAA6B,CAAC,EACvC,EAAE,QAAQ,EAAE,EAAE,IAAI,EAAE,CAAC,EAAE,EAAE,CACzB,CAAC;YAEF,UAAU,CAAC,IAAI,CAAC,GAAG,aAAa,CAAC,CAAC;SAClC;QAAC,OAAO,KAAK,EAAE;YACf,KAAK,GAAG,IAAA,4BAAoB,EAAC,KAAqB,EAAE,EAAE,CAAC,CAAC;YACxD,IAAI,IAAI,CAAC,cAAc,EAAE,EAAE;gBAC1B,UAAU,CAAC,IAAI,CAAC,EAAE,IAAI,EAAE,EAAE,KAAK,EAAE,KAAK,CAAC,OAAO,EAAE,EAAE,CAAC,CAAC;gBACpD,SAAS;aACT;YACD,MAAM,KAAK,CAAC;SACZ;KACD;IAED,OAAO,UAAU,CAAC;AACnB,CAAC;AAhCD,0BAgCC"}
@@ -0,0 +1,22 @@
1
+ import type { INodeExecutionData, INodeProperties, IExecuteFunctions } from 'n8n-workflow';
2
+ export declare const description: {
3
+ displayOptions: import("n8n-workflow").IDisplayOptions;
4
+ displayName: string;
5
+ name: string;
6
+ type: import("n8n-workflow").NodePropertyTypes;
7
+ typeOptions?: import("n8n-workflow").INodePropertyTypeOptions | undefined;
8
+ default: import("n8n-workflow").NodeParameterValueType;
9
+ description?: string | undefined;
10
+ hint?: string | undefined;
11
+ options?: (INodeProperties | import("n8n-workflow").INodePropertyOptions | import("n8n-workflow").INodePropertyCollection)[] | undefined;
12
+ placeholder?: string | undefined;
13
+ isNodeSetting?: boolean | undefined;
14
+ noDataExpression?: boolean | undefined;
15
+ required?: boolean | undefined;
16
+ routing?: import("n8n-workflow").INodePropertyRouting | undefined;
17
+ credentialTypes?: ("extends:oAuth2Api" | "extends:oAuth1Api" | "has:authenticate" | "has:genericAuth")[] | undefined;
18
+ extractValue?: import("n8n-workflow").INodePropertyValueExtractorRegex | undefined;
19
+ modes?: import("n8n-workflow").INodePropertyMode[] | undefined;
20
+ requiresDataPath?: "single" | "multiple" | undefined;
21
+ }[];
22
+ export declare function execute(this: IExecuteFunctions, items: INodeExecutionData[], base: string, table: string): Promise<INodeExecutionData[]>;
@@ -0,0 +1,74 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.execute = exports.description = void 0;
4
+ const utilities_1 = require("../../../../../utils/utilities");
5
+ const transport_1 = require("../../transport");
6
+ const utils_1 = require("../../helpers/utils");
7
+ const properties = [
8
+ {
9
+ displayName: 'Record ID',
10
+ name: 'id',
11
+ type: 'string',
12
+ default: '',
13
+ placeholder: 'e.g. recf7EaZp707CEc8g',
14
+ required: true,
15
+ description: 'ID of the record to get. <a href="https://support.airtable.com/docs/record-id" target="_blank">More info</a>.',
16
+ },
17
+ {
18
+ displayName: 'Options',
19
+ name: 'options',
20
+ type: 'collection',
21
+ default: {},
22
+ description: 'Additional options which decide which records should be returned',
23
+ placeholder: 'Add Option',
24
+ options: [
25
+ {
26
+ displayName: 'Download Attachments',
27
+ name: 'downloadFields',
28
+ type: 'multiOptions',
29
+ typeOptions: {
30
+ loadOptionsMethod: 'getAttachmentColumns',
31
+ loadOptionsDependsOn: ['base.value', 'table.value'],
32
+ },
33
+ default: [],
34
+ description: "The fields of type 'attachment' that should be downloaded",
35
+ },
36
+ ],
37
+ },
38
+ ];
39
+ const displayOptions = {
40
+ show: {
41
+ resource: ['record'],
42
+ operation: ['get'],
43
+ },
44
+ };
45
+ exports.description = (0, utilities_1.updateDisplayOptions)(displayOptions, properties);
46
+ async function execute(items, base, table) {
47
+ const returnData = [];
48
+ for (let i = 0; i < items.length; i++) {
49
+ let id;
50
+ try {
51
+ id = this.getNodeParameter('id', i);
52
+ const responseData = await transport_1.apiRequest.call(this, 'GET', `${base}/${table}/${id}`);
53
+ const options = this.getNodeParameter('options', 0, {});
54
+ if (options.downloadFields) {
55
+ const itemWithAttachments = await transport_1.downloadRecordAttachments.call(this, [responseData], options.downloadFields);
56
+ returnData.push(...itemWithAttachments);
57
+ continue;
58
+ }
59
+ const executionData = this.helpers.constructExecutionMetaData((0, utilities_1.wrapData)((0, utils_1.flattenOutput)(responseData)), { itemData: { item: i } });
60
+ returnData.push(...executionData);
61
+ }
62
+ catch (error) {
63
+ error = (0, utils_1.processAirtableError)(error, id);
64
+ if (this.continueOnFail()) {
65
+ returnData.push({ json: { error: error.message } });
66
+ continue;
67
+ }
68
+ throw error;
69
+ }
70
+ }
71
+ return returnData;
72
+ }
73
+ exports.execute = execute;
74
+ //# sourceMappingURL=get.operation.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"get.operation.js","sourceRoot":"","sources":["../../../../../../nodes/Airtable/v2/actions/record/get.operation.ts"],"names":[],"mappings":";;;AAOA,8DAAgF;AAChF,+CAAwE;AACxE,+CAA0E;AAG1E,MAAM,UAAU,GAAsB;IACrC;QACC,WAAW,EAAE,WAAW;QACxB,IAAI,EAAE,IAAI;QACV,IAAI,EAAE,QAAQ;QACd,OAAO,EAAE,EAAE;QACX,WAAW,EAAE,wBAAwB;QACrC,QAAQ,EAAE,IAAI;QAEd,WAAW,EACV,+GAA+G;KAChH;IACD;QACC,WAAW,EAAE,SAAS;QACtB,IAAI,EAAE,SAAS;QACf,IAAI,EAAE,YAAY;QAClB,OAAO,EAAE,EAAE;QACX,WAAW,EAAE,kEAAkE;QAC/E,WAAW,EAAE,YAAY;QACzB,OAAO,EAAE;YACR;gBAEC,WAAW,EAAE,sBAAsB;gBACnC,IAAI,EAAE,gBAAgB;gBACtB,IAAI,EAAE,cAAc;gBACpB,WAAW,EAAE;oBACZ,iBAAiB,EAAE,sBAAsB;oBACzC,oBAAoB,EAAE,CAAC,YAAY,EAAE,aAAa,CAAC;iBACnD;gBACD,OAAO,EAAE,EAAE;gBAEX,WAAW,EAAE,2DAA2D;aACxE;SACD;KACD;CACD,CAAC;AAEF,MAAM,cAAc,GAAG;IACtB,IAAI,EAAE;QACL,QAAQ,EAAE,CAAC,QAAQ,CAAC;QACpB,SAAS,EAAE,CAAC,KAAK,CAAC;KAClB;CACD,CAAC;AAEW,QAAA,WAAW,GAAG,IAAA,gCAAoB,EAAC,cAAc,EAAE,UAAU,CAAC,CAAC;AAErE,KAAK,UAAU,OAAO,CAE5B,KAA2B,EAC3B,IAAY,EACZ,KAAa;IAEb,MAAM,UAAU,GAAyB,EAAE,CAAC;IAE5C,KAAK,IAAI,CAAC,GAAG,CAAC,EAAE,CAAC,GAAG,KAAK,CAAC,MAAM,EAAE,CAAC,EAAE,EAAE;QACtC,IAAI,EAAE,CAAC;QACP,IAAI;YACH,EAAE,GAAG,IAAI,CAAC,gBAAgB,CAAC,IAAI,EAAE,CAAC,CAAW,CAAC;YAE9C,MAAM,YAAY,GAAG,MAAM,sBAAU,CAAC,IAAI,CAAC,IAAI,EAAE,KAAK,EAAE,GAAG,IAAI,IAAI,KAAK,IAAI,EAAE,EAAE,CAAC,CAAC;YAElF,MAAM,OAAO,GAAG,IAAI,CAAC,gBAAgB,CAAC,SAAS,EAAE,CAAC,EAAE,EAAE,CAAC,CAAC;YAExD,IAAI,OAAO,CAAC,cAAc,EAAE;gBAC3B,MAAM,mBAAmB,GAAG,MAAM,qCAAyB,CAAC,IAAI,CAC/D,IAAI,EACJ,CAAC,YAAY,CAAc,EAC3B,OAAO,CAAC,cAA0B,CAClC,CAAC;gBACF,UAAU,CAAC,IAAI,CAAC,GAAG,mBAAmB,CAAC,CAAC;gBACxC,SAAS;aACT;YAED,MAAM,aAAa,GAAG,IAAI,CAAC,OAAO,CAAC,0BAA0B,CAC5D,IAAA,oBAAQ,EAAC,IAAA,qBAAa,EAAC,YAA2B,CAAC,CAAC,EACpD,EAAE,QAAQ,EAAE,EAAE,IAAI,EAAE,CAAC,EAAE,EAAE,CACzB,CAAC;YAEF,UAAU,CAAC,IAAI,CAAC,GAAG,aAAa,CAAC,CAAC;SAClC;QAAC,OAAO,KAAK,EAAE;YACf,KAAK,GAAG,IAAA,4BAAoB,EAAC,KAAqB,EAAE,EAAE,CAAC,CAAC;YACxD,IAAI,IAAI,CAAC,cAAc,EAAE,EAAE;gBAC1B,UAAU,CAAC,IAAI,CAAC,EAAE,IAAI,EAAE,EAAE,KAAK,EAAE,KAAK,CAAC,OAAO,EAAE,EAAE,CAAC,CAAC;gBACpD,SAAS;aACT;YACD,MAAM,KAAK,CAAC;SACZ;KACD;IAED,OAAO,UAAU,CAAC;AACnB,CAAC;AA5CD,0BA4CC"}
@@ -0,0 +1,22 @@
1
+ import type { INodeExecutionData, INodeProperties, IExecuteFunctions } from 'n8n-workflow';
2
+ export declare const description: {
3
+ displayOptions: import("n8n-workflow").IDisplayOptions;
4
+ displayName: string;
5
+ name: string;
6
+ type: import("n8n-workflow").NodePropertyTypes;
7
+ typeOptions?: import("n8n-workflow").INodePropertyTypeOptions | undefined;
8
+ default: import("n8n-workflow").NodeParameterValueType;
9
+ description?: string | undefined;
10
+ hint?: string | undefined;
11
+ options?: (INodeProperties | import("n8n-workflow").INodePropertyOptions | import("n8n-workflow").INodePropertyCollection)[] | undefined;
12
+ placeholder?: string | undefined;
13
+ isNodeSetting?: boolean | undefined;
14
+ noDataExpression?: boolean | undefined;
15
+ required?: boolean | undefined;
16
+ routing?: import("n8n-workflow").INodePropertyRouting | undefined;
17
+ credentialTypes?: ("extends:oAuth2Api" | "extends:oAuth1Api" | "has:authenticate" | "has:genericAuth")[] | undefined;
18
+ extractValue?: import("n8n-workflow").INodePropertyValueExtractorRegex | undefined;
19
+ modes?: import("n8n-workflow").INodePropertyMode[] | undefined;
20
+ requiresDataPath?: "single" | "multiple" | undefined;
21
+ }[];
22
+ export declare function execute(this: IExecuteFunctions, items: INodeExecutionData[], base: string, table: string): Promise<INodeExecutionData[]>;
@@ -0,0 +1,188 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.execute = exports.description = void 0;
4
+ const utilities_1 = require("../../../../../utils/utilities");
5
+ const transport_1 = require("../../transport");
6
+ const utils_1 = require("../../helpers/utils");
7
+ const common_descriptions_1 = require("../common.descriptions");
8
+ const properties = [
9
+ {
10
+ displayName: 'Filter By Formula',
11
+ name: 'filterByFormula',
12
+ type: 'string',
13
+ default: '',
14
+ placeholder: "e.g. NOT({Name} = 'Admin')",
15
+ hint: 'If empty, all the records will be returned',
16
+ description: 'The formula will be evaluated for each record, and if the result is not 0, false, "", NaN, [], or #Error! the record will be included in the response. <a href="https://support.airtable.com/docs/formula-field-reference" target="_blank">More info</a>.',
17
+ },
18
+ {
19
+ displayName: 'Return All',
20
+ name: 'returnAll',
21
+ type: 'boolean',
22
+ default: true,
23
+ description: 'Whether to return all results or only up to a given limit',
24
+ },
25
+ {
26
+ displayName: 'Limit',
27
+ name: 'limit',
28
+ type: 'number',
29
+ displayOptions: {
30
+ show: {
31
+ returnAll: [false],
32
+ },
33
+ },
34
+ typeOptions: {
35
+ minValue: 1,
36
+ maxValue: 100,
37
+ },
38
+ default: 100,
39
+ description: 'Max number of results to return',
40
+ },
41
+ {
42
+ displayName: 'Options',
43
+ name: 'options',
44
+ type: 'collection',
45
+ default: {},
46
+ description: 'Additional options which decide which records should be returned',
47
+ placeholder: 'Add Option',
48
+ options: [
49
+ {
50
+ displayName: 'Download Attachments',
51
+ name: 'downloadFields',
52
+ type: 'multiOptions',
53
+ typeOptions: {
54
+ loadOptionsMethod: 'getAttachmentColumns',
55
+ loadOptionsDependsOn: ['base.value', 'table.value'],
56
+ },
57
+ default: [],
58
+ description: "The fields of type 'attachment' that should be downloaded",
59
+ },
60
+ {
61
+ displayName: 'Output Fields',
62
+ name: 'fields',
63
+ type: 'multiOptions',
64
+ typeOptions: {
65
+ loadOptionsMethod: 'getColumns',
66
+ loadOptionsDependsOn: ['base.value', 'table.value'],
67
+ },
68
+ default: [],
69
+ description: 'The fields you want to include in the output',
70
+ },
71
+ common_descriptions_1.viewRLC,
72
+ ],
73
+ },
74
+ {
75
+ displayName: 'Sort',
76
+ name: 'sort',
77
+ placeholder: 'Add Sort Rule',
78
+ description: 'Defines how the returned records should be ordered',
79
+ type: 'fixedCollection',
80
+ typeOptions: {
81
+ multipleValues: true,
82
+ },
83
+ default: {},
84
+ options: [
85
+ {
86
+ name: 'property',
87
+ displayName: 'Property',
88
+ values: [
89
+ {
90
+ displayName: 'Field',
91
+ name: 'field',
92
+ type: 'options',
93
+ typeOptions: {
94
+ loadOptionsMethod: 'getColumns',
95
+ loadOptionsDependsOn: ['base.value', 'table.value'],
96
+ },
97
+ default: '',
98
+ description: 'Name of the field to sort on. Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/code-examples/expressions/">expression</a>.',
99
+ },
100
+ {
101
+ displayName: 'Direction',
102
+ name: 'direction',
103
+ type: 'options',
104
+ options: [
105
+ {
106
+ name: 'ASC',
107
+ value: 'asc',
108
+ description: 'Sort in ascending order (small -> large)',
109
+ },
110
+ {
111
+ name: 'DESC',
112
+ value: 'desc',
113
+ description: 'Sort in descending order (large -> small)',
114
+ },
115
+ ],
116
+ default: 'asc',
117
+ description: 'The sort direction',
118
+ },
119
+ ],
120
+ },
121
+ ],
122
+ },
123
+ ];
124
+ const displayOptions = {
125
+ show: {
126
+ resource: ['record'],
127
+ operation: ['search'],
128
+ },
129
+ };
130
+ exports.description = (0, utilities_1.updateDisplayOptions)(displayOptions, properties);
131
+ async function execute(items, base, table) {
132
+ let returnData = [];
133
+ const body = {};
134
+ const qs = {};
135
+ const endpoint = `${base}/${table}`;
136
+ try {
137
+ const returnAll = this.getNodeParameter('returnAll', 0);
138
+ const options = this.getNodeParameter('options', 0, {});
139
+ const sort = this.getNodeParameter('sort', 0, {});
140
+ const filterByFormula = this.getNodeParameter('filterByFormula', 0);
141
+ if (filterByFormula) {
142
+ qs.filterByFormula = filterByFormula;
143
+ }
144
+ if (options.fields) {
145
+ if (typeof options.fields === 'string') {
146
+ qs.fields = options.fields.split(',').map((field) => field.trim());
147
+ }
148
+ else {
149
+ qs.fields = options.fields;
150
+ }
151
+ }
152
+ if (sort.property) {
153
+ qs.sort = sort.property;
154
+ }
155
+ if (options.view) {
156
+ qs.view = options.view.value;
157
+ }
158
+ let responseData;
159
+ if (returnAll) {
160
+ responseData = await transport_1.apiRequestAllItems.call(this, 'GET', endpoint, body, qs);
161
+ }
162
+ else {
163
+ qs.maxRecords = this.getNodeParameter('limit', 0);
164
+ responseData = await transport_1.apiRequest.call(this, 'GET', endpoint, body, qs);
165
+ }
166
+ returnData = responseData.records;
167
+ if (options.downloadFields) {
168
+ return await transport_1.downloadRecordAttachments.call(this, responseData.records, options.downloadFields);
169
+ }
170
+ returnData = returnData.map((record) => ({
171
+ json: (0, utils_1.flattenOutput)(record),
172
+ }));
173
+ returnData = this.helpers.constructExecutionMetaData(returnData, {
174
+ itemData: { item: 0 },
175
+ });
176
+ }
177
+ catch (error) {
178
+ if (this.continueOnFail()) {
179
+ returnData.push({ json: { message: error.message, error } });
180
+ }
181
+ else {
182
+ throw error;
183
+ }
184
+ }
185
+ return returnData;
186
+ }
187
+ exports.execute = execute;
188
+ //# sourceMappingURL=search.operation.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"search.operation.js","sourceRoot":"","sources":["../../../../../../nodes/Airtable/v2/actions/record/search.operation.ts"],"names":[],"mappings":"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"}
@@ -0,0 +1,22 @@
1
+ import type { INodeExecutionData, INodeProperties, IExecuteFunctions } from 'n8n-workflow';
2
+ export declare const description: {
3
+ displayOptions: import("n8n-workflow").IDisplayOptions;
4
+ displayName: string;
5
+ name: string;
6
+ type: import("n8n-workflow").NodePropertyTypes;
7
+ typeOptions?: import("n8n-workflow").INodePropertyTypeOptions | undefined;
8
+ default: import("n8n-workflow").NodeParameterValueType;
9
+ description?: string | undefined;
10
+ hint?: string | undefined;
11
+ options?: (INodeProperties | import("n8n-workflow").INodePropertyOptions | import("n8n-workflow").INodePropertyCollection)[] | undefined;
12
+ placeholder?: string | undefined;
13
+ isNodeSetting?: boolean | undefined;
14
+ noDataExpression?: boolean | undefined;
15
+ required?: boolean | undefined;
16
+ routing?: import("n8n-workflow").INodePropertyRouting | undefined;
17
+ credentialTypes?: ("extends:oAuth2Api" | "extends:oAuth1Api" | "has:authenticate" | "has:genericAuth")[] | undefined;
18
+ extractValue?: import("n8n-workflow").INodePropertyValueExtractorRegex | undefined;
19
+ modes?: import("n8n-workflow").INodePropertyMode[] | undefined;
20
+ requiresDataPath?: "single" | "multiple" | undefined;
21
+ }[];
22
+ export declare function execute(this: IExecuteFunctions, items: INodeExecutionData[], base: string, table: string): Promise<INodeExecutionData[]>;