flowtask 5.11.9__tar.gz → 5.11.10__tar.gz
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.
- flowtask-5.11.10/.gitignore +210 -0
- flowtask-5.11.10/Makefile +191 -0
- flowtask-5.11.10/PKG-INFO +222 -0
- flowtask-5.11.10/app.py +195 -0
- flowtask-5.11.10/artifacts/dev-rebase-analysis/dev_unique_2025_2026.txt +485 -0
- flowtask-5.11.10/artifacts/dev-rebase-analysis/dev_unique_2026.txt +24 -0
- flowtask-5.11.10/artifacts/dev-rebase-analysis/divergence_summary.md +124 -0
- flowtask-5.11.10/artifacts/plan_hookservice_event_loop.md +28 -0
- flowtask-5.11.10/artifacts/scraping_plans/registry.json +56 -0
- flowtask-5.11.10/artifacts/scraping_plans/www.att.com/www-att-com-prepaid_v1.0_0526866f64832c9d.json +74 -0
- flowtask-5.11.10/artifacts/scraping_plans/www.att.com/www-att-com-unlimited-level-up_v1.0_22f5ea70151b2781.json +74 -0
- flowtask-5.11.10/conftest.py +115 -0
- flowtask-5.11.10/flowtask/__main__.py +202 -0
- flowtask-5.11.10/flowtask/_version.py +24 -0
- flowtask-5.11.10/flowtask/components/DateList.py +274 -0
- flowtask-5.11.10/flowtask/components/ParrotLoader/loader.py +719 -0
- flowtask-5.11.10/flowtask/components/PgVectorOutput.py +299 -0
- flowtask-5.11.10/flowtask/components/SubTask.py +187 -0
- flowtask-5.11.10/flowtask/components/TransformRows/functions.py +1842 -0
- flowtask-5.11.10/flowtask/components/Workday/models/__init__.py +32 -0
- flowtask-5.11.10/flowtask/components/Workday/models/reference.py +15 -0
- flowtask-5.11.10/flowtask/components/Workday/parsers/__init__.py +134 -0
- flowtask-5.11.10/flowtask/components/Workday/parsers/reference_parsers.py +50 -0
- flowtask-5.11.10/flowtask/components/Workday/types/__init__.py +39 -0
- flowtask-5.11.10/flowtask/components/Workday/types/candidates.py +362 -0
- flowtask-5.11.10/flowtask/components/Workday/types/references.py +142 -0
- flowtask-5.11.10/flowtask/components/Workday/workday.py +961 -0
- flowtask-5.11.10/flowtask/components/ZoomUs.py +1715 -0
- flowtask-5.11.10/flowtask/components/tGroup.py +260 -0
- flowtask-5.11.10/flowtask/conf.py +539 -0
- flowtask-5.11.10/flowtask/documentation/categories.json +150 -0
- flowtask-5.11.10/flowtask/documentation/generator.py +442 -0
- flowtask-5.11.10/flowtask/documentation/models.py +88 -0
- flowtask-5.11.10/flowtask/handlers/component.py +252 -0
- flowtask-5.11.10/flowtask/hooks/actions/zoom_event.py +121 -0
- flowtask-5.11.10/flowtask/hooks/models.py +16 -0
- flowtask-5.11.10/flowtask/hooks/service.py +308 -0
- flowtask-5.11.10/flowtask/hooks/step.py +91 -0
- flowtask-5.11.10/flowtask/hooks/types/base.py +162 -0
- flowtask-5.11.10/flowtask/hooks/types/brokers/base.py +54 -0
- flowtask-5.11.10/flowtask/hooks/types/brokers/sqs.py +44 -0
- flowtask-5.11.10/flowtask/hooks/types/jira.py +277 -0
- flowtask-5.11.10/flowtask/hooks/types/mail.py +204 -0
- flowtask-5.11.10/flowtask/hooks/types/watch.py +71 -0
- flowtask-5.11.10/flowtask/hooks/types/zoom.py +202 -0
- flowtask-5.11.10/flowtask/interfaces/mask.py +178 -0
- flowtask-5.11.10/flowtask/interfaces/selenium_service.py +1096 -0
- flowtask-5.11.10/flowtask/parsers/argparser.py +299 -0
- flowtask-5.11.10/flowtask/parsers/syntax/__init__.py +17 -0
- flowtask-5.11.10/flowtask/parsers/syntax/checker.py +256 -0
- flowtask-5.11.10/flowtask/parsers/syntax/detector.py +89 -0
- flowtask-5.11.10/flowtask/parsers/syntax/registry.py +122 -0
- flowtask-5.11.10/flowtask/parsers/syntax/report.py +152 -0
- flowtask-5.11.10/flowtask/parsers/syntax/schema.py +54 -0
- flowtask-5.11.10/flowtask/tasks/abstract.py +481 -0
- flowtask-5.11.10/flowtask/version.py +12 -0
- flowtask-5.11.10/flowtask.egg-info/PKG-INFO +222 -0
- flowtask-5.11.10/flowtask.egg-info/SOURCES.txt +1635 -0
- flowtask-5.11.10/flowtask.egg-info/requires.txt +109 -0
- flowtask-5.11.10/pyproject.toml +216 -0
- flowtask-5.11.10/pytest.ini +7 -0
- flowtask-5.11.10/sdd/proposals/scan-components-resilent.brainstorm.md +599 -0
- flowtask-5.11.10/sdd/proposals/selenium-service-migration.brainstorm.md +369 -0
- flowtask-5.11.10/sdd/specs/add-syntax-check-task.spec.md +529 -0
- flowtask-5.11.10/sdd/specs/asyncdb-pgpool-acquire-race-fix.spec.md +461 -0
- flowtask-5.11.10/sdd/specs/bug-hookservice-triggers-startup.spec.md +636 -0
- flowtask-5.11.10/sdd/specs/modernize-event-loop-handling.spec.md +461 -0
- flowtask-5.11.10/sdd/specs/scan-components-resilent.spec.md +781 -0
- flowtask-5.11.10/sdd/specs/selenium-service-migration.spec.md +562 -0
- flowtask-5.11.10/sdd/specs/worker-queue-inspector-hotfix.spec.md +439 -0
- flowtask-5.11.10/sdd/specs/zoom-phone-webhook-receiver.spec.md +773 -0
- flowtask-5.11.10/sdd/tasks/.index.json +994 -0
- flowtask-5.11.10/sdd/tasks/active/TASK-034-zoom-events-raw-schema.md +177 -0
- flowtask-5.11.10/sdd/tasks/active/TASK-035-zoom-webhook-trigger.md +401 -0
- flowtask-5.11.10/sdd/tasks/active/TASK-036-persist-zoom-event-action.md +346 -0
- flowtask-5.11.10/sdd/tasks/active/TASK-037-app-py-wiring.md +213 -0
- flowtask-5.11.10/sdd/tasks/active/TASK-038-zoom-webhook-integration-tests.md +237 -0
- flowtask-5.11.10/sdd/tasks/active/TASK-039-zoom-webhook-docs.md +166 -0
- flowtask-5.11.10/sdd/tasks/completed/TASK-034-zoom-events-raw-schema.md +175 -0
- flowtask-5.11.10/sdd/tasks/completed/TASK-035-zoom-webhook-trigger.md +399 -0
- flowtask-5.11.10/sdd/tasks/completed/TASK-036-persist-zoom-event-action.md +344 -0
- flowtask-5.11.10/sdd/tasks/completed/TASK-037-app-py-wiring.md +211 -0
- flowtask-5.11.10/sdd/tasks/completed/TASK-038-zoom-webhook-integration-tests.md +237 -0
- flowtask-5.11.10/sdd/tasks/completed/TASK-039-zoom-webhook-docs.md +166 -0
- flowtask-5.11.10/sdd/tasks/completed/TASK-040-extract-root-task-schema.md +232 -0
- flowtask-5.11.10/sdd/tasks/completed/TASK-041-task-format-detector.md +260 -0
- flowtask-5.11.10/sdd/tasks/completed/TASK-042-syntax-report-models.md +282 -0
- flowtask-5.11.10/sdd/tasks/completed/TASK-043-component-schema-registry.md +321 -0
- flowtask-5.11.10/sdd/tasks/completed/TASK-044-syntax-checker.md +488 -0
- flowtask-5.11.10/sdd/tasks/completed/TASK-045-cli-wiring-and-integration-tests.md +474 -0
- flowtask-5.11.10/sdd/tasks/completed/TASK-046-basetrigger-setup-contract.md +260 -0
- flowtask-5.11.10/sdd/tasks/completed/TASK-047-hookservice-sync-setup.md +423 -0
- flowtask-5.11.10/sdd/tasks/completed/TASK-048-trigger-types-conformance.md +350 -0
- flowtask-5.11.10/sdd/tasks/completed/TASK-049-app-py-wiring.md +239 -0
- flowtask-5.11.10/sdd/tasks/completed/TASK-050-hookservice-tests.md +331 -0
- flowtask-5.11.10/sdd/tasks/completed/TASK-051-pgacquirecontext-asyncdb.md +309 -0
- flowtask-5.11.10/sdd/tasks/completed/TASK-052-pgacquirecontext-tests-asyncdb.md +213 -0
- flowtask-5.11.10/sdd/tasks/completed/TASK-053-persist-zoom-event-redesign.md +367 -0
- flowtask-5.11.10/sdd/tasks/completed/TASK-054-persist-zoom-event-tests.md +317 -0
- flowtask-5.11.10/tests/hooks/actions/__init__.py +0 -0
- flowtask-5.11.10/tests/hooks/actions/test_persist_zoom_event.py +232 -0
- flowtask-5.11.10/tests/integration/fixtures/syntax/clean.yaml +4 -0
- flowtask-5.11.10/tests/integration/fixtures/syntax/missing_required.yaml +3 -0
- flowtask-5.11.10/tests/integration/hooks/__init__.py +1 -0
- flowtask-5.11.10/tests/integration/hooks/conftest.py +149 -0
- flowtask-5.11.10/tests/integration/hooks/test_aiohttp_lifecycle.py +252 -0
- flowtask-5.11.10/tests/integration/hooks/test_zoom_webhook_integration.py +145 -0
- flowtask-5.11.10/tests/integration/test_cli_syntax.py +317 -0
- flowtask-5.11.10/tests/integration/test_component_api.py +221 -0
- flowtask-5.11.10/tests/unit/__init__.py +0 -0
- flowtask-5.11.10/tests/unit/handlers/test_component.py +439 -0
- flowtask-5.11.10/tests/unit/hooks/__init__.py +0 -0
- flowtask-5.11.10/tests/unit/hooks/conftest.py +38 -0
- flowtask-5.11.10/tests/unit/hooks/fixtures.py +52 -0
- flowtask-5.11.10/tests/unit/hooks/test_basetrigger_contract.py +150 -0
- flowtask-5.11.10/tests/unit/hooks/test_hookservice_lifecycle.py +285 -0
- flowtask-5.11.10/tests/unit/hooks/test_persist_zoom_event.py +211 -0
- flowtask-5.11.10/tests/unit/hooks/test_zoom_webhook.py +258 -0
- flowtask-5.11.10/tests/unit/parsers/syntax/__init__.py +0 -0
- flowtask-5.11.10/tests/unit/parsers/syntax/fixtures/broken.yaml +4 -0
- flowtask-5.11.10/tests/unit/parsers/syntax/fixtures/clean.yaml +4 -0
- flowtask-5.11.10/tests/unit/parsers/syntax/fixtures/missing_required.yaml +3 -0
- flowtask-5.11.10/tests/unit/parsers/syntax/fixtures/unknown_component.yaml +4 -0
- flowtask-5.11.10/tests/unit/parsers/syntax/test_checker.py +161 -0
- flowtask-5.11.10/tests/unit/parsers/syntax/test_detector.py +70 -0
- flowtask-5.11.10/tests/unit/parsers/syntax/test_registry.py +96 -0
- flowtask-5.11.10/tests/unit/parsers/syntax/test_report.py +123 -0
- flowtask-5.11.10/tests/unit/parsers/syntax/test_schema.py +81 -0
- flowtask-5.11.9/.gitignore +0 -207
- flowtask-5.11.9/Makefile +0 -191
- flowtask-5.11.9/PKG-INFO +0 -221
- flowtask-5.11.9/app.py +0 -175
- flowtask-5.11.9/artifacts/scraping_plans/registry.json +0 -20
- flowtask-5.11.9/conftest.py +0 -35
- flowtask-5.11.9/flowtask/__main__.py +0 -112
- flowtask-5.11.9/flowtask/_version.py +0 -24
- flowtask-5.11.9/flowtask/components/DateList.py +0 -260
- flowtask-5.11.9/flowtask/components/ParrotLoader/loader.py +0 -450
- flowtask-5.11.9/flowtask/components/PgVectorOutput.py +0 -284
- flowtask-5.11.9/flowtask/components/SubTask.py +0 -186
- flowtask-5.11.9/flowtask/components/TransformRows/functions.py +0 -1817
- flowtask-5.11.9/flowtask/components/Workday/models/__init__.py +0 -30
- flowtask-5.11.9/flowtask/components/Workday/parsers/__init__.py +0 -131
- flowtask-5.11.9/flowtask/components/Workday/types/__init__.py +0 -37
- flowtask-5.11.9/flowtask/components/Workday/types/candidates.py +0 -364
- flowtask-5.11.9/flowtask/components/Workday/workday.py +0 -949
- flowtask-5.11.9/flowtask/components/ZoomUs.py +0 -1712
- flowtask-5.11.9/flowtask/components/tGroup.py +0 -252
- flowtask-5.11.9/flowtask/conf.py +0 -533
- flowtask-5.11.9/flowtask/documentation/generator.py +0 -381
- flowtask-5.11.9/flowtask/documentation/models.py +0 -86
- flowtask-5.11.9/flowtask/handlers/component.py +0 -188
- flowtask-5.11.9/flowtask/hooks/models.py +0 -17
- flowtask-5.11.9/flowtask/hooks/service.py +0 -187
- flowtask-5.11.9/flowtask/hooks/step.py +0 -91
- flowtask-5.11.9/flowtask/hooks/types/base.py +0 -129
- flowtask-5.11.9/flowtask/hooks/types/brokers/base.py +0 -54
- flowtask-5.11.9/flowtask/hooks/types/brokers/sqs.py +0 -44
- flowtask-5.11.9/flowtask/hooks/types/jira.py +0 -279
- flowtask-5.11.9/flowtask/hooks/types/mail.py +0 -205
- flowtask-5.11.9/flowtask/hooks/types/watch.py +0 -71
- flowtask-5.11.9/flowtask/interfaces/mask.py +0 -169
- flowtask-5.11.9/flowtask/interfaces/selenium_service.py +0 -1027
- flowtask-5.11.9/flowtask/parsers/argparser.py +0 -265
- flowtask-5.11.9/flowtask/tasks/abstract.py +0 -526
- flowtask-5.11.9/flowtask/version.py +0 -12
- flowtask-5.11.9/flowtask.egg-info/PKG-INFO +0 -221
- flowtask-5.11.9/flowtask.egg-info/SOURCES.txt +0 -1553
- flowtask-5.11.9/flowtask.egg-info/requires.txt +0 -108
- flowtask-5.11.9/pyproject.toml +0 -210
- flowtask-5.11.9/pytest.ini +0 -5
- flowtask-5.11.9/sdd/tasks/.index.json +0 -610
- flowtask-5.11.9/tests/integration/test_component_api.py +0 -218
- flowtask-5.11.9/tests/unit/handlers/test_component.py +0 -390
- {flowtask-5.11.9 → flowtask-5.11.10}/.agent/CONTEXT.md +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/.agent/rules/README.md +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/.agent/rules/async-programming-expert.md +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/.agent/rules/code-generation-guide.md +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/.agent/rules/code-reviewer.md +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/.agent/rules/code-style-guide.md +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/.agent/rules/cython-development.md +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/.agent/rules/patching-files.md +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/.agent/rules/prompt-expert.md +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/.agent/rules/python-development.md +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/.agent/rules/python-documentation.md +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/.agent/rules/refactor-planner-expert.md +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/.agent/rules/rust-development.md +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/.agent/rules.md +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/.agent/skills/aws-cost-optimization/SKILL.md +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/.agent/skills/aws-cost-optimization/references/implementation-playbook.md +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/.agent/skills/aws-serverless/SKILL.md +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/.agent/skills/code-review/SKILL.md +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/.agent/skills/cython-extensions/SKILL.md +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/.agent/skills/cython-extensions/references/numpy2_migration.md +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/.agent/skills/data-storytelling/SKILL.md +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/.agent/skills/database-schema-validator/SKILL.md +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/.agent/skills/database-schema-validator/scripts/validate_schema.py +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/.agent/skills/docstring/SKILL.md +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/.agent/skills/flowtask-component-builder/SKILL.md +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/.agent/skills/git-commit-formatter/SKILL.md +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/.agent/skills/json-to-pydantic/SKILL.md +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/.agent/skills/license-header-adder/SKILL.md +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/.agent/skills/license-header-adder/resources/HEADER.txt +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/.agent/skills/msdoc-manipulation/SKILL.md +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/.agent/skills/parrot-scaffold-tool/SKILL.md +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/.agent/skills/parrot-scaffold-tool/resources/ToolTemplate.py.hbs +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/.agent/skills/parrot-scaffold-tool/scripts/scaffold_tool.py +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/.agent/skills/production-dockerfile/SKILL.md +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/.agent/skills/python-standards/SKILL.md +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/.agent/skills/reverse-engineering-api/CHANGELOG.md +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/.agent/skills/reverse-engineering-api/LICENSE +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/.agent/skills/reverse-engineering-api/SKILL.md +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/.agent/skills/reverse-engineering-api/references/AUTH_PATTERNS.md +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/.agent/skills/reverse-engineering-api/references/HAR_ANALYSIS.md +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/.agent/skills/reverse-engineering-api/scripts/har_analyze.py +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/.agent/skills/reverse-engineering-api/scripts/har_filter.py +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/.agent/skills/reverse-engineering-api/scripts/har_utils.py +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/.agent/skills/reverse-engineering-api/scripts/har_validate.py +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/.agent/skills/reverse-engineering-api/templates/api_client.py +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/.agent/skills/rust-pyo3-function/SKILL.md +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/.agent/skills/skill-creator/README.md +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/.agent/skills/skill-creator/SKILL.md +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/.agent/skills/skill-creator/references/output-patterns.md +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/.agent/skills/skill-creator/references/workflows.md +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/.agent/skills/skill-creator/scripts/init_skill.py +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/.agent/skills/skill-creator/scripts/package_skill.py +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/.agent/skills/skill-creator/scripts/quick_validate.py +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/.agent/skills/svelte5-structural/SKILL.md +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/.agent/skills/svelte5-structural/references/patterns.md +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/.agent/skills/svelte5-structural/references/state-matchines.md +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/.agent/skills/svelte5-structural/references/widgets.md +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/.agent/skills/using-git-worktrees/SKILL.md +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/.agent/skills/worktree-pr-and-clean/SKILL.md +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/.agent/skills/worktree-start-feature/SKILL.md +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/.agent/skills/worktree-status/SKILL.md +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/.agent/system_prompt.md +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/.agent/workflows/create-parrot-tool.md +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/.agent/workflows/create-workflow.md +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/.agent/workflows/debug-regressions-with-git-bisect-binary-search.md +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/.agent/workflows/generate-tests.md +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/.agent/workflows/generate-unit-tests.md +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/.agent/workflows/git-new-feature.md +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/.agent/workflows/parrot-mcp-server.md +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/.agent/workflows/release_package.md +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/.agent/workflows/run-python-command.md +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/.agent/workflows/sdd-brainstorm.md +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/.agent/workflows/sdd-codereview.md +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/.agent/workflows/sdd-fromjira.md +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/.agent/workflows/sdd-next.md +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/.agent/workflows/sdd-proposal.md +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/.agent/workflows/sdd-spec.md +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/.agent/workflows/sdd-start.md +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/.agent/workflows/sdd-status.md +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/.agent/workflows/sdd-task.md +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/.agent/workflows/sdd-tojira.md +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/.agent/workflows/start-flow.md +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/.bumpversion.cfg +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/.claude/agents/code-reviewer.md +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/.claude/agents/sdd-worker.md +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/.claude/commands/pr-review.md +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/.claude/commands/sdd-brainstorm.md +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/.claude/commands/sdd-codereview.md +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/.claude/commands/sdd-done.md +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/.claude/commands/sdd-fromjira.md +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/.claude/commands/sdd-next.md +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/.claude/commands/sdd-proposal.md +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/.claude/commands/sdd-spec.md +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/.claude/commands/sdd-start.md +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/.claude/commands/sdd-status.md +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/.claude/commands/sdd-task.md +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/.claude/commands/sdd-tojira.md +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/.claude/rules/aws-cost-optimization.md +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/.claude/rules/code-reviewer.md +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/.claude/rules/cython-development.md +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/.claude/rules/python-development.md +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/.claude/rules/rust-development.md +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/.claude/rules/using-git-worktrees.md +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/.claude/rules/worktree-pr-and-clean.md +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/.claude/rules/worktree-start-feature.md +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/.claude/rules/worktree-status.md +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/.flake8 +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/.github/dependabot.yml +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/.github/workflows/codeql-analysis.yml +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/.github/workflows/docs.yml +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/.github/workflows/release.yml +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/.isort.cfg +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/.pylintrc +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/.style.yapf +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/AGENTS.md +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/CLAUDE.md +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/CODE_OF_CONDUCT.md +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/CONTRIBUTING.md +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/INSTALL +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/LICENSE +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/MANIFEST.in +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/README.md +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/agents/__init__.py +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/agents/agents.yaml +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/agents/nextstop/epson/queries/employee_sales.sql +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/agents/nextstop/epson/queries/employee_visits.sql +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/agents/nextstop/epson/queries/foot_traffic.sql +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/agents/nextstop/epson/queries/manager_sales.sql +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/agents/nextstop/epson/queries/store_info.sql +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/agents/nextstop/epson/queries/store_visits.sql +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/agents/nextstop/epson/queries/visits_by_manager.sql +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/agents/nextstop/hisense/queries/employee_sales.sql +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/agents/nextstop/hisense/queries/employee_visits.sql +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/agents/nextstop/hisense/queries/foot_traffic.sql +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/agents/nextstop/hisense/queries/manager_sales.sql +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/agents/nextstop/hisense/queries/store_info.sql +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/agents/nextstop/hisense/queries/store_visits.sql +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/agents/nextstop/hisense/queries/visits_by_manager.sql +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/agents/nextstop/prompts/employee_comparison.txt +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/agents/nextstop/prompts/for_employee.txt +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/agents/nextstop/prompts/for_podcast.txt +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/agents/nextstop/prompts/for_store.txt +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/agents/nextstop/prompts/team_performance.txt +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/artifacts/audit/REPORT.md +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/artifacts/audit/audit_agents_mcp.md +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/artifacts/audit/audit_docs_templates.md +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/artifacts/audit/audit_flowtask_core.md +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/artifacts/audit/audit_plugins.md +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/artifacts/audit/audit_scripts_tasks.md +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/artifacts/audit/audit_tests_examples.md +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/artifacts/scraping_plans/www.att.com/www-att-com_v1.0_340f66d4e659fdef.json +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/bin/start_milvus.sh +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/bin/test_download.sh +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/documentation/docs/components/index.md +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/documentation/docs/examples.md +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/documentation/docs/gen_ref_pages.py +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/documentation/docs/getting-started/configuration.md +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/documentation/docs/getting-started/installation.md +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/documentation/docs/getting-started/quickstart.md +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/documentation/docs/index.md +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/documentation/docs/interfaces/index.md +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/documentation/mkdocs.yml +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/documentation/site/404.html +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/documentation/site/assets/_mkdocstrings.css +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/documentation/site/assets/images/favicon.png +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/documentation/site/assets/javascripts/bundle.92b07e13.min.js +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/documentation/site/assets/javascripts/bundle.92b07e13.min.js.map +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/documentation/site/assets/javascripts/lunr/min/lunr.ar.min.js +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/documentation/site/assets/javascripts/lunr/min/lunr.da.min.js +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/documentation/site/assets/javascripts/lunr/min/lunr.de.min.js +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/documentation/site/assets/javascripts/lunr/min/lunr.du.min.js +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/documentation/site/assets/javascripts/lunr/min/lunr.el.min.js +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/documentation/site/assets/javascripts/lunr/min/lunr.es.min.js +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/documentation/site/assets/javascripts/lunr/min/lunr.fi.min.js +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/documentation/site/assets/javascripts/lunr/min/lunr.fr.min.js +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/documentation/site/assets/javascripts/lunr/min/lunr.he.min.js +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/documentation/site/assets/javascripts/lunr/min/lunr.hi.min.js +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/documentation/site/assets/javascripts/lunr/min/lunr.hu.min.js +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/documentation/site/assets/javascripts/lunr/min/lunr.hy.min.js +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/documentation/site/assets/javascripts/lunr/min/lunr.it.min.js +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/documentation/site/assets/javascripts/lunr/min/lunr.ja.min.js +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/documentation/site/assets/javascripts/lunr/min/lunr.jp.min.js +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/documentation/site/assets/javascripts/lunr/min/lunr.kn.min.js +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/documentation/site/assets/javascripts/lunr/min/lunr.ko.min.js +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/documentation/site/assets/javascripts/lunr/min/lunr.multi.min.js +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/documentation/site/assets/javascripts/lunr/min/lunr.nl.min.js +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/documentation/site/assets/javascripts/lunr/min/lunr.no.min.js +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/documentation/site/assets/javascripts/lunr/min/lunr.pt.min.js +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/documentation/site/assets/javascripts/lunr/min/lunr.ro.min.js +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/documentation/site/assets/javascripts/lunr/min/lunr.ru.min.js +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/documentation/site/assets/javascripts/lunr/min/lunr.sa.min.js +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/documentation/site/assets/javascripts/lunr/min/lunr.stemmer.support.min.js +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/documentation/site/assets/javascripts/lunr/min/lunr.sv.min.js +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/documentation/site/assets/javascripts/lunr/min/lunr.ta.min.js +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/documentation/site/assets/javascripts/lunr/min/lunr.te.min.js +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/documentation/site/assets/javascripts/lunr/min/lunr.th.min.js +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/documentation/site/assets/javascripts/lunr/min/lunr.tr.min.js +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/documentation/site/assets/javascripts/lunr/min/lunr.vi.min.js +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/documentation/site/assets/javascripts/lunr/min/lunr.zh.min.js +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/documentation/site/assets/javascripts/lunr/tinyseg.js +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/documentation/site/assets/javascripts/lunr/wordcut.js +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/documentation/site/assets/javascripts/workers/search.973d3a69.min.js +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/documentation/site/assets/javascripts/workers/search.973d3a69.min.js.map +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/documentation/site/assets/stylesheets/main.7e37652d.min.css +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/documentation/site/assets/stylesheets/main.7e37652d.min.css.map +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/documentation/site/assets/stylesheets/palette.06af60db.min.css +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/documentation/site/assets/stylesheets/palette.06af60db.min.css.map +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/documentation/site/components/index.html +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/documentation/site/examples/index.html +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/documentation/site/gen_ref_pages.py +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/documentation/site/getting-started/configuration/index.html +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/documentation/site/getting-started/installation/index.html +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/documentation/site/getting-started/quickstart/index.html +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/documentation/site/index.html +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/documentation/site/interfaces/index.html +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/documentation/site/objects.inv +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/documentation/site/reference/SUMMARY/index.html +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/documentation/site/reference/flowtask/__main__/index.html +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/documentation/site/reference/flowtask/_version/index.html +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/documentation/site/reference/flowtask/bots/check/index.html +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/documentation/site/reference/flowtask/bots/codebot/index.html +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/documentation/site/reference/flowtask/bots/index.html +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/documentation/site/reference/flowtask/components/ASPX/index.html +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/documentation/site/reference/flowtask/components/AddDataset/index.html +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/documentation/site/reference/flowtask/components/Amazon/index.html +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/documentation/site/reference/flowtask/components/AutoTask/index.html +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/documentation/site/reference/flowtask/components/Azure/index.html +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/documentation/site/reference/flowtask/components/AzureUsers/index.html +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/documentation/site/reference/flowtask/components/BaseAction/index.html +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/documentation/site/reference/flowtask/components/BaseLoop/index.html +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/documentation/site/reference/flowtask/components/BestBuy/index.html +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/documentation/site/reference/flowtask/components/CSVToGCS/index.html +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/documentation/site/reference/flowtask/components/CompanyScraper/index.html +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/documentation/site/reference/flowtask/components/CompanyScraper/parsers/base/index.html +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/documentation/site/reference/flowtask/components/CompanyScraper/parsers/explorium/index.html +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/documentation/site/reference/flowtask/components/CompanyScraper/parsers/index.html +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/documentation/site/reference/flowtask/components/CompanyScraper/parsers/leadiq/index.html +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/documentation/site/reference/flowtask/components/CompanyScraper/parsers/rocket/index.html +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/documentation/site/reference/flowtask/components/CompanyScraper/parsers/siccode/index.html +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/documentation/site/reference/flowtask/components/CompanyScraper/parsers/visualvisitor/index.html +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/documentation/site/reference/flowtask/components/CompanyScraper/parsers/zoominfo/index.html +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/documentation/site/reference/flowtask/components/CompanyScraper/scrapper/index.html +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/documentation/site/reference/flowtask/components/CopyTo/index.html +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/documentation/site/reference/flowtask/components/CopyToBigQuery/index.html +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/documentation/site/reference/flowtask/components/CopyToMongoDB/index.html +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/documentation/site/reference/flowtask/components/CopyToPg/index.html +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/documentation/site/reference/flowtask/components/CopyToRethink/index.html +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/documentation/site/reference/flowtask/components/Costco/index.html +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/documentation/site/reference/flowtask/components/CreateGCSBucket/index.html +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/documentation/site/reference/flowtask/components/CreateReport/CreateReport/index.html +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/documentation/site/reference/flowtask/components/CreateReport/charts/bar/index.html +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/documentation/site/reference/flowtask/components/CreateReport/charts/base/index.html +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/documentation/site/reference/flowtask/components/CreateReport/charts/index.html +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/documentation/site/reference/flowtask/components/CreateReport/charts/pie/index.html +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/documentation/site/reference/flowtask/components/CreateReport/index.html +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/documentation/site/reference/flowtask/components/CreateReport/utils/index.html +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/documentation/site/reference/flowtask/components/CustomerSatisfaction/index.html +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/documentation/site/reference/flowtask/components/DataInput/index.html +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/documentation/site/reference/flowtask/components/DateList/index.html +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/documentation/site/reference/flowtask/components/DbClient/index.html +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/documentation/site/reference/flowtask/components/DialPad/index.html +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/documentation/site/reference/flowtask/components/DocumentDBQuery/index.html +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/documentation/site/reference/flowtask/components/DownloadFrom/index.html +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/documentation/site/reference/flowtask/components/DownloadFromD2L/index.html +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/documentation/site/reference/flowtask/components/DownloadFromFTP/index.html +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/documentation/site/reference/flowtask/components/DownloadFromIMAP/index.html +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/documentation/site/reference/flowtask/components/DownloadFromS3/index.html +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/documentation/site/reference/flowtask/components/DownloadFromSFTP/index.html +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/documentation/site/reference/flowtask/components/DownloadFromSharepoint/index.html +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/documentation/site/reference/flowtask/components/DownloadFromSmartSheet/index.html +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/documentation/site/reference/flowtask/components/DownloadS3File/index.html +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/documentation/site/reference/flowtask/components/Dummy/index.html +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/documentation/site/reference/flowtask/components/DuplicatePhoto/index.html +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/documentation/site/reference/flowtask/components/EmployeeEvaluation/index.html +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/documentation/site/reference/flowtask/components/ExecuteSQL/index.html +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/documentation/site/reference/flowtask/components/ExtractHTML/index.html +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/documentation/site/reference/flowtask/components/FileBase/index.html +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/documentation/site/reference/flowtask/components/FileCopy/index.html +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/documentation/site/reference/flowtask/components/FileDelete/index.html +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/documentation/site/reference/flowtask/components/FileExists/index.html +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/documentation/site/reference/flowtask/components/FileIteratorDelete/index.html +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/documentation/site/reference/flowtask/components/FileList/index.html +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/documentation/site/reference/flowtask/components/FileOpen/index.html +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/documentation/site/reference/flowtask/components/FileRead/index.html +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/documentation/site/reference/flowtask/components/FileRename/index.html +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/documentation/site/reference/flowtask/components/FilterIf/index.html +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/documentation/site/reference/flowtask/components/FilterRows/FilterRows/index.html +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/documentation/site/reference/flowtask/components/FilterRows/functions/index.html +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/documentation/site/reference/flowtask/components/FilterRows/index.html +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/documentation/site/reference/flowtask/components/GCSToBigQuery/index.html +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/documentation/site/reference/flowtask/components/GoogleA4/index.html +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/documentation/site/reference/flowtask/components/GoogleGeoCoding/index.html +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/documentation/site/reference/flowtask/components/GooglePlaces/index.html +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/documentation/site/reference/flowtask/components/GoogleSearch/index.html +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/documentation/site/reference/flowtask/components/HTTPClient/index.html +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/documentation/site/reference/flowtask/components/ICIMS/index.html +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/documentation/site/reference/flowtask/components/IF/index.html +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/documentation/site/reference/flowtask/components/IcimsFolderCopy/index.html +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/documentation/site/reference/flowtask/components/ImageFeatures/index.html +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/documentation/site/reference/flowtask/components/ImageFeatures/process/index.html +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/documentation/site/reference/flowtask/components/IteratorBase/index.html +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/documentation/site/reference/flowtask/components/LangchainLoader/index.html +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/documentation/site/reference/flowtask/components/LangchainLoader/loader/index.html +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/documentation/site/reference/flowtask/components/LangchainLoader/loaders/abstract/index.html +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/documentation/site/reference/flowtask/components/LangchainLoader/loaders/basepdf/index.html +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/documentation/site/reference/flowtask/components/LangchainLoader/loaders/docx/index.html +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/documentation/site/reference/flowtask/components/LangchainLoader/loaders/html/index.html +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/documentation/site/reference/flowtask/components/LangchainLoader/loaders/index.html +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/documentation/site/reference/flowtask/components/LangchainLoader/loaders/pdfblocks/index.html +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/documentation/site/reference/flowtask/components/LangchainLoader/loaders/pdfmark/index.html +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/documentation/site/reference/flowtask/components/LangchainLoader/loaders/pdftables/index.html +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/documentation/site/reference/flowtask/components/LangchainLoader/loaders/qa/index.html +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/documentation/site/reference/flowtask/components/LangchainLoader/loaders/txt/index.html +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/documentation/site/reference/flowtask/components/LeadIQ/index.html +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/documentation/site/reference/flowtask/components/Loop/index.html +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/documentation/site/reference/flowtask/components/Lowes/index.html +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/documentation/site/reference/flowtask/components/MS365Usage/index.html +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/documentation/site/reference/flowtask/components/MSTeamsMessages/index.html +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/documentation/site/reference/flowtask/components/MarketClustering/index.html +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/documentation/site/reference/flowtask/components/MergeFiles/index.html +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/documentation/site/reference/flowtask/components/MilvusOutput/index.html +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/documentation/site/reference/flowtask/components/NearByStores/index.html +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/documentation/site/reference/flowtask/components/NetworkNinja/index.html +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/documentation/site/reference/flowtask/components/NetworkNinja/models/abstract/index.html +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/documentation/site/reference/flowtask/components/NetworkNinja/models/account/index.html +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/documentation/site/reference/flowtask/components/NetworkNinja/models/client/index.html +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/documentation/site/reference/flowtask/components/NetworkNinja/models/events/index.html +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/documentation/site/reference/flowtask/components/NetworkNinja/models/forms/index.html +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/documentation/site/reference/flowtask/components/NetworkNinja/models/index.html +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/documentation/site/reference/flowtask/components/NetworkNinja/models/market/index.html +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/documentation/site/reference/flowtask/components/NetworkNinja/models/organization/index.html +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/documentation/site/reference/flowtask/components/NetworkNinja/models/photos/index.html +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/documentation/site/reference/flowtask/components/NetworkNinja/models/project/index.html +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/documentation/site/reference/flowtask/components/NetworkNinja/models/region/index.html +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/documentation/site/reference/flowtask/components/NetworkNinja/models/store/index.html +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/documentation/site/reference/flowtask/components/NetworkNinja/models/user/index.html +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/documentation/site/reference/flowtask/components/NetworkNinja/router/index.html +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/documentation/site/reference/flowtask/components/NextStopAgent/index.html +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/documentation/site/reference/flowtask/components/Odoo/index.html +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/documentation/site/reference/flowtask/components/OdooInjector/index.html +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/documentation/site/reference/flowtask/components/OpenFromXML/index.html +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/documentation/site/reference/flowtask/components/OpenWeather/index.html +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/documentation/site/reference/flowtask/components/OpenWithBase/index.html +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/documentation/site/reference/flowtask/components/OpenWithPandas/index.html +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/documentation/site/reference/flowtask/components/PDFGenerator/index.html +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/documentation/site/reference/flowtask/components/PGPDecrypt/index.html +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/documentation/site/reference/flowtask/components/PandasIterator/index.html +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/documentation/site/reference/flowtask/components/PandasToFile/index.html +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/documentation/site/reference/flowtask/components/Paradox/index.html +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/documentation/site/reference/flowtask/components/ParamIterator/index.html +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/documentation/site/reference/flowtask/components/ParseHTML/index.html +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/documentation/site/reference/flowtask/components/PgVectorOutput/index.html +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/documentation/site/reference/flowtask/components/PlacerStores/index.html +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/documentation/site/reference/flowtask/components/Pokemon/index.html +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/documentation/site/reference/flowtask/components/PositiveBot/index.html +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/documentation/site/reference/flowtask/components/PowerPointSlide/index.html +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/documentation/site/reference/flowtask/components/PrintMessage/index.html +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/documentation/site/reference/flowtask/components/ProductCompetitors/index.html +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/documentation/site/reference/flowtask/components/ProductCompetitors/parsers/base/index.html +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/documentation/site/reference/flowtask/components/ProductCompetitors/parsers/bestbuy/index.html +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/documentation/site/reference/flowtask/components/ProductCompetitors/parsers/index.html +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/documentation/site/reference/flowtask/components/ProductCompetitors/parsers/lowes/index.html +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/documentation/site/reference/flowtask/components/ProductCompetitors/scrapper/index.html +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/documentation/site/reference/flowtask/components/ProductCompliant/index.html +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/documentation/site/reference/flowtask/components/ProductInfo/index.html +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/documentation/site/reference/flowtask/components/ProductInfo/parsers/base/index.html +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/documentation/site/reference/flowtask/components/ProductInfo/parsers/brother/index.html +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/documentation/site/reference/flowtask/components/ProductInfo/parsers/canon/index.html +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/documentation/site/reference/flowtask/components/ProductInfo/parsers/epson/index.html +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/documentation/site/reference/flowtask/components/ProductInfo/parsers/hp/index.html +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/documentation/site/reference/flowtask/components/ProductInfo/parsers/index.html +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/documentation/site/reference/flowtask/components/ProductInfo/parsers/samsung/index.html +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/documentation/site/reference/flowtask/components/ProductInfo/scraper/index.html +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/documentation/site/reference/flowtask/components/ProductPricing/index.html +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/documentation/site/reference/flowtask/components/QS/index.html +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/documentation/site/reference/flowtask/components/QSBase/index.html +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/documentation/site/reference/flowtask/components/QueryIterator/index.html +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/documentation/site/reference/flowtask/components/QueryToInsert/index.html +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/documentation/site/reference/flowtask/components/QueryToPandas/index.html +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/documentation/site/reference/flowtask/components/RESTClient/index.html +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/documentation/site/reference/flowtask/components/RethinkDBQuery/index.html +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/documentation/site/reference/flowtask/components/Rsync/index.html +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/documentation/site/reference/flowtask/components/RunSSH/index.html +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/documentation/site/reference/flowtask/components/RunShell/index.html +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/documentation/site/reference/flowtask/components/SalesForce/index.html +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/documentation/site/reference/flowtask/components/Sassie/index.html +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/documentation/site/reference/flowtask/components/SaveImageBank/index.html +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/documentation/site/reference/flowtask/components/SchedulingVisits/index.html +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/documentation/site/reference/flowtask/components/ScrapPage/index.html +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/documentation/site/reference/flowtask/components/ScrapSearch/index.html +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/documentation/site/reference/flowtask/components/SendEmail/index.html +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/documentation/site/reference/flowtask/components/SendNotify/index.html +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/documentation/site/reference/flowtask/components/SentimentAnalysis/index.html +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/documentation/site/reference/flowtask/components/ServiceScrapper/index.html +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/documentation/site/reference/flowtask/components/ServiceScrapper/parsers/base/index.html +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/documentation/site/reference/flowtask/components/ServiceScrapper/parsers/costco/index.html +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/documentation/site/reference/flowtask/components/ServiceScrapper/parsers/index.html +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/documentation/site/reference/flowtask/components/ServiceScrapper/scrapper/index.html +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/documentation/site/reference/flowtask/components/SetVariables/index.html +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/documentation/site/reference/flowtask/components/SubTask/index.html +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/documentation/site/reference/flowtask/components/SuiteCRM/index.html +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/documentation/site/reference/flowtask/components/Switch/index.html +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/documentation/site/reference/flowtask/components/TableBase/index.html +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/documentation/site/reference/flowtask/components/TableDelete/index.html +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/documentation/site/reference/flowtask/components/TableInput/index.html +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/documentation/site/reference/flowtask/components/TableOutput/TableOutput/index.html +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/documentation/site/reference/flowtask/components/TableOutput/index.html +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/documentation/site/reference/flowtask/components/TableSchema/index.html +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/documentation/site/reference/flowtask/components/Target/index.html +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/documentation/site/reference/flowtask/components/ThumbnailGenerator/index.html +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/documentation/site/reference/flowtask/components/ToPandas/index.html +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/documentation/site/reference/flowtask/components/TransformRows/TransformRows/index.html +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/documentation/site/reference/flowtask/components/TransformRows/functions/index.html +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/documentation/site/reference/flowtask/components/TransformRows/index.html +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/documentation/site/reference/flowtask/components/TransposeRows/index.html +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/documentation/site/reference/flowtask/components/UPCDatabase/index.html +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/documentation/site/reference/flowtask/components/UnGzip/index.html +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/documentation/site/reference/flowtask/components/Uncompress/index.html +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/documentation/site/reference/flowtask/components/UniqueRows/index.html +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/documentation/site/reference/flowtask/components/Unzip/index.html +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/documentation/site/reference/flowtask/components/UpdateOperationalVars/index.html +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/documentation/site/reference/flowtask/components/UploadTo/index.html +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/documentation/site/reference/flowtask/components/UploadToS3/index.html +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/documentation/site/reference/flowtask/components/UploadToSFTP/index.html +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/documentation/site/reference/flowtask/components/UploadToSharepoint/index.html +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/documentation/site/reference/flowtask/components/UserFunc/index.html +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/documentation/site/reference/flowtask/components/VivaTracker/index.html +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/documentation/site/reference/flowtask/components/WSDLClient/index.html +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/documentation/site/reference/flowtask/components/Wait/index.html +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/documentation/site/reference/flowtask/components/Walmart/index.html +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/documentation/site/reference/flowtask/components/Workday/index.html +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/documentation/site/reference/flowtask/components/Workday/models/index.html +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/documentation/site/reference/flowtask/components/Workday/models/location/index.html +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/documentation/site/reference/flowtask/components/Workday/models/location_hierarchy_assignments/index.html +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/documentation/site/reference/flowtask/components/Workday/models/organizations/index.html +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/documentation/site/reference/flowtask/components/Workday/models/time_block/index.html +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/documentation/site/reference/flowtask/components/Workday/models/time_request/index.html +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/documentation/site/reference/flowtask/components/Workday/models/worker/index.html +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/documentation/site/reference/flowtask/components/Workday/parsers/index.html +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/documentation/site/reference/flowtask/components/Workday/parsers/location_hierarchy_assignments_parsers/index.html +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/documentation/site/reference/flowtask/components/Workday/parsers/location_parsers/index.html +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/documentation/site/reference/flowtask/components/Workday/parsers/organization_parsers/index.html +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/documentation/site/reference/flowtask/components/Workday/parsers/time_block_parsers/index.html +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/documentation/site/reference/flowtask/components/Workday/parsers/time_request_parsers/index.html +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/documentation/site/reference/flowtask/components/Workday/parsers/worker_parsers/index.html +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/documentation/site/reference/flowtask/components/Workday/types/base/index.html +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/documentation/site/reference/flowtask/components/Workday/types/index.html +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/documentation/site/reference/flowtask/components/Workday/types/location_hierarchy_assignments/index.html +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/documentation/site/reference/flowtask/components/Workday/types/locations/index.html +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/documentation/site/reference/flowtask/components/Workday/types/organization_single/index.html +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/documentation/site/reference/flowtask/components/Workday/types/organizations/index.html +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/documentation/site/reference/flowtask/components/Workday/types/time_blocks/index.html +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/documentation/site/reference/flowtask/components/Workday/types/time_requests/index.html +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/documentation/site/reference/flowtask/components/Workday/types/workers/index.html +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/documentation/site/reference/flowtask/components/Workday/utils/index.html +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/documentation/site/reference/flowtask/components/Workday/utils/utils/index.html +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/documentation/site/reference/flowtask/components/Workday/workday/index.html +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/documentation/site/reference/flowtask/components/Workplace/index.html +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/documentation/site/reference/flowtask/components/XMLToPandas/index.html +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/documentation/site/reference/flowtask/components/Zammad/index.html +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/documentation/site/reference/flowtask/components/Zammad/models/index.html +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/documentation/site/reference/flowtask/components/ZoomInfoScraper/index.html +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/documentation/site/reference/flowtask/components/abstract/index.html +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/documentation/site/reference/flowtask/components/flow/index.html +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/documentation/site/reference/flowtask/components/google/index.html +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/documentation/site/reference/flowtask/components/group/index.html +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/documentation/site/reference/flowtask/components/index.html +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/documentation/site/reference/flowtask/components/reviewscrap/index.html +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/documentation/site/reference/flowtask/components/tAutoincrement/index.html +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/documentation/site/reference/flowtask/components/tConcat/index.html +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/documentation/site/reference/flowtask/components/tCrosstab/index.html +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/documentation/site/reference/flowtask/components/tExplode/index.html +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/documentation/site/reference/flowtask/components/tFilter/index.html +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/documentation/site/reference/flowtask/components/tGroup/index.html +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/documentation/site/reference/flowtask/components/tJoin/index.html +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/documentation/site/reference/flowtask/components/tMap/functions/index.html +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/documentation/site/reference/flowtask/components/tMap/index.html +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/documentation/site/reference/flowtask/components/tMap/tMap/index.html +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/documentation/site/reference/flowtask/components/tMelt/index.html +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/documentation/site/reference/flowtask/components/tMerge/index.html +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/documentation/site/reference/flowtask/components/tOrder/index.html +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/documentation/site/reference/flowtask/components/tPandas/index.html +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/documentation/site/reference/flowtask/components/tPivot/index.html +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/documentation/site/reference/flowtask/components/tPluckCols/index.html +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/documentation/site/reference/flowtask/components/tUnnest/index.html +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/documentation/site/reference/flowtask/components/user/index.html +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/documentation/site/reference/flowtask/conf/index.html +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/documentation/site/reference/flowtask/download/index.html +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/documentation/site/reference/flowtask/events/events/abstract/index.html +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/documentation/site/reference/flowtask/events/events/alerts/colfunctions/index.html +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/documentation/site/reference/flowtask/events/events/alerts/functions/index.html +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/documentation/site/reference/flowtask/events/events/alerts/index.html +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/documentation/site/reference/flowtask/events/events/dummy/index.html +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/documentation/site/reference/flowtask/events/events/exec/index.html +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/documentation/site/reference/flowtask/events/events/file/base/index.html +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/documentation/site/reference/flowtask/events/events/file/copy/index.html +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/documentation/site/reference/flowtask/events/events/file/delete/index.html +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/documentation/site/reference/flowtask/events/events/file/index.html +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/documentation/site/reference/flowtask/events/events/index.html +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/documentation/site/reference/flowtask/events/events/interfaces/client/index.html +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/documentation/site/reference/flowtask/events/events/interfaces/credentials/index.html +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/documentation/site/reference/flowtask/events/events/interfaces/index.html +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/documentation/site/reference/flowtask/events/events/interfaces/notifications/index.html +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/documentation/site/reference/flowtask/events/events/jira/index.html +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/documentation/site/reference/flowtask/events/events/log/index.html +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/documentation/site/reference/flowtask/events/events/logerr/index.html +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/documentation/site/reference/flowtask/events/events/notify/index.html +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/documentation/site/reference/flowtask/events/events/notify_event/index.html +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/documentation/site/reference/flowtask/events/events/publish/index.html +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/documentation/site/reference/flowtask/events/events/sendfile/index.html +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/documentation/site/reference/flowtask/events/events/task/index.html +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/documentation/site/reference/flowtask/events/events/teams/index.html +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/documentation/site/reference/flowtask/events/events/webhook/index.html +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/documentation/site/reference/flowtask/events/index.html +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/documentation/site/reference/flowtask/events/manager/index.html +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/documentation/site/reference/flowtask/extensions/abstract/index.html +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/documentation/site/reference/flowtask/extensions/index.html +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/documentation/site/reference/flowtask/extensions/logging/index.html +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/documentation/site/reference/flowtask/hooks/actions/abstract/index.html +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/documentation/site/reference/flowtask/hooks/actions/dummy/index.html +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/documentation/site/reference/flowtask/hooks/actions/index.html +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/documentation/site/reference/flowtask/hooks/actions/jira/index.html +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/documentation/site/reference/flowtask/hooks/actions/rest/index.html +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/documentation/site/reference/flowtask/hooks/actions/sampledata/index.html +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/documentation/site/reference/flowtask/hooks/actions/sensor/index.html +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/documentation/site/reference/flowtask/hooks/actions/task/index.html +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/documentation/site/reference/flowtask/hooks/actions/ticket/index.html +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/documentation/site/reference/flowtask/hooks/actions/zammad/index.html +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/documentation/site/reference/flowtask/hooks/hook/index.html +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/documentation/site/reference/flowtask/hooks/index.html +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/documentation/site/reference/flowtask/hooks/models/index.html +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/documentation/site/reference/flowtask/hooks/service/index.html +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/documentation/site/reference/flowtask/hooks/step/index.html +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/documentation/site/reference/flowtask/hooks/types/base/index.html +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/documentation/site/reference/flowtask/hooks/types/brokers/base/index.html +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/documentation/site/reference/flowtask/hooks/types/brokers/index.html +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/documentation/site/reference/flowtask/hooks/types/brokers/mqtt/index.html +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/documentation/site/reference/flowtask/hooks/types/brokers/rabbitmq/index.html +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/documentation/site/reference/flowtask/hooks/types/brokers/redis/index.html +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/documentation/site/reference/flowtask/hooks/types/brokers/sqs/index.html +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/documentation/site/reference/flowtask/hooks/types/fs/index.html +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/documentation/site/reference/flowtask/hooks/types/http/index.html +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/documentation/site/reference/flowtask/hooks/types/imap/index.html +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/documentation/site/reference/flowtask/hooks/types/index.html +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/documentation/site/reference/flowtask/hooks/types/jira/index.html +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/documentation/site/reference/flowtask/hooks/types/mail/index.html +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/documentation/site/reference/flowtask/hooks/types/postgres/index.html +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/documentation/site/reference/flowtask/hooks/types/responses/base/index.html +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/documentation/site/reference/flowtask/hooks/types/responses/index.html +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/documentation/site/reference/flowtask/hooks/types/sharepoint/index.html +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/documentation/site/reference/flowtask/hooks/types/ssh/index.html +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/documentation/site/reference/flowtask/hooks/types/tagged/index.html +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/documentation/site/reference/flowtask/hooks/types/upload/index.html +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/documentation/site/reference/flowtask/hooks/types/watch/index.html +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/documentation/site/reference/flowtask/hooks/types/web/index.html +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/documentation/site/reference/flowtask/index.html +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/documentation/site/reference/flowtask/interfaces/AzureClient/index.html +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/documentation/site/reference/flowtask/interfaces/AzureGraph/index.html +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/documentation/site/reference/flowtask/interfaces/Boto3Client/index.html +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/documentation/site/reference/flowtask/interfaces/DropboxClient/index.html +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/documentation/site/reference/flowtask/interfaces/ExcelHandler/index.html +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/documentation/site/reference/flowtask/interfaces/FTPClient/index.html +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/documentation/site/reference/flowtask/interfaces/GoogleCalendar/index.html +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/documentation/site/reference/flowtask/interfaces/GoogleClient/index.html +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/documentation/site/reference/flowtask/interfaces/GoogleDrive/index.html +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/documentation/site/reference/flowtask/interfaces/GoogleGCS/index.html +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/documentation/site/reference/flowtask/interfaces/GoogleGeocoding/index.html +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/documentation/site/reference/flowtask/interfaces/GoogleLang/index.html +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/documentation/site/reference/flowtask/interfaces/GooglePub/index.html +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/documentation/site/reference/flowtask/interfaces/GoogleSheet/index.html +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/documentation/site/reference/flowtask/interfaces/IMAPClient/index.html +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/documentation/site/reference/flowtask/interfaces/O365Calendar/index.html +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/documentation/site/reference/flowtask/interfaces/O365Client/index.html +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/documentation/site/reference/flowtask/interfaces/OneDrive/index.html +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/documentation/site/reference/flowtask/interfaces/Outlook/index.html +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/documentation/site/reference/flowtask/interfaces/ParrotBot/index.html +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/documentation/site/reference/flowtask/interfaces/SOAPClient/index.html +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/documentation/site/reference/flowtask/interfaces/SSHClient/index.html +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/documentation/site/reference/flowtask/interfaces/Sharepoint/index.html +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/documentation/site/reference/flowtask/interfaces/azureauth/index.html +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/documentation/site/reference/flowtask/interfaces/cache/index.html +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/documentation/site/reference/flowtask/interfaces/client/index.html +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/documentation/site/reference/flowtask/interfaces/compress/index.html +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/documentation/site/reference/flowtask/interfaces/credentials/index.html +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/documentation/site/reference/flowtask/interfaces/d2l/index.html +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/documentation/site/reference/flowtask/interfaces/databases/db/index.html +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/documentation/site/reference/flowtask/interfaces/databases/documentdb/index.html +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/documentation/site/reference/flowtask/interfaces/databases/index.html +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/documentation/site/reference/flowtask/interfaces/databases/rethink/index.html +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/documentation/site/reference/flowtask/interfaces/dataframes/abstract/index.html +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/documentation/site/reference/flowtask/interfaces/dataframes/arrow/index.html +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/documentation/site/reference/flowtask/interfaces/dataframes/dt/index.html +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/documentation/site/reference/flowtask/interfaces/dataframes/index.html +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/documentation/site/reference/flowtask/interfaces/dataframes/pandas/index.html +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/documentation/site/reference/flowtask/interfaces/dataframes/polars/index.html +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/documentation/site/reference/flowtask/interfaces/db/index.html +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/documentation/site/reference/flowtask/interfaces/func/index.html +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/documentation/site/reference/flowtask/interfaces/http/index.html +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/documentation/site/reference/flowtask/interfaces/index.html +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/documentation/site/reference/flowtask/interfaces/locale/index.html +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/documentation/site/reference/flowtask/interfaces/log/index.html +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/documentation/site/reference/flowtask/interfaces/mask/index.html +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/documentation/site/reference/flowtask/interfaces/notification/index.html +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/documentation/site/reference/flowtask/interfaces/parrot/agent/index.html +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/documentation/site/reference/flowtask/interfaces/parrot/index.html +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/documentation/site/reference/flowtask/interfaces/parrot/tools/index.html +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/documentation/site/reference/flowtask/interfaces/parrot/tools/models/index.html +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/documentation/site/reference/flowtask/interfaces/parrot/tools/store/index.html +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/documentation/site/reference/flowtask/interfaces/playwright/index.html +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/documentation/site/reference/flowtask/interfaces/powerpoint/index.html +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/documentation/site/reference/flowtask/interfaces/qs/index.html +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/documentation/site/reference/flowtask/interfaces/result/index.html +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/documentation/site/reference/flowtask/interfaces/sassie/index.html +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/documentation/site/reference/flowtask/interfaces/selenium_service/index.html +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/documentation/site/reference/flowtask/interfaces/smartsheet/index.html +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/documentation/site/reference/flowtask/interfaces/stat/index.html +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/documentation/site/reference/flowtask/interfaces/task/index.html +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/documentation/site/reference/flowtask/interfaces/template/index.html +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/documentation/site/reference/flowtask/interfaces/vectorstores/abstract/index.html +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/documentation/site/reference/flowtask/interfaces/vectorstores/index.html +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/documentation/site/reference/flowtask/interfaces/vectorstores/milvus/index.html +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/documentation/site/reference/flowtask/interfaces/zammad/index.html +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/documentation/site/reference/flowtask/models/index.html +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/documentation/site/reference/flowtask/parsers/argparser/index.html +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/documentation/site/reference/flowtask/parsers/index.html +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/documentation/site/reference/flowtask/parsers/maps/index.html +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/documentation/site/reference/flowtask/plugins/components_/index.html +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/documentation/site/reference/flowtask/plugins/handler/index.html +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/documentation/site/reference/flowtask/plugins/importer/index.html +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/documentation/site/reference/flowtask/plugins/index.html +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/documentation/site/reference/flowtask/plugins/sources/index.html +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/documentation/site/reference/flowtask/runner/index.html +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/documentation/site/reference/flowtask/scheduler/functions/index.html +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/documentation/site/reference/flowtask/scheduler/handlers/index.html +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/documentation/site/reference/flowtask/scheduler/handlers/manager/index.html +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/documentation/site/reference/flowtask/scheduler/handlers/models/index.html +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/documentation/site/reference/flowtask/scheduler/handlers/service/index.html +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/documentation/site/reference/flowtask/scheduler/index.html +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/documentation/site/reference/flowtask/scheduler/notifications/index.html +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/documentation/site/reference/flowtask/scheduler/scheduler/index.html +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/documentation/site/reference/flowtask/services/bots/index.html +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/documentation/site/reference/flowtask/services/bots/telegram/index.html +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/documentation/site/reference/flowtask/services/files/index.html +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/documentation/site/reference/flowtask/services/files/manager/index.html +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/documentation/site/reference/flowtask/services/files/model/index.html +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/documentation/site/reference/flowtask/services/files/service/index.html +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/documentation/site/reference/flowtask/services/index.html +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/documentation/site/reference/flowtask/services/jira/index.html +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/documentation/site/reference/flowtask/services/jira/jira_actions/index.html +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/documentation/site/reference/flowtask/services/tasks/index.html +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/documentation/site/reference/flowtask/services/tasks/launcher/index.html +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/documentation/site/reference/flowtask/services/tasks/manager/index.html +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/documentation/site/reference/flowtask/services/tasks/service/index.html +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/documentation/site/reference/flowtask/services/tasks/task_manager/index.html +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/documentation/site/reference/flowtask/services/tasks/tasks/index.html +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/documentation/site/reference/flowtask/storages/exceptions/index.html +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/documentation/site/reference/flowtask/storages/files/abstract/index.html +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/documentation/site/reference/flowtask/storages/files/filesystem/index.html +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/documentation/site/reference/flowtask/storages/files/index.html +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/documentation/site/reference/flowtask/storages/index.html +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/documentation/site/reference/flowtask/storages/tasks/abstract/index.html +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/documentation/site/reference/flowtask/storages/tasks/database/index.html +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/documentation/site/reference/flowtask/storages/tasks/filesystem/index.html +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/documentation/site/reference/flowtask/storages/tasks/github/index.html +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/documentation/site/reference/flowtask/storages/tasks/index.html +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/documentation/site/reference/flowtask/storages/tasks/memory/index.html +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/documentation/site/reference/flowtask/storages/tasks/row/index.html +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/documentation/site/reference/flowtask/tasks/abstract/index.html +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/documentation/site/reference/flowtask/tasks/command/index.html +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/documentation/site/reference/flowtask/tasks/index.html +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/documentation/site/reference/flowtask/tasks/pile/index.html +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/documentation/site/reference/flowtask/tasks/task/index.html +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/documentation/site/reference/flowtask/template/index.html +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/documentation/site/reference/flowtask/types/index.html +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/documentation/site/reference/flowtask/utils/constants/index.html +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/documentation/site/reference/flowtask/utils/encoders/index.html +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/documentation/site/reference/flowtask/utils/executor/index.html +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/documentation/site/reference/flowtask/utils/index.html +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/documentation/site/reference/flowtask/utils/mail/index.html +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/documentation/site/reference/flowtask/utils/stats/index.html +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/documentation/site/reference/flowtask/utils/transformations/index.html +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/documentation/site/reference/flowtask/utils/uv/index.html +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/documentation/site/reference/flowtask/utils/validators/index.html +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/documentation/site/reference/flowtask/version/index.html +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/documentation/site/reference/index.html +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/documentation/site/search/search_index.json +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/documentation/site/sitemap.xml +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/documentation/site/sitemap.xml.gz +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/examples/components/amazon.py +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/examples/components/azure_graph.py +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/examples/components/best_buy.py +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/examples/components/cnn.py +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/examples/components/company_scrapper.py +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/examples/components/costco.py +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/examples/components/costco_scrapper.py +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/examples/components/download_s3.py +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/examples/components/google_places.py +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/examples/components/lowes.py +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/examples/components/pokemon.py +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/examples/components/powerpoint.py +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/examples/components/qs.py +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/examples/components/rethink.py +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/examples/components/scrappage.py +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/examples/components/target.py +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/examples/components/test_notify.py +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/examples/components/test_tfilter.py +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/examples/components/walmart.py +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/examples/test_bigquery.py +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/examples/test_google_distance.py +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/examples/test_google_geocoding.py +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/examples/test_google_traveler.py +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/examples/test_jirabot.py +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/examples/test_telegram.py +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/examples/test_traveler.py +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/examples/tests/test_o365.py +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/flowtask/__init__.py +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/flowtask/bots/__init__.py +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/flowtask/bots/check.py +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/flowtask/bots/codebot.py +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/flowtask/components/ASPX.py +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/flowtask/components/ATT.py +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/flowtask/components/AddDataset.py +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/flowtask/components/Amazon.py +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/flowtask/components/AutoTask.py +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/flowtask/components/Azure.py +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/flowtask/components/AzureUsers.py +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/flowtask/components/BaseAction.py +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/flowtask/components/BaseLoop.py +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/flowtask/components/BestBuy.py +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/flowtask/components/CSVToGCS.py +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/flowtask/components/CallAnalysis.py +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/flowtask/components/CallSummary.py +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/flowtask/components/CompanyScraper/__init__.py +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/flowtask/components/CompanyScraper/parsers/__init__.py +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/flowtask/components/CompanyScraper/parsers/base.py +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/flowtask/components/CompanyScraper/parsers/explorium.py +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/flowtask/components/CompanyScraper/parsers/leadiq.py +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/flowtask/components/CompanyScraper/parsers/rocket.py +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/flowtask/components/CompanyScraper/parsers/siccode.py +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/flowtask/components/CompanyScraper/parsers/visualvisitor.py +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/flowtask/components/CompanyScraper/parsers/zoominfo.py +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/flowtask/components/CompanyScraper/scrapper.py +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/flowtask/components/CopyTo.py +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/flowtask/components/CopyToBigQuery.py +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/flowtask/components/CopyToMongoDB.py +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/flowtask/components/CopyToPg.py +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/flowtask/components/CopyToRethink.py +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/flowtask/components/Costco.py +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/flowtask/components/CreateGCSBucket.py +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/flowtask/components/CreateReport/CreateReport.py +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/flowtask/components/CreateReport/__init__.py +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/flowtask/components/CreateReport/charts/__init__.py +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/flowtask/components/CreateReport/charts/bar.py +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/flowtask/components/CreateReport/charts/base.py +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/flowtask/components/CreateReport/charts/pie.py +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/flowtask/components/CreateReport/utils.py +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/flowtask/components/CustomerSatisfaction.py +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/flowtask/components/DataInput.py +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/flowtask/components/DbClient.py +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/flowtask/components/DialPad.py +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/flowtask/components/DispatchMe.py +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/flowtask/components/DocumentDBQuery.py +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/flowtask/components/DownloadFrom.py +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/flowtask/components/DownloadFromD2L.py +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/flowtask/components/DownloadFromFTP.py +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/flowtask/components/DownloadFromIMAP.py +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/flowtask/components/DownloadFromS3.py +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/flowtask/components/DownloadFromSFTP.py +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/flowtask/components/DownloadFromSharepoint.py +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/flowtask/components/DownloadFromSmartSheet.py +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/flowtask/components/DownloadFromSmartsheet.py +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/flowtask/components/DownloadS3File.py +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/flowtask/components/Dummy.py +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/flowtask/components/DuplicatePhoto.py +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/flowtask/components/EmployeeEvaluation.py +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/flowtask/components/ExecuteSQL.py +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/flowtask/components/ExtractHTML.py +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/flowtask/components/ExtractTranscript.py +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/flowtask/components/FileBase.py +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/flowtask/components/FileCopy.py +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/flowtask/components/FileDelete.py +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/flowtask/components/FileExists.py +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/flowtask/components/FileIteratorDelete.py +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/flowtask/components/FileList.py +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/flowtask/components/FileOpen.py +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/flowtask/components/FileRead.py +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/flowtask/components/FileRename.py +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/flowtask/components/FilterIf.py +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/flowtask/components/FilterRows/FilterRows.py +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/flowtask/components/FilterRows/__init__.py +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/flowtask/components/FilterRows/functions.py +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/flowtask/components/GCSToBigQuery.py +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/flowtask/components/GenData.py +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/flowtask/components/GoogleA4.py +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/flowtask/components/GoogleGeoCoding.py +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/flowtask/components/GooglePlaces.py +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/flowtask/components/GoogleSearch.py +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/flowtask/components/HTTPClient.py +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/flowtask/components/ICIMS.py +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/flowtask/components/IF.py +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/flowtask/components/IcimsFolderCopy.py +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/flowtask/components/ImageFeatures/__init__.py +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/flowtask/components/ImageFeatures/process.py +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/flowtask/components/IteratorBase.py +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/flowtask/components/LeadIQ.py +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/flowtask/components/Loop.py +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/flowtask/components/Lowes.py +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/flowtask/components/MS365Usage.py +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/flowtask/components/MSTeamsMessages.py +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/flowtask/components/MarkdownMaker.py +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/flowtask/components/MarketClustering.py +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/flowtask/components/MergeFileList.py +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/flowtask/components/MergeFiles.py +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/flowtask/components/MilvusOutput.py +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/flowtask/components/NearByStores.py +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/flowtask/components/NetworkNinja/__init__.py +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/flowtask/components/NetworkNinja/models/__init__.py +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/flowtask/components/NetworkNinja/models/abstract.py +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/flowtask/components/NetworkNinja/models/account.py +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/flowtask/components/NetworkNinja/models/client.py +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/flowtask/components/NetworkNinja/models/district.py +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/flowtask/components/NetworkNinja/models/events.py +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/flowtask/components/NetworkNinja/models/forms.py +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/flowtask/components/NetworkNinja/models/market.py +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/flowtask/components/NetworkNinja/models/organization.py +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/flowtask/components/NetworkNinja/models/photos.py +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/flowtask/components/NetworkNinja/models/project.py +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/flowtask/components/NetworkNinja/models/region.py +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/flowtask/components/NetworkNinja/models/store.py +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/flowtask/components/NetworkNinja/models/user.py +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/flowtask/components/NetworkNinja/router.py +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/flowtask/components/NetworkNinjaClaims.py +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/flowtask/components/NextStopAgent.py +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/flowtask/components/Odoo.py +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/flowtask/components/OdooInjector.py +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/flowtask/components/OpenFromXML.py +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/flowtask/components/OpenWeather.py +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/flowtask/components/OpenWithBase.py +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/flowtask/components/OpenWithPandas.py +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/flowtask/components/PDFGenerator.py +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/flowtask/components/PGPDecrypt.py +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/flowtask/components/PandasIterator.py +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/flowtask/components/PandasToFile.py +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/flowtask/components/PandasToPowerPoint.py +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/flowtask/components/Paradox.py +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/flowtask/components/ParamIterator.py +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/flowtask/components/ParrotLoader/__init__.py +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/flowtask/components/ParseHTML.py +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/flowtask/components/PlacerStores.py +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/flowtask/components/PlanogramCompliance.py +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/flowtask/components/PodcastMaker.py +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/flowtask/components/Pokemon.py +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/flowtask/components/PositiveBot.py +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/flowtask/components/PowerPointSlide.py +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/flowtask/components/PrintMessage.py +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/flowtask/components/ProductCompetitors/__init__.py +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/flowtask/components/ProductCompetitors/parsers/__init__.py +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/flowtask/components/ProductCompetitors/parsers/base.py +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/flowtask/components/ProductCompetitors/parsers/bestbuy.py +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/flowtask/components/ProductCompetitors/parsers/lowes.py +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/flowtask/components/ProductCompetitors/scrapper.py +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/flowtask/components/ProductCompliant.py +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/flowtask/components/ProductInfo/__init__.py +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/flowtask/components/ProductInfo/parsers/__init__.py +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/flowtask/components/ProductInfo/parsers/base.py +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/flowtask/components/ProductInfo/parsers/brother.py +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/flowtask/components/ProductInfo/parsers/canon.py +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/flowtask/components/ProductInfo/parsers/epson.py +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/flowtask/components/ProductInfo/parsers/hp.py +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/flowtask/components/ProductInfo/parsers/samsung.py +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/flowtask/components/ProductInfo/scraper.py +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/flowtask/components/ProductPricing.py +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/flowtask/components/ProductReportBot.py +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/flowtask/components/QS.py +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/flowtask/components/QSBase.py +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/flowtask/components/QueryIterator.py +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/flowtask/components/QueryToInsert.py +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/flowtask/components/QueryToPandas.py +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/flowtask/components/RESTClient.py +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/flowtask/components/RethinkDBQuery.py +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/flowtask/components/Rsync.py +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/flowtask/components/RunSSH.py +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/flowtask/components/RunShell.py +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/flowtask/components/SAPExtraction.py +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/flowtask/components/SMSAnalysis.py +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/flowtask/components/SMSSummary.py +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/flowtask/components/SalesForce.py +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/flowtask/components/Sassie.py +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/flowtask/components/SaveImageBank/__init__.py +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/flowtask/components/SchedulingVisits.py +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/flowtask/components/ScrapPage.py +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/flowtask/components/ScrapSearch.py +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/flowtask/components/ScrapTool.py +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/flowtask/components/SendEmail.py +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/flowtask/components/SendNotify/__init__.py +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/flowtask/components/SendNotify/component.py +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/flowtask/components/SendNotify/models/__init__.py +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/flowtask/components/SendNotify/models/abstract.py +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/flowtask/components/SendNotify/models/zoom.py +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/flowtask/components/SentimentAnalysis.py +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/flowtask/components/ServiceScrapper/__init__.py +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/flowtask/components/ServiceScrapper/parsers/__init__.py +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/flowtask/components/ServiceScrapper/parsers/base.py +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/flowtask/components/ServiceScrapper/parsers/costco.py +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/flowtask/components/ServiceScrapper/scrapper.py +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/flowtask/components/SetVariables.py +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/flowtask/components/SplitPDF.py +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/flowtask/components/Staples.py +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/flowtask/components/SuiteCRM.py +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/flowtask/components/Switch.py +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/flowtask/components/TableBase.py +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/flowtask/components/TableDelete.py +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/flowtask/components/TableInput.py +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/flowtask/components/TableOutput/TableOutput.py +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/flowtask/components/TableOutput/__init__.py +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/flowtask/components/TableSchema.py +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/flowtask/components/Target.py +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/flowtask/components/ThumbnailGenerator.py +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/flowtask/components/ToPandas.py +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/flowtask/components/TransformRows/TransformRows.py +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/flowtask/components/TransformRows/__init__.py +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/flowtask/components/TransposeRows.py +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/flowtask/components/UPCDatabase.py +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/flowtask/components/UnGzip.py +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/flowtask/components/Uncompress.py +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/flowtask/components/UniqueRows.py +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/flowtask/components/Unzip.py +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/flowtask/components/UpdateOperationalVars.py +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/flowtask/components/UploadTo.py +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/flowtask/components/UploadToS3.py +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/flowtask/components/UploadToSFTP.py +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/flowtask/components/UploadToSharepoint.py +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/flowtask/components/UserFunc.py +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/flowtask/components/VideoUnderstanding.py +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/flowtask/components/VivaTracker.py +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/flowtask/components/WSDLClient.py +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/flowtask/components/Wait.py +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/flowtask/components/Walmart.py +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/flowtask/components/Workday/__init__.py +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/flowtask/components/Workday/models/applicant.py +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/flowtask/components/Workday/models/candidate.py +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/flowtask/components/Workday/models/cost_center.py +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/flowtask/components/Workday/models/custom_punch_field_report.py +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/flowtask/components/Workday/models/job_posting.py +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/flowtask/components/Workday/models/job_posting_site.py +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/flowtask/components/Workday/models/job_requisition.py +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/flowtask/components/Workday/models/location.py +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/flowtask/components/Workday/models/location_hierarchy_assignments.py +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/flowtask/components/Workday/models/organizations.py +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/flowtask/components/Workday/models/time_block.py +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/flowtask/components/Workday/models/time_off_balance.py +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/flowtask/components/Workday/models/time_request.py +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/flowtask/components/Workday/models/worker.py +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/flowtask/components/Workday/parsers/applicant_parsers.py +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/flowtask/components/Workday/parsers/candidate_parsers.py +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/flowtask/components/Workday/parsers/cost_center_parsers.py +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/flowtask/components/Workday/parsers/custom_punch_field_report_parsers.py +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/flowtask/components/Workday/parsers/job_posting_parsers.py +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/flowtask/components/Workday/parsers/job_posting_site_parsers.py +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/flowtask/components/Workday/parsers/job_requisition_parsers.py +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/flowtask/components/Workday/parsers/location_hierarchy_assignments_parsers.py +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/flowtask/components/Workday/parsers/location_parsers.py +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/flowtask/components/Workday/parsers/organization_parsers.py +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/flowtask/components/Workday/parsers/time_block_parsers.py +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/flowtask/components/Workday/parsers/time_off_balance_parsers.py +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/flowtask/components/Workday/parsers/time_request_parsers.py +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/flowtask/components/Workday/parsers/worker_parsers.py +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/flowtask/components/Workday/types/applicants.py +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/flowtask/components/Workday/types/base.py +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/flowtask/components/Workday/types/cost_centers.py +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/flowtask/components/Workday/types/custom_punch_field_report.py +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/flowtask/components/Workday/types/custom_punch_field_report_rest.py +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/flowtask/components/Workday/types/custom_report.py +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/flowtask/components/Workday/types/job_posting_sites.py +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/flowtask/components/Workday/types/job_postings.py +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/flowtask/components/Workday/types/job_requisitions.py +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/flowtask/components/Workday/types/location_hierarchy_assignments.py +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/flowtask/components/Workday/types/locations.py +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/flowtask/components/Workday/types/organization_single.py +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/flowtask/components/Workday/types/organizations.py +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/flowtask/components/Workday/types/recruiting_agency_users.py +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/flowtask/components/Workday/types/time_block_report.py +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/flowtask/components/Workday/types/time_blocks.py +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/flowtask/components/Workday/types/time_off_balances.py +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/flowtask/components/Workday/types/time_requests.py +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/flowtask/components/Workday/types/workers.py +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/flowtask/components/Workday/utils/__init__.py +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/flowtask/components/Workday/utils/utils.py +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/flowtask/components/WorkdayReport.py +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/flowtask/components/Workplace.py +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/flowtask/components/XMLToPandas.py +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/flowtask/components/Zammad/__init__.py +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/flowtask/components/Zammad/models.py +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/flowtask/components/Zoom.py +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/flowtask/components/ZoomInfoScraper.py +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/flowtask/components/__init__.py +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/flowtask/components/abstract.py +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/flowtask/components/flow.py +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/flowtask/components/gendata/__init__.py +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/flowtask/components/gendata/date_sequence.py +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/flowtask/components/gendata/static_list.py +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/flowtask/components/google.py +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/flowtask/components/group.py +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/flowtask/components/py.typed +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/flowtask/components/reviewscrap.py +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/flowtask/components/tAddTotalRow.py +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/flowtask/components/tAutoincrement.py +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/flowtask/components/tConcat.py +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/flowtask/components/tConditionalMultiply.py +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/flowtask/components/tCrosstab.py +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/flowtask/components/tExplode.py +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/flowtask/components/tFilter.py +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/flowtask/components/tFilterCommonValues.py +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/flowtask/components/tFrequencyWeights.py +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/flowtask/components/tJoin.py +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/flowtask/components/tMap/__init__.py +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/flowtask/components/tMap/functions.py +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/flowtask/components/tMap/tMap.py +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/flowtask/components/tMelt.py +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/flowtask/components/tMerge.py +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/flowtask/components/tOrder.py +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/flowtask/components/tPandas.py +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/flowtask/components/tPivot.py +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/flowtask/components/tPluckCols.py +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/flowtask/components/tUnnest.py +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/flowtask/components/user.py +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/flowtask/documentation/__init__.py +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/flowtask/documentation/cli.py +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/flowtask/documentation/parser.py +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/flowtask/documentation/schema.py +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/flowtask/download.py +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/flowtask/events/__init__.py +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/flowtask/events/events/__init__.py +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/flowtask/events/events/abstract.py +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/flowtask/events/events/alerts/__init__.py +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/flowtask/events/events/alerts/colfunctions.py +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/flowtask/events/events/alerts/functions.py +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/flowtask/events/events/dummy.py +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/flowtask/events/events/exec.py +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/flowtask/events/events/file/__init__.py +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/flowtask/events/events/file/base.py +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/flowtask/events/events/file/copy.py +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/flowtask/events/events/file/delete.py +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/flowtask/events/events/interfaces/__init__.py +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/flowtask/events/events/interfaces/client.py +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/flowtask/events/events/interfaces/credentials.py +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/flowtask/events/events/interfaces/notifications.py +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/flowtask/events/events/jira.py +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/flowtask/events/events/log.py +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/flowtask/events/events/logerr.py +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/flowtask/events/events/notify.py +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/flowtask/events/events/notify_event.py +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/flowtask/events/events/publish.py +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/flowtask/events/events/sendfile.py +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/flowtask/events/events/task.py +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/flowtask/events/events/teams.py +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/flowtask/events/events/webhook.py +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/flowtask/events/manager.py +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/flowtask/exceptions.py +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/flowtask/extensions/__init__.py +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/flowtask/extensions/abstract.py +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/flowtask/extensions/component_docs.py +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/flowtask/extensions/logging/__init__.py +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/flowtask/handlers/__init__.py +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/flowtask/hooks/__init__.py +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/flowtask/hooks/actions/__init__.py +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/flowtask/hooks/actions/abstract.py +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/flowtask/hooks/actions/dummy.py +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/flowtask/hooks/actions/jira.py +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/flowtask/hooks/actions/rest.py +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/flowtask/hooks/actions/sampledata.py +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/flowtask/hooks/actions/sensor.py +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/flowtask/hooks/actions/task.py +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/flowtask/hooks/actions/ticket.py +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/flowtask/hooks/actions/zammad.py +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/flowtask/hooks/hook.py +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/flowtask/hooks/types/__init__.py +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/flowtask/hooks/types/brokers/__init__.py +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/flowtask/hooks/types/brokers/mqtt.py +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/flowtask/hooks/types/brokers/rabbitmq.py +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/flowtask/hooks/types/brokers/redis.py +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/flowtask/hooks/types/fs.py +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/flowtask/hooks/types/http.py +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/flowtask/hooks/types/imap.py +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/flowtask/hooks/types/postgres.py +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/flowtask/hooks/types/responses/__init__.py +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/flowtask/hooks/types/responses/base.py +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/flowtask/hooks/types/sharepoint.py +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/flowtask/hooks/types/ssh.py +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/flowtask/hooks/types/tagged.py +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/flowtask/hooks/types/upload.py +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/flowtask/hooks/types/web.py +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/flowtask/interfaces/AzureClient.py +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/flowtask/interfaces/AzureGraph.py +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/flowtask/interfaces/Boto3Client.py +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/flowtask/interfaces/DropboxClient.py +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/flowtask/interfaces/ExcelHandler.py +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/flowtask/interfaces/FTPClient.py +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/flowtask/interfaces/GoogleCalendar.py +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/flowtask/interfaces/GoogleClient.py +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/flowtask/interfaces/GoogleDrive.py +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/flowtask/interfaces/GoogleGCS.py +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/flowtask/interfaces/GoogleGeocoding.py +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/flowtask/interfaces/GoogleLang.py +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/flowtask/interfaces/GooglePub.py +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/flowtask/interfaces/GoogleSheet.py +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/flowtask/interfaces/IMAPClient.py +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/flowtask/interfaces/LLMClient.py +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/flowtask/interfaces/O365Calendar.py +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/flowtask/interfaces/O365Client.py +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/flowtask/interfaces/OneDrive.py +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/flowtask/interfaces/Outlook.py +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/flowtask/interfaces/ParrotBot.py +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/flowtask/interfaces/ParrotTool.py +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/flowtask/interfaces/SOAPClient.py +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/flowtask/interfaces/SSHClient.py +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/flowtask/interfaces/Sharepoint.py +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/flowtask/interfaces/__init__.py +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/flowtask/interfaces/azureauth.py +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/flowtask/interfaces/cache.py +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/flowtask/interfaces/client.py +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/flowtask/interfaces/compress.py +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/flowtask/interfaces/credentials.py +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/flowtask/interfaces/d2l.py +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/flowtask/interfaces/databases/__init__.py +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/flowtask/interfaces/databases/db.py +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/flowtask/interfaces/databases/documentdb.py +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/flowtask/interfaces/databases/rethink.py +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/flowtask/interfaces/dataframes/__init__.py +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/flowtask/interfaces/dataframes/abstract.py +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/flowtask/interfaces/dataframes/arrow.py +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/flowtask/interfaces/dataframes/dt.py +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/flowtask/interfaces/dataframes/pandas.py +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/flowtask/interfaces/dataframes/polars.py +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/flowtask/interfaces/db.py +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/flowtask/interfaces/env.py +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/flowtask/interfaces/func.py +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/flowtask/interfaces/http.py +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/flowtask/interfaces/locale.py +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/flowtask/interfaces/log.py +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/flowtask/interfaces/notification.py +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/flowtask/interfaces/parrot/__init__.py +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/flowtask/interfaces/parrot/agent.py +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/flowtask/interfaces/parrot/client.py +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/flowtask/interfaces/pipelines/__init__.py +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/flowtask/interfaces/pipelines/parrot.py +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/flowtask/interfaces/playwright.py +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/flowtask/interfaces/powerpoint.py +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/flowtask/interfaces/ppt.py +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/flowtask/interfaces/py.typed +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/flowtask/interfaces/qs.py +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/flowtask/interfaces/result.py +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/flowtask/interfaces/sassie.py +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/flowtask/interfaces/selenium/__init__.py +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/flowtask/interfaces/selenium/options.py +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/flowtask/interfaces/selenium/service.py +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/flowtask/interfaces/smartsheet.py +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/flowtask/interfaces/stat.py +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/flowtask/interfaces/task.py +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/flowtask/interfaces/teams.py +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/flowtask/interfaces/template.py +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/flowtask/interfaces/tickets.py +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/flowtask/interfaces/vectorstores/__init__.py +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/flowtask/interfaces/vectorstores/abstract.py +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/flowtask/interfaces/vectorstores/milvus.py +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/flowtask/interfaces/zammad.py +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/flowtask/interfaces/zoom.py +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/flowtask/models.py +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/flowtask/parsers/__init__.py +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/flowtask/parsers/_yaml.c +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/flowtask/parsers/_yaml.pyx +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/flowtask/parsers/base.c +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/flowtask/parsers/base.pxd +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/flowtask/parsers/base.pyx +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/flowtask/parsers/json.c +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/flowtask/parsers/json.pyx +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/flowtask/parsers/maps.py +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/flowtask/parsers/toml.c +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/flowtask/parsers/toml.pyx +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/flowtask/plugins/__init__.py +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/flowtask/plugins/components_/__init__.py +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/flowtask/plugins/handler/__init__.py +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/flowtask/plugins/importer.py +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/flowtask/plugins/sources/__init__.py +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/flowtask/runner.py +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/flowtask/scheduler/__init__.py +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/flowtask/scheduler/functions.py +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/flowtask/scheduler/handlers/__init__.py +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/flowtask/scheduler/handlers/manager.py +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/flowtask/scheduler/handlers/models.py +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/flowtask/scheduler/handlers/service.py +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/flowtask/scheduler/notifications.py +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/flowtask/scheduler/scheduler.py +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/flowtask/services/__init__.py +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/flowtask/services/bots/__init__.py +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/flowtask/services/bots/telegram.py +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/flowtask/services/files/__init__.py +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/flowtask/services/files/manager.py +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/flowtask/services/files/model.py +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/flowtask/services/files/service.py +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/flowtask/services/jira/__init__.py +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/flowtask/services/jira/jira_actions.py +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/flowtask/services/tasks/__init__.py +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/flowtask/services/tasks/launcher.py +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/flowtask/services/tasks/manager.py +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/flowtask/services/tasks/service.py +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/flowtask/services/tasks/task_manager.py +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/flowtask/services/tasks/tasks.py +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/flowtask/storages/__init__.py +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/flowtask/storages/exceptions.py +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/flowtask/storages/files/__init__.py +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/flowtask/storages/files/abstract.py +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/flowtask/storages/files/filesystem.py +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/flowtask/storages/tasks/__init__.py +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/flowtask/storages/tasks/abstract.py +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/flowtask/storages/tasks/database.py +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/flowtask/storages/tasks/filesystem.py +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/flowtask/storages/tasks/github.py +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/flowtask/storages/tasks/memory.py +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/flowtask/storages/tasks/row.py +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/flowtask/tasks/__init__.py +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/flowtask/tasks/command.py +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/flowtask/tasks/pile.py +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/flowtask/tasks/py.typed +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/flowtask/tasks/task.py +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/flowtask/tasks/workers.py +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/flowtask/template/__init__.py +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/flowtask/tests.py +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/flowtask/types/__init__.py +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/flowtask/types/typedefs.c +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/flowtask/types/typedefs.pyx +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/flowtask/utils/__init__.py +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/flowtask/utils/constants.py +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/flowtask/utils/encoders.py +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/flowtask/utils/executor.py +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/flowtask/utils/functions.cpp +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/flowtask/utils/functions.pyx +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/flowtask/utils/json.cpp +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/flowtask/utils/json.pxi +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/flowtask/utils/json.pyx +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/flowtask/utils/mail.py +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/flowtask/utils/parseqs.c +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/flowtask/utils/parseqs.pyx +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/flowtask/utils/stats.py +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/flowtask/utils/transformations.py +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/flowtask/utils/uv.py +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/flowtask/utils/validators.py +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/flowtask.egg-info/dependency_links.txt +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/flowtask.egg-info/entry_points.txt +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/flowtask.egg-info/top_level.txt +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/gunicorn_config.py +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/image1.png +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/inject_examples.py +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/mkdocs.yml +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/mypy.ini +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/nav.py +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/plugins/__init__.py +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/prompts/nextstop/employee_comparison.txt +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/prompts/nextstop/for_employee.txt +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/prompts/nextstop/for_podcast.txt +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/prompts/nextstop/for_store.txt +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/prompts/nextstop/team_performance.txt +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/prompts/product_report_bot/product_conversation.txt +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/prompts/product_report_bot/product_info.txt +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/pydoc-markdown.yml +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/resources/users/__init__.py +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/resources/users/models.py +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/run.py +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/run_ninja.sh +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/run_task.sh +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/sdd/WORKFLOW-parrot.md +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/sdd/WORKFLOW.md +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/sdd/proposals/NAV-6821-websocket-notifications.brainstorm.md +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/sdd/proposals/SDD_NAV-6365.md +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/sdd/proposals/component-doc.md +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/sdd/proposals/endcap-no-shelves-promotional-fix.proposal.md +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/sdd/proposals/flowtask-command-execution.brainstorm.md +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/sdd/proposals/flowtask-scheduler-discard.brainstorm.md +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/sdd/proposals/odoo-bearer-auth.brainstorm.md +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/sdd/proposals/planogram-composable-type-support.brainstorm.md +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/sdd/proposals/rep-depth-stores-persistence.brainstorm.md +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/sdd/proposals/workday-networkninja-remediation.proposal.md +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/sdd/reports/FEAT-008-security-credentials-audit.md +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/sdd/specs/component-documentation-api.spec.md +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/sdd/specs/duplicate-execution-id.spec.md +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/sdd/specs/excel-to-postgres.spec.md +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/sdd/specs/flowtask-command-execution.spec.md +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/sdd/specs/gendata-component.spec.md +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/sdd/specs/graphic-panel-display.spec.md +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/sdd/specs/odoo-bearer-auth.spec.md +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/sdd/specs/planogram-compliance-homologation.spec.md +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/sdd/specs/planogram-composable-type-support.spec.md +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/sdd/specs/podcast-maker.spec.md +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/sdd/specs/security-credentials-audit.spec.md +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/sdd/specs/tmerge-cross-function.spec.md +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/sdd/tasks/active/TASK-009-planogram-type-routing.md +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/sdd/tasks/active/TASK-010-cleanup-and-tests.md +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/sdd/tasks/active/TASK-011-graphic-panel-display-composable.md +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/sdd/tasks/active/TASK-012-graphic-panel-display-registration.md +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/sdd/tasks/active/TASK-013-graphic-panel-display-tests.md +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/sdd/tasks/active/TASK-015-podcast-maker-tests.md +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/sdd/tasks/active/TASK-023-planogram-critical-bugfixes.md +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/sdd/tasks/active/TASK-024-planogram-imports-and-validation.md +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/sdd/tasks/active/TASK-025-aipipeline-load-pipeline-update.md +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/sdd/tasks/active/TASK-026-planogram-integration-tests.md +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/sdd/tasks/completed/TASK-001-fix-wrapper-reuse.md +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/sdd/tasks/completed/TASK-002-uuid-uniqueness-tests.md +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/sdd/tasks/completed/TASK-003-docstring-parser.md +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/sdd/tasks/completed/TASK-004-schema-generator.md +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/sdd/tasks/completed/TASK-005-documentation-generator.md +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/sdd/tasks/completed/TASK-006-cli-script.md +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/sdd/tasks/completed/TASK-007-http-handler.md +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/sdd/tasks/completed/TASK-008-route-registration.md +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/sdd/tasks/completed/TASK-009-date-sequence-rule.md +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/sdd/tasks/completed/TASK-009-planogram-type-routing.md +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/sdd/tasks/completed/TASK-010-cleanup-and-tests.md +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/sdd/tasks/completed/TASK-010-gendata-component.md +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/sdd/tasks/completed/TASK-011-gendata-integration-tests.md +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/sdd/tasks/completed/TASK-011-graphic-panel-display-composable.md +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/sdd/tasks/completed/TASK-012-graphic-panel-display-registration.md +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/sdd/tasks/completed/TASK-012-tmerge-cross-func.md +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/sdd/tasks/completed/TASK-013-graphic-panel-display-tests.md +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/sdd/tasks/completed/TASK-013-tmerge-cross-func-tests.md +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/sdd/tasks/completed/TASK-014-podcast-maker-failure-tracking.md +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/sdd/tasks/completed/TASK-016-audit-flowtask-core.md +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/sdd/tasks/completed/TASK-017-audit-plugins.md +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/sdd/tasks/completed/TASK-018-audit-agents-mcp.md +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/sdd/tasks/completed/TASK-019-audit-scripts-tasks.md +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/sdd/tasks/completed/TASK-020-audit-tests-examples.md +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/sdd/tasks/completed/TASK-021-audit-docs-templates.md +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/sdd/tasks/completed/TASK-022-audit-consolidation-report.md +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/sdd/tasks/completed/TASK-023-planogram-critical-bugfixes.md +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/sdd/tasks/completed/TASK-024-planogram-imports-and-validation.md +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/sdd/tasks/completed/TASK-025-aipipeline-load-pipeline-update.md +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/sdd/tasks/completed/TASK-026-planogram-integration-tests.md +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/sdd/tasks/completed/TASK-027-odoo-bearer-auth-component.md +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/sdd/tasks/completed/TASK-028-odoo-bearer-auth-tests.md +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/sdd/tasks/completed/TASK-029-worker-queue-inspector.md +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/sdd/tasks/completed/TASK-030-cli-subcommand-integration.md +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/sdd/tasks/completed/TASK-031-entry-point-routing.md +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/sdd/tasks/completed/TASK-032-unit-tests.md +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/sdd/tasks/completed/TASK-033-integration-tests.md +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/sdd/templates/brainstorm.md +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/sdd/templates/proposal.md +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/sdd/templates/spec.md +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/sdd/templates/task.md +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/setup.cfg +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/setup.py +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/start.py +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/start.sh +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/static/images/screenshots/product-screenshot.png +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/static/images/screenshots/screenshot.png +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/tasks/programs/assurant/docs/providers.sql +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/tasks/programs/assurant/prompts/call_summary.txt +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/tasks/programs/assurant/prompts/prompt-audio-sentiment.txt +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/tasks/programs/assurant/sql/get_calls.sql +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/tasks/programs/assurant/tasks/call_summarization.yaml +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/tasks/programs/assurant/tasks/calls.yaml +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/tasks/programs/assurant/tasks/dispatch_table.yaml +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/tasks/programs/assurant/tasks/test_smartsheet.yaml +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/tasks/programs/assurant/tasks/test_splitpdf.yaml +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/tasks/programs/assurant/tasks/upload_contracts.yaml +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/tasks/programs/epson/files/single_product.json +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/tasks/programs/epson/files/single_store.json +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/tasks/programs/epson/tasks/product_availability.yaml +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/tasks/programs/epson/tasks/product_reviews.yaml +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/tasks/programs/hisense/prompts/employee.txt +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/tasks/programs/hisense/prompts/reviewbot.txt +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/tasks/programs/hisense/sql/get_nextstop_employees.sql +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/tasks/programs/hisense/tasks/bot_training_docx.yaml +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/tasks/programs/hisense/tasks/ce_chat.yaml +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/tasks/programs/hisense/tasks/customer_satisfaction.yaml +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/tasks/programs/hisense/tasks/employee_eval.yaml +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/tasks/programs/hisense/tasks/employee_evaluation_file.yaml +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/tasks/programs/hisense/tasks/ha_chat.yaml +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/tasks/programs/hisense/tasks/nextstop_employees.yaml +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/tasks/programs/networkninja/tasks/get_batch.yaml +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/tasks/programs/networkninja/tasks/get_from_mongo.yaml +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/tasks/programs/primo/tasks/primo_pdf.yaml +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/tasks/programs/primo/tasks/primo_qa.yaml +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/tasks/programs/test/files/company_info.json +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/tasks/programs/test/files/sample_payload.json +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/tasks/programs/test/files/sample_recap.json +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/tasks/programs/test/files/single_product.json +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/tasks/programs/test/files/single_store.json +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/tasks/programs/test/sql/query.sql +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/tasks/programs/test/tasks/company_profile.yaml +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/tasks/programs/test/tasks/costco_brands.yaml +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/tasks/programs/test/tasks/costco_companies.yaml +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/tasks/programs/test/tasks/product_availability.yaml +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/tasks/programs/test/tasks/sentiment_chats.yaml +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/tasks/programs/test/tasks/sentiment_file.yaml +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/tasks/programs/test/tasks/smartsheet.yaml +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/tasks/programs/test/tasks/test_alert.yaml +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/tasks/programs/test/tasks/test_case.yaml +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/tasks/programs/test/tasks/test_component.yaml +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/tasks/programs/test/tasks/test_datainput.yaml +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/tasks/programs/test/tasks/test_if.yaml +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/tasks/programs/test/tasks/test_imap.yaml +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/tasks/programs/test/tasks/test_loop.yaml +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/tasks/programs/test/tasks/test_milvus_qa.yaml +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/tasks/programs/test/tasks/test_milvus_txt.yaml +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/tasks/programs/test/tasks/test_networkninja.yaml +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/tasks/programs/test/tasks/test_networkninja_batch.yaml +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/tasks/programs/test/tasks/test_nn_form.yaml +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/tasks/programs/test/tasks/test_nn_staff.yaml +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/tasks/programs/test/tasks/test_nn_stores.yaml +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/tasks/programs/test/tasks/test_nn_users.yaml +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/tasks/programs/test/tasks/test_placer.yaml +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/tasks/programs/test/tasks/test_qspandas.yaml +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/tasks/programs/test/tasks/test_sftp.yaml +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/tasks/programs/test/tasks/test_sharepoint.yaml +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/tasks/programs/test/tasks/test_smartsheet.yaml +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/tasks/programs/test/tasks/test_switch.yaml +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/tasks/programs/test/tasks/test_transform.yaml +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/tasks/programs/test/tasks/test_use1.yaml +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/tasks/programs/test/tasks/test_vivatracker.json +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/tasks/programs/troc/files/nextstop_agent/backstory.txt +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/tasks/programs/troc/prompts/nextstop_agent/for_pdf.txt +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/tasks/programs/troc/prompts/nextstop_agent/for_store.txt +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/tasks/programs/troc/prompts/nextstop_agent/manager.txt +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/tasks/programs/troc/prompts/nextstop_agent/nextstop_employee.txt +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/tasks/programs/troc/prompts/nextstop_agent/team_performance.txt +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/tasks/programs/troc/sql/nextstop_employees.sql +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/tasks/programs/troc/tasks/nextstop.yaml +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/template.pptx +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/templates/css/base.css +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/templates/css/product_support_report.css +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/templates/css/table.css +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/templates/css/tables.css +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/templates/email_custom_report.html +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/templates/email_error.html +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/templates/email_report.html +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/templates/email_upload_sharepoint.html +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/templates/fontlist-v390.json +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/templates/nextstop/nextstop.html +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/templates/product_support_report.html +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/templates/report_template.html +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/templates/test_template.html +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/test_executor.py +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/test_leadiq.py +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/test_playwright.py +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/test_thumbnails/12345.jpg +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/test_thumbnails/67890.jpg +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/test_workday_memory_quick.py +0 -0
- {flowtask-5.11.9/tests/unit → flowtask-5.11.10/tests/hooks}/__init__.py +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/tests/integration/__init__.py +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/tests/integration/test_workers_cli.py +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/tests/test_abstract.py +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/tests/test_amazon.py +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/tests/test_autotask.py +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/tests/test_azure_users.py +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/tests/test_copytobigquery.py +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/tests/test_dataframes.py +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/tests/test_dialpad.py +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/tests/test_downloadfromimap.py +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/tests/test_downloadftp.py +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/tests/test_downloadsftp.py +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/tests/test_dummy.py +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/tests/test_executesql.py +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/tests/test_filecopy.py +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/tests/test_fileexists.py +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/tests/test_filelist.py +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/tests/test_fileopen.py +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/tests/test_filterrows.py +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/tests/test_gendata_component.py +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/tests/test_gendata_integration.py +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/tests/test_gendata_rules.py +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/tests/test_httpclient.py +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/tests/test_imap.py +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/tests/test_imap2.py +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/tests/test_jira_actions.py +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/tests/test_market_clustering_constraints.py +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/tests/test_ms365usage.py +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/tests/test_ninjaclaim.py +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/tests/test_odoo.py +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/tests/test_odoo_injector.py +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/tests/test_openwithpandas.py +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/tests/test_planogram_compliance_bugfixes.py +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/tests/test_planogram_compliance_integration.py +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/tests/test_planogram_compliance_routing.py +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/tests/test_pokemon.py +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/tests/test_populartimes.py +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/tests/test_printmessage.py +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/tests/test_productpricing.py +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/tests/test_queryinsert.py +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/tests/test_querytopandas.py +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/tests/test_rest.py +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/tests/test_restclient.py +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/tests/test_scheduler_uuid.py +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/tests/test_sftp.py +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/tests/test_sharepoint.py +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/tests/test_smartsheet.py +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/tests/test_tableoutput.py +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/tests/test_task.py +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/tests/test_taskqinsert.py +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/tests/test_tmerge_cross_func.py +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/tests/test_transform.py +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/tests/test_transpose.py +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/tests/test_uniquerows.py +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/tests/unit/documentation/__init__.py +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/tests/unit/documentation/test_cli.py +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/tests/unit/documentation/test_generator.py +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/tests/unit/documentation/test_parser.py +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/tests/unit/documentation/test_schema.py +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/tests/unit/handlers/__init__.py +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/tests/unit/test_workers.py +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/tox.ini +0 -0
- {flowtask-5.11.9 → flowtask-5.11.10}/update_components.py +0 -0
|
@@ -0,0 +1,210 @@
|
|
|
1
|
+
# Worktrees
|
|
2
|
+
.worktrees/
|
|
3
|
+
|
|
4
|
+
# Byte-compiled / optimized / DLL files
|
|
5
|
+
__pycache__/
|
|
6
|
+
*.py[cod]
|
|
7
|
+
*$py.class
|
|
8
|
+
cache/*
|
|
9
|
+
# C extensions
|
|
10
|
+
*.so
|
|
11
|
+
|
|
12
|
+
# Distribution / packaging
|
|
13
|
+
.Python
|
|
14
|
+
build/
|
|
15
|
+
develop-eggs/
|
|
16
|
+
dist/
|
|
17
|
+
downloads/
|
|
18
|
+
eggs/
|
|
19
|
+
*.egg-info
|
|
20
|
+
.eggs/
|
|
21
|
+
lib/
|
|
22
|
+
lib64/
|
|
23
|
+
parts/
|
|
24
|
+
sdist/
|
|
25
|
+
var/
|
|
26
|
+
wheels/
|
|
27
|
+
pip-wheel-metadata/
|
|
28
|
+
share/python-wheels/
|
|
29
|
+
*.egg-info/
|
|
30
|
+
.installed.cfg
|
|
31
|
+
*.egg
|
|
32
|
+
MANIFEST
|
|
33
|
+
|
|
34
|
+
# PyInstaller
|
|
35
|
+
# Usually these files are written by a python script from a template
|
|
36
|
+
# before PyInstaller builds the exe, so as to inject date/other infos into it.
|
|
37
|
+
*.manifest
|
|
38
|
+
*.spec
|
|
39
|
+
|
|
40
|
+
# Installer logs
|
|
41
|
+
pip-log.txt
|
|
42
|
+
pip-delete-this-directory.txt
|
|
43
|
+
|
|
44
|
+
# Unit test / coverage reports
|
|
45
|
+
htmlcov/
|
|
46
|
+
.tox/
|
|
47
|
+
.nox/
|
|
48
|
+
.coverage
|
|
49
|
+
.coverage.*
|
|
50
|
+
.cache
|
|
51
|
+
nosetests.xml
|
|
52
|
+
coverage.xml
|
|
53
|
+
*.cover
|
|
54
|
+
*.py,cover
|
|
55
|
+
.hypothesis/
|
|
56
|
+
.pytest_cache/
|
|
57
|
+
|
|
58
|
+
# Translations
|
|
59
|
+
*.mo
|
|
60
|
+
*.pot
|
|
61
|
+
|
|
62
|
+
# Config Stuff
|
|
63
|
+
*.log
|
|
64
|
+
local_settings.py
|
|
65
|
+
db.sqlite3
|
|
66
|
+
db.sqlite3-journal
|
|
67
|
+
|
|
68
|
+
# Flask stuff:
|
|
69
|
+
instance/
|
|
70
|
+
.webassets-cache
|
|
71
|
+
|
|
72
|
+
# Scrapy stuff:
|
|
73
|
+
.scrapy
|
|
74
|
+
|
|
75
|
+
# Sphinx documentation
|
|
76
|
+
docs/_build/
|
|
77
|
+
|
|
78
|
+
# PyBuilder
|
|
79
|
+
target/
|
|
80
|
+
|
|
81
|
+
# Jupyter Notebook
|
|
82
|
+
.ipynb_checkpoints
|
|
83
|
+
|
|
84
|
+
# IPython
|
|
85
|
+
profile_default/
|
|
86
|
+
ipython_config.py
|
|
87
|
+
|
|
88
|
+
# pyenv
|
|
89
|
+
.python-version
|
|
90
|
+
|
|
91
|
+
# pipenv
|
|
92
|
+
# According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control.
|
|
93
|
+
# However, in case of collaboration, if having platform-specific dependencies or dependencies
|
|
94
|
+
# having no cross-platform support, pipenv may install dependencies that don't work, or not
|
|
95
|
+
# install all needed dependencies.
|
|
96
|
+
#Pipfile.lock
|
|
97
|
+
|
|
98
|
+
# PEP 582; used by e.g. github.com/David-OConnor/pyflow
|
|
99
|
+
__pypackages__/
|
|
100
|
+
|
|
101
|
+
# Celery stuff
|
|
102
|
+
celerybeat-schedule
|
|
103
|
+
celerybeat.pid
|
|
104
|
+
|
|
105
|
+
# SageMath parsed files
|
|
106
|
+
*.sage.py
|
|
107
|
+
|
|
108
|
+
# Environments
|
|
109
|
+
.env
|
|
110
|
+
.venv
|
|
111
|
+
env/
|
|
112
|
+
venv/
|
|
113
|
+
ENV/
|
|
114
|
+
env.bak/
|
|
115
|
+
venv.bak/
|
|
116
|
+
|
|
117
|
+
# Spyder project settings
|
|
118
|
+
.spyderproject
|
|
119
|
+
.spyproject
|
|
120
|
+
|
|
121
|
+
# Rope project settings
|
|
122
|
+
.ropeproject
|
|
123
|
+
|
|
124
|
+
# mkdocs documentation
|
|
125
|
+
/site
|
|
126
|
+
|
|
127
|
+
# mypy
|
|
128
|
+
.mypy_cache/
|
|
129
|
+
.dmypy.json
|
|
130
|
+
dmypy.json
|
|
131
|
+
|
|
132
|
+
# Pyre type checker
|
|
133
|
+
.pyre/
|
|
134
|
+
|
|
135
|
+
# configuration directories
|
|
136
|
+
etc/
|
|
137
|
+
env/
|
|
138
|
+
settings/
|
|
139
|
+
run.py
|
|
140
|
+
|
|
141
|
+
## examples
|
|
142
|
+
examples/
|
|
143
|
+
samples/
|
|
144
|
+
flowtask/exceptions.c
|
|
145
|
+
*.c
|
|
146
|
+
*.cpp
|
|
147
|
+
flowtask/parsers/*.c
|
|
148
|
+
flowtask/utils/*.cpp
|
|
149
|
+
flowtask/utils/*.c
|
|
150
|
+
|
|
151
|
+
# perf data
|
|
152
|
+
memory_usage.csv
|
|
153
|
+
perf.data
|
|
154
|
+
perf.data.old
|
|
155
|
+
|
|
156
|
+
# Visual Studio Code artifacts
|
|
157
|
+
.cache/*
|
|
158
|
+
.vscode/*
|
|
159
|
+
.history/
|
|
160
|
+
|
|
161
|
+
# ViM swap files
|
|
162
|
+
.*.swp
|
|
163
|
+
google/polestar-analytics-378119.json
|
|
164
|
+
app.py
|
|
165
|
+
resources/*.py
|
|
166
|
+
*.code-workspace
|
|
167
|
+
|
|
168
|
+
# Jupyter Notebook
|
|
169
|
+
.ipynb_checkpoints
|
|
170
|
+
|
|
171
|
+
# Yolo
|
|
172
|
+
*.pt
|
|
173
|
+
|
|
174
|
+
# Other docs:
|
|
175
|
+
docs/*
|
|
176
|
+
|
|
177
|
+
# Gecko Driver
|
|
178
|
+
bin/geckodriver
|
|
179
|
+
bin/*.gz
|
|
180
|
+
bin/*.zip
|
|
181
|
+
|
|
182
|
+
# Images:
|
|
183
|
+
docs/images/*.png
|
|
184
|
+
docs/images/*.jpg
|
|
185
|
+
docs/images/*.jpeg
|
|
186
|
+
data/gensim/information.json
|
|
187
|
+
stderr.txt
|
|
188
|
+
data/gensim/word2vec-google-news-300/__init__.py
|
|
189
|
+
data/gensim/word2vec-google-news-300/word2vec-google-news-300.gz
|
|
190
|
+
google/navigator-data.json
|
|
191
|
+
tasks/programs/test/files/*
|
|
192
|
+
static/nextstop/*
|
|
193
|
+
# Jinja
|
|
194
|
+
templates/.compiled
|
|
195
|
+
templates/fontlist-v390.json
|
|
196
|
+
|
|
197
|
+
# AI Models Cache (Hugging Face, Transformers, etc.)
|
|
198
|
+
model_cache/
|
|
199
|
+
.cache/huggingface/
|
|
200
|
+
models--*/
|
|
201
|
+
.huggingface/
|
|
202
|
+
|
|
203
|
+
# UV:
|
|
204
|
+
uv.lock
|
|
205
|
+
|
|
206
|
+
# Statics
|
|
207
|
+
static/
|
|
208
|
+
|
|
209
|
+
# code worktrees:
|
|
210
|
+
.claude/worktrees/
|
|
@@ -0,0 +1,191 @@
|
|
|
1
|
+
# FlowTask Makefile
|
|
2
|
+
# This Makefile provides a set of commands to manage the FlowTask project.
|
|
3
|
+
|
|
4
|
+
.PHONY: venv install develop setup dev release format lint test clean distclean lock sync
|
|
5
|
+
|
|
6
|
+
# Python version to use
|
|
7
|
+
PYTHON_VERSION := 3.11
|
|
8
|
+
|
|
9
|
+
# Auto-detect available tools
|
|
10
|
+
HAS_UV := $(shell command -v uv 2> /dev/null)
|
|
11
|
+
HAS_PIP := $(shell command -v pip 2> /dev/null)
|
|
12
|
+
|
|
13
|
+
# Install uv for faster workflows
|
|
14
|
+
install-uv:
|
|
15
|
+
curl -LsSf https://astral.sh/uv/install.sh | sh
|
|
16
|
+
@echo "uv installed! You may need to restart your shell or run 'source ~/.bashrc'"
|
|
17
|
+
@echo "Then re-run make commands to use faster uv workflows"
|
|
18
|
+
|
|
19
|
+
# Create virtual environment
|
|
20
|
+
venv:
|
|
21
|
+
uv venv --python $(PYTHON_VERSION) .venv
|
|
22
|
+
@echo 'run `source .venv/bin/activate` to start develop with FlowTask.'
|
|
23
|
+
|
|
24
|
+
# Install production dependencies using lock file
|
|
25
|
+
install:
|
|
26
|
+
uv sync --frozen --no-dev
|
|
27
|
+
uv pip install navigator-api[uvloop,locale]
|
|
28
|
+
@echo "Production dependencies installed. Use 'make develop' for development setup."
|
|
29
|
+
|
|
30
|
+
# Generate lock files (uv only)
|
|
31
|
+
lock:
|
|
32
|
+
ifdef HAS_UV
|
|
33
|
+
uv lock
|
|
34
|
+
else
|
|
35
|
+
@echo "Lock files require uv. Install with: pip install uv"
|
|
36
|
+
endif
|
|
37
|
+
|
|
38
|
+
# Install all dependencies including dev dependencies
|
|
39
|
+
develop:
|
|
40
|
+
uv sync --frozen --all-extras
|
|
41
|
+
|
|
42
|
+
# Alternative: install without lock file (faster for development)
|
|
43
|
+
develop-fast:
|
|
44
|
+
uv pip install -e .[dev]
|
|
45
|
+
|
|
46
|
+
# Setup development environment from requirements file (if you still have one)
|
|
47
|
+
setup:
|
|
48
|
+
uv pip install -r requirements/requirements-dev.txt
|
|
49
|
+
|
|
50
|
+
# Install in development mode using flit (if you want to keep flit)
|
|
51
|
+
dev:
|
|
52
|
+
uv pip install flit
|
|
53
|
+
flit install --symlink
|
|
54
|
+
|
|
55
|
+
# Build and publish release
|
|
56
|
+
release: lint test clean
|
|
57
|
+
uv build
|
|
58
|
+
uv publish
|
|
59
|
+
|
|
60
|
+
# Alternative release using flit
|
|
61
|
+
release-flit: lint test clean
|
|
62
|
+
flit publish
|
|
63
|
+
|
|
64
|
+
# Format code
|
|
65
|
+
format:
|
|
66
|
+
uv run black flowtask
|
|
67
|
+
|
|
68
|
+
# Lint code
|
|
69
|
+
lint:
|
|
70
|
+
uv run pylint --rcfile .pylint flowtask/*.py
|
|
71
|
+
uv run black --check flowtask
|
|
72
|
+
|
|
73
|
+
# Run tests with coverage
|
|
74
|
+
test:
|
|
75
|
+
uv run coverage run -m flowtask.tests
|
|
76
|
+
uv run coverage report
|
|
77
|
+
uv run mypy flowtask/*.py
|
|
78
|
+
|
|
79
|
+
# Alternative test command using pytest directly
|
|
80
|
+
test-pytest:
|
|
81
|
+
uv run pytest
|
|
82
|
+
|
|
83
|
+
# Add new dependency and update lock file
|
|
84
|
+
add:
|
|
85
|
+
@if [ -z "$(pkg)" ]; then echo "Usage: make add pkg=package-name"; exit 1; fi
|
|
86
|
+
uv add $(pkg)
|
|
87
|
+
|
|
88
|
+
# Add development dependency
|
|
89
|
+
add-dev:
|
|
90
|
+
@if [ -z "$(pkg)" ]; then echo "Usage: make add-dev pkg=package-name"; exit 1; fi
|
|
91
|
+
uv add --dev $(pkg)
|
|
92
|
+
|
|
93
|
+
# Remove dependency
|
|
94
|
+
remove:
|
|
95
|
+
@if [ -z "$(pkg)" ]; then echo "Usage: make remove pkg=package-name"; exit 1; fi
|
|
96
|
+
uv remove $(pkg)
|
|
97
|
+
|
|
98
|
+
# Compile Cython extensions using setup.py
|
|
99
|
+
build-cython:
|
|
100
|
+
@echo "Compiling Cython extensions..."
|
|
101
|
+
python setup.py build_ext
|
|
102
|
+
|
|
103
|
+
# Build Cython extensions in place (for development)
|
|
104
|
+
build-inplace:
|
|
105
|
+
@echo "Building Cython extensions in place..."
|
|
106
|
+
python setup.py build_ext --inplace
|
|
107
|
+
|
|
108
|
+
# Full build using uv
|
|
109
|
+
build: clean
|
|
110
|
+
@echo "Building package with uv..."
|
|
111
|
+
uv build
|
|
112
|
+
|
|
113
|
+
# Update all dependencies
|
|
114
|
+
update:
|
|
115
|
+
uv lock --upgrade
|
|
116
|
+
|
|
117
|
+
# Show project info
|
|
118
|
+
info:
|
|
119
|
+
uv tree
|
|
120
|
+
|
|
121
|
+
# Clean build artifacts
|
|
122
|
+
clean:
|
|
123
|
+
rm -rf build/
|
|
124
|
+
rm -rf dist/
|
|
125
|
+
rm -rf *.egg-info/
|
|
126
|
+
find . -name "*.pyc" -delete
|
|
127
|
+
find . -name "*.pyo" -delete
|
|
128
|
+
find . -name "*.so" -delete
|
|
129
|
+
find . -type d -name __pycache__ -delete
|
|
130
|
+
find . -type f -name "*.pyc" -delete
|
|
131
|
+
find . -name "__pycache__" -type d -exec rm -rf {} + 2>/dev/null || true
|
|
132
|
+
@echo "Clean complete."
|
|
133
|
+
|
|
134
|
+
# Remove virtual environment
|
|
135
|
+
distclean:
|
|
136
|
+
rm -rf .venv
|
|
137
|
+
rm -rf uv.lock
|
|
138
|
+
|
|
139
|
+
# Version management
|
|
140
|
+
bump-patch:
|
|
141
|
+
@python -c "import re; \
|
|
142
|
+
content = open('flowtask/version.py').read(); \
|
|
143
|
+
version = re.search(r'__version__ = \"(.+)\"', content).group(1); \
|
|
144
|
+
parts = version.split('.'); \
|
|
145
|
+
parts[2] = str(int(parts[2]) + 1); \
|
|
146
|
+
new_version = '.'.join(parts); \
|
|
147
|
+
new_content = re.sub(r'__version__ = \".+\"', f'__version__ = \"{new_version}\"', content); \
|
|
148
|
+
open('flowtask/version.py', 'w').write(new_content); \
|
|
149
|
+
print(f'Version bumped to {new_version}')"
|
|
150
|
+
|
|
151
|
+
bump-minor:
|
|
152
|
+
@python -c "import re; \
|
|
153
|
+
content = open('flowtask/version.py').read(); \
|
|
154
|
+
version = re.search(r'__version__ = \"(.+)\"', content).group(1); \
|
|
155
|
+
parts = version.split('.'); \
|
|
156
|
+
parts[1] = str(int(parts[1]) + 1); \
|
|
157
|
+
parts[2] = '0'; \
|
|
158
|
+
new_version = '.'.join(parts); \
|
|
159
|
+
new_content = re.sub(r'__version__ = \".+\"', f'__version__ = \"{new_version}\"', content); \
|
|
160
|
+
open('flowtask/version.py', 'w').write(new_content); \
|
|
161
|
+
print(f'Version bumped to {new_version}')"
|
|
162
|
+
|
|
163
|
+
bump-major:
|
|
164
|
+
@python -c "import re; \
|
|
165
|
+
content = open('flowtask/version.py').read(); \
|
|
166
|
+
version = re.search(r'__version__ = \"(.+)\"', content).group(1); \
|
|
167
|
+
parts = version.split('.'); \
|
|
168
|
+
parts[0] = str(int(parts[0]) + 1); \
|
|
169
|
+
parts[1] = '0'; \
|
|
170
|
+
parts[2] = '0'; \
|
|
171
|
+
new_version = '.'.join(parts); \
|
|
172
|
+
new_content = re.sub(r'__version__ = \".+\"', f'__version__ = \"{new_version}\"', content); \
|
|
173
|
+
open('flowtask/version.py', 'w').write(new_content); \
|
|
174
|
+
print(f'Version bumped to {new_version}')"
|
|
175
|
+
|
|
176
|
+
help:
|
|
177
|
+
@echo "Available targets:"
|
|
178
|
+
@echo " venv - Create virtual environment"
|
|
179
|
+
@echo " install - Install production dependencies"
|
|
180
|
+
@echo " develop - Install development dependencies"
|
|
181
|
+
@echo " build - Build package"
|
|
182
|
+
@echo " release - Build and publish package"
|
|
183
|
+
@echo " test - Run tests"
|
|
184
|
+
@echo " format - Format code"
|
|
185
|
+
@echo " lint - Lint code"
|
|
186
|
+
@echo " clean - Clean build artifacts"
|
|
187
|
+
@echo " detect-tools - Show detected tools"
|
|
188
|
+
@echo " install-uv - Install uv"
|
|
189
|
+
@echo " build-inplace - Build Cython extensions in place"
|
|
190
|
+
@echo ""
|
|
191
|
+
@echo "Current setup: $(TOOL_INFO)"
|
|
@@ -0,0 +1,222 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: flowtask
|
|
3
|
+
Version: 5.11.10
|
|
4
|
+
Summary: Framework for Task orchestration
|
|
5
|
+
Author-email: Jesus Lara <jesuslarag@gmail.com>
|
|
6
|
+
License: Apache-2.0
|
|
7
|
+
Project-URL: Homepage, https://github.com/phenobarbital/flowtask
|
|
8
|
+
Project-URL: Source, https://github.com/phenobarbital/flowtask
|
|
9
|
+
Project-URL: Funding, https://paypal.me/phenobarbital
|
|
10
|
+
Project-URL: Say Thanks!, https://saythanks.io/to/phenobarbital
|
|
11
|
+
Keywords: Flowtask,Data Integration,Task Orchestration,Task-Runner,Pipelines
|
|
12
|
+
Classifier: Development Status :: 4 - Beta
|
|
13
|
+
Classifier: Intended Audience :: Developers
|
|
14
|
+
Classifier: Topic :: Software Development :: Libraries :: Application Frameworks
|
|
15
|
+
Classifier: Topic :: Software Development :: Libraries :: Python Modules
|
|
16
|
+
Classifier: Topic :: Software Development :: Build Tools
|
|
17
|
+
Classifier: Topic :: Utilities
|
|
18
|
+
Classifier: Programming Language :: Python :: 3.9
|
|
19
|
+
Classifier: Programming Language :: Python :: 3.10
|
|
20
|
+
Classifier: Programming Language :: Python :: 3.11
|
|
21
|
+
Classifier: Programming Language :: Python :: 3.12
|
|
22
|
+
Classifier: Programming Language :: Python :: 3.13
|
|
23
|
+
Classifier: License :: OSI Approved :: Apache Software License
|
|
24
|
+
Classifier: Framework :: AsyncIO
|
|
25
|
+
Requires-Python: <3.14,>=3.11
|
|
26
|
+
Description-Content-Type: text/markdown
|
|
27
|
+
License-File: LICENSE
|
|
28
|
+
Requires-Dist: borax==3.5.0
|
|
29
|
+
Requires-Dist: PyDrive==1.3.1
|
|
30
|
+
Requires-Dist: chardet==5.2.0
|
|
31
|
+
Requires-Dist: aiohttp-jinja2==1.6
|
|
32
|
+
Requires-Dist: asyncssh[bcrypt,fido2,libnacl,pkcs11,pyOpenSSL]>=2.18.0
|
|
33
|
+
Requires-Dist: pyxlsb==1.0.10
|
|
34
|
+
Requires-Dist: python-calamine==0.2.3
|
|
35
|
+
Requires-Dist: pyecharts==2.0.8
|
|
36
|
+
Requires-Dist: selenium>=4.35.0
|
|
37
|
+
Requires-Dist: snapshot-selenium==0.0.2
|
|
38
|
+
Requires-Dist: httpx[http2,socks]>=0.26.0
|
|
39
|
+
Requires-Dist: urllib3[socks]>=2.3.0
|
|
40
|
+
Requires-Dist: requests==2.32.4
|
|
41
|
+
Requires-Dist: h2>=4.2.0
|
|
42
|
+
Requires-Dist: blinker>=1.9.0
|
|
43
|
+
Requires-Dist: webdriver-manager==4.0.2
|
|
44
|
+
Requires-Dist: aioimaplib==1.1.0
|
|
45
|
+
Requires-Dist: adal==1.2.7
|
|
46
|
+
Requires-Dist: xlrd>=2.0.2
|
|
47
|
+
Requires-Dist: xmltodict==1.0.2
|
|
48
|
+
Requires-Dist: zeep[async]==4.3.2
|
|
49
|
+
Requires-Dist: nltk>=3.9.3
|
|
50
|
+
Requires-Dist: jdcal==1.4.1
|
|
51
|
+
Requires-Dist: html5lib==1.1
|
|
52
|
+
Requires-Dist: shapely==2.0.6
|
|
53
|
+
Requires-Dist: tzwhere==3.0.3
|
|
54
|
+
Requires-Dist: tabulate==0.9.0
|
|
55
|
+
Requires-Dist: python-magic==0.4.27
|
|
56
|
+
Requires-Dist: pytomlpp==1.0.13
|
|
57
|
+
Requires-Dist: psutil==6.0.0
|
|
58
|
+
Requires-Dist: networkx>=3.4.1
|
|
59
|
+
Requires-Dist: gitpython==3.1.43
|
|
60
|
+
Requires-Dist: watchdog>=6.0.0
|
|
61
|
+
Requires-Dist: hachiko==0.4.0
|
|
62
|
+
Requires-Dist: paramiko>=4.0.0
|
|
63
|
+
Requires-Dist: jira==3.10.5
|
|
64
|
+
Requires-Dist: datatable==1.1.0
|
|
65
|
+
Requires-Dist: imageio==2.37.0
|
|
66
|
+
Requires-Dist: decorator>=5.1.1
|
|
67
|
+
Requires-Dist: emoji==2.14.1
|
|
68
|
+
Requires-Dist: caio==0.9.24
|
|
69
|
+
Requires-Dist: Wand==0.6.13
|
|
70
|
+
Requires-Dist: pylibdmtx==0.1.10
|
|
71
|
+
Requires-Dist: aiofile>=3.9.0
|
|
72
|
+
Requires-Dist: filetype==1.2.0
|
|
73
|
+
Requires-Dist: proxylists>=0.14.0
|
|
74
|
+
Requires-Dist: aioftp==0.23.1
|
|
75
|
+
Requires-Dist: py7zr==0.22.0
|
|
76
|
+
Requires-Dist: rarfile==4.2
|
|
77
|
+
Requires-Dist: python-pptx==1.0.2
|
|
78
|
+
Requires-Dist: gspread==6.2.0
|
|
79
|
+
Requires-Dist: oauth2client>=4.1.3
|
|
80
|
+
Requires-Dist: google-auth>=2.35.0
|
|
81
|
+
Requires-Dist: google-cloud-language>=2.15.0
|
|
82
|
+
Requires-Dist: googlemaps==4.10.0
|
|
83
|
+
Requires-Dist: fastavro==1.9.7
|
|
84
|
+
Requires-Dist: pgpy==0.6.0
|
|
85
|
+
Requires-Dist: dropbox==12.0.2
|
|
86
|
+
Requires-Dist: dask-expr==1.1.13
|
|
87
|
+
Requires-Dist: jsonpath_ng==1.7.0
|
|
88
|
+
Requires-Dist: ortools<=9.14.6206,>=9.11.4210
|
|
89
|
+
Requires-Dist: gmqtt==0.7.0
|
|
90
|
+
Requires-Dist: selectorlib==0.16.0
|
|
91
|
+
Requires-Dist: playwright==1.52.0
|
|
92
|
+
Requires-Dist: fuzzywuzzy==0.18.0
|
|
93
|
+
Requires-Dist: praw==7.8.1
|
|
94
|
+
Requires-Dist: prawcore==2.4.0
|
|
95
|
+
Requires-Dist: osmnx==2.0.1
|
|
96
|
+
Requires-Dist: osmium==4.0.2
|
|
97
|
+
Requires-Dist: python-Levenshtein==0.26.1
|
|
98
|
+
Requires-Dist: undetected_chromedriver==3.5.5
|
|
99
|
+
Requires-Dist: duckduckgo-search==8.1.1
|
|
100
|
+
Requires-Dist: numba>=0.62.1
|
|
101
|
+
Requires-Dist: APScheduler<3.12.0,>=3.11.0
|
|
102
|
+
Requires-Dist: google-cloud-bigquery>=3.30.0
|
|
103
|
+
Requires-Dist: pyheif==0.8.0
|
|
104
|
+
Requires-Dist: filetype==1.2.0
|
|
105
|
+
Requires-Dist: exif==1.6.1
|
|
106
|
+
Requires-Dist: pillow-avif-plugin==1.5.2
|
|
107
|
+
Requires-Dist: pillow-heif==0.22.0
|
|
108
|
+
Requires-Dist: pgvector==0.4.1
|
|
109
|
+
Requires-Dist: proxylists>=0.14.0
|
|
110
|
+
Requires-Dist: async-notify[all]>=1.4.0
|
|
111
|
+
Requires-Dist: querysource>=3.17.0
|
|
112
|
+
Requires-Dist: asyncdb[all]>=2.11.7
|
|
113
|
+
Requires-Dist: navconfig[default,uvloop]>=1.7.13
|
|
114
|
+
Requires-Dist: navigator-auth>=0.15.8
|
|
115
|
+
Requires-Dist: navigator-api[locale,uvloop]>=2.12.22
|
|
116
|
+
Requires-Dist: ai-parrot[llms]>=0.17.4
|
|
117
|
+
Requires-Dist: msal>=1.30.0
|
|
118
|
+
Requires-Dist: azure-core==1.38.0
|
|
119
|
+
Requires-Dist: azure-identity==1.20.0
|
|
120
|
+
Requires-Dist: microsoft-kiota-authentication-azure==1.9.6
|
|
121
|
+
Requires-Dist: msgraph-sdk==1.22.0
|
|
122
|
+
Requires-Dist: zendriver>=0.15.2
|
|
123
|
+
Provides-Extra: ai
|
|
124
|
+
Requires-Dist: ai-parrot[agents,embeddings,images,integrations,llms,scheduler]>=0.20.4; extra == "ai"
|
|
125
|
+
Requires-Dist: ai-parrot-loaders[audio,document,ebook,ml,pdf,scraping,video,web,youtube]>=0.1.0; extra == "ai"
|
|
126
|
+
Requires-Dist: ai-parrot-tools[analysis,arxiv,aws,codeinterpreter,db,docker,excel,finance,flowtask,git,google,jira,messaging,pdf,pulumi,sandbox,scraping,sitesearch,slack,weather,wikipedia]>=0.1.0; extra == "ai"
|
|
127
|
+
Requires-Dist: ai-parrot-pipelines>=0.1.0; extra == "ai"
|
|
128
|
+
Provides-Extra: dev
|
|
129
|
+
Requires-Dist: pytest>=5.4.0; extra == "dev"
|
|
130
|
+
Requires-Dist: coverage; extra == "dev"
|
|
131
|
+
Requires-Dist: pytest-asyncio==0.23.8; extra == "dev"
|
|
132
|
+
Requires-Dist: pytest-xdist==3.3.1; extra == "dev"
|
|
133
|
+
Requires-Dist: pytest-assume==2.4.3; extra == "dev"
|
|
134
|
+
Requires-Dist: ruff; extra == "dev"
|
|
135
|
+
Dynamic: license-file
|
|
136
|
+
|
|
137
|
+
# FlowTask #
|
|
138
|
+
|
|
139
|
+
FlowTask is a plugin-based, component-driven task execution framework for create complex Tasks.
|
|
140
|
+
|
|
141
|
+
FlowTask runs Tasks defined in JSON, YAML or TOML files, any Task is a combination of Components,
|
|
142
|
+
and every component in the Task run sequentially or depend of others, like a DAG.
|
|
143
|
+
|
|
144
|
+
Can create a Task combining Commands, Shell scripts and other specific Components (as TableInput: Open a Table using a datasource, DownloadFromIMAP: Download a File from a IMAP Folder, and so on), any Python Callable can be a Component inside a Task, or can extends UserComponent to build your own componets.
|
|
145
|
+
|
|
146
|
+
Every designed Task can run from CLI, programmatically, via RESTful API (using our aioHTTP-based Handler), called by WebHooks or even dispatched to a external Worker using our built-in Scheduler.
|
|
147
|
+
|
|
148
|
+
## Quickstart ##
|
|
149
|
+
|
|
150
|
+
```console
|
|
151
|
+
pip install flowtask
|
|
152
|
+
```
|
|
153
|
+
|
|
154
|
+
Tasks can organizated into directory structure like this:
|
|
155
|
+
|
|
156
|
+
tasks /
|
|
157
|
+
├── programs /
|
|
158
|
+
├── test /
|
|
159
|
+
├── tasks /
|
|
160
|
+
|
|
161
|
+
The main reason of this structure, is maintain organized several tasks by tenant/program, avoiding filling a directory with several task files.
|
|
162
|
+
|
|
163
|
+
FlowTask support "TaskStorage", a Task Storage is the main repository for tasks, main Task Storage is a directory in any filesystem path (optionally you can syncronize that path using git), but Tasks can be saved onto a Database or a S3 bucket.
|
|
164
|
+
|
|
165
|
+
## Dependencies ##
|
|
166
|
+
|
|
167
|
+
* aiohttp (Asyncio Web Framework and Server) (required by navigator)
|
|
168
|
+
* AsyncDB
|
|
169
|
+
* QuerySource
|
|
170
|
+
* Navigator-api
|
|
171
|
+
* (Optional) Qworker (for distributing asyncio Tasks on distributed workers).
|
|
172
|
+
|
|
173
|
+
## Features ##
|
|
174
|
+
|
|
175
|
+
* Component-based Task execution framework with several components covering several actions (download files, create pandas dataframes from files, mapping dataframe columns to a json-dictionary, etc)
|
|
176
|
+
* Built-in API for execution of Tasks.
|
|
177
|
+
|
|
178
|
+
### How I run a Task? ###
|
|
179
|
+
|
|
180
|
+
Can run a Task from CLI:
|
|
181
|
+
```console
|
|
182
|
+
task --program=test --task=example
|
|
183
|
+
```
|
|
184
|
+
|
|
185
|
+
on CLI, you can pass an ENV (enviroment) to change the environment file on task execution.
|
|
186
|
+
```console
|
|
187
|
+
ENV=dev task --program=test --task=example
|
|
188
|
+
```
|
|
189
|
+
|
|
190
|
+
or Programmatically:
|
|
191
|
+
```python
|
|
192
|
+
from flowtask import Task
|
|
193
|
+
import asyncio
|
|
194
|
+
|
|
195
|
+
task = Task(program='test', task='example')
|
|
196
|
+
results = asyncio.run(task.run())
|
|
197
|
+
# we can alternatively, using the execution mode of task object:
|
|
198
|
+
results = asyncio.run(task())
|
|
199
|
+
```
|
|
200
|
+
|
|
201
|
+
### Requirements ###
|
|
202
|
+
|
|
203
|
+
* Python >= 3.9
|
|
204
|
+
* asyncio (https://pypi.python.org/pypi/asyncio/)
|
|
205
|
+
* aiohttp >= 3.6.2
|
|
206
|
+
|
|
207
|
+
### Contribution guidelines ###
|
|
208
|
+
|
|
209
|
+
Please have a look at the Contribution Guide
|
|
210
|
+
|
|
211
|
+
* Writing tests
|
|
212
|
+
* Code review
|
|
213
|
+
* Other guidelines
|
|
214
|
+
|
|
215
|
+
### Who do I talk to? ###
|
|
216
|
+
|
|
217
|
+
* Repo owner or admin
|
|
218
|
+
* Other community or team contact
|
|
219
|
+
|
|
220
|
+
### License ###
|
|
221
|
+
|
|
222
|
+
Navigator is licensed under Apache 2.0 License. See the LICENSE file for more details.
|