├── .editorconfig ├── .eslintrc ├── .github └── workflows │ ├── publish.yml │ └── test.yml ├── .gitignore ├── .nvmrc ├── .zapierapprc ├── CHANGELOG.md ├── LICENSE ├── README.md ├── index.js ├── package.json ├── src ├── apify_helpers.js ├── authentication.js ├── consts.js ├── creates │ ├── actor_run.js │ ├── scrape_single_url.js │ ├── set_value.js │ └── task_run.js ├── output_fields.js ├── request_helpers.js ├── searches │ ├── actor_last_run.js │ ├── fetch_items.js │ ├── get_value.js │ └── task_last_run.js ├── triggers │ ├── actor_additional_fields.js │ ├── actor_dataset_additional_output_fields.js │ ├── actor_run_finished.js │ ├── actors.js │ ├── actors_with_store.js │ ├── task_run_finished.js │ └── tasks.js └── zapier_helpers.js └── test ├── apify_helpers.js ├── authentication.js ├── consts.js ├── creates ├── actor_run.js ├── scrape_single_url.js ├── set_value.js └── task_run.js ├── helpers ├── generatedInputSchema.json ├── index.js ├── webScraperInputSchema.json └── websiteContentCrawlerInputSchema.json ├── searches ├── actor_last_run.js ├── fetch_items.js ├── get_value.js └── task_last_run.js ├── triggers ├── actor_run_finished.js ├── create_webhook_with_status.js └── task_run_finished.js └── zapier_helpers.js /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apify/apify-zapier-integration/HEAD/.editorconfig -------------------------------------------------------------------------------- /.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apify/apify-zapier-integration/HEAD/.eslintrc -------------------------------------------------------------------------------- /.github/workflows/publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apify/apify-zapier-integration/HEAD/.github/workflows/publish.yml -------------------------------------------------------------------------------- /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apify/apify-zapier-integration/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apify/apify-zapier-integration/HEAD/.gitignore -------------------------------------------------------------------------------- /.nvmrc: -------------------------------------------------------------------------------- 1 | v22 2 | -------------------------------------------------------------------------------- /.zapierapprc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apify/apify-zapier-integration/HEAD/.zapierapprc -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apify/apify-zapier-integration/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apify/apify-zapier-integration/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apify/apify-zapier-integration/HEAD/README.md -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apify/apify-zapier-integration/HEAD/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apify/apify-zapier-integration/HEAD/package.json -------------------------------------------------------------------------------- /src/apify_helpers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apify/apify-zapier-integration/HEAD/src/apify_helpers.js -------------------------------------------------------------------------------- /src/authentication.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apify/apify-zapier-integration/HEAD/src/authentication.js -------------------------------------------------------------------------------- /src/consts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apify/apify-zapier-integration/HEAD/src/consts.js -------------------------------------------------------------------------------- /src/creates/actor_run.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apify/apify-zapier-integration/HEAD/src/creates/actor_run.js -------------------------------------------------------------------------------- /src/creates/scrape_single_url.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apify/apify-zapier-integration/HEAD/src/creates/scrape_single_url.js -------------------------------------------------------------------------------- /src/creates/set_value.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apify/apify-zapier-integration/HEAD/src/creates/set_value.js -------------------------------------------------------------------------------- /src/creates/task_run.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apify/apify-zapier-integration/HEAD/src/creates/task_run.js -------------------------------------------------------------------------------- /src/output_fields.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apify/apify-zapier-integration/HEAD/src/output_fields.js -------------------------------------------------------------------------------- /src/request_helpers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apify/apify-zapier-integration/HEAD/src/request_helpers.js -------------------------------------------------------------------------------- /src/searches/actor_last_run.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apify/apify-zapier-integration/HEAD/src/searches/actor_last_run.js -------------------------------------------------------------------------------- /src/searches/fetch_items.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apify/apify-zapier-integration/HEAD/src/searches/fetch_items.js -------------------------------------------------------------------------------- /src/searches/get_value.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apify/apify-zapier-integration/HEAD/src/searches/get_value.js -------------------------------------------------------------------------------- /src/searches/task_last_run.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apify/apify-zapier-integration/HEAD/src/searches/task_last_run.js -------------------------------------------------------------------------------- /src/triggers/actor_additional_fields.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apify/apify-zapier-integration/HEAD/src/triggers/actor_additional_fields.js -------------------------------------------------------------------------------- /src/triggers/actor_dataset_additional_output_fields.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apify/apify-zapier-integration/HEAD/src/triggers/actor_dataset_additional_output_fields.js -------------------------------------------------------------------------------- /src/triggers/actor_run_finished.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apify/apify-zapier-integration/HEAD/src/triggers/actor_run_finished.js -------------------------------------------------------------------------------- /src/triggers/actors.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apify/apify-zapier-integration/HEAD/src/triggers/actors.js -------------------------------------------------------------------------------- /src/triggers/actors_with_store.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apify/apify-zapier-integration/HEAD/src/triggers/actors_with_store.js -------------------------------------------------------------------------------- /src/triggers/task_run_finished.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apify/apify-zapier-integration/HEAD/src/triggers/task_run_finished.js -------------------------------------------------------------------------------- /src/triggers/tasks.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apify/apify-zapier-integration/HEAD/src/triggers/tasks.js -------------------------------------------------------------------------------- /src/zapier_helpers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apify/apify-zapier-integration/HEAD/src/zapier_helpers.js -------------------------------------------------------------------------------- /test/apify_helpers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apify/apify-zapier-integration/HEAD/test/apify_helpers.js -------------------------------------------------------------------------------- /test/authentication.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apify/apify-zapier-integration/HEAD/test/authentication.js -------------------------------------------------------------------------------- /test/consts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apify/apify-zapier-integration/HEAD/test/consts.js -------------------------------------------------------------------------------- /test/creates/actor_run.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apify/apify-zapier-integration/HEAD/test/creates/actor_run.js -------------------------------------------------------------------------------- /test/creates/scrape_single_url.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apify/apify-zapier-integration/HEAD/test/creates/scrape_single_url.js -------------------------------------------------------------------------------- /test/creates/set_value.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apify/apify-zapier-integration/HEAD/test/creates/set_value.js -------------------------------------------------------------------------------- /test/creates/task_run.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apify/apify-zapier-integration/HEAD/test/creates/task_run.js -------------------------------------------------------------------------------- /test/helpers/generatedInputSchema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apify/apify-zapier-integration/HEAD/test/helpers/generatedInputSchema.json -------------------------------------------------------------------------------- /test/helpers/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apify/apify-zapier-integration/HEAD/test/helpers/index.js -------------------------------------------------------------------------------- /test/helpers/webScraperInputSchema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apify/apify-zapier-integration/HEAD/test/helpers/webScraperInputSchema.json -------------------------------------------------------------------------------- /test/helpers/websiteContentCrawlerInputSchema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apify/apify-zapier-integration/HEAD/test/helpers/websiteContentCrawlerInputSchema.json -------------------------------------------------------------------------------- /test/searches/actor_last_run.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apify/apify-zapier-integration/HEAD/test/searches/actor_last_run.js -------------------------------------------------------------------------------- /test/searches/fetch_items.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apify/apify-zapier-integration/HEAD/test/searches/fetch_items.js -------------------------------------------------------------------------------- /test/searches/get_value.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apify/apify-zapier-integration/HEAD/test/searches/get_value.js -------------------------------------------------------------------------------- /test/searches/task_last_run.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apify/apify-zapier-integration/HEAD/test/searches/task_last_run.js -------------------------------------------------------------------------------- /test/triggers/actor_run_finished.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apify/apify-zapier-integration/HEAD/test/triggers/actor_run_finished.js -------------------------------------------------------------------------------- /test/triggers/create_webhook_with_status.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apify/apify-zapier-integration/HEAD/test/triggers/create_webhook_with_status.js -------------------------------------------------------------------------------- /test/triggers/task_run_finished.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apify/apify-zapier-integration/HEAD/test/triggers/task_run_finished.js -------------------------------------------------------------------------------- /test/zapier_helpers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apify/apify-zapier-integration/HEAD/test/zapier_helpers.js --------------------------------------------------------------------------------