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.
- package/dist/build.tsbuildinfo +1 -1
- package/dist/credentials/AirtableTokenApi.credentials.js +10 -0
- package/dist/credentials/AirtableTokenApi.credentials.js.map +1 -1
- package/dist/credentials/CrowdDevApi.credentials.d.ts +9 -0
- package/dist/credentials/CrowdDevApi.credentials.js +62 -0
- package/dist/credentials/CrowdDevApi.credentials.js.map +1 -0
- package/dist/credentials/GoogleDriveOAuth2Api.credentials.js +6 -0
- package/dist/credentials/GoogleDriveOAuth2Api.credentials.js.map +1 -1
- package/dist/credentials/GoogleSheetsOAuth2Api.credentials.js +3 -0
- package/dist/credentials/GoogleSheetsOAuth2Api.credentials.js.map +1 -1
- package/dist/credentials/GoogleSheetsTriggerOAuth2Api.credentials.js +3 -0
- package/dist/credentials/GoogleSheetsTriggerOAuth2Api.credentials.js.map +1 -1
- package/dist/credentials/HttpCustomAuth.credentials.d.ts +9 -0
- package/dist/credentials/HttpCustomAuth.credentials.js +25 -0
- package/dist/credentials/HttpCustomAuth.credentials.js.map +1 -0
- package/dist/credentials/TwitterOAuth1Api.credentials.js +6 -0
- package/dist/credentials/TwitterOAuth1Api.credentials.js.map +1 -1
- package/dist/credentials/TwitterOAuth2Api.credentials.d.ts +8 -0
- package/dist/credentials/TwitterOAuth2Api.credentials.js +73 -0
- package/dist/credentials/TwitterOAuth2Api.credentials.js.map +1 -0
- package/dist/known/credentials.json +36 -6
- package/dist/known/nodes.json +8 -0
- package/dist/methods/defined.json +6 -0
- package/dist/methods/referenced.json +4 -0
- package/dist/nodes/ActionNetwork/GenericFunctions.d.ts +23 -7
- package/dist/nodes/ActionNetwork/types.d.ts +79 -0
- package/dist/nodes/ActionNetwork/types.js +3 -0
- package/dist/nodes/ActionNetwork/types.js.map +1 -0
- package/dist/nodes/Adalo/types.d.ts +9 -0
- package/dist/nodes/Adalo/types.js +3 -0
- package/dist/nodes/Adalo/types.js.map +1 -0
- package/dist/nodes/Airtable/Airtable.node.d.ts +3 -4
- package/dist/nodes/Airtable/Airtable.node.js +10 -701
- package/dist/nodes/Airtable/Airtable.node.js.map +1 -1
- package/dist/nodes/Airtable/AirtableTrigger.node.js +14 -1
- package/dist/nodes/Airtable/AirtableTrigger.node.js.map +1 -1
- package/dist/nodes/Airtable/test/v2/node/helpers.d.ts +3 -0
- package/dist/nodes/Airtable/test/v2/node/helpers.js +31 -0
- package/dist/nodes/Airtable/test/v2/node/helpers.js.map +1 -0
- package/dist/nodes/Airtable/v1/AirtableV1.node.d.ts +6 -0
- package/dist/nodes/Airtable/v1/AirtableV1.node.js +722 -0
- package/dist/nodes/Airtable/v1/AirtableV1.node.js.map +1 -0
- package/dist/nodes/Airtable/v1/GenericFunctions.js.map +1 -0
- package/dist/nodes/Airtable/v2/AirtableV2.node.d.ts +12 -0
- package/dist/nodes/Airtable/v2/AirtableV2.node.js +24 -0
- package/dist/nodes/Airtable/v2/AirtableV2.node.js.map +1 -0
- package/dist/nodes/Airtable/v2/actions/base/Base.resource.d.ts +5 -0
- package/dist/nodes/Airtable/v2/actions/base/Base.resource.js +61 -0
- package/dist/nodes/Airtable/v2/actions/base/Base.resource.js.map +1 -0
- package/dist/nodes/Airtable/v2/actions/base/getMany.operation.d.ts +22 -0
- package/dist/nodes/Airtable/v2/actions/base/getMany.operation.js +106 -0
- package/dist/nodes/Airtable/v2/actions/base/getMany.operation.js.map +1 -0
- package/dist/nodes/Airtable/v2/actions/base/getSchema.operation.d.ts +22 -0
- package/dist/nodes/Airtable/v2/actions/base/getSchema.operation.js +42 -0
- package/dist/nodes/Airtable/v2/actions/base/getSchema.operation.js.map +1 -0
- package/dist/nodes/Airtable/v2/actions/common.descriptions.d.ts +5 -0
- package/dist/nodes/Airtable/v2/actions/common.descriptions.js +203 -0
- package/dist/nodes/Airtable/v2/actions/common.descriptions.js.map +1 -0
- package/dist/nodes/Airtable/v2/actions/node.type.d.ts +8 -0
- package/dist/nodes/Airtable/v2/actions/node.type.js +3 -0
- package/dist/nodes/Airtable/v2/actions/node.type.js.map +1 -0
- package/dist/nodes/Airtable/v2/actions/record/Record.resource.d.ts +9 -0
- package/dist/nodes/Airtable/v2/actions/record/Record.resource.js +114 -0
- package/dist/nodes/Airtable/v2/actions/record/Record.resource.js.map +1 -0
- package/dist/nodes/Airtable/v2/actions/record/create.operation.d.ts +22 -0
- package/dist/nodes/Airtable/v2/actions/record/create.operation.js +74 -0
- package/dist/nodes/Airtable/v2/actions/record/create.operation.js.map +1 -0
- package/dist/nodes/Airtable/v2/actions/record/deleteRecord.operation.d.ts +22 -0
- package/dist/nodes/Airtable/v2/actions/record/deleteRecord.operation.js +47 -0
- package/dist/nodes/Airtable/v2/actions/record/deleteRecord.operation.js.map +1 -0
- package/dist/nodes/Airtable/v2/actions/record/get.operation.d.ts +22 -0
- package/dist/nodes/Airtable/v2/actions/record/get.operation.js +74 -0
- package/dist/nodes/Airtable/v2/actions/record/get.operation.js.map +1 -0
- package/dist/nodes/Airtable/v2/actions/record/search.operation.d.ts +22 -0
- package/dist/nodes/Airtable/v2/actions/record/search.operation.js +188 -0
- package/dist/nodes/Airtable/v2/actions/record/search.operation.js.map +1 -0
- package/dist/nodes/Airtable/v2/actions/record/update.operation.d.ts +22 -0
- package/dist/nodes/Airtable/v2/actions/record/update.operation.js +106 -0
- package/dist/nodes/Airtable/v2/actions/record/update.operation.js.map +1 -0
- package/dist/nodes/Airtable/v2/actions/record/upsert.operation.d.ts +22 -0
- package/dist/nodes/Airtable/v2/actions/record/upsert.operation.js +129 -0
- package/dist/nodes/Airtable/v2/actions/record/upsert.operation.js.map +1 -0
- package/dist/nodes/Airtable/v2/actions/router.d.ts +2 -0
- package/dist/nodes/Airtable/v2/actions/router.js +67 -0
- package/dist/nodes/Airtable/v2/actions/router.js.map +1 -0
- package/dist/nodes/Airtable/v2/actions/versionDescription.d.ts +2 -0
- package/dist/nodes/Airtable/v2/actions/versionDescription.js +100 -0
- package/dist/nodes/Airtable/v2/actions/versionDescription.js.map +1 -0
- package/dist/nodes/Airtable/v2/helpers/interfaces.d.ts +22 -0
- package/dist/nodes/Airtable/v2/helpers/interfaces.js +3 -0
- package/dist/nodes/Airtable/v2/helpers/interfaces.js.map +1 -0
- package/dist/nodes/Airtable/v2/helpers/utils.d.ts +8 -0
- package/dist/nodes/Airtable/v2/helpers/utils.js +76 -0
- package/dist/nodes/Airtable/v2/helpers/utils.js.map +1 -0
- package/dist/nodes/Airtable/v2/methods/index.d.ts +3 -0
- package/dist/nodes/Airtable/v2/methods/index.js +30 -0
- package/dist/nodes/Airtable/v2/methods/index.js.map +1 -0
- package/dist/nodes/Airtable/v2/methods/listSearch.d.ts +4 -0
- package/dist/nodes/Airtable/v2/methods/listSearch.js +124 -0
- package/dist/nodes/Airtable/v2/methods/listSearch.js.map +1 -0
- package/dist/nodes/Airtable/v2/methods/loadOptions.d.ts +5 -0
- package/dist/nodes/Airtable/v2/methods/loadOptions.js +78 -0
- package/dist/nodes/Airtable/v2/methods/loadOptions.js.map +1 -0
- package/dist/nodes/Airtable/v2/methods/resourceMapping.d.ts +3 -0
- package/dist/nodes/Airtable/v2/methods/resourceMapping.js +105 -0
- package/dist/nodes/Airtable/v2/methods/resourceMapping.js.map +1 -0
- package/dist/nodes/Airtable/v2/transport/index.d.ts +8 -0
- package/dist/nodes/Airtable/v2/transport/index.js +102 -0
- package/dist/nodes/Airtable/v2/transport/index.js.map +1 -0
- package/dist/nodes/Aws/DynamoDB/types.d.ts +67 -0
- package/dist/nodes/Aws/DynamoDB/types.js +17 -0
- package/dist/nodes/Aws/DynamoDB/types.js.map +1 -0
- package/dist/nodes/Aws/S3/V2/AwsS3V2.node.js +50 -32
- package/dist/nodes/Aws/S3/V2/AwsS3V2.node.js.map +1 -1
- package/dist/nodes/Baserow/types.d.ts +35 -0
- package/dist/nodes/Baserow/types.js +3 -0
- package/dist/nodes/Baserow/types.js.map +1 -0
- package/dist/nodes/Chargebee/Chargebee.node.js +0 -2
- package/dist/nodes/Chargebee/Chargebee.node.js.map +1 -1
- package/dist/nodes/Copper/utils/types.d.ts +26 -0
- package/dist/nodes/Copper/utils/types.js +3 -0
- package/dist/nodes/Copper/utils/types.js.map +1 -0
- package/dist/nodes/CrateDb/CrateDb.node.js +1 -1
- package/dist/nodes/CrateDb/CrateDb.node.js.map +1 -1
- package/dist/nodes/CrowdDev/CrowdDev.node.d.ts +4 -0
- package/dist/nodes/CrowdDev/CrowdDev.node.js +36 -0
- package/dist/nodes/CrowdDev/CrowdDev.node.js.map +1 -0
- package/dist/nodes/CrowdDev/CrowdDev.node.json +18 -0
- package/dist/nodes/CrowdDev/CrowdDevTrigger.node.d.ts +12 -0
- package/dist/nodes/CrowdDev/CrowdDevTrigger.node.js +145 -0
- package/dist/nodes/CrowdDev/CrowdDevTrigger.node.js.map +1 -0
- package/dist/nodes/CrowdDev/CrowdDevTrigger.node.json +18 -0
- package/dist/nodes/CrowdDev/GenericFunctions.d.ts +7 -0
- package/dist/nodes/CrowdDev/GenericFunctions.js +157 -0
- package/dist/nodes/CrowdDev/GenericFunctions.js.map +1 -0
- package/dist/nodes/CrowdDev/crowdDev.svg +15 -0
- package/dist/nodes/CrowdDev/descriptions/activityFields.d.ts +4 -0
- package/dist/nodes/CrowdDev/descriptions/activityFields.js +180 -0
- package/dist/nodes/CrowdDev/descriptions/activityFields.js.map +1 -0
- package/dist/nodes/CrowdDev/descriptions/automationFields.d.ts +4 -0
- package/dist/nodes/CrowdDev/descriptions/automationFields.js +126 -0
- package/dist/nodes/CrowdDev/descriptions/automationFields.js.map +1 -0
- package/dist/nodes/CrowdDev/descriptions/index.d.ts +2 -0
- package/dist/nodes/CrowdDev/descriptions/index.js +26 -0
- package/dist/nodes/CrowdDev/descriptions/index.js.map +1 -0
- package/dist/nodes/CrowdDev/descriptions/memberFields.d.ts +4 -0
- package/dist/nodes/CrowdDev/descriptions/memberFields.js +291 -0
- package/dist/nodes/CrowdDev/descriptions/memberFields.js.map +1 -0
- package/dist/nodes/CrowdDev/descriptions/noteFields.d.ts +4 -0
- package/dist/nodes/CrowdDev/descriptions/noteFields.js +90 -0
- package/dist/nodes/CrowdDev/descriptions/noteFields.js.map +1 -0
- package/dist/nodes/CrowdDev/descriptions/organizationFields.d.ts +4 -0
- package/dist/nodes/CrowdDev/descriptions/organizationFields.js +146 -0
- package/dist/nodes/CrowdDev/descriptions/organizationFields.js.map +1 -0
- package/dist/nodes/CrowdDev/descriptions/resources.d.ts +2 -0
- package/dist/nodes/CrowdDev/descriptions/resources.js +38 -0
- package/dist/nodes/CrowdDev/descriptions/resources.js.map +1 -0
- package/dist/nodes/CrowdDev/descriptions/shared.d.ts +2 -0
- package/dist/nodes/CrowdDev/descriptions/shared.js +29 -0
- package/dist/nodes/CrowdDev/descriptions/shared.js.map +1 -0
- package/dist/nodes/CrowdDev/descriptions/taskFields.d.ts +4 -0
- package/dist/nodes/CrowdDev/descriptions/taskFields.js +159 -0
- package/dist/nodes/CrowdDev/descriptions/taskFields.js.map +1 -0
- package/dist/nodes/CrowdDev/descriptions/utils.d.ts +5 -0
- package/dist/nodes/CrowdDev/descriptions/utils.js +55 -0
- package/dist/nodes/CrowdDev/descriptions/utils.js.map +1 -0
- package/dist/nodes/Disqus/Disqus.node.js +0 -2
- package/dist/nodes/Disqus/Disqus.node.js.map +1 -1
- package/dist/nodes/Elastic/ElasticSecurity/types.d.ts +48 -0
- package/dist/nodes/Elastic/ElasticSecurity/types.js +3 -0
- package/dist/nodes/Elastic/ElasticSecurity/types.js.map +1 -0
- package/dist/nodes/Elastic/Elasticsearch/types.d.ts +39 -0
- package/dist/nodes/Elastic/Elasticsearch/types.js +3 -0
- package/dist/nodes/Elastic/Elasticsearch/types.js.map +1 -0
- package/dist/nodes/Freshservice/types.d.ts +27 -0
- package/dist/nodes/Freshservice/types.js +3 -0
- package/dist/nodes/Freshservice/types.js.map +1 -0
- package/dist/nodes/FreshworksCrm/types.d.ts +36 -0
- package/dist/nodes/FreshworksCrm/types.js +3 -0
- package/dist/nodes/FreshworksCrm/types.js.map +1 -0
- package/dist/nodes/Git/Git.node.js +0 -2
- package/dist/nodes/Git/Git.node.js.map +1 -1
- package/dist/nodes/Gitlab/Gitlab.node.js +0 -16
- package/dist/nodes/Gitlab/Gitlab.node.js.map +1 -1
- package/dist/nodes/Google/BigQuery/v1/GoogleBigQueryV1.node.d.ts +1 -2
- package/dist/nodes/Google/BigQuery/v1/GoogleBigQueryV1.node.js.map +1 -1
- package/dist/nodes/Google/BigQuery/v2/GoogleBigQueryV2.node.d.ts +1 -2
- package/dist/nodes/Google/BigQuery/v2/GoogleBigQueryV2.node.js.map +1 -1
- package/dist/nodes/Google/BigQuery/v2/actions/database/executeQuery.operation.d.ts +1 -2
- package/dist/nodes/Google/BigQuery/v2/actions/database/executeQuery.operation.js +2 -2
- package/dist/nodes/Google/BigQuery/v2/actions/database/executeQuery.operation.js.map +1 -1
- package/dist/nodes/Google/BigQuery/v2/actions/database/insert.operation.d.ts +1 -2
- package/dist/nodes/Google/BigQuery/v2/actions/database/insert.operation.js.map +1 -1
- package/dist/nodes/Google/BigQuery/v2/actions/router.d.ts +1 -2
- package/dist/nodes/Google/BigQuery/v2/actions/router.js.map +1 -1
- package/dist/nodes/Google/BigQuery/v2/helpers/utils.d.ts +2 -3
- package/dist/nodes/Google/BigQuery/v2/helpers/utils.js +1 -2
- package/dist/nodes/Google/BigQuery/v2/helpers/utils.js.map +1 -1
- package/dist/nodes/Google/BigQuery/v2/transport/index.d.ts +1 -2
- package/dist/nodes/Google/BigQuery/v2/transport/index.js.map +1 -1
- package/dist/nodes/Google/CloudStorage/ObjectDescription.d.ts +1 -1
- package/dist/nodes/Google/CloudStorage/ObjectDescription.js +17 -4
- package/dist/nodes/Google/CloudStorage/ObjectDescription.js.map +1 -1
- package/dist/nodes/Google/Docs/interfaces.d.ts +13 -0
- package/dist/nodes/Google/Docs/interfaces.js +3 -0
- package/dist/nodes/Google/Docs/interfaces.js.map +1 -0
- package/dist/nodes/Google/Drive/GoogleDrive.node.d.ts +3 -12
- package/dist/nodes/Google/Drive/GoogleDrive.node.js +10 -2301
- package/dist/nodes/Google/Drive/GoogleDrive.node.js.map +1 -1
- package/dist/nodes/Google/Drive/GoogleDriveTrigger.node.d.ts +1 -1
- package/dist/nodes/Google/Drive/GoogleDriveTrigger.node.js +2 -2
- package/dist/nodes/Google/Drive/GoogleDriveTrigger.node.js.map +1 -1
- package/dist/nodes/Google/Drive/test/v2/node/helpers.d.ts +3 -0
- package/dist/nodes/Google/Drive/test/v2/node/helpers.js +34 -0
- package/dist/nodes/Google/Drive/test/v2/node/helpers.js.map +1 -0
- package/dist/nodes/Google/Drive/{GenericFunctions.js → v1/GenericFunctions.js} +1 -1
- package/dist/nodes/Google/Drive/v1/GenericFunctions.js.map +1 -0
- package/dist/nodes/Google/Drive/v1/GoogleDriveV1.node.d.ts +14 -0
- package/dist/nodes/Google/Drive/v1/GoogleDriveV1.node.js +2325 -0
- package/dist/nodes/Google/Drive/v1/GoogleDriveV1.node.js.map +1 -0
- package/dist/nodes/Google/Drive/v1/SearchFunctions.js.map +1 -0
- package/dist/nodes/Google/Drive/v2/GoogleDriveV2.node.d.ts +10 -0
- package/dist/nodes/Google/Drive/v2/GoogleDriveV2.node.js +20 -0
- package/dist/nodes/Google/Drive/v2/GoogleDriveV2.node.js.map +1 -0
- package/dist/nodes/Google/Drive/v2/actions/common.descriptions.d.ts +19 -0
- package/dist/nodes/Google/Drive/v2/actions/common.descriptions.js +599 -0
- package/dist/nodes/Google/Drive/v2/actions/common.descriptions.js.map +1 -0
- package/dist/nodes/Google/Drive/v2/actions/drive/Drive.resource.d.ts +8 -0
- package/dist/nodes/Google/Drive/v2/actions/drive/Drive.resource.js +88 -0
- package/dist/nodes/Google/Drive/v2/actions/drive/Drive.resource.js.map +1 -0
- package/dist/nodes/Google/Drive/v2/actions/drive/create.operation.d.ts +22 -0
- package/dist/nodes/Google/Drive/v2/actions/drive/create.operation.js +235 -0
- package/dist/nodes/Google/Drive/v2/actions/drive/create.operation.js.map +1 -0
- package/dist/nodes/Google/Drive/v2/actions/drive/deleteDrive.operation.d.ts +22 -0
- package/dist/nodes/Google/Drive/v2/actions/drive/deleteDrive.operation.js +31 -0
- package/dist/nodes/Google/Drive/v2/actions/drive/deleteDrive.operation.js.map +1 -0
- package/dist/nodes/Google/Drive/v2/actions/drive/get.operation.d.ts +22 -0
- package/dist/nodes/Google/Drive/v2/actions/drive/get.operation.js +50 -0
- package/dist/nodes/Google/Drive/v2/actions/drive/get.operation.js.map +1 -0
- package/dist/nodes/Google/Drive/v2/actions/drive/list.operation.d.ts +22 -0
- package/dist/nodes/Google/Drive/v2/actions/drive/list.operation.js +81 -0
- package/dist/nodes/Google/Drive/v2/actions/drive/list.operation.js.map +1 -0
- package/dist/nodes/Google/Drive/v2/actions/drive/update.operation.d.ts +22 -0
- package/dist/nodes/Google/Drive/v2/actions/drive/update.operation.js +100 -0
- package/dist/nodes/Google/Drive/v2/actions/drive/update.operation.js.map +1 -0
- package/dist/nodes/Google/Drive/v2/actions/file/File.resource.d.ts +11 -0
- package/dist/nodes/Google/Drive/v2/actions/file/File.resource.js +115 -0
- package/dist/nodes/Google/Drive/v2/actions/file/File.resource.js.map +1 -0
- package/dist/nodes/Google/Drive/v2/actions/file/copy.operation.d.ts +22 -0
- package/dist/nodes/Google/Drive/v2/actions/file/copy.operation.js +104 -0
- package/dist/nodes/Google/Drive/v2/actions/file/copy.operation.js.map +1 -0
- package/dist/nodes/Google/Drive/v2/actions/file/createFromText.operation.d.ts +22 -0
- package/dist/nodes/Google/Drive/v2/actions/file/createFromText.operation.js +134 -0
- package/dist/nodes/Google/Drive/v2/actions/file/createFromText.operation.js.map +1 -0
- package/dist/nodes/Google/Drive/v2/actions/file/deleteFile.operation.d.ts +22 -0
- package/dist/nodes/Google/Drive/v2/actions/file/deleteFile.operation.js +57 -0
- package/dist/nodes/Google/Drive/v2/actions/file/deleteFile.operation.js.map +1 -0
- package/dist/nodes/Google/Drive/v2/actions/file/download.operation.d.ts +22 -0
- package/dist/nodes/Google/Drive/v2/actions/file/download.operation.js +218 -0
- package/dist/nodes/Google/Drive/v2/actions/file/download.operation.js.map +1 -0
- package/dist/nodes/Google/Drive/v2/actions/file/move.operation.d.ts +22 -0
- package/dist/nodes/Google/Drive/v2/actions/file/move.operation.js +60 -0
- package/dist/nodes/Google/Drive/v2/actions/file/move.operation.js.map +1 -0
- package/dist/nodes/Google/Drive/v2/actions/file/share.operation.d.ts +22 -0
- package/dist/nodes/Google/Drive/v2/actions/file/share.operation.js +43 -0
- package/dist/nodes/Google/Drive/v2/actions/file/share.operation.js.map +1 -0
- package/dist/nodes/Google/Drive/v2/actions/file/update.operation.d.ts +22 -0
- package/dist/nodes/Google/Drive/v2/actions/file/update.operation.js +221 -0
- package/dist/nodes/Google/Drive/v2/actions/file/update.operation.js.map +1 -0
- package/dist/nodes/Google/Drive/v2/actions/file/upload.operation.d.ts +22 -0
- package/dist/nodes/Google/Drive/v2/actions/file/upload.operation.js +135 -0
- package/dist/nodes/Google/Drive/v2/actions/file/upload.operation.js.map +1 -0
- package/dist/nodes/Google/Drive/v2/actions/fileFolder/FileFolder.resource.d.ts +4 -0
- package/dist/nodes/Google/Drive/v2/actions/fileFolder/FileFolder.resource.js +52 -0
- package/dist/nodes/Google/Drive/v2/actions/fileFolder/FileFolder.resource.js.map +1 -0
- package/dist/nodes/Google/Drive/v2/actions/fileFolder/search.operation.d.ts +22 -0
- package/dist/nodes/Google/Drive/v2/actions/fileFolder/search.operation.js +335 -0
- package/dist/nodes/Google/Drive/v2/actions/fileFolder/search.operation.js.map +1 -0
- package/dist/nodes/Google/Drive/v2/actions/folder/Folder.resource.d.ts +6 -0
- package/dist/nodes/Google/Drive/v2/actions/folder/Folder.resource.js +70 -0
- package/dist/nodes/Google/Drive/v2/actions/folder/Folder.resource.js.map +1 -0
- package/dist/nodes/Google/Drive/v2/actions/folder/create.operation.d.ts +22 -0
- package/dist/nodes/Google/Drive/v2/actions/folder/create.operation.js +92 -0
- package/dist/nodes/Google/Drive/v2/actions/folder/create.operation.js.map +1 -0
- package/dist/nodes/Google/Drive/v2/actions/folder/deleteFolder.operation.d.ts +22 -0
- package/dist/nodes/Google/Drive/v2/actions/folder/deleteFolder.operation.js +59 -0
- package/dist/nodes/Google/Drive/v2/actions/folder/deleteFolder.operation.js.map +1 -0
- package/dist/nodes/Google/Drive/v2/actions/folder/share.operation.d.ts +22 -0
- package/dist/nodes/Google/Drive/v2/actions/folder/share.operation.js +43 -0
- package/dist/nodes/Google/Drive/v2/actions/folder/share.operation.js.map +1 -0
- package/dist/nodes/Google/Drive/v2/actions/node.type.d.ts +9 -0
- package/dist/nodes/Google/Drive/v2/actions/node.type.js +3 -0
- package/dist/nodes/Google/Drive/v2/actions/node.type.js.map +1 -0
- package/dist/nodes/Google/Drive/v2/actions/router.d.ts +2 -0
- package/dist/nodes/Google/Drive/v2/actions/router.js +76 -0
- package/dist/nodes/Google/Drive/v2/actions/router.js.map +1 -0
- package/dist/nodes/Google/Drive/v2/actions/versionDescription.d.ts +2 -0
- package/dist/nodes/Google/Drive/v2/actions/versionDescription.js +112 -0
- package/dist/nodes/Google/Drive/v2/actions/versionDescription.js.map +1 -0
- package/dist/nodes/Google/Drive/v2/helpers/interfaces.d.ts +34 -0
- package/dist/nodes/Google/Drive/v2/helpers/interfaces.js +26 -0
- package/dist/nodes/Google/Drive/v2/helpers/interfaces.js.map +1 -0
- package/dist/nodes/Google/Drive/v2/helpers/utils.d.ts +15 -0
- package/dist/nodes/Google/Drive/v2/helpers/utils.js +104 -0
- package/dist/nodes/Google/Drive/v2/helpers/utils.js.map +1 -0
- package/dist/nodes/Google/Drive/v2/methods/index.d.ts +1 -0
- package/dist/nodes/Google/Drive/v2/methods/index.js +28 -0
- package/dist/nodes/Google/Drive/v2/methods/index.js.map +1 -0
- package/dist/nodes/Google/Drive/v2/methods/listSearch.d.ts +6 -0
- package/dist/nodes/Google/Drive/v2/methods/listSearch.js +144 -0
- package/dist/nodes/Google/Drive/v2/methods/listSearch.js.map +1 -0
- package/dist/nodes/Google/Drive/v2/transport/index.d.ts +4 -0
- package/dist/nodes/Google/Drive/v2/transport/index.js +68 -0
- package/dist/nodes/Google/Drive/v2/transport/index.js.map +1 -0
- package/dist/nodes/Google/GenericFunctions.d.ts +1 -2
- package/dist/nodes/Google/GenericFunctions.js.map +1 -1
- package/dist/nodes/Google/Gmail/GmailTrigger.node.js +7 -2
- package/dist/nodes/Google/Gmail/GmailTrigger.node.js.map +1 -1
- package/dist/nodes/Google/Perspective/types.d.ts +22 -0
- package/dist/nodes/Google/Perspective/types.js +3 -0
- package/dist/nodes/Google/Perspective/types.js.map +1 -0
- package/dist/nodes/Google/Sheet/v1/GoogleSheet.js +2 -2
- package/dist/nodes/Google/Sheet/v1/GoogleSheet.js.map +1 -1
- package/dist/nodes/Google/Sheet/v1/GoogleSheetsV1.node.js +4 -4
- package/dist/nodes/Google/Sheet/v1/GoogleSheetsV1.node.js.map +1 -1
- package/dist/nodes/Google/Sheet/v1/versionDescription.js.map +1 -1
- package/dist/nodes/Google/Sheet/v2/methods/resourceMapping.d.ts +1 -2
- package/dist/nodes/Google/Sheet/v2/methods/resourceMapping.js.map +1 -1
- package/dist/nodes/Grafana/types.d.ts +30 -0
- package/dist/nodes/Grafana/types.js +3 -0
- package/dist/nodes/Grafana/types.js.map +1 -0
- package/dist/nodes/GraphQL/GraphQL.node.js +32 -0
- package/dist/nodes/GraphQL/GraphQL.node.js.map +1 -1
- package/dist/nodes/Grist/types.d.ts +50 -0
- package/dist/nodes/Grist/types.js +3 -0
- package/dist/nodes/Grist/types.js.map +1 -0
- package/dist/nodes/HelpScout/HelpScout.node.js +0 -2
- package/dist/nodes/HelpScout/HelpScout.node.js.map +1 -1
- package/dist/nodes/Html/Html.node.d.ts +1 -0
- package/dist/nodes/Html/Html.node.js +143 -2
- package/dist/nodes/Html/Html.node.js.map +1 -1
- package/dist/nodes/Html/Html.node.json +1 -1
- package/dist/nodes/HttpRequest/V3/HttpRequestV3.node.js +22 -0
- package/dist/nodes/HttpRequest/V3/HttpRequestV3.node.js.map +1 -1
- package/dist/nodes/Hubspot/V1/GenericFunctions.d.ts +1 -2
- package/dist/nodes/Hubspot/V1/GenericFunctions.js.map +1 -1
- package/dist/nodes/Hubspot/V1/HubspotV1.node.d.ts +1 -2
- package/dist/nodes/Hubspot/V1/HubspotV1.node.js.map +1 -1
- package/dist/nodes/Hubspot/V2/HubspotV2.node.d.ts +1 -2
- package/dist/nodes/Hubspot/V2/HubspotV2.node.js.map +1 -1
- package/dist/nodes/ItemLists/ItemLists.node.js +3 -1
- package/dist/nodes/ItemLists/ItemLists.node.js.map +1 -1
- package/dist/nodes/ItemLists/V3/ItemListsV3.node.d.ts +6 -0
- package/dist/nodes/ItemLists/V3/ItemListsV3.node.js +18 -0
- package/dist/nodes/ItemLists/V3/ItemListsV3.node.js.map +1 -0
- package/dist/nodes/ItemLists/V3/actions/common.descriptions.d.ts +2 -0
- package/dist/nodes/ItemLists/V3/actions/common.descriptions.js +11 -0
- package/dist/nodes/ItemLists/V3/actions/common.descriptions.js.map +1 -0
- package/dist/nodes/ItemLists/V3/actions/itemList/concatenateItems.operation.d.ts +22 -0
- package/dist/nodes/ItemLists/V3/actions/itemList/concatenateItems.operation.js +303 -0
- package/dist/nodes/ItemLists/V3/actions/itemList/concatenateItems.operation.js.map +1 -0
- package/dist/nodes/ItemLists/V3/actions/itemList/index.d.ts +9 -0
- package/dist/nodes/ItemLists/V3/actions/itemList/index.js +97 -0
- package/dist/nodes/ItemLists/V3/actions/itemList/index.js.map +1 -0
- package/dist/nodes/ItemLists/V3/actions/itemList/limit.operation.d.ts +22 -0
- package/dist/nodes/ItemLists/V3/actions/itemList/limit.operation.js +57 -0
- package/dist/nodes/ItemLists/V3/actions/itemList/limit.operation.js.map +1 -0
- package/dist/nodes/ItemLists/V3/actions/itemList/removeDuplicates.operation.d.ts +22 -0
- package/dist/nodes/ItemLists/V3/actions/itemList/removeDuplicates.operation.js +204 -0
- package/dist/nodes/ItemLists/V3/actions/itemList/removeDuplicates.operation.js.map +1 -0
- package/dist/nodes/ItemLists/V3/actions/itemList/sort.operation.d.ts +22 -0
- package/dist/nodes/ItemLists/V3/actions/itemList/sort.operation.js +262 -0
- package/dist/nodes/ItemLists/V3/actions/itemList/sort.operation.js.map +1 -0
- package/dist/nodes/ItemLists/V3/actions/itemList/splitOutItems.operation.d.ts +22 -0
- package/dist/nodes/ItemLists/V3/actions/itemList/splitOutItems.operation.js +183 -0
- package/dist/nodes/ItemLists/V3/actions/itemList/splitOutItems.operation.js.map +1 -0
- package/dist/nodes/ItemLists/V3/actions/itemList/summarize.operation.d.ts +23 -0
- package/dist/nodes/ItemLists/V3/actions/itemList/summarize.operation.js +491 -0
- package/dist/nodes/ItemLists/V3/actions/itemList/summarize.operation.js.map +1 -0
- package/dist/nodes/ItemLists/V3/actions/node.type.d.ts +6 -0
- package/dist/nodes/ItemLists/V3/actions/node.type.js +3 -0
- package/dist/nodes/ItemLists/V3/actions/node.type.js.map +1 -0
- package/dist/nodes/ItemLists/V3/actions/router.d.ts +2 -0
- package/dist/nodes/ItemLists/V3/actions/router.js +53 -0
- package/dist/nodes/ItemLists/V3/actions/router.js.map +1 -0
- package/dist/nodes/ItemLists/V3/actions/versionDescription.d.ts +2 -0
- package/dist/nodes/ItemLists/V3/actions/versionDescription.js +58 -0
- package/dist/nodes/ItemLists/V3/actions/versionDescription.js.map +1 -0
- package/dist/nodes/ItemLists/V3/helpers/utils.d.ts +5 -0
- package/dist/nodes/ItemLists/V3/helpers/utils.js +57 -0
- package/dist/nodes/ItemLists/V3/helpers/utils.js.map +1 -0
- package/dist/nodes/ItemLists/test/node/workflow.update_3.json +606 -0
- package/dist/nodes/Ldap/Ldap.node.d.ts +1 -2
- package/dist/nodes/LoneScale/GenericFunctions.d.ts +1 -2
- package/dist/nodes/LoneScale/GenericFunctions.js.map +1 -1
- package/dist/nodes/LoneScale/LoneScaleTrigger.node.d.ts +1 -2
- package/dist/nodes/LoneScale/LoneScaleTrigger.node.js.map +1 -1
- package/dist/nodes/Magento/GenericFunctions.d.ts +1 -1
- package/dist/nodes/Magento/GenericFunctions.js.map +1 -1
- package/dist/nodes/Magento/types.d.ts +173 -0
- package/dist/nodes/Magento/types.js +3 -0
- package/dist/nodes/Magento/types.js.map +1 -0
- package/dist/nodes/Marketstack/types.d.ts +10 -0
- package/dist/nodes/Marketstack/types.js +3 -0
- package/dist/nodes/Marketstack/types.js.map +1 -0
- package/dist/nodes/Matrix/GenericFunctions.js +8 -2
- package/dist/nodes/Matrix/GenericFunctions.js.map +1 -1
- package/dist/nodes/Matrix/MediaDescription.js +23 -1
- package/dist/nodes/Matrix/MediaDescription.js.map +1 -1
- package/dist/nodes/Microsoft/Excel/v1/MicrosoftExcelV1.node.d.ts +1 -2
- package/dist/nodes/Microsoft/Excel/v1/MicrosoftExcelV1.node.js.map +1 -1
- package/dist/nodes/Microsoft/Excel/v2/MicrosoftExcelV2.node.d.ts +1 -2
- package/dist/nodes/Microsoft/Excel/v2/MicrosoftExcelV2.node.js.map +1 -1
- package/dist/nodes/Microsoft/Excel/v2/actions/router.d.ts +1 -2
- package/dist/nodes/Microsoft/Excel/v2/actions/router.js.map +1 -1
- package/dist/nodes/Microsoft/Excel/v2/actions/table/addTable.operation.d.ts +1 -2
- package/dist/nodes/Microsoft/Excel/v2/actions/table/addTable.operation.js.map +1 -1
- package/dist/nodes/Microsoft/Excel/v2/actions/table/append.operation.d.ts +1 -2
- package/dist/nodes/Microsoft/Excel/v2/actions/table/append.operation.js +1 -1
- package/dist/nodes/Microsoft/Excel/v2/actions/table/append.operation.js.map +1 -1
- package/dist/nodes/Microsoft/Excel/v2/actions/table/convertToRange.operation.d.ts +1 -2
- package/dist/nodes/Microsoft/Excel/v2/actions/table/convertToRange.operation.js.map +1 -1
- package/dist/nodes/Microsoft/Excel/v2/actions/table/deleteTable.operation.d.ts +1 -2
- package/dist/nodes/Microsoft/Excel/v2/actions/table/deleteTable.operation.js.map +1 -1
- package/dist/nodes/Microsoft/Excel/v2/actions/table/getColumns.operation.d.ts +1 -2
- package/dist/nodes/Microsoft/Excel/v2/actions/table/getColumns.operation.js.map +1 -1
- package/dist/nodes/Microsoft/Excel/v2/actions/table/getRows.operation.d.ts +1 -2
- package/dist/nodes/Microsoft/Excel/v2/actions/table/getRows.operation.js.map +1 -1
- package/dist/nodes/Microsoft/Excel/v2/actions/table/lookup.operation.d.ts +1 -2
- package/dist/nodes/Microsoft/Excel/v2/actions/table/lookup.operation.js.map +1 -1
- package/dist/nodes/Microsoft/Excel/v2/actions/workbook/addWorksheet.operation.d.ts +1 -2
- package/dist/nodes/Microsoft/Excel/v2/actions/workbook/addWorksheet.operation.js.map +1 -1
- package/dist/nodes/Microsoft/Excel/v2/actions/workbook/deleteWorkbook.operation.d.ts +1 -2
- package/dist/nodes/Microsoft/Excel/v2/actions/workbook/deleteWorkbook.operation.js.map +1 -1
- package/dist/nodes/Microsoft/Excel/v2/actions/workbook/getAll.operation.d.ts +1 -2
- package/dist/nodes/Microsoft/Excel/v2/actions/workbook/getAll.operation.js.map +1 -1
- package/dist/nodes/Microsoft/Excel/v2/actions/worksheet/append.operation.d.ts +1 -2
- package/dist/nodes/Microsoft/Excel/v2/actions/worksheet/append.operation.js +5 -1
- package/dist/nodes/Microsoft/Excel/v2/actions/worksheet/append.operation.js.map +1 -1
- package/dist/nodes/Microsoft/Excel/v2/actions/worksheet/clear.operation.d.ts +1 -2
- package/dist/nodes/Microsoft/Excel/v2/actions/worksheet/clear.operation.js.map +1 -1
- package/dist/nodes/Microsoft/Excel/v2/actions/worksheet/deleteWorksheet.operation.d.ts +1 -2
- package/dist/nodes/Microsoft/Excel/v2/actions/worksheet/deleteWorksheet.operation.js.map +1 -1
- package/dist/nodes/Microsoft/Excel/v2/actions/worksheet/getAll.operation.d.ts +1 -2
- package/dist/nodes/Microsoft/Excel/v2/actions/worksheet/getAll.operation.js.map +1 -1
- package/dist/nodes/Microsoft/Excel/v2/actions/worksheet/readRows.operation.d.ts +1 -2
- package/dist/nodes/Microsoft/Excel/v2/actions/worksheet/readRows.operation.js +2 -2
- package/dist/nodes/Microsoft/Excel/v2/actions/worksheet/readRows.operation.js.map +1 -1
- package/dist/nodes/Microsoft/Excel/v2/actions/worksheet/update.operation.d.ts +1 -2
- package/dist/nodes/Microsoft/Excel/v2/actions/worksheet/update.operation.js +2 -2
- package/dist/nodes/Microsoft/Excel/v2/actions/worksheet/update.operation.js.map +1 -1
- package/dist/nodes/Microsoft/Excel/v2/actions/worksheet/upsert.operation.d.ts +1 -2
- package/dist/nodes/Microsoft/Excel/v2/actions/worksheet/upsert.operation.js +1 -1
- package/dist/nodes/Microsoft/Excel/v2/actions/worksheet/upsert.operation.js.map +1 -1
- package/dist/nodes/Microsoft/Excel/v2/helpers/utils.d.ts +2 -3
- package/dist/nodes/Microsoft/Excel/v2/helpers/utils.js +2 -3
- package/dist/nodes/Microsoft/Excel/v2/helpers/utils.js.map +1 -1
- package/dist/nodes/Microsoft/Excel/v2/transport/index.d.ts +1 -2
- package/dist/nodes/Microsoft/Excel/v2/transport/index.js.map +1 -1
- package/dist/nodes/Microsoft/ToDo/MicrosoftToDo.node.js +7 -0
- package/dist/nodes/Microsoft/ToDo/MicrosoftToDo.node.js.map +1 -1
- package/dist/nodes/Microsoft/ToDo/TaskDescription.js +7 -0
- package/dist/nodes/Microsoft/ToDo/TaskDescription.js.map +1 -1
- package/dist/nodes/Misp/types.d.ts +31 -0
- package/dist/nodes/Misp/types.js +3 -0
- package/dist/nodes/Misp/types.js.map +1 -0
- package/dist/nodes/MonicaCrm/types.d.ts +11 -0
- package/dist/nodes/MonicaCrm/types.js +3 -0
- package/dist/nodes/MonicaCrm/types.js.map +1 -0
- package/dist/nodes/MySql/v1/MySqlV1.node.d.ts +1 -2
- package/dist/nodes/MySql/v1/MySqlV1.node.js.map +1 -1
- package/dist/nodes/MySql/v2/MySqlV2.node.d.ts +1 -2
- package/dist/nodes/MySql/v2/MySqlV2.node.js.map +1 -1
- package/dist/nodes/MySql/v2/actions/database/deleteTable.operation.d.ts +1 -2
- package/dist/nodes/MySql/v2/actions/database/deleteTable.operation.js.map +1 -1
- package/dist/nodes/MySql/v2/actions/database/executeQuery.operation.d.ts +1 -2
- package/dist/nodes/MySql/v2/actions/database/executeQuery.operation.js.map +1 -1
- package/dist/nodes/MySql/v2/actions/database/insert.operation.d.ts +1 -2
- package/dist/nodes/MySql/v2/actions/database/insert.operation.js.map +1 -1
- package/dist/nodes/MySql/v2/actions/database/select.operation.d.ts +1 -2
- package/dist/nodes/MySql/v2/actions/database/select.operation.js.map +1 -1
- package/dist/nodes/MySql/v2/actions/database/update.operation.d.ts +1 -2
- package/dist/nodes/MySql/v2/actions/database/update.operation.js.map +1 -1
- package/dist/nodes/MySql/v2/actions/database/upsert.operation.d.ts +1 -2
- package/dist/nodes/MySql/v2/actions/database/upsert.operation.js.map +1 -1
- package/dist/nodes/MySql/v2/actions/router.d.ts +1 -2
- package/dist/nodes/MySql/v2/actions/router.js.map +1 -1
- package/dist/nodes/Notion/DatabasePageDescription.js +41 -0
- package/dist/nodes/Notion/DatabasePageDescription.js.map +1 -1
- package/dist/nodes/Notion/v2/NotionV2.node.js +9 -0
- package/dist/nodes/Notion/v2/NotionV2.node.js.map +1 -1
- package/dist/nodes/OpenAi/ChatDescription.js +2 -2
- package/dist/nodes/OpenAi/ChatDescription.js.map +1 -1
- package/dist/nodes/OpenAi/TextDescription.js +2 -2
- package/dist/nodes/OpenAi/TextDescription.js.map +1 -1
- package/dist/nodes/Postgres/v1/PostgresV1.node.d.ts +1 -2
- package/dist/nodes/Postgres/v2/PostgresV2.node.d.ts +1 -2
- package/dist/nodes/Postgres/v2/actions/database/deleteTable.operation.d.ts +1 -2
- package/dist/nodes/Postgres/v2/actions/database/deleteTable.operation.js.map +1 -1
- package/dist/nodes/Postgres/v2/actions/database/executeQuery.operation.d.ts +1 -2
- package/dist/nodes/Postgres/v2/actions/database/executeQuery.operation.js +28 -6
- package/dist/nodes/Postgres/v2/actions/database/executeQuery.operation.js.map +1 -1
- package/dist/nodes/Postgres/v2/actions/database/insert.operation.d.ts +1 -2
- package/dist/nodes/Postgres/v2/actions/database/insert.operation.js.map +1 -1
- package/dist/nodes/Postgres/v2/actions/database/select.operation.d.ts +1 -2
- package/dist/nodes/Postgres/v2/actions/database/select.operation.js.map +1 -1
- package/dist/nodes/Postgres/v2/actions/database/update.operation.d.ts +1 -2
- package/dist/nodes/Postgres/v2/actions/database/update.operation.js.map +1 -1
- package/dist/nodes/Postgres/v2/actions/database/upsert.operation.d.ts +1 -2
- package/dist/nodes/Postgres/v2/actions/database/upsert.operation.js.map +1 -1
- package/dist/nodes/Postgres/v2/actions/router.js +2 -1
- package/dist/nodes/Postgres/v2/actions/router.js.map +1 -1
- package/dist/nodes/Postgres/v2/helpers/interfaces.d.ts +1 -4
- package/dist/nodes/Postgres/v2/helpers/utils.d.ts +3 -3
- package/dist/nodes/Postgres/v2/helpers/utils.js +68 -65
- package/dist/nodes/Postgres/v2/helpers/utils.js.map +1 -1
- package/dist/nodes/QuickBooks/types.d.ts +47 -0
- package/dist/nodes/QuickBooks/types.js +3 -0
- package/dist/nodes/QuickBooks/types.js.map +1 -0
- package/dist/nodes/ReadPdf/ReadPDF.node.d.ts +1 -1
- package/dist/nodes/ReadPdf/ReadPDF.node.js +69 -11
- package/dist/nodes/ReadPdf/ReadPDF.node.js.map +1 -1
- package/dist/nodes/ReadPdf/test/ReadPDF-encrypted.workflow.json +87 -0
- package/dist/nodes/ReadPdf/test/ReadPDF.workflow.json +47 -27
- package/dist/nodes/RssFeedRead/RssFeedRead.node.js +1 -1
- package/dist/nodes/RssFeedRead/RssFeedRead.node.js.map +1 -1
- package/dist/nodes/Rundeck/Rundeck.node.js +17 -1
- package/dist/nodes/Rundeck/Rundeck.node.js.map +1 -1
- package/dist/nodes/Rundeck/RundeckApi.d.ts +1 -1
- package/dist/nodes/Rundeck/RundeckApi.js +6 -2
- package/dist/nodes/Rundeck/RundeckApi.js.map +1 -1
- package/dist/nodes/SeaTable/Schema.d.ts +4 -4
- package/dist/nodes/SeaTable/types.d.ts +33 -0
- package/dist/nodes/SeaTable/types.js +3 -0
- package/dist/nodes/SeaTable/types.js.map +1 -0
- package/dist/nodes/Sendy/Sendy.node.js.map +1 -1
- package/dist/nodes/Slack/Slack.node.js +2 -1
- package/dist/nodes/Slack/Slack.node.js.map +1 -1
- package/dist/nodes/Slack/V2/GenericFunctions.d.ts +1 -0
- package/dist/nodes/Slack/V2/GenericFunctions.js +44 -1
- package/dist/nodes/Slack/V2/GenericFunctions.js.map +1 -1
- package/dist/nodes/Slack/V2/MessageDescription.js +7 -0
- package/dist/nodes/Slack/V2/MessageDescription.js.map +1 -1
- package/dist/nodes/Slack/V2/SlackV2.node.js +2 -20
- package/dist/nodes/Slack/V2/SlackV2.node.js.map +1 -1
- package/dist/nodes/Splunk/types.d.ts +40 -0
- package/dist/nodes/Splunk/types.js +3 -0
- package/dist/nodes/Splunk/types.js.map +1 -0
- package/dist/nodes/Strava/ActivityDescription.js +7 -0
- package/dist/nodes/Strava/ActivityDescription.js.map +1 -1
- package/dist/nodes/Strava/Strava.node.js +0 -6
- package/dist/nodes/Strava/Strava.node.js.map +1 -1
- package/dist/nodes/Taiga/types.d.ts +31 -0
- package/dist/nodes/Taiga/types.js +2 -0
- package/dist/nodes/Taiga/types.js.map +1 -0
- package/dist/nodes/Telegram/TelegramTrigger.node.js +1 -1
- package/dist/nodes/Telegram/TelegramTrigger.node.js.map +1 -1
- package/dist/nodes/Twitter/Twitter.node.d.ts +3 -9
- package/dist/nodes/Twitter/Twitter.node.js +12 -224
- package/dist/nodes/Twitter/Twitter.node.js.map +1 -1
- package/dist/nodes/Twitter/Twitter.node.json +2 -1
- package/dist/nodes/Twitter/V1/DirectMessageDescription.js.map +1 -0
- package/dist/nodes/Twitter/V1/GenericFunctions.js.map +1 -0
- package/dist/nodes/Twitter/V1/TweetDescription.js.map +1 -0
- package/dist/nodes/Twitter/V1/TweetInterface.js.map +1 -0
- package/dist/nodes/Twitter/V1/TwitterV1.node.d.ts +11 -0
- package/dist/nodes/Twitter/V1/TwitterV1.node.js +235 -0
- package/dist/nodes/Twitter/V1/TwitterV1.node.js.map +1 -0
- package/dist/nodes/Twitter/V2/DirectMessageDescription.d.ts +3 -0
- package/dist/nodes/Twitter/V2/DirectMessageDescription.js +100 -0
- package/dist/nodes/Twitter/V2/DirectMessageDescription.js.map +1 -0
- package/dist/nodes/Twitter/V2/GenericFunctions.d.ts +5 -0
- package/dist/nodes/Twitter/V2/GenericFunctions.js +88 -0
- package/dist/nodes/Twitter/V2/GenericFunctions.js.map +1 -0
- package/dist/nodes/Twitter/V2/ListDescription.d.ts +3 -0
- package/dist/nodes/Twitter/V2/ListDescription.js +92 -0
- package/dist/nodes/Twitter/V2/ListDescription.js.map +1 -0
- package/dist/nodes/Twitter/V2/TweetDescription.d.ts +3 -0
- package/dist/nodes/Twitter/V2/TweetDescription.js +452 -0
- package/dist/nodes/Twitter/V2/TweetDescription.js.map +1 -0
- package/dist/nodes/Twitter/V2/TweetInterface.d.ts +23 -0
- package/dist/nodes/Twitter/V2/TweetInterface.js +3 -0
- package/dist/nodes/Twitter/V2/TweetInterface.js.map +1 -0
- package/dist/nodes/Twitter/V2/TwitterV2.node.d.ts +11 -0
- package/dist/nodes/Twitter/V2/TwitterV2.node.js +245 -0
- package/dist/nodes/Twitter/V2/TwitterV2.node.js.map +1 -0
- package/dist/nodes/Twitter/V2/UserDescription.d.ts +3 -0
- package/dist/nodes/Twitter/V2/UserDescription.js +76 -0
- package/dist/nodes/Twitter/V2/UserDescription.js.map +1 -0
- package/dist/nodes/Twitter/test/Workflow_Twitter_UnitTest.json +284 -0
- package/dist/nodes/UProc/UProc.node.js +0 -1
- package/dist/nodes/UProc/UProc.node.js.map +1 -1
- package/dist/nodes/Wait/Wait.node.d.ts +7 -4
- package/dist/nodes/Wait/Wait.node.js +77 -499
- package/dist/nodes/Wait/Wait.node.js.map +1 -1
- package/dist/nodes/Webhook/Webhook.node.d.ts +8 -3
- package/dist/nodes/Webhook/Webhook.node.js +148 -460
- package/dist/nodes/Webhook/Webhook.node.js.map +1 -1
- package/dist/nodes/Webhook/description.d.ts +10 -0
- package/dist/nodes/Webhook/description.js +325 -0
- package/dist/nodes/Webhook/description.js.map +1 -0
- package/dist/nodes/Webhook/error.d.ts +4 -0
- package/dist/nodes/Webhook/error.js +20 -0
- package/dist/nodes/Webhook/error.js.map +1 -0
- package/dist/nodes/Zammad/types.d.ts +81 -0
- package/dist/nodes/Zammad/types.js +3 -0
- package/dist/nodes/Zammad/types.js.map +1 -0
- package/dist/nodes/Zoho/types.d.ts +93 -0
- package/dist/nodes/Zoho/types.js +3 -0
- package/dist/nodes/Zoho/types.js.map +1 -0
- package/dist/types/credentials.json +8 -5
- package/dist/types/nodes.json +30 -22
- package/package.json +9 -5
- package/dist/nodes/Airtable/GenericFunctions.js.map +0 -1
- package/dist/nodes/Google/Drive/GenericFunctions.js.map +0 -1
- package/dist/nodes/Google/Drive/SearchFunctions.js.map +0 -1
- package/dist/nodes/Twitter/DirectMessageDescription.js.map +0 -1
- package/dist/nodes/Twitter/GenericFunctions.js.map +0 -1
- package/dist/nodes/Twitter/TweetDescription.js.map +0 -1
- package/dist/nodes/Twitter/TweetInterface.js.map +0 -1
- /package/dist/nodes/Airtable/{GenericFunctions.d.ts → v1/GenericFunctions.d.ts} +0 -0
- /package/dist/nodes/Airtable/{GenericFunctions.js → v1/GenericFunctions.js} +0 -0
- /package/dist/nodes/Google/Drive/{GenericFunctions.d.ts → v1/GenericFunctions.d.ts} +0 -0
- /package/dist/nodes/Google/Drive/{SearchFunctions.d.ts → v1/SearchFunctions.d.ts} +0 -0
- /package/dist/nodes/Google/Drive/{SearchFunctions.js → v1/SearchFunctions.js} +0 -0
- /package/dist/nodes/Twitter/{DirectMessageDescription.d.ts → V1/DirectMessageDescription.d.ts} +0 -0
- /package/dist/nodes/Twitter/{DirectMessageDescription.js → V1/DirectMessageDescription.js} +0 -0
- /package/dist/nodes/Twitter/{GenericFunctions.d.ts → V1/GenericFunctions.d.ts} +0 -0
- /package/dist/nodes/Twitter/{GenericFunctions.js → V1/GenericFunctions.js} +0 -0
- /package/dist/nodes/Twitter/{TweetDescription.d.ts → V1/TweetDescription.d.ts} +0 -0
- /package/dist/nodes/Twitter/{TweetDescription.js → V1/TweetDescription.js} +0 -0
- /package/dist/nodes/Twitter/{TweetInterface.d.ts → V1/TweetInterface.d.ts} +0 -0
- /package/dist/nodes/Twitter/{TweetInterface.js → V1/TweetInterface.js} +0 -0
|
@@ -0,0 +1,245 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
3
|
+
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
4
|
+
};
|
|
5
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6
|
+
exports.TwitterV2 = void 0;
|
|
7
|
+
const DirectMessageDescription_1 = require("./DirectMessageDescription");
|
|
8
|
+
const ListDescription_1 = require("./ListDescription");
|
|
9
|
+
const TweetDescription_1 = require("./TweetDescription");
|
|
10
|
+
const UserDescription_1 = require("./UserDescription");
|
|
11
|
+
const iso_639_1_1 = __importDefault(require("iso-639-1"));
|
|
12
|
+
const GenericFunctions_1 = require("./GenericFunctions");
|
|
13
|
+
const luxon_1 = require("luxon");
|
|
14
|
+
class TwitterV2 {
|
|
15
|
+
constructor(baseDescription) {
|
|
16
|
+
this.methods = {
|
|
17
|
+
loadOptions: {
|
|
18
|
+
async getLanguages() {
|
|
19
|
+
const returnData = [];
|
|
20
|
+
const languages = iso_639_1_1.default.getAllNames();
|
|
21
|
+
for (const language of languages) {
|
|
22
|
+
const languageName = language;
|
|
23
|
+
const languageId = iso_639_1_1.default.getCode(language);
|
|
24
|
+
returnData.push({
|
|
25
|
+
name: languageName,
|
|
26
|
+
value: languageId,
|
|
27
|
+
});
|
|
28
|
+
}
|
|
29
|
+
return returnData;
|
|
30
|
+
},
|
|
31
|
+
},
|
|
32
|
+
};
|
|
33
|
+
this.description = {
|
|
34
|
+
...baseDescription,
|
|
35
|
+
version: 2,
|
|
36
|
+
description: 'Post, like, and search tweets, send messages, search users, and add users to lists',
|
|
37
|
+
subtitle: '={{$parameter["operation"] + ":" + $parameter["resource"]}}',
|
|
38
|
+
defaults: {
|
|
39
|
+
name: 'Twitter',
|
|
40
|
+
},
|
|
41
|
+
inputs: ['main'],
|
|
42
|
+
outputs: ['main'],
|
|
43
|
+
credentials: [
|
|
44
|
+
{
|
|
45
|
+
name: 'twitterOAuth2Api',
|
|
46
|
+
required: true,
|
|
47
|
+
},
|
|
48
|
+
],
|
|
49
|
+
properties: [
|
|
50
|
+
{
|
|
51
|
+
displayName: 'Resource',
|
|
52
|
+
name: 'resource',
|
|
53
|
+
type: 'options',
|
|
54
|
+
noDataExpression: true,
|
|
55
|
+
options: [
|
|
56
|
+
{
|
|
57
|
+
name: 'Direct Message',
|
|
58
|
+
value: 'directMessage',
|
|
59
|
+
description: 'Send a direct message to a user',
|
|
60
|
+
},
|
|
61
|
+
{
|
|
62
|
+
name: 'List',
|
|
63
|
+
value: 'list',
|
|
64
|
+
description: 'Add a user to a list',
|
|
65
|
+
},
|
|
66
|
+
{
|
|
67
|
+
name: 'Tweet',
|
|
68
|
+
value: 'tweet',
|
|
69
|
+
description: 'Create, like, search, or delete a tweet',
|
|
70
|
+
},
|
|
71
|
+
{
|
|
72
|
+
name: 'User',
|
|
73
|
+
value: 'user',
|
|
74
|
+
description: 'Search users by username',
|
|
75
|
+
},
|
|
76
|
+
],
|
|
77
|
+
default: 'tweet',
|
|
78
|
+
},
|
|
79
|
+
...DirectMessageDescription_1.directMessageOperations,
|
|
80
|
+
...DirectMessageDescription_1.directMessageFields,
|
|
81
|
+
...ListDescription_1.listOperations,
|
|
82
|
+
...ListDescription_1.listFields,
|
|
83
|
+
...TweetDescription_1.tweetOperations,
|
|
84
|
+
...TweetDescription_1.tweetFields,
|
|
85
|
+
...UserDescription_1.userOperations,
|
|
86
|
+
...UserDescription_1.userFields,
|
|
87
|
+
],
|
|
88
|
+
};
|
|
89
|
+
}
|
|
90
|
+
async execute() {
|
|
91
|
+
const items = this.getInputData();
|
|
92
|
+
const returnData = [];
|
|
93
|
+
const length = items.length;
|
|
94
|
+
let responseData;
|
|
95
|
+
const resource = this.getNodeParameter('resource', 0);
|
|
96
|
+
const operation = this.getNodeParameter('operation', 0);
|
|
97
|
+
for (let i = 0; i < length; i++) {
|
|
98
|
+
try {
|
|
99
|
+
if (resource === 'user') {
|
|
100
|
+
if (operation === 'searchUser') {
|
|
101
|
+
const me = this.getNodeParameter('me', i, false);
|
|
102
|
+
if (me) {
|
|
103
|
+
responseData = await GenericFunctions_1.twitterApiRequest.call(this, 'GET', '/users/me', {});
|
|
104
|
+
}
|
|
105
|
+
else {
|
|
106
|
+
const userRlc = this.getNodeParameter('user', i, undefined, {});
|
|
107
|
+
if (userRlc.mode === 'username') {
|
|
108
|
+
userRlc.value = userRlc.value.includes('@')
|
|
109
|
+
? userRlc.value.replace('@', '')
|
|
110
|
+
: userRlc.value;
|
|
111
|
+
responseData = await GenericFunctions_1.twitterApiRequest.call(this, 'GET', `/users/by/username/${userRlc.value}`, {});
|
|
112
|
+
}
|
|
113
|
+
else if (userRlc.mode === 'id') {
|
|
114
|
+
responseData = await GenericFunctions_1.twitterApiRequest.call(this, 'GET', `/users/${userRlc.value}`, {});
|
|
115
|
+
}
|
|
116
|
+
}
|
|
117
|
+
}
|
|
118
|
+
}
|
|
119
|
+
if (resource === 'tweet') {
|
|
120
|
+
if (operation === 'search') {
|
|
121
|
+
const searchText = this.getNodeParameter('searchText', i, '', {});
|
|
122
|
+
const returnAll = this.getNodeParameter('returnAll', i);
|
|
123
|
+
const { sortOrder, startTime, endTime, tweetFieldsObject } = this.getNodeParameter('additionalFields', i, {});
|
|
124
|
+
const qs = {
|
|
125
|
+
query: searchText,
|
|
126
|
+
};
|
|
127
|
+
if (endTime) {
|
|
128
|
+
const endTimeISO = luxon_1.DateTime.fromISO(endTime).toISO();
|
|
129
|
+
qs.end_time = endTimeISO;
|
|
130
|
+
}
|
|
131
|
+
if (sortOrder) {
|
|
132
|
+
qs.sort_order = sortOrder;
|
|
133
|
+
}
|
|
134
|
+
if (startTime) {
|
|
135
|
+
const startTimeISO8601 = luxon_1.DateTime.fromISO(startTime).toISO();
|
|
136
|
+
qs.start_time = startTimeISO8601;
|
|
137
|
+
}
|
|
138
|
+
if (tweetFieldsObject) {
|
|
139
|
+
if (tweetFieldsObject.length > 0) {
|
|
140
|
+
qs['tweet.fields'] = tweetFieldsObject.join(',');
|
|
141
|
+
}
|
|
142
|
+
}
|
|
143
|
+
if (returnAll) {
|
|
144
|
+
responseData = await GenericFunctions_1.twitterApiRequestAllItems.call(this, 'data', 'GET', '/tweets/search/recent', {}, qs);
|
|
145
|
+
}
|
|
146
|
+
else {
|
|
147
|
+
const limit = this.getNodeParameter('limit', i);
|
|
148
|
+
qs.max_results = limit;
|
|
149
|
+
responseData = await GenericFunctions_1.twitterApiRequest.call(this, 'GET', '/tweets/search/recent', {}, qs);
|
|
150
|
+
}
|
|
151
|
+
}
|
|
152
|
+
if (operation === 'create') {
|
|
153
|
+
const text = this.getNodeParameter('text', i, '', {});
|
|
154
|
+
const { location, attachments, inQuoteToStatusId, inReplyToStatusId } = this.getNodeParameter('additionalFields', i, {});
|
|
155
|
+
const body = {
|
|
156
|
+
text,
|
|
157
|
+
};
|
|
158
|
+
if (location) {
|
|
159
|
+
body.geo = { place_id: location };
|
|
160
|
+
}
|
|
161
|
+
if (attachments) {
|
|
162
|
+
body.media = { media_ids: [attachments] };
|
|
163
|
+
}
|
|
164
|
+
if (inQuoteToStatusId) {
|
|
165
|
+
body.quote_tweet_id = (0, GenericFunctions_1.returnId)(inQuoteToStatusId);
|
|
166
|
+
}
|
|
167
|
+
if (inReplyToStatusId) {
|
|
168
|
+
const inReplyToStatusIdValue = { in_reply_to_tweet_id: (0, GenericFunctions_1.returnId)(inReplyToStatusId) };
|
|
169
|
+
body.reply = inReplyToStatusIdValue;
|
|
170
|
+
}
|
|
171
|
+
responseData = await GenericFunctions_1.twitterApiRequest.call(this, 'POST', '/tweets', body);
|
|
172
|
+
}
|
|
173
|
+
if (operation === 'delete') {
|
|
174
|
+
const tweetRLC = this.getNodeParameter('tweetDeleteId', i, '', {});
|
|
175
|
+
const tweetId = (0, GenericFunctions_1.returnId)(tweetRLC);
|
|
176
|
+
responseData = await GenericFunctions_1.twitterApiRequest.call(this, 'DELETE', `/tweets/${tweetId}`, {});
|
|
177
|
+
}
|
|
178
|
+
if (operation === 'like') {
|
|
179
|
+
const tweetRLC = this.getNodeParameter('tweetId', i, '', {});
|
|
180
|
+
const tweetId = (0, GenericFunctions_1.returnId)(tweetRLC);
|
|
181
|
+
const body = {
|
|
182
|
+
tweet_id: tweetId,
|
|
183
|
+
};
|
|
184
|
+
const user = (await GenericFunctions_1.twitterApiRequest.call(this, 'GET', '/users/me', {}));
|
|
185
|
+
responseData = await GenericFunctions_1.twitterApiRequest.call(this, 'POST', `/users/${user.id}/likes`, body);
|
|
186
|
+
}
|
|
187
|
+
if (operation === 'retweet') {
|
|
188
|
+
const tweetRLC = this.getNodeParameter('tweetId', i, '', {});
|
|
189
|
+
const tweetId = (0, GenericFunctions_1.returnId)(tweetRLC);
|
|
190
|
+
const body = {
|
|
191
|
+
tweet_id: tweetId,
|
|
192
|
+
};
|
|
193
|
+
const user = (await GenericFunctions_1.twitterApiRequest.call(this, 'GET', '/users/me', {}));
|
|
194
|
+
responseData = await GenericFunctions_1.twitterApiRequest.call(this, 'POST', `/users/${user.id}/retweets`, body);
|
|
195
|
+
}
|
|
196
|
+
}
|
|
197
|
+
if (resource === 'list') {
|
|
198
|
+
if (operation === 'add') {
|
|
199
|
+
const userRlc = this.getNodeParameter('user', i, '', {});
|
|
200
|
+
const userId = userRlc.mode !== 'username'
|
|
201
|
+
? (0, GenericFunctions_1.returnId)(userRlc)
|
|
202
|
+
: await GenericFunctions_1.returnIdFromUsername.call(this, userRlc);
|
|
203
|
+
const listRlc = this.getNodeParameter('list', i, '', {});
|
|
204
|
+
const listId = (0, GenericFunctions_1.returnId)(listRlc);
|
|
205
|
+
responseData = await GenericFunctions_1.twitterApiRequest.call(this, 'POST', `/lists/${listId}/members`, {
|
|
206
|
+
user_id: userId,
|
|
207
|
+
});
|
|
208
|
+
}
|
|
209
|
+
}
|
|
210
|
+
if (resource === 'directMessage') {
|
|
211
|
+
if (operation === 'create') {
|
|
212
|
+
const userRlc = this.getNodeParameter('user', i, '', {});
|
|
213
|
+
const user = await GenericFunctions_1.returnIdFromUsername.call(this, userRlc);
|
|
214
|
+
const text = this.getNodeParameter('text', i, '', {});
|
|
215
|
+
const { attachments } = this.getNodeParameter('additionalFields', i, {}, {});
|
|
216
|
+
const body = {
|
|
217
|
+
text,
|
|
218
|
+
};
|
|
219
|
+
if (attachments) {
|
|
220
|
+
body.attachments = [{ media_id: attachments }];
|
|
221
|
+
}
|
|
222
|
+
responseData = await GenericFunctions_1.twitterApiRequest.call(this, 'POST', `/dm_conversations/with/${user}/messages`, body);
|
|
223
|
+
}
|
|
224
|
+
}
|
|
225
|
+
const executionData = this.helpers.constructExecutionMetaData(this.helpers.returnJsonArray(responseData), { itemData: { item: i } });
|
|
226
|
+
returnData.push(...executionData);
|
|
227
|
+
}
|
|
228
|
+
catch (error) {
|
|
229
|
+
if (this.continueOnFail()) {
|
|
230
|
+
const executionErrorData = {
|
|
231
|
+
json: {
|
|
232
|
+
error: error.message,
|
|
233
|
+
},
|
|
234
|
+
};
|
|
235
|
+
returnData.push(executionErrorData);
|
|
236
|
+
continue;
|
|
237
|
+
}
|
|
238
|
+
throw error;
|
|
239
|
+
}
|
|
240
|
+
}
|
|
241
|
+
return this.prepareOutputData(returnData);
|
|
242
|
+
}
|
|
243
|
+
}
|
|
244
|
+
exports.TwitterV2 = TwitterV2;
|
|
245
|
+
//# sourceMappingURL=TwitterV2.node.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"TwitterV2.node.js","sourceRoot":"","sources":["../../../../nodes/Twitter/V2/TwitterV2.node.ts"],"names":[],"mappings":"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"}
|
|
@@ -0,0 +1,76 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.userFields = exports.userOperations = void 0;
|
|
4
|
+
exports.userOperations = [
|
|
5
|
+
{
|
|
6
|
+
displayName: 'Operation',
|
|
7
|
+
name: 'operation',
|
|
8
|
+
type: 'options',
|
|
9
|
+
noDataExpression: true,
|
|
10
|
+
displayOptions: {
|
|
11
|
+
show: {
|
|
12
|
+
resource: ['user'],
|
|
13
|
+
},
|
|
14
|
+
},
|
|
15
|
+
options: [
|
|
16
|
+
{
|
|
17
|
+
name: 'Get',
|
|
18
|
+
value: 'searchUser',
|
|
19
|
+
description: 'Retrieve a user by username',
|
|
20
|
+
action: 'Get User',
|
|
21
|
+
},
|
|
22
|
+
],
|
|
23
|
+
default: 'searchUser',
|
|
24
|
+
},
|
|
25
|
+
];
|
|
26
|
+
exports.userFields = [
|
|
27
|
+
{
|
|
28
|
+
displayName: 'User',
|
|
29
|
+
name: 'user',
|
|
30
|
+
type: 'resourceLocator',
|
|
31
|
+
default: { mode: 'username', value: '' },
|
|
32
|
+
required: true,
|
|
33
|
+
description: 'The user you want to search',
|
|
34
|
+
displayOptions: {
|
|
35
|
+
show: {
|
|
36
|
+
operation: ['searchUser'],
|
|
37
|
+
resource: ['user'],
|
|
38
|
+
},
|
|
39
|
+
hide: {
|
|
40
|
+
me: [true],
|
|
41
|
+
},
|
|
42
|
+
},
|
|
43
|
+
modes: [
|
|
44
|
+
{
|
|
45
|
+
displayName: 'By Username',
|
|
46
|
+
name: 'username',
|
|
47
|
+
type: 'string',
|
|
48
|
+
validation: [],
|
|
49
|
+
placeholder: 'e.g. n8n',
|
|
50
|
+
url: '',
|
|
51
|
+
},
|
|
52
|
+
{
|
|
53
|
+
displayName: 'By ID',
|
|
54
|
+
name: 'id',
|
|
55
|
+
type: 'string',
|
|
56
|
+
validation: [],
|
|
57
|
+
placeholder: 'e.g. 1068479892537384960',
|
|
58
|
+
url: '',
|
|
59
|
+
},
|
|
60
|
+
],
|
|
61
|
+
},
|
|
62
|
+
{
|
|
63
|
+
displayName: 'Me',
|
|
64
|
+
name: 'me',
|
|
65
|
+
type: 'boolean',
|
|
66
|
+
displayOptions: {
|
|
67
|
+
show: {
|
|
68
|
+
operation: ['searchUser'],
|
|
69
|
+
resource: ['user'],
|
|
70
|
+
},
|
|
71
|
+
},
|
|
72
|
+
default: false,
|
|
73
|
+
description: 'Whether you want to search the authenticated user',
|
|
74
|
+
},
|
|
75
|
+
];
|
|
76
|
+
//# sourceMappingURL=UserDescription.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"UserDescription.js","sourceRoot":"","sources":["../../../../nodes/Twitter/V2/UserDescription.ts"],"names":[],"mappings":";;;AAEa,QAAA,cAAc,GAAsB;IAChD;QACC,WAAW,EAAE,WAAW;QACxB,IAAI,EAAE,WAAW;QACjB,IAAI,EAAE,SAAS;QACf,gBAAgB,EAAE,IAAI;QACtB,cAAc,EAAE;YACf,IAAI,EAAE;gBACL,QAAQ,EAAE,CAAC,MAAM,CAAC;aAClB;SACD;QACD,OAAO,EAAE;YACR;gBACC,IAAI,EAAE,KAAK;gBACX,KAAK,EAAE,YAAY;gBACnB,WAAW,EAAE,6BAA6B;gBAC1C,MAAM,EAAE,UAAU;aAClB;SACD;QACD,OAAO,EAAE,YAAY;KACrB;CACD,CAAC;AAEW,QAAA,UAAU,GAAsB;IAI5C;QACC,WAAW,EAAE,MAAM;QACnB,IAAI,EAAE,MAAM;QACZ,IAAI,EAAE,iBAAiB;QACvB,OAAO,EAAE,EAAE,IAAI,EAAE,UAAU,EAAE,KAAK,EAAE,EAAE,EAAE;QACxC,QAAQ,EAAE,IAAI;QACd,WAAW,EAAE,6BAA6B;QAC1C,cAAc,EAAE;YACf,IAAI,EAAE;gBACL,SAAS,EAAE,CAAC,YAAY,CAAC;gBACzB,QAAQ,EAAE,CAAC,MAAM,CAAC;aAClB;YACD,IAAI,EAAE;gBACL,EAAE,EAAE,CAAC,IAAI,CAAC;aACV;SACD;QACD,KAAK,EAAE;YACN;gBACC,WAAW,EAAE,aAAa;gBAC1B,IAAI,EAAE,UAAU;gBAChB,IAAI,EAAE,QAAQ;gBACd,UAAU,EAAE,EAAE;gBACd,WAAW,EAAE,UAAU;gBACvB,GAAG,EAAE,EAAE;aACP;YACD;gBACC,WAAW,EAAE,OAAO;gBACpB,IAAI,EAAE,IAAI;gBACV,IAAI,EAAE,QAAQ;gBACd,UAAU,EAAE,EAAE;gBACd,WAAW,EAAE,0BAA0B;gBACvC,GAAG,EAAE,EAAE;aACP;SACD;KACD;IACD;QACC,WAAW,EAAE,IAAI;QACjB,IAAI,EAAE,IAAI;QACV,IAAI,EAAE,SAAS;QACf,cAAc,EAAE;YACf,IAAI,EAAE;gBACL,SAAS,EAAE,CAAC,YAAY,CAAC;gBACzB,QAAQ,EAAE,CAAC,MAAM,CAAC;aAClB;SACD;QACD,OAAO,EAAE,KAAK;QACd,WAAW,EAAE,mDAAmD;KAChE;CACD,CAAC"}
|
|
@@ -0,0 +1,284 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "node-1-twitter-node-overhaul",
|
|
3
|
+
"nodes": [
|
|
4
|
+
{
|
|
5
|
+
"parameters": {},
|
|
6
|
+
"id": "91cdc3d3-9cf7-4fe0-b74c-b17e0c8b404d",
|
|
7
|
+
"name": "When clicking \"Execute Workflow\"",
|
|
8
|
+
"type": "n8n-nodes-base.manualTrigger",
|
|
9
|
+
"typeVersion": 1,
|
|
10
|
+
"position": [-420, 80]
|
|
11
|
+
},
|
|
12
|
+
{
|
|
13
|
+
"parameters": {
|
|
14
|
+
"resource": "user",
|
|
15
|
+
"me": true
|
|
16
|
+
},
|
|
17
|
+
"id": "4ee34d07-db6c-413b-95f3-932182770044",
|
|
18
|
+
"name": "Twitter1",
|
|
19
|
+
"type": "n8n-nodes-base.twitter",
|
|
20
|
+
"typeVersion": 2,
|
|
21
|
+
"position": [-140, 260],
|
|
22
|
+
"credentials": {
|
|
23
|
+
"twitterOAuth2Api": {
|
|
24
|
+
"id": "121",
|
|
25
|
+
"name": "Twitter OAuth account 2"
|
|
26
|
+
}
|
|
27
|
+
},
|
|
28
|
+
"disabled": false
|
|
29
|
+
},
|
|
30
|
+
{
|
|
31
|
+
"parameters": {
|
|
32
|
+
"operation": "delete",
|
|
33
|
+
"tweetDeleteId": {
|
|
34
|
+
"__rl": true,
|
|
35
|
+
"value": "={{ $('Twitter').item.json.id }}",
|
|
36
|
+
"mode": "id"
|
|
37
|
+
}
|
|
38
|
+
},
|
|
39
|
+
"id": "ceca5fb1-f4b7-4dbe-9505-61793bffd87a",
|
|
40
|
+
"name": "Twitter3",
|
|
41
|
+
"type": "n8n-nodes-base.twitter",
|
|
42
|
+
"typeVersion": 2,
|
|
43
|
+
"position": [240, 80],
|
|
44
|
+
"credentials": {
|
|
45
|
+
"twitterOAuth2Api": {
|
|
46
|
+
"id": "121",
|
|
47
|
+
"name": "Twitter OAuth account 2"
|
|
48
|
+
}
|
|
49
|
+
},
|
|
50
|
+
"disabled": true
|
|
51
|
+
},
|
|
52
|
+
{
|
|
53
|
+
"parameters": {
|
|
54
|
+
"operation": "retweet",
|
|
55
|
+
"tweetId": {
|
|
56
|
+
"__rl": true,
|
|
57
|
+
"value": "={{ $json.id }}",
|
|
58
|
+
"mode": "id"
|
|
59
|
+
},
|
|
60
|
+
"additionalFields": {}
|
|
61
|
+
},
|
|
62
|
+
"id": "ce49286a-04bb-4f59-bae5-ef64a1bca2b0",
|
|
63
|
+
"name": "Twitter2",
|
|
64
|
+
"type": "n8n-nodes-base.twitter",
|
|
65
|
+
"typeVersion": 2,
|
|
66
|
+
"position": [40, 80],
|
|
67
|
+
"credentials": {
|
|
68
|
+
"twitterOAuth2Api": {
|
|
69
|
+
"id": "121",
|
|
70
|
+
"name": "Twitter OAuth account 2"
|
|
71
|
+
}
|
|
72
|
+
},
|
|
73
|
+
"disabled": true
|
|
74
|
+
},
|
|
75
|
+
{
|
|
76
|
+
"parameters": {
|
|
77
|
+
"text": "test5",
|
|
78
|
+
"additionalFields": {}
|
|
79
|
+
},
|
|
80
|
+
"id": "370e20de-dca6-48ab-aa24-47fb326bad77",
|
|
81
|
+
"name": "Twitter",
|
|
82
|
+
"type": "n8n-nodes-base.twitter",
|
|
83
|
+
"typeVersion": 2,
|
|
84
|
+
"position": [-140, 80],
|
|
85
|
+
"credentials": {
|
|
86
|
+
"twitterOAuth2Api": {
|
|
87
|
+
"id": "121",
|
|
88
|
+
"name": "Twitter OAuth account 2"
|
|
89
|
+
}
|
|
90
|
+
},
|
|
91
|
+
"disabled": true
|
|
92
|
+
},
|
|
93
|
+
{
|
|
94
|
+
"parameters": {
|
|
95
|
+
"resource": "list",
|
|
96
|
+
"list": {
|
|
97
|
+
"__rl": true,
|
|
98
|
+
"value": "https://twitter.com/i/lists/1663852298521419776",
|
|
99
|
+
"mode": "url"
|
|
100
|
+
},
|
|
101
|
+
"user": {
|
|
102
|
+
"__rl": true,
|
|
103
|
+
"value": "n8n_io",
|
|
104
|
+
"mode": "username"
|
|
105
|
+
}
|
|
106
|
+
},
|
|
107
|
+
"id": "ea1c13af-80b8-41d4-8591-e16b8e7be84b",
|
|
108
|
+
"name": "Twitter7",
|
|
109
|
+
"type": "n8n-nodes-base.twitter",
|
|
110
|
+
"typeVersion": 2,
|
|
111
|
+
"position": [-140, 640],
|
|
112
|
+
"credentials": {
|
|
113
|
+
"twitterOAuth2Api": {
|
|
114
|
+
"id": "121",
|
|
115
|
+
"name": "Twitter OAuth account 2"
|
|
116
|
+
}
|
|
117
|
+
},
|
|
118
|
+
"disabled": true
|
|
119
|
+
},
|
|
120
|
+
{
|
|
121
|
+
"parameters": {
|
|
122
|
+
"operation": "search",
|
|
123
|
+
"searchText": "bloomberg",
|
|
124
|
+
"limit": 10,
|
|
125
|
+
"additionalFields": {}
|
|
126
|
+
},
|
|
127
|
+
"id": "216b3061-a52b-4d64-9ed8-9cc6940f6efa",
|
|
128
|
+
"name": "Twitter5",
|
|
129
|
+
"type": "n8n-nodes-base.twitter",
|
|
130
|
+
"typeVersion": 2,
|
|
131
|
+
"position": [-140, 440],
|
|
132
|
+
"credentials": {
|
|
133
|
+
"twitterOAuth2Api": {
|
|
134
|
+
"id": "121",
|
|
135
|
+
"name": "Twitter OAuth account 2"
|
|
136
|
+
}
|
|
137
|
+
}
|
|
138
|
+
}
|
|
139
|
+
],
|
|
140
|
+
"pinData": {
|
|
141
|
+
"Twitter1": [
|
|
142
|
+
{
|
|
143
|
+
"json": {
|
|
144
|
+
"id": "1285192200213626880",
|
|
145
|
+
"name": "Integration-n8n",
|
|
146
|
+
"username": "IntegrationN8n"
|
|
147
|
+
}
|
|
148
|
+
}
|
|
149
|
+
],
|
|
150
|
+
"Twitter5": [
|
|
151
|
+
{
|
|
152
|
+
"json": {
|
|
153
|
+
"edit_history_tweet_ids": ["1666357334740811776"],
|
|
154
|
+
"id": "1666357334740811776",
|
|
155
|
+
"text": "RT @business: Extreme heat is happening earlier than usual this year in Asia. That’s posing a grave risk to agriculture and industrial acti…"
|
|
156
|
+
}
|
|
157
|
+
},
|
|
158
|
+
{
|
|
159
|
+
"json": {
|
|
160
|
+
"edit_history_tweet_ids": ["1666357331276230656"],
|
|
161
|
+
"id": "1666357331276230656",
|
|
162
|
+
"text": "@ROBVME @sheepsleepdeep @mattxiv Bit like Bloomberg, but then for an incredible average beer brand, to which grown ass adults have some deeply emotional attachment to and going through a teenage break-up with, because a tiktok.\nGot it."
|
|
163
|
+
}
|
|
164
|
+
},
|
|
165
|
+
{
|
|
166
|
+
"json": {
|
|
167
|
+
"edit_history_tweet_ids": ["1666357319381180417"],
|
|
168
|
+
"id": "1666357319381180417",
|
|
169
|
+
"text": "The global economy is set for a weak recovery from the shocks of Covid and Russia’s war in Ukraine, dogged by persistent inflation and central banks' restrictive policies, the OECD warns https://t.co/HPtelXu8iR https://t.co/rziWHhr8Np"
|
|
170
|
+
}
|
|
171
|
+
},
|
|
172
|
+
{
|
|
173
|
+
"json": {
|
|
174
|
+
"edit_history_tweet_ids": ["1666357315946303488"],
|
|
175
|
+
"id": "1666357315946303488",
|
|
176
|
+
"text": "RT @lukedepulford: Love this so much. Variations of “Glory to Hong Kong” are THE WHOLE TOP TEN of the most downloaded song on iTunes.\n\n✊\n\nh…"
|
|
177
|
+
}
|
|
178
|
+
},
|
|
179
|
+
{
|
|
180
|
+
"json": {
|
|
181
|
+
"edit_history_tweet_ids": ["1666357265320869891"],
|
|
182
|
+
"id": "1666357265320869891",
|
|
183
|
+
"text": "RT @business: The SEC said it’s seeking to freeze https://t.co/35sr7lifRX’s assets and protect customer funds, including through the repatr…"
|
|
184
|
+
}
|
|
185
|
+
},
|
|
186
|
+
{
|
|
187
|
+
"json": {
|
|
188
|
+
"edit_history_tweet_ids": ["1666357244760555520"],
|
|
189
|
+
"id": "1666357244760555520",
|
|
190
|
+
"text": "RT @BloombergJapan: オプション市場で日経平均先高観強まる、3万4000円に備える買い急増 https://t.co/mIcdkgokYj"
|
|
191
|
+
}
|
|
192
|
+
},
|
|
193
|
+
{
|
|
194
|
+
"json": {
|
|
195
|
+
"edit_history_tweet_ids": ["1666357239710359552"],
|
|
196
|
+
"id": "1666357239710359552",
|
|
197
|
+
"text": "Twitter'a mı girdim bloomberg mi anlamadım,dolar euro altın..maşallahları var,tl mi onun anası sikilmiş."
|
|
198
|
+
}
|
|
199
|
+
},
|
|
200
|
+
{
|
|
201
|
+
"json": {
|
|
202
|
+
"edit_history_tweet_ids": ["1666357235340165120"],
|
|
203
|
+
"id": "1666357235340165120",
|
|
204
|
+
"text": "RT @business: These charts show why Germany needs mass migration https://t.co/rvZixuwwnu"
|
|
205
|
+
}
|
|
206
|
+
},
|
|
207
|
+
{
|
|
208
|
+
"json": {
|
|
209
|
+
"edit_history_tweet_ids": ["1666357210409213952"],
|
|
210
|
+
"id": "1666357210409213952",
|
|
211
|
+
"text": "RT @elonmusk: @MattWalshBlog View count is actually understated, as it does not include anything from our API, for example tweets you see i…"
|
|
212
|
+
}
|
|
213
|
+
},
|
|
214
|
+
{
|
|
215
|
+
"json": {
|
|
216
|
+
"edit_history_tweet_ids": ["1666357208983166976"],
|
|
217
|
+
"id": "1666357208983166976",
|
|
218
|
+
"text": "RT @coinbureau: There we go. Without proving in a court of law that these tokens are \"securities\" the SEC may be able to restrict access to…"
|
|
219
|
+
}
|
|
220
|
+
}
|
|
221
|
+
]
|
|
222
|
+
},
|
|
223
|
+
"connections": {
|
|
224
|
+
"When clicking \"Execute Workflow\"": {
|
|
225
|
+
"main": [
|
|
226
|
+
[
|
|
227
|
+
{
|
|
228
|
+
"node": "Twitter1",
|
|
229
|
+
"type": "main",
|
|
230
|
+
"index": 0
|
|
231
|
+
},
|
|
232
|
+
{
|
|
233
|
+
"node": "Twitter",
|
|
234
|
+
"type": "main",
|
|
235
|
+
"index": 0
|
|
236
|
+
},
|
|
237
|
+
{
|
|
238
|
+
"node": "Twitter7",
|
|
239
|
+
"type": "main",
|
|
240
|
+
"index": 0
|
|
241
|
+
},
|
|
242
|
+
{
|
|
243
|
+
"node": "Twitter5",
|
|
244
|
+
"type": "main",
|
|
245
|
+
"index": 0
|
|
246
|
+
}
|
|
247
|
+
]
|
|
248
|
+
]
|
|
249
|
+
},
|
|
250
|
+
"Twitter1": {
|
|
251
|
+
"main": [[]]
|
|
252
|
+
},
|
|
253
|
+
"Twitter2": {
|
|
254
|
+
"main": [
|
|
255
|
+
[
|
|
256
|
+
{
|
|
257
|
+
"node": "Twitter3",
|
|
258
|
+
"type": "main",
|
|
259
|
+
"index": 0
|
|
260
|
+
}
|
|
261
|
+
]
|
|
262
|
+
]
|
|
263
|
+
},
|
|
264
|
+
"Twitter": {
|
|
265
|
+
"main": [
|
|
266
|
+
[
|
|
267
|
+
{
|
|
268
|
+
"node": "Twitter2",
|
|
269
|
+
"type": "main",
|
|
270
|
+
"index": 0
|
|
271
|
+
}
|
|
272
|
+
]
|
|
273
|
+
]
|
|
274
|
+
}
|
|
275
|
+
},
|
|
276
|
+
"active": false,
|
|
277
|
+
"settings": {},
|
|
278
|
+
"versionId": "bc985960-5bfd-4b56-b290-ab839b3c0c30",
|
|
279
|
+
"id": "66",
|
|
280
|
+
"meta": {
|
|
281
|
+
"instanceId": "8e9416f42a954d0a370d988ac3c0f916f44074a6e45189164b1a8559394a7516"
|
|
282
|
+
},
|
|
283
|
+
"tags": []
|
|
284
|
+
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"UProc.node.js","sourceRoot":"","sources":["../../../nodes/UProc/UProc.node.ts"],"names":[],"mappings":";;;AASA,yDAAqD;AAErD,yDAAkD;AAElD,uDAAmE;AAEnE,MAAa,KAAK;IAAlB;QACC,gBAAW,GAAyB;YACnC,WAAW,EAAE,OAAO;YACpB,IAAI,EAAE,OAAO;YAEb,IAAI,EAAE,gBAAgB;YACtB,KAAK,EAAE,CAAC,QAAQ,CAAC;YACjB,OAAO,EAAE,CAAC;YACV,QAAQ,EAAE,yBAAyB;YACnC,WAAW,EAAE,mBAAmB;YAChC,QAAQ,EAAE;gBACT,IAAI,EAAE,OAAO;aACb;YACD,MAAM,EAAE,CAAC,MAAM,CAAC;YAChB,OAAO,EAAE,CAAC,MAAM,CAAC;YACjB,WAAW,EAAE;gBACZ;oBACC,IAAI,EAAE,UAAU;oBAChB,QAAQ,EAAE,IAAI;iBACd;aACD;YACD,UAAU,EAAE;gBACX,GAAG,+BAAY;gBACf,GAAG,gCAAc;gBACjB,GAAG,gCAAc;gBACjB;oBACC,WAAW,EAAE,oBAAoB;oBACjC,IAAI,EAAE,mBAAmB;oBACzB,IAAI,EAAE,YAAY;oBAClB,WAAW,EAAE,YAAY;oBACzB,OAAO,EAAE,EAAE;oBACX,cAAc,EAAE;wBACf,IAAI,EAAE;4BACL,KAAK,EAAE;gCACN,OAAO;gCACP,eAAe;gCACf,SAAS;gCACT,SAAS;gCACT,YAAY;gCACZ,OAAO;gCACP,UAAU;gCACV,UAAU;gCACV,SAAS;gCACT,UAAU;gCACV,MAAM;6BACN;yBACD;qBACD;oBACD,OAAO,EAAE;wBACR;4BACC,WAAW,EAAE,cAAc;4BAC3B,IAAI,EAAE,aAAa;4BACnB,IAAI,EAAE,QAAQ;4BACd,WAAW,EAAE,+DAA+D;4BAC5E,OAAO,EAAE,EAAE;yBACX;qBACD;iBACD;aACD;SACD,CAAC;
|
|
1
|
+
{"version":3,"file":"UProc.node.js","sourceRoot":"","sources":["../../../nodes/UProc/UProc.node.ts"],"names":[],"mappings":"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"}
|