flowtask 5.12.3__tar.gz → 5.12.5__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.12.3 → flowtask-5.12.5}/PKG-INFO +6 -5
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/components/CallAnalysis.py +83 -1
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/components/OpenWithBase.py +8 -10
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/components/OpenWithPandas.py +15 -9
- flowtask-5.12.5/flowtask/components/ParrotKnowledgeBuilder/__init__.py +5 -0
- flowtask-5.12.5/flowtask/components/ParrotKnowledgeBuilder/loader.py +439 -0
- flowtask-5.12.5/flowtask/components/ParrotKnowledgeBuilder/payload.py +26 -0
- flowtask-5.12.5/flowtask/components/SearchQuery.py +230 -0
- flowtask-5.12.5/flowtask/components/tFlatten.py +141 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/documentation/categories.json +1 -0
- flowtask-5.12.5/flowtask/documentation/generated/components/CreateReport.doc.json +49 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/documentation/generated/components/PandasToFile.doc.json +4 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/documentation/generated/components/RESTClient.doc.json +4 -0
- flowtask-5.12.5/flowtask/documentation/generated/components/SearchQuery.doc.json +53 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/documentation/generated/index.json +403 -508
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/events/events/notify_event.py +8 -1
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/executors/local.py +9 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/interfaces/__init__.py +4 -0
- flowtask-5.12.5/flowtask/interfaces/search.py +589 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/interfaces/workday/handlers/import_time_clock_events.py +2 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/interfaces/workday/handlers/put_time_clock_events.py +2 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/interfaces/workday/handlers/time_blocks.py +5 -1
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/interfaces/workday/models/clock_event.py +5 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/parsers/argparser.py +12 -0
- flowtask-5.12.5/flowtask/parsers/base.pyx +76 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/runner.py +65 -53
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/scheduler/functions.py +31 -6
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/tasks/abstract.py +12 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/version.py +1 -1
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask.egg-info/PKG-INFO +6 -5
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask.egg-info/SOURCES.txt +8 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask.egg-info/requires.txt +5 -4
- {flowtask-5.12.3 → flowtask-5.12.5}/pyproject.toml +30 -8
- flowtask-5.12.3/flowtask/parsers/base.pyx +0 -59
- {flowtask-5.12.3 → flowtask-5.12.5}/CONTRIBUTING.md +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/INSTALL +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/LICENSE +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/MANIFEST.in +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/README.md +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/__init__.py +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/__main__.py +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/bots/__init__.py +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/bots/check.py +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/bots/codebot.py +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/components/ASPX.py +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/components/ATT.py +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/components/AddDataset.py +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/components/Amazon.py +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/components/AutoTask.py +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/components/Azure.py +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/components/AzureUsers.py +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/components/BaseAction.py +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/components/BaseLoop.py +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/components/BestBuy.py +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/components/CSVToGCS.py +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/components/CallSummary.py +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/components/CensusData.py +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/components/CensusVariables.py +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/components/CompanyScraper/__init__.py +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/components/CompanyScraper/parsers/__init__.py +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/components/CompanyScraper/parsers/base.py +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/components/CompanyScraper/parsers/explorium.py +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/components/CompanyScraper/parsers/leadiq.py +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/components/CompanyScraper/parsers/rocket.py +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/components/CompanyScraper/parsers/siccode.py +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/components/CompanyScraper/parsers/visualvisitor.py +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/components/CompanyScraper/parsers/zoominfo.py +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/components/CompanyScraper/scrapper.py +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/components/CopyFromBase.py +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/components/CopyFromS3.py +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/components/CopyFromSharepoint.py +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/components/CopyTo.py +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/components/CopyToBigQuery.py +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/components/CopyToFileBase.py +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/components/CopyToMongoDB.py +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/components/CopyToPg.py +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/components/CopyToRethink.py +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/components/CopyToS3.py +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/components/CopyToSharepoint.py +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/components/Costco.py +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/components/CreateGCSBucket.py +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/components/CreateReport/CreateReport.py +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/components/CreateReport/__init__.py +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/components/CreateReport/charts/__init__.py +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/components/CreateReport/charts/bar.py +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/components/CreateReport/charts/base.py +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/components/CreateReport/charts/pie.py +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/components/CreateReport/utils.py +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/components/CustomerSatisfaction.py +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/components/DataInput.py +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/components/DateList.py +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/components/DbClient.py +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/components/DialPad.py +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/components/DispatchMe.py +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/components/DocumentDBQuery.py +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/components/DownloadFrom.py +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/components/DownloadFromD2L.py +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/components/DownloadFromFTP.py +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/components/DownloadFromGamma.py +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/components/DownloadFromIMAP.py +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/components/DownloadFromS3.py +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/components/DownloadFromSFTP.py +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/components/DownloadFromSharepoint.py +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/components/DownloadFromSmartSheet.py +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/components/DownloadFromSmartsheet.py +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/components/DownloadS3File.py +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/components/Dummy.py +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/components/DuplicatePhoto.py +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/components/EmployeeEvaluation.py +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/components/ExecuteSQL.py +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/components/ExtractHTML.py +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/components/ExtractTranscript.py +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/components/FileBase.py +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/components/FileCopy.py +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/components/FileDelete.py +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/components/FileExists.py +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/components/FileIteratorDelete.py +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/components/FileList.py +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/components/FileOpen.py +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/components/FileRead.py +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/components/FileRename.py +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/components/FilterIf.py +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/components/FilterRows/FilterRows.py +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/components/FilterRows/__init__.py +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/components/FilterRows/functions.py +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/components/GCSToBigQuery.py +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/components/GenData.py +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/components/GoogleA4.py +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/components/GoogleGeoCoding.py +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/components/GooglePlaces.py +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/components/GoogleSearch.py +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/components/HTTPClient.py +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/components/ICIMS.py +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/components/IF.py +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/components/IcimsFolderCopy.py +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/components/ImageFeatures/__init__.py +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/components/ImageFeatures/process.py +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/components/IteratorBase.py +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/components/LeadIQ.py +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/components/Loop.py +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/components/Lowes.py +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/components/MS365Usage.py +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/components/MSTeamsMessages.py +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/components/MarkdownMaker.py +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/components/MarketClustering.py +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/components/MergeFileList.py +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/components/MergeFiles.py +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/components/MilvusOutput.py +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/components/NearByStores.py +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/components/NetworkNinja/__init__.py +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/components/NetworkNinja/models/__init__.py +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/components/NetworkNinja/models/abstract.py +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/components/NetworkNinja/models/account.py +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/components/NetworkNinja/models/client.py +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/components/NetworkNinja/models/district.py +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/components/NetworkNinja/models/events.py +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/components/NetworkNinja/models/forms.py +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/components/NetworkNinja/models/market.py +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/components/NetworkNinja/models/organization.py +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/components/NetworkNinja/models/photos.py +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/components/NetworkNinja/models/project.py +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/components/NetworkNinja/models/region.py +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/components/NetworkNinja/models/store.py +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/components/NetworkNinja/models/user.py +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/components/NetworkNinja/router.py +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/components/NetworkNinjaClaims.py +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/components/NextStopAgent.py +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/components/Odoo.py +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/components/OdooInjector.py +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/components/OpenFromXML.py +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/components/OpenStreetMap.py +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/components/OpenWeather.py +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/components/PDFGenerator.py +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/components/PGPDecrypt.py +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/components/PandasIterator.py +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/components/PandasToFile.py +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/components/PandasToPowerPoint.py +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/components/Paradox.py +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/components/ParamIterator.py +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/components/ParrotLoader/__init__.py +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/components/ParrotLoader/loader.py +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/components/ParseHTML.py +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/components/PgVectorOutput.py +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/components/PlacerStores.py +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/components/PlanogramCompliance.py +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/components/PodcastMaker.py +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/components/Pokemon.py +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/components/PositiveBot.py +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/components/PowerPointSlide.py +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/components/PrintMessage.py +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/components/ProductCompetitors/__init__.py +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/components/ProductCompetitors/parsers/__init__.py +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/components/ProductCompetitors/parsers/base.py +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/components/ProductCompetitors/parsers/bestbuy.py +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/components/ProductCompetitors/parsers/lowes.py +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/components/ProductCompetitors/scrapper.py +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/components/ProductCompliant.py +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/components/ProductInfo/__init__.py +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/components/ProductInfo/parsers/__init__.py +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/components/ProductInfo/parsers/base.py +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/components/ProductInfo/parsers/brother.py +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/components/ProductInfo/parsers/canon.py +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/components/ProductInfo/parsers/epson.py +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/components/ProductInfo/parsers/hp.py +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/components/ProductInfo/parsers/samsung.py +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/components/ProductInfo/scraper.py +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/components/ProductPricing.py +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/components/ProductReportBot.py +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/components/QS.py +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/components/QSBase.py +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/components/QueryIterator.py +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/components/QueryToInsert.py +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/components/QueryToPandas.py +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/components/RESTClient.py +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/components/RethinkDBQuery.py +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/components/Rsync.py +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/components/RunSSH.py +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/components/RunShell.py +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/components/SAPExtraction.py +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/components/SMSAnalysis.py +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/components/SMSSummary.py +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/components/SalesForce.py +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/components/Sassie.py +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/components/SaveImageBank/__init__.py +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/components/SchedulingVisits.py +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/components/ScrapPage.py +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/components/ScrapSearch.py +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/components/ScrapTool.py +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/components/SendEmail.py +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/components/SendNotify/__init__.py +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/components/SendNotify/component.py +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/components/SendNotify/models/__init__.py +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/components/SendNotify/models/abstract.py +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/components/SendNotify/models/zoom.py +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/components/SentimentAnalysis.py +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/components/ServiceScrapper/__init__.py +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/components/ServiceScrapper/parsers/__init__.py +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/components/ServiceScrapper/parsers/base.py +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/components/ServiceScrapper/parsers/costco.py +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/components/ServiceScrapper/scrapper.py +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/components/SetVariables.py +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/components/SplitPDF.py +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/components/Staples.py +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/components/SubTask.py +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/components/SuiteCRM.py +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/components/Switch.py +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/components/TableBase.py +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/components/TableDelete.py +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/components/TableInput.py +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/components/TableOutput/TableOutput.py +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/components/TableOutput/__init__.py +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/components/TableSchema.py +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/components/Target.py +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/components/ThumbnailGenerator.py +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/components/ToPandas.py +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/components/TransformRows/TransformRows.py +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/components/TransformRows/__init__.py +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/components/TransformRows/functions.py +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/components/TransposeRows.py +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/components/UPCDatabase.py +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/components/UnGzip.py +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/components/Uncompress.py +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/components/UniqueRows.py +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/components/Unzip.py +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/components/UpdateOperationalVars.py +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/components/UploadTo.py +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/components/UploadToS3.py +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/components/UploadToSFTP.py +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/components/UploadToSharepoint.py +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/components/UserFunc.py +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/components/VideoUnderstanding.py +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/components/VivaTracker.py +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/components/WSDLClient.py +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/components/Wait.py +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/components/Walmart.py +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/components/Workday/__init__.py +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/components/Workday/models/__init__.py +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/components/Workday/models/applicant.py +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/components/Workday/models/candidate.py +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/components/Workday/models/cost_center.py +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/components/Workday/models/custom_punch_field_report.py +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/components/Workday/models/job_posting.py +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/components/Workday/models/job_posting_site.py +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/components/Workday/models/job_requisition.py +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/components/Workday/models/location.py +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/components/Workday/models/location_hierarchy_assignments.py +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/components/Workday/models/organizations.py +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/components/Workday/models/reference.py +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/components/Workday/models/time_block.py +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/components/Workday/models/time_off_balance.py +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/components/Workday/models/time_request.py +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/components/Workday/models/worker.py +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/components/Workday/parsers/__init__.py +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/components/Workday/parsers/applicant_parsers.py +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/components/Workday/parsers/candidate_parsers.py +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/components/Workday/parsers/cost_center_parsers.py +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/components/Workday/parsers/custom_punch_field_report_parsers.py +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/components/Workday/parsers/job_posting_parsers.py +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/components/Workday/parsers/job_posting_site_parsers.py +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/components/Workday/parsers/job_requisition_parsers.py +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/components/Workday/parsers/location_hierarchy_assignments_parsers.py +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/components/Workday/parsers/location_parsers.py +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/components/Workday/parsers/organization_parsers.py +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/components/Workday/parsers/reference_parsers.py +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/components/Workday/parsers/time_block_parsers.py +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/components/Workday/parsers/time_off_balance_parsers.py +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/components/Workday/parsers/time_request_parsers.py +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/components/Workday/parsers/worker_parsers.py +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/components/Workday/types/__init__.py +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/components/Workday/types/applicants.py +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/components/Workday/types/base.py +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/components/Workday/types/candidates.py +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/components/Workday/types/cost_centers.py +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/components/Workday/types/custom_punch_field_report.py +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/components/Workday/types/custom_punch_field_report_rest.py +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/components/Workday/types/custom_report.py +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/components/Workday/types/job_posting_sites.py +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/components/Workday/types/job_postings.py +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/components/Workday/types/job_requisitions.py +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/components/Workday/types/location_hierarchy_assignments.py +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/components/Workday/types/locations.py +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/components/Workday/types/organization_single.py +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/components/Workday/types/organizations.py +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/components/Workday/types/recruiting_agency_users.py +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/components/Workday/types/references.py +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/components/Workday/types/time_block_report.py +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/components/Workday/types/time_blocks.py +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/components/Workday/types/time_off_balances.py +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/components/Workday/types/time_requests.py +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/components/Workday/types/workers.py +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/components/Workday/utils/__init__.py +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/components/Workday/utils/utils.py +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/components/Workday/workday.py +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/components/WorkdayReport.py +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/components/Workplace.py +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/components/XMLToPandas.py +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/components/Zammad/__init__.py +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/components/Zammad/models.py +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/components/Zoom.py +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/components/ZoomInfoScraper.py +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/components/ZoomUs.py +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/components/__init__.py +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/components/_census/__init__.py +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/components/_census/cache.py +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/components/_census/fetch.py +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/components/_census/resolver.py +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/components/_census/transform.py +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/components/abstract.py +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/components/flow.py +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/components/gendata/__init__.py +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/components/gendata/date_sequence.py +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/components/gendata/static_list.py +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/components/google.py +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/components/group.py +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/components/pandas_io.py +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/components/py.typed +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/components/reviewscrap.py +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/components/tAddTotalRow.py +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/components/tAutoincrement.py +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/components/tConcat.py +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/components/tConditionalMultiply.py +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/components/tCrosstab.py +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/components/tDictKey.py +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/components/tExplode.py +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/components/tFilter.py +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/components/tFilterCommonValues.py +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/components/tFrequencyWeights.py +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/components/tGroup.py +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/components/tJoin.py +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/components/tMap/__init__.py +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/components/tMap/functions.py +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/components/tMap/tMap.py +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/components/tMelt.py +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/components/tMerge.py +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/components/tOrder.py +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/components/tPandas.py +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/components/tPivot.py +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/components/tPluckCols.py +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/components/tUnnest.py +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/components/user.py +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/conf.py +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/documentation/__init__.py +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/documentation/cli.py +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/documentation/generated/components/ASPX.doc.json +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/documentation/generated/components/AddDataset.doc.json +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/documentation/generated/components/AutoTask.doc.json +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/documentation/generated/components/AzureUsers.doc.json +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/documentation/generated/components/CallAnalysis.doc.json +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/documentation/generated/components/CallSummary.doc.json +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/documentation/generated/components/CompanyScraper.doc.json +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/documentation/generated/components/CopyFromS3.doc.json +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/documentation/generated/components/CopyFromSharepoint.doc.json +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/documentation/generated/components/CopyToBigQuery.doc.json +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/documentation/generated/components/CopyToMongoDB.doc.json +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/documentation/generated/components/CopyToPg.doc.json +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/documentation/generated/components/CopyToRethink.doc.json +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/documentation/generated/components/CopyToS3.doc.json +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/documentation/generated/components/CopyToSharepoint.doc.json +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/documentation/generated/components/CustomerSatisfaction.doc.json +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/documentation/generated/components/DataInput.doc.json +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/documentation/generated/components/DateList.doc.json +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/documentation/generated/components/DialPad.doc.json +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/documentation/generated/components/DownloadFromD2L.doc.json +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/documentation/generated/components/DownloadFromFTP.doc.json +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/documentation/generated/components/DownloadFromIMAP.doc.json +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/documentation/generated/components/DownloadFromS3.doc.json +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/documentation/generated/components/DownloadFromSFTP.doc.json +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/documentation/generated/components/DownloadFromSharepoint.doc.json +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/documentation/generated/components/DownloadFromSmartSheet.doc.json +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/documentation/generated/components/DownloadFromSmartsheet.doc.json +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/documentation/generated/components/EmployeeEvaluation.doc.json +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/documentation/generated/components/ExecuteSQL.doc.json +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/documentation/generated/components/ExtractTranscript.doc.json +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/documentation/generated/components/FileCopy.doc.json +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/documentation/generated/components/FileDelete.doc.json +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/documentation/generated/components/FileExists.doc.json +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/documentation/generated/components/FileIteratorDelete.doc.json +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/documentation/generated/components/FileList.doc.json +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/documentation/generated/components/FileOpen.doc.json +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/documentation/generated/components/FileRead.doc.json +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/documentation/generated/components/FileRename.doc.json +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/documentation/generated/components/FilterIf.doc.json +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/documentation/generated/components/FilterRows.doc.json +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/documentation/generated/components/GoogleA4.doc.json +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/documentation/generated/components/GoogleGeoCoding.doc.json +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/documentation/generated/components/GoogleSearch.doc.json +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/documentation/generated/components/HTTPClient.doc.json +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/documentation/generated/components/ICIMS.doc.json +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/documentation/generated/components/IteratorBase.doc.json +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/documentation/generated/components/LeadIQ.doc.json +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/documentation/generated/components/MS365Usage.doc.json +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/documentation/generated/components/MSTeamsMessages.doc.json +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/documentation/generated/components/MergeFileList.doc.json +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/documentation/generated/components/MergeFiles.doc.json +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/documentation/generated/components/NetworkNinjaClaims.doc.json +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/documentation/generated/components/Odoo.doc.json +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/documentation/generated/components/OdooInjector.doc.json +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/documentation/generated/components/OpenFromXML.doc.json +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/documentation/generated/components/OpenWithBase.doc.json +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/documentation/generated/components/OpenWithPandas.doc.json +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/documentation/generated/components/PGPDecrypt.doc.json +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/documentation/generated/components/PandasIterator.doc.json +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/documentation/generated/components/Paradox.doc.json +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/documentation/generated/components/ParamIterator.doc.json +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/documentation/generated/components/PlacerStores.doc.json +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/documentation/generated/components/Pokemon.doc.json +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/documentation/generated/components/PositiveBot.doc.json +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/documentation/generated/components/PowerPointSlide.doc.json +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/documentation/generated/components/PrintMessage.doc.json +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/documentation/generated/components/ProductCompliant.doc.json +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/documentation/generated/components/ProductPricing.doc.json +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/documentation/generated/components/ProductReportBot.doc.json +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/documentation/generated/components/QS.doc.json +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/documentation/generated/components/QueryIterator.doc.json +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/documentation/generated/components/QueryToInsert.doc.json +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/documentation/generated/components/QueryToPandas.doc.json +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/documentation/generated/components/RunShell.doc.json +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/documentation/generated/components/SAPExtraction.doc.json +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/documentation/generated/components/Sassie.doc.json +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/documentation/generated/components/ScrapTool.doc.json +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/documentation/generated/components/SendNotify.doc.json +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/documentation/generated/components/SentimentAnalysis.doc.json +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/documentation/generated/components/ServiceScrapper.doc.json +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/documentation/generated/components/SetVariables.doc.json +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/documentation/generated/components/SplitPDF.doc.json +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/documentation/generated/components/SubTask.doc.json +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/documentation/generated/components/SuiteCRM.doc.json +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/documentation/generated/components/TableDelete.doc.json +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/documentation/generated/components/TableInput.doc.json +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/documentation/generated/components/TableOutput.doc.json +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/documentation/generated/components/TableSchema.doc.json +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/documentation/generated/components/ThumbnailGenerator.doc.json +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/documentation/generated/components/TransformRows.doc.json +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/documentation/generated/components/TransposeRows.doc.json +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/documentation/generated/components/UnGzip.doc.json +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/documentation/generated/components/Uncompress.doc.json +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/documentation/generated/components/UniqueRows.doc.json +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/documentation/generated/components/Unzip.doc.json +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/documentation/generated/components/UploadToS3.doc.json +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/documentation/generated/components/UploadToSFTP.doc.json +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/documentation/generated/components/UploadToSharepoint.doc.json +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/documentation/generated/components/UserFunc.doc.json +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/documentation/generated/components/Zoom.doc.json +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/documentation/generated/components/ZoomInfoScraper.doc.json +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/documentation/generated/components/tAutoincrement.doc.json +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/documentation/generated/components/tConcat.doc.json +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/documentation/generated/components/tConditionalMultiply.doc.json +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/documentation/generated/components/tCrosstab.doc.json +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/documentation/generated/components/tExplode.doc.json +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/documentation/generated/components/tFilter.doc.json +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/documentation/generated/components/tFilterCommonValues.doc.json +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/documentation/generated/components/tFrequencyWeights.doc.json +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/documentation/generated/components/tGroup.doc.json +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/documentation/generated/components/tJoin.doc.json +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/documentation/generated/components/tMap.doc.json +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/documentation/generated/components/tMelt.doc.json +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/documentation/generated/components/tOrder.doc.json +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/documentation/generated/components/tPivot.doc.json +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/documentation/generated/components/tPluckCols.doc.json +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/documentation/generated/components/tUnnest.doc.json +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/documentation/generator.py +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/documentation/models.py +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/documentation/parser.py +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/documentation/schema.py +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/documentation/toolkit.py +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/download.py +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/events/__init__.py +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/events/events/__init__.py +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/events/events/abstract.py +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/events/events/alerts/__init__.py +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/events/events/alerts/colfunctions.py +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/events/events/alerts/functions.py +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/events/events/dummy.py +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/events/events/exec.py +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/events/events/file/__init__.py +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/events/events/file/base.py +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/events/events/file/copy.py +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/events/events/file/delete.py +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/events/events/interfaces/__init__.py +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/events/events/interfaces/client.py +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/events/events/interfaces/credentials.py +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/events/events/interfaces/notifications.py +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/events/events/jira.py +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/events/events/log.py +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/events/events/logerr.py +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/events/events/notify.py +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/events/events/publish.py +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/events/events/sendfile.py +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/events/events/task.py +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/events/events/teams.py +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/events/events/webhook.py +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/events/manager.py +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/exceptions.py +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/executors/__init__.py +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/executors/base.py +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/executors/docker.py +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/executors/events.py +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/executors/exceptions.py +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/executors/k8s.py +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/executors/models.py +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/executors/publish.py +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/executors/qworker.py +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/executors/registry.py +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/executors/resolver.py +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/extensions/__init__.py +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/extensions/abstract.py +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/extensions/component_docs.py +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/extensions/logging/__init__.py +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/factory/__init__.py +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/factory/agent.py +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/factory/composer.py +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/factory/parser.py +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/factory/validator.py +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/handlers/__init__.py +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/handlers/component.py +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/hooks/__init__.py +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/hooks/actions/__init__.py +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/hooks/actions/abstract.py +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/hooks/actions/dummy.py +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/hooks/actions/jira.py +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/hooks/actions/rest.py +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/hooks/actions/sampledata.py +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/hooks/actions/sensor.py +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/hooks/actions/task.py +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/hooks/actions/ticket.py +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/hooks/actions/zammad.py +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/hooks/actions/zoom_event.py +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/hooks/hook.py +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/hooks/models.py +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/hooks/service.py +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/hooks/step.py +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/hooks/types/__init__.py +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/hooks/types/base.py +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/hooks/types/brokers/__init__.py +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/hooks/types/brokers/base.py +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/hooks/types/brokers/mqtt.py +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/hooks/types/brokers/rabbitmq.py +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/hooks/types/brokers/redis.py +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/hooks/types/brokers/sqs.py +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/hooks/types/fs.py +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/hooks/types/http.py +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/hooks/types/imap.py +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/hooks/types/jira.py +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/hooks/types/mail.py +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/hooks/types/postgres.py +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/hooks/types/responses/__init__.py +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/hooks/types/responses/base.py +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/hooks/types/sharepoint.py +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/hooks/types/ssh.py +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/hooks/types/tagged.py +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/hooks/types/upload.py +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/hooks/types/watch.py +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/hooks/types/web.py +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/hooks/types/zoom.py +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/interfaces/AzureClient.py +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/interfaces/AzureGraph.py +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/interfaces/Boto3Client.py +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/interfaces/DropboxClient.py +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/interfaces/ExcelHandler.py +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/interfaces/FTPClient.py +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/interfaces/GoogleCalendar.py +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/interfaces/GoogleClient.py +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/interfaces/GoogleDrive.py +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/interfaces/GoogleGCS.py +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/interfaces/GoogleGeocoding.py +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/interfaces/GoogleLang.py +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/interfaces/GooglePub.py +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/interfaces/GoogleSheet.py +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/interfaces/IMAPClient.py +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/interfaces/LLMClient.py +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/interfaces/O365Calendar.py +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/interfaces/O365Client.py +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/interfaces/OneDrive.py +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/interfaces/Outlook.py +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/interfaces/ParrotBot.py +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/interfaces/ParrotTool.py +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/interfaces/SOAPClient.py +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/interfaces/SSHClient.py +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/interfaces/Sharepoint.py +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/interfaces/abstract.py +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/interfaces/azure_component.py +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/interfaces/azureauth.py +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/interfaces/base_action.py +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/interfaces/base_loop.py +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/interfaces/cache.py +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/interfaces/client.py +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/interfaces/compress.py +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/interfaces/copy_from_base.py +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/interfaces/copy_to.py +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/interfaces/copy_to_file_base.py +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/interfaces/credentials.py +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/interfaces/d2l.py +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/interfaces/databases/__init__.py +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/interfaces/databases/db.py +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/interfaces/databases/documentdb.py +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/interfaces/databases/rethink.py +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/interfaces/dataframes/__init__.py +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/interfaces/dataframes/abstract.py +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/interfaces/dataframes/arrow.py +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/interfaces/dataframes/dt.py +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/interfaces/dataframes/pandas.py +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/interfaces/dataframes/polars.py +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/interfaces/db.py +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/interfaces/db_client.py +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/interfaces/download_from.py +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/interfaces/env.py +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/interfaces/file_base.py +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/interfaces/flow.py +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/interfaces/func.py +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/interfaces/gamma.py +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/interfaces/google_base.py +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/interfaces/group.py +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/interfaces/http.py +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/interfaces/locale.py +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/interfaces/log.py +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/interfaces/mask.py +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/interfaces/notification.py +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/interfaces/parrot/__init__.py +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/interfaces/parrot/agent.py +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/interfaces/parrot/client.py +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/interfaces/pipelines/__init__.py +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/interfaces/pipelines/parrot.py +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/interfaces/playwright.py +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/interfaces/powerpoint.py +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/interfaces/ppt.py +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/interfaces/py.typed +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/interfaces/qs.py +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/interfaces/qs_base.py +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/interfaces/result.py +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/interfaces/sassie.py +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/interfaces/selenium/__init__.py +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/interfaces/selenium/options.py +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/interfaces/selenium/service.py +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/interfaces/selenium_service.py +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/interfaces/smartsheet.py +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/interfaces/stat.py +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/interfaces/t_pandas.py +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/interfaces/table_base.py +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/interfaces/task.py +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/interfaces/teams.py +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/interfaces/template.py +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/interfaces/tickets.py +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/interfaces/upload_to.py +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/interfaces/user.py +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/interfaces/vectorstores/__init__.py +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/interfaces/vectorstores/abstract.py +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/interfaces/vectorstores/milvus.py +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/interfaces/workday/__init__.py +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/interfaces/workday/config.py +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/interfaces/workday/handlers/__init__.py +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/interfaces/workday/handlers/applicants.py +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/interfaces/workday/handlers/base.py +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/interfaces/workday/handlers/candidates.py +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/interfaces/workday/handlers/cost_centers.py +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/interfaces/workday/handlers/custom_punch_field_report.py +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/interfaces/workday/handlers/custom_punch_field_report_rest.py +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/interfaces/workday/handlers/custom_report.py +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/interfaces/workday/handlers/import_reported_time_blocks.py +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/interfaces/workday/handlers/job_posting_sites.py +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/interfaces/workday/handlers/job_postings.py +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/interfaces/workday/handlers/job_requisitions.py +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/interfaces/workday/handlers/location_hierarchy_assignments.py +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/interfaces/workday/handlers/locations.py +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/interfaces/workday/handlers/organization_single.py +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/interfaces/workday/handlers/organizations.py +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/interfaces/workday/handlers/recruiting_agency_users.py +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/interfaces/workday/handlers/references.py +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/interfaces/workday/handlers/time_block_report.py +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/interfaces/workday/handlers/time_off_balances.py +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/interfaces/workday/handlers/time_requests.py +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/interfaces/workday/handlers/workers.py +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/interfaces/workday/models/__init__.py +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/interfaces/workday/models/applicant.py +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/interfaces/workday/models/candidate.py +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/interfaces/workday/models/cost_center.py +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/interfaces/workday/models/custom_punch_field_report.py +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/interfaces/workday/models/job_posting.py +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/interfaces/workday/models/job_posting_site.py +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/interfaces/workday/models/job_requisition.py +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/interfaces/workday/models/location.py +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/interfaces/workday/models/location_hierarchy_assignments.py +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/interfaces/workday/models/organizations.py +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/interfaces/workday/models/reference.py +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/interfaces/workday/models/time_block.py +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/interfaces/workday/models/time_off_balance.py +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/interfaces/workday/models/time_request.py +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/interfaces/workday/models/worker.py +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/interfaces/workday/parsers/__init__.py +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/interfaces/workday/parsers/applicant_parsers.py +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/interfaces/workday/parsers/candidate_parsers.py +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/interfaces/workday/parsers/cost_center_parsers.py +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/interfaces/workday/parsers/custom_punch_field_report_parsers.py +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/interfaces/workday/parsers/job_posting_parsers.py +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/interfaces/workday/parsers/job_posting_site_parsers.py +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/interfaces/workday/parsers/job_requisition_parsers.py +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/interfaces/workday/parsers/location_hierarchy_assignments_parsers.py +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/interfaces/workday/parsers/location_parsers.py +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/interfaces/workday/parsers/organization_parsers.py +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/interfaces/workday/parsers/reference_parsers.py +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/interfaces/workday/parsers/time_block_parsers.py +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/interfaces/workday/parsers/time_off_balance_parsers.py +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/interfaces/workday/parsers/time_request_parsers.py +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/interfaces/workday/parsers/worker_parsers.py +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/interfaces/workday/service.py +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/interfaces/workday/utils/__init__.py +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/interfaces/workday/utils/utils.py +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/interfaces/zammad.py +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/interfaces/zoom.py +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/models.py +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/parsers/__init__.py +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/parsers/_yaml.pyx +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/parsers/base.pxd +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/parsers/json.pyx +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/parsers/maps.py +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/parsers/syntax/__init__.py +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/parsers/syntax/checker.py +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/parsers/syntax/detector.py +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/parsers/syntax/registry.py +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/parsers/syntax/report.py +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/parsers/syntax/schema.py +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/parsers/toml.pyx +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/plugins/__init__.py +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/plugins/components_/__init__.py +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/plugins/handler/__init__.py +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/plugins/importer.py +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/plugins/sources/__init__.py +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/scheduler/__init__.py +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/scheduler/handlers/__init__.py +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/scheduler/handlers/manager.py +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/scheduler/handlers/models.py +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/scheduler/handlers/service.py +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/scheduler/notifications.py +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/scheduler/scheduler.py +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/services/__init__.py +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/services/bots/__init__.py +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/services/bots/telegram.py +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/services/files/__init__.py +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/services/files/manager.py +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/services/files/model.py +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/services/files/service.py +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/services/jira/__init__.py +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/services/jira/jira_actions.py +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/services/tasks/__init__.py +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/services/tasks/launcher.py +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/services/tasks/manager.py +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/services/tasks/service.py +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/services/tasks/task_manager.py +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/services/tasks/tasks.py +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/storages/__init__.py +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/storages/exceptions.py +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/storages/files/__init__.py +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/storages/files/abstract.py +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/storages/files/filesystem.py +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/storages/tasks/__init__.py +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/storages/tasks/abstract.py +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/storages/tasks/database.py +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/storages/tasks/filesystem.py +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/storages/tasks/github.py +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/storages/tasks/memory.py +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/storages/tasks/row.py +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/tasks/__init__.py +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/tasks/command.py +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/tasks/pile.py +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/tasks/py.typed +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/tasks/task.py +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/tasks/workers.py +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/template/__init__.py +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/tests.py +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/types/__init__.py +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/types/typedefs.pyx +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/utils/__init__.py +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/utils/constants.py +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/utils/encoders.py +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/utils/executor.py +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/utils/functions.pyx +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/utils/json.pxi +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/utils/json.pyx +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/utils/mail.py +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/utils/msgraph_patch.py +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/utils/parseqs.pyx +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/utils/stats.py +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/utils/transformations.py +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/utils/uv.py +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask/utils/validators.py +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask.egg-info/dependency_links.txt +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask.egg-info/entry_points.txt +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/flowtask.egg-info/top_level.txt +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/setup.cfg +0 -0
- {flowtask-5.12.3 → flowtask-5.12.5}/setup.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: flowtask
|
|
3
|
-
Version: 5.12.
|
|
3
|
+
Version: 5.12.5
|
|
4
4
|
Summary: Framework for Task orchestration
|
|
5
5
|
Author-email: Jesus Lara <jesuslarag@gmail.com>
|
|
6
6
|
License: Apache-2.0
|
|
@@ -37,7 +37,7 @@ Requires-Dist: selenium>=4.35.0
|
|
|
37
37
|
Requires-Dist: snapshot-selenium==0.0.2
|
|
38
38
|
Requires-Dist: httpx[http2,socks]>=0.26.0
|
|
39
39
|
Requires-Dist: urllib3[socks]>=2.3.0
|
|
40
|
-
Requires-Dist: requests
|
|
40
|
+
Requires-Dist: requests<2.34,>=2.33.0
|
|
41
41
|
Requires-Dist: h2>=4.2.0
|
|
42
42
|
Requires-Dist: blinker>=1.9.0
|
|
43
43
|
Requires-Dist: webdriver-manager==4.0.2
|
|
@@ -64,10 +64,9 @@ Requires-Dist: datatable==1.1.0
|
|
|
64
64
|
Requires-Dist: imageio==2.37.0
|
|
65
65
|
Requires-Dist: decorator>=5.1.1
|
|
66
66
|
Requires-Dist: emoji==2.14.1
|
|
67
|
-
Requires-Dist: caio==0.9.24
|
|
68
67
|
Requires-Dist: Wand==0.6.13
|
|
69
68
|
Requires-Dist: pylibdmtx==0.1.10
|
|
70
|
-
Requires-Dist:
|
|
69
|
+
Requires-Dist: aiofiles>=24.1.0
|
|
71
70
|
Requires-Dist: filetype==1.2.0
|
|
72
71
|
Requires-Dist: proxylists>=0.14.0
|
|
73
72
|
Requires-Dist: aioftp==0.23.1
|
|
@@ -127,10 +126,12 @@ Requires-Dist: kr8s>=0.16.0; extra == "k8s"
|
|
|
127
126
|
Provides-Extra: git
|
|
128
127
|
Requires-Dist: gitpython>=3.1.50; extra == "git"
|
|
129
128
|
Provides-Extra: ai
|
|
130
|
-
Requires-Dist: ai-parrot[agents,images,
|
|
129
|
+
Requires-Dist: ai-parrot[agents,graphindex,images,llms,retrieval]>=0.20.4; extra == "ai"
|
|
131
130
|
Requires-Dist: ai-parrot-loaders[audio,document,ebook,ml,pdf,scraping,video,web,youtube]>=0.1.0; extra == "ai"
|
|
132
131
|
Requires-Dist: ai-parrot-tools[analysis,arxiv,aws,codeinterpreter,db,docker,excel,finance,flowtask,git,google,jira,messaging,pdf,pulumi,sandbox,scraping,sitesearch,slack,weather,wikipedia]>=0.1.0; extra == "ai"
|
|
133
132
|
Requires-Dist: ai-parrot-pipelines>=0.1.0; extra == "ai"
|
|
133
|
+
Requires-Dist: ai-parrot-server[all]>=0.1.0; extra == "ai"
|
|
134
|
+
Requires-Dist: ai-parrot-integrations[all]>=0.0.17; extra == "ai"
|
|
134
135
|
Provides-Extra: dev
|
|
135
136
|
Requires-Dist: pytest>=5.4.0; extra == "dev"
|
|
136
137
|
Requires-Dist: coverage; extra == "dev"
|
|
@@ -2,7 +2,7 @@ from collections.abc import Callable
|
|
|
2
2
|
import asyncio
|
|
3
3
|
import pandas as pd
|
|
4
4
|
import orjson
|
|
5
|
-
from ..exceptions import DataNotFound
|
|
5
|
+
from ..exceptions import DataNotFound, ComponentError
|
|
6
6
|
from ..interfaces.ParrotBot import ParrotBot
|
|
7
7
|
from ..interfaces.flow import FlowComponent
|
|
8
8
|
|
|
@@ -236,6 +236,49 @@ class CallAnalysis(ParrotBot, FlowComponent):
|
|
|
236
236
|
self.skip_existing: bool = kwargs.get('skip_existing', True)
|
|
237
237
|
self.lookup_schema_column: str = kwargs.get('schema_column', 'program_slug')
|
|
238
238
|
|
|
239
|
+
# Credentials/auth abort state (set per bot_evaluation run).
|
|
240
|
+
# When a non-retryable credentials error is detected, _auth_error holds
|
|
241
|
+
# the offending exception and _abort_event signals every in-flight/queued
|
|
242
|
+
# task to bail out so no further API calls are attempted.
|
|
243
|
+
self._auth_error: Exception | None = None
|
|
244
|
+
self._abort_event: asyncio.Event | None = None
|
|
245
|
+
|
|
246
|
+
# Substrings that flag a non-retryable credentials/permission failure.
|
|
247
|
+
# Retrying these only wastes API quota — the key/permissions must be fixed.
|
|
248
|
+
_CREDENTIALS_ERROR_MARKERS = (
|
|
249
|
+
"PERMISSION_DENIED",
|
|
250
|
+
"API_KEY_SERVICE_BLOCKED",
|
|
251
|
+
"API_KEY_INVALID",
|
|
252
|
+
"API key not valid",
|
|
253
|
+
"API_KEY_HTTP_REFERRER_BLOCKED",
|
|
254
|
+
"UNAUTHENTICATED",
|
|
255
|
+
"CONSUMER_INVALID",
|
|
256
|
+
)
|
|
257
|
+
|
|
258
|
+
def _is_credentials_error(self, exc: Exception) -> bool:
|
|
259
|
+
"""Return True if ``exc`` is a non-retryable credentials/auth failure.
|
|
260
|
+
|
|
261
|
+
Detects the Google GenAI ``403 PERMISSION_DENIED`` /
|
|
262
|
+
``API_KEY_SERVICE_BLOCKED`` family (and equivalent auth errors) so the
|
|
263
|
+
batch can fail fast instead of retrying a blocked API key.
|
|
264
|
+
|
|
265
|
+
Args:
|
|
266
|
+
exc: The exception raised by the LLM provider call.
|
|
267
|
+
|
|
268
|
+
Returns:
|
|
269
|
+
bool: True when the error indicates blocked/invalid credentials.
|
|
270
|
+
"""
|
|
271
|
+
# HTTP status carried on the exception (google-genai / aiohttp styles).
|
|
272
|
+
status = (
|
|
273
|
+
getattr(exc, 'status_code', None)
|
|
274
|
+
or getattr(exc, 'code', None)
|
|
275
|
+
or getattr(exc, 'status', None)
|
|
276
|
+
)
|
|
277
|
+
if status in (401, 403):
|
|
278
|
+
return True
|
|
279
|
+
message = str(exc)
|
|
280
|
+
return any(marker in message for marker in self._CREDENTIALS_ERROR_MARKERS)
|
|
281
|
+
|
|
239
282
|
def load_from_file(
|
|
240
283
|
self,
|
|
241
284
|
df: pd.DataFrame,
|
|
@@ -651,6 +694,13 @@ class CallAnalysis(ParrotBot, FlowComponent):
|
|
|
651
694
|
"""
|
|
652
695
|
call_key = call_key or call_identifier
|
|
653
696
|
async with semaphore:
|
|
697
|
+
# A fatal credentials error already aborted the batch — bail out
|
|
698
|
+
# without making another doomed API call.
|
|
699
|
+
if self._abort_event is not None and self._abort_event.is_set():
|
|
700
|
+
self._logger.debug(
|
|
701
|
+
f"Skipping {call_identifier} - batch aborted due to credentials error"
|
|
702
|
+
)
|
|
703
|
+
return (call_key, None)
|
|
654
704
|
for attempt in range(self.retry_attempts):
|
|
655
705
|
try:
|
|
656
706
|
# Wait minimum interval before request to respect RPM limit
|
|
@@ -673,6 +723,23 @@ class CallAnalysis(ParrotBot, FlowComponent):
|
|
|
673
723
|
|
|
674
724
|
|
|
675
725
|
except Exception as e:
|
|
726
|
+
# Credentials / permission errors are NOT retryable: retrying
|
|
727
|
+
# only burns API quota against a blocked key. Flag the batch
|
|
728
|
+
# for abort so no further calls are attempted and surface it
|
|
729
|
+
# clearly (distinct from DataNotFound) in bot_evaluation.
|
|
730
|
+
if self._is_credentials_error(e):
|
|
731
|
+
if self._auth_error is None:
|
|
732
|
+
self._auth_error = e
|
|
733
|
+
self._logger.error(
|
|
734
|
+
f"🔑 Credentials/permission error from LLM provider while "
|
|
735
|
+
f"analyzing {call_identifier}: {e}. Aborting batch — the API "
|
|
736
|
+
f"key is blocked/invalid or lacks permission. No further "
|
|
737
|
+
f"calls will be attempted."
|
|
738
|
+
)
|
|
739
|
+
if self._abort_event is not None:
|
|
740
|
+
self._abort_event.set()
|
|
741
|
+
return (call_key, None)
|
|
742
|
+
|
|
676
743
|
if attempt < self.retry_attempts - 1:
|
|
677
744
|
# Calculate exponential backoff wait time
|
|
678
745
|
wait_time = self.retry_backoff_factor ** attempt
|
|
@@ -704,6 +771,10 @@ class CallAnalysis(ParrotBot, FlowComponent):
|
|
|
704
771
|
A Pandas Dataframe with the Call Analysis results.
|
|
705
772
|
|
|
706
773
|
"""
|
|
774
|
+
# Reset credentials-abort state for this run.
|
|
775
|
+
self._auth_error = None
|
|
776
|
+
self._abort_event = asyncio.Event()
|
|
777
|
+
|
|
707
778
|
# Determine if we should group the data or process row by row
|
|
708
779
|
should_group = self.group_analysis
|
|
709
780
|
schema_col_present = (
|
|
@@ -944,6 +1015,17 @@ class CallAnalysis(ParrotBot, FlowComponent):
|
|
|
944
1015
|
# Add the analysis results as a new column
|
|
945
1016
|
result_df[self.output_column] = analysis_results
|
|
946
1017
|
|
|
1018
|
+
# If a fatal credentials/permission error aborted the batch, surface it
|
|
1019
|
+
# explicitly. Do NOT let it fall through to the DataNotFound below — that
|
|
1020
|
+
# status (204, "nothing to analyze") would mask a blocked/invalid API key.
|
|
1021
|
+
if self._auth_error is not None:
|
|
1022
|
+
raise ComponentError(
|
|
1023
|
+
f"{self._bot_name}: aborted analysis due to a credentials/permission "
|
|
1024
|
+
f"error from the LLM provider ({self._auth_error}). The API key is "
|
|
1025
|
+
f"blocked, invalid, or lacks permission to call the model. Fix the "
|
|
1026
|
+
f"credentials and retry — no further API calls were attempted."
|
|
1027
|
+
)
|
|
1028
|
+
|
|
947
1029
|
# Clean up JSON formatting in the output column if present
|
|
948
1030
|
# Only clean strings, preserve dicts/lists that are already valid JSON objects
|
|
949
1031
|
if self.output_column in result_df.columns and not result_df[self.output_column].isna().all():
|
|
@@ -56,15 +56,13 @@ def detect_encoding(filename, encoding: str = "utf-8"):
|
|
|
56
56
|
try:
|
|
57
57
|
result = chardet.detect(raw)
|
|
58
58
|
if result["encoding"] in ("ASCII", "ascii"):
|
|
59
|
-
#
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
output.seek(0)
|
|
67
|
-
return [output, encoding]
|
|
59
|
+
# ASCII is a strict subset of UTF-8, so the declared encoding
|
|
60
|
+
# is safe to use as-is. Do NOT slurp the whole file here: the
|
|
61
|
+
# only thing every caller consumes from this function is the
|
|
62
|
+
# encoding string (the buffer is always discarded), and reading
|
|
63
|
+
# a multi-GB file just to throw it away caused massive memory
|
|
64
|
+
# pressure / apparent hangs on large CSVs.
|
|
65
|
+
return [None, encoding]
|
|
68
66
|
else:
|
|
69
67
|
enc = result["encoding"]
|
|
70
68
|
except UnicodeDecodeError:
|
|
@@ -573,7 +571,7 @@ class OpenWithBase(FlowComponent):
|
|
|
573
571
|
encoding = self.encoding
|
|
574
572
|
else:
|
|
575
573
|
count = 0
|
|
576
|
-
# migrate to
|
|
574
|
+
# migrate to aiofiles
|
|
577
575
|
bt = min(32, os.path.getsize(filename))
|
|
578
576
|
with open(filename, "rb") as f:
|
|
579
577
|
line = f.read(bt)
|
|
@@ -539,11 +539,13 @@ class OpenWithPandas(OpenWithBase):
|
|
|
539
539
|
raise ComponentError(
|
|
540
540
|
f"Error Combining Resultset Dataframes: {err}"
|
|
541
541
|
) from err
|
|
542
|
-
# When
|
|
543
|
-
#
|
|
544
|
-
#
|
|
545
|
-
#
|
|
546
|
-
|
|
542
|
+
# When is_debug is on, log the RAW read shape/columns BEFORE any
|
|
543
|
+
# post-processing (drop_empty/trim/dropna) — useful to validate which
|
|
544
|
+
# columns came in and which are all-empty (and would be dropped below
|
|
545
|
+
# by drop_empty). Gated behind the explicit is_debug YAML flag (NOT the
|
|
546
|
+
# global --debug) so normal debug runs don't flood the logs with the
|
|
547
|
+
# per-column non-null dump on every OpenWithPandas step.
|
|
548
|
+
if getattr(self, 'is_debug', False) is True:
|
|
547
549
|
try:
|
|
548
550
|
nonnull = df.notna().sum()
|
|
549
551
|
empty_cols = [c for c in df.columns if nonnull[c] == 0]
|
|
@@ -656,11 +658,15 @@ class OpenWithPandas(OpenWithBase):
|
|
|
656
658
|
self.add_metric("NUMROWS", numrows)
|
|
657
659
|
self.add_metric("OPENED_FILES", self._filenames)
|
|
658
660
|
if getattr(self, 'is_debug', False) is True:
|
|
659
|
-
|
|
661
|
+
# Do NOT render the full DataFrame (df.to_string() with no row limit
|
|
662
|
+
# materialises every row into one giant string — CPU-bound for
|
|
663
|
+
# minutes/hours on multi-GB frames, the apparent "hang"). Instead,
|
|
664
|
+
# show the shape and a single representative row: every column with
|
|
665
|
+
# its dtype and its first value.
|
|
666
|
+
self._logger.debug("DataFrame result: shape=%s", df.shape)
|
|
660
667
|
self._logger.debug("::: Column Information ===")
|
|
661
668
|
for column, t in df.dtypes.items():
|
|
662
|
-
|
|
663
|
-
|
|
664
|
-
)
|
|
669
|
+
sample = df[column].iloc[0] if len(df.index) else "<empty>"
|
|
670
|
+
self._logger.debug("%s -> %s -> %s", column, t, sample)
|
|
665
671
|
self._logger.debug("Opened File(s) with Pandas %s", self._filenames)
|
|
666
672
|
return self._result
|