flowtask 5.11.8__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/.claude/commands/pr-review.md +480 -0
- flowtask-5.11.10/.claude/commands/sdd-brainstorm.md +176 -0
- flowtask-5.11.10/.claude/commands/sdd-done.md +355 -0
- flowtask-5.11.10/.claude/commands/sdd-fromjira.md +341 -0
- flowtask-5.11.10/.claude/commands/sdd-proposal.md +123 -0
- flowtask-5.11.10/.claude/commands/sdd-spec.md +125 -0
- flowtask-5.11.10/.claude/commands/sdd-start.md +221 -0
- flowtask-5.11.10/.claude/commands/sdd-task.md +153 -0
- flowtask-5.11.10/.claude/commands/sdd-tojira.md +429 -0
- 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/artifacts/scraping_plans/www.att.com/www-att-com_v1.0_340f66d4e659fdef.json +168 -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/bots/check.py +117 -0
- flowtask-5.11.10/flowtask/components/CallAnalysis.py +1006 -0
- flowtask-5.11.10/flowtask/components/DateList.py +274 -0
- flowtask-5.11.10/flowtask/components/ExtractTranscript.py +1140 -0
- flowtask-5.11.10/flowtask/components/MergeFileList.py +194 -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/Sharepoint.py +1461 -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/flowtask-scheduler-discard.brainstorm.md +424 -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.8/.claude/commands/sdd-brainstorm.md +0 -166
- flowtask-5.11.8/.claude/commands/sdd-done.md +0 -234
- flowtask-5.11.8/.claude/commands/sdd-proposal.md +0 -117
- flowtask-5.11.8/.claude/commands/sdd-spec.md +0 -110
- flowtask-5.11.8/.claude/commands/sdd-start.md +0 -201
- flowtask-5.11.8/.claude/commands/sdd-task.md +0 -138
- flowtask-5.11.8/.gitignore +0 -207
- flowtask-5.11.8/Makefile +0 -191
- flowtask-5.11.8/PKG-INFO +0 -221
- flowtask-5.11.8/app.py +0 -175
- flowtask-5.11.8/conftest.py +0 -35
- flowtask-5.11.8/flowtask/__main__.py +0 -112
- flowtask-5.11.8/flowtask/_version.py +0 -24
- flowtask-5.11.8/flowtask/bots/check.py +0 -106
- flowtask-5.11.8/flowtask/components/CallAnalysis.py +0 -982
- flowtask-5.11.8/flowtask/components/DateList.py +0 -260
- flowtask-5.11.8/flowtask/components/ExtractTranscript.py +0 -1136
- flowtask-5.11.8/flowtask/components/ParrotLoader/loader.py +0 -255
- flowtask-5.11.8/flowtask/components/PgVectorOutput.py +0 -284
- flowtask-5.11.8/flowtask/components/SubTask.py +0 -186
- flowtask-5.11.8/flowtask/components/TransformRows/functions.py +0 -1817
- flowtask-5.11.8/flowtask/components/Workday/models/__init__.py +0 -30
- flowtask-5.11.8/flowtask/components/Workday/parsers/__init__.py +0 -131
- flowtask-5.11.8/flowtask/components/Workday/types/__init__.py +0 -37
- flowtask-5.11.8/flowtask/components/Workday/types/candidates.py +0 -364
- flowtask-5.11.8/flowtask/components/Workday/workday.py +0 -949
- flowtask-5.11.8/flowtask/components/ZoomUs.py +0 -1666
- flowtask-5.11.8/flowtask/components/tGroup.py +0 -252
- flowtask-5.11.8/flowtask/conf.py +0 -533
- flowtask-5.11.8/flowtask/documentation/generator.py +0 -381
- flowtask-5.11.8/flowtask/documentation/models.py +0 -86
- flowtask-5.11.8/flowtask/handlers/component.py +0 -188
- flowtask-5.11.8/flowtask/hooks/models.py +0 -17
- flowtask-5.11.8/flowtask/hooks/service.py +0 -187
- flowtask-5.11.8/flowtask/hooks/step.py +0 -91
- flowtask-5.11.8/flowtask/hooks/types/base.py +0 -129
- flowtask-5.11.8/flowtask/hooks/types/brokers/base.py +0 -54
- flowtask-5.11.8/flowtask/hooks/types/brokers/sqs.py +0 -44
- flowtask-5.11.8/flowtask/hooks/types/jira.py +0 -279
- flowtask-5.11.8/flowtask/hooks/types/mail.py +0 -205
- flowtask-5.11.8/flowtask/hooks/types/watch.py +0 -71
- flowtask-5.11.8/flowtask/interfaces/Sharepoint.py +0 -1460
- flowtask-5.11.8/flowtask/interfaces/mask.py +0 -169
- flowtask-5.11.8/flowtask/interfaces/selenium_service.py +0 -1027
- flowtask-5.11.8/flowtask/parsers/argparser.py +0 -265
- flowtask-5.11.8/flowtask/tasks/abstract.py +0 -526
- flowtask-5.11.8/flowtask/version.py +0 -12
- flowtask-5.11.8/flowtask.egg-info/PKG-INFO +0 -221
- flowtask-5.11.8/flowtask.egg-info/SOURCES.txt +0 -1546
- flowtask-5.11.8/flowtask.egg-info/requires.txt +0 -108
- flowtask-5.11.8/pyproject.toml +0 -210
- flowtask-5.11.8/pytest.ini +0 -5
- flowtask-5.11.8/sdd/tasks/.index.json +0 -610
- flowtask-5.11.8/tests/integration/test_component_api.py +0 -218
- flowtask-5.11.8/tests/unit/handlers/test_component.py +0 -390
- {flowtask-5.11.8 → flowtask-5.11.10}/.agent/CONTEXT.md +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/.agent/rules/README.md +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/.agent/rules/async-programming-expert.md +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/.agent/rules/code-generation-guide.md +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/.agent/rules/code-reviewer.md +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/.agent/rules/code-style-guide.md +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/.agent/rules/cython-development.md +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/.agent/rules/patching-files.md +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/.agent/rules/prompt-expert.md +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/.agent/rules/python-development.md +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/.agent/rules/python-documentation.md +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/.agent/rules/refactor-planner-expert.md +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/.agent/rules/rust-development.md +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/.agent/rules.md +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/.agent/skills/aws-cost-optimization/SKILL.md +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/.agent/skills/aws-cost-optimization/references/implementation-playbook.md +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/.agent/skills/aws-serverless/SKILL.md +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/.agent/skills/code-review/SKILL.md +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/.agent/skills/cython-extensions/SKILL.md +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/.agent/skills/cython-extensions/references/numpy2_migration.md +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/.agent/skills/data-storytelling/SKILL.md +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/.agent/skills/database-schema-validator/SKILL.md +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/.agent/skills/database-schema-validator/scripts/validate_schema.py +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/.agent/skills/docstring/SKILL.md +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/.agent/skills/flowtask-component-builder/SKILL.md +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/.agent/skills/git-commit-formatter/SKILL.md +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/.agent/skills/json-to-pydantic/SKILL.md +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/.agent/skills/license-header-adder/SKILL.md +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/.agent/skills/license-header-adder/resources/HEADER.txt +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/.agent/skills/msdoc-manipulation/SKILL.md +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/.agent/skills/parrot-scaffold-tool/SKILL.md +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/.agent/skills/parrot-scaffold-tool/resources/ToolTemplate.py.hbs +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/.agent/skills/parrot-scaffold-tool/scripts/scaffold_tool.py +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/.agent/skills/production-dockerfile/SKILL.md +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/.agent/skills/python-standards/SKILL.md +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/.agent/skills/reverse-engineering-api/CHANGELOG.md +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/.agent/skills/reverse-engineering-api/LICENSE +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/.agent/skills/reverse-engineering-api/SKILL.md +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/.agent/skills/reverse-engineering-api/references/AUTH_PATTERNS.md +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/.agent/skills/reverse-engineering-api/references/HAR_ANALYSIS.md +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/.agent/skills/reverse-engineering-api/scripts/har_analyze.py +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/.agent/skills/reverse-engineering-api/scripts/har_filter.py +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/.agent/skills/reverse-engineering-api/scripts/har_utils.py +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/.agent/skills/reverse-engineering-api/scripts/har_validate.py +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/.agent/skills/reverse-engineering-api/templates/api_client.py +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/.agent/skills/rust-pyo3-function/SKILL.md +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/.agent/skills/skill-creator/README.md +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/.agent/skills/skill-creator/SKILL.md +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/.agent/skills/skill-creator/references/output-patterns.md +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/.agent/skills/skill-creator/references/workflows.md +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/.agent/skills/skill-creator/scripts/init_skill.py +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/.agent/skills/skill-creator/scripts/package_skill.py +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/.agent/skills/skill-creator/scripts/quick_validate.py +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/.agent/skills/svelte5-structural/SKILL.md +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/.agent/skills/svelte5-structural/references/patterns.md +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/.agent/skills/svelte5-structural/references/state-matchines.md +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/.agent/skills/svelte5-structural/references/widgets.md +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/.agent/skills/using-git-worktrees/SKILL.md +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/.agent/skills/worktree-pr-and-clean/SKILL.md +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/.agent/skills/worktree-start-feature/SKILL.md +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/.agent/skills/worktree-status/SKILL.md +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/.agent/system_prompt.md +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/.agent/workflows/create-parrot-tool.md +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/.agent/workflows/create-workflow.md +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/.agent/workflows/debug-regressions-with-git-bisect-binary-search.md +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/.agent/workflows/generate-tests.md +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/.agent/workflows/generate-unit-tests.md +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/.agent/workflows/git-new-feature.md +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/.agent/workflows/parrot-mcp-server.md +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/.agent/workflows/release_package.md +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/.agent/workflows/run-python-command.md +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/.agent/workflows/sdd-brainstorm.md +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/.agent/workflows/sdd-codereview.md +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/.agent/workflows/sdd-fromjira.md +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/.agent/workflows/sdd-next.md +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/.agent/workflows/sdd-proposal.md +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/.agent/workflows/sdd-spec.md +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/.agent/workflows/sdd-start.md +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/.agent/workflows/sdd-status.md +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/.agent/workflows/sdd-task.md +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/.agent/workflows/sdd-tojira.md +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/.agent/workflows/start-flow.md +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/.bumpversion.cfg +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/.claude/agents/code-reviewer.md +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/.claude/agents/sdd-worker.md +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/.claude/commands/sdd-codereview.md +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/.claude/commands/sdd-next.md +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/.claude/commands/sdd-status.md +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/.claude/rules/aws-cost-optimization.md +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/.claude/rules/code-reviewer.md +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/.claude/rules/cython-development.md +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/.claude/rules/python-development.md +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/.claude/rules/rust-development.md +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/.claude/rules/using-git-worktrees.md +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/.claude/rules/worktree-pr-and-clean.md +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/.claude/rules/worktree-start-feature.md +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/.claude/rules/worktree-status.md +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/.flake8 +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/.github/dependabot.yml +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/.github/workflows/codeql-analysis.yml +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/.github/workflows/docs.yml +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/.github/workflows/release.yml +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/.isort.cfg +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/.pylintrc +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/.style.yapf +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/AGENTS.md +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/CLAUDE.md +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/CODE_OF_CONDUCT.md +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/CONTRIBUTING.md +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/INSTALL +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/LICENSE +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/MANIFEST.in +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/README.md +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/agents/__init__.py +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/agents/agents.yaml +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/agents/nextstop/epson/queries/employee_sales.sql +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/agents/nextstop/epson/queries/employee_visits.sql +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/agents/nextstop/epson/queries/foot_traffic.sql +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/agents/nextstop/epson/queries/manager_sales.sql +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/agents/nextstop/epson/queries/store_info.sql +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/agents/nextstop/epson/queries/store_visits.sql +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/agents/nextstop/epson/queries/visits_by_manager.sql +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/agents/nextstop/hisense/queries/employee_sales.sql +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/agents/nextstop/hisense/queries/employee_visits.sql +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/agents/nextstop/hisense/queries/foot_traffic.sql +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/agents/nextstop/hisense/queries/manager_sales.sql +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/agents/nextstop/hisense/queries/store_info.sql +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/agents/nextstop/hisense/queries/store_visits.sql +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/agents/nextstop/hisense/queries/visits_by_manager.sql +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/agents/nextstop/prompts/employee_comparison.txt +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/agents/nextstop/prompts/for_employee.txt +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/agents/nextstop/prompts/for_podcast.txt +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/agents/nextstop/prompts/for_store.txt +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/agents/nextstop/prompts/team_performance.txt +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/artifacts/audit/REPORT.md +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/artifacts/audit/audit_agents_mcp.md +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/artifacts/audit/audit_docs_templates.md +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/artifacts/audit/audit_flowtask_core.md +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/artifacts/audit/audit_plugins.md +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/artifacts/audit/audit_scripts_tasks.md +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/artifacts/audit/audit_tests_examples.md +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/bin/start_milvus.sh +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/bin/test_download.sh +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/documentation/docs/components/index.md +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/documentation/docs/examples.md +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/documentation/docs/gen_ref_pages.py +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/documentation/docs/getting-started/configuration.md +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/documentation/docs/getting-started/installation.md +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/documentation/docs/getting-started/quickstart.md +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/documentation/docs/index.md +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/documentation/docs/interfaces/index.md +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/documentation/mkdocs.yml +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/documentation/site/404.html +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/documentation/site/assets/_mkdocstrings.css +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/documentation/site/assets/images/favicon.png +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/documentation/site/assets/javascripts/bundle.92b07e13.min.js +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/documentation/site/assets/javascripts/bundle.92b07e13.min.js.map +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/documentation/site/assets/javascripts/lunr/min/lunr.ar.min.js +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/documentation/site/assets/javascripts/lunr/min/lunr.da.min.js +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/documentation/site/assets/javascripts/lunr/min/lunr.de.min.js +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/documentation/site/assets/javascripts/lunr/min/lunr.du.min.js +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/documentation/site/assets/javascripts/lunr/min/lunr.el.min.js +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/documentation/site/assets/javascripts/lunr/min/lunr.es.min.js +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/documentation/site/assets/javascripts/lunr/min/lunr.fi.min.js +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/documentation/site/assets/javascripts/lunr/min/lunr.fr.min.js +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/documentation/site/assets/javascripts/lunr/min/lunr.he.min.js +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/documentation/site/assets/javascripts/lunr/min/lunr.hi.min.js +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/documentation/site/assets/javascripts/lunr/min/lunr.hu.min.js +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/documentation/site/assets/javascripts/lunr/min/lunr.hy.min.js +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/documentation/site/assets/javascripts/lunr/min/lunr.it.min.js +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/documentation/site/assets/javascripts/lunr/min/lunr.ja.min.js +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/documentation/site/assets/javascripts/lunr/min/lunr.jp.min.js +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/documentation/site/assets/javascripts/lunr/min/lunr.kn.min.js +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/documentation/site/assets/javascripts/lunr/min/lunr.ko.min.js +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/documentation/site/assets/javascripts/lunr/min/lunr.multi.min.js +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/documentation/site/assets/javascripts/lunr/min/lunr.nl.min.js +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/documentation/site/assets/javascripts/lunr/min/lunr.no.min.js +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/documentation/site/assets/javascripts/lunr/min/lunr.pt.min.js +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/documentation/site/assets/javascripts/lunr/min/lunr.ro.min.js +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/documentation/site/assets/javascripts/lunr/min/lunr.ru.min.js +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/documentation/site/assets/javascripts/lunr/min/lunr.sa.min.js +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/documentation/site/assets/javascripts/lunr/min/lunr.stemmer.support.min.js +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/documentation/site/assets/javascripts/lunr/min/lunr.sv.min.js +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/documentation/site/assets/javascripts/lunr/min/lunr.ta.min.js +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/documentation/site/assets/javascripts/lunr/min/lunr.te.min.js +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/documentation/site/assets/javascripts/lunr/min/lunr.th.min.js +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/documentation/site/assets/javascripts/lunr/min/lunr.tr.min.js +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/documentation/site/assets/javascripts/lunr/min/lunr.vi.min.js +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/documentation/site/assets/javascripts/lunr/min/lunr.zh.min.js +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/documentation/site/assets/javascripts/lunr/tinyseg.js +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/documentation/site/assets/javascripts/lunr/wordcut.js +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/documentation/site/assets/javascripts/workers/search.973d3a69.min.js +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/documentation/site/assets/javascripts/workers/search.973d3a69.min.js.map +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/documentation/site/assets/stylesheets/main.7e37652d.min.css +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/documentation/site/assets/stylesheets/main.7e37652d.min.css.map +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/documentation/site/assets/stylesheets/palette.06af60db.min.css +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/documentation/site/assets/stylesheets/palette.06af60db.min.css.map +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/documentation/site/components/index.html +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/documentation/site/examples/index.html +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/documentation/site/gen_ref_pages.py +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/documentation/site/getting-started/configuration/index.html +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/documentation/site/getting-started/installation/index.html +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/documentation/site/getting-started/quickstart/index.html +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/documentation/site/index.html +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/documentation/site/interfaces/index.html +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/documentation/site/objects.inv +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/documentation/site/reference/SUMMARY/index.html +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/documentation/site/reference/flowtask/__main__/index.html +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/documentation/site/reference/flowtask/_version/index.html +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/documentation/site/reference/flowtask/bots/check/index.html +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/documentation/site/reference/flowtask/bots/codebot/index.html +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/documentation/site/reference/flowtask/bots/index.html +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/documentation/site/reference/flowtask/components/ASPX/index.html +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/documentation/site/reference/flowtask/components/AddDataset/index.html +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/documentation/site/reference/flowtask/components/Amazon/index.html +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/documentation/site/reference/flowtask/components/AutoTask/index.html +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/documentation/site/reference/flowtask/components/Azure/index.html +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/documentation/site/reference/flowtask/components/AzureUsers/index.html +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/documentation/site/reference/flowtask/components/BaseAction/index.html +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/documentation/site/reference/flowtask/components/BaseLoop/index.html +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/documentation/site/reference/flowtask/components/BestBuy/index.html +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/documentation/site/reference/flowtask/components/CSVToGCS/index.html +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/documentation/site/reference/flowtask/components/CompanyScraper/index.html +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/documentation/site/reference/flowtask/components/CompanyScraper/parsers/base/index.html +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/documentation/site/reference/flowtask/components/CompanyScraper/parsers/explorium/index.html +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/documentation/site/reference/flowtask/components/CompanyScraper/parsers/index.html +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/documentation/site/reference/flowtask/components/CompanyScraper/parsers/leadiq/index.html +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/documentation/site/reference/flowtask/components/CompanyScraper/parsers/rocket/index.html +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/documentation/site/reference/flowtask/components/CompanyScraper/parsers/siccode/index.html +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/documentation/site/reference/flowtask/components/CompanyScraper/parsers/visualvisitor/index.html +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/documentation/site/reference/flowtask/components/CompanyScraper/parsers/zoominfo/index.html +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/documentation/site/reference/flowtask/components/CompanyScraper/scrapper/index.html +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/documentation/site/reference/flowtask/components/CopyTo/index.html +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/documentation/site/reference/flowtask/components/CopyToBigQuery/index.html +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/documentation/site/reference/flowtask/components/CopyToMongoDB/index.html +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/documentation/site/reference/flowtask/components/CopyToPg/index.html +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/documentation/site/reference/flowtask/components/CopyToRethink/index.html +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/documentation/site/reference/flowtask/components/Costco/index.html +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/documentation/site/reference/flowtask/components/CreateGCSBucket/index.html +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/documentation/site/reference/flowtask/components/CreateReport/CreateReport/index.html +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/documentation/site/reference/flowtask/components/CreateReport/charts/bar/index.html +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/documentation/site/reference/flowtask/components/CreateReport/charts/base/index.html +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/documentation/site/reference/flowtask/components/CreateReport/charts/index.html +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/documentation/site/reference/flowtask/components/CreateReport/charts/pie/index.html +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/documentation/site/reference/flowtask/components/CreateReport/index.html +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/documentation/site/reference/flowtask/components/CreateReport/utils/index.html +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/documentation/site/reference/flowtask/components/CustomerSatisfaction/index.html +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/documentation/site/reference/flowtask/components/DataInput/index.html +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/documentation/site/reference/flowtask/components/DateList/index.html +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/documentation/site/reference/flowtask/components/DbClient/index.html +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/documentation/site/reference/flowtask/components/DialPad/index.html +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/documentation/site/reference/flowtask/components/DocumentDBQuery/index.html +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/documentation/site/reference/flowtask/components/DownloadFrom/index.html +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/documentation/site/reference/flowtask/components/DownloadFromD2L/index.html +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/documentation/site/reference/flowtask/components/DownloadFromFTP/index.html +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/documentation/site/reference/flowtask/components/DownloadFromIMAP/index.html +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/documentation/site/reference/flowtask/components/DownloadFromS3/index.html +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/documentation/site/reference/flowtask/components/DownloadFromSFTP/index.html +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/documentation/site/reference/flowtask/components/DownloadFromSharepoint/index.html +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/documentation/site/reference/flowtask/components/DownloadFromSmartSheet/index.html +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/documentation/site/reference/flowtask/components/DownloadS3File/index.html +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/documentation/site/reference/flowtask/components/Dummy/index.html +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/documentation/site/reference/flowtask/components/DuplicatePhoto/index.html +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/documentation/site/reference/flowtask/components/EmployeeEvaluation/index.html +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/documentation/site/reference/flowtask/components/ExecuteSQL/index.html +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/documentation/site/reference/flowtask/components/ExtractHTML/index.html +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/documentation/site/reference/flowtask/components/FileBase/index.html +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/documentation/site/reference/flowtask/components/FileCopy/index.html +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/documentation/site/reference/flowtask/components/FileDelete/index.html +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/documentation/site/reference/flowtask/components/FileExists/index.html +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/documentation/site/reference/flowtask/components/FileIteratorDelete/index.html +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/documentation/site/reference/flowtask/components/FileList/index.html +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/documentation/site/reference/flowtask/components/FileOpen/index.html +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/documentation/site/reference/flowtask/components/FileRead/index.html +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/documentation/site/reference/flowtask/components/FileRename/index.html +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/documentation/site/reference/flowtask/components/FilterIf/index.html +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/documentation/site/reference/flowtask/components/FilterRows/FilterRows/index.html +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/documentation/site/reference/flowtask/components/FilterRows/functions/index.html +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/documentation/site/reference/flowtask/components/FilterRows/index.html +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/documentation/site/reference/flowtask/components/GCSToBigQuery/index.html +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/documentation/site/reference/flowtask/components/GoogleA4/index.html +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/documentation/site/reference/flowtask/components/GoogleGeoCoding/index.html +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/documentation/site/reference/flowtask/components/GooglePlaces/index.html +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/documentation/site/reference/flowtask/components/GoogleSearch/index.html +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/documentation/site/reference/flowtask/components/HTTPClient/index.html +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/documentation/site/reference/flowtask/components/ICIMS/index.html +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/documentation/site/reference/flowtask/components/IF/index.html +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/documentation/site/reference/flowtask/components/IcimsFolderCopy/index.html +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/documentation/site/reference/flowtask/components/ImageFeatures/index.html +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/documentation/site/reference/flowtask/components/ImageFeatures/process/index.html +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/documentation/site/reference/flowtask/components/IteratorBase/index.html +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/documentation/site/reference/flowtask/components/LangchainLoader/index.html +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/documentation/site/reference/flowtask/components/LangchainLoader/loader/index.html +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/documentation/site/reference/flowtask/components/LangchainLoader/loaders/abstract/index.html +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/documentation/site/reference/flowtask/components/LangchainLoader/loaders/basepdf/index.html +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/documentation/site/reference/flowtask/components/LangchainLoader/loaders/docx/index.html +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/documentation/site/reference/flowtask/components/LangchainLoader/loaders/html/index.html +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/documentation/site/reference/flowtask/components/LangchainLoader/loaders/index.html +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/documentation/site/reference/flowtask/components/LangchainLoader/loaders/pdfblocks/index.html +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/documentation/site/reference/flowtask/components/LangchainLoader/loaders/pdfmark/index.html +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/documentation/site/reference/flowtask/components/LangchainLoader/loaders/pdftables/index.html +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/documentation/site/reference/flowtask/components/LangchainLoader/loaders/qa/index.html +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/documentation/site/reference/flowtask/components/LangchainLoader/loaders/txt/index.html +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/documentation/site/reference/flowtask/components/LeadIQ/index.html +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/documentation/site/reference/flowtask/components/Loop/index.html +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/documentation/site/reference/flowtask/components/Lowes/index.html +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/documentation/site/reference/flowtask/components/MS365Usage/index.html +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/documentation/site/reference/flowtask/components/MSTeamsMessages/index.html +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/documentation/site/reference/flowtask/components/MarketClustering/index.html +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/documentation/site/reference/flowtask/components/MergeFiles/index.html +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/documentation/site/reference/flowtask/components/MilvusOutput/index.html +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/documentation/site/reference/flowtask/components/NearByStores/index.html +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/documentation/site/reference/flowtask/components/NetworkNinja/index.html +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/documentation/site/reference/flowtask/components/NetworkNinja/models/abstract/index.html +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/documentation/site/reference/flowtask/components/NetworkNinja/models/account/index.html +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/documentation/site/reference/flowtask/components/NetworkNinja/models/client/index.html +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/documentation/site/reference/flowtask/components/NetworkNinja/models/events/index.html +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/documentation/site/reference/flowtask/components/NetworkNinja/models/forms/index.html +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/documentation/site/reference/flowtask/components/NetworkNinja/models/index.html +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/documentation/site/reference/flowtask/components/NetworkNinja/models/market/index.html +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/documentation/site/reference/flowtask/components/NetworkNinja/models/organization/index.html +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/documentation/site/reference/flowtask/components/NetworkNinja/models/photos/index.html +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/documentation/site/reference/flowtask/components/NetworkNinja/models/project/index.html +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/documentation/site/reference/flowtask/components/NetworkNinja/models/region/index.html +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/documentation/site/reference/flowtask/components/NetworkNinja/models/store/index.html +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/documentation/site/reference/flowtask/components/NetworkNinja/models/user/index.html +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/documentation/site/reference/flowtask/components/NetworkNinja/router/index.html +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/documentation/site/reference/flowtask/components/NextStopAgent/index.html +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/documentation/site/reference/flowtask/components/Odoo/index.html +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/documentation/site/reference/flowtask/components/OdooInjector/index.html +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/documentation/site/reference/flowtask/components/OpenFromXML/index.html +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/documentation/site/reference/flowtask/components/OpenWeather/index.html +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/documentation/site/reference/flowtask/components/OpenWithBase/index.html +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/documentation/site/reference/flowtask/components/OpenWithPandas/index.html +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/documentation/site/reference/flowtask/components/PDFGenerator/index.html +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/documentation/site/reference/flowtask/components/PGPDecrypt/index.html +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/documentation/site/reference/flowtask/components/PandasIterator/index.html +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/documentation/site/reference/flowtask/components/PandasToFile/index.html +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/documentation/site/reference/flowtask/components/Paradox/index.html +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/documentation/site/reference/flowtask/components/ParamIterator/index.html +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/documentation/site/reference/flowtask/components/ParseHTML/index.html +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/documentation/site/reference/flowtask/components/PgVectorOutput/index.html +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/documentation/site/reference/flowtask/components/PlacerStores/index.html +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/documentation/site/reference/flowtask/components/Pokemon/index.html +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/documentation/site/reference/flowtask/components/PositiveBot/index.html +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/documentation/site/reference/flowtask/components/PowerPointSlide/index.html +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/documentation/site/reference/flowtask/components/PrintMessage/index.html +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/documentation/site/reference/flowtask/components/ProductCompetitors/index.html +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/documentation/site/reference/flowtask/components/ProductCompetitors/parsers/base/index.html +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/documentation/site/reference/flowtask/components/ProductCompetitors/parsers/bestbuy/index.html +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/documentation/site/reference/flowtask/components/ProductCompetitors/parsers/index.html +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/documentation/site/reference/flowtask/components/ProductCompetitors/parsers/lowes/index.html +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/documentation/site/reference/flowtask/components/ProductCompetitors/scrapper/index.html +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/documentation/site/reference/flowtask/components/ProductCompliant/index.html +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/documentation/site/reference/flowtask/components/ProductInfo/index.html +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/documentation/site/reference/flowtask/components/ProductInfo/parsers/base/index.html +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/documentation/site/reference/flowtask/components/ProductInfo/parsers/brother/index.html +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/documentation/site/reference/flowtask/components/ProductInfo/parsers/canon/index.html +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/documentation/site/reference/flowtask/components/ProductInfo/parsers/epson/index.html +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/documentation/site/reference/flowtask/components/ProductInfo/parsers/hp/index.html +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/documentation/site/reference/flowtask/components/ProductInfo/parsers/index.html +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/documentation/site/reference/flowtask/components/ProductInfo/parsers/samsung/index.html +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/documentation/site/reference/flowtask/components/ProductInfo/scraper/index.html +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/documentation/site/reference/flowtask/components/ProductPricing/index.html +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/documentation/site/reference/flowtask/components/QS/index.html +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/documentation/site/reference/flowtask/components/QSBase/index.html +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/documentation/site/reference/flowtask/components/QueryIterator/index.html +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/documentation/site/reference/flowtask/components/QueryToInsert/index.html +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/documentation/site/reference/flowtask/components/QueryToPandas/index.html +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/documentation/site/reference/flowtask/components/RESTClient/index.html +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/documentation/site/reference/flowtask/components/RethinkDBQuery/index.html +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/documentation/site/reference/flowtask/components/Rsync/index.html +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/documentation/site/reference/flowtask/components/RunSSH/index.html +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/documentation/site/reference/flowtask/components/RunShell/index.html +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/documentation/site/reference/flowtask/components/SalesForce/index.html +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/documentation/site/reference/flowtask/components/Sassie/index.html +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/documentation/site/reference/flowtask/components/SaveImageBank/index.html +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/documentation/site/reference/flowtask/components/SchedulingVisits/index.html +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/documentation/site/reference/flowtask/components/ScrapPage/index.html +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/documentation/site/reference/flowtask/components/ScrapSearch/index.html +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/documentation/site/reference/flowtask/components/SendEmail/index.html +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/documentation/site/reference/flowtask/components/SendNotify/index.html +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/documentation/site/reference/flowtask/components/SentimentAnalysis/index.html +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/documentation/site/reference/flowtask/components/ServiceScrapper/index.html +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/documentation/site/reference/flowtask/components/ServiceScrapper/parsers/base/index.html +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/documentation/site/reference/flowtask/components/ServiceScrapper/parsers/costco/index.html +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/documentation/site/reference/flowtask/components/ServiceScrapper/parsers/index.html +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/documentation/site/reference/flowtask/components/ServiceScrapper/scrapper/index.html +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/documentation/site/reference/flowtask/components/SetVariables/index.html +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/documentation/site/reference/flowtask/components/SubTask/index.html +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/documentation/site/reference/flowtask/components/SuiteCRM/index.html +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/documentation/site/reference/flowtask/components/Switch/index.html +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/documentation/site/reference/flowtask/components/TableBase/index.html +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/documentation/site/reference/flowtask/components/TableDelete/index.html +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/documentation/site/reference/flowtask/components/TableInput/index.html +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/documentation/site/reference/flowtask/components/TableOutput/TableOutput/index.html +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/documentation/site/reference/flowtask/components/TableOutput/index.html +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/documentation/site/reference/flowtask/components/TableSchema/index.html +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/documentation/site/reference/flowtask/components/Target/index.html +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/documentation/site/reference/flowtask/components/ThumbnailGenerator/index.html +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/documentation/site/reference/flowtask/components/ToPandas/index.html +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/documentation/site/reference/flowtask/components/TransformRows/TransformRows/index.html +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/documentation/site/reference/flowtask/components/TransformRows/functions/index.html +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/documentation/site/reference/flowtask/components/TransformRows/index.html +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/documentation/site/reference/flowtask/components/TransposeRows/index.html +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/documentation/site/reference/flowtask/components/UPCDatabase/index.html +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/documentation/site/reference/flowtask/components/UnGzip/index.html +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/documentation/site/reference/flowtask/components/Uncompress/index.html +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/documentation/site/reference/flowtask/components/UniqueRows/index.html +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/documentation/site/reference/flowtask/components/Unzip/index.html +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/documentation/site/reference/flowtask/components/UpdateOperationalVars/index.html +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/documentation/site/reference/flowtask/components/UploadTo/index.html +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/documentation/site/reference/flowtask/components/UploadToS3/index.html +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/documentation/site/reference/flowtask/components/UploadToSFTP/index.html +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/documentation/site/reference/flowtask/components/UploadToSharepoint/index.html +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/documentation/site/reference/flowtask/components/UserFunc/index.html +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/documentation/site/reference/flowtask/components/VivaTracker/index.html +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/documentation/site/reference/flowtask/components/WSDLClient/index.html +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/documentation/site/reference/flowtask/components/Wait/index.html +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/documentation/site/reference/flowtask/components/Walmart/index.html +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/documentation/site/reference/flowtask/components/Workday/index.html +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/documentation/site/reference/flowtask/components/Workday/models/index.html +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/documentation/site/reference/flowtask/components/Workday/models/location/index.html +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/documentation/site/reference/flowtask/components/Workday/models/location_hierarchy_assignments/index.html +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/documentation/site/reference/flowtask/components/Workday/models/organizations/index.html +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/documentation/site/reference/flowtask/components/Workday/models/time_block/index.html +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/documentation/site/reference/flowtask/components/Workday/models/time_request/index.html +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/documentation/site/reference/flowtask/components/Workday/models/worker/index.html +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/documentation/site/reference/flowtask/components/Workday/parsers/index.html +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/documentation/site/reference/flowtask/components/Workday/parsers/location_hierarchy_assignments_parsers/index.html +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/documentation/site/reference/flowtask/components/Workday/parsers/location_parsers/index.html +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/documentation/site/reference/flowtask/components/Workday/parsers/organization_parsers/index.html +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/documentation/site/reference/flowtask/components/Workday/parsers/time_block_parsers/index.html +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/documentation/site/reference/flowtask/components/Workday/parsers/time_request_parsers/index.html +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/documentation/site/reference/flowtask/components/Workday/parsers/worker_parsers/index.html +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/documentation/site/reference/flowtask/components/Workday/types/base/index.html +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/documentation/site/reference/flowtask/components/Workday/types/index.html +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/documentation/site/reference/flowtask/components/Workday/types/location_hierarchy_assignments/index.html +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/documentation/site/reference/flowtask/components/Workday/types/locations/index.html +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/documentation/site/reference/flowtask/components/Workday/types/organization_single/index.html +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/documentation/site/reference/flowtask/components/Workday/types/organizations/index.html +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/documentation/site/reference/flowtask/components/Workday/types/time_blocks/index.html +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/documentation/site/reference/flowtask/components/Workday/types/time_requests/index.html +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/documentation/site/reference/flowtask/components/Workday/types/workers/index.html +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/documentation/site/reference/flowtask/components/Workday/utils/index.html +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/documentation/site/reference/flowtask/components/Workday/utils/utils/index.html +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/documentation/site/reference/flowtask/components/Workday/workday/index.html +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/documentation/site/reference/flowtask/components/Workplace/index.html +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/documentation/site/reference/flowtask/components/XMLToPandas/index.html +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/documentation/site/reference/flowtask/components/Zammad/index.html +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/documentation/site/reference/flowtask/components/Zammad/models/index.html +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/documentation/site/reference/flowtask/components/ZoomInfoScraper/index.html +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/documentation/site/reference/flowtask/components/abstract/index.html +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/documentation/site/reference/flowtask/components/flow/index.html +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/documentation/site/reference/flowtask/components/google/index.html +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/documentation/site/reference/flowtask/components/group/index.html +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/documentation/site/reference/flowtask/components/index.html +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/documentation/site/reference/flowtask/components/reviewscrap/index.html +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/documentation/site/reference/flowtask/components/tAutoincrement/index.html +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/documentation/site/reference/flowtask/components/tConcat/index.html +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/documentation/site/reference/flowtask/components/tCrosstab/index.html +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/documentation/site/reference/flowtask/components/tExplode/index.html +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/documentation/site/reference/flowtask/components/tFilter/index.html +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/documentation/site/reference/flowtask/components/tGroup/index.html +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/documentation/site/reference/flowtask/components/tJoin/index.html +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/documentation/site/reference/flowtask/components/tMap/functions/index.html +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/documentation/site/reference/flowtask/components/tMap/index.html +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/documentation/site/reference/flowtask/components/tMap/tMap/index.html +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/documentation/site/reference/flowtask/components/tMelt/index.html +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/documentation/site/reference/flowtask/components/tMerge/index.html +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/documentation/site/reference/flowtask/components/tOrder/index.html +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/documentation/site/reference/flowtask/components/tPandas/index.html +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/documentation/site/reference/flowtask/components/tPivot/index.html +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/documentation/site/reference/flowtask/components/tPluckCols/index.html +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/documentation/site/reference/flowtask/components/tUnnest/index.html +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/documentation/site/reference/flowtask/components/user/index.html +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/documentation/site/reference/flowtask/conf/index.html +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/documentation/site/reference/flowtask/download/index.html +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/documentation/site/reference/flowtask/events/events/abstract/index.html +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/documentation/site/reference/flowtask/events/events/alerts/colfunctions/index.html +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/documentation/site/reference/flowtask/events/events/alerts/functions/index.html +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/documentation/site/reference/flowtask/events/events/alerts/index.html +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/documentation/site/reference/flowtask/events/events/dummy/index.html +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/documentation/site/reference/flowtask/events/events/exec/index.html +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/documentation/site/reference/flowtask/events/events/file/base/index.html +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/documentation/site/reference/flowtask/events/events/file/copy/index.html +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/documentation/site/reference/flowtask/events/events/file/delete/index.html +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/documentation/site/reference/flowtask/events/events/file/index.html +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/documentation/site/reference/flowtask/events/events/index.html +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/documentation/site/reference/flowtask/events/events/interfaces/client/index.html +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/documentation/site/reference/flowtask/events/events/interfaces/credentials/index.html +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/documentation/site/reference/flowtask/events/events/interfaces/index.html +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/documentation/site/reference/flowtask/events/events/interfaces/notifications/index.html +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/documentation/site/reference/flowtask/events/events/jira/index.html +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/documentation/site/reference/flowtask/events/events/log/index.html +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/documentation/site/reference/flowtask/events/events/logerr/index.html +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/documentation/site/reference/flowtask/events/events/notify/index.html +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/documentation/site/reference/flowtask/events/events/notify_event/index.html +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/documentation/site/reference/flowtask/events/events/publish/index.html +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/documentation/site/reference/flowtask/events/events/sendfile/index.html +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/documentation/site/reference/flowtask/events/events/task/index.html +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/documentation/site/reference/flowtask/events/events/teams/index.html +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/documentation/site/reference/flowtask/events/events/webhook/index.html +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/documentation/site/reference/flowtask/events/index.html +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/documentation/site/reference/flowtask/events/manager/index.html +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/documentation/site/reference/flowtask/extensions/abstract/index.html +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/documentation/site/reference/flowtask/extensions/index.html +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/documentation/site/reference/flowtask/extensions/logging/index.html +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/documentation/site/reference/flowtask/hooks/actions/abstract/index.html +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/documentation/site/reference/flowtask/hooks/actions/dummy/index.html +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/documentation/site/reference/flowtask/hooks/actions/index.html +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/documentation/site/reference/flowtask/hooks/actions/jira/index.html +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/documentation/site/reference/flowtask/hooks/actions/rest/index.html +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/documentation/site/reference/flowtask/hooks/actions/sampledata/index.html +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/documentation/site/reference/flowtask/hooks/actions/sensor/index.html +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/documentation/site/reference/flowtask/hooks/actions/task/index.html +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/documentation/site/reference/flowtask/hooks/actions/ticket/index.html +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/documentation/site/reference/flowtask/hooks/actions/zammad/index.html +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/documentation/site/reference/flowtask/hooks/hook/index.html +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/documentation/site/reference/flowtask/hooks/index.html +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/documentation/site/reference/flowtask/hooks/models/index.html +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/documentation/site/reference/flowtask/hooks/service/index.html +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/documentation/site/reference/flowtask/hooks/step/index.html +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/documentation/site/reference/flowtask/hooks/types/base/index.html +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/documentation/site/reference/flowtask/hooks/types/brokers/base/index.html +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/documentation/site/reference/flowtask/hooks/types/brokers/index.html +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/documentation/site/reference/flowtask/hooks/types/brokers/mqtt/index.html +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/documentation/site/reference/flowtask/hooks/types/brokers/rabbitmq/index.html +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/documentation/site/reference/flowtask/hooks/types/brokers/redis/index.html +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/documentation/site/reference/flowtask/hooks/types/brokers/sqs/index.html +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/documentation/site/reference/flowtask/hooks/types/fs/index.html +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/documentation/site/reference/flowtask/hooks/types/http/index.html +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/documentation/site/reference/flowtask/hooks/types/imap/index.html +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/documentation/site/reference/flowtask/hooks/types/index.html +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/documentation/site/reference/flowtask/hooks/types/jira/index.html +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/documentation/site/reference/flowtask/hooks/types/mail/index.html +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/documentation/site/reference/flowtask/hooks/types/postgres/index.html +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/documentation/site/reference/flowtask/hooks/types/responses/base/index.html +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/documentation/site/reference/flowtask/hooks/types/responses/index.html +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/documentation/site/reference/flowtask/hooks/types/sharepoint/index.html +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/documentation/site/reference/flowtask/hooks/types/ssh/index.html +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/documentation/site/reference/flowtask/hooks/types/tagged/index.html +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/documentation/site/reference/flowtask/hooks/types/upload/index.html +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/documentation/site/reference/flowtask/hooks/types/watch/index.html +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/documentation/site/reference/flowtask/hooks/types/web/index.html +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/documentation/site/reference/flowtask/index.html +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/documentation/site/reference/flowtask/interfaces/AzureClient/index.html +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/documentation/site/reference/flowtask/interfaces/AzureGraph/index.html +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/documentation/site/reference/flowtask/interfaces/Boto3Client/index.html +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/documentation/site/reference/flowtask/interfaces/DropboxClient/index.html +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/documentation/site/reference/flowtask/interfaces/ExcelHandler/index.html +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/documentation/site/reference/flowtask/interfaces/FTPClient/index.html +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/documentation/site/reference/flowtask/interfaces/GoogleCalendar/index.html +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/documentation/site/reference/flowtask/interfaces/GoogleClient/index.html +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/documentation/site/reference/flowtask/interfaces/GoogleDrive/index.html +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/documentation/site/reference/flowtask/interfaces/GoogleGCS/index.html +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/documentation/site/reference/flowtask/interfaces/GoogleGeocoding/index.html +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/documentation/site/reference/flowtask/interfaces/GoogleLang/index.html +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/documentation/site/reference/flowtask/interfaces/GooglePub/index.html +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/documentation/site/reference/flowtask/interfaces/GoogleSheet/index.html +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/documentation/site/reference/flowtask/interfaces/IMAPClient/index.html +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/documentation/site/reference/flowtask/interfaces/O365Calendar/index.html +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/documentation/site/reference/flowtask/interfaces/O365Client/index.html +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/documentation/site/reference/flowtask/interfaces/OneDrive/index.html +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/documentation/site/reference/flowtask/interfaces/Outlook/index.html +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/documentation/site/reference/flowtask/interfaces/ParrotBot/index.html +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/documentation/site/reference/flowtask/interfaces/SOAPClient/index.html +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/documentation/site/reference/flowtask/interfaces/SSHClient/index.html +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/documentation/site/reference/flowtask/interfaces/Sharepoint/index.html +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/documentation/site/reference/flowtask/interfaces/azureauth/index.html +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/documentation/site/reference/flowtask/interfaces/cache/index.html +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/documentation/site/reference/flowtask/interfaces/client/index.html +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/documentation/site/reference/flowtask/interfaces/compress/index.html +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/documentation/site/reference/flowtask/interfaces/credentials/index.html +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/documentation/site/reference/flowtask/interfaces/d2l/index.html +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/documentation/site/reference/flowtask/interfaces/databases/db/index.html +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/documentation/site/reference/flowtask/interfaces/databases/documentdb/index.html +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/documentation/site/reference/flowtask/interfaces/databases/index.html +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/documentation/site/reference/flowtask/interfaces/databases/rethink/index.html +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/documentation/site/reference/flowtask/interfaces/dataframes/abstract/index.html +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/documentation/site/reference/flowtask/interfaces/dataframes/arrow/index.html +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/documentation/site/reference/flowtask/interfaces/dataframes/dt/index.html +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/documentation/site/reference/flowtask/interfaces/dataframes/index.html +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/documentation/site/reference/flowtask/interfaces/dataframes/pandas/index.html +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/documentation/site/reference/flowtask/interfaces/dataframes/polars/index.html +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/documentation/site/reference/flowtask/interfaces/db/index.html +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/documentation/site/reference/flowtask/interfaces/func/index.html +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/documentation/site/reference/flowtask/interfaces/http/index.html +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/documentation/site/reference/flowtask/interfaces/index.html +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/documentation/site/reference/flowtask/interfaces/locale/index.html +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/documentation/site/reference/flowtask/interfaces/log/index.html +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/documentation/site/reference/flowtask/interfaces/mask/index.html +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/documentation/site/reference/flowtask/interfaces/notification/index.html +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/documentation/site/reference/flowtask/interfaces/parrot/agent/index.html +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/documentation/site/reference/flowtask/interfaces/parrot/index.html +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/documentation/site/reference/flowtask/interfaces/parrot/tools/index.html +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/documentation/site/reference/flowtask/interfaces/parrot/tools/models/index.html +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/documentation/site/reference/flowtask/interfaces/parrot/tools/store/index.html +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/documentation/site/reference/flowtask/interfaces/playwright/index.html +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/documentation/site/reference/flowtask/interfaces/powerpoint/index.html +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/documentation/site/reference/flowtask/interfaces/qs/index.html +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/documentation/site/reference/flowtask/interfaces/result/index.html +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/documentation/site/reference/flowtask/interfaces/sassie/index.html +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/documentation/site/reference/flowtask/interfaces/selenium_service/index.html +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/documentation/site/reference/flowtask/interfaces/smartsheet/index.html +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/documentation/site/reference/flowtask/interfaces/stat/index.html +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/documentation/site/reference/flowtask/interfaces/task/index.html +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/documentation/site/reference/flowtask/interfaces/template/index.html +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/documentation/site/reference/flowtask/interfaces/vectorstores/abstract/index.html +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/documentation/site/reference/flowtask/interfaces/vectorstores/index.html +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/documentation/site/reference/flowtask/interfaces/vectorstores/milvus/index.html +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/documentation/site/reference/flowtask/interfaces/zammad/index.html +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/documentation/site/reference/flowtask/models/index.html +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/documentation/site/reference/flowtask/parsers/argparser/index.html +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/documentation/site/reference/flowtask/parsers/index.html +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/documentation/site/reference/flowtask/parsers/maps/index.html +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/documentation/site/reference/flowtask/plugins/components_/index.html +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/documentation/site/reference/flowtask/plugins/handler/index.html +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/documentation/site/reference/flowtask/plugins/importer/index.html +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/documentation/site/reference/flowtask/plugins/index.html +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/documentation/site/reference/flowtask/plugins/sources/index.html +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/documentation/site/reference/flowtask/runner/index.html +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/documentation/site/reference/flowtask/scheduler/functions/index.html +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/documentation/site/reference/flowtask/scheduler/handlers/index.html +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/documentation/site/reference/flowtask/scheduler/handlers/manager/index.html +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/documentation/site/reference/flowtask/scheduler/handlers/models/index.html +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/documentation/site/reference/flowtask/scheduler/handlers/service/index.html +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/documentation/site/reference/flowtask/scheduler/index.html +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/documentation/site/reference/flowtask/scheduler/notifications/index.html +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/documentation/site/reference/flowtask/scheduler/scheduler/index.html +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/documentation/site/reference/flowtask/services/bots/index.html +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/documentation/site/reference/flowtask/services/bots/telegram/index.html +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/documentation/site/reference/flowtask/services/files/index.html +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/documentation/site/reference/flowtask/services/files/manager/index.html +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/documentation/site/reference/flowtask/services/files/model/index.html +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/documentation/site/reference/flowtask/services/files/service/index.html +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/documentation/site/reference/flowtask/services/index.html +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/documentation/site/reference/flowtask/services/jira/index.html +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/documentation/site/reference/flowtask/services/jira/jira_actions/index.html +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/documentation/site/reference/flowtask/services/tasks/index.html +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/documentation/site/reference/flowtask/services/tasks/launcher/index.html +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/documentation/site/reference/flowtask/services/tasks/manager/index.html +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/documentation/site/reference/flowtask/services/tasks/service/index.html +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/documentation/site/reference/flowtask/services/tasks/task_manager/index.html +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/documentation/site/reference/flowtask/services/tasks/tasks/index.html +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/documentation/site/reference/flowtask/storages/exceptions/index.html +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/documentation/site/reference/flowtask/storages/files/abstract/index.html +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/documentation/site/reference/flowtask/storages/files/filesystem/index.html +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/documentation/site/reference/flowtask/storages/files/index.html +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/documentation/site/reference/flowtask/storages/index.html +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/documentation/site/reference/flowtask/storages/tasks/abstract/index.html +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/documentation/site/reference/flowtask/storages/tasks/database/index.html +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/documentation/site/reference/flowtask/storages/tasks/filesystem/index.html +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/documentation/site/reference/flowtask/storages/tasks/github/index.html +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/documentation/site/reference/flowtask/storages/tasks/index.html +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/documentation/site/reference/flowtask/storages/tasks/memory/index.html +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/documentation/site/reference/flowtask/storages/tasks/row/index.html +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/documentation/site/reference/flowtask/tasks/abstract/index.html +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/documentation/site/reference/flowtask/tasks/command/index.html +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/documentation/site/reference/flowtask/tasks/index.html +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/documentation/site/reference/flowtask/tasks/pile/index.html +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/documentation/site/reference/flowtask/tasks/task/index.html +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/documentation/site/reference/flowtask/template/index.html +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/documentation/site/reference/flowtask/types/index.html +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/documentation/site/reference/flowtask/utils/constants/index.html +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/documentation/site/reference/flowtask/utils/encoders/index.html +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/documentation/site/reference/flowtask/utils/executor/index.html +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/documentation/site/reference/flowtask/utils/index.html +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/documentation/site/reference/flowtask/utils/mail/index.html +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/documentation/site/reference/flowtask/utils/stats/index.html +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/documentation/site/reference/flowtask/utils/transformations/index.html +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/documentation/site/reference/flowtask/utils/uv/index.html +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/documentation/site/reference/flowtask/utils/validators/index.html +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/documentation/site/reference/flowtask/version/index.html +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/documentation/site/reference/index.html +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/documentation/site/search/search_index.json +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/documentation/site/sitemap.xml +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/documentation/site/sitemap.xml.gz +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/examples/components/amazon.py +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/examples/components/azure_graph.py +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/examples/components/best_buy.py +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/examples/components/cnn.py +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/examples/components/company_scrapper.py +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/examples/components/costco.py +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/examples/components/costco_scrapper.py +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/examples/components/download_s3.py +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/examples/components/google_places.py +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/examples/components/lowes.py +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/examples/components/pokemon.py +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/examples/components/powerpoint.py +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/examples/components/qs.py +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/examples/components/rethink.py +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/examples/components/scrappage.py +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/examples/components/target.py +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/examples/components/test_notify.py +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/examples/components/test_tfilter.py +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/examples/components/walmart.py +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/examples/test_bigquery.py +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/examples/test_google_distance.py +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/examples/test_google_geocoding.py +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/examples/test_google_traveler.py +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/examples/test_jirabot.py +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/examples/test_telegram.py +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/examples/test_traveler.py +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/examples/tests/test_o365.py +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/flowtask/__init__.py +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/flowtask/bots/__init__.py +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/flowtask/bots/codebot.py +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/flowtask/components/ASPX.py +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/flowtask/components/ATT.py +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/flowtask/components/AddDataset.py +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/flowtask/components/Amazon.py +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/flowtask/components/AutoTask.py +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/flowtask/components/Azure.py +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/flowtask/components/AzureUsers.py +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/flowtask/components/BaseAction.py +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/flowtask/components/BaseLoop.py +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/flowtask/components/BestBuy.py +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/flowtask/components/CSVToGCS.py +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/flowtask/components/CallSummary.py +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/flowtask/components/CompanyScraper/__init__.py +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/flowtask/components/CompanyScraper/parsers/__init__.py +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/flowtask/components/CompanyScraper/parsers/base.py +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/flowtask/components/CompanyScraper/parsers/explorium.py +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/flowtask/components/CompanyScraper/parsers/leadiq.py +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/flowtask/components/CompanyScraper/parsers/rocket.py +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/flowtask/components/CompanyScraper/parsers/siccode.py +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/flowtask/components/CompanyScraper/parsers/visualvisitor.py +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/flowtask/components/CompanyScraper/parsers/zoominfo.py +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/flowtask/components/CompanyScraper/scrapper.py +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/flowtask/components/CopyTo.py +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/flowtask/components/CopyToBigQuery.py +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/flowtask/components/CopyToMongoDB.py +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/flowtask/components/CopyToPg.py +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/flowtask/components/CopyToRethink.py +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/flowtask/components/Costco.py +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/flowtask/components/CreateGCSBucket.py +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/flowtask/components/CreateReport/CreateReport.py +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/flowtask/components/CreateReport/__init__.py +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/flowtask/components/CreateReport/charts/__init__.py +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/flowtask/components/CreateReport/charts/bar.py +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/flowtask/components/CreateReport/charts/base.py +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/flowtask/components/CreateReport/charts/pie.py +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/flowtask/components/CreateReport/utils.py +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/flowtask/components/CustomerSatisfaction.py +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/flowtask/components/DataInput.py +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/flowtask/components/DbClient.py +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/flowtask/components/DialPad.py +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/flowtask/components/DispatchMe.py +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/flowtask/components/DocumentDBQuery.py +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/flowtask/components/DownloadFrom.py +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/flowtask/components/DownloadFromD2L.py +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/flowtask/components/DownloadFromFTP.py +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/flowtask/components/DownloadFromIMAP.py +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/flowtask/components/DownloadFromS3.py +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/flowtask/components/DownloadFromSFTP.py +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/flowtask/components/DownloadFromSharepoint.py +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/flowtask/components/DownloadFromSmartSheet.py +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/flowtask/components/DownloadFromSmartsheet.py +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/flowtask/components/DownloadS3File.py +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/flowtask/components/Dummy.py +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/flowtask/components/DuplicatePhoto.py +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/flowtask/components/EmployeeEvaluation.py +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/flowtask/components/ExecuteSQL.py +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/flowtask/components/ExtractHTML.py +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/flowtask/components/FileBase.py +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/flowtask/components/FileCopy.py +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/flowtask/components/FileDelete.py +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/flowtask/components/FileExists.py +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/flowtask/components/FileIteratorDelete.py +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/flowtask/components/FileList.py +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/flowtask/components/FileOpen.py +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/flowtask/components/FileRead.py +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/flowtask/components/FileRename.py +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/flowtask/components/FilterIf.py +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/flowtask/components/FilterRows/FilterRows.py +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/flowtask/components/FilterRows/__init__.py +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/flowtask/components/FilterRows/functions.py +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/flowtask/components/GCSToBigQuery.py +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/flowtask/components/GenData.py +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/flowtask/components/GoogleA4.py +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/flowtask/components/GoogleGeoCoding.py +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/flowtask/components/GooglePlaces.py +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/flowtask/components/GoogleSearch.py +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/flowtask/components/HTTPClient.py +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/flowtask/components/ICIMS.py +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/flowtask/components/IF.py +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/flowtask/components/IcimsFolderCopy.py +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/flowtask/components/ImageFeatures/__init__.py +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/flowtask/components/ImageFeatures/process.py +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/flowtask/components/IteratorBase.py +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/flowtask/components/LeadIQ.py +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/flowtask/components/Loop.py +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/flowtask/components/Lowes.py +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/flowtask/components/MS365Usage.py +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/flowtask/components/MSTeamsMessages.py +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/flowtask/components/MarkdownMaker.py +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/flowtask/components/MarketClustering.py +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/flowtask/components/MergeFiles.py +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/flowtask/components/MilvusOutput.py +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/flowtask/components/NearByStores.py +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/flowtask/components/NetworkNinja/__init__.py +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/flowtask/components/NetworkNinja/models/__init__.py +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/flowtask/components/NetworkNinja/models/abstract.py +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/flowtask/components/NetworkNinja/models/account.py +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/flowtask/components/NetworkNinja/models/client.py +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/flowtask/components/NetworkNinja/models/district.py +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/flowtask/components/NetworkNinja/models/events.py +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/flowtask/components/NetworkNinja/models/forms.py +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/flowtask/components/NetworkNinja/models/market.py +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/flowtask/components/NetworkNinja/models/organization.py +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/flowtask/components/NetworkNinja/models/photos.py +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/flowtask/components/NetworkNinja/models/project.py +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/flowtask/components/NetworkNinja/models/region.py +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/flowtask/components/NetworkNinja/models/store.py +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/flowtask/components/NetworkNinja/models/user.py +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/flowtask/components/NetworkNinja/router.py +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/flowtask/components/NetworkNinjaClaims.py +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/flowtask/components/NextStopAgent.py +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/flowtask/components/Odoo.py +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/flowtask/components/OdooInjector.py +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/flowtask/components/OpenFromXML.py +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/flowtask/components/OpenWeather.py +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/flowtask/components/OpenWithBase.py +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/flowtask/components/OpenWithPandas.py +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/flowtask/components/PDFGenerator.py +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/flowtask/components/PGPDecrypt.py +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/flowtask/components/PandasIterator.py +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/flowtask/components/PandasToFile.py +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/flowtask/components/PandasToPowerPoint.py +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/flowtask/components/Paradox.py +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/flowtask/components/ParamIterator.py +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/flowtask/components/ParrotLoader/__init__.py +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/flowtask/components/ParseHTML.py +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/flowtask/components/PlacerStores.py +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/flowtask/components/PlanogramCompliance.py +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/flowtask/components/PodcastMaker.py +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/flowtask/components/Pokemon.py +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/flowtask/components/PositiveBot.py +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/flowtask/components/PowerPointSlide.py +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/flowtask/components/PrintMessage.py +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/flowtask/components/ProductCompetitors/__init__.py +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/flowtask/components/ProductCompetitors/parsers/__init__.py +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/flowtask/components/ProductCompetitors/parsers/base.py +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/flowtask/components/ProductCompetitors/parsers/bestbuy.py +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/flowtask/components/ProductCompetitors/parsers/lowes.py +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/flowtask/components/ProductCompetitors/scrapper.py +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/flowtask/components/ProductCompliant.py +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/flowtask/components/ProductInfo/__init__.py +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/flowtask/components/ProductInfo/parsers/__init__.py +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/flowtask/components/ProductInfo/parsers/base.py +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/flowtask/components/ProductInfo/parsers/brother.py +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/flowtask/components/ProductInfo/parsers/canon.py +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/flowtask/components/ProductInfo/parsers/epson.py +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/flowtask/components/ProductInfo/parsers/hp.py +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/flowtask/components/ProductInfo/parsers/samsung.py +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/flowtask/components/ProductInfo/scraper.py +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/flowtask/components/ProductPricing.py +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/flowtask/components/ProductReportBot.py +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/flowtask/components/QS.py +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/flowtask/components/QSBase.py +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/flowtask/components/QueryIterator.py +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/flowtask/components/QueryToInsert.py +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/flowtask/components/QueryToPandas.py +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/flowtask/components/RESTClient.py +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/flowtask/components/RethinkDBQuery.py +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/flowtask/components/Rsync.py +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/flowtask/components/RunSSH.py +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/flowtask/components/RunShell.py +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/flowtask/components/SAPExtraction.py +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/flowtask/components/SMSAnalysis.py +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/flowtask/components/SMSSummary.py +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/flowtask/components/SalesForce.py +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/flowtask/components/Sassie.py +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/flowtask/components/SaveImageBank/__init__.py +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/flowtask/components/SchedulingVisits.py +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/flowtask/components/ScrapPage.py +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/flowtask/components/ScrapSearch.py +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/flowtask/components/ScrapTool.py +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/flowtask/components/SendEmail.py +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/flowtask/components/SendNotify/__init__.py +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/flowtask/components/SendNotify/component.py +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/flowtask/components/SendNotify/models/__init__.py +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/flowtask/components/SendNotify/models/abstract.py +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/flowtask/components/SendNotify/models/zoom.py +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/flowtask/components/SentimentAnalysis.py +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/flowtask/components/ServiceScrapper/__init__.py +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/flowtask/components/ServiceScrapper/parsers/__init__.py +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/flowtask/components/ServiceScrapper/parsers/base.py +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/flowtask/components/ServiceScrapper/parsers/costco.py +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/flowtask/components/ServiceScrapper/scrapper.py +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/flowtask/components/SetVariables.py +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/flowtask/components/SplitPDF.py +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/flowtask/components/Staples.py +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/flowtask/components/SuiteCRM.py +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/flowtask/components/Switch.py +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/flowtask/components/TableBase.py +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/flowtask/components/TableDelete.py +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/flowtask/components/TableInput.py +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/flowtask/components/TableOutput/TableOutput.py +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/flowtask/components/TableOutput/__init__.py +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/flowtask/components/TableSchema.py +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/flowtask/components/Target.py +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/flowtask/components/ThumbnailGenerator.py +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/flowtask/components/ToPandas.py +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/flowtask/components/TransformRows/TransformRows.py +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/flowtask/components/TransformRows/__init__.py +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/flowtask/components/TransposeRows.py +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/flowtask/components/UPCDatabase.py +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/flowtask/components/UnGzip.py +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/flowtask/components/Uncompress.py +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/flowtask/components/UniqueRows.py +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/flowtask/components/Unzip.py +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/flowtask/components/UpdateOperationalVars.py +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/flowtask/components/UploadTo.py +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/flowtask/components/UploadToS3.py +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/flowtask/components/UploadToSFTP.py +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/flowtask/components/UploadToSharepoint.py +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/flowtask/components/UserFunc.py +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/flowtask/components/VideoUnderstanding.py +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/flowtask/components/VivaTracker.py +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/flowtask/components/WSDLClient.py +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/flowtask/components/Wait.py +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/flowtask/components/Walmart.py +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/flowtask/components/Workday/__init__.py +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/flowtask/components/Workday/models/applicant.py +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/flowtask/components/Workday/models/candidate.py +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/flowtask/components/Workday/models/cost_center.py +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/flowtask/components/Workday/models/custom_punch_field_report.py +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/flowtask/components/Workday/models/job_posting.py +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/flowtask/components/Workday/models/job_posting_site.py +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/flowtask/components/Workday/models/job_requisition.py +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/flowtask/components/Workday/models/location.py +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/flowtask/components/Workday/models/location_hierarchy_assignments.py +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/flowtask/components/Workday/models/organizations.py +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/flowtask/components/Workday/models/time_block.py +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/flowtask/components/Workday/models/time_off_balance.py +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/flowtask/components/Workday/models/time_request.py +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/flowtask/components/Workday/models/worker.py +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/flowtask/components/Workday/parsers/applicant_parsers.py +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/flowtask/components/Workday/parsers/candidate_parsers.py +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/flowtask/components/Workday/parsers/cost_center_parsers.py +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/flowtask/components/Workday/parsers/custom_punch_field_report_parsers.py +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/flowtask/components/Workday/parsers/job_posting_parsers.py +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/flowtask/components/Workday/parsers/job_posting_site_parsers.py +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/flowtask/components/Workday/parsers/job_requisition_parsers.py +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/flowtask/components/Workday/parsers/location_hierarchy_assignments_parsers.py +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/flowtask/components/Workday/parsers/location_parsers.py +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/flowtask/components/Workday/parsers/organization_parsers.py +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/flowtask/components/Workday/parsers/time_block_parsers.py +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/flowtask/components/Workday/parsers/time_off_balance_parsers.py +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/flowtask/components/Workday/parsers/time_request_parsers.py +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/flowtask/components/Workday/parsers/worker_parsers.py +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/flowtask/components/Workday/types/applicants.py +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/flowtask/components/Workday/types/base.py +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/flowtask/components/Workday/types/cost_centers.py +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/flowtask/components/Workday/types/custom_punch_field_report.py +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/flowtask/components/Workday/types/custom_punch_field_report_rest.py +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/flowtask/components/Workday/types/custom_report.py +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/flowtask/components/Workday/types/job_posting_sites.py +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/flowtask/components/Workday/types/job_postings.py +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/flowtask/components/Workday/types/job_requisitions.py +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/flowtask/components/Workday/types/location_hierarchy_assignments.py +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/flowtask/components/Workday/types/locations.py +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/flowtask/components/Workday/types/organization_single.py +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/flowtask/components/Workday/types/organizations.py +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/flowtask/components/Workday/types/recruiting_agency_users.py +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/flowtask/components/Workday/types/time_block_report.py +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/flowtask/components/Workday/types/time_blocks.py +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/flowtask/components/Workday/types/time_off_balances.py +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/flowtask/components/Workday/types/time_requests.py +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/flowtask/components/Workday/types/workers.py +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/flowtask/components/Workday/utils/__init__.py +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/flowtask/components/Workday/utils/utils.py +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/flowtask/components/WorkdayReport.py +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/flowtask/components/Workplace.py +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/flowtask/components/XMLToPandas.py +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/flowtask/components/Zammad/__init__.py +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/flowtask/components/Zammad/models.py +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/flowtask/components/Zoom.py +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/flowtask/components/ZoomInfoScraper.py +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/flowtask/components/__init__.py +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/flowtask/components/abstract.py +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/flowtask/components/flow.py +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/flowtask/components/gendata/__init__.py +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/flowtask/components/gendata/date_sequence.py +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/flowtask/components/gendata/static_list.py +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/flowtask/components/google.py +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/flowtask/components/group.py +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/flowtask/components/py.typed +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/flowtask/components/reviewscrap.py +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/flowtask/components/tAddTotalRow.py +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/flowtask/components/tAutoincrement.py +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/flowtask/components/tConcat.py +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/flowtask/components/tConditionalMultiply.py +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/flowtask/components/tCrosstab.py +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/flowtask/components/tExplode.py +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/flowtask/components/tFilter.py +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/flowtask/components/tFilterCommonValues.py +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/flowtask/components/tFrequencyWeights.py +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/flowtask/components/tJoin.py +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/flowtask/components/tMap/__init__.py +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/flowtask/components/tMap/functions.py +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/flowtask/components/tMap/tMap.py +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/flowtask/components/tMelt.py +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/flowtask/components/tMerge.py +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/flowtask/components/tOrder.py +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/flowtask/components/tPandas.py +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/flowtask/components/tPivot.py +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/flowtask/components/tPluckCols.py +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/flowtask/components/tUnnest.py +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/flowtask/components/user.py +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/flowtask/documentation/__init__.py +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/flowtask/documentation/cli.py +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/flowtask/documentation/parser.py +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/flowtask/documentation/schema.py +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/flowtask/download.py +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/flowtask/events/__init__.py +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/flowtask/events/events/__init__.py +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/flowtask/events/events/abstract.py +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/flowtask/events/events/alerts/__init__.py +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/flowtask/events/events/alerts/colfunctions.py +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/flowtask/events/events/alerts/functions.py +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/flowtask/events/events/dummy.py +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/flowtask/events/events/exec.py +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/flowtask/events/events/file/__init__.py +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/flowtask/events/events/file/base.py +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/flowtask/events/events/file/copy.py +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/flowtask/events/events/file/delete.py +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/flowtask/events/events/interfaces/__init__.py +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/flowtask/events/events/interfaces/client.py +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/flowtask/events/events/interfaces/credentials.py +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/flowtask/events/events/interfaces/notifications.py +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/flowtask/events/events/jira.py +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/flowtask/events/events/log.py +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/flowtask/events/events/logerr.py +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/flowtask/events/events/notify.py +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/flowtask/events/events/notify_event.py +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/flowtask/events/events/publish.py +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/flowtask/events/events/sendfile.py +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/flowtask/events/events/task.py +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/flowtask/events/events/teams.py +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/flowtask/events/events/webhook.py +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/flowtask/events/manager.py +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/flowtask/exceptions.py +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/flowtask/extensions/__init__.py +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/flowtask/extensions/abstract.py +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/flowtask/extensions/component_docs.py +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/flowtask/extensions/logging/__init__.py +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/flowtask/handlers/__init__.py +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/flowtask/hooks/__init__.py +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/flowtask/hooks/actions/__init__.py +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/flowtask/hooks/actions/abstract.py +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/flowtask/hooks/actions/dummy.py +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/flowtask/hooks/actions/jira.py +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/flowtask/hooks/actions/rest.py +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/flowtask/hooks/actions/sampledata.py +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/flowtask/hooks/actions/sensor.py +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/flowtask/hooks/actions/task.py +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/flowtask/hooks/actions/ticket.py +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/flowtask/hooks/actions/zammad.py +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/flowtask/hooks/hook.py +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/flowtask/hooks/types/__init__.py +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/flowtask/hooks/types/brokers/__init__.py +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/flowtask/hooks/types/brokers/mqtt.py +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/flowtask/hooks/types/brokers/rabbitmq.py +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/flowtask/hooks/types/brokers/redis.py +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/flowtask/hooks/types/fs.py +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/flowtask/hooks/types/http.py +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/flowtask/hooks/types/imap.py +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/flowtask/hooks/types/postgres.py +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/flowtask/hooks/types/responses/__init__.py +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/flowtask/hooks/types/responses/base.py +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/flowtask/hooks/types/sharepoint.py +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/flowtask/hooks/types/ssh.py +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/flowtask/hooks/types/tagged.py +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/flowtask/hooks/types/upload.py +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/flowtask/hooks/types/web.py +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/flowtask/interfaces/AzureClient.py +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/flowtask/interfaces/AzureGraph.py +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/flowtask/interfaces/Boto3Client.py +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/flowtask/interfaces/DropboxClient.py +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/flowtask/interfaces/ExcelHandler.py +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/flowtask/interfaces/FTPClient.py +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/flowtask/interfaces/GoogleCalendar.py +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/flowtask/interfaces/GoogleClient.py +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/flowtask/interfaces/GoogleDrive.py +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/flowtask/interfaces/GoogleGCS.py +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/flowtask/interfaces/GoogleGeocoding.py +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/flowtask/interfaces/GoogleLang.py +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/flowtask/interfaces/GooglePub.py +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/flowtask/interfaces/GoogleSheet.py +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/flowtask/interfaces/IMAPClient.py +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/flowtask/interfaces/LLMClient.py +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/flowtask/interfaces/O365Calendar.py +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/flowtask/interfaces/O365Client.py +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/flowtask/interfaces/OneDrive.py +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/flowtask/interfaces/Outlook.py +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/flowtask/interfaces/ParrotBot.py +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/flowtask/interfaces/ParrotTool.py +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/flowtask/interfaces/SOAPClient.py +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/flowtask/interfaces/SSHClient.py +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/flowtask/interfaces/__init__.py +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/flowtask/interfaces/azureauth.py +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/flowtask/interfaces/cache.py +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/flowtask/interfaces/client.py +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/flowtask/interfaces/compress.py +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/flowtask/interfaces/credentials.py +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/flowtask/interfaces/d2l.py +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/flowtask/interfaces/databases/__init__.py +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/flowtask/interfaces/databases/db.py +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/flowtask/interfaces/databases/documentdb.py +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/flowtask/interfaces/databases/rethink.py +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/flowtask/interfaces/dataframes/__init__.py +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/flowtask/interfaces/dataframes/abstract.py +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/flowtask/interfaces/dataframes/arrow.py +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/flowtask/interfaces/dataframes/dt.py +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/flowtask/interfaces/dataframes/pandas.py +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/flowtask/interfaces/dataframes/polars.py +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/flowtask/interfaces/db.py +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/flowtask/interfaces/env.py +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/flowtask/interfaces/func.py +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/flowtask/interfaces/http.py +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/flowtask/interfaces/locale.py +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/flowtask/interfaces/log.py +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/flowtask/interfaces/notification.py +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/flowtask/interfaces/parrot/__init__.py +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/flowtask/interfaces/parrot/agent.py +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/flowtask/interfaces/parrot/client.py +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/flowtask/interfaces/pipelines/__init__.py +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/flowtask/interfaces/pipelines/parrot.py +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/flowtask/interfaces/playwright.py +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/flowtask/interfaces/powerpoint.py +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/flowtask/interfaces/ppt.py +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/flowtask/interfaces/py.typed +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/flowtask/interfaces/qs.py +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/flowtask/interfaces/result.py +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/flowtask/interfaces/sassie.py +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/flowtask/interfaces/selenium/__init__.py +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/flowtask/interfaces/selenium/options.py +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/flowtask/interfaces/selenium/service.py +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/flowtask/interfaces/smartsheet.py +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/flowtask/interfaces/stat.py +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/flowtask/interfaces/task.py +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/flowtask/interfaces/teams.py +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/flowtask/interfaces/template.py +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/flowtask/interfaces/tickets.py +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/flowtask/interfaces/vectorstores/__init__.py +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/flowtask/interfaces/vectorstores/abstract.py +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/flowtask/interfaces/vectorstores/milvus.py +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/flowtask/interfaces/zammad.py +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/flowtask/interfaces/zoom.py +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/flowtask/models.py +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/flowtask/parsers/__init__.py +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/flowtask/parsers/_yaml.c +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/flowtask/parsers/_yaml.pyx +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/flowtask/parsers/base.c +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/flowtask/parsers/base.pxd +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/flowtask/parsers/base.pyx +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/flowtask/parsers/json.c +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/flowtask/parsers/json.pyx +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/flowtask/parsers/maps.py +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/flowtask/parsers/toml.c +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/flowtask/parsers/toml.pyx +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/flowtask/plugins/__init__.py +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/flowtask/plugins/components_/__init__.py +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/flowtask/plugins/handler/__init__.py +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/flowtask/plugins/importer.py +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/flowtask/plugins/sources/__init__.py +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/flowtask/runner.py +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/flowtask/scheduler/__init__.py +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/flowtask/scheduler/functions.py +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/flowtask/scheduler/handlers/__init__.py +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/flowtask/scheduler/handlers/manager.py +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/flowtask/scheduler/handlers/models.py +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/flowtask/scheduler/handlers/service.py +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/flowtask/scheduler/notifications.py +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/flowtask/scheduler/scheduler.py +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/flowtask/services/__init__.py +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/flowtask/services/bots/__init__.py +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/flowtask/services/bots/telegram.py +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/flowtask/services/files/__init__.py +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/flowtask/services/files/manager.py +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/flowtask/services/files/model.py +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/flowtask/services/files/service.py +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/flowtask/services/jira/__init__.py +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/flowtask/services/jira/jira_actions.py +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/flowtask/services/tasks/__init__.py +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/flowtask/services/tasks/launcher.py +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/flowtask/services/tasks/manager.py +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/flowtask/services/tasks/service.py +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/flowtask/services/tasks/task_manager.py +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/flowtask/services/tasks/tasks.py +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/flowtask/storages/__init__.py +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/flowtask/storages/exceptions.py +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/flowtask/storages/files/__init__.py +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/flowtask/storages/files/abstract.py +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/flowtask/storages/files/filesystem.py +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/flowtask/storages/tasks/__init__.py +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/flowtask/storages/tasks/abstract.py +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/flowtask/storages/tasks/database.py +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/flowtask/storages/tasks/filesystem.py +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/flowtask/storages/tasks/github.py +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/flowtask/storages/tasks/memory.py +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/flowtask/storages/tasks/row.py +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/flowtask/tasks/__init__.py +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/flowtask/tasks/command.py +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/flowtask/tasks/pile.py +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/flowtask/tasks/py.typed +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/flowtask/tasks/task.py +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/flowtask/tasks/workers.py +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/flowtask/template/__init__.py +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/flowtask/tests.py +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/flowtask/types/__init__.py +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/flowtask/types/typedefs.c +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/flowtask/types/typedefs.pyx +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/flowtask/utils/__init__.py +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/flowtask/utils/constants.py +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/flowtask/utils/encoders.py +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/flowtask/utils/executor.py +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/flowtask/utils/functions.cpp +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/flowtask/utils/functions.pyx +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/flowtask/utils/json.cpp +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/flowtask/utils/json.pxi +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/flowtask/utils/json.pyx +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/flowtask/utils/mail.py +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/flowtask/utils/parseqs.c +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/flowtask/utils/parseqs.pyx +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/flowtask/utils/stats.py +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/flowtask/utils/transformations.py +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/flowtask/utils/uv.py +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/flowtask/utils/validators.py +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/flowtask.egg-info/dependency_links.txt +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/flowtask.egg-info/entry_points.txt +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/flowtask.egg-info/top_level.txt +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/gunicorn_config.py +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/image1.png +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/inject_examples.py +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/mkdocs.yml +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/mypy.ini +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/nav.py +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/plugins/__init__.py +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/prompts/nextstop/employee_comparison.txt +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/prompts/nextstop/for_employee.txt +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/prompts/nextstop/for_podcast.txt +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/prompts/nextstop/for_store.txt +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/prompts/nextstop/team_performance.txt +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/prompts/product_report_bot/product_conversation.txt +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/prompts/product_report_bot/product_info.txt +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/pydoc-markdown.yml +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/resources/users/__init__.py +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/resources/users/models.py +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/run.py +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/run_ninja.sh +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/run_task.sh +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/sdd/WORKFLOW-parrot.md +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/sdd/WORKFLOW.md +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/sdd/proposals/NAV-6821-websocket-notifications.brainstorm.md +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/sdd/proposals/SDD_NAV-6365.md +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/sdd/proposals/component-doc.md +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/sdd/proposals/endcap-no-shelves-promotional-fix.proposal.md +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/sdd/proposals/flowtask-command-execution.brainstorm.md +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/sdd/proposals/odoo-bearer-auth.brainstorm.md +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/sdd/proposals/planogram-composable-type-support.brainstorm.md +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/sdd/proposals/rep-depth-stores-persistence.brainstorm.md +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/sdd/proposals/workday-networkninja-remediation.proposal.md +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/sdd/reports/FEAT-008-security-credentials-audit.md +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/sdd/specs/component-documentation-api.spec.md +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/sdd/specs/duplicate-execution-id.spec.md +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/sdd/specs/excel-to-postgres.spec.md +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/sdd/specs/flowtask-command-execution.spec.md +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/sdd/specs/gendata-component.spec.md +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/sdd/specs/graphic-panel-display.spec.md +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/sdd/specs/odoo-bearer-auth.spec.md +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/sdd/specs/planogram-compliance-homologation.spec.md +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/sdd/specs/planogram-composable-type-support.spec.md +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/sdd/specs/podcast-maker.spec.md +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/sdd/specs/security-credentials-audit.spec.md +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/sdd/specs/tmerge-cross-function.spec.md +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/sdd/tasks/active/TASK-009-planogram-type-routing.md +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/sdd/tasks/active/TASK-010-cleanup-and-tests.md +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/sdd/tasks/active/TASK-011-graphic-panel-display-composable.md +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/sdd/tasks/active/TASK-012-graphic-panel-display-registration.md +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/sdd/tasks/active/TASK-013-graphic-panel-display-tests.md +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/sdd/tasks/active/TASK-015-podcast-maker-tests.md +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/sdd/tasks/active/TASK-023-planogram-critical-bugfixes.md +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/sdd/tasks/active/TASK-024-planogram-imports-and-validation.md +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/sdd/tasks/active/TASK-025-aipipeline-load-pipeline-update.md +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/sdd/tasks/active/TASK-026-planogram-integration-tests.md +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/sdd/tasks/completed/TASK-001-fix-wrapper-reuse.md +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/sdd/tasks/completed/TASK-002-uuid-uniqueness-tests.md +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/sdd/tasks/completed/TASK-003-docstring-parser.md +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/sdd/tasks/completed/TASK-004-schema-generator.md +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/sdd/tasks/completed/TASK-005-documentation-generator.md +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/sdd/tasks/completed/TASK-006-cli-script.md +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/sdd/tasks/completed/TASK-007-http-handler.md +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/sdd/tasks/completed/TASK-008-route-registration.md +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/sdd/tasks/completed/TASK-009-date-sequence-rule.md +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/sdd/tasks/completed/TASK-009-planogram-type-routing.md +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/sdd/tasks/completed/TASK-010-cleanup-and-tests.md +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/sdd/tasks/completed/TASK-010-gendata-component.md +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/sdd/tasks/completed/TASK-011-gendata-integration-tests.md +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/sdd/tasks/completed/TASK-011-graphic-panel-display-composable.md +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/sdd/tasks/completed/TASK-012-graphic-panel-display-registration.md +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/sdd/tasks/completed/TASK-012-tmerge-cross-func.md +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/sdd/tasks/completed/TASK-013-graphic-panel-display-tests.md +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/sdd/tasks/completed/TASK-013-tmerge-cross-func-tests.md +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/sdd/tasks/completed/TASK-014-podcast-maker-failure-tracking.md +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/sdd/tasks/completed/TASK-016-audit-flowtask-core.md +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/sdd/tasks/completed/TASK-017-audit-plugins.md +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/sdd/tasks/completed/TASK-018-audit-agents-mcp.md +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/sdd/tasks/completed/TASK-019-audit-scripts-tasks.md +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/sdd/tasks/completed/TASK-020-audit-tests-examples.md +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/sdd/tasks/completed/TASK-021-audit-docs-templates.md +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/sdd/tasks/completed/TASK-022-audit-consolidation-report.md +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/sdd/tasks/completed/TASK-023-planogram-critical-bugfixes.md +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/sdd/tasks/completed/TASK-024-planogram-imports-and-validation.md +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/sdd/tasks/completed/TASK-025-aipipeline-load-pipeline-update.md +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/sdd/tasks/completed/TASK-026-planogram-integration-tests.md +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/sdd/tasks/completed/TASK-027-odoo-bearer-auth-component.md +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/sdd/tasks/completed/TASK-028-odoo-bearer-auth-tests.md +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/sdd/tasks/completed/TASK-029-worker-queue-inspector.md +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/sdd/tasks/completed/TASK-030-cli-subcommand-integration.md +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/sdd/tasks/completed/TASK-031-entry-point-routing.md +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/sdd/tasks/completed/TASK-032-unit-tests.md +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/sdd/tasks/completed/TASK-033-integration-tests.md +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/sdd/templates/brainstorm.md +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/sdd/templates/proposal.md +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/sdd/templates/spec.md +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/sdd/templates/task.md +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/setup.cfg +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/setup.py +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/start.py +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/start.sh +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/static/images/screenshots/product-screenshot.png +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/static/images/screenshots/screenshot.png +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/tasks/programs/assurant/docs/providers.sql +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/tasks/programs/assurant/prompts/call_summary.txt +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/tasks/programs/assurant/prompts/prompt-audio-sentiment.txt +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/tasks/programs/assurant/sql/get_calls.sql +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/tasks/programs/assurant/tasks/call_summarization.yaml +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/tasks/programs/assurant/tasks/calls.yaml +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/tasks/programs/assurant/tasks/dispatch_table.yaml +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/tasks/programs/assurant/tasks/test_smartsheet.yaml +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/tasks/programs/assurant/tasks/test_splitpdf.yaml +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/tasks/programs/assurant/tasks/upload_contracts.yaml +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/tasks/programs/epson/files/single_product.json +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/tasks/programs/epson/files/single_store.json +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/tasks/programs/epson/tasks/product_availability.yaml +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/tasks/programs/epson/tasks/product_reviews.yaml +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/tasks/programs/hisense/prompts/employee.txt +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/tasks/programs/hisense/prompts/reviewbot.txt +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/tasks/programs/hisense/sql/get_nextstop_employees.sql +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/tasks/programs/hisense/tasks/bot_training_docx.yaml +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/tasks/programs/hisense/tasks/ce_chat.yaml +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/tasks/programs/hisense/tasks/customer_satisfaction.yaml +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/tasks/programs/hisense/tasks/employee_eval.yaml +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/tasks/programs/hisense/tasks/employee_evaluation_file.yaml +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/tasks/programs/hisense/tasks/ha_chat.yaml +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/tasks/programs/hisense/tasks/nextstop_employees.yaml +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/tasks/programs/networkninja/tasks/get_batch.yaml +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/tasks/programs/networkninja/tasks/get_from_mongo.yaml +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/tasks/programs/primo/tasks/primo_pdf.yaml +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/tasks/programs/primo/tasks/primo_qa.yaml +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/tasks/programs/test/files/company_info.json +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/tasks/programs/test/files/sample_payload.json +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/tasks/programs/test/files/sample_recap.json +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/tasks/programs/test/files/single_product.json +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/tasks/programs/test/files/single_store.json +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/tasks/programs/test/sql/query.sql +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/tasks/programs/test/tasks/company_profile.yaml +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/tasks/programs/test/tasks/costco_brands.yaml +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/tasks/programs/test/tasks/costco_companies.yaml +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/tasks/programs/test/tasks/product_availability.yaml +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/tasks/programs/test/tasks/sentiment_chats.yaml +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/tasks/programs/test/tasks/sentiment_file.yaml +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/tasks/programs/test/tasks/smartsheet.yaml +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/tasks/programs/test/tasks/test_alert.yaml +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/tasks/programs/test/tasks/test_case.yaml +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/tasks/programs/test/tasks/test_component.yaml +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/tasks/programs/test/tasks/test_datainput.yaml +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/tasks/programs/test/tasks/test_if.yaml +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/tasks/programs/test/tasks/test_imap.yaml +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/tasks/programs/test/tasks/test_loop.yaml +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/tasks/programs/test/tasks/test_milvus_qa.yaml +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/tasks/programs/test/tasks/test_milvus_txt.yaml +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/tasks/programs/test/tasks/test_networkninja.yaml +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/tasks/programs/test/tasks/test_networkninja_batch.yaml +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/tasks/programs/test/tasks/test_nn_form.yaml +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/tasks/programs/test/tasks/test_nn_staff.yaml +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/tasks/programs/test/tasks/test_nn_stores.yaml +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/tasks/programs/test/tasks/test_nn_users.yaml +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/tasks/programs/test/tasks/test_placer.yaml +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/tasks/programs/test/tasks/test_qspandas.yaml +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/tasks/programs/test/tasks/test_sftp.yaml +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/tasks/programs/test/tasks/test_sharepoint.yaml +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/tasks/programs/test/tasks/test_smartsheet.yaml +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/tasks/programs/test/tasks/test_switch.yaml +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/tasks/programs/test/tasks/test_transform.yaml +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/tasks/programs/test/tasks/test_use1.yaml +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/tasks/programs/test/tasks/test_vivatracker.json +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/tasks/programs/troc/files/nextstop_agent/backstory.txt +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/tasks/programs/troc/prompts/nextstop_agent/for_pdf.txt +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/tasks/programs/troc/prompts/nextstop_agent/for_store.txt +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/tasks/programs/troc/prompts/nextstop_agent/manager.txt +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/tasks/programs/troc/prompts/nextstop_agent/nextstop_employee.txt +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/tasks/programs/troc/prompts/nextstop_agent/team_performance.txt +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/tasks/programs/troc/sql/nextstop_employees.sql +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/tasks/programs/troc/tasks/nextstop.yaml +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/template.pptx +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/templates/css/base.css +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/templates/css/product_support_report.css +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/templates/css/table.css +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/templates/css/tables.css +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/templates/email_custom_report.html +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/templates/email_error.html +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/templates/email_report.html +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/templates/email_upload_sharepoint.html +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/templates/fontlist-v390.json +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/templates/nextstop/nextstop.html +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/templates/product_support_report.html +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/templates/report_template.html +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/templates/test_template.html +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/test_executor.py +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/test_leadiq.py +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/test_playwright.py +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/test_thumbnails/12345.jpg +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/test_thumbnails/67890.jpg +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/test_workday_memory_quick.py +0 -0
- {flowtask-5.11.8/tests/unit → flowtask-5.11.10/tests/hooks}/__init__.py +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/tests/integration/__init__.py +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/tests/integration/test_workers_cli.py +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/tests/test_abstract.py +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/tests/test_amazon.py +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/tests/test_autotask.py +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/tests/test_azure_users.py +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/tests/test_copytobigquery.py +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/tests/test_dataframes.py +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/tests/test_dialpad.py +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/tests/test_downloadfromimap.py +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/tests/test_downloadftp.py +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/tests/test_downloadsftp.py +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/tests/test_dummy.py +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/tests/test_executesql.py +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/tests/test_filecopy.py +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/tests/test_fileexists.py +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/tests/test_filelist.py +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/tests/test_fileopen.py +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/tests/test_filterrows.py +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/tests/test_gendata_component.py +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/tests/test_gendata_integration.py +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/tests/test_gendata_rules.py +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/tests/test_httpclient.py +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/tests/test_imap.py +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/tests/test_imap2.py +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/tests/test_jira_actions.py +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/tests/test_market_clustering_constraints.py +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/tests/test_ms365usage.py +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/tests/test_ninjaclaim.py +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/tests/test_odoo.py +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/tests/test_odoo_injector.py +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/tests/test_openwithpandas.py +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/tests/test_planogram_compliance_bugfixes.py +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/tests/test_planogram_compliance_integration.py +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/tests/test_planogram_compliance_routing.py +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/tests/test_pokemon.py +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/tests/test_populartimes.py +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/tests/test_printmessage.py +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/tests/test_productpricing.py +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/tests/test_queryinsert.py +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/tests/test_querytopandas.py +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/tests/test_rest.py +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/tests/test_restclient.py +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/tests/test_scheduler_uuid.py +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/tests/test_sftp.py +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/tests/test_sharepoint.py +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/tests/test_smartsheet.py +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/tests/test_tableoutput.py +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/tests/test_task.py +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/tests/test_taskqinsert.py +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/tests/test_tmerge_cross_func.py +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/tests/test_transform.py +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/tests/test_transpose.py +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/tests/test_uniquerows.py +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/tests/unit/documentation/__init__.py +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/tests/unit/documentation/test_cli.py +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/tests/unit/documentation/test_generator.py +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/tests/unit/documentation/test_parser.py +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/tests/unit/documentation/test_schema.py +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/tests/unit/handlers/__init__.py +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/tests/unit/test_workers.py +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/tox.ini +0 -0
- {flowtask-5.11.8 → flowtask-5.11.10}/update_components.py +0 -0
|
@@ -0,0 +1,480 @@
|
|
|
1
|
+
# /pr-review — Review a PR Against Jira Acceptance Criteria
|
|
2
|
+
|
|
3
|
+
Fetches a GitHub Pull Request and its associated Jira ticket, then reviews
|
|
4
|
+
whether the code changes satisfy the ticket's description and acceptance criteria.
|
|
5
|
+
Optionally converts the PR to draft if criteria are not met.
|
|
6
|
+
|
|
7
|
+
## Usage
|
|
8
|
+
|
|
9
|
+
```
|
|
10
|
+
/pr-review <PR_URL> <JIRA_KEY> [--auto-draft]
|
|
11
|
+
```
|
|
12
|
+
|
|
13
|
+
### Examples
|
|
14
|
+
|
|
15
|
+
```
|
|
16
|
+
/pr-review https://github.com/Trocdigital/navigator-dataintegrator-tasks/pull/4028 NAV-8036
|
|
17
|
+
/pr-review https://github.com/Trocdigital/navigator-dataintegrator-tasks/pull/4028 NAV-8036 --auto-draft
|
|
18
|
+
```
|
|
19
|
+
|
|
20
|
+
### Arguments
|
|
21
|
+
|
|
22
|
+
| Argument | Required | Description |
|
|
23
|
+
|----------------|----------|-------------|
|
|
24
|
+
| `<PR_URL>` | yes | Full GitHub PR URL (e.g., `https://github.com/org/repo/pull/123`) |
|
|
25
|
+
| `<JIRA_KEY>` | yes | Jira issue key (e.g., `NAV-8036`) |
|
|
26
|
+
| `--auto-draft` | no | If present AND criteria fail, convert PR to draft automatically |
|
|
27
|
+
|
|
28
|
+
## Prerequisites
|
|
29
|
+
|
|
30
|
+
- `gh` CLI installed and authenticated (`gh auth status`)
|
|
31
|
+
- `jq` installed (for JSON parsing)
|
|
32
|
+
- Jira credentials configured in `env/.env` (loaded at runtime via `navconfig`):
|
|
33
|
+
- `JIRA_INSTANCE` — e.g., `https://trocglobal.atlassian.net/`
|
|
34
|
+
- `JIRA_USERNAME` — email for Jira Cloud
|
|
35
|
+
- `JIRA_API_TOKEN` — API token (Personal Access Token)
|
|
36
|
+
|
|
37
|
+
To load these variables into the current shell for bash commands, run:
|
|
38
|
+
```bash
|
|
39
|
+
# Quick one-liner to export Jira vars from env/.env
|
|
40
|
+
eval "$(python -c "from navconfig import config; import os; [print(f'export {k}={v}') for k,v in os.environ.items() if k.startswith('JIRA_')]")"
|
|
41
|
+
```
|
|
42
|
+
|
|
43
|
+
## Steps
|
|
44
|
+
|
|
45
|
+
### 1. Parse Input & Validate Prerequisites
|
|
46
|
+
|
|
47
|
+
Extract org, repo, and PR number from the URL:
|
|
48
|
+
|
|
49
|
+
```bash
|
|
50
|
+
# Parse: https://github.com/Trocdigital/navigator-dataintegrator-tasks/pull/4028
|
|
51
|
+
PR_URL="$1"
|
|
52
|
+
JIRA_KEY="$2"
|
|
53
|
+
AUTO_DRAFT=false
|
|
54
|
+
if [[ "$3" == "--auto-draft" ]]; then AUTO_DRAFT=true; fi
|
|
55
|
+
|
|
56
|
+
# Extract components
|
|
57
|
+
REPO=$(echo "$PR_URL" | sed -E 's|https://github.com/([^/]+/[^/]+)/pull/.*|\1|')
|
|
58
|
+
PR_NUMBER=$(echo "$PR_URL" | sed -E 's|.*/pull/([0-9]+).*|\1|')
|
|
59
|
+
|
|
60
|
+
# Validate
|
|
61
|
+
gh auth status 2>/dev/null || echo "⚠️ gh CLI not authenticated. Run: gh auth login"
|
|
62
|
+
```
|
|
63
|
+
|
|
64
|
+
Load Jira credentials from `env/.env` via navconfig:
|
|
65
|
+
```bash
|
|
66
|
+
# Load Jira env vars using navconfig (reads env/.env)
|
|
67
|
+
eval "$(python -c "
|
|
68
|
+
from navconfig import config
|
|
69
|
+
import os
|
|
70
|
+
for k in ('JIRA_INSTANCE', 'JIRA_USERNAME', 'JIRA_API_TOKEN'):
|
|
71
|
+
v = os.environ.get(k, '')
|
|
72
|
+
if v:
|
|
73
|
+
print(f'export {k}={v}')
|
|
74
|
+
")"
|
|
75
|
+
|
|
76
|
+
# Strip trailing slash from JIRA_INSTANCE to avoid double-slash in URLs
|
|
77
|
+
JIRA_INSTANCE="${JIRA_INSTANCE%/}"
|
|
78
|
+
```
|
|
79
|
+
|
|
80
|
+
Verify Jira env vars are set:
|
|
81
|
+
```bash
|
|
82
|
+
[[ -z "$JIRA_INSTANCE" ]] && echo "⚠️ JIRA_INSTANCE not set" && exit 1
|
|
83
|
+
[[ -z "$JIRA_API_TOKEN" ]] && echo "⚠️ JIRA_API_TOKEN not set" && exit 1
|
|
84
|
+
[[ -z "$JIRA_USERNAME" ]] && echo "⚠️ JIRA_USERNAME not set" && exit 1
|
|
85
|
+
```
|
|
86
|
+
|
|
87
|
+
### 2. Fetch GitHub PR Data
|
|
88
|
+
|
|
89
|
+
Collect three things from the PR: metadata, description, and the diff.
|
|
90
|
+
|
|
91
|
+
```bash
|
|
92
|
+
# PR metadata (title, state, author, base/head branches, labels, reviewers)
|
|
93
|
+
gh pr view "$PR_NUMBER" --repo "$REPO" --json title,state,author,baseRefName,headRefName,labels,reviewRequests,isDraft
|
|
94
|
+
|
|
95
|
+
# PR description (body)
|
|
96
|
+
gh pr view "$PR_NUMBER" --repo "$REPO" --json body --jq '.body'
|
|
97
|
+
|
|
98
|
+
# Full diff (the actual code changes)
|
|
99
|
+
gh pr diff "$PR_NUMBER" --repo "$REPO"
|
|
100
|
+
|
|
101
|
+
# List of changed files (for summary context)
|
|
102
|
+
gh pr diff "$PR_NUMBER" --repo "$REPO" --name-only
|
|
103
|
+
```
|
|
104
|
+
|
|
105
|
+
**Diff size guard**: If the diff exceeds ~8000 lines, switch to a summarized
|
|
106
|
+
approach — fetch only filenames + stats, then selectively read the most relevant
|
|
107
|
+
files based on the Jira ticket context:
|
|
108
|
+
|
|
109
|
+
```bash
|
|
110
|
+
DIFF_LINES=$(gh pr diff "$PR_NUMBER" --repo "$REPO" | wc -l)
|
|
111
|
+
if [[ "$DIFF_LINES" -gt 8000 ]]; then
|
|
112
|
+
echo "⚠️ Large PR ($DIFF_LINES lines). Fetching file-level stats and sampling key files."
|
|
113
|
+
gh pr diff "$PR_NUMBER" --repo "$REPO" --stat
|
|
114
|
+
# Then selectively: gh api repos/$REPO/pulls/$PR_NUMBER/files --paginate
|
|
115
|
+
# and read only files matching patterns from the Jira ticket
|
|
116
|
+
fi
|
|
117
|
+
```
|
|
118
|
+
|
|
119
|
+
### 3. Fetch PR Comments & AI Bot Reviews
|
|
120
|
+
|
|
121
|
+
Collect PR comments, review comments, and reviews to surface findings from
|
|
122
|
+
automated reviewers (Gemini Code Assist, GitHub Copilot, CodeRabbit, etc.).
|
|
123
|
+
|
|
124
|
+
```bash
|
|
125
|
+
# PR issue-level comments (general discussion)
|
|
126
|
+
gh api repos/$REPO/issues/$PR_NUMBER/comments --paginate \
|
|
127
|
+
--jq '.[] | {author: .user.login, authorType: .author_association, body: .body, created: .created_at}' \
|
|
128
|
+
| head -200
|
|
129
|
+
|
|
130
|
+
# PR review comments (inline on specific lines of code)
|
|
131
|
+
gh api repos/$REPO/pulls/$PR_NUMBER/comments --paginate \
|
|
132
|
+
--jq '.[] | {author: .user.login, path: .path, line: .line, body: .body, created: .created_at}' \
|
|
133
|
+
| head -200
|
|
134
|
+
|
|
135
|
+
# PR reviews (approve/request-changes/comment with body)
|
|
136
|
+
gh api repos/$REPO/pulls/$PR_NUMBER/reviews --paginate \
|
|
137
|
+
--jq '.[] | {author: .user.login, state: .state, body: .body, submitted: .submitted_at}' \
|
|
138
|
+
| head -200
|
|
139
|
+
```
|
|
140
|
+
|
|
141
|
+
**AI bot detection**: Identify comments from known automated reviewers by
|
|
142
|
+
matching author login patterns:
|
|
143
|
+
|
|
144
|
+
| Bot | Login Pattern |
|
|
145
|
+
|-----|---------------|
|
|
146
|
+
| Gemini Code Assist | `gemini-code-assist[bot]` |
|
|
147
|
+
| GitHub Copilot | `copilot-pull-request-review[bot]`, `github-copilot[bot]` |
|
|
148
|
+
| CodeRabbit | `coderabbitai[bot]` |
|
|
149
|
+
| SonarCloud | `sonarcloud[bot]` |
|
|
150
|
+
| Codacy | `codacy-production[bot]` |
|
|
151
|
+
| Deepsource | `deepsource-autofix[bot]`, `deepsource-io[bot]` |
|
|
152
|
+
|
|
153
|
+
```bash
|
|
154
|
+
# Filter for known bot authors
|
|
155
|
+
KNOWN_BOTS="gemini-code-assist|copilot-pull-request-review|github-copilot|coderabbitai|sonarcloud|codacy-production|deepsource"
|
|
156
|
+
|
|
157
|
+
# Bot issue comments
|
|
158
|
+
gh api repos/$REPO/issues/$PR_NUMBER/comments --paginate \
|
|
159
|
+
--jq "[.[] | select(.user.login | test(\"$KNOWN_BOTS\"))]"
|
|
160
|
+
|
|
161
|
+
# Bot review comments (inline)
|
|
162
|
+
gh api repos/$REPO/pulls/$PR_NUMBER/comments --paginate \
|
|
163
|
+
--jq "[.[] | select(.user.login | test(\"$KNOWN_BOTS\"))]"
|
|
164
|
+
|
|
165
|
+
# Bot reviews
|
|
166
|
+
gh api repos/$REPO/pulls/$PR_NUMBER/reviews --paginate \
|
|
167
|
+
--jq "[.[] | select(.user.login | test(\"$KNOWN_BOTS\"))]"
|
|
168
|
+
```
|
|
169
|
+
|
|
170
|
+
**How to use bot findings in the review:**
|
|
171
|
+
|
|
172
|
+
- **Agree/Disagree**: For each substantive bot finding, state whether you agree
|
|
173
|
+
or disagree and why. Bot tools can produce false positives.
|
|
174
|
+
- **Incorporate valid findings**: If a bot found a real issue (bug, security
|
|
175
|
+
concern, missing edge case), include it in the Code Observations section
|
|
176
|
+
and credit the source (e.g., "Gemini Code Assist flagged...").
|
|
177
|
+
- **Dismiss false positives**: If a bot finding is incorrect or irrelevant,
|
|
178
|
+
note it briefly with reasoning so the PR author can ignore it confidently.
|
|
179
|
+
- **Resolved vs unresolved**: Check if the bot's comment was addressed in a
|
|
180
|
+
subsequent commit. If resolved, note it as such.
|
|
181
|
+
|
|
182
|
+
Add a dedicated section to the review report:
|
|
183
|
+
|
|
184
|
+
```markdown
|
|
185
|
+
## AI Bot Review Findings
|
|
186
|
+
|
|
187
|
+
### {Bot Name} ({N} comments)
|
|
188
|
+
|
|
189
|
+
| # | File | Finding | Our Assessment |
|
|
190
|
+
|---|------|---------|----------------|
|
|
191
|
+
| 1 | {path:line} | {summary of bot finding} | ✅ Agree / ❌ Disagree — {reason} / ✔️ Resolved |
|
|
192
|
+
|
|
193
|
+
{If no bot comments found: "No automated reviewer comments found on this PR."}
|
|
194
|
+
```
|
|
195
|
+
|
|
196
|
+
### 4. Fetch Jira Ticket Data
|
|
197
|
+
|
|
198
|
+
Use the Jira REST API to get the ticket description and acceptance criteria.
|
|
199
|
+
|
|
200
|
+
```bash
|
|
201
|
+
# Fetch issue with relevant fields
|
|
202
|
+
curl -s -u "$JIRA_USERNAME:$JIRA_API_TOKEN" \
|
|
203
|
+
-H "Content-Type: application/json" \
|
|
204
|
+
"$JIRA_INSTANCE/rest/api/3/issue/$JIRA_KEY?fields=summary,description,status,priority,issuetype,labels,components,customfield_10021,customfield_10022,customfield_10035" \
|
|
205
|
+
| jq '.'
|
|
206
|
+
```
|
|
207
|
+
|
|
208
|
+
**Acceptance criteria extraction**: The AC field varies per Jira instance.
|
|
209
|
+
Try the common custom fields in order:
|
|
210
|
+
|
|
211
|
+
```bash
|
|
212
|
+
# Try customfield_10021, then 10022, then 10035
|
|
213
|
+
for FIELD in customfield_10021 customfield_10022 customfield_10035; do
|
|
214
|
+
AC=$(echo "$JIRA_RESPONSE" | jq -r ".fields.$FIELD // empty")
|
|
215
|
+
if [[ -n "$AC" ]]; then
|
|
216
|
+
echo "✅ Acceptance criteria found in $FIELD"
|
|
217
|
+
break
|
|
218
|
+
fi
|
|
219
|
+
done
|
|
220
|
+
|
|
221
|
+
# Fallback: check if AC is embedded in the description itself
|
|
222
|
+
if [[ -z "$AC" ]]; then
|
|
223
|
+
echo "⚠️ No dedicated AC field found. Will extract from description."
|
|
224
|
+
fi
|
|
225
|
+
```
|
|
226
|
+
|
|
227
|
+
Also fetch the ticket's **subtasks** and **linked issues** for additional context:
|
|
228
|
+
```bash
|
|
229
|
+
curl -s -u "$JIRA_USERNAME:$JIRA_API_TOKEN" \
|
|
230
|
+
"$JIRA_INSTANCE/rest/api/3/issue/$JIRA_KEY?fields=subtasks,issuelinks" \
|
|
231
|
+
| jq '.fields.subtasks, .fields.issuelinks'
|
|
232
|
+
```
|
|
233
|
+
|
|
234
|
+
### 5. Build the Review Context
|
|
235
|
+
|
|
236
|
+
Assemble all gathered data into a structured prompt for Claude to reason over.
|
|
237
|
+
This is not a prompt you write — Claude Code IS the LLM. Present the data
|
|
238
|
+
in a structured format so Claude can analyze it directly:
|
|
239
|
+
|
|
240
|
+
```markdown
|
|
241
|
+
## PR Review Context
|
|
242
|
+
|
|
243
|
+
### Jira Ticket: {JIRA_KEY}
|
|
244
|
+
**Summary**: {ticket.summary}
|
|
245
|
+
**Status**: {ticket.status}
|
|
246
|
+
**Type**: {ticket.issuetype}
|
|
247
|
+
**Priority**: {ticket.priority}
|
|
248
|
+
|
|
249
|
+
#### Description
|
|
250
|
+
{ticket.description — rendered from ADF to markdown}
|
|
251
|
+
|
|
252
|
+
#### Acceptance Criteria
|
|
253
|
+
{acceptance_criteria — numbered list}
|
|
254
|
+
|
|
255
|
+
---
|
|
256
|
+
|
|
257
|
+
### Pull Request: {REPO}#{PR_NUMBER}
|
|
258
|
+
**Title**: {pr.title}
|
|
259
|
+
**Author**: {pr.author}
|
|
260
|
+
**Branch**: {pr.headRefName} → {pr.baseRefName}
|
|
261
|
+
**State**: {pr.state} | Draft: {pr.isDraft}
|
|
262
|
+
|
|
263
|
+
#### PR Description
|
|
264
|
+
{pr.body}
|
|
265
|
+
|
|
266
|
+
#### Changed Files
|
|
267
|
+
{file list with +/- stats}
|
|
268
|
+
|
|
269
|
+
#### Full Diff
|
|
270
|
+
{diff content — or sampled files for large PRs}
|
|
271
|
+
|
|
272
|
+
#### AI Bot Comments
|
|
273
|
+
{bot_name: [{path, line, finding}...] — or "None found"}
|
|
274
|
+
|
|
275
|
+
#### Human Review Comments
|
|
276
|
+
{reviewer: [{path, line, comment}...] — or "None found"}
|
|
277
|
+
```
|
|
278
|
+
|
|
279
|
+
### 6. Perform the Review
|
|
280
|
+
|
|
281
|
+
Analyze the PR against the Jira ticket using these review dimensions:
|
|
282
|
+
|
|
283
|
+
#### 5a. Acceptance Criteria Compliance
|
|
284
|
+
|
|
285
|
+
For EACH acceptance criterion, determine:
|
|
286
|
+
- **✅ Met**: The diff clearly implements the criterion.
|
|
287
|
+
- **⚠️ Partially Met**: Some aspects are present but incomplete or unclear.
|
|
288
|
+
- **❌ Not Met**: No evidence in the diff that this criterion is addressed.
|
|
289
|
+
- **🔍 Unable to Verify**: Requires runtime testing, external system, or
|
|
290
|
+
context not available in the diff (e.g., "works on mobile").
|
|
291
|
+
|
|
292
|
+
#### 5b. Description Alignment
|
|
293
|
+
|
|
294
|
+
Check if the PR's changes match the ticket description:
|
|
295
|
+
- Does the PR address the core problem/feature described?
|
|
296
|
+
- Are there changes in the PR that are NOT related to the ticket? (scope creep)
|
|
297
|
+
- Are there aspects of the description NOT addressed by the PR? (gaps)
|
|
298
|
+
|
|
299
|
+
#### 5c. Code Quality Observations (lightweight)
|
|
300
|
+
|
|
301
|
+
Not a full code review — focus on red flags:
|
|
302
|
+
- Obviously missing error handling in new code
|
|
303
|
+
- Hardcoded values that should be configurable
|
|
304
|
+
- Missing tests for new functionality
|
|
305
|
+
- Potential breaking changes
|
|
306
|
+
|
|
307
|
+
### 7. Generate the Review Report
|
|
308
|
+
|
|
309
|
+
Output a structured report:
|
|
310
|
+
|
|
311
|
+
```markdown
|
|
312
|
+
# PR Review: {REPO}#{PR_NUMBER} ↔ {JIRA_KEY}
|
|
313
|
+
|
|
314
|
+
**Date**: {today}
|
|
315
|
+
**Reviewer**: Claude Code (automated)
|
|
316
|
+
**Overall Verdict**: ✅ Approved | ⚠️ Needs Attention | ❌ Does Not Meet Criteria
|
|
317
|
+
|
|
318
|
+
---
|
|
319
|
+
|
|
320
|
+
## Acceptance Criteria Compliance
|
|
321
|
+
|
|
322
|
+
| # | Criterion | Status | Evidence |
|
|
323
|
+
|---|-----------|--------|----------|
|
|
324
|
+
| 1 | {criterion_1} | ✅/⚠️/❌/🔍 | {file:line or explanation} |
|
|
325
|
+
| 2 | {criterion_2} | ✅/⚠️/❌/🔍 | {file:line or explanation} |
|
|
326
|
+
| ... | | | |
|
|
327
|
+
|
|
328
|
+
**Score**: {met}/{total} criteria met ({percentage}%)
|
|
329
|
+
|
|
330
|
+
## Description Alignment
|
|
331
|
+
|
|
332
|
+
### ✅ Addressed
|
|
333
|
+
- {aspect 1 from description that IS covered}
|
|
334
|
+
|
|
335
|
+
### ❌ Gaps
|
|
336
|
+
- {aspect from description NOT covered by the PR}
|
|
337
|
+
|
|
338
|
+
### ⚠️ Out of Scope
|
|
339
|
+
- {changes in PR not related to the ticket}
|
|
340
|
+
|
|
341
|
+
## Code Observations
|
|
342
|
+
- {any red flags, brief}
|
|
343
|
+
|
|
344
|
+
## AI Bot Review Findings
|
|
345
|
+
|
|
346
|
+
{If bot comments were found, add a subsection per bot:}
|
|
347
|
+
|
|
348
|
+
### {Bot Name} ({N} comments)
|
|
349
|
+
|
|
350
|
+
| # | File | Finding | Our Assessment |
|
|
351
|
+
|---|------|---------|----------------|
|
|
352
|
+
| 1 | {path:line} | {summary of bot finding} | ✅ Agree / ❌ Disagree — {reason} / ✔️ Resolved |
|
|
353
|
+
|
|
354
|
+
{If no bot comments found: "No automated reviewer comments found on this PR."}
|
|
355
|
+
|
|
356
|
+
## Verdict & Recommendation
|
|
357
|
+
|
|
358
|
+
{Summary paragraph explaining the overall assessment}
|
|
359
|
+
|
|
360
|
+
**Action**: {APPROVE | REQUEST_CHANGES | CONVERT_TO_DRAFT}
|
|
361
|
+
```
|
|
362
|
+
|
|
363
|
+
### 8. Take Action (Optional)
|
|
364
|
+
|
|
365
|
+
Based on the verdict and flags:
|
|
366
|
+
|
|
367
|
+
#### If `--auto-draft` AND verdict is ❌:
|
|
368
|
+
|
|
369
|
+
```bash
|
|
370
|
+
# Convert PR to draft using GitHub GraphQL API
|
|
371
|
+
PR_NODE_ID=$(gh pr view "$PR_NUMBER" --repo "$REPO" --json id --jq '.id')
|
|
372
|
+
gh api graphql -f query='
|
|
373
|
+
mutation {
|
|
374
|
+
convertPullRequestToDraft(input: {pullRequestId: "'"$PR_NODE_ID"'"}) {
|
|
375
|
+
pullRequest { isDraft }
|
|
376
|
+
}
|
|
377
|
+
}
|
|
378
|
+
'
|
|
379
|
+
echo "🔒 PR #$PR_NUMBER converted to draft — criteria not met."
|
|
380
|
+
```
|
|
381
|
+
|
|
382
|
+
#### Always: Post review as PR comment
|
|
383
|
+
|
|
384
|
+
```bash
|
|
385
|
+
# Post the review report as a PR comment
|
|
386
|
+
gh pr comment "$PR_NUMBER" --repo "$REPO" --body "$REVIEW_REPORT"
|
|
387
|
+
```
|
|
388
|
+
|
|
389
|
+
#### Optionally: Add labels
|
|
390
|
+
|
|
391
|
+
```bash
|
|
392
|
+
# Tag the PR with review status
|
|
393
|
+
if [[ "$VERDICT" == "approved" ]]; then
|
|
394
|
+
gh pr edit "$PR_NUMBER" --repo "$REPO" --add-label "review:passed"
|
|
395
|
+
elif [[ "$VERDICT" == "needs-attention" ]]; then
|
|
396
|
+
gh pr edit "$PR_NUMBER" --repo "$REPO" --add-label "review:needs-attention"
|
|
397
|
+
else
|
|
398
|
+
gh pr edit "$PR_NUMBER" --repo "$REPO" --add-label "review:blocked"
|
|
399
|
+
fi
|
|
400
|
+
```
|
|
401
|
+
|
|
402
|
+
### 9. Save Report (Optional)
|
|
403
|
+
|
|
404
|
+
If the user confirms, persist the review:
|
|
405
|
+
|
|
406
|
+
```bash
|
|
407
|
+
mkdir -p artifacts/reviews/
|
|
408
|
+
REPORT_FILE="artifacts/reviews/PR-${PR_NUMBER}-${JIRA_KEY}-review.md"
|
|
409
|
+
# Save report to file
|
|
410
|
+
git add "$REPORT_FILE"
|
|
411
|
+
git commit -m "review: PR #${PR_NUMBER} against ${JIRA_KEY}"
|
|
412
|
+
```
|
|
413
|
+
|
|
414
|
+
### 10. Output Summary
|
|
415
|
+
|
|
416
|
+
```
|
|
417
|
+
✅ PR Review Complete: {REPO}#{PR_NUMBER} ↔ {JIRA_KEY}
|
|
418
|
+
|
|
419
|
+
Verdict: {verdict_emoji} {verdict_text}
|
|
420
|
+
Criteria: {met}/{total} met ({percentage}%)
|
|
421
|
+
|
|
422
|
+
{if auto-draft triggered}
|
|
423
|
+
🔒 PR converted to draft — criteria not met.
|
|
424
|
+
{end if}
|
|
425
|
+
|
|
426
|
+
Comment posted: {pr_comment_url}
|
|
427
|
+
Report saved: artifacts/reviews/PR-{PR_NUMBER}-{JIRA_KEY}-review.md
|
|
428
|
+
|
|
429
|
+
To approve the PR:
|
|
430
|
+
gh pr review {PR_NUMBER} --repo {REPO} --approve
|
|
431
|
+
|
|
432
|
+
To request changes:
|
|
433
|
+
gh pr review {PR_NUMBER} --repo {REPO} --request-changes --body "..."
|
|
434
|
+
```
|
|
435
|
+
|
|
436
|
+
## Edge Cases
|
|
437
|
+
|
|
438
|
+
- **No acceptance criteria found**: Use the ticket description as the evaluation
|
|
439
|
+
baseline. Warn that the review is based on description only.
|
|
440
|
+
- **PR already merged**: Warn and still produce the review (useful for auditing).
|
|
441
|
+
- **PR is already draft**: Skip the convert-to-draft step, note it in the report.
|
|
442
|
+
- **Private repo**: `gh` handles auth; Jira token handles Jira. No extra steps.
|
|
443
|
+
- **Jira ticket not found**: Error with clear message suggesting to verify the key
|
|
444
|
+
and server URL.
|
|
445
|
+
- **Large PR (>8000 lines)**: Use file-level stats + selective file reading.
|
|
446
|
+
Note in the report which files were fully reviewed vs. summarized.
|
|
447
|
+
- **Bot comments with outdated suggestions**: If a bot comment references code
|
|
448
|
+
that was changed in a subsequent commit, mark the finding as "Resolved" rather
|
|
449
|
+
than evaluating the stale suggestion.
|
|
450
|
+
- **Conflicting bot opinions**: If two bots disagree (e.g., Gemini says X is fine,
|
|
451
|
+
Copilot flags X), evaluate the code independently and state which bot is correct.
|
|
452
|
+
- **ADF (Atlassian Document Format)**: Jira Cloud v3 returns description as ADF JSON.
|
|
453
|
+
Parse it to extract text content, or use `renderedFields` expand:
|
|
454
|
+
```bash
|
|
455
|
+
curl ... "$JIRA_INSTANCE/rest/api/3/issue/$JIRA_KEY?expand=renderedFields" \
|
|
456
|
+
| jq '.renderedFields.description'
|
|
457
|
+
```
|
|
458
|
+
|
|
459
|
+
## Jira Description Rendering
|
|
460
|
+
|
|
461
|
+
Jira Cloud v3 API returns descriptions in ADF (Atlassian Document Format).
|
|
462
|
+
To get readable text, use the `renderedFields` expansion which returns HTML,
|
|
463
|
+
then convert to markdown-ish text:
|
|
464
|
+
|
|
465
|
+
```bash
|
|
466
|
+
# Get rendered (HTML) description
|
|
467
|
+
RENDERED=$(curl -s -u "$JIRA_USERNAME:$JIRA_API_TOKEN" \
|
|
468
|
+
"$JIRA_INSTANCE/rest/api/3/issue/$JIRA_KEY?expand=renderedFields" \
|
|
469
|
+
| jq -r '.renderedFields.description')
|
|
470
|
+
|
|
471
|
+
# Strip HTML tags for plain text (basic)
|
|
472
|
+
DESCRIPTION=$(echo "$RENDERED" | sed 's/<[^>]*>//g' | sed '/^$/d')
|
|
473
|
+
```
|
|
474
|
+
|
|
475
|
+
## Reference
|
|
476
|
+
|
|
477
|
+
- Existing code review: `.claude/commands/sdd-codereview.md`
|
|
478
|
+
- Code reviewer agent: `.claude/agents/code-reviewer.md`
|
|
479
|
+
- GitHub CLI docs: `gh pr --help`
|
|
480
|
+
- Jira REST API v3: `https://developer.atlassian.com/cloud/jira/platform/rest/v3/`
|
|
@@ -0,0 +1,176 @@
|
|
|
1
|
+
---
|
|
2
|
+
description: Explore a feature idea by generating multiple approaches with library and code references, then produce a brainstorm document that feeds into /sdd-spec.
|
|
3
|
+
---
|
|
4
|
+
|
|
5
|
+
# /sdd-brainstorm — Structured Idea Exploration
|
|
6
|
+
|
|
7
|
+
Explore a feature idea by generating multiple approaches with library and code references,
|
|
8
|
+
then produce a brainstorm document that feeds directly into `/sdd-spec`.
|
|
9
|
+
|
|
10
|
+
```
|
|
11
|
+
/sdd-brainstorm → (review) → /sdd-spec → /sdd-task → /sdd-start → implement
|
|
12
|
+
```
|
|
13
|
+
|
|
14
|
+
## Guardrails
|
|
15
|
+
- **No implementation code** — this is about ideas, references, and tradeoffs.
|
|
16
|
+
- Output is a brainstorm document, not a spec or task.
|
|
17
|
+
- Always use the template at `sdd/templates/brainstorm.md`.
|
|
18
|
+
- Include concrete library/package references with versions when possible.
|
|
19
|
+
- Reference existing codebase modules that would be reused or extended.
|
|
20
|
+
- **Always commit the brainstorm file** so other commands and worktrees can see it.
|
|
21
|
+
|
|
22
|
+
## Steps
|
|
23
|
+
|
|
24
|
+
### 1. Parse Input
|
|
25
|
+
Extract from the user's invocation:
|
|
26
|
+
- **topic / feature-name**: slug-friendly, kebab-case. If not provided, ask.
|
|
27
|
+
- **free-form notes**: anything after `--`, used as initial context.
|
|
28
|
+
|
|
29
|
+
### 2. Understand the Goal
|
|
30
|
+
Before generating options, establish:
|
|
31
|
+
- **Problem**: What specific problem are we solving?
|
|
32
|
+
- **User**: Who is affected? (end users, developers, ops)
|
|
33
|
+
- **Constraints**: Performance targets, compatibility, timeline, existing patterns.
|
|
34
|
+
|
|
35
|
+
If the user provided notes, extract these from context. Otherwise, ask briefly.
|
|
36
|
+
|
|
37
|
+
### 3. Interactive Discovery (Mandatory — minimum 2 rounds)
|
|
38
|
+
|
|
39
|
+
**DO NOT skip this step.** Before writing anything, conduct at least **two full rounds**
|
|
40
|
+
of questions-and-answers with the user to deeply understand the feature.
|
|
41
|
+
|
|
42
|
+
**Round 1 — Clarify intent and scope:**
|
|
43
|
+
Ask 3–5 targeted questions about:
|
|
44
|
+
- The core use case and expected behavior.
|
|
45
|
+
- Integration points with existing components.
|
|
46
|
+
- Non-obvious constraints (performance, backwards compatibility, security).
|
|
47
|
+
- What success looks like for this feature.
|
|
48
|
+
|
|
49
|
+
Wait for the user's answers before proceeding.
|
|
50
|
+
|
|
51
|
+
**Round 2 — Drill into gaps and tradeoffs:**
|
|
52
|
+
Based on the user's Round 1 answers, ask 3–5 follow-up questions about:
|
|
53
|
+
- Ambiguities or contradictions in the answers.
|
|
54
|
+
- Edge cases and failure scenarios.
|
|
55
|
+
- Priority between competing concerns (e.g., speed vs. flexibility).
|
|
56
|
+
- Any assumptions you're making that need validation.
|
|
57
|
+
|
|
58
|
+
Wait for the user's answers before proceeding.
|
|
59
|
+
|
|
60
|
+
**Additional rounds** are encouraged if:
|
|
61
|
+
- Core architectural questions remain unresolved.
|
|
62
|
+
- The user's answers reveal new dimensions not covered.
|
|
63
|
+
- Tradeoffs need explicit user decisions.
|
|
64
|
+
|
|
65
|
+
**Rule:** Only proceed to codebase research and option generation once you are confident
|
|
66
|
+
that all core questions have been answered. If a question is critical and unanswered,
|
|
67
|
+
ask — do not assume.
|
|
68
|
+
|
|
69
|
+
### 4. Research the Codebase & Build Code Context
|
|
70
|
+
Scan the project for relevant existing components:
|
|
71
|
+
- Search for related modules, classes, and patterns.
|
|
72
|
+
- Identify reusable code that any solution should build on.
|
|
73
|
+
- Note existing dependencies that could be leveraged.
|
|
74
|
+
|
|
75
|
+
**CRITICAL — Code Context Capture:**
|
|
76
|
+
This is where hallucinations are prevented. For every class, method, or module
|
|
77
|
+
you reference in the brainstorm, you MUST:
|
|
78
|
+
|
|
79
|
+
1. **Read the actual source file** and record exact signatures (class name, method names,
|
|
80
|
+
parameter types, return types) with file path and line numbers.
|
|
81
|
+
2. **Verify imports** — confirm `from parrot.X import Y` actually works by checking
|
|
82
|
+
`__init__.py` files and module structure.
|
|
83
|
+
3. **Capture user-provided code** — if the user pasted code snippets during discovery
|
|
84
|
+
(Steps 2–3), preserve them verbatim in the Code Context section.
|
|
85
|
+
4. **Note what does NOT exist** — if you searched for something plausible that turned
|
|
86
|
+
out not to exist, record it in the "Does NOT Exist" subsection. This is critical
|
|
87
|
+
for preventing downstream agents from hallucinating these references.
|
|
88
|
+
|
|
89
|
+
### 5. Generate Options
|
|
90
|
+
Produce **at least 3** distinct approaches. For each option:
|
|
91
|
+
- Descriptive name and explanation (WHAT, not HOW).
|
|
92
|
+
- Pros and cons (be honest about tradeoffs).
|
|
93
|
+
- Effort estimate (Low / Medium / High).
|
|
94
|
+
- **Libraries / Tools**: table of packages with purpose and notes.
|
|
95
|
+
- **Existing Code to Reuse**: specific paths and descriptions.
|
|
96
|
+
|
|
97
|
+
Include at least one unconventional or less obvious approach.
|
|
98
|
+
|
|
99
|
+
### 6. Recommend
|
|
100
|
+
Select one option and explain the reasoning:
|
|
101
|
+
- Reference specific tradeoffs from the options.
|
|
102
|
+
- Explain what you're trading off and why it's acceptable.
|
|
103
|
+
|
|
104
|
+
### 7. Describe the Feature
|
|
105
|
+
Write a detailed feature description based on the recommended option:
|
|
106
|
+
- **User-facing behavior**: what the user sees/experiences.
|
|
107
|
+
- **Internal behavior**: high-level flow and responsibilities (no code).
|
|
108
|
+
- **Edge cases & error handling**: boundary conditions, failure modes.
|
|
109
|
+
|
|
110
|
+
### 8. Map to SDD Structures
|
|
111
|
+
Fill in the remaining template sections:
|
|
112
|
+
- **Capabilities**: new and modified (kebab-case identifiers).
|
|
113
|
+
- **Impact & Integration**: affected components table.
|
|
114
|
+
- **Open Questions**: unresolved items with owners.
|
|
115
|
+
|
|
116
|
+
### 9. Parallelism Assessment
|
|
117
|
+
Evaluate the feature's decomposition potential for parallel development:
|
|
118
|
+
|
|
119
|
+
- **Internal parallelism**: Can this feature's tasks be split into independent
|
|
120
|
+
worktrees? (e.g., separate toolkits, isolated loaders, unrelated endpoints)
|
|
121
|
+
- **Cross-feature independence**: Does this feature conflict with any in-flight
|
|
122
|
+
specs? List shared files or modules.
|
|
123
|
+
- **Recommended isolation**: `per-spec` (all tasks sequential in one worktree)
|
|
124
|
+
or `mixed` (some tasks can use individual worktrees).
|
|
125
|
+
- **Rationale**: Brief explanation of why the recommended isolation makes sense.
|
|
126
|
+
|
|
127
|
+
### 10. Save and Commit
|
|
128
|
+
1. Read the template at `sdd/templates/brainstorm.md`.
|
|
129
|
+
2. Create `sdd/proposals/<feature-name>.brainstorm.md` with today's date.
|
|
130
|
+
3. Set `Status: exploration`.
|
|
131
|
+
4. **Commit (ONLY the brainstorm file — NEVER unrelated changes):**
|
|
132
|
+
```bash
|
|
133
|
+
# Unstage everything first to ensure a clean staging area
|
|
134
|
+
git reset HEAD
|
|
135
|
+
# Stage ONLY the brainstorm file — NEVER use "git add ." or "git add -A"
|
|
136
|
+
git add sdd/proposals/<feature-name>.brainstorm.md
|
|
137
|
+
# Verify ONLY the brainstorm file is staged
|
|
138
|
+
git diff --cached --name-only
|
|
139
|
+
# If ANY other files appear, run "git reset HEAD" and start over
|
|
140
|
+
git commit -m "sdd: add brainstorm for <feature-name>"
|
|
141
|
+
```
|
|
142
|
+
|
|
143
|
+
### 11. Output
|
|
144
|
+
```
|
|
145
|
+
✅ Brainstorm saved and committed: sdd/proposals/<feature-name>.brainstorm.md
|
|
146
|
+
|
|
147
|
+
Recommended: Option <X> — <n>
|
|
148
|
+
Effort: <Low|Medium|High>
|
|
149
|
+
Worktree isolation: <per-spec|mixed>
|
|
150
|
+
Open questions: <count>
|
|
151
|
+
|
|
152
|
+
Next steps:
|
|
153
|
+
- Review and refine the brainstorm
|
|
154
|
+
- When ready: /sdd-spec <feature-name> (uses brainstorm as input)
|
|
155
|
+
```
|
|
156
|
+
|
|
157
|
+
## How sdd-spec Consumes This Document
|
|
158
|
+
|
|
159
|
+
When `/sdd-spec` is invoked with a feature name that has a `.brainstorm.md` in `sdd/proposals/`:
|
|
160
|
+
- **Problem Statement** → Spec Section 1 (Motivation & Business Requirements)
|
|
161
|
+
- **Constraints** → Spec Section 5 (Acceptance Criteria)
|
|
162
|
+
- **Recommended Option** → Spec Section 2 (Architectural Design)
|
|
163
|
+
- **Libraries / Tools** → Spec Section 7 (External Dependencies)
|
|
164
|
+
- **Feature Description** → Spec Section 2 (Overview + Integration Points)
|
|
165
|
+
- **Capabilities** → Spec Section 3 (Module Breakdown)
|
|
166
|
+
- **Impact & Integration** → Spec Section 2 (Integration Points)
|
|
167
|
+
- **Code Context** → Spec Section 6 (Codebase Contract) — **carries forward verified code**
|
|
168
|
+
- **Parallelism Assessment** → Spec Worktree Strategy section
|
|
169
|
+
- **Open Questions** → Spec Section 8
|
|
170
|
+
|
|
171
|
+
## Reference
|
|
172
|
+
- Brainstorm template: `sdd/templates/brainstorm.md`
|
|
173
|
+
- Proposal template: `sdd/templates/proposal.md`
|
|
174
|
+
- Spec template: `sdd/templates/spec.md`
|
|
175
|
+
- SDD methodology: `sdd/WORKFLOW.md`
|
|
176
|
+
- Worktree policy: `CLAUDE.md` (section "Worktree Policy")
|