├── .genignore ├── .gitattributes ├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.md │ ├── custom.md │ └── feature_request.md └── workflows │ ├── ci.yaml │ ├── claude.yml │ ├── speakeasy_sdk_generation.yml │ └── speakeasy_sdk_publish.yaml ├── .gitignore ├── .speakeasy ├── gen.lock ├── workflow.lock └── workflow.yaml ├── .vscode └── settings.json ├── CHANGELOG.md ├── CONTRIBUTING.md ├── LICENSE.md ├── Makefile ├── README.md ├── RELEASES.md ├── USAGE.md ├── _jupyter └── README_example.ipynb ├── _sample_docs ├── csv-with-long-lines.csv ├── embedded-images-tables.jpg ├── emoji.xlsx ├── failing-encrypted.pdf ├── failing-invalid.pdf ├── failing-missing-pages.pdf ├── failing-missing-root.pdf ├── fake-power-point.ppt ├── fake.doc ├── ideas-page.html ├── layout-parser-paper-fast.pdf ├── layout-parser-paper.pdf ├── list-item-example-1.pdf └── super_long_pages.pdf ├── _test_contract ├── conftest.py ├── platform_api │ ├── test_destinations.py │ ├── test_jobs.py │ ├── test_sources.py │ └── test_workflows.py └── test_retries.py ├── _test_unstructured_client ├── integration │ ├── test_decorators.py │ └── test_integration.py ├── unit │ ├── test_custom_hooks.py │ ├── test_encryption.py │ ├── test_pdf_utils.py │ ├── test_request_utils.py │ ├── test_server_urls.py │ └── test_split_pdf_hook.py └── unit_utils.py ├── codeSamples.yaml ├── docs ├── models │ ├── errors │ │ ├── detail.md │ │ ├── httpvalidationerror.md │ │ └── servererror.md │ ├── operations │ │ ├── canceljobrequest.md │ │ ├── canceljobresponse.md │ │ ├── createconnectioncheckdestinationsrequest.md │ │ ├── createconnectioncheckdestinationsresponse.md │ │ ├── createconnectionchecksourcesrequest.md │ │ ├── createconnectionchecksourcesresponse.md │ │ ├── createdestinationrequest.md │ │ ├── createdestinationresponse.md │ │ ├── createsourcerequest.md │ │ ├── createsourceresponse.md │ │ ├── createworkflowrequest.md │ │ ├── createworkflowresponse.md │ │ ├── deletedestinationrequest.md │ │ ├── deletedestinationresponse.md │ │ ├── deletesourcerequest.md │ │ ├── deletesourceresponse.md │ │ ├── deleteworkflowrequest.md │ │ ├── deleteworkflowresponse.md │ │ ├── downloadjoboutputrequest.md │ │ ├── downloadjoboutputresponse.md │ │ ├── getconnectioncheckdestinationsrequest.md │ │ ├── getconnectioncheckdestinationsresponse.md │ │ ├── getconnectionchecksourcesrequest.md │ │ ├── getconnectionchecksourcesresponse.md │ │ ├── getdestinationrequest.md │ │ ├── getdestinationresponse.md │ │ ├── getjobdetailsrequest.md │ │ ├── getjobdetailsresponse.md │ │ ├── getjobfailedfilesrequest.md │ │ ├── getjobfailedfilesresponse.md │ │ ├── getjobrequest.md │ │ ├── getjobresponse.md │ │ ├── getsourcerequest.md │ │ ├── getsourceresponse.md │ │ ├── getworkflowrequest.md │ │ ├── getworkflowresponse.md │ │ ├── listdestinationsrequest.md │ │ ├── listdestinationsresponse.md │ │ ├── listjobsrequest.md │ │ ├── listjobsresponse.md │ │ ├── listsourcesrequest.md │ │ ├── listsourcesresponse.md │ │ ├── listworkflowsrequest.md │ │ ├── listworkflowsresponse.md │ │ ├── partitionrequest.md │ │ ├── partitionresponse.md │ │ ├── runworkflowrequest.md │ │ ├── runworkflowresponse.md │ │ ├── updatedestinationrequest.md │ │ ├── updatedestinationresponse.md │ │ ├── updatesourcerequest.md │ │ ├── updatesourceresponse.md │ │ ├── updateworkflowrequest.md │ │ └── updateworkflowresponse.md │ ├── shared │ │ ├── astradbconnectorconfig.md │ │ ├── astradbconnectorconfiginput.md │ │ ├── azureaisearchconnectorconfig.md │ │ ├── azureaisearchconnectorconfiginput.md │ │ ├── azuredestinationconnectorconfig.md │ │ ├── azuredestinationconnectorconfiginput.md │ │ ├── azuresourceconnectorconfig.md │ │ ├── azuresourceconnectorconfiginput.md │ │ ├── bodyrunworkflow.md │ │ ├── boxsourceconnectorconfig.md │ │ ├── boxsourceconnectorconfiginput.md │ │ ├── config.md │ │ ├── confluencesourceconnectorconfig.md │ │ ├── confluencesourceconnectorconfiginput.md │ │ ├── connectioncheckstatus.md │ │ ├── couchbasedestinationconnectorconfig.md │ │ ├── couchbasedestinationconnectorconfiginput.md │ │ ├── couchbasesourceconnectorconfig.md │ │ ├── couchbasesourceconnectorconfiginput.md │ │ ├── createdestinationconnector.md │ │ ├── createsourceconnector.md │ │ ├── createsourceconnectorconfig.md │ │ ├── createworkflow.md │ │ ├── crontabentry.md │ │ ├── dagnodeconnectioncheck.md │ │ ├── databricksvdtdestinationconnectorconfig.md │ │ ├── databricksvdtdestinationconnectorconfiginput.md │ │ ├── databricksvolumesconnectorconfig.md │ │ ├── databricksvolumesconnectorconfiginput.md │ │ ├── deltatableconnectorconfig.md │ │ ├── deltatableconnectorconfiginput.md │ │ ├── destinationconnectorinformation.md │ │ ├── destinationconnectorinformationconfig.md │ │ ├── destinationconnectortype.md │ │ ├── dropboxsourceconnectorconfig.md │ │ ├── dropboxsourceconnectorconfiginput.md │ │ ├── elasticsearchconnectorconfig.md │ │ ├── elasticsearchconnectorconfiginput.md │ │ ├── encryptiontype.md │ │ ├── failedfile.md │ │ ├── files.md │ │ ├── gcsdestinationconnectorconfig.md │ │ ├── gcsdestinationconnectorconfiginput.md │ │ ├── gcssourceconnectorconfig.md │ │ ├── gcssourceconnectorconfiginput.md │ │ ├── googledrivesourceconnectorconfig.md │ │ ├── googledrivesourceconnectorconfiginput.md │ │ ├── googledrivesourceconnectorconfiginputserviceaccountkey.md │ │ ├── ibmwatsonxs3destinationconnectorconfig.md │ │ ├── ibmwatsonxs3destinationconnectorconfiginput.md │ │ ├── inputfiles.md │ │ ├── jirasourceconnectorconfig.md │ │ ├── jirasourceconnectorconfiginput.md │ │ ├── jobdetails.md │ │ ├── jobfailedfiles.md │ │ ├── jobinformation.md │ │ ├── jobnodedetails.md │ │ ├── jobprocessingstatus.md │ │ ├── jobstatus.md │ │ ├── kafkaclouddestinationconnectorconfig.md │ │ ├── kafkaclouddestinationconnectorconfiginput.md │ │ ├── kafkacloudsourceconnectorconfig.md │ │ ├── kafkacloudsourceconnectorconfiginput.md │ │ ├── loc.md │ │ ├── milvusdestinationconnectorconfig.md │ │ ├── milvusdestinationconnectorconfiginput.md │ │ ├── mongodbconnectorconfig.md │ │ ├── mongodbconnectorconfiginput.md │ │ ├── neo4jdestinationconnectorconfig.md │ │ ├── neo4jdestinationconnectorconfiginput.md │ │ ├── nodefilemetadata.md │ │ ├── onedrivedestinationconnectorconfig.md │ │ ├── onedrivedestinationconnectorconfiginput.md │ │ ├── onedrivesourceconnectorconfig.md │ │ ├── onedrivesourceconnectorconfiginput.md │ │ ├── outlooksourceconnectorconfig.md │ │ ├── outlooksourceconnectorconfiginput.md │ │ ├── outputformat.md │ │ ├── partitionparameters.md │ │ ├── pineconedestinationconnectorconfig.md │ │ ├── pineconedestinationconnectorconfiginput.md │ │ ├── postgresdestinationconnectorconfig.md │ │ ├── postgresdestinationconnectorconfiginput.md │ │ ├── postgressourceconnectorconfig.md │ │ ├── postgressourceconnectorconfiginput.md │ │ ├── qdrantclouddestinationconnectorconfig.md │ │ ├── qdrantclouddestinationconnectorconfiginput.md │ │ ├── redisdestinationconnectorconfig.md │ │ ├── redisdestinationconnectorconfiginput.md │ │ ├── s3destinationconnectorconfig.md │ │ ├── s3destinationconnectorconfiginput.md │ │ ├── s3sourceconnectorconfig.md │ │ ├── s3sourceconnectorconfiginput.md │ │ ├── salesforcesourceconnectorconfig.md │ │ ├── salesforcesourceconnectorconfiginput.md │ │ ├── schedule.md │ │ ├── secretreference.md │ │ ├── security.md │ │ ├── serviceaccountkey.md │ │ ├── sharepointsourceconnectorconfig.md │ │ ├── sharepointsourceconnectorconfiginput.md │ │ ├── snowflakedestinationconnectorconfig.md │ │ ├── snowflakedestinationconnectorconfiginput.md │ │ ├── snowflakesourceconnectorconfig.md │ │ ├── snowflakesourceconnectorconfiginput.md │ │ ├── sortdirection.md │ │ ├── sourceconnectorinformation.md │ │ ├── sourceconnectorinformationconfig.md │ │ ├── sourceconnectortype.md │ │ ├── strategy.md │ │ ├── updatedestinationconnector.md │ │ ├── updatedestinationconnectorconfig.md │ │ ├── updatesourceconnector.md │ │ ├── updatesourceconnectorconfig.md │ │ ├── updateworkflow.md │ │ ├── updateworkflowschedule.md │ │ ├── validationerror.md │ │ ├── vlmmodel.md │ │ ├── vlmmodelprovider.md │ │ ├── weaviatedestinationconnectorconfig.md │ │ ├── weaviatedestinationconnectorconfiginput.md │ │ ├── workflowinformation.md │ │ ├── workflowjobtype.md │ │ ├── workflownode.md │ │ ├── workflownodetype.md │ │ ├── workflowschedule.md │ │ ├── workflowstate.md │ │ ├── workflowtype.md │ │ ├── zendesksourceconnectorconfig.md │ │ └── zendesksourceconnectorconfiginput.md │ └── utils │ │ └── retryconfig.md └── sdks │ ├── destinations │ └── README.md │ ├── general │ └── README.md │ ├── jobs │ └── README.md │ ├── sources │ └── README.md │ ├── unstructuredclient │ └── README.md │ └── workflows │ └── README.md ├── files.gen ├── gen.yaml ├── overlay_client.yaml ├── poetry.lock ├── poetry.toml ├── py.typed ├── pylintrc ├── pyproject.toml ├── scripts ├── prepare_readme.py └── publish.sh ├── src └── unstructured_client │ ├── __init__.py │ ├── _hooks │ ├── __init__.py │ ├── custom │ │ ├── __init__.py │ │ ├── clean_server_url_hook.py │ │ ├── common.py │ │ ├── form_utils.py │ │ ├── logger_hook.py │ │ ├── pdf_utils.py │ │ ├── request_utils.py │ │ ├── split_pdf_hook.py │ │ └── validation_errors.py │ ├── registration.py │ ├── sdkhooks.py │ └── types.py │ ├── _version.py │ ├── basesdk.py │ ├── destinations.py │ ├── general.py │ ├── httpclient.py │ ├── jobs.py │ ├── models │ ├── __init__.py │ ├── errors │ │ ├── __init__.py │ │ ├── httpvalidationerror.py │ │ ├── no_response_error.py │ │ ├── responsevalidationerror.py │ │ ├── sdkerror.py │ │ ├── servererror.py │ │ └── unstructuredclienterror.py │ ├── operations │ │ ├── __init__.py │ │ ├── cancel_job.py │ │ ├── create_connection_check_destinations.py │ │ ├── create_connection_check_sources.py │ │ ├── create_destination.py │ │ ├── create_source.py │ │ ├── create_workflow.py │ │ ├── delete_destination.py │ │ ├── delete_source.py │ │ ├── delete_workflow.py │ │ ├── download_job_output.py │ │ ├── get_connection_check_destinations.py │ │ ├── get_connection_check_sources.py │ │ ├── get_destination.py │ │ ├── get_job.py │ │ ├── get_job_details.py │ │ ├── get_job_failed_files.py │ │ ├── get_source.py │ │ ├── get_workflow.py │ │ ├── list_destinations.py │ │ ├── list_jobs.py │ │ ├── list_sources.py │ │ ├── list_workflows.py │ │ ├── partition.py │ │ ├── run_workflow.py │ │ ├── update_destination.py │ │ ├── update_source.py │ │ └── update_workflow.py │ └── shared │ │ ├── __init__.py │ │ ├── astradbconnectorconfig.py │ │ ├── astradbconnectorconfiginput.py │ │ ├── azureaisearchconnectorconfig.py │ │ ├── azureaisearchconnectorconfiginput.py │ │ ├── azuredestinationconnectorconfig.py │ │ ├── azuredestinationconnectorconfiginput.py │ │ ├── azuresourceconnectorconfig.py │ │ ├── azuresourceconnectorconfiginput.py │ │ ├── body_run_workflow.py │ │ ├── boxsourceconnectorconfig.py │ │ ├── boxsourceconnectorconfiginput.py │ │ ├── confluencesourceconnectorconfig.py │ │ ├── confluencesourceconnectorconfiginput.py │ │ ├── connectioncheckstatus.py │ │ ├── couchbasedestinationconnectorconfig.py │ │ ├── couchbasedestinationconnectorconfiginput.py │ │ ├── couchbasesourceconnectorconfig.py │ │ ├── couchbasesourceconnectorconfiginput.py │ │ ├── createdestinationconnector.py │ │ ├── createsourceconnector.py │ │ ├── createworkflow.py │ │ ├── crontabentry.py │ │ ├── dagnodeconnectioncheck.py │ │ ├── databricksvdtdestinationconnectorconfig.py │ │ ├── databricksvdtdestinationconnectorconfiginput.py │ │ ├── databricksvolumesconnectorconfig.py │ │ ├── databricksvolumesconnectorconfiginput.py │ │ ├── deltatableconnectorconfig.py │ │ ├── deltatableconnectorconfiginput.py │ │ ├── destinationconnectorinformation.py │ │ ├── destinationconnectortype.py │ │ ├── dropboxsourceconnectorconfig.py │ │ ├── dropboxsourceconnectorconfiginput.py │ │ ├── elasticsearchconnectorconfig.py │ │ ├── elasticsearchconnectorconfiginput.py │ │ ├── encryptiontype.py │ │ ├── failedfile.py │ │ ├── gcsdestinationconnectorconfig.py │ │ ├── gcsdestinationconnectorconfiginput.py │ │ ├── gcssourceconnectorconfig.py │ │ ├── gcssourceconnectorconfiginput.py │ │ ├── googledrivesourceconnectorconfig.py │ │ ├── googledrivesourceconnectorconfiginput.py │ │ ├── ibmwatsonxs3destinationconnectorconfig.py │ │ ├── ibmwatsonxs3destinationconnectorconfiginput.py │ │ ├── jirasourceconnectorconfig.py │ │ ├── jirasourceconnectorconfiginput.py │ │ ├── jobdetails.py │ │ ├── jobfailedfiles.py │ │ ├── jobinformation.py │ │ ├── jobnodedetails.py │ │ ├── jobprocessingstatus.py │ │ ├── jobstatus.py │ │ ├── kafkaclouddestinationconnectorconfig.py │ │ ├── kafkaclouddestinationconnectorconfiginput.py │ │ ├── kafkacloudsourceconnectorconfig.py │ │ ├── kafkacloudsourceconnectorconfiginput.py │ │ ├── milvusdestinationconnectorconfig.py │ │ ├── milvusdestinationconnectorconfiginput.py │ │ ├── mongodbconnectorconfig.py │ │ ├── mongodbconnectorconfiginput.py │ │ ├── neo4jdestinationconnectorconfig.py │ │ ├── neo4jdestinationconnectorconfiginput.py │ │ ├── nodefilemetadata.py │ │ ├── onedrivedestinationconnectorconfig.py │ │ ├── onedrivedestinationconnectorconfiginput.py │ │ ├── onedrivesourceconnectorconfig.py │ │ ├── onedrivesourceconnectorconfiginput.py │ │ ├── outlooksourceconnectorconfig.py │ │ ├── outlooksourceconnectorconfiginput.py │ │ ├── partition_parameters.py │ │ ├── pineconedestinationconnectorconfig.py │ │ ├── pineconedestinationconnectorconfiginput.py │ │ ├── postgresdestinationconnectorconfig.py │ │ ├── postgresdestinationconnectorconfiginput.py │ │ ├── postgressourceconnectorconfig.py │ │ ├── postgressourceconnectorconfiginput.py │ │ ├── qdrantclouddestinationconnectorconfig.py │ │ ├── qdrantclouddestinationconnectorconfiginput.py │ │ ├── redisdestinationconnectorconfig.py │ │ ├── redisdestinationconnectorconfiginput.py │ │ ├── s3destinationconnectorconfig.py │ │ ├── s3destinationconnectorconfiginput.py │ │ ├── s3sourceconnectorconfig.py │ │ ├── s3sourceconnectorconfiginput.py │ │ ├── salesforcesourceconnectorconfig.py │ │ ├── salesforcesourceconnectorconfiginput.py │ │ ├── secretreference.py │ │ ├── security.py │ │ ├── sharepointsourceconnectorconfig.py │ │ ├── sharepointsourceconnectorconfiginput.py │ │ ├── snowflakedestinationconnectorconfig.py │ │ ├── snowflakedestinationconnectorconfiginput.py │ │ ├── snowflakesourceconnectorconfig.py │ │ ├── snowflakesourceconnectorconfiginput.py │ │ ├── sortdirection.py │ │ ├── sourceconnectorinformation.py │ │ ├── sourceconnectortype.py │ │ ├── updatedestinationconnector.py │ │ ├── updatesourceconnector.py │ │ ├── updateworkflow.py │ │ ├── validationerror.py │ │ ├── weaviatedestinationconnectorconfig.py │ │ ├── weaviatedestinationconnectorconfiginput.py │ │ ├── workflowinformation.py │ │ ├── workflowjobtype.py │ │ ├── workflownode.py │ │ ├── workflownodetype.py │ │ ├── workflowschedule.py │ │ ├── workflowstate.py │ │ ├── workflowtype.py │ │ ├── zendesksourceconnectorconfig.py │ │ └── zendesksourceconnectorconfiginput.py │ ├── py.typed │ ├── sdk.py │ ├── sdkconfiguration.py │ ├── sources.py │ ├── types │ ├── __init__.py │ └── basemodel.py │ ├── users.py │ ├── utils │ ├── __init__.py │ ├── annotations.py │ ├── datetimes.py │ ├── enums.py │ ├── eventstreaming.py │ ├── forms.py │ ├── headers.py │ ├── logger.py │ ├── metadata.py │ ├── queryparams.py │ ├── requestbodies.py │ ├── retries.py │ ├── security.py │ ├── serializers.py │ ├── unmarshal_json_response.py │ ├── url.py │ └── values.py │ └── workflows.py └── tests └── helpers.py /.genignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unstructured-IO/unstructured-python-client/HEAD/.genignore -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unstructured-IO/unstructured-python-client/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unstructured-IO/unstructured-python-client/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/custom.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unstructured-IO/unstructured-python-client/HEAD/.github/ISSUE_TEMPLATE/custom.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unstructured-IO/unstructured-python-client/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/workflows/ci.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unstructured-IO/unstructured-python-client/HEAD/.github/workflows/ci.yaml -------------------------------------------------------------------------------- /.github/workflows/claude.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unstructured-IO/unstructured-python-client/HEAD/.github/workflows/claude.yml -------------------------------------------------------------------------------- /.github/workflows/speakeasy_sdk_generation.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unstructured-IO/unstructured-python-client/HEAD/.github/workflows/speakeasy_sdk_generation.yml -------------------------------------------------------------------------------- /.github/workflows/speakeasy_sdk_publish.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unstructured-IO/unstructured-python-client/HEAD/.github/workflows/speakeasy_sdk_publish.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unstructured-IO/unstructured-python-client/HEAD/.gitignore -------------------------------------------------------------------------------- /.speakeasy/gen.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unstructured-IO/unstructured-python-client/HEAD/.speakeasy/gen.lock -------------------------------------------------------------------------------- /.speakeasy/workflow.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unstructured-IO/unstructured-python-client/HEAD/.speakeasy/workflow.lock -------------------------------------------------------------------------------- /.speakeasy/workflow.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unstructured-IO/unstructured-python-client/HEAD/.speakeasy/workflow.yaml -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unstructured-IO/unstructured-python-client/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unstructured-IO/unstructured-python-client/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unstructured-IO/unstructured-python-client/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unstructured-IO/unstructured-python-client/HEAD/LICENSE.md -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unstructured-IO/unstructured-python-client/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unstructured-IO/unstructured-python-client/HEAD/README.md -------------------------------------------------------------------------------- /RELEASES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unstructured-IO/unstructured-python-client/HEAD/RELEASES.md -------------------------------------------------------------------------------- /USAGE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unstructured-IO/unstructured-python-client/HEAD/USAGE.md -------------------------------------------------------------------------------- /_jupyter/README_example.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unstructured-IO/unstructured-python-client/HEAD/_jupyter/README_example.ipynb -------------------------------------------------------------------------------- /_sample_docs/csv-with-long-lines.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unstructured-IO/unstructured-python-client/HEAD/_sample_docs/csv-with-long-lines.csv -------------------------------------------------------------------------------- /_sample_docs/embedded-images-tables.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unstructured-IO/unstructured-python-client/HEAD/_sample_docs/embedded-images-tables.jpg -------------------------------------------------------------------------------- /_sample_docs/emoji.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unstructured-IO/unstructured-python-client/HEAD/_sample_docs/emoji.xlsx -------------------------------------------------------------------------------- /_sample_docs/failing-encrypted.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unstructured-IO/unstructured-python-client/HEAD/_sample_docs/failing-encrypted.pdf -------------------------------------------------------------------------------- /_sample_docs/failing-invalid.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unstructured-IO/unstructured-python-client/HEAD/_sample_docs/failing-invalid.pdf -------------------------------------------------------------------------------- /_sample_docs/failing-missing-pages.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unstructured-IO/unstructured-python-client/HEAD/_sample_docs/failing-missing-pages.pdf -------------------------------------------------------------------------------- /_sample_docs/failing-missing-root.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unstructured-IO/unstructured-python-client/HEAD/_sample_docs/failing-missing-root.pdf -------------------------------------------------------------------------------- /_sample_docs/fake-power-point.ppt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unstructured-IO/unstructured-python-client/HEAD/_sample_docs/fake-power-point.ppt -------------------------------------------------------------------------------- /_sample_docs/fake.doc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unstructured-IO/unstructured-python-client/HEAD/_sample_docs/fake.doc -------------------------------------------------------------------------------- /_sample_docs/ideas-page.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unstructured-IO/unstructured-python-client/HEAD/_sample_docs/ideas-page.html -------------------------------------------------------------------------------- /_sample_docs/layout-parser-paper-fast.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unstructured-IO/unstructured-python-client/HEAD/_sample_docs/layout-parser-paper-fast.pdf -------------------------------------------------------------------------------- /_sample_docs/layout-parser-paper.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unstructured-IO/unstructured-python-client/HEAD/_sample_docs/layout-parser-paper.pdf -------------------------------------------------------------------------------- /_sample_docs/list-item-example-1.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unstructured-IO/unstructured-python-client/HEAD/_sample_docs/list-item-example-1.pdf -------------------------------------------------------------------------------- /_sample_docs/super_long_pages.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unstructured-IO/unstructured-python-client/HEAD/_sample_docs/super_long_pages.pdf -------------------------------------------------------------------------------- /_test_contract/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unstructured-IO/unstructured-python-client/HEAD/_test_contract/conftest.py -------------------------------------------------------------------------------- /_test_contract/platform_api/test_destinations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unstructured-IO/unstructured-python-client/HEAD/_test_contract/platform_api/test_destinations.py -------------------------------------------------------------------------------- /_test_contract/platform_api/test_jobs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unstructured-IO/unstructured-python-client/HEAD/_test_contract/platform_api/test_jobs.py -------------------------------------------------------------------------------- /_test_contract/platform_api/test_sources.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unstructured-IO/unstructured-python-client/HEAD/_test_contract/platform_api/test_sources.py -------------------------------------------------------------------------------- /_test_contract/platform_api/test_workflows.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unstructured-IO/unstructured-python-client/HEAD/_test_contract/platform_api/test_workflows.py -------------------------------------------------------------------------------- /_test_contract/test_retries.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unstructured-IO/unstructured-python-client/HEAD/_test_contract/test_retries.py -------------------------------------------------------------------------------- /_test_unstructured_client/integration/test_decorators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unstructured-IO/unstructured-python-client/HEAD/_test_unstructured_client/integration/test_decorators.py -------------------------------------------------------------------------------- /_test_unstructured_client/integration/test_integration.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unstructured-IO/unstructured-python-client/HEAD/_test_unstructured_client/integration/test_integration.py -------------------------------------------------------------------------------- /_test_unstructured_client/unit/test_custom_hooks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unstructured-IO/unstructured-python-client/HEAD/_test_unstructured_client/unit/test_custom_hooks.py -------------------------------------------------------------------------------- /_test_unstructured_client/unit/test_encryption.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unstructured-IO/unstructured-python-client/HEAD/_test_unstructured_client/unit/test_encryption.py -------------------------------------------------------------------------------- /_test_unstructured_client/unit/test_pdf_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unstructured-IO/unstructured-python-client/HEAD/_test_unstructured_client/unit/test_pdf_utils.py -------------------------------------------------------------------------------- /_test_unstructured_client/unit/test_request_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unstructured-IO/unstructured-python-client/HEAD/_test_unstructured_client/unit/test_request_utils.py -------------------------------------------------------------------------------- /_test_unstructured_client/unit/test_server_urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unstructured-IO/unstructured-python-client/HEAD/_test_unstructured_client/unit/test_server_urls.py -------------------------------------------------------------------------------- /_test_unstructured_client/unit/test_split_pdf_hook.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unstructured-IO/unstructured-python-client/HEAD/_test_unstructured_client/unit/test_split_pdf_hook.py -------------------------------------------------------------------------------- /_test_unstructured_client/unit_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unstructured-IO/unstructured-python-client/HEAD/_test_unstructured_client/unit_utils.py -------------------------------------------------------------------------------- /codeSamples.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unstructured-IO/unstructured-python-client/HEAD/codeSamples.yaml -------------------------------------------------------------------------------- /docs/models/errors/detail.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unstructured-IO/unstructured-python-client/HEAD/docs/models/errors/detail.md -------------------------------------------------------------------------------- /docs/models/errors/httpvalidationerror.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unstructured-IO/unstructured-python-client/HEAD/docs/models/errors/httpvalidationerror.md -------------------------------------------------------------------------------- /docs/models/errors/servererror.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unstructured-IO/unstructured-python-client/HEAD/docs/models/errors/servererror.md -------------------------------------------------------------------------------- /docs/models/operations/canceljobrequest.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unstructured-IO/unstructured-python-client/HEAD/docs/models/operations/canceljobrequest.md -------------------------------------------------------------------------------- /docs/models/operations/canceljobresponse.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unstructured-IO/unstructured-python-client/HEAD/docs/models/operations/canceljobresponse.md -------------------------------------------------------------------------------- /docs/models/operations/createconnectioncheckdestinationsrequest.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unstructured-IO/unstructured-python-client/HEAD/docs/models/operations/createconnectioncheckdestinationsrequest.md -------------------------------------------------------------------------------- /docs/models/operations/createconnectioncheckdestinationsresponse.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unstructured-IO/unstructured-python-client/HEAD/docs/models/operations/createconnectioncheckdestinationsresponse.md -------------------------------------------------------------------------------- /docs/models/operations/createconnectionchecksourcesrequest.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unstructured-IO/unstructured-python-client/HEAD/docs/models/operations/createconnectionchecksourcesrequest.md -------------------------------------------------------------------------------- /docs/models/operations/createconnectionchecksourcesresponse.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unstructured-IO/unstructured-python-client/HEAD/docs/models/operations/createconnectionchecksourcesresponse.md -------------------------------------------------------------------------------- /docs/models/operations/createdestinationrequest.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unstructured-IO/unstructured-python-client/HEAD/docs/models/operations/createdestinationrequest.md -------------------------------------------------------------------------------- /docs/models/operations/createdestinationresponse.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unstructured-IO/unstructured-python-client/HEAD/docs/models/operations/createdestinationresponse.md -------------------------------------------------------------------------------- /docs/models/operations/createsourcerequest.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unstructured-IO/unstructured-python-client/HEAD/docs/models/operations/createsourcerequest.md -------------------------------------------------------------------------------- /docs/models/operations/createsourceresponse.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unstructured-IO/unstructured-python-client/HEAD/docs/models/operations/createsourceresponse.md -------------------------------------------------------------------------------- /docs/models/operations/createworkflowrequest.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unstructured-IO/unstructured-python-client/HEAD/docs/models/operations/createworkflowrequest.md -------------------------------------------------------------------------------- /docs/models/operations/createworkflowresponse.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unstructured-IO/unstructured-python-client/HEAD/docs/models/operations/createworkflowresponse.md -------------------------------------------------------------------------------- /docs/models/operations/deletedestinationrequest.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unstructured-IO/unstructured-python-client/HEAD/docs/models/operations/deletedestinationrequest.md -------------------------------------------------------------------------------- /docs/models/operations/deletedestinationresponse.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unstructured-IO/unstructured-python-client/HEAD/docs/models/operations/deletedestinationresponse.md -------------------------------------------------------------------------------- /docs/models/operations/deletesourcerequest.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unstructured-IO/unstructured-python-client/HEAD/docs/models/operations/deletesourcerequest.md -------------------------------------------------------------------------------- /docs/models/operations/deletesourceresponse.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unstructured-IO/unstructured-python-client/HEAD/docs/models/operations/deletesourceresponse.md -------------------------------------------------------------------------------- /docs/models/operations/deleteworkflowrequest.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unstructured-IO/unstructured-python-client/HEAD/docs/models/operations/deleteworkflowrequest.md -------------------------------------------------------------------------------- /docs/models/operations/deleteworkflowresponse.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unstructured-IO/unstructured-python-client/HEAD/docs/models/operations/deleteworkflowresponse.md -------------------------------------------------------------------------------- /docs/models/operations/downloadjoboutputrequest.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unstructured-IO/unstructured-python-client/HEAD/docs/models/operations/downloadjoboutputrequest.md -------------------------------------------------------------------------------- /docs/models/operations/downloadjoboutputresponse.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unstructured-IO/unstructured-python-client/HEAD/docs/models/operations/downloadjoboutputresponse.md -------------------------------------------------------------------------------- /docs/models/operations/getconnectioncheckdestinationsrequest.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unstructured-IO/unstructured-python-client/HEAD/docs/models/operations/getconnectioncheckdestinationsrequest.md -------------------------------------------------------------------------------- /docs/models/operations/getconnectioncheckdestinationsresponse.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unstructured-IO/unstructured-python-client/HEAD/docs/models/operations/getconnectioncheckdestinationsresponse.md -------------------------------------------------------------------------------- /docs/models/operations/getconnectionchecksourcesrequest.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unstructured-IO/unstructured-python-client/HEAD/docs/models/operations/getconnectionchecksourcesrequest.md -------------------------------------------------------------------------------- /docs/models/operations/getconnectionchecksourcesresponse.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unstructured-IO/unstructured-python-client/HEAD/docs/models/operations/getconnectionchecksourcesresponse.md -------------------------------------------------------------------------------- /docs/models/operations/getdestinationrequest.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unstructured-IO/unstructured-python-client/HEAD/docs/models/operations/getdestinationrequest.md -------------------------------------------------------------------------------- /docs/models/operations/getdestinationresponse.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unstructured-IO/unstructured-python-client/HEAD/docs/models/operations/getdestinationresponse.md -------------------------------------------------------------------------------- /docs/models/operations/getjobdetailsrequest.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unstructured-IO/unstructured-python-client/HEAD/docs/models/operations/getjobdetailsrequest.md -------------------------------------------------------------------------------- /docs/models/operations/getjobdetailsresponse.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unstructured-IO/unstructured-python-client/HEAD/docs/models/operations/getjobdetailsresponse.md -------------------------------------------------------------------------------- /docs/models/operations/getjobfailedfilesrequest.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unstructured-IO/unstructured-python-client/HEAD/docs/models/operations/getjobfailedfilesrequest.md -------------------------------------------------------------------------------- /docs/models/operations/getjobfailedfilesresponse.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unstructured-IO/unstructured-python-client/HEAD/docs/models/operations/getjobfailedfilesresponse.md -------------------------------------------------------------------------------- /docs/models/operations/getjobrequest.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unstructured-IO/unstructured-python-client/HEAD/docs/models/operations/getjobrequest.md -------------------------------------------------------------------------------- /docs/models/operations/getjobresponse.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unstructured-IO/unstructured-python-client/HEAD/docs/models/operations/getjobresponse.md -------------------------------------------------------------------------------- /docs/models/operations/getsourcerequest.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unstructured-IO/unstructured-python-client/HEAD/docs/models/operations/getsourcerequest.md -------------------------------------------------------------------------------- /docs/models/operations/getsourceresponse.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unstructured-IO/unstructured-python-client/HEAD/docs/models/operations/getsourceresponse.md -------------------------------------------------------------------------------- /docs/models/operations/getworkflowrequest.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unstructured-IO/unstructured-python-client/HEAD/docs/models/operations/getworkflowrequest.md -------------------------------------------------------------------------------- /docs/models/operations/getworkflowresponse.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unstructured-IO/unstructured-python-client/HEAD/docs/models/operations/getworkflowresponse.md -------------------------------------------------------------------------------- /docs/models/operations/listdestinationsrequest.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unstructured-IO/unstructured-python-client/HEAD/docs/models/operations/listdestinationsrequest.md -------------------------------------------------------------------------------- /docs/models/operations/listdestinationsresponse.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unstructured-IO/unstructured-python-client/HEAD/docs/models/operations/listdestinationsresponse.md -------------------------------------------------------------------------------- /docs/models/operations/listjobsrequest.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unstructured-IO/unstructured-python-client/HEAD/docs/models/operations/listjobsrequest.md -------------------------------------------------------------------------------- /docs/models/operations/listjobsresponse.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unstructured-IO/unstructured-python-client/HEAD/docs/models/operations/listjobsresponse.md -------------------------------------------------------------------------------- /docs/models/operations/listsourcesrequest.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unstructured-IO/unstructured-python-client/HEAD/docs/models/operations/listsourcesrequest.md -------------------------------------------------------------------------------- /docs/models/operations/listsourcesresponse.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unstructured-IO/unstructured-python-client/HEAD/docs/models/operations/listsourcesresponse.md -------------------------------------------------------------------------------- /docs/models/operations/listworkflowsrequest.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unstructured-IO/unstructured-python-client/HEAD/docs/models/operations/listworkflowsrequest.md -------------------------------------------------------------------------------- /docs/models/operations/listworkflowsresponse.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unstructured-IO/unstructured-python-client/HEAD/docs/models/operations/listworkflowsresponse.md -------------------------------------------------------------------------------- /docs/models/operations/partitionrequest.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unstructured-IO/unstructured-python-client/HEAD/docs/models/operations/partitionrequest.md -------------------------------------------------------------------------------- /docs/models/operations/partitionresponse.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unstructured-IO/unstructured-python-client/HEAD/docs/models/operations/partitionresponse.md -------------------------------------------------------------------------------- /docs/models/operations/runworkflowrequest.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unstructured-IO/unstructured-python-client/HEAD/docs/models/operations/runworkflowrequest.md -------------------------------------------------------------------------------- /docs/models/operations/runworkflowresponse.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unstructured-IO/unstructured-python-client/HEAD/docs/models/operations/runworkflowresponse.md -------------------------------------------------------------------------------- /docs/models/operations/updatedestinationrequest.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unstructured-IO/unstructured-python-client/HEAD/docs/models/operations/updatedestinationrequest.md -------------------------------------------------------------------------------- /docs/models/operations/updatedestinationresponse.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unstructured-IO/unstructured-python-client/HEAD/docs/models/operations/updatedestinationresponse.md -------------------------------------------------------------------------------- /docs/models/operations/updatesourcerequest.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unstructured-IO/unstructured-python-client/HEAD/docs/models/operations/updatesourcerequest.md -------------------------------------------------------------------------------- /docs/models/operations/updatesourceresponse.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unstructured-IO/unstructured-python-client/HEAD/docs/models/operations/updatesourceresponse.md -------------------------------------------------------------------------------- /docs/models/operations/updateworkflowrequest.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unstructured-IO/unstructured-python-client/HEAD/docs/models/operations/updateworkflowrequest.md -------------------------------------------------------------------------------- /docs/models/operations/updateworkflowresponse.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unstructured-IO/unstructured-python-client/HEAD/docs/models/operations/updateworkflowresponse.md -------------------------------------------------------------------------------- /docs/models/shared/astradbconnectorconfig.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unstructured-IO/unstructured-python-client/HEAD/docs/models/shared/astradbconnectorconfig.md -------------------------------------------------------------------------------- /docs/models/shared/astradbconnectorconfiginput.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unstructured-IO/unstructured-python-client/HEAD/docs/models/shared/astradbconnectorconfiginput.md -------------------------------------------------------------------------------- /docs/models/shared/azureaisearchconnectorconfig.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unstructured-IO/unstructured-python-client/HEAD/docs/models/shared/azureaisearchconnectorconfig.md -------------------------------------------------------------------------------- /docs/models/shared/azureaisearchconnectorconfiginput.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unstructured-IO/unstructured-python-client/HEAD/docs/models/shared/azureaisearchconnectorconfiginput.md -------------------------------------------------------------------------------- /docs/models/shared/azuredestinationconnectorconfig.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unstructured-IO/unstructured-python-client/HEAD/docs/models/shared/azuredestinationconnectorconfig.md -------------------------------------------------------------------------------- /docs/models/shared/azuredestinationconnectorconfiginput.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unstructured-IO/unstructured-python-client/HEAD/docs/models/shared/azuredestinationconnectorconfiginput.md -------------------------------------------------------------------------------- /docs/models/shared/azuresourceconnectorconfig.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unstructured-IO/unstructured-python-client/HEAD/docs/models/shared/azuresourceconnectorconfig.md -------------------------------------------------------------------------------- /docs/models/shared/azuresourceconnectorconfiginput.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unstructured-IO/unstructured-python-client/HEAD/docs/models/shared/azuresourceconnectorconfiginput.md -------------------------------------------------------------------------------- /docs/models/shared/bodyrunworkflow.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unstructured-IO/unstructured-python-client/HEAD/docs/models/shared/bodyrunworkflow.md -------------------------------------------------------------------------------- /docs/models/shared/boxsourceconnectorconfig.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unstructured-IO/unstructured-python-client/HEAD/docs/models/shared/boxsourceconnectorconfig.md -------------------------------------------------------------------------------- /docs/models/shared/boxsourceconnectorconfiginput.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unstructured-IO/unstructured-python-client/HEAD/docs/models/shared/boxsourceconnectorconfiginput.md -------------------------------------------------------------------------------- /docs/models/shared/config.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unstructured-IO/unstructured-python-client/HEAD/docs/models/shared/config.md -------------------------------------------------------------------------------- /docs/models/shared/confluencesourceconnectorconfig.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unstructured-IO/unstructured-python-client/HEAD/docs/models/shared/confluencesourceconnectorconfig.md -------------------------------------------------------------------------------- /docs/models/shared/confluencesourceconnectorconfiginput.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unstructured-IO/unstructured-python-client/HEAD/docs/models/shared/confluencesourceconnectorconfiginput.md -------------------------------------------------------------------------------- /docs/models/shared/connectioncheckstatus.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unstructured-IO/unstructured-python-client/HEAD/docs/models/shared/connectioncheckstatus.md -------------------------------------------------------------------------------- /docs/models/shared/couchbasedestinationconnectorconfig.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unstructured-IO/unstructured-python-client/HEAD/docs/models/shared/couchbasedestinationconnectorconfig.md -------------------------------------------------------------------------------- /docs/models/shared/couchbasedestinationconnectorconfiginput.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unstructured-IO/unstructured-python-client/HEAD/docs/models/shared/couchbasedestinationconnectorconfiginput.md -------------------------------------------------------------------------------- /docs/models/shared/couchbasesourceconnectorconfig.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unstructured-IO/unstructured-python-client/HEAD/docs/models/shared/couchbasesourceconnectorconfig.md -------------------------------------------------------------------------------- /docs/models/shared/couchbasesourceconnectorconfiginput.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unstructured-IO/unstructured-python-client/HEAD/docs/models/shared/couchbasesourceconnectorconfiginput.md -------------------------------------------------------------------------------- /docs/models/shared/createdestinationconnector.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unstructured-IO/unstructured-python-client/HEAD/docs/models/shared/createdestinationconnector.md -------------------------------------------------------------------------------- /docs/models/shared/createsourceconnector.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unstructured-IO/unstructured-python-client/HEAD/docs/models/shared/createsourceconnector.md -------------------------------------------------------------------------------- /docs/models/shared/createsourceconnectorconfig.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unstructured-IO/unstructured-python-client/HEAD/docs/models/shared/createsourceconnectorconfig.md -------------------------------------------------------------------------------- /docs/models/shared/createworkflow.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unstructured-IO/unstructured-python-client/HEAD/docs/models/shared/createworkflow.md -------------------------------------------------------------------------------- /docs/models/shared/crontabentry.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unstructured-IO/unstructured-python-client/HEAD/docs/models/shared/crontabentry.md -------------------------------------------------------------------------------- /docs/models/shared/dagnodeconnectioncheck.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unstructured-IO/unstructured-python-client/HEAD/docs/models/shared/dagnodeconnectioncheck.md -------------------------------------------------------------------------------- /docs/models/shared/databricksvdtdestinationconnectorconfig.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unstructured-IO/unstructured-python-client/HEAD/docs/models/shared/databricksvdtdestinationconnectorconfig.md -------------------------------------------------------------------------------- /docs/models/shared/databricksvdtdestinationconnectorconfiginput.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unstructured-IO/unstructured-python-client/HEAD/docs/models/shared/databricksvdtdestinationconnectorconfiginput.md -------------------------------------------------------------------------------- /docs/models/shared/databricksvolumesconnectorconfig.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unstructured-IO/unstructured-python-client/HEAD/docs/models/shared/databricksvolumesconnectorconfig.md -------------------------------------------------------------------------------- /docs/models/shared/databricksvolumesconnectorconfiginput.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unstructured-IO/unstructured-python-client/HEAD/docs/models/shared/databricksvolumesconnectorconfiginput.md -------------------------------------------------------------------------------- /docs/models/shared/deltatableconnectorconfig.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unstructured-IO/unstructured-python-client/HEAD/docs/models/shared/deltatableconnectorconfig.md -------------------------------------------------------------------------------- /docs/models/shared/deltatableconnectorconfiginput.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unstructured-IO/unstructured-python-client/HEAD/docs/models/shared/deltatableconnectorconfiginput.md -------------------------------------------------------------------------------- /docs/models/shared/destinationconnectorinformation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unstructured-IO/unstructured-python-client/HEAD/docs/models/shared/destinationconnectorinformation.md -------------------------------------------------------------------------------- /docs/models/shared/destinationconnectorinformationconfig.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unstructured-IO/unstructured-python-client/HEAD/docs/models/shared/destinationconnectorinformationconfig.md -------------------------------------------------------------------------------- /docs/models/shared/destinationconnectortype.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unstructured-IO/unstructured-python-client/HEAD/docs/models/shared/destinationconnectortype.md -------------------------------------------------------------------------------- /docs/models/shared/dropboxsourceconnectorconfig.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unstructured-IO/unstructured-python-client/HEAD/docs/models/shared/dropboxsourceconnectorconfig.md -------------------------------------------------------------------------------- /docs/models/shared/dropboxsourceconnectorconfiginput.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unstructured-IO/unstructured-python-client/HEAD/docs/models/shared/dropboxsourceconnectorconfiginput.md -------------------------------------------------------------------------------- /docs/models/shared/elasticsearchconnectorconfig.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unstructured-IO/unstructured-python-client/HEAD/docs/models/shared/elasticsearchconnectorconfig.md -------------------------------------------------------------------------------- /docs/models/shared/elasticsearchconnectorconfiginput.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unstructured-IO/unstructured-python-client/HEAD/docs/models/shared/elasticsearchconnectorconfiginput.md -------------------------------------------------------------------------------- /docs/models/shared/encryptiontype.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unstructured-IO/unstructured-python-client/HEAD/docs/models/shared/encryptiontype.md -------------------------------------------------------------------------------- /docs/models/shared/failedfile.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unstructured-IO/unstructured-python-client/HEAD/docs/models/shared/failedfile.md -------------------------------------------------------------------------------- /docs/models/shared/files.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unstructured-IO/unstructured-python-client/HEAD/docs/models/shared/files.md -------------------------------------------------------------------------------- /docs/models/shared/gcsdestinationconnectorconfig.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unstructured-IO/unstructured-python-client/HEAD/docs/models/shared/gcsdestinationconnectorconfig.md -------------------------------------------------------------------------------- /docs/models/shared/gcsdestinationconnectorconfiginput.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unstructured-IO/unstructured-python-client/HEAD/docs/models/shared/gcsdestinationconnectorconfiginput.md -------------------------------------------------------------------------------- /docs/models/shared/gcssourceconnectorconfig.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unstructured-IO/unstructured-python-client/HEAD/docs/models/shared/gcssourceconnectorconfig.md -------------------------------------------------------------------------------- /docs/models/shared/gcssourceconnectorconfiginput.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unstructured-IO/unstructured-python-client/HEAD/docs/models/shared/gcssourceconnectorconfiginput.md -------------------------------------------------------------------------------- /docs/models/shared/googledrivesourceconnectorconfig.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unstructured-IO/unstructured-python-client/HEAD/docs/models/shared/googledrivesourceconnectorconfig.md -------------------------------------------------------------------------------- /docs/models/shared/googledrivesourceconnectorconfiginput.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unstructured-IO/unstructured-python-client/HEAD/docs/models/shared/googledrivesourceconnectorconfiginput.md -------------------------------------------------------------------------------- /docs/models/shared/googledrivesourceconnectorconfiginputserviceaccountkey.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unstructured-IO/unstructured-python-client/HEAD/docs/models/shared/googledrivesourceconnectorconfiginputserviceaccountkey.md -------------------------------------------------------------------------------- /docs/models/shared/ibmwatsonxs3destinationconnectorconfig.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unstructured-IO/unstructured-python-client/HEAD/docs/models/shared/ibmwatsonxs3destinationconnectorconfig.md -------------------------------------------------------------------------------- /docs/models/shared/ibmwatsonxs3destinationconnectorconfiginput.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unstructured-IO/unstructured-python-client/HEAD/docs/models/shared/ibmwatsonxs3destinationconnectorconfiginput.md -------------------------------------------------------------------------------- /docs/models/shared/inputfiles.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unstructured-IO/unstructured-python-client/HEAD/docs/models/shared/inputfiles.md -------------------------------------------------------------------------------- /docs/models/shared/jirasourceconnectorconfig.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unstructured-IO/unstructured-python-client/HEAD/docs/models/shared/jirasourceconnectorconfig.md -------------------------------------------------------------------------------- /docs/models/shared/jirasourceconnectorconfiginput.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unstructured-IO/unstructured-python-client/HEAD/docs/models/shared/jirasourceconnectorconfiginput.md -------------------------------------------------------------------------------- /docs/models/shared/jobdetails.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unstructured-IO/unstructured-python-client/HEAD/docs/models/shared/jobdetails.md -------------------------------------------------------------------------------- /docs/models/shared/jobfailedfiles.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unstructured-IO/unstructured-python-client/HEAD/docs/models/shared/jobfailedfiles.md -------------------------------------------------------------------------------- /docs/models/shared/jobinformation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unstructured-IO/unstructured-python-client/HEAD/docs/models/shared/jobinformation.md -------------------------------------------------------------------------------- /docs/models/shared/jobnodedetails.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unstructured-IO/unstructured-python-client/HEAD/docs/models/shared/jobnodedetails.md -------------------------------------------------------------------------------- /docs/models/shared/jobprocessingstatus.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unstructured-IO/unstructured-python-client/HEAD/docs/models/shared/jobprocessingstatus.md -------------------------------------------------------------------------------- /docs/models/shared/jobstatus.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unstructured-IO/unstructured-python-client/HEAD/docs/models/shared/jobstatus.md -------------------------------------------------------------------------------- /docs/models/shared/kafkaclouddestinationconnectorconfig.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unstructured-IO/unstructured-python-client/HEAD/docs/models/shared/kafkaclouddestinationconnectorconfig.md -------------------------------------------------------------------------------- /docs/models/shared/kafkaclouddestinationconnectorconfiginput.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unstructured-IO/unstructured-python-client/HEAD/docs/models/shared/kafkaclouddestinationconnectorconfiginput.md -------------------------------------------------------------------------------- /docs/models/shared/kafkacloudsourceconnectorconfig.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unstructured-IO/unstructured-python-client/HEAD/docs/models/shared/kafkacloudsourceconnectorconfig.md -------------------------------------------------------------------------------- /docs/models/shared/kafkacloudsourceconnectorconfiginput.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unstructured-IO/unstructured-python-client/HEAD/docs/models/shared/kafkacloudsourceconnectorconfiginput.md -------------------------------------------------------------------------------- /docs/models/shared/loc.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unstructured-IO/unstructured-python-client/HEAD/docs/models/shared/loc.md -------------------------------------------------------------------------------- /docs/models/shared/milvusdestinationconnectorconfig.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unstructured-IO/unstructured-python-client/HEAD/docs/models/shared/milvusdestinationconnectorconfig.md -------------------------------------------------------------------------------- /docs/models/shared/milvusdestinationconnectorconfiginput.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unstructured-IO/unstructured-python-client/HEAD/docs/models/shared/milvusdestinationconnectorconfiginput.md -------------------------------------------------------------------------------- /docs/models/shared/mongodbconnectorconfig.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unstructured-IO/unstructured-python-client/HEAD/docs/models/shared/mongodbconnectorconfig.md -------------------------------------------------------------------------------- /docs/models/shared/mongodbconnectorconfiginput.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unstructured-IO/unstructured-python-client/HEAD/docs/models/shared/mongodbconnectorconfiginput.md -------------------------------------------------------------------------------- /docs/models/shared/neo4jdestinationconnectorconfig.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unstructured-IO/unstructured-python-client/HEAD/docs/models/shared/neo4jdestinationconnectorconfig.md -------------------------------------------------------------------------------- /docs/models/shared/neo4jdestinationconnectorconfiginput.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unstructured-IO/unstructured-python-client/HEAD/docs/models/shared/neo4jdestinationconnectorconfiginput.md -------------------------------------------------------------------------------- /docs/models/shared/nodefilemetadata.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unstructured-IO/unstructured-python-client/HEAD/docs/models/shared/nodefilemetadata.md -------------------------------------------------------------------------------- /docs/models/shared/onedrivedestinationconnectorconfig.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unstructured-IO/unstructured-python-client/HEAD/docs/models/shared/onedrivedestinationconnectorconfig.md -------------------------------------------------------------------------------- /docs/models/shared/onedrivedestinationconnectorconfiginput.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unstructured-IO/unstructured-python-client/HEAD/docs/models/shared/onedrivedestinationconnectorconfiginput.md -------------------------------------------------------------------------------- /docs/models/shared/onedrivesourceconnectorconfig.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unstructured-IO/unstructured-python-client/HEAD/docs/models/shared/onedrivesourceconnectorconfig.md -------------------------------------------------------------------------------- /docs/models/shared/onedrivesourceconnectorconfiginput.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unstructured-IO/unstructured-python-client/HEAD/docs/models/shared/onedrivesourceconnectorconfiginput.md -------------------------------------------------------------------------------- /docs/models/shared/outlooksourceconnectorconfig.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unstructured-IO/unstructured-python-client/HEAD/docs/models/shared/outlooksourceconnectorconfig.md -------------------------------------------------------------------------------- /docs/models/shared/outlooksourceconnectorconfiginput.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unstructured-IO/unstructured-python-client/HEAD/docs/models/shared/outlooksourceconnectorconfiginput.md -------------------------------------------------------------------------------- /docs/models/shared/outputformat.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unstructured-IO/unstructured-python-client/HEAD/docs/models/shared/outputformat.md -------------------------------------------------------------------------------- /docs/models/shared/partitionparameters.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unstructured-IO/unstructured-python-client/HEAD/docs/models/shared/partitionparameters.md -------------------------------------------------------------------------------- /docs/models/shared/pineconedestinationconnectorconfig.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unstructured-IO/unstructured-python-client/HEAD/docs/models/shared/pineconedestinationconnectorconfig.md -------------------------------------------------------------------------------- /docs/models/shared/pineconedestinationconnectorconfiginput.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unstructured-IO/unstructured-python-client/HEAD/docs/models/shared/pineconedestinationconnectorconfiginput.md -------------------------------------------------------------------------------- /docs/models/shared/postgresdestinationconnectorconfig.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unstructured-IO/unstructured-python-client/HEAD/docs/models/shared/postgresdestinationconnectorconfig.md -------------------------------------------------------------------------------- /docs/models/shared/postgresdestinationconnectorconfiginput.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unstructured-IO/unstructured-python-client/HEAD/docs/models/shared/postgresdestinationconnectorconfiginput.md -------------------------------------------------------------------------------- /docs/models/shared/postgressourceconnectorconfig.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unstructured-IO/unstructured-python-client/HEAD/docs/models/shared/postgressourceconnectorconfig.md -------------------------------------------------------------------------------- /docs/models/shared/postgressourceconnectorconfiginput.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unstructured-IO/unstructured-python-client/HEAD/docs/models/shared/postgressourceconnectorconfiginput.md -------------------------------------------------------------------------------- /docs/models/shared/qdrantclouddestinationconnectorconfig.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unstructured-IO/unstructured-python-client/HEAD/docs/models/shared/qdrantclouddestinationconnectorconfig.md -------------------------------------------------------------------------------- /docs/models/shared/qdrantclouddestinationconnectorconfiginput.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unstructured-IO/unstructured-python-client/HEAD/docs/models/shared/qdrantclouddestinationconnectorconfiginput.md -------------------------------------------------------------------------------- /docs/models/shared/redisdestinationconnectorconfig.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unstructured-IO/unstructured-python-client/HEAD/docs/models/shared/redisdestinationconnectorconfig.md -------------------------------------------------------------------------------- /docs/models/shared/redisdestinationconnectorconfiginput.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unstructured-IO/unstructured-python-client/HEAD/docs/models/shared/redisdestinationconnectorconfiginput.md -------------------------------------------------------------------------------- /docs/models/shared/s3destinationconnectorconfig.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unstructured-IO/unstructured-python-client/HEAD/docs/models/shared/s3destinationconnectorconfig.md -------------------------------------------------------------------------------- /docs/models/shared/s3destinationconnectorconfiginput.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unstructured-IO/unstructured-python-client/HEAD/docs/models/shared/s3destinationconnectorconfiginput.md -------------------------------------------------------------------------------- /docs/models/shared/s3sourceconnectorconfig.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unstructured-IO/unstructured-python-client/HEAD/docs/models/shared/s3sourceconnectorconfig.md -------------------------------------------------------------------------------- /docs/models/shared/s3sourceconnectorconfiginput.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unstructured-IO/unstructured-python-client/HEAD/docs/models/shared/s3sourceconnectorconfiginput.md -------------------------------------------------------------------------------- /docs/models/shared/salesforcesourceconnectorconfig.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unstructured-IO/unstructured-python-client/HEAD/docs/models/shared/salesforcesourceconnectorconfig.md -------------------------------------------------------------------------------- /docs/models/shared/salesforcesourceconnectorconfiginput.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unstructured-IO/unstructured-python-client/HEAD/docs/models/shared/salesforcesourceconnectorconfiginput.md -------------------------------------------------------------------------------- /docs/models/shared/schedule.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unstructured-IO/unstructured-python-client/HEAD/docs/models/shared/schedule.md -------------------------------------------------------------------------------- /docs/models/shared/secretreference.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unstructured-IO/unstructured-python-client/HEAD/docs/models/shared/secretreference.md -------------------------------------------------------------------------------- /docs/models/shared/security.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unstructured-IO/unstructured-python-client/HEAD/docs/models/shared/security.md -------------------------------------------------------------------------------- /docs/models/shared/serviceaccountkey.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unstructured-IO/unstructured-python-client/HEAD/docs/models/shared/serviceaccountkey.md -------------------------------------------------------------------------------- /docs/models/shared/sharepointsourceconnectorconfig.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unstructured-IO/unstructured-python-client/HEAD/docs/models/shared/sharepointsourceconnectorconfig.md -------------------------------------------------------------------------------- /docs/models/shared/sharepointsourceconnectorconfiginput.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unstructured-IO/unstructured-python-client/HEAD/docs/models/shared/sharepointsourceconnectorconfiginput.md -------------------------------------------------------------------------------- /docs/models/shared/snowflakedestinationconnectorconfig.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unstructured-IO/unstructured-python-client/HEAD/docs/models/shared/snowflakedestinationconnectorconfig.md -------------------------------------------------------------------------------- /docs/models/shared/snowflakedestinationconnectorconfiginput.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unstructured-IO/unstructured-python-client/HEAD/docs/models/shared/snowflakedestinationconnectorconfiginput.md -------------------------------------------------------------------------------- /docs/models/shared/snowflakesourceconnectorconfig.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unstructured-IO/unstructured-python-client/HEAD/docs/models/shared/snowflakesourceconnectorconfig.md -------------------------------------------------------------------------------- /docs/models/shared/snowflakesourceconnectorconfiginput.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unstructured-IO/unstructured-python-client/HEAD/docs/models/shared/snowflakesourceconnectorconfiginput.md -------------------------------------------------------------------------------- /docs/models/shared/sortdirection.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unstructured-IO/unstructured-python-client/HEAD/docs/models/shared/sortdirection.md -------------------------------------------------------------------------------- /docs/models/shared/sourceconnectorinformation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unstructured-IO/unstructured-python-client/HEAD/docs/models/shared/sourceconnectorinformation.md -------------------------------------------------------------------------------- /docs/models/shared/sourceconnectorinformationconfig.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unstructured-IO/unstructured-python-client/HEAD/docs/models/shared/sourceconnectorinformationconfig.md -------------------------------------------------------------------------------- /docs/models/shared/sourceconnectortype.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unstructured-IO/unstructured-python-client/HEAD/docs/models/shared/sourceconnectortype.md -------------------------------------------------------------------------------- /docs/models/shared/strategy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unstructured-IO/unstructured-python-client/HEAD/docs/models/shared/strategy.md -------------------------------------------------------------------------------- /docs/models/shared/updatedestinationconnector.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unstructured-IO/unstructured-python-client/HEAD/docs/models/shared/updatedestinationconnector.md -------------------------------------------------------------------------------- /docs/models/shared/updatedestinationconnectorconfig.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unstructured-IO/unstructured-python-client/HEAD/docs/models/shared/updatedestinationconnectorconfig.md -------------------------------------------------------------------------------- /docs/models/shared/updatesourceconnector.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unstructured-IO/unstructured-python-client/HEAD/docs/models/shared/updatesourceconnector.md -------------------------------------------------------------------------------- /docs/models/shared/updatesourceconnectorconfig.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unstructured-IO/unstructured-python-client/HEAD/docs/models/shared/updatesourceconnectorconfig.md -------------------------------------------------------------------------------- /docs/models/shared/updateworkflow.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unstructured-IO/unstructured-python-client/HEAD/docs/models/shared/updateworkflow.md -------------------------------------------------------------------------------- /docs/models/shared/updateworkflowschedule.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unstructured-IO/unstructured-python-client/HEAD/docs/models/shared/updateworkflowschedule.md -------------------------------------------------------------------------------- /docs/models/shared/validationerror.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unstructured-IO/unstructured-python-client/HEAD/docs/models/shared/validationerror.md -------------------------------------------------------------------------------- /docs/models/shared/vlmmodel.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unstructured-IO/unstructured-python-client/HEAD/docs/models/shared/vlmmodel.md -------------------------------------------------------------------------------- /docs/models/shared/vlmmodelprovider.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unstructured-IO/unstructured-python-client/HEAD/docs/models/shared/vlmmodelprovider.md -------------------------------------------------------------------------------- /docs/models/shared/weaviatedestinationconnectorconfig.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unstructured-IO/unstructured-python-client/HEAD/docs/models/shared/weaviatedestinationconnectorconfig.md -------------------------------------------------------------------------------- /docs/models/shared/weaviatedestinationconnectorconfiginput.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unstructured-IO/unstructured-python-client/HEAD/docs/models/shared/weaviatedestinationconnectorconfiginput.md -------------------------------------------------------------------------------- /docs/models/shared/workflowinformation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unstructured-IO/unstructured-python-client/HEAD/docs/models/shared/workflowinformation.md -------------------------------------------------------------------------------- /docs/models/shared/workflowjobtype.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unstructured-IO/unstructured-python-client/HEAD/docs/models/shared/workflowjobtype.md -------------------------------------------------------------------------------- /docs/models/shared/workflownode.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unstructured-IO/unstructured-python-client/HEAD/docs/models/shared/workflownode.md -------------------------------------------------------------------------------- /docs/models/shared/workflownodetype.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unstructured-IO/unstructured-python-client/HEAD/docs/models/shared/workflownodetype.md -------------------------------------------------------------------------------- /docs/models/shared/workflowschedule.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unstructured-IO/unstructured-python-client/HEAD/docs/models/shared/workflowschedule.md -------------------------------------------------------------------------------- /docs/models/shared/workflowstate.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unstructured-IO/unstructured-python-client/HEAD/docs/models/shared/workflowstate.md -------------------------------------------------------------------------------- /docs/models/shared/workflowtype.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unstructured-IO/unstructured-python-client/HEAD/docs/models/shared/workflowtype.md -------------------------------------------------------------------------------- /docs/models/shared/zendesksourceconnectorconfig.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unstructured-IO/unstructured-python-client/HEAD/docs/models/shared/zendesksourceconnectorconfig.md -------------------------------------------------------------------------------- /docs/models/shared/zendesksourceconnectorconfiginput.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unstructured-IO/unstructured-python-client/HEAD/docs/models/shared/zendesksourceconnectorconfiginput.md -------------------------------------------------------------------------------- /docs/models/utils/retryconfig.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unstructured-IO/unstructured-python-client/HEAD/docs/models/utils/retryconfig.md -------------------------------------------------------------------------------- /docs/sdks/destinations/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unstructured-IO/unstructured-python-client/HEAD/docs/sdks/destinations/README.md -------------------------------------------------------------------------------- /docs/sdks/general/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unstructured-IO/unstructured-python-client/HEAD/docs/sdks/general/README.md -------------------------------------------------------------------------------- /docs/sdks/jobs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unstructured-IO/unstructured-python-client/HEAD/docs/sdks/jobs/README.md -------------------------------------------------------------------------------- /docs/sdks/sources/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unstructured-IO/unstructured-python-client/HEAD/docs/sdks/sources/README.md -------------------------------------------------------------------------------- /docs/sdks/unstructuredclient/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unstructured-IO/unstructured-python-client/HEAD/docs/sdks/unstructuredclient/README.md -------------------------------------------------------------------------------- /docs/sdks/workflows/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unstructured-IO/unstructured-python-client/HEAD/docs/sdks/workflows/README.md -------------------------------------------------------------------------------- /files.gen: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unstructured-IO/unstructured-python-client/HEAD/files.gen -------------------------------------------------------------------------------- /gen.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unstructured-IO/unstructured-python-client/HEAD/gen.yaml -------------------------------------------------------------------------------- /overlay_client.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unstructured-IO/unstructured-python-client/HEAD/overlay_client.yaml -------------------------------------------------------------------------------- /poetry.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unstructured-IO/unstructured-python-client/HEAD/poetry.lock -------------------------------------------------------------------------------- /poetry.toml: -------------------------------------------------------------------------------- 1 | 2 | [virtualenvs] 3 | in-project = true 4 | -------------------------------------------------------------------------------- /py.typed: -------------------------------------------------------------------------------- 1 | # Marker file for PEP 561. The package enables type hints. 2 | -------------------------------------------------------------------------------- /pylintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unstructured-IO/unstructured-python-client/HEAD/pylintrc -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unstructured-IO/unstructured-python-client/HEAD/pyproject.toml -------------------------------------------------------------------------------- /scripts/prepare_readme.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unstructured-IO/unstructured-python-client/HEAD/scripts/prepare_readme.py -------------------------------------------------------------------------------- /scripts/publish.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unstructured-IO/unstructured-python-client/HEAD/scripts/publish.sh -------------------------------------------------------------------------------- /src/unstructured_client/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unstructured-IO/unstructured-python-client/HEAD/src/unstructured_client/__init__.py -------------------------------------------------------------------------------- /src/unstructured_client/_hooks/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unstructured-IO/unstructured-python-client/HEAD/src/unstructured_client/_hooks/__init__.py -------------------------------------------------------------------------------- /src/unstructured_client/_hooks/custom/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unstructured-IO/unstructured-python-client/HEAD/src/unstructured_client/_hooks/custom/__init__.py -------------------------------------------------------------------------------- /src/unstructured_client/_hooks/custom/clean_server_url_hook.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unstructured-IO/unstructured-python-client/HEAD/src/unstructured_client/_hooks/custom/clean_server_url_hook.py -------------------------------------------------------------------------------- /src/unstructured_client/_hooks/custom/common.py: -------------------------------------------------------------------------------- 1 | UNSTRUCTURED_CLIENT_LOGGER_NAME = "unstructured-client" 2 | -------------------------------------------------------------------------------- /src/unstructured_client/_hooks/custom/form_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unstructured-IO/unstructured-python-client/HEAD/src/unstructured_client/_hooks/custom/form_utils.py -------------------------------------------------------------------------------- /src/unstructured_client/_hooks/custom/logger_hook.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unstructured-IO/unstructured-python-client/HEAD/src/unstructured_client/_hooks/custom/logger_hook.py -------------------------------------------------------------------------------- /src/unstructured_client/_hooks/custom/pdf_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unstructured-IO/unstructured-python-client/HEAD/src/unstructured_client/_hooks/custom/pdf_utils.py -------------------------------------------------------------------------------- /src/unstructured_client/_hooks/custom/request_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unstructured-IO/unstructured-python-client/HEAD/src/unstructured_client/_hooks/custom/request_utils.py -------------------------------------------------------------------------------- /src/unstructured_client/_hooks/custom/split_pdf_hook.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unstructured-IO/unstructured-python-client/HEAD/src/unstructured_client/_hooks/custom/split_pdf_hook.py -------------------------------------------------------------------------------- /src/unstructured_client/_hooks/custom/validation_errors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unstructured-IO/unstructured-python-client/HEAD/src/unstructured_client/_hooks/custom/validation_errors.py -------------------------------------------------------------------------------- /src/unstructured_client/_hooks/registration.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unstructured-IO/unstructured-python-client/HEAD/src/unstructured_client/_hooks/registration.py -------------------------------------------------------------------------------- /src/unstructured_client/_hooks/sdkhooks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unstructured-IO/unstructured-python-client/HEAD/src/unstructured_client/_hooks/sdkhooks.py -------------------------------------------------------------------------------- /src/unstructured_client/_hooks/types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unstructured-IO/unstructured-python-client/HEAD/src/unstructured_client/_hooks/types.py -------------------------------------------------------------------------------- /src/unstructured_client/_version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unstructured-IO/unstructured-python-client/HEAD/src/unstructured_client/_version.py -------------------------------------------------------------------------------- /src/unstructured_client/basesdk.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unstructured-IO/unstructured-python-client/HEAD/src/unstructured_client/basesdk.py -------------------------------------------------------------------------------- /src/unstructured_client/destinations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unstructured-IO/unstructured-python-client/HEAD/src/unstructured_client/destinations.py -------------------------------------------------------------------------------- /src/unstructured_client/general.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unstructured-IO/unstructured-python-client/HEAD/src/unstructured_client/general.py -------------------------------------------------------------------------------- /src/unstructured_client/httpclient.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unstructured-IO/unstructured-python-client/HEAD/src/unstructured_client/httpclient.py -------------------------------------------------------------------------------- /src/unstructured_client/jobs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unstructured-IO/unstructured-python-client/HEAD/src/unstructured_client/jobs.py -------------------------------------------------------------------------------- /src/unstructured_client/models/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unstructured-IO/unstructured-python-client/HEAD/src/unstructured_client/models/__init__.py -------------------------------------------------------------------------------- /src/unstructured_client/models/errors/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unstructured-IO/unstructured-python-client/HEAD/src/unstructured_client/models/errors/__init__.py -------------------------------------------------------------------------------- /src/unstructured_client/models/errors/httpvalidationerror.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unstructured-IO/unstructured-python-client/HEAD/src/unstructured_client/models/errors/httpvalidationerror.py -------------------------------------------------------------------------------- /src/unstructured_client/models/errors/no_response_error.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unstructured-IO/unstructured-python-client/HEAD/src/unstructured_client/models/errors/no_response_error.py -------------------------------------------------------------------------------- /src/unstructured_client/models/errors/responsevalidationerror.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unstructured-IO/unstructured-python-client/HEAD/src/unstructured_client/models/errors/responsevalidationerror.py -------------------------------------------------------------------------------- /src/unstructured_client/models/errors/sdkerror.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unstructured-IO/unstructured-python-client/HEAD/src/unstructured_client/models/errors/sdkerror.py -------------------------------------------------------------------------------- /src/unstructured_client/models/errors/servererror.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unstructured-IO/unstructured-python-client/HEAD/src/unstructured_client/models/errors/servererror.py -------------------------------------------------------------------------------- /src/unstructured_client/models/errors/unstructuredclienterror.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unstructured-IO/unstructured-python-client/HEAD/src/unstructured_client/models/errors/unstructuredclienterror.py -------------------------------------------------------------------------------- /src/unstructured_client/models/operations/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unstructured-IO/unstructured-python-client/HEAD/src/unstructured_client/models/operations/__init__.py -------------------------------------------------------------------------------- /src/unstructured_client/models/operations/cancel_job.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unstructured-IO/unstructured-python-client/HEAD/src/unstructured_client/models/operations/cancel_job.py -------------------------------------------------------------------------------- /src/unstructured_client/models/operations/create_connection_check_destinations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unstructured-IO/unstructured-python-client/HEAD/src/unstructured_client/models/operations/create_connection_check_destinations.py -------------------------------------------------------------------------------- /src/unstructured_client/models/operations/create_connection_check_sources.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unstructured-IO/unstructured-python-client/HEAD/src/unstructured_client/models/operations/create_connection_check_sources.py -------------------------------------------------------------------------------- /src/unstructured_client/models/operations/create_destination.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unstructured-IO/unstructured-python-client/HEAD/src/unstructured_client/models/operations/create_destination.py -------------------------------------------------------------------------------- /src/unstructured_client/models/operations/create_source.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unstructured-IO/unstructured-python-client/HEAD/src/unstructured_client/models/operations/create_source.py -------------------------------------------------------------------------------- /src/unstructured_client/models/operations/create_workflow.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unstructured-IO/unstructured-python-client/HEAD/src/unstructured_client/models/operations/create_workflow.py -------------------------------------------------------------------------------- /src/unstructured_client/models/operations/delete_destination.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unstructured-IO/unstructured-python-client/HEAD/src/unstructured_client/models/operations/delete_destination.py -------------------------------------------------------------------------------- /src/unstructured_client/models/operations/delete_source.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unstructured-IO/unstructured-python-client/HEAD/src/unstructured_client/models/operations/delete_source.py -------------------------------------------------------------------------------- /src/unstructured_client/models/operations/delete_workflow.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unstructured-IO/unstructured-python-client/HEAD/src/unstructured_client/models/operations/delete_workflow.py -------------------------------------------------------------------------------- /src/unstructured_client/models/operations/download_job_output.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unstructured-IO/unstructured-python-client/HEAD/src/unstructured_client/models/operations/download_job_output.py -------------------------------------------------------------------------------- /src/unstructured_client/models/operations/get_connection_check_destinations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unstructured-IO/unstructured-python-client/HEAD/src/unstructured_client/models/operations/get_connection_check_destinations.py -------------------------------------------------------------------------------- /src/unstructured_client/models/operations/get_connection_check_sources.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unstructured-IO/unstructured-python-client/HEAD/src/unstructured_client/models/operations/get_connection_check_sources.py -------------------------------------------------------------------------------- /src/unstructured_client/models/operations/get_destination.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unstructured-IO/unstructured-python-client/HEAD/src/unstructured_client/models/operations/get_destination.py -------------------------------------------------------------------------------- /src/unstructured_client/models/operations/get_job.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unstructured-IO/unstructured-python-client/HEAD/src/unstructured_client/models/operations/get_job.py -------------------------------------------------------------------------------- /src/unstructured_client/models/operations/get_job_details.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unstructured-IO/unstructured-python-client/HEAD/src/unstructured_client/models/operations/get_job_details.py -------------------------------------------------------------------------------- /src/unstructured_client/models/operations/get_job_failed_files.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unstructured-IO/unstructured-python-client/HEAD/src/unstructured_client/models/operations/get_job_failed_files.py -------------------------------------------------------------------------------- /src/unstructured_client/models/operations/get_source.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unstructured-IO/unstructured-python-client/HEAD/src/unstructured_client/models/operations/get_source.py -------------------------------------------------------------------------------- /src/unstructured_client/models/operations/get_workflow.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unstructured-IO/unstructured-python-client/HEAD/src/unstructured_client/models/operations/get_workflow.py -------------------------------------------------------------------------------- /src/unstructured_client/models/operations/list_destinations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unstructured-IO/unstructured-python-client/HEAD/src/unstructured_client/models/operations/list_destinations.py -------------------------------------------------------------------------------- /src/unstructured_client/models/operations/list_jobs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unstructured-IO/unstructured-python-client/HEAD/src/unstructured_client/models/operations/list_jobs.py -------------------------------------------------------------------------------- /src/unstructured_client/models/operations/list_sources.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unstructured-IO/unstructured-python-client/HEAD/src/unstructured_client/models/operations/list_sources.py -------------------------------------------------------------------------------- /src/unstructured_client/models/operations/list_workflows.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unstructured-IO/unstructured-python-client/HEAD/src/unstructured_client/models/operations/list_workflows.py -------------------------------------------------------------------------------- /src/unstructured_client/models/operations/partition.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unstructured-IO/unstructured-python-client/HEAD/src/unstructured_client/models/operations/partition.py -------------------------------------------------------------------------------- /src/unstructured_client/models/operations/run_workflow.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unstructured-IO/unstructured-python-client/HEAD/src/unstructured_client/models/operations/run_workflow.py -------------------------------------------------------------------------------- /src/unstructured_client/models/operations/update_destination.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unstructured-IO/unstructured-python-client/HEAD/src/unstructured_client/models/operations/update_destination.py -------------------------------------------------------------------------------- /src/unstructured_client/models/operations/update_source.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unstructured-IO/unstructured-python-client/HEAD/src/unstructured_client/models/operations/update_source.py -------------------------------------------------------------------------------- /src/unstructured_client/models/operations/update_workflow.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unstructured-IO/unstructured-python-client/HEAD/src/unstructured_client/models/operations/update_workflow.py -------------------------------------------------------------------------------- /src/unstructured_client/models/shared/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unstructured-IO/unstructured-python-client/HEAD/src/unstructured_client/models/shared/__init__.py -------------------------------------------------------------------------------- /src/unstructured_client/models/shared/astradbconnectorconfig.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unstructured-IO/unstructured-python-client/HEAD/src/unstructured_client/models/shared/astradbconnectorconfig.py -------------------------------------------------------------------------------- /src/unstructured_client/models/shared/astradbconnectorconfiginput.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unstructured-IO/unstructured-python-client/HEAD/src/unstructured_client/models/shared/astradbconnectorconfiginput.py -------------------------------------------------------------------------------- /src/unstructured_client/models/shared/azureaisearchconnectorconfig.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unstructured-IO/unstructured-python-client/HEAD/src/unstructured_client/models/shared/azureaisearchconnectorconfig.py -------------------------------------------------------------------------------- /src/unstructured_client/models/shared/azureaisearchconnectorconfiginput.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unstructured-IO/unstructured-python-client/HEAD/src/unstructured_client/models/shared/azureaisearchconnectorconfiginput.py -------------------------------------------------------------------------------- /src/unstructured_client/models/shared/azuredestinationconnectorconfig.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unstructured-IO/unstructured-python-client/HEAD/src/unstructured_client/models/shared/azuredestinationconnectorconfig.py -------------------------------------------------------------------------------- /src/unstructured_client/models/shared/azuredestinationconnectorconfiginput.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unstructured-IO/unstructured-python-client/HEAD/src/unstructured_client/models/shared/azuredestinationconnectorconfiginput.py -------------------------------------------------------------------------------- /src/unstructured_client/models/shared/azuresourceconnectorconfig.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unstructured-IO/unstructured-python-client/HEAD/src/unstructured_client/models/shared/azuresourceconnectorconfig.py -------------------------------------------------------------------------------- /src/unstructured_client/models/shared/azuresourceconnectorconfiginput.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unstructured-IO/unstructured-python-client/HEAD/src/unstructured_client/models/shared/azuresourceconnectorconfiginput.py -------------------------------------------------------------------------------- /src/unstructured_client/models/shared/body_run_workflow.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unstructured-IO/unstructured-python-client/HEAD/src/unstructured_client/models/shared/body_run_workflow.py -------------------------------------------------------------------------------- /src/unstructured_client/models/shared/boxsourceconnectorconfig.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unstructured-IO/unstructured-python-client/HEAD/src/unstructured_client/models/shared/boxsourceconnectorconfig.py -------------------------------------------------------------------------------- /src/unstructured_client/models/shared/boxsourceconnectorconfiginput.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unstructured-IO/unstructured-python-client/HEAD/src/unstructured_client/models/shared/boxsourceconnectorconfiginput.py -------------------------------------------------------------------------------- /src/unstructured_client/models/shared/confluencesourceconnectorconfig.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unstructured-IO/unstructured-python-client/HEAD/src/unstructured_client/models/shared/confluencesourceconnectorconfig.py -------------------------------------------------------------------------------- /src/unstructured_client/models/shared/confluencesourceconnectorconfiginput.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unstructured-IO/unstructured-python-client/HEAD/src/unstructured_client/models/shared/confluencesourceconnectorconfiginput.py -------------------------------------------------------------------------------- /src/unstructured_client/models/shared/connectioncheckstatus.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unstructured-IO/unstructured-python-client/HEAD/src/unstructured_client/models/shared/connectioncheckstatus.py -------------------------------------------------------------------------------- /src/unstructured_client/models/shared/couchbasedestinationconnectorconfig.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unstructured-IO/unstructured-python-client/HEAD/src/unstructured_client/models/shared/couchbasedestinationconnectorconfig.py -------------------------------------------------------------------------------- /src/unstructured_client/models/shared/couchbasedestinationconnectorconfiginput.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unstructured-IO/unstructured-python-client/HEAD/src/unstructured_client/models/shared/couchbasedestinationconnectorconfiginput.py -------------------------------------------------------------------------------- /src/unstructured_client/models/shared/couchbasesourceconnectorconfig.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unstructured-IO/unstructured-python-client/HEAD/src/unstructured_client/models/shared/couchbasesourceconnectorconfig.py -------------------------------------------------------------------------------- /src/unstructured_client/models/shared/couchbasesourceconnectorconfiginput.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unstructured-IO/unstructured-python-client/HEAD/src/unstructured_client/models/shared/couchbasesourceconnectorconfiginput.py -------------------------------------------------------------------------------- /src/unstructured_client/models/shared/createdestinationconnector.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unstructured-IO/unstructured-python-client/HEAD/src/unstructured_client/models/shared/createdestinationconnector.py -------------------------------------------------------------------------------- /src/unstructured_client/models/shared/createsourceconnector.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unstructured-IO/unstructured-python-client/HEAD/src/unstructured_client/models/shared/createsourceconnector.py -------------------------------------------------------------------------------- /src/unstructured_client/models/shared/createworkflow.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unstructured-IO/unstructured-python-client/HEAD/src/unstructured_client/models/shared/createworkflow.py -------------------------------------------------------------------------------- /src/unstructured_client/models/shared/crontabentry.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unstructured-IO/unstructured-python-client/HEAD/src/unstructured_client/models/shared/crontabentry.py -------------------------------------------------------------------------------- /src/unstructured_client/models/shared/dagnodeconnectioncheck.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unstructured-IO/unstructured-python-client/HEAD/src/unstructured_client/models/shared/dagnodeconnectioncheck.py -------------------------------------------------------------------------------- /src/unstructured_client/models/shared/databricksvdtdestinationconnectorconfig.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unstructured-IO/unstructured-python-client/HEAD/src/unstructured_client/models/shared/databricksvdtdestinationconnectorconfig.py -------------------------------------------------------------------------------- /src/unstructured_client/models/shared/databricksvdtdestinationconnectorconfiginput.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unstructured-IO/unstructured-python-client/HEAD/src/unstructured_client/models/shared/databricksvdtdestinationconnectorconfiginput.py -------------------------------------------------------------------------------- /src/unstructured_client/models/shared/databricksvolumesconnectorconfig.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unstructured-IO/unstructured-python-client/HEAD/src/unstructured_client/models/shared/databricksvolumesconnectorconfig.py -------------------------------------------------------------------------------- /src/unstructured_client/models/shared/databricksvolumesconnectorconfiginput.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unstructured-IO/unstructured-python-client/HEAD/src/unstructured_client/models/shared/databricksvolumesconnectorconfiginput.py -------------------------------------------------------------------------------- /src/unstructured_client/models/shared/deltatableconnectorconfig.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unstructured-IO/unstructured-python-client/HEAD/src/unstructured_client/models/shared/deltatableconnectorconfig.py -------------------------------------------------------------------------------- /src/unstructured_client/models/shared/deltatableconnectorconfiginput.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unstructured-IO/unstructured-python-client/HEAD/src/unstructured_client/models/shared/deltatableconnectorconfiginput.py -------------------------------------------------------------------------------- /src/unstructured_client/models/shared/destinationconnectorinformation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unstructured-IO/unstructured-python-client/HEAD/src/unstructured_client/models/shared/destinationconnectorinformation.py -------------------------------------------------------------------------------- /src/unstructured_client/models/shared/destinationconnectortype.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unstructured-IO/unstructured-python-client/HEAD/src/unstructured_client/models/shared/destinationconnectortype.py -------------------------------------------------------------------------------- /src/unstructured_client/models/shared/dropboxsourceconnectorconfig.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unstructured-IO/unstructured-python-client/HEAD/src/unstructured_client/models/shared/dropboxsourceconnectorconfig.py -------------------------------------------------------------------------------- /src/unstructured_client/models/shared/dropboxsourceconnectorconfiginput.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unstructured-IO/unstructured-python-client/HEAD/src/unstructured_client/models/shared/dropboxsourceconnectorconfiginput.py -------------------------------------------------------------------------------- /src/unstructured_client/models/shared/elasticsearchconnectorconfig.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unstructured-IO/unstructured-python-client/HEAD/src/unstructured_client/models/shared/elasticsearchconnectorconfig.py -------------------------------------------------------------------------------- /src/unstructured_client/models/shared/elasticsearchconnectorconfiginput.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unstructured-IO/unstructured-python-client/HEAD/src/unstructured_client/models/shared/elasticsearchconnectorconfiginput.py -------------------------------------------------------------------------------- /src/unstructured_client/models/shared/encryptiontype.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unstructured-IO/unstructured-python-client/HEAD/src/unstructured_client/models/shared/encryptiontype.py -------------------------------------------------------------------------------- /src/unstructured_client/models/shared/failedfile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unstructured-IO/unstructured-python-client/HEAD/src/unstructured_client/models/shared/failedfile.py -------------------------------------------------------------------------------- /src/unstructured_client/models/shared/gcsdestinationconnectorconfig.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unstructured-IO/unstructured-python-client/HEAD/src/unstructured_client/models/shared/gcsdestinationconnectorconfig.py -------------------------------------------------------------------------------- /src/unstructured_client/models/shared/gcsdestinationconnectorconfiginput.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unstructured-IO/unstructured-python-client/HEAD/src/unstructured_client/models/shared/gcsdestinationconnectorconfiginput.py -------------------------------------------------------------------------------- /src/unstructured_client/models/shared/gcssourceconnectorconfig.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unstructured-IO/unstructured-python-client/HEAD/src/unstructured_client/models/shared/gcssourceconnectorconfig.py -------------------------------------------------------------------------------- /src/unstructured_client/models/shared/gcssourceconnectorconfiginput.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unstructured-IO/unstructured-python-client/HEAD/src/unstructured_client/models/shared/gcssourceconnectorconfiginput.py -------------------------------------------------------------------------------- /src/unstructured_client/models/shared/googledrivesourceconnectorconfig.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unstructured-IO/unstructured-python-client/HEAD/src/unstructured_client/models/shared/googledrivesourceconnectorconfig.py -------------------------------------------------------------------------------- /src/unstructured_client/models/shared/googledrivesourceconnectorconfiginput.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unstructured-IO/unstructured-python-client/HEAD/src/unstructured_client/models/shared/googledrivesourceconnectorconfiginput.py -------------------------------------------------------------------------------- /src/unstructured_client/models/shared/ibmwatsonxs3destinationconnectorconfig.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unstructured-IO/unstructured-python-client/HEAD/src/unstructured_client/models/shared/ibmwatsonxs3destinationconnectorconfig.py -------------------------------------------------------------------------------- /src/unstructured_client/models/shared/ibmwatsonxs3destinationconnectorconfiginput.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unstructured-IO/unstructured-python-client/HEAD/src/unstructured_client/models/shared/ibmwatsonxs3destinationconnectorconfiginput.py -------------------------------------------------------------------------------- /src/unstructured_client/models/shared/jirasourceconnectorconfig.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unstructured-IO/unstructured-python-client/HEAD/src/unstructured_client/models/shared/jirasourceconnectorconfig.py -------------------------------------------------------------------------------- /src/unstructured_client/models/shared/jirasourceconnectorconfiginput.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unstructured-IO/unstructured-python-client/HEAD/src/unstructured_client/models/shared/jirasourceconnectorconfiginput.py -------------------------------------------------------------------------------- /src/unstructured_client/models/shared/jobdetails.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unstructured-IO/unstructured-python-client/HEAD/src/unstructured_client/models/shared/jobdetails.py -------------------------------------------------------------------------------- /src/unstructured_client/models/shared/jobfailedfiles.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unstructured-IO/unstructured-python-client/HEAD/src/unstructured_client/models/shared/jobfailedfiles.py -------------------------------------------------------------------------------- /src/unstructured_client/models/shared/jobinformation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unstructured-IO/unstructured-python-client/HEAD/src/unstructured_client/models/shared/jobinformation.py -------------------------------------------------------------------------------- /src/unstructured_client/models/shared/jobnodedetails.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unstructured-IO/unstructured-python-client/HEAD/src/unstructured_client/models/shared/jobnodedetails.py -------------------------------------------------------------------------------- /src/unstructured_client/models/shared/jobprocessingstatus.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unstructured-IO/unstructured-python-client/HEAD/src/unstructured_client/models/shared/jobprocessingstatus.py -------------------------------------------------------------------------------- /src/unstructured_client/models/shared/jobstatus.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unstructured-IO/unstructured-python-client/HEAD/src/unstructured_client/models/shared/jobstatus.py -------------------------------------------------------------------------------- /src/unstructured_client/models/shared/kafkaclouddestinationconnectorconfig.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unstructured-IO/unstructured-python-client/HEAD/src/unstructured_client/models/shared/kafkaclouddestinationconnectorconfig.py -------------------------------------------------------------------------------- /src/unstructured_client/models/shared/kafkaclouddestinationconnectorconfiginput.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unstructured-IO/unstructured-python-client/HEAD/src/unstructured_client/models/shared/kafkaclouddestinationconnectorconfiginput.py -------------------------------------------------------------------------------- /src/unstructured_client/models/shared/kafkacloudsourceconnectorconfig.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unstructured-IO/unstructured-python-client/HEAD/src/unstructured_client/models/shared/kafkacloudsourceconnectorconfig.py -------------------------------------------------------------------------------- /src/unstructured_client/models/shared/kafkacloudsourceconnectorconfiginput.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unstructured-IO/unstructured-python-client/HEAD/src/unstructured_client/models/shared/kafkacloudsourceconnectorconfiginput.py -------------------------------------------------------------------------------- /src/unstructured_client/models/shared/milvusdestinationconnectorconfig.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unstructured-IO/unstructured-python-client/HEAD/src/unstructured_client/models/shared/milvusdestinationconnectorconfig.py -------------------------------------------------------------------------------- /src/unstructured_client/models/shared/milvusdestinationconnectorconfiginput.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unstructured-IO/unstructured-python-client/HEAD/src/unstructured_client/models/shared/milvusdestinationconnectorconfiginput.py -------------------------------------------------------------------------------- /src/unstructured_client/models/shared/mongodbconnectorconfig.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unstructured-IO/unstructured-python-client/HEAD/src/unstructured_client/models/shared/mongodbconnectorconfig.py -------------------------------------------------------------------------------- /src/unstructured_client/models/shared/mongodbconnectorconfiginput.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unstructured-IO/unstructured-python-client/HEAD/src/unstructured_client/models/shared/mongodbconnectorconfiginput.py -------------------------------------------------------------------------------- /src/unstructured_client/models/shared/neo4jdestinationconnectorconfig.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unstructured-IO/unstructured-python-client/HEAD/src/unstructured_client/models/shared/neo4jdestinationconnectorconfig.py -------------------------------------------------------------------------------- /src/unstructured_client/models/shared/neo4jdestinationconnectorconfiginput.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unstructured-IO/unstructured-python-client/HEAD/src/unstructured_client/models/shared/neo4jdestinationconnectorconfiginput.py -------------------------------------------------------------------------------- /src/unstructured_client/models/shared/nodefilemetadata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unstructured-IO/unstructured-python-client/HEAD/src/unstructured_client/models/shared/nodefilemetadata.py -------------------------------------------------------------------------------- /src/unstructured_client/models/shared/onedrivedestinationconnectorconfig.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unstructured-IO/unstructured-python-client/HEAD/src/unstructured_client/models/shared/onedrivedestinationconnectorconfig.py -------------------------------------------------------------------------------- /src/unstructured_client/models/shared/onedrivedestinationconnectorconfiginput.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unstructured-IO/unstructured-python-client/HEAD/src/unstructured_client/models/shared/onedrivedestinationconnectorconfiginput.py -------------------------------------------------------------------------------- /src/unstructured_client/models/shared/onedrivesourceconnectorconfig.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unstructured-IO/unstructured-python-client/HEAD/src/unstructured_client/models/shared/onedrivesourceconnectorconfig.py -------------------------------------------------------------------------------- /src/unstructured_client/models/shared/onedrivesourceconnectorconfiginput.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unstructured-IO/unstructured-python-client/HEAD/src/unstructured_client/models/shared/onedrivesourceconnectorconfiginput.py -------------------------------------------------------------------------------- /src/unstructured_client/models/shared/outlooksourceconnectorconfig.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unstructured-IO/unstructured-python-client/HEAD/src/unstructured_client/models/shared/outlooksourceconnectorconfig.py -------------------------------------------------------------------------------- /src/unstructured_client/models/shared/outlooksourceconnectorconfiginput.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unstructured-IO/unstructured-python-client/HEAD/src/unstructured_client/models/shared/outlooksourceconnectorconfiginput.py -------------------------------------------------------------------------------- /src/unstructured_client/models/shared/partition_parameters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unstructured-IO/unstructured-python-client/HEAD/src/unstructured_client/models/shared/partition_parameters.py -------------------------------------------------------------------------------- /src/unstructured_client/models/shared/pineconedestinationconnectorconfig.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unstructured-IO/unstructured-python-client/HEAD/src/unstructured_client/models/shared/pineconedestinationconnectorconfig.py -------------------------------------------------------------------------------- /src/unstructured_client/models/shared/pineconedestinationconnectorconfiginput.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unstructured-IO/unstructured-python-client/HEAD/src/unstructured_client/models/shared/pineconedestinationconnectorconfiginput.py -------------------------------------------------------------------------------- /src/unstructured_client/models/shared/postgresdestinationconnectorconfig.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unstructured-IO/unstructured-python-client/HEAD/src/unstructured_client/models/shared/postgresdestinationconnectorconfig.py -------------------------------------------------------------------------------- /src/unstructured_client/models/shared/postgresdestinationconnectorconfiginput.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unstructured-IO/unstructured-python-client/HEAD/src/unstructured_client/models/shared/postgresdestinationconnectorconfiginput.py -------------------------------------------------------------------------------- /src/unstructured_client/models/shared/postgressourceconnectorconfig.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unstructured-IO/unstructured-python-client/HEAD/src/unstructured_client/models/shared/postgressourceconnectorconfig.py -------------------------------------------------------------------------------- /src/unstructured_client/models/shared/postgressourceconnectorconfiginput.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unstructured-IO/unstructured-python-client/HEAD/src/unstructured_client/models/shared/postgressourceconnectorconfiginput.py -------------------------------------------------------------------------------- /src/unstructured_client/models/shared/qdrantclouddestinationconnectorconfig.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unstructured-IO/unstructured-python-client/HEAD/src/unstructured_client/models/shared/qdrantclouddestinationconnectorconfig.py -------------------------------------------------------------------------------- /src/unstructured_client/models/shared/qdrantclouddestinationconnectorconfiginput.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unstructured-IO/unstructured-python-client/HEAD/src/unstructured_client/models/shared/qdrantclouddestinationconnectorconfiginput.py -------------------------------------------------------------------------------- /src/unstructured_client/models/shared/redisdestinationconnectorconfig.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unstructured-IO/unstructured-python-client/HEAD/src/unstructured_client/models/shared/redisdestinationconnectorconfig.py -------------------------------------------------------------------------------- /src/unstructured_client/models/shared/redisdestinationconnectorconfiginput.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unstructured-IO/unstructured-python-client/HEAD/src/unstructured_client/models/shared/redisdestinationconnectorconfiginput.py -------------------------------------------------------------------------------- /src/unstructured_client/models/shared/s3destinationconnectorconfig.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unstructured-IO/unstructured-python-client/HEAD/src/unstructured_client/models/shared/s3destinationconnectorconfig.py -------------------------------------------------------------------------------- /src/unstructured_client/models/shared/s3destinationconnectorconfiginput.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unstructured-IO/unstructured-python-client/HEAD/src/unstructured_client/models/shared/s3destinationconnectorconfiginput.py -------------------------------------------------------------------------------- /src/unstructured_client/models/shared/s3sourceconnectorconfig.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unstructured-IO/unstructured-python-client/HEAD/src/unstructured_client/models/shared/s3sourceconnectorconfig.py -------------------------------------------------------------------------------- /src/unstructured_client/models/shared/s3sourceconnectorconfiginput.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unstructured-IO/unstructured-python-client/HEAD/src/unstructured_client/models/shared/s3sourceconnectorconfiginput.py -------------------------------------------------------------------------------- /src/unstructured_client/models/shared/salesforcesourceconnectorconfig.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unstructured-IO/unstructured-python-client/HEAD/src/unstructured_client/models/shared/salesforcesourceconnectorconfig.py -------------------------------------------------------------------------------- /src/unstructured_client/models/shared/salesforcesourceconnectorconfiginput.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unstructured-IO/unstructured-python-client/HEAD/src/unstructured_client/models/shared/salesforcesourceconnectorconfiginput.py -------------------------------------------------------------------------------- /src/unstructured_client/models/shared/secretreference.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unstructured-IO/unstructured-python-client/HEAD/src/unstructured_client/models/shared/secretreference.py -------------------------------------------------------------------------------- /src/unstructured_client/models/shared/security.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unstructured-IO/unstructured-python-client/HEAD/src/unstructured_client/models/shared/security.py -------------------------------------------------------------------------------- /src/unstructured_client/models/shared/sharepointsourceconnectorconfig.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unstructured-IO/unstructured-python-client/HEAD/src/unstructured_client/models/shared/sharepointsourceconnectorconfig.py -------------------------------------------------------------------------------- /src/unstructured_client/models/shared/sharepointsourceconnectorconfiginput.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unstructured-IO/unstructured-python-client/HEAD/src/unstructured_client/models/shared/sharepointsourceconnectorconfiginput.py -------------------------------------------------------------------------------- /src/unstructured_client/models/shared/snowflakedestinationconnectorconfig.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unstructured-IO/unstructured-python-client/HEAD/src/unstructured_client/models/shared/snowflakedestinationconnectorconfig.py -------------------------------------------------------------------------------- /src/unstructured_client/models/shared/snowflakedestinationconnectorconfiginput.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unstructured-IO/unstructured-python-client/HEAD/src/unstructured_client/models/shared/snowflakedestinationconnectorconfiginput.py -------------------------------------------------------------------------------- /src/unstructured_client/models/shared/snowflakesourceconnectorconfig.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unstructured-IO/unstructured-python-client/HEAD/src/unstructured_client/models/shared/snowflakesourceconnectorconfig.py -------------------------------------------------------------------------------- /src/unstructured_client/models/shared/snowflakesourceconnectorconfiginput.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unstructured-IO/unstructured-python-client/HEAD/src/unstructured_client/models/shared/snowflakesourceconnectorconfiginput.py -------------------------------------------------------------------------------- /src/unstructured_client/models/shared/sortdirection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unstructured-IO/unstructured-python-client/HEAD/src/unstructured_client/models/shared/sortdirection.py -------------------------------------------------------------------------------- /src/unstructured_client/models/shared/sourceconnectorinformation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unstructured-IO/unstructured-python-client/HEAD/src/unstructured_client/models/shared/sourceconnectorinformation.py -------------------------------------------------------------------------------- /src/unstructured_client/models/shared/sourceconnectortype.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unstructured-IO/unstructured-python-client/HEAD/src/unstructured_client/models/shared/sourceconnectortype.py -------------------------------------------------------------------------------- /src/unstructured_client/models/shared/updatedestinationconnector.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unstructured-IO/unstructured-python-client/HEAD/src/unstructured_client/models/shared/updatedestinationconnector.py -------------------------------------------------------------------------------- /src/unstructured_client/models/shared/updatesourceconnector.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unstructured-IO/unstructured-python-client/HEAD/src/unstructured_client/models/shared/updatesourceconnector.py -------------------------------------------------------------------------------- /src/unstructured_client/models/shared/updateworkflow.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unstructured-IO/unstructured-python-client/HEAD/src/unstructured_client/models/shared/updateworkflow.py -------------------------------------------------------------------------------- /src/unstructured_client/models/shared/validationerror.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unstructured-IO/unstructured-python-client/HEAD/src/unstructured_client/models/shared/validationerror.py -------------------------------------------------------------------------------- /src/unstructured_client/models/shared/weaviatedestinationconnectorconfig.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unstructured-IO/unstructured-python-client/HEAD/src/unstructured_client/models/shared/weaviatedestinationconnectorconfig.py -------------------------------------------------------------------------------- /src/unstructured_client/models/shared/weaviatedestinationconnectorconfiginput.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unstructured-IO/unstructured-python-client/HEAD/src/unstructured_client/models/shared/weaviatedestinationconnectorconfiginput.py -------------------------------------------------------------------------------- /src/unstructured_client/models/shared/workflowinformation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unstructured-IO/unstructured-python-client/HEAD/src/unstructured_client/models/shared/workflowinformation.py -------------------------------------------------------------------------------- /src/unstructured_client/models/shared/workflowjobtype.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unstructured-IO/unstructured-python-client/HEAD/src/unstructured_client/models/shared/workflowjobtype.py -------------------------------------------------------------------------------- /src/unstructured_client/models/shared/workflownode.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unstructured-IO/unstructured-python-client/HEAD/src/unstructured_client/models/shared/workflownode.py -------------------------------------------------------------------------------- /src/unstructured_client/models/shared/workflownodetype.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unstructured-IO/unstructured-python-client/HEAD/src/unstructured_client/models/shared/workflownodetype.py -------------------------------------------------------------------------------- /src/unstructured_client/models/shared/workflowschedule.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unstructured-IO/unstructured-python-client/HEAD/src/unstructured_client/models/shared/workflowschedule.py -------------------------------------------------------------------------------- /src/unstructured_client/models/shared/workflowstate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unstructured-IO/unstructured-python-client/HEAD/src/unstructured_client/models/shared/workflowstate.py -------------------------------------------------------------------------------- /src/unstructured_client/models/shared/workflowtype.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unstructured-IO/unstructured-python-client/HEAD/src/unstructured_client/models/shared/workflowtype.py -------------------------------------------------------------------------------- /src/unstructured_client/models/shared/zendesksourceconnectorconfig.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unstructured-IO/unstructured-python-client/HEAD/src/unstructured_client/models/shared/zendesksourceconnectorconfig.py -------------------------------------------------------------------------------- /src/unstructured_client/models/shared/zendesksourceconnectorconfiginput.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unstructured-IO/unstructured-python-client/HEAD/src/unstructured_client/models/shared/zendesksourceconnectorconfiginput.py -------------------------------------------------------------------------------- /src/unstructured_client/py.typed: -------------------------------------------------------------------------------- 1 | # Marker file for PEP 561. The package enables type hints. 2 | -------------------------------------------------------------------------------- /src/unstructured_client/sdk.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unstructured-IO/unstructured-python-client/HEAD/src/unstructured_client/sdk.py -------------------------------------------------------------------------------- /src/unstructured_client/sdkconfiguration.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unstructured-IO/unstructured-python-client/HEAD/src/unstructured_client/sdkconfiguration.py -------------------------------------------------------------------------------- /src/unstructured_client/sources.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unstructured-IO/unstructured-python-client/HEAD/src/unstructured_client/sources.py -------------------------------------------------------------------------------- /src/unstructured_client/types/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unstructured-IO/unstructured-python-client/HEAD/src/unstructured_client/types/__init__.py -------------------------------------------------------------------------------- /src/unstructured_client/types/basemodel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unstructured-IO/unstructured-python-client/HEAD/src/unstructured_client/types/basemodel.py -------------------------------------------------------------------------------- /src/unstructured_client/users.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unstructured-IO/unstructured-python-client/HEAD/src/unstructured_client/users.py -------------------------------------------------------------------------------- /src/unstructured_client/utils/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unstructured-IO/unstructured-python-client/HEAD/src/unstructured_client/utils/__init__.py -------------------------------------------------------------------------------- /src/unstructured_client/utils/annotations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unstructured-IO/unstructured-python-client/HEAD/src/unstructured_client/utils/annotations.py -------------------------------------------------------------------------------- /src/unstructured_client/utils/datetimes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unstructured-IO/unstructured-python-client/HEAD/src/unstructured_client/utils/datetimes.py -------------------------------------------------------------------------------- /src/unstructured_client/utils/enums.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unstructured-IO/unstructured-python-client/HEAD/src/unstructured_client/utils/enums.py -------------------------------------------------------------------------------- /src/unstructured_client/utils/eventstreaming.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unstructured-IO/unstructured-python-client/HEAD/src/unstructured_client/utils/eventstreaming.py -------------------------------------------------------------------------------- /src/unstructured_client/utils/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unstructured-IO/unstructured-python-client/HEAD/src/unstructured_client/utils/forms.py -------------------------------------------------------------------------------- /src/unstructured_client/utils/headers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unstructured-IO/unstructured-python-client/HEAD/src/unstructured_client/utils/headers.py -------------------------------------------------------------------------------- /src/unstructured_client/utils/logger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unstructured-IO/unstructured-python-client/HEAD/src/unstructured_client/utils/logger.py -------------------------------------------------------------------------------- /src/unstructured_client/utils/metadata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unstructured-IO/unstructured-python-client/HEAD/src/unstructured_client/utils/metadata.py -------------------------------------------------------------------------------- /src/unstructured_client/utils/queryparams.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unstructured-IO/unstructured-python-client/HEAD/src/unstructured_client/utils/queryparams.py -------------------------------------------------------------------------------- /src/unstructured_client/utils/requestbodies.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unstructured-IO/unstructured-python-client/HEAD/src/unstructured_client/utils/requestbodies.py -------------------------------------------------------------------------------- /src/unstructured_client/utils/retries.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unstructured-IO/unstructured-python-client/HEAD/src/unstructured_client/utils/retries.py -------------------------------------------------------------------------------- /src/unstructured_client/utils/security.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unstructured-IO/unstructured-python-client/HEAD/src/unstructured_client/utils/security.py -------------------------------------------------------------------------------- /src/unstructured_client/utils/serializers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unstructured-IO/unstructured-python-client/HEAD/src/unstructured_client/utils/serializers.py -------------------------------------------------------------------------------- /src/unstructured_client/utils/unmarshal_json_response.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unstructured-IO/unstructured-python-client/HEAD/src/unstructured_client/utils/unmarshal_json_response.py -------------------------------------------------------------------------------- /src/unstructured_client/utils/url.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unstructured-IO/unstructured-python-client/HEAD/src/unstructured_client/utils/url.py -------------------------------------------------------------------------------- /src/unstructured_client/utils/values.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unstructured-IO/unstructured-python-client/HEAD/src/unstructured_client/utils/values.py -------------------------------------------------------------------------------- /src/unstructured_client/workflows.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unstructured-IO/unstructured-python-client/HEAD/src/unstructured_client/workflows.py -------------------------------------------------------------------------------- /tests/helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unstructured-IO/unstructured-python-client/HEAD/tests/helpers.py --------------------------------------------------------------------------------