airbyte-api 0.44.2__tar.gz → 0.44.3__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {airbyte-api-0.44.2 → airbyte-api-0.44.3}/PKG-INFO +1 -1
- {airbyte-api-0.44.2 → airbyte-api-0.44.3}/setup.py +1 -1
- airbyte-api-0.44.3/src/airbyte/models/shared/__init__.py +327 -0
- {airbyte-api-0.44.2 → airbyte-api-0.44.3}/src/airbyte/models/shared/destination_aws_datalake.py +14 -6
- {airbyte-api-0.44.2 → airbyte-api-0.44.3}/src/airbyte/models/shared/destination_dynamodb.py +14 -6
- {airbyte-api-0.44.2 → airbyte-api-0.44.3}/src/airbyte/models/shared/destination_milvus.py +18 -21
- {airbyte-api-0.44.2 → airbyte-api-0.44.3}/src/airbyte/models/shared/destination_pinecone.py +13 -0
- {airbyte-api-0.44.2 → airbyte-api-0.44.3}/src/airbyte/models/shared/destination_qdrant.py +23 -29
- {airbyte-api-0.44.2 → airbyte-api-0.44.3}/src/airbyte/models/shared/destination_redshift.py +26 -8
- {airbyte-api-0.44.2 → airbyte-api-0.44.3}/src/airbyte/models/shared/destination_s3.py +93 -85
- {airbyte-api-0.44.2 → airbyte-api-0.44.3}/src/airbyte/models/shared/destination_s3_glue.py +14 -6
- {airbyte-api-0.44.2 → airbyte-api-0.44.3}/src/airbyte/models/shared/destination_snowflake.py +4 -2
- airbyte-api-0.44.3/src/airbyte/models/shared/destination_vectara.py +44 -0
- {airbyte-api-0.44.2 → airbyte-api-0.44.3}/src/airbyte/models/shared/destination_weaviate.py +15 -2
- {airbyte-api-0.44.2 → airbyte-api-0.44.3}/src/airbyte/models/shared/destinationcreaterequest.py +2 -1
- {airbyte-api-0.44.2 → airbyte-api-0.44.3}/src/airbyte/models/shared/destinationpatchrequest.py +2 -1
- {airbyte-api-0.44.2 → airbyte-api-0.44.3}/src/airbyte/models/shared/destinationputrequest.py +2 -1
- {airbyte-api-0.44.2 → airbyte-api-0.44.3}/src/airbyte/models/shared/destinationresponse.py +2 -1
- {airbyte-api-0.44.2 → airbyte-api-0.44.3}/src/airbyte/models/shared/oauthactornames.py +0 -1
- airbyte-api-0.44.3/src/airbyte/models/shared/source_amazon_seller_partner.py +147 -0
- {airbyte-api-0.44.2 → airbyte-api-0.44.3}/src/airbyte/models/shared/source_amazon_sqs.py +14 -6
- {airbyte-api-0.44.2 → airbyte-api-0.44.3}/src/airbyte/models/shared/source_azure_blob_storage.py +26 -3
- {airbyte-api-0.44.2 → airbyte-api-0.44.3}/src/airbyte/models/shared/source_bing_ads.py +19 -0
- airbyte-api-0.44.3/src/airbyte/models/shared/source_cart.py +54 -0
- {airbyte-api-0.44.2 → airbyte-api-0.44.3}/src/airbyte/models/shared/source_clickhouse.py +2 -0
- {airbyte-api-0.44.2 → airbyte-api-0.44.3}/src/airbyte/models/shared/source_dynamodb.py +14 -6
- {airbyte-api-0.44.2 → airbyte-api-0.44.3}/src/airbyte/models/shared/source_facebook_marketing.py +6 -2
- {airbyte-api-0.44.2 → airbyte-api-0.44.3}/src/airbyte/models/shared/source_gcs.py +1 -1
- {airbyte-api-0.44.2 → airbyte-api-0.44.3}/src/airbyte/models/shared/source_google_ads.py +14 -6
- {airbyte-api-0.44.2 → airbyte-api-0.44.3}/src/airbyte/models/shared/source_google_analytics_data_api.py +85 -0
- {airbyte-api-0.44.2 → airbyte-api-0.44.3}/src/airbyte/models/shared/source_google_drive.py +26 -3
- {airbyte-api-0.44.2 → airbyte-api-0.44.3}/src/airbyte/models/shared/source_hubspot.py +3 -1
- {airbyte-api-0.44.2 → airbyte-api-0.44.3}/src/airbyte/models/shared/source_instagram.py +2 -2
- {airbyte-api-0.44.2 → airbyte-api-0.44.3}/src/airbyte/models/shared/source_jira.py +2 -0
- {airbyte-api-0.44.2 → airbyte-api-0.44.3}/src/airbyte/models/shared/source_kyve.py +2 -2
- {airbyte-api-0.44.2 → airbyte-api-0.44.3}/src/airbyte/models/shared/source_linkedin_ads.py +3 -3
- {airbyte-api-0.44.2 → airbyte-api-0.44.3}/src/airbyte/models/shared/source_mailchimp.py +4 -0
- {airbyte-api-0.44.2 → airbyte-api-0.44.3}/src/airbyte/models/shared/source_mongodb_v2.py +4 -0
- {airbyte-api-0.44.2 → airbyte-api-0.44.3}/src/airbyte/models/shared/source_mssql.py +21 -21
- {airbyte-api-0.44.2 → airbyte-api-0.44.3}/src/airbyte/models/shared/source_oracle.py +2 -2
- airbyte-api-0.44.3/src/airbyte/models/shared/source_pinterest.py +252 -0
- {airbyte-api-0.44.2 → airbyte-api-0.44.3}/src/airbyte/models/shared/source_postgres.py +2 -2
- {airbyte-api-0.44.2 → airbyte-api-0.44.3}/src/airbyte/models/shared/source_s3.py +26 -3
- {airbyte-api-0.44.2 → airbyte-api-0.44.3}/src/airbyte/models/shared/source_stripe.py +5 -3
- {airbyte-api-0.44.2 → airbyte-api-0.44.3}/src/airbyte/models/shared/source_webflow.py +3 -1
- airbyte-api-0.44.2/src/airbyte/models/shared/sourcepatchrequest.py → airbyte-api-0.44.3/src/airbyte/models/shared/sourcecreaterequest.py +8 -6
- airbyte-api-0.44.2/src/airbyte/models/shared/sourcecreaterequest.py → airbyte-api-0.44.3/src/airbyte/models/shared/sourcepatchrequest.py +5 -9
- {airbyte-api-0.44.2 → airbyte-api-0.44.3}/src/airbyte/models/shared/sourceputrequest.py +2 -3
- {airbyte-api-0.44.2 → airbyte-api-0.44.3}/src/airbyte/models/shared/sourceresponse.py +2 -3
- airbyte-api-0.44.3/src/airbyte/models/shared/workspaceoauthcredentialsrequest.py +63 -0
- {airbyte-api-0.44.2 → airbyte-api-0.44.3}/src/airbyte/sdkconfiguration.py +3 -3
- {airbyte-api-0.44.2 → airbyte-api-0.44.3}/src/airbyte/utils/retries.py +2 -2
- {airbyte-api-0.44.2 → airbyte-api-0.44.3}/src/airbyte/utils/utils.py +7 -4
- {airbyte-api-0.44.2 → airbyte-api-0.44.3}/src/airbyte_api.egg-info/PKG-INFO +1 -1
- {airbyte-api-0.44.2 → airbyte-api-0.44.3}/src/airbyte_api.egg-info/SOURCES.txt +2 -2
- airbyte-api-0.44.2/src/airbyte/models/shared/__init__.py +0 -327
- airbyte-api-0.44.2/src/airbyte/models/shared/source_amazon_seller_partner.py +0 -83
- airbyte-api-0.44.2/src/airbyte/models/shared/source_facebook_pages.py +0 -23
- airbyte-api-0.44.2/src/airbyte/models/shared/source_pinterest.py +0 -47
- airbyte-api-0.44.2/src/airbyte/models/shared/source_todoist.py +0 -21
- airbyte-api-0.44.2/src/airbyte/models/shared/workspaceoauthcredentialsrequest.py +0 -22
- {airbyte-api-0.44.2 → airbyte-api-0.44.3}/LICENSE.md +0 -0
- {airbyte-api-0.44.2 → airbyte-api-0.44.3}/README.md +0 -0
- {airbyte-api-0.44.2 → airbyte-api-0.44.3}/setup.cfg +0 -0
- {airbyte-api-0.44.2 → airbyte-api-0.44.3}/src/airbyte/__init__.py +0 -0
- {airbyte-api-0.44.2 → airbyte-api-0.44.3}/src/airbyte/connections.py +0 -0
- {airbyte-api-0.44.2 → airbyte-api-0.44.3}/src/airbyte/destinations.py +0 -0
- {airbyte-api-0.44.2 → airbyte-api-0.44.3}/src/airbyte/jobs.py +0 -0
- {airbyte-api-0.44.2 → airbyte-api-0.44.3}/src/airbyte/models/__init__.py +0 -0
- {airbyte-api-0.44.2 → airbyte-api-0.44.3}/src/airbyte/models/errors/__init__.py +0 -0
- {airbyte-api-0.44.2 → airbyte-api-0.44.3}/src/airbyte/models/errors/sdkerror.py +0 -0
- {airbyte-api-0.44.2 → airbyte-api-0.44.3}/src/airbyte/models/operations/__init__.py +0 -0
- {airbyte-api-0.44.2 → airbyte-api-0.44.3}/src/airbyte/models/operations/canceljob.py +0 -0
- {airbyte-api-0.44.2 → airbyte-api-0.44.3}/src/airbyte/models/operations/createconnection.py +0 -0
- {airbyte-api-0.44.2 → airbyte-api-0.44.3}/src/airbyte/models/operations/createdestination.py +0 -0
- {airbyte-api-0.44.2 → airbyte-api-0.44.3}/src/airbyte/models/operations/createjob.py +0 -0
- {airbyte-api-0.44.2 → airbyte-api-0.44.3}/src/airbyte/models/operations/createorupdateworkspaceoauthcredentials.py +0 -0
- {airbyte-api-0.44.2 → airbyte-api-0.44.3}/src/airbyte/models/operations/createsource.py +0 -0
- {airbyte-api-0.44.2 → airbyte-api-0.44.3}/src/airbyte/models/operations/createworkspace.py +0 -0
- {airbyte-api-0.44.2 → airbyte-api-0.44.3}/src/airbyte/models/operations/deleteconnection.py +0 -0
- {airbyte-api-0.44.2 → airbyte-api-0.44.3}/src/airbyte/models/operations/deletedestination.py +0 -0
- {airbyte-api-0.44.2 → airbyte-api-0.44.3}/src/airbyte/models/operations/deletesource.py +0 -0
- {airbyte-api-0.44.2 → airbyte-api-0.44.3}/src/airbyte/models/operations/deleteworkspace.py +0 -0
- {airbyte-api-0.44.2 → airbyte-api-0.44.3}/src/airbyte/models/operations/getconnection.py +0 -0
- {airbyte-api-0.44.2 → airbyte-api-0.44.3}/src/airbyte/models/operations/getdestination.py +0 -0
- {airbyte-api-0.44.2 → airbyte-api-0.44.3}/src/airbyte/models/operations/getjob.py +0 -0
- {airbyte-api-0.44.2 → airbyte-api-0.44.3}/src/airbyte/models/operations/getsource.py +0 -0
- {airbyte-api-0.44.2 → airbyte-api-0.44.3}/src/airbyte/models/operations/getstreamproperties.py +0 -0
- {airbyte-api-0.44.2 → airbyte-api-0.44.3}/src/airbyte/models/operations/getworkspace.py +0 -0
- {airbyte-api-0.44.2 → airbyte-api-0.44.3}/src/airbyte/models/operations/initiateoauth.py +0 -0
- {airbyte-api-0.44.2 → airbyte-api-0.44.3}/src/airbyte/models/operations/listconnections.py +0 -0
- {airbyte-api-0.44.2 → airbyte-api-0.44.3}/src/airbyte/models/operations/listdestinations.py +0 -0
- {airbyte-api-0.44.2 → airbyte-api-0.44.3}/src/airbyte/models/operations/listjobs.py +0 -0
- {airbyte-api-0.44.2 → airbyte-api-0.44.3}/src/airbyte/models/operations/listsources.py +0 -0
- {airbyte-api-0.44.2 → airbyte-api-0.44.3}/src/airbyte/models/operations/listworkspaces.py +0 -0
- {airbyte-api-0.44.2 → airbyte-api-0.44.3}/src/airbyte/models/operations/patchconnection.py +0 -0
- {airbyte-api-0.44.2 → airbyte-api-0.44.3}/src/airbyte/models/operations/patchdestination.py +0 -0
- {airbyte-api-0.44.2 → airbyte-api-0.44.3}/src/airbyte/models/operations/patchsource.py +0 -0
- {airbyte-api-0.44.2 → airbyte-api-0.44.3}/src/airbyte/models/operations/putdestination.py +0 -0
- {airbyte-api-0.44.2 → airbyte-api-0.44.3}/src/airbyte/models/operations/putsource.py +0 -0
- {airbyte-api-0.44.2 → airbyte-api-0.44.3}/src/airbyte/models/operations/updateworkspace.py +0 -0
- {airbyte-api-0.44.2 → airbyte-api-0.44.3}/src/airbyte/models/shared/actortypeenum.py +0 -0
- {airbyte-api-0.44.2 → airbyte-api-0.44.3}/src/airbyte/models/shared/airtable.py +0 -0
- {airbyte-api-0.44.2 → airbyte-api-0.44.3}/src/airbyte/models/shared/amazon_ads.py +0 -0
- {airbyte-api-0.44.2 → airbyte-api-0.44.3}/src/airbyte/models/shared/amazon_seller_partner.py +0 -0
- {airbyte-api-0.44.2 → airbyte-api-0.44.3}/src/airbyte/models/shared/asana.py +0 -0
- {airbyte-api-0.44.2 → airbyte-api-0.44.3}/src/airbyte/models/shared/bing_ads.py +0 -0
- {airbyte-api-0.44.2 → airbyte-api-0.44.3}/src/airbyte/models/shared/connectioncreaterequest.py +0 -0
- {airbyte-api-0.44.2 → airbyte-api-0.44.3}/src/airbyte/models/shared/connectionpatchrequest.py +0 -0
- {airbyte-api-0.44.2 → airbyte-api-0.44.3}/src/airbyte/models/shared/connectionresponse.py +0 -0
- {airbyte-api-0.44.2 → airbyte-api-0.44.3}/src/airbyte/models/shared/connectionschedule.py +0 -0
- {airbyte-api-0.44.2 → airbyte-api-0.44.3}/src/airbyte/models/shared/connectionscheduleresponse.py +0 -0
- {airbyte-api-0.44.2 → airbyte-api-0.44.3}/src/airbyte/models/shared/connectionsresponse.py +0 -0
- {airbyte-api-0.44.2 → airbyte-api-0.44.3}/src/airbyte/models/shared/connectionstatusenum.py +0 -0
- {airbyte-api-0.44.2 → airbyte-api-0.44.3}/src/airbyte/models/shared/connectionsyncmodeenum.py +0 -0
- {airbyte-api-0.44.2 → airbyte-api-0.44.3}/src/airbyte/models/shared/destination_azure_blob_storage.py +0 -0
- {airbyte-api-0.44.2 → airbyte-api-0.44.3}/src/airbyte/models/shared/destination_bigquery.py +0 -0
- {airbyte-api-0.44.2 → airbyte-api-0.44.3}/src/airbyte/models/shared/destination_clickhouse.py +0 -0
- {airbyte-api-0.44.2 → airbyte-api-0.44.3}/src/airbyte/models/shared/destination_convex.py +0 -0
- {airbyte-api-0.44.2 → airbyte-api-0.44.3}/src/airbyte/models/shared/destination_cumulio.py +0 -0
- {airbyte-api-0.44.2 → airbyte-api-0.44.3}/src/airbyte/models/shared/destination_databend.py +0 -0
- {airbyte-api-0.44.2 → airbyte-api-0.44.3}/src/airbyte/models/shared/destination_databricks.py +0 -0
- {airbyte-api-0.44.2 → airbyte-api-0.44.3}/src/airbyte/models/shared/destination_dev_null.py +0 -0
- {airbyte-api-0.44.2 → airbyte-api-0.44.3}/src/airbyte/models/shared/destination_duckdb.py +0 -0
- {airbyte-api-0.44.2 → airbyte-api-0.44.3}/src/airbyte/models/shared/destination_elasticsearch.py +0 -0
- {airbyte-api-0.44.2 → airbyte-api-0.44.3}/src/airbyte/models/shared/destination_firebolt.py +0 -0
- {airbyte-api-0.44.2 → airbyte-api-0.44.3}/src/airbyte/models/shared/destination_firestore.py +0 -0
- {airbyte-api-0.44.2 → airbyte-api-0.44.3}/src/airbyte/models/shared/destination_gcs.py +0 -0
- {airbyte-api-0.44.2 → airbyte-api-0.44.3}/src/airbyte/models/shared/destination_google_sheets.py +0 -0
- {airbyte-api-0.44.2 → airbyte-api-0.44.3}/src/airbyte/models/shared/destination_keen.py +0 -0
- {airbyte-api-0.44.2 → airbyte-api-0.44.3}/src/airbyte/models/shared/destination_kinesis.py +0 -0
- {airbyte-api-0.44.2 → airbyte-api-0.44.3}/src/airbyte/models/shared/destination_langchain.py +0 -0
- {airbyte-api-0.44.2 → airbyte-api-0.44.3}/src/airbyte/models/shared/destination_mongodb.py +0 -0
- {airbyte-api-0.44.2 → airbyte-api-0.44.3}/src/airbyte/models/shared/destination_mssql.py +0 -0
- {airbyte-api-0.44.2 → airbyte-api-0.44.3}/src/airbyte/models/shared/destination_mysql.py +0 -0
- {airbyte-api-0.44.2 → airbyte-api-0.44.3}/src/airbyte/models/shared/destination_oracle.py +0 -0
- {airbyte-api-0.44.2 → airbyte-api-0.44.3}/src/airbyte/models/shared/destination_postgres.py +0 -0
- {airbyte-api-0.44.2 → airbyte-api-0.44.3}/src/airbyte/models/shared/destination_pubsub.py +0 -0
- {airbyte-api-0.44.2 → airbyte-api-0.44.3}/src/airbyte/models/shared/destination_redis.py +0 -0
- {airbyte-api-0.44.2 → airbyte-api-0.44.3}/src/airbyte/models/shared/destination_sftp_json.py +0 -0
- {airbyte-api-0.44.2 → airbyte-api-0.44.3}/src/airbyte/models/shared/destination_timeplus.py +0 -0
- {airbyte-api-0.44.2 → airbyte-api-0.44.3}/src/airbyte/models/shared/destination_typesense.py +0 -0
- {airbyte-api-0.44.2 → airbyte-api-0.44.3}/src/airbyte/models/shared/destination_vertica.py +0 -0
- {airbyte-api-0.44.2 → airbyte-api-0.44.3}/src/airbyte/models/shared/destination_xata.py +0 -0
- {airbyte-api-0.44.2 → airbyte-api-0.44.3}/src/airbyte/models/shared/destinationsresponse.py +0 -0
- {airbyte-api-0.44.2 → airbyte-api-0.44.3}/src/airbyte/models/shared/facebook_marketing.py +0 -0
- {airbyte-api-0.44.2 → airbyte-api-0.44.3}/src/airbyte/models/shared/geographyenum.py +0 -0
- {airbyte-api-0.44.2 → airbyte-api-0.44.3}/src/airbyte/models/shared/geographyenumnodefault.py +0 -0
- {airbyte-api-0.44.2 → airbyte-api-0.44.3}/src/airbyte/models/shared/github.py +0 -0
- {airbyte-api-0.44.2 → airbyte-api-0.44.3}/src/airbyte/models/shared/gitlab.py +0 -0
- {airbyte-api-0.44.2 → airbyte-api-0.44.3}/src/airbyte/models/shared/google_ads.py +0 -0
- {airbyte-api-0.44.2 → airbyte-api-0.44.3}/src/airbyte/models/shared/google_analytics_data_api.py +0 -0
- {airbyte-api-0.44.2 → airbyte-api-0.44.3}/src/airbyte/models/shared/google_drive.py +0 -0
- {airbyte-api-0.44.2 → airbyte-api-0.44.3}/src/airbyte/models/shared/google_search_console.py +0 -0
- {airbyte-api-0.44.2 → airbyte-api-0.44.3}/src/airbyte/models/shared/google_sheets.py +0 -0
- {airbyte-api-0.44.2 → airbyte-api-0.44.3}/src/airbyte/models/shared/harvest.py +0 -0
- {airbyte-api-0.44.2 → airbyte-api-0.44.3}/src/airbyte/models/shared/hubspot.py +0 -0
- {airbyte-api-0.44.2 → airbyte-api-0.44.3}/src/airbyte/models/shared/initiateoauthrequest.py +0 -0
- {airbyte-api-0.44.2 → airbyte-api-0.44.3}/src/airbyte/models/shared/instagram.py +0 -0
- {airbyte-api-0.44.2 → airbyte-api-0.44.3}/src/airbyte/models/shared/intercom.py +0 -0
- {airbyte-api-0.44.2 → airbyte-api-0.44.3}/src/airbyte/models/shared/jobcreaterequest.py +0 -0
- {airbyte-api-0.44.2 → airbyte-api-0.44.3}/src/airbyte/models/shared/jobresponse.py +0 -0
- {airbyte-api-0.44.2 → airbyte-api-0.44.3}/src/airbyte/models/shared/jobsresponse.py +0 -0
- {airbyte-api-0.44.2 → airbyte-api-0.44.3}/src/airbyte/models/shared/jobstatusenum.py +0 -0
- {airbyte-api-0.44.2 → airbyte-api-0.44.3}/src/airbyte/models/shared/jobtypeenum.py +0 -0
- {airbyte-api-0.44.2 → airbyte-api-0.44.3}/src/airbyte/models/shared/lever_hiring.py +0 -0
- {airbyte-api-0.44.2 → airbyte-api-0.44.3}/src/airbyte/models/shared/linkedin_ads.py +0 -0
- {airbyte-api-0.44.2 → airbyte-api-0.44.3}/src/airbyte/models/shared/mailchimp.py +0 -0
- {airbyte-api-0.44.2 → airbyte-api-0.44.3}/src/airbyte/models/shared/microsoft_teams.py +0 -0
- {airbyte-api-0.44.2 → airbyte-api-0.44.3}/src/airbyte/models/shared/monday.py +0 -0
- {airbyte-api-0.44.2 → airbyte-api-0.44.3}/src/airbyte/models/shared/namespacedefinitionenum.py +0 -0
- {airbyte-api-0.44.2 → airbyte-api-0.44.3}/src/airbyte/models/shared/namespacedefinitionenumnodefault.py +0 -0
- {airbyte-api-0.44.2 → airbyte-api-0.44.3}/src/airbyte/models/shared/nonbreakingschemaupdatesbehaviorenum.py +0 -0
- {airbyte-api-0.44.2 → airbyte-api-0.44.3}/src/airbyte/models/shared/nonbreakingschemaupdatesbehaviorenumnodefault.py +0 -0
- {airbyte-api-0.44.2 → airbyte-api-0.44.3}/src/airbyte/models/shared/notion.py +0 -0
- {airbyte-api-0.44.2 → airbyte-api-0.44.3}/src/airbyte/models/shared/oauthinputconfiguration.py +0 -0
- {airbyte-api-0.44.2 → airbyte-api-0.44.3}/src/airbyte/models/shared/pinterest.py +0 -0
- {airbyte-api-0.44.2 → airbyte-api-0.44.3}/src/airbyte/models/shared/retently.py +0 -0
- {airbyte-api-0.44.2 → airbyte-api-0.44.3}/src/airbyte/models/shared/salesforce.py +0 -0
- {airbyte-api-0.44.2 → airbyte-api-0.44.3}/src/airbyte/models/shared/scheduletypeenum.py +0 -0
- {airbyte-api-0.44.2 → airbyte-api-0.44.3}/src/airbyte/models/shared/scheduletypewithbasicenum.py +0 -0
- {airbyte-api-0.44.2 → airbyte-api-0.44.3}/src/airbyte/models/shared/schemebasicauth.py +0 -0
- {airbyte-api-0.44.2 → airbyte-api-0.44.3}/src/airbyte/models/shared/security.py +0 -0
- {airbyte-api-0.44.2 → airbyte-api-0.44.3}/src/airbyte/models/shared/shopify.py +0 -0
- {airbyte-api-0.44.2 → airbyte-api-0.44.3}/src/airbyte/models/shared/slack.py +0 -0
- {airbyte-api-0.44.2 → airbyte-api-0.44.3}/src/airbyte/models/shared/smartsheets.py +0 -0
- {airbyte-api-0.44.2 → airbyte-api-0.44.3}/src/airbyte/models/shared/snapchat_marketing.py +0 -0
- {airbyte-api-0.44.2 → airbyte-api-0.44.3}/src/airbyte/models/shared/snowflake.py +0 -0
- {airbyte-api-0.44.2 → airbyte-api-0.44.3}/src/airbyte/models/shared/source_aha.py +0 -0
- {airbyte-api-0.44.2 → airbyte-api-0.44.3}/src/airbyte/models/shared/source_aircall.py +0 -0
- {airbyte-api-0.44.2 → airbyte-api-0.44.3}/src/airbyte/models/shared/source_airtable.py +0 -0
- {airbyte-api-0.44.2 → airbyte-api-0.44.3}/src/airbyte/models/shared/source_alloydb.py +0 -0
- {airbyte-api-0.44.2 → airbyte-api-0.44.3}/src/airbyte/models/shared/source_amazon_ads.py +0 -0
- {airbyte-api-0.44.2 → airbyte-api-0.44.3}/src/airbyte/models/shared/source_amplitude.py +0 -0
- {airbyte-api-0.44.2 → airbyte-api-0.44.3}/src/airbyte/models/shared/source_apify_dataset.py +0 -0
- {airbyte-api-0.44.2 → airbyte-api-0.44.3}/src/airbyte/models/shared/source_appfollow.py +0 -0
- {airbyte-api-0.44.2 → airbyte-api-0.44.3}/src/airbyte/models/shared/source_asana.py +0 -0
- {airbyte-api-0.44.2 → airbyte-api-0.44.3}/src/airbyte/models/shared/source_auth0.py +0 -0
- {airbyte-api-0.44.2 → airbyte-api-0.44.3}/src/airbyte/models/shared/source_aws_cloudtrail.py +0 -0
- {airbyte-api-0.44.2 → airbyte-api-0.44.3}/src/airbyte/models/shared/source_azure_table.py +0 -0
- {airbyte-api-0.44.2 → airbyte-api-0.44.3}/src/airbyte/models/shared/source_bamboo_hr.py +0 -0
- {airbyte-api-0.44.2 → airbyte-api-0.44.3}/src/airbyte/models/shared/source_bigquery.py +0 -0
- {airbyte-api-0.44.2 → airbyte-api-0.44.3}/src/airbyte/models/shared/source_braintree.py +0 -0
- {airbyte-api-0.44.2 → airbyte-api-0.44.3}/src/airbyte/models/shared/source_braze.py +0 -0
- {airbyte-api-0.44.2 → airbyte-api-0.44.3}/src/airbyte/models/shared/source_chargebee.py +0 -0
- {airbyte-api-0.44.2 → airbyte-api-0.44.3}/src/airbyte/models/shared/source_chartmogul.py +0 -0
- {airbyte-api-0.44.2 → airbyte-api-0.44.3}/src/airbyte/models/shared/source_clickup_api.py +0 -0
- {airbyte-api-0.44.2 → airbyte-api-0.44.3}/src/airbyte/models/shared/source_clockify.py +0 -0
- {airbyte-api-0.44.2 → airbyte-api-0.44.3}/src/airbyte/models/shared/source_close_com.py +0 -0
- {airbyte-api-0.44.2 → airbyte-api-0.44.3}/src/airbyte/models/shared/source_coda.py +0 -0
- {airbyte-api-0.44.2 → airbyte-api-0.44.3}/src/airbyte/models/shared/source_coin_api.py +0 -0
- {airbyte-api-0.44.2 → airbyte-api-0.44.3}/src/airbyte/models/shared/source_coinmarketcap.py +0 -0
- {airbyte-api-0.44.2 → airbyte-api-0.44.3}/src/airbyte/models/shared/source_configcat.py +0 -0
- {airbyte-api-0.44.2 → airbyte-api-0.44.3}/src/airbyte/models/shared/source_confluence.py +0 -0
- {airbyte-api-0.44.2 → airbyte-api-0.44.3}/src/airbyte/models/shared/source_convex.py +0 -0
- {airbyte-api-0.44.2 → airbyte-api-0.44.3}/src/airbyte/models/shared/source_datascope.py +0 -0
- {airbyte-api-0.44.2 → airbyte-api-0.44.3}/src/airbyte/models/shared/source_delighted.py +0 -0
- {airbyte-api-0.44.2 → airbyte-api-0.44.3}/src/airbyte/models/shared/source_dixa.py +0 -0
- {airbyte-api-0.44.2 → airbyte-api-0.44.3}/src/airbyte/models/shared/source_dockerhub.py +0 -0
- {airbyte-api-0.44.2 → airbyte-api-0.44.3}/src/airbyte/models/shared/source_dremio.py +0 -0
- {airbyte-api-0.44.2 → airbyte-api-0.44.3}/src/airbyte/models/shared/source_e2e_test_cloud.py +0 -0
- {airbyte-api-0.44.2 → airbyte-api-0.44.3}/src/airbyte/models/shared/source_emailoctopus.py +0 -0
- {airbyte-api-0.44.2 → airbyte-api-0.44.3}/src/airbyte/models/shared/source_exchange_rates.py +0 -0
- {airbyte-api-0.44.2 → airbyte-api-0.44.3}/src/airbyte/models/shared/source_faker.py +0 -0
- {airbyte-api-0.44.2 → airbyte-api-0.44.3}/src/airbyte/models/shared/source_fauna.py +0 -0
- {airbyte-api-0.44.2 → airbyte-api-0.44.3}/src/airbyte/models/shared/source_file.py +0 -0
- {airbyte-api-0.44.2 → airbyte-api-0.44.3}/src/airbyte/models/shared/source_firebolt.py +0 -0
- {airbyte-api-0.44.2 → airbyte-api-0.44.3}/src/airbyte/models/shared/source_freshcaller.py +0 -0
- {airbyte-api-0.44.2 → airbyte-api-0.44.3}/src/airbyte/models/shared/source_freshdesk.py +0 -0
- {airbyte-api-0.44.2 → airbyte-api-0.44.3}/src/airbyte/models/shared/source_freshsales.py +0 -0
- {airbyte-api-0.44.2 → airbyte-api-0.44.3}/src/airbyte/models/shared/source_gainsight_px.py +0 -0
- {airbyte-api-0.44.2 → airbyte-api-0.44.3}/src/airbyte/models/shared/source_getlago.py +0 -0
- {airbyte-api-0.44.2 → airbyte-api-0.44.3}/src/airbyte/models/shared/source_github.py +0 -0
- {airbyte-api-0.44.2 → airbyte-api-0.44.3}/src/airbyte/models/shared/source_gitlab.py +0 -0
- {airbyte-api-0.44.2 → airbyte-api-0.44.3}/src/airbyte/models/shared/source_glassfrog.py +0 -0
- {airbyte-api-0.44.2 → airbyte-api-0.44.3}/src/airbyte/models/shared/source_gnews.py +0 -0
- {airbyte-api-0.44.2 → airbyte-api-0.44.3}/src/airbyte/models/shared/source_google_directory.py +0 -0
- {airbyte-api-0.44.2 → airbyte-api-0.44.3}/src/airbyte/models/shared/source_google_pagespeed_insights.py +0 -0
- {airbyte-api-0.44.2 → airbyte-api-0.44.3}/src/airbyte/models/shared/source_google_search_console.py +0 -0
- {airbyte-api-0.44.2 → airbyte-api-0.44.3}/src/airbyte/models/shared/source_google_sheets.py +0 -0
- {airbyte-api-0.44.2 → airbyte-api-0.44.3}/src/airbyte/models/shared/source_google_webfonts.py +0 -0
- {airbyte-api-0.44.2 → airbyte-api-0.44.3}/src/airbyte/models/shared/source_google_workspace_admin_reports.py +0 -0
- {airbyte-api-0.44.2 → airbyte-api-0.44.3}/src/airbyte/models/shared/source_greenhouse.py +0 -0
- {airbyte-api-0.44.2 → airbyte-api-0.44.3}/src/airbyte/models/shared/source_gridly.py +0 -0
- {airbyte-api-0.44.2 → airbyte-api-0.44.3}/src/airbyte/models/shared/source_harvest.py +0 -0
- {airbyte-api-0.44.2 → airbyte-api-0.44.3}/src/airbyte/models/shared/source_hubplanner.py +0 -0
- {airbyte-api-0.44.2 → airbyte-api-0.44.3}/src/airbyte/models/shared/source_insightly.py +0 -0
- {airbyte-api-0.44.2 → airbyte-api-0.44.3}/src/airbyte/models/shared/source_instatus.py +0 -0
- {airbyte-api-0.44.2 → airbyte-api-0.44.3}/src/airbyte/models/shared/source_intercom.py +0 -0
- {airbyte-api-0.44.2 → airbyte-api-0.44.3}/src/airbyte/models/shared/source_ip2whois.py +0 -0
- {airbyte-api-0.44.2 → airbyte-api-0.44.3}/src/airbyte/models/shared/source_iterable.py +0 -0
- {airbyte-api-0.44.2 → airbyte-api-0.44.3}/src/airbyte/models/shared/source_k6_cloud.py +0 -0
- {airbyte-api-0.44.2 → airbyte-api-0.44.3}/src/airbyte/models/shared/source_klarna.py +0 -0
- {airbyte-api-0.44.2 → airbyte-api-0.44.3}/src/airbyte/models/shared/source_klaviyo.py +0 -0
- {airbyte-api-0.44.2 → airbyte-api-0.44.3}/src/airbyte/models/shared/source_kustomer_singer.py +0 -0
- {airbyte-api-0.44.2 → airbyte-api-0.44.3}/src/airbyte/models/shared/source_launchdarkly.py +0 -0
- {airbyte-api-0.44.2 → airbyte-api-0.44.3}/src/airbyte/models/shared/source_lemlist.py +0 -0
- {airbyte-api-0.44.2 → airbyte-api-0.44.3}/src/airbyte/models/shared/source_lever_hiring.py +0 -0
- {airbyte-api-0.44.2 → airbyte-api-0.44.3}/src/airbyte/models/shared/source_linkedin_pages.py +0 -0
- {airbyte-api-0.44.2 → airbyte-api-0.44.3}/src/airbyte/models/shared/source_linnworks.py +0 -0
- {airbyte-api-0.44.2 → airbyte-api-0.44.3}/src/airbyte/models/shared/source_lokalise.py +0 -0
- {airbyte-api-0.44.2 → airbyte-api-0.44.3}/src/airbyte/models/shared/source_mailgun.py +0 -0
- {airbyte-api-0.44.2 → airbyte-api-0.44.3}/src/airbyte/models/shared/source_mailjet_sms.py +0 -0
- {airbyte-api-0.44.2 → airbyte-api-0.44.3}/src/airbyte/models/shared/source_marketo.py +0 -0
- {airbyte-api-0.44.2 → airbyte-api-0.44.3}/src/airbyte/models/shared/source_metabase.py +0 -0
- {airbyte-api-0.44.2 → airbyte-api-0.44.3}/src/airbyte/models/shared/source_microsoft_teams.py +0 -0
- {airbyte-api-0.44.2 → airbyte-api-0.44.3}/src/airbyte/models/shared/source_mixpanel.py +0 -0
- {airbyte-api-0.44.2 → airbyte-api-0.44.3}/src/airbyte/models/shared/source_monday.py +0 -0
- {airbyte-api-0.44.2 → airbyte-api-0.44.3}/src/airbyte/models/shared/source_mongodb_internal_poc.py +0 -0
- {airbyte-api-0.44.2 → airbyte-api-0.44.3}/src/airbyte/models/shared/source_my_hours.py +0 -0
- {airbyte-api-0.44.2 → airbyte-api-0.44.3}/src/airbyte/models/shared/source_mysql.py +0 -0
- {airbyte-api-0.44.2 → airbyte-api-0.44.3}/src/airbyte/models/shared/source_netsuite.py +0 -0
- {airbyte-api-0.44.2 → airbyte-api-0.44.3}/src/airbyte/models/shared/source_notion.py +0 -0
- {airbyte-api-0.44.2 → airbyte-api-0.44.3}/src/airbyte/models/shared/source_nytimes.py +0 -0
- {airbyte-api-0.44.2 → airbyte-api-0.44.3}/src/airbyte/models/shared/source_okta.py +0 -0
- {airbyte-api-0.44.2 → airbyte-api-0.44.3}/src/airbyte/models/shared/source_omnisend.py +0 -0
- {airbyte-api-0.44.2 → airbyte-api-0.44.3}/src/airbyte/models/shared/source_onesignal.py +0 -0
- {airbyte-api-0.44.2 → airbyte-api-0.44.3}/src/airbyte/models/shared/source_orb.py +0 -0
- {airbyte-api-0.44.2 → airbyte-api-0.44.3}/src/airbyte/models/shared/source_orbit.py +0 -0
- {airbyte-api-0.44.2 → airbyte-api-0.44.3}/src/airbyte/models/shared/source_outbrain_amplify.py +0 -0
- {airbyte-api-0.44.2 → airbyte-api-0.44.3}/src/airbyte/models/shared/source_outreach.py +0 -0
- {airbyte-api-0.44.2 → airbyte-api-0.44.3}/src/airbyte/models/shared/source_paypal_transaction.py +0 -0
- {airbyte-api-0.44.2 → airbyte-api-0.44.3}/src/airbyte/models/shared/source_paystack.py +0 -0
- {airbyte-api-0.44.2 → airbyte-api-0.44.3}/src/airbyte/models/shared/source_pendo.py +0 -0
- {airbyte-api-0.44.2 → airbyte-api-0.44.3}/src/airbyte/models/shared/source_persistiq.py +0 -0
- {airbyte-api-0.44.2 → airbyte-api-0.44.3}/src/airbyte/models/shared/source_pexels_api.py +0 -0
- {airbyte-api-0.44.2 → airbyte-api-0.44.3}/src/airbyte/models/shared/source_pipedrive.py +0 -0
- {airbyte-api-0.44.2 → airbyte-api-0.44.3}/src/airbyte/models/shared/source_pocket.py +0 -0
- {airbyte-api-0.44.2 → airbyte-api-0.44.3}/src/airbyte/models/shared/source_pokeapi.py +0 -0
- {airbyte-api-0.44.2 → airbyte-api-0.44.3}/src/airbyte/models/shared/source_polygon_stock_api.py +0 -0
- {airbyte-api-0.44.2 → airbyte-api-0.44.3}/src/airbyte/models/shared/source_posthog.py +0 -0
- {airbyte-api-0.44.2 → airbyte-api-0.44.3}/src/airbyte/models/shared/source_postmarkapp.py +0 -0
- {airbyte-api-0.44.2 → airbyte-api-0.44.3}/src/airbyte/models/shared/source_prestashop.py +0 -0
- {airbyte-api-0.44.2 → airbyte-api-0.44.3}/src/airbyte/models/shared/source_punk_api.py +0 -0
- {airbyte-api-0.44.2 → airbyte-api-0.44.3}/src/airbyte/models/shared/source_pypi.py +0 -0
- {airbyte-api-0.44.2 → airbyte-api-0.44.3}/src/airbyte/models/shared/source_qualaroo.py +0 -0
- {airbyte-api-0.44.2 → airbyte-api-0.44.3}/src/airbyte/models/shared/source_quickbooks.py +0 -0
- {airbyte-api-0.44.2 → airbyte-api-0.44.3}/src/airbyte/models/shared/source_railz.py +0 -0
- {airbyte-api-0.44.2 → airbyte-api-0.44.3}/src/airbyte/models/shared/source_recharge.py +0 -0
- {airbyte-api-0.44.2 → airbyte-api-0.44.3}/src/airbyte/models/shared/source_recreation.py +0 -0
- {airbyte-api-0.44.2 → airbyte-api-0.44.3}/src/airbyte/models/shared/source_recruitee.py +0 -0
- {airbyte-api-0.44.2 → airbyte-api-0.44.3}/src/airbyte/models/shared/source_recurly.py +0 -0
- {airbyte-api-0.44.2 → airbyte-api-0.44.3}/src/airbyte/models/shared/source_redshift.py +0 -0
- {airbyte-api-0.44.2 → airbyte-api-0.44.3}/src/airbyte/models/shared/source_retently.py +0 -0
- {airbyte-api-0.44.2 → airbyte-api-0.44.3}/src/airbyte/models/shared/source_rki_covid.py +0 -0
- {airbyte-api-0.44.2 → airbyte-api-0.44.3}/src/airbyte/models/shared/source_rss.py +0 -0
- {airbyte-api-0.44.2 → airbyte-api-0.44.3}/src/airbyte/models/shared/source_salesforce.py +0 -0
- {airbyte-api-0.44.2 → airbyte-api-0.44.3}/src/airbyte/models/shared/source_salesloft.py +0 -0
- {airbyte-api-0.44.2 → airbyte-api-0.44.3}/src/airbyte/models/shared/source_sap_fieldglass.py +0 -0
- {airbyte-api-0.44.2 → airbyte-api-0.44.3}/src/airbyte/models/shared/source_secoda.py +0 -0
- {airbyte-api-0.44.2 → airbyte-api-0.44.3}/src/airbyte/models/shared/source_sendgrid.py +0 -0
- {airbyte-api-0.44.2 → airbyte-api-0.44.3}/src/airbyte/models/shared/source_sendinblue.py +0 -0
- {airbyte-api-0.44.2 → airbyte-api-0.44.3}/src/airbyte/models/shared/source_senseforce.py +0 -0
- {airbyte-api-0.44.2 → airbyte-api-0.44.3}/src/airbyte/models/shared/source_sentry.py +0 -0
- {airbyte-api-0.44.2 → airbyte-api-0.44.3}/src/airbyte/models/shared/source_sftp.py +0 -0
- {airbyte-api-0.44.2 → airbyte-api-0.44.3}/src/airbyte/models/shared/source_sftp_bulk.py +0 -0
- {airbyte-api-0.44.2 → airbyte-api-0.44.3}/src/airbyte/models/shared/source_shopify.py +0 -0
- {airbyte-api-0.44.2 → airbyte-api-0.44.3}/src/airbyte/models/shared/source_shortio.py +0 -0
- {airbyte-api-0.44.2 → airbyte-api-0.44.3}/src/airbyte/models/shared/source_slack.py +0 -0
- {airbyte-api-0.44.2 → airbyte-api-0.44.3}/src/airbyte/models/shared/source_smaily.py +0 -0
- {airbyte-api-0.44.2 → airbyte-api-0.44.3}/src/airbyte/models/shared/source_smartengage.py +0 -0
- {airbyte-api-0.44.2 → airbyte-api-0.44.3}/src/airbyte/models/shared/source_smartsheets.py +0 -0
- {airbyte-api-0.44.2 → airbyte-api-0.44.3}/src/airbyte/models/shared/source_snapchat_marketing.py +0 -0
- {airbyte-api-0.44.2 → airbyte-api-0.44.3}/src/airbyte/models/shared/source_snowflake.py +0 -0
- {airbyte-api-0.44.2 → airbyte-api-0.44.3}/src/airbyte/models/shared/source_sonar_cloud.py +0 -0
- {airbyte-api-0.44.2 → airbyte-api-0.44.3}/src/airbyte/models/shared/source_spacex_api.py +0 -0
- {airbyte-api-0.44.2 → airbyte-api-0.44.3}/src/airbyte/models/shared/source_square.py +0 -0
- {airbyte-api-0.44.2 → airbyte-api-0.44.3}/src/airbyte/models/shared/source_strava.py +0 -0
- {airbyte-api-0.44.2 → airbyte-api-0.44.3}/src/airbyte/models/shared/source_survey_sparrow.py +0 -0
- {airbyte-api-0.44.2 → airbyte-api-0.44.3}/src/airbyte/models/shared/source_surveymonkey.py +0 -0
- {airbyte-api-0.44.2 → airbyte-api-0.44.3}/src/airbyte/models/shared/source_tempo.py +0 -0
- {airbyte-api-0.44.2 → airbyte-api-0.44.3}/src/airbyte/models/shared/source_the_guardian_api.py +0 -0
- {airbyte-api-0.44.2 → airbyte-api-0.44.3}/src/airbyte/models/shared/source_tiktok_marketing.py +0 -0
- {airbyte-api-0.44.2 → airbyte-api-0.44.3}/src/airbyte/models/shared/source_trello.py +0 -0
- {airbyte-api-0.44.2 → airbyte-api-0.44.3}/src/airbyte/models/shared/source_trustpilot.py +0 -0
- {airbyte-api-0.44.2 → airbyte-api-0.44.3}/src/airbyte/models/shared/source_tvmaze_schedule.py +0 -0
- {airbyte-api-0.44.2 → airbyte-api-0.44.3}/src/airbyte/models/shared/source_twilio.py +0 -0
- {airbyte-api-0.44.2 → airbyte-api-0.44.3}/src/airbyte/models/shared/source_twilio_taskrouter.py +0 -0
- {airbyte-api-0.44.2 → airbyte-api-0.44.3}/src/airbyte/models/shared/source_twitter.py +0 -0
- {airbyte-api-0.44.2 → airbyte-api-0.44.3}/src/airbyte/models/shared/source_typeform.py +0 -0
- {airbyte-api-0.44.2 → airbyte-api-0.44.3}/src/airbyte/models/shared/source_us_census.py +0 -0
- {airbyte-api-0.44.2 → airbyte-api-0.44.3}/src/airbyte/models/shared/source_vantage.py +0 -0
- {airbyte-api-0.44.2 → airbyte-api-0.44.3}/src/airbyte/models/shared/source_whisky_hunter.py +0 -0
- {airbyte-api-0.44.2 → airbyte-api-0.44.3}/src/airbyte/models/shared/source_wikipedia_pageviews.py +0 -0
- {airbyte-api-0.44.2 → airbyte-api-0.44.3}/src/airbyte/models/shared/source_woocommerce.py +0 -0
- {airbyte-api-0.44.2 → airbyte-api-0.44.3}/src/airbyte/models/shared/source_xkcd.py +0 -0
- {airbyte-api-0.44.2 → airbyte-api-0.44.3}/src/airbyte/models/shared/source_yandex_metrica.py +0 -0
- {airbyte-api-0.44.2 → airbyte-api-0.44.3}/src/airbyte/models/shared/source_yotpo.py +0 -0
- {airbyte-api-0.44.2 → airbyte-api-0.44.3}/src/airbyte/models/shared/source_youtube_analytics.py +0 -0
- {airbyte-api-0.44.2 → airbyte-api-0.44.3}/src/airbyte/models/shared/source_zendesk_chat.py +0 -0
- {airbyte-api-0.44.2 → airbyte-api-0.44.3}/src/airbyte/models/shared/source_zendesk_sell.py +0 -0
- {airbyte-api-0.44.2 → airbyte-api-0.44.3}/src/airbyte/models/shared/source_zendesk_sunshine.py +0 -0
- {airbyte-api-0.44.2 → airbyte-api-0.44.3}/src/airbyte/models/shared/source_zendesk_support.py +0 -0
- {airbyte-api-0.44.2 → airbyte-api-0.44.3}/src/airbyte/models/shared/source_zendesk_talk.py +0 -0
- {airbyte-api-0.44.2 → airbyte-api-0.44.3}/src/airbyte/models/shared/source_zenloop.py +0 -0
- {airbyte-api-0.44.2 → airbyte-api-0.44.3}/src/airbyte/models/shared/source_zoho_crm.py +0 -0
- {airbyte-api-0.44.2 → airbyte-api-0.44.3}/src/airbyte/models/shared/source_zoom.py +0 -0
- {airbyte-api-0.44.2 → airbyte-api-0.44.3}/src/airbyte/models/shared/source_zuora.py +0 -0
- {airbyte-api-0.44.2 → airbyte-api-0.44.3}/src/airbyte/models/shared/sourcesresponse.py +0 -0
- {airbyte-api-0.44.2 → airbyte-api-0.44.3}/src/airbyte/models/shared/square.py +0 -0
- {airbyte-api-0.44.2 → airbyte-api-0.44.3}/src/airbyte/models/shared/strava.py +0 -0
- {airbyte-api-0.44.2 → airbyte-api-0.44.3}/src/airbyte/models/shared/streamconfiguration.py +0 -0
- {airbyte-api-0.44.2 → airbyte-api-0.44.3}/src/airbyte/models/shared/streamconfigurations.py +0 -0
- {airbyte-api-0.44.2 → airbyte-api-0.44.3}/src/airbyte/models/shared/streamproperties.py +0 -0
- {airbyte-api-0.44.2 → airbyte-api-0.44.3}/src/airbyte/models/shared/streampropertiesresponse.py +0 -0
- {airbyte-api-0.44.2 → airbyte-api-0.44.3}/src/airbyte/models/shared/surveymonkey.py +0 -0
- {airbyte-api-0.44.2 → airbyte-api-0.44.3}/src/airbyte/models/shared/tiktok_marketing.py +0 -0
- {airbyte-api-0.44.2 → airbyte-api-0.44.3}/src/airbyte/models/shared/typeform.py +0 -0
- {airbyte-api-0.44.2 → airbyte-api-0.44.3}/src/airbyte/models/shared/workspacecreaterequest.py +0 -0
- {airbyte-api-0.44.2 → airbyte-api-0.44.3}/src/airbyte/models/shared/workspaceresponse.py +0 -0
- {airbyte-api-0.44.2 → airbyte-api-0.44.3}/src/airbyte/models/shared/workspacesresponse.py +0 -0
- {airbyte-api-0.44.2 → airbyte-api-0.44.3}/src/airbyte/models/shared/workspaceupdaterequest.py +0 -0
- {airbyte-api-0.44.2 → airbyte-api-0.44.3}/src/airbyte/models/shared/youtube_analytics.py +0 -0
- {airbyte-api-0.44.2 → airbyte-api-0.44.3}/src/airbyte/models/shared/zendesk_chat.py +0 -0
- {airbyte-api-0.44.2 → airbyte-api-0.44.3}/src/airbyte/models/shared/zendesk_sunshine.py +0 -0
- {airbyte-api-0.44.2 → airbyte-api-0.44.3}/src/airbyte/models/shared/zendesk_support.py +0 -0
- {airbyte-api-0.44.2 → airbyte-api-0.44.3}/src/airbyte/models/shared/zendesk_talk.py +0 -0
- {airbyte-api-0.44.2 → airbyte-api-0.44.3}/src/airbyte/sdk.py +0 -0
- {airbyte-api-0.44.2 → airbyte-api-0.44.3}/src/airbyte/sources.py +0 -0
- {airbyte-api-0.44.2 → airbyte-api-0.44.3}/src/airbyte/streams.py +0 -0
- {airbyte-api-0.44.2 → airbyte-api-0.44.3}/src/airbyte/utils/__init__.py +0 -0
- {airbyte-api-0.44.2 → airbyte-api-0.44.3}/src/airbyte/workspaces.py +0 -0
- {airbyte-api-0.44.2 → airbyte-api-0.44.3}/src/airbyte_api.egg-info/dependency_links.txt +0 -0
- {airbyte-api-0.44.2 → airbyte-api-0.44.3}/src/airbyte_api.egg-info/requires.txt +0 -0
- {airbyte-api-0.44.2 → airbyte-api-0.44.3}/src/airbyte_api.egg-info/top_level.txt +0 -0
|
@@ -0,0 +1,327 @@
|
|
|
1
|
+
"""Code generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT."""
|
|
2
|
+
|
|
3
|
+
from .actortypeenum import *
|
|
4
|
+
from .airtable import *
|
|
5
|
+
from .amazon_ads import *
|
|
6
|
+
from .amazon_seller_partner import *
|
|
7
|
+
from .asana import *
|
|
8
|
+
from .bing_ads import *
|
|
9
|
+
from .connectioncreaterequest import *
|
|
10
|
+
from .connectionpatchrequest import *
|
|
11
|
+
from .connectionresponse import *
|
|
12
|
+
from .connectionschedule import *
|
|
13
|
+
from .connectionscheduleresponse import *
|
|
14
|
+
from .connectionsresponse import *
|
|
15
|
+
from .connectionstatusenum import *
|
|
16
|
+
from .connectionsyncmodeenum import *
|
|
17
|
+
from .destination_aws_datalake import *
|
|
18
|
+
from .destination_azure_blob_storage import *
|
|
19
|
+
from .destination_bigquery import *
|
|
20
|
+
from .destination_clickhouse import *
|
|
21
|
+
from .destination_convex import *
|
|
22
|
+
from .destination_cumulio import *
|
|
23
|
+
from .destination_databend import *
|
|
24
|
+
from .destination_databricks import *
|
|
25
|
+
from .destination_dev_null import *
|
|
26
|
+
from .destination_duckdb import *
|
|
27
|
+
from .destination_dynamodb import *
|
|
28
|
+
from .destination_elasticsearch import *
|
|
29
|
+
from .destination_firebolt import *
|
|
30
|
+
from .destination_firestore import *
|
|
31
|
+
from .destination_gcs import *
|
|
32
|
+
from .destination_google_sheets import *
|
|
33
|
+
from .destination_keen import *
|
|
34
|
+
from .destination_kinesis import *
|
|
35
|
+
from .destination_langchain import *
|
|
36
|
+
from .destination_milvus import *
|
|
37
|
+
from .destination_mongodb import *
|
|
38
|
+
from .destination_mssql import *
|
|
39
|
+
from .destination_mysql import *
|
|
40
|
+
from .destination_oracle import *
|
|
41
|
+
from .destination_pinecone import *
|
|
42
|
+
from .destination_postgres import *
|
|
43
|
+
from .destination_pubsub import *
|
|
44
|
+
from .destination_qdrant import *
|
|
45
|
+
from .destination_redis import *
|
|
46
|
+
from .destination_redshift import *
|
|
47
|
+
from .destination_s3 import *
|
|
48
|
+
from .destination_s3_glue import *
|
|
49
|
+
from .destination_sftp_json import *
|
|
50
|
+
from .destination_snowflake import *
|
|
51
|
+
from .destination_timeplus import *
|
|
52
|
+
from .destination_typesense import *
|
|
53
|
+
from .destination_vectara import *
|
|
54
|
+
from .destination_vertica import *
|
|
55
|
+
from .destination_weaviate import *
|
|
56
|
+
from .destination_xata import *
|
|
57
|
+
from .destinationcreaterequest import *
|
|
58
|
+
from .destinationpatchrequest import *
|
|
59
|
+
from .destinationputrequest import *
|
|
60
|
+
from .destinationresponse import *
|
|
61
|
+
from .destinationsresponse import *
|
|
62
|
+
from .facebook_marketing import *
|
|
63
|
+
from .geographyenum import *
|
|
64
|
+
from .geographyenumnodefault import *
|
|
65
|
+
from .github import *
|
|
66
|
+
from .gitlab import *
|
|
67
|
+
from .google_ads import *
|
|
68
|
+
from .google_analytics_data_api import *
|
|
69
|
+
from .google_drive import *
|
|
70
|
+
from .google_search_console import *
|
|
71
|
+
from .google_sheets import *
|
|
72
|
+
from .harvest import *
|
|
73
|
+
from .hubspot import *
|
|
74
|
+
from .initiateoauthrequest import *
|
|
75
|
+
from .instagram import *
|
|
76
|
+
from .intercom import *
|
|
77
|
+
from .jobcreaterequest import *
|
|
78
|
+
from .jobresponse import *
|
|
79
|
+
from .jobsresponse import *
|
|
80
|
+
from .jobstatusenum import *
|
|
81
|
+
from .jobtypeenum import *
|
|
82
|
+
from .lever_hiring import *
|
|
83
|
+
from .linkedin_ads import *
|
|
84
|
+
from .mailchimp import *
|
|
85
|
+
from .microsoft_teams import *
|
|
86
|
+
from .monday import *
|
|
87
|
+
from .namespacedefinitionenum import *
|
|
88
|
+
from .namespacedefinitionenumnodefault import *
|
|
89
|
+
from .nonbreakingschemaupdatesbehaviorenum import *
|
|
90
|
+
from .nonbreakingschemaupdatesbehaviorenumnodefault import *
|
|
91
|
+
from .notion import *
|
|
92
|
+
from .oauthactornames import *
|
|
93
|
+
from .oauthinputconfiguration import *
|
|
94
|
+
from .pinterest import *
|
|
95
|
+
from .retently import *
|
|
96
|
+
from .salesforce import *
|
|
97
|
+
from .scheduletypeenum import *
|
|
98
|
+
from .scheduletypewithbasicenum import *
|
|
99
|
+
from .schemebasicauth import *
|
|
100
|
+
from .security import *
|
|
101
|
+
from .shopify import *
|
|
102
|
+
from .slack import *
|
|
103
|
+
from .smartsheets import *
|
|
104
|
+
from .snapchat_marketing import *
|
|
105
|
+
from .snowflake import *
|
|
106
|
+
from .source_aha import *
|
|
107
|
+
from .source_aircall import *
|
|
108
|
+
from .source_airtable import *
|
|
109
|
+
from .source_alloydb import *
|
|
110
|
+
from .source_amazon_ads import *
|
|
111
|
+
from .source_amazon_seller_partner import *
|
|
112
|
+
from .source_amazon_sqs import *
|
|
113
|
+
from .source_amplitude import *
|
|
114
|
+
from .source_apify_dataset import *
|
|
115
|
+
from .source_appfollow import *
|
|
116
|
+
from .source_asana import *
|
|
117
|
+
from .source_auth0 import *
|
|
118
|
+
from .source_aws_cloudtrail import *
|
|
119
|
+
from .source_azure_blob_storage import *
|
|
120
|
+
from .source_azure_table import *
|
|
121
|
+
from .source_bamboo_hr import *
|
|
122
|
+
from .source_bigquery import *
|
|
123
|
+
from .source_bing_ads import *
|
|
124
|
+
from .source_braintree import *
|
|
125
|
+
from .source_braze import *
|
|
126
|
+
from .source_cart import *
|
|
127
|
+
from .source_chargebee import *
|
|
128
|
+
from .source_chartmogul import *
|
|
129
|
+
from .source_clickhouse import *
|
|
130
|
+
from .source_clickup_api import *
|
|
131
|
+
from .source_clockify import *
|
|
132
|
+
from .source_close_com import *
|
|
133
|
+
from .source_coda import *
|
|
134
|
+
from .source_coin_api import *
|
|
135
|
+
from .source_coinmarketcap import *
|
|
136
|
+
from .source_configcat import *
|
|
137
|
+
from .source_confluence import *
|
|
138
|
+
from .source_convex import *
|
|
139
|
+
from .source_datascope import *
|
|
140
|
+
from .source_delighted import *
|
|
141
|
+
from .source_dixa import *
|
|
142
|
+
from .source_dockerhub import *
|
|
143
|
+
from .source_dremio import *
|
|
144
|
+
from .source_dynamodb import *
|
|
145
|
+
from .source_e2e_test_cloud import *
|
|
146
|
+
from .source_emailoctopus import *
|
|
147
|
+
from .source_exchange_rates import *
|
|
148
|
+
from .source_facebook_marketing import *
|
|
149
|
+
from .source_faker import *
|
|
150
|
+
from .source_fauna import *
|
|
151
|
+
from .source_file import *
|
|
152
|
+
from .source_firebolt import *
|
|
153
|
+
from .source_freshcaller import *
|
|
154
|
+
from .source_freshdesk import *
|
|
155
|
+
from .source_freshsales import *
|
|
156
|
+
from .source_gainsight_px import *
|
|
157
|
+
from .source_gcs import *
|
|
158
|
+
from .source_getlago import *
|
|
159
|
+
from .source_github import *
|
|
160
|
+
from .source_gitlab import *
|
|
161
|
+
from .source_glassfrog import *
|
|
162
|
+
from .source_gnews import *
|
|
163
|
+
from .source_google_ads import *
|
|
164
|
+
from .source_google_analytics_data_api import *
|
|
165
|
+
from .source_google_directory import *
|
|
166
|
+
from .source_google_drive import *
|
|
167
|
+
from .source_google_pagespeed_insights import *
|
|
168
|
+
from .source_google_search_console import *
|
|
169
|
+
from .source_google_sheets import *
|
|
170
|
+
from .source_google_webfonts import *
|
|
171
|
+
from .source_google_workspace_admin_reports import *
|
|
172
|
+
from .source_greenhouse import *
|
|
173
|
+
from .source_gridly import *
|
|
174
|
+
from .source_harvest import *
|
|
175
|
+
from .source_hubplanner import *
|
|
176
|
+
from .source_hubspot import *
|
|
177
|
+
from .source_insightly import *
|
|
178
|
+
from .source_instagram import *
|
|
179
|
+
from .source_instatus import *
|
|
180
|
+
from .source_intercom import *
|
|
181
|
+
from .source_ip2whois import *
|
|
182
|
+
from .source_iterable import *
|
|
183
|
+
from .source_jira import *
|
|
184
|
+
from .source_k6_cloud import *
|
|
185
|
+
from .source_klarna import *
|
|
186
|
+
from .source_klaviyo import *
|
|
187
|
+
from .source_kustomer_singer import *
|
|
188
|
+
from .source_kyve import *
|
|
189
|
+
from .source_launchdarkly import *
|
|
190
|
+
from .source_lemlist import *
|
|
191
|
+
from .source_lever_hiring import *
|
|
192
|
+
from .source_linkedin_ads import *
|
|
193
|
+
from .source_linkedin_pages import *
|
|
194
|
+
from .source_linnworks import *
|
|
195
|
+
from .source_lokalise import *
|
|
196
|
+
from .source_mailchimp import *
|
|
197
|
+
from .source_mailgun import *
|
|
198
|
+
from .source_mailjet_sms import *
|
|
199
|
+
from .source_marketo import *
|
|
200
|
+
from .source_metabase import *
|
|
201
|
+
from .source_microsoft_teams import *
|
|
202
|
+
from .source_mixpanel import *
|
|
203
|
+
from .source_monday import *
|
|
204
|
+
from .source_mongodb_internal_poc import *
|
|
205
|
+
from .source_mongodb_v2 import *
|
|
206
|
+
from .source_mssql import *
|
|
207
|
+
from .source_my_hours import *
|
|
208
|
+
from .source_mysql import *
|
|
209
|
+
from .source_netsuite import *
|
|
210
|
+
from .source_notion import *
|
|
211
|
+
from .source_nytimes import *
|
|
212
|
+
from .source_okta import *
|
|
213
|
+
from .source_omnisend import *
|
|
214
|
+
from .source_onesignal import *
|
|
215
|
+
from .source_oracle import *
|
|
216
|
+
from .source_orb import *
|
|
217
|
+
from .source_orbit import *
|
|
218
|
+
from .source_outbrain_amplify import *
|
|
219
|
+
from .source_outreach import *
|
|
220
|
+
from .source_paypal_transaction import *
|
|
221
|
+
from .source_paystack import *
|
|
222
|
+
from .source_pendo import *
|
|
223
|
+
from .source_persistiq import *
|
|
224
|
+
from .source_pexels_api import *
|
|
225
|
+
from .source_pinterest import *
|
|
226
|
+
from .source_pipedrive import *
|
|
227
|
+
from .source_pocket import *
|
|
228
|
+
from .source_pokeapi import *
|
|
229
|
+
from .source_polygon_stock_api import *
|
|
230
|
+
from .source_postgres import *
|
|
231
|
+
from .source_posthog import *
|
|
232
|
+
from .source_postmarkapp import *
|
|
233
|
+
from .source_prestashop import *
|
|
234
|
+
from .source_punk_api import *
|
|
235
|
+
from .source_pypi import *
|
|
236
|
+
from .source_qualaroo import *
|
|
237
|
+
from .source_quickbooks import *
|
|
238
|
+
from .source_railz import *
|
|
239
|
+
from .source_recharge import *
|
|
240
|
+
from .source_recreation import *
|
|
241
|
+
from .source_recruitee import *
|
|
242
|
+
from .source_recurly import *
|
|
243
|
+
from .source_redshift import *
|
|
244
|
+
from .source_retently import *
|
|
245
|
+
from .source_rki_covid import *
|
|
246
|
+
from .source_rss import *
|
|
247
|
+
from .source_s3 import *
|
|
248
|
+
from .source_salesforce import *
|
|
249
|
+
from .source_salesloft import *
|
|
250
|
+
from .source_sap_fieldglass import *
|
|
251
|
+
from .source_secoda import *
|
|
252
|
+
from .source_sendgrid import *
|
|
253
|
+
from .source_sendinblue import *
|
|
254
|
+
from .source_senseforce import *
|
|
255
|
+
from .source_sentry import *
|
|
256
|
+
from .source_sftp import *
|
|
257
|
+
from .source_sftp_bulk import *
|
|
258
|
+
from .source_shopify import *
|
|
259
|
+
from .source_shortio import *
|
|
260
|
+
from .source_slack import *
|
|
261
|
+
from .source_smaily import *
|
|
262
|
+
from .source_smartengage import *
|
|
263
|
+
from .source_smartsheets import *
|
|
264
|
+
from .source_snapchat_marketing import *
|
|
265
|
+
from .source_snowflake import *
|
|
266
|
+
from .source_sonar_cloud import *
|
|
267
|
+
from .source_spacex_api import *
|
|
268
|
+
from .source_square import *
|
|
269
|
+
from .source_strava import *
|
|
270
|
+
from .source_stripe import *
|
|
271
|
+
from .source_survey_sparrow import *
|
|
272
|
+
from .source_surveymonkey import *
|
|
273
|
+
from .source_tempo import *
|
|
274
|
+
from .source_the_guardian_api import *
|
|
275
|
+
from .source_tiktok_marketing import *
|
|
276
|
+
from .source_trello import *
|
|
277
|
+
from .source_trustpilot import *
|
|
278
|
+
from .source_tvmaze_schedule import *
|
|
279
|
+
from .source_twilio import *
|
|
280
|
+
from .source_twilio_taskrouter import *
|
|
281
|
+
from .source_twitter import *
|
|
282
|
+
from .source_typeform import *
|
|
283
|
+
from .source_us_census import *
|
|
284
|
+
from .source_vantage import *
|
|
285
|
+
from .source_webflow import *
|
|
286
|
+
from .source_whisky_hunter import *
|
|
287
|
+
from .source_wikipedia_pageviews import *
|
|
288
|
+
from .source_woocommerce import *
|
|
289
|
+
from .source_xkcd import *
|
|
290
|
+
from .source_yandex_metrica import *
|
|
291
|
+
from .source_yotpo import *
|
|
292
|
+
from .source_youtube_analytics import *
|
|
293
|
+
from .source_zendesk_chat import *
|
|
294
|
+
from .source_zendesk_sell import *
|
|
295
|
+
from .source_zendesk_sunshine import *
|
|
296
|
+
from .source_zendesk_support import *
|
|
297
|
+
from .source_zendesk_talk import *
|
|
298
|
+
from .source_zenloop import *
|
|
299
|
+
from .source_zoho_crm import *
|
|
300
|
+
from .source_zoom import *
|
|
301
|
+
from .source_zuora import *
|
|
302
|
+
from .sourcecreaterequest import *
|
|
303
|
+
from .sourcepatchrequest import *
|
|
304
|
+
from .sourceputrequest import *
|
|
305
|
+
from .sourceresponse import *
|
|
306
|
+
from .sourcesresponse import *
|
|
307
|
+
from .square import *
|
|
308
|
+
from .strava import *
|
|
309
|
+
from .streamconfiguration import *
|
|
310
|
+
from .streamconfigurations import *
|
|
311
|
+
from .streamproperties import *
|
|
312
|
+
from .streampropertiesresponse import *
|
|
313
|
+
from .surveymonkey import *
|
|
314
|
+
from .tiktok_marketing import *
|
|
315
|
+
from .typeform import *
|
|
316
|
+
from .workspacecreaterequest import *
|
|
317
|
+
from .workspaceoauthcredentialsrequest import *
|
|
318
|
+
from .workspaceresponse import *
|
|
319
|
+
from .workspacesresponse import *
|
|
320
|
+
from .workspaceupdaterequest import *
|
|
321
|
+
from .youtube_analytics import *
|
|
322
|
+
from .zendesk_chat import *
|
|
323
|
+
from .zendesk_sunshine import *
|
|
324
|
+
from .zendesk_support import *
|
|
325
|
+
from .zendesk_talk import *
|
|
326
|
+
|
|
327
|
+
__all__ = ["AESCBCEnvelopeEncryption","APIAccessToken","APIKey","APIKeyAuth","APIKeySecret","APIPassword","APIToken","AWSEnvironment","AWSRegion","AWSS3Staging","AWSSellerPartnerAccountType","AccessToken","AccessTokenIsRequiredForAuthenticationRequests","AccountNames","ActionReportTime","ActorTypeEnum","AdAnalyticsReportConfiguration","Aha","Aircall","Airtable","Allow","Alloydb","AmazonAds","AmazonS3","AmazonSellerPartner","AmazonSqs","Amplitude","AndGroup","ApifyDataset","Appfollow","Applications","Asana","AsanaCredentials","Auth0","AuthMethod","AuthType","AuthenticateViaAPIKey","AuthenticateViaAsanaOauth","AuthenticateViaGoogleOauth","AuthenticateViaHarvestOAuth","AuthenticateViaLeverAPIKey","AuthenticateViaLeverOAuth","AuthenticateViaMicrosoft","AuthenticateViaMicrosoftOAuth20","AuthenticateViaOAuth","AuthenticateViaOAuth20","AuthenticateViaRetentlyOAuth","AuthenticateWithAPIToken","AuthenticateWithPersonalAccessToken","AuthenticationViaGoogleOAuth","Authorization","Autogenerated","Avro","AvroApacheAvro","AvroFormat","AwsCloudtrail","AwsDatalake","AzBlobAzureBlobStorage","AzureBlobStorage","AzureOpenAI","AzureTable","BambooHr","BetweenFilter","Bigquery","BingAds","BothUsernameAndPasswordIsRequiredForAuthenticationRequest","Braintree","Braze","ByMarkdownHeader","ByProgrammingLanguage","BySeparator","Bzip2","CSVCommaSeparatedValues","CSVFormat","CacheType","Cart","Categories","CentralAPIRouter","Chargebee","Chartmogul","ChooseHowToPartitionData","ChromaLocalPersistance","ClickWindowDays","Clickhouse","ClickupAPI","Clockify","CloseCom","Coda","Codec","Cohere","CohortReportSettings","Cohorts","CohortsRange","CoinAPI","Coinmarketcap","Collection","CompressionCodecOptional","CompressionType","Configcat","Confluence","ConnectionCreateRequest","ConnectionPatchRequest","ConnectionResponse","ConnectionSchedule","ConnectionScheduleResponse","ConnectionStatusEnum","ConnectionSyncModeEnum","ConnectionType","ConnectionsResponse","ContentType","ContinuousFeed","ConversionReportTime","Convex","Country","CredentialType","Credentials","CredentialsTitle","Csv","Cumulio","CustomQueriesArray","CustomReportConfig","CustomerStatus","DataCenterLocation","DataFreshness","DataQueryType","DataRegion","DataSourceType","DataType","Databend","Databricks","Datascope","DatasetLocation","DateRange","DefaultVectorizer","Deflate","Delighted","DestinationAwsDatalake","DestinationAwsDatalakeCompressionCodecOptional","DestinationAwsDatalakeCredentialsTitle","DestinationAwsDatalakeFormatTypeWildcard","DestinationAzureBlobStorage","DestinationAzureBlobStorageFormatType","DestinationAzureBlobStorageJSONLinesNewlineDelimitedJSON","DestinationBigquery","DestinationBigqueryCredentialType","DestinationBigqueryHMACKey","DestinationBigqueryMethod","DestinationClickhouse","DestinationClickhouseSchemasTunnelMethod","DestinationClickhouseTunnelMethod","DestinationConvex","DestinationCreateRequest","DestinationCumulio","DestinationDatabend","DestinationDatabricks","DestinationDatabricksAzureBlobStorage","DestinationDatabricksDataSourceType","DestinationDatabricksS3BucketRegion","DestinationDatabricksSchemasDataSourceType","DestinationDevNull","DestinationDuckdb","DestinationDynamodb","DestinationElasticsearch","DestinationElasticsearchMethod","DestinationElasticsearchSchemasMethod","DestinationFirebolt","DestinationFireboltMethod","DestinationFireboltSchemasMethod","DestinationFirestore","DestinationGcs","DestinationGcsCSVCommaSeparatedValues","DestinationGcsCodec","DestinationGcsCompressionCodec","DestinationGcsCompressionType","DestinationGcsFormatType","DestinationGcsGZIP","DestinationGcsJSONLinesNewlineDelimitedJSON","DestinationGcsNoCompression","DestinationGcsParquetColumnarStorage","DestinationGcsSchemasCodec","DestinationGcsSchemasCompressionType","DestinationGcsSchemasFormatCodec","DestinationGcsSchemasFormatCompressionType","DestinationGcsSchemasFormatFormatType","DestinationGcsSchemasFormatOutputFormat1Codec","DestinationGcsSchemasFormatOutputFormatCodec","DestinationGcsSchemasFormatOutputFormatFormatType","DestinationGcsSchemasFormatType","DestinationGcsSchemasNoCompression","DestinationGoogleSheets","DestinationGoogleSheetsGoogleSheets","DestinationKeen","DestinationKinesis","DestinationLangchain","DestinationLangchainMode","DestinationLangchainPinecone","DestinationLangchainSchemasEmbeddingMode","DestinationLangchainSchemasIndexingIndexingMode","DestinationLangchainSchemasIndexingMode","DestinationLangchainSchemasMode","DestinationMilvus","DestinationMilvusAPIToken","DestinationMilvusFake","DestinationMilvusIndexing","DestinationMilvusLanguage","DestinationMilvusMode","DestinationMilvusOpenAI","DestinationMilvusProcessingConfigModel","DestinationMilvusSchemasEmbeddingEmbedding5Mode","DestinationMilvusSchemasEmbeddingEmbeddingMode","DestinationMilvusSchemasEmbeddingMode","DestinationMilvusSchemasIndexingAuthAuthenticationMode","DestinationMilvusSchemasIndexingAuthMode","DestinationMilvusSchemasIndexingMode","DestinationMilvusSchemasMode","DestinationMilvusSchemasProcessingMode","DestinationMilvusSchemasProcessingTextSplitterMode","DestinationMilvusSchemasProcessingTextSplitterTextSplitterMode","DestinationMilvusUsernamePassword","DestinationMongodb","DestinationMongodbAuthorization","DestinationMongodbInstance","DestinationMongodbNoTunnel","DestinationMongodbPasswordAuthentication","DestinationMongodbSSHKeyAuthentication","DestinationMongodbSchemasAuthorization","DestinationMongodbSchemasInstance","DestinationMongodbSchemasTunnelMethod","DestinationMongodbSchemasTunnelMethodTunnelMethod","DestinationMongodbTunnelMethod","DestinationMssql","DestinationMssqlNoTunnel","DestinationMssqlPasswordAuthentication","DestinationMssqlSSHKeyAuthentication","DestinationMssqlSchemasSslMethod","DestinationMssqlSchemasTunnelMethod","DestinationMssqlSchemasTunnelMethodTunnelMethod","DestinationMssqlSslMethod","DestinationMssqlTunnelMethod","DestinationMysql","DestinationMysqlNoTunnel","DestinationMysqlPasswordAuthentication","DestinationMysqlSSHKeyAuthentication","DestinationMysqlSchemasTunnelMethod","DestinationMysqlSchemasTunnelMethodTunnelMethod","DestinationMysqlTunnelMethod","DestinationOracle","DestinationOracleNoTunnel","DestinationOraclePasswordAuthentication","DestinationOracleSSHKeyAuthentication","DestinationOracleSchemasTunnelMethod","DestinationOracleSchemasTunnelMethodTunnelMethod","DestinationOracleTunnelMethod","DestinationPatchRequest","DestinationPinecone","DestinationPineconeAzureOpenAI","DestinationPineconeByMarkdownHeader","DestinationPineconeByProgrammingLanguage","DestinationPineconeBySeparator","DestinationPineconeCohere","DestinationPineconeFake","DestinationPineconeFieldNameMappingConfigModel","DestinationPineconeIndexing","DestinationPineconeLanguage","DestinationPineconeMode","DestinationPineconeOpenAI","DestinationPineconeOpenAICompatible","DestinationPineconeProcessingConfigModel","DestinationPineconeSchemasEmbeddingEmbedding5Mode","DestinationPineconeSchemasEmbeddingEmbeddingMode","DestinationPineconeSchemasEmbeddingMode","DestinationPineconeSchemasMode","DestinationPineconeSchemasProcessingMode","DestinationPineconeSchemasProcessingTextSplitterMode","DestinationPineconeSchemasProcessingTextSplitterTextSplitterMode","DestinationPostgres","DestinationPostgresMode","DestinationPostgresNoTunnel","DestinationPostgresPasswordAuthentication","DestinationPostgresSSHKeyAuthentication","DestinationPostgresSchemasMode","DestinationPostgresSchemasSSLModeSSLModes6Mode","DestinationPostgresSchemasSSLModeSSLModesMode","DestinationPostgresSchemasSslModeMode","DestinationPostgresSchemasTunnelMethod","DestinationPostgresSchemasTunnelMethodTunnelMethod","DestinationPostgresTunnelMethod","DestinationPubsub","DestinationPutRequest","DestinationQdrant","DestinationQdrantAzureOpenAI","DestinationQdrantByMarkdownHeader","DestinationQdrantByProgrammingLanguage","DestinationQdrantBySeparator","DestinationQdrantCohere","DestinationQdrantFake","DestinationQdrantFieldNameMappingConfigModel","DestinationQdrantIndexing","DestinationQdrantLanguage","DestinationQdrantMode","DestinationQdrantNoAuth","DestinationQdrantOpenAI","DestinationQdrantOpenAICompatible","DestinationQdrantProcessingConfigModel","DestinationQdrantSchemasEmbeddingEmbedding5Mode","DestinationQdrantSchemasEmbeddingEmbeddingMode","DestinationQdrantSchemasEmbeddingMode","DestinationQdrantSchemasIndexingAuthMethodMode","DestinationQdrantSchemasIndexingMode","DestinationQdrantSchemasMode","DestinationQdrantSchemasProcessingMode","DestinationQdrantSchemasProcessingTextSplitterMode","DestinationQdrantSchemasProcessingTextSplitterTextSplitterMode","DestinationRedis","DestinationRedisDisable","DestinationRedisMode","DestinationRedisNoTunnel","DestinationRedisPasswordAuthentication","DestinationRedisSSHKeyAuthentication","DestinationRedisSchemasMode","DestinationRedisSchemasTunnelMethod","DestinationRedisSchemasTunnelMethodTunnelMethod","DestinationRedisTunnelMethod","DestinationRedisVerifyFull","DestinationRedshift","DestinationRedshiftEncryptionType","DestinationRedshiftMethod","DestinationRedshiftNoTunnel","DestinationRedshiftPasswordAuthentication","DestinationRedshiftS3BucketRegion","DestinationRedshiftSSHKeyAuthentication","DestinationRedshiftSchemasMethod","DestinationRedshiftSchemasTunnelMethod","DestinationRedshiftSchemasTunnelMethodTunnelMethod","DestinationRedshiftTunnelMethod","DestinationResponse","DestinationS3","DestinationS3AvroApacheAvro","DestinationS3Bzip2","DestinationS3CSVCommaSeparatedValues","DestinationS3Codec","DestinationS3CompressionType","DestinationS3Deflate","DestinationS3Flattening","DestinationS3FormatType","DestinationS3GZIP","DestinationS3Glue","DestinationS3GlueCompressionType","DestinationS3GlueFormatType","DestinationS3GlueGZIP","DestinationS3GlueJSONLinesNewlineDelimitedJSON","DestinationS3GlueNoCompression","DestinationS3GlueS3BucketRegion","DestinationS3GlueSchemasCompressionType","DestinationS3JSONLinesNewlineDelimitedJSON","DestinationS3NoCompression","DestinationS3ParquetColumnarStorage","DestinationS3S3BucketRegion","DestinationS3SchemasCodec","DestinationS3SchemasCompressionCodec","DestinationS3SchemasCompressionType","DestinationS3SchemasFlattening","DestinationS3SchemasFormatCodec","DestinationS3SchemasFormatCompressionType","DestinationS3SchemasFormatFormatType","DestinationS3SchemasFormatNoCompression","DestinationS3SchemasFormatOutputFormat3Codec","DestinationS3SchemasFormatOutputFormat3CompressionCodecCodec","DestinationS3SchemasFormatOutputFormatCodec","DestinationS3SchemasFormatOutputFormatCompressionType","DestinationS3SchemasFormatOutputFormatFormatType","DestinationS3SchemasFormatType","DestinationS3SchemasGZIP","DestinationS3SchemasNoCompression","DestinationS3Snappy","DestinationS3Xz","DestinationS3Zstandard","DestinationSftpJSON","DestinationSnowflake","DestinationSnowflakeAuthType","DestinationSnowflakeOAuth20","DestinationSnowflakeSchemasAuthType","DestinationSnowflakeSchemasCredentialsAuthType","DestinationSnowflakeSnowflake","DestinationTimeplus","DestinationTypesense","DestinationVectara","DestinationVertica","DestinationVerticaNoTunnel","DestinationVerticaPasswordAuthentication","DestinationVerticaSSHKeyAuthentication","DestinationVerticaSchemasTunnelMethod","DestinationVerticaSchemasTunnelMethodTunnelMethod","DestinationVerticaTunnelMethod","DestinationWeaviate","DestinationWeaviateAPIToken","DestinationWeaviateAzureOpenAI","DestinationWeaviateByMarkdownHeader","DestinationWeaviateByProgrammingLanguage","DestinationWeaviateBySeparator","DestinationWeaviateCohere","DestinationWeaviateFake","DestinationWeaviateFieldNameMappingConfigModel","DestinationWeaviateIndexing","DestinationWeaviateLanguage","DestinationWeaviateMode","DestinationWeaviateOpenAI","DestinationWeaviateOpenAICompatible","DestinationWeaviateProcessingConfigModel","DestinationWeaviateSchemasEmbeddingEmbedding5Mode","DestinationWeaviateSchemasEmbeddingEmbedding6Mode","DestinationWeaviateSchemasEmbeddingEmbedding7Mode","DestinationWeaviateSchemasEmbeddingEmbeddingMode","DestinationWeaviateSchemasEmbeddingMode","DestinationWeaviateSchemasIndexingAuthAuthenticationMode","DestinationWeaviateSchemasIndexingAuthMode","DestinationWeaviateSchemasIndexingMode","DestinationWeaviateSchemasMode","DestinationWeaviateSchemasProcessingMode","DestinationWeaviateSchemasProcessingTextSplitterMode","DestinationWeaviateSchemasProcessingTextSplitterTextSplitterMode","DestinationWeaviateUsernamePassword","DestinationXata","DestinationsResponse","DetailType","DetectChangesWithXminSystemColumn","DevNull","Dimension","Disable","Disabled","DistanceMetric","Dixa","DocArrayHnswSearch","Dockerhub","DocumentFileTypeFormatExperimental","DoubleValue","Dremio","Duckdb","DynamoDBRegion","Dynamodb","E2eTestCloud","EUBasedAccount","Elasticsearch","Emailoctopus","Enabled","EncryptedTrustServerCertificate","EncryptedVerifyCertificate","EncryptionAlgorithm","EncryptionMethod","EncryptionType","EngagementWindowDays","Environment","ExchangeRates","Expression","ExternalTableViaS3","FacebookMarketing","Fake","Faker","Fauna","FieldNameMappingConfigModel","File","FileBasedStreamConfig","FileFormat","FileType","Filter","FilterName","FilterType","Firebolt","Firestore","Flattening","FormatType","FormatTypeWildcard","Freshcaller","Freshdesk","Freshsales","FromCSV","FromField","GCSBucketRegion","GCSGoogleCloudStorage","GCSStaging","GCSTmpFilesAfterwardProcessing","GainsightPx","Gcs","GeographyEnum","GeographyEnumNoDefault","Getlago","Github","GithubCredentials","Gitlab","GitlabCredentials","Glassfrog","GlobalAccount","Gnews","GoogleAds","GoogleAdsCredentials","GoogleAnalyticsDataAPI","GoogleAnalyticsDataAPICredentials","GoogleCredentials","GoogleDirectory","GoogleDrive","GoogleDriveCredentials","GooglePagespeedInsights","GoogleSearchConsole","GoogleSheets","GoogleSheetsCredentials","GoogleWebfonts","GoogleWorkspaceAdminReports","Granularity","GranularityForGeoLocationRegion","GranularityForPeriodicReports","Greenhouse","Gridly","Gzip","HMACKey","HTTPSPublicWeb","Harvest","HarvestCredentials","Header","HeaderDefinitionType","Hubplanner","Hubspot","HubspotCredentials","IAMRole","IAMUser","In","InListFilter","InferenceType","InitiateOauthRequest","InsightConfig","Insightly","Instagram","Instance","Instatus","Int64Value","Intercom","Ip2whois","IssuesStreamExpandWith","Iterable","JSONLinesNewlineDelimitedJSON","Jira","JobCreateRequest","JobResponse","JobStatusEnum","JobTypeEnum","JobsResponse","Jsonl","JsonlFormat","K6Cloud","Keen","KeyPairAuthentication","Kinesis","Klarna","Klaviyo","KustomerSinger","Kyve","LSNCommitBehaviour","Langchain","Language","Launchdarkly","Lemlist","Level","LeverHiring","LeverHiringCredentials","LinkedinAds","LinkedinAdsCredentials","LinkedinPages","Linnworks","Local","LogicalReplicationCDC","LoginPassword","Lokalise","Mailchimp","MailchimpCredentials","Mailgun","MailjetSms","Marketo","Metabase","Method","MicrosoftTeams","MicrosoftTeamsCredentials","Milvus","Mixpanel","Mode","Monday","MondayCredentials","MongoDBAtlas","MongoDBAtlasReplicaSet","Mongodb","MongodbInternalPoc","MongodbV2","Mssql","MultiSchema","MyHours","Mysql","NamespaceDefinitionEnum","NamespaceDefinitionEnumNoDefault","NativeNetworkEncryptionNNE","Netsuite","NoAuth","NoAuthentication","NoCompression","NoEncryption","NoExternalEmbedding","NoTunnel","NonBreakingSchemaUpdatesBehaviorEnum","NonBreakingSchemaUpdatesBehaviorEnumNoDefault","NoneT","Normalization","NormalizationFlattening","NotExpression","Notion","NotionCredentials","Nullable","NumericFilter","Nytimes","OAuth","OAuth20","OAuth20Credentials","OAuth2AccessToken","OAuth2ConfidentialApplication","OAuthActorNames","OAuthInputConfiguration","OauthAuthentication","Okta","Omnisend","Onesignal","OpenAI","OpenAICompatible","Operator","OptionTitle","OptionsList","OrGroup","Oracle","Orb","Orbit","OriginDatacenterOfTheSurveyMonkeyAccount","OutbrainAmplify","Outreach","Parquet","ParquetColumnarStorage","ParquetFormat","ParsingStrategy","PasswordAuthentication","PaypalTransaction","Paystack","Pendo","PeriodUsedForMostPopularStreams","Persistiq","PersonalAccessToken","PexelsAPI","Pinecone","Pinterest","PinterestCredentials","Pipedrive","PivotCategory","Plugin","Pocket","Pokeapi","PokemonName","PolygonStockAPI","Postgres","Posthog","Postmarkapp","Prefer","Preferred","Prestashop","PrivateApp","PrivateToken","ProcessingConfigModel","ProductCatalog","ProjectSecret","Pubsub","PunkAPI","Pypi","Qdrant","Qualaroo","Quickbooks","Railz","ReadChangesUsingBinaryLogCDC","ReadChangesUsingChangeDataCaptureCDC","ReadChangesUsingWriteAheadLogCDC","Recharge","RecommendedManagedTables","Recreation","Recruitee","Recurly","Redis","Redshift","Region","ReplicaSet","ReportConfig","ReportOptions","ReportRecordTypes","ReportingDataObject","Require","Required","Retently","RetentlyCredentials","RkiCovid","Rss","S3","S3AmazonWebServices","S3BucketRegion","S3Glue","SCPSecureCopyProtocol","SFTPSecureFileTransferProtocol","SQLInserts","SSHKeyAuthentication","SSHSecureShell","Salesforce","Salesloft","SandboxAccessToken","SapFieldglass","ScanChangesWithUserDefinedCursor","ScheduleTypeEnum","ScheduleTypeWithBasicEnum","SchemeBasicAuth","SearchCriteria","Secoda","Security","SelfManagedReplicaSet","Sendgrid","Sendinblue","Senseforce","Sentry","SerializationLibrary","ServiceAccount","ServiceAccountKey","ServiceAccountKeyAuthentication","ServiceName","Sftp","SftpBulk","SftpJSON","ShareTypeUsedForMostPopularSharedStream","Shopify","ShopifyCredentials","Shortio","SignInViaGoogleOAuth","SignInViaSlackOAuth","Silent","SingleSchema","SingleStoreAccessToken","Slack","SlackCredentials","Smaily","Smartengage","Smartsheets","SmartsheetsCredentials","SnapchatMarketing","Snappy","Snowflake","SnowflakeCredentials","SonarCloud","SortBy","SourceAha","SourceAircall","SourceAirtable","SourceAirtableAirtable","SourceAirtableAuthMethod","SourceAirtableOAuth20","SourceAirtableSchemasAuthMethod","SourceAlloydb","SourceAlloydbAllow","SourceAlloydbDisable","SourceAlloydbMethod","SourceAlloydbMode","SourceAlloydbNoTunnel","SourceAlloydbPasswordAuthentication","SourceAlloydbPrefer","SourceAlloydbRequire","SourceAlloydbSSHKeyAuthentication","SourceAlloydbSchemasMethod","SourceAlloydbSchemasMode","SourceAlloydbSchemasReplicationMethodMethod","SourceAlloydbSchemasSSLModeSSLModes5Mode","SourceAlloydbSchemasSSLModeSSLModes6Mode","SourceAlloydbSchemasSSLModeSSLModesMode","SourceAlloydbSchemasSslModeMode","SourceAlloydbSchemasTunnelMethod","SourceAlloydbSchemasTunnelMethodTunnelMethod","SourceAlloydbStandard","SourceAlloydbTunnelMethod","SourceAlloydbVerifyCa","SourceAlloydbVerifyFull","SourceAmazonAds","SourceAmazonAdsAmazonAds","SourceAmazonAdsAuthType","SourceAmazonSellerPartner","SourceAmazonSellerPartnerAmazonSellerPartner","SourceAmazonSellerPartnerAuthType","SourceAmazonSqs","SourceAmazonSqsAWSRegion","SourceAmplitude","SourceApifyDataset","SourceAppfollow","SourceAsana","SourceAsanaAsana","SourceAsanaCredentialsTitle","SourceAsanaSchemasCredentialsTitle","SourceAuth0","SourceAuth0SchemasAuthenticationMethod","SourceAuth0SchemasCredentialsAuthenticationMethod","SourceAwsCloudtrail","SourceAzureBlobStorage","SourceAzureBlobStorageAzureBlobStorage","SourceAzureBlobStorageFiletype","SourceAzureBlobStorageHeaderDefinitionType","SourceAzureBlobStorageMode","SourceAzureBlobStorageSchemasFiletype","SourceAzureBlobStorageSchemasHeaderDefinitionType","SourceAzureBlobStorageSchemasStreamsFiletype","SourceAzureBlobStorageSchemasStreamsFormatFiletype","SourceAzureBlobStorageSchemasStreamsFormatFormatFiletype","SourceAzureTable","SourceBambooHr","SourceBigquery","SourceBigqueryBigquery","SourceBingAds","SourceBingAdsBingAds","SourceBraintree","SourceBraintreeEnvironment","SourceBraze","SourceCart","SourceCartAuthType","SourceCartSchemasAuthType","SourceChargebee","SourceChartmogul","SourceClickhouse","SourceClickhouseClickhouse","SourceClickhouseNoTunnel","SourceClickhousePasswordAuthentication","SourceClickhouseSSHKeyAuthentication","SourceClickhouseSchemasTunnelMethod","SourceClickhouseSchemasTunnelMethodTunnelMethod","SourceClickhouseTunnelMethod","SourceClickupAPI","SourceClockify","SourceCloseCom","SourceCoda","SourceCoinAPI","SourceCoinmarketcap","SourceConfigcat","SourceConfluence","SourceConvex","SourceConvexConvex","SourceCreateRequest","SourceDatascope","SourceDelighted","SourceDixa","SourceDockerhub","SourceDremio","SourceDynamodb","SourceDynamodbDynamodb","SourceDynamodbDynamodbRegion","SourceE2eTestCloudSchemasType","SourceE2eTestCloudType","SourceEmailoctopus","SourceExchangeRates","SourceFacebookMarketing","SourceFacebookMarketingFacebookMarketing","SourceFacebookMarketingValidEnums","SourceFaker","SourceFauna","SourceFaunaDeletionMode","SourceFaunaSchemasDeletionMode","SourceFile","SourceFileS3AmazonWebServices","SourceFileSchemasProviderStorage","SourceFileSchemasProviderStorageProvider6Storage","SourceFileSchemasProviderStorageProvider7Storage","SourceFileSchemasProviderStorageProviderStorage","SourceFileSchemasStorage","SourceFileStorage","SourceFirebolt","SourceFireboltFirebolt","SourceFreshcaller","SourceFreshdesk","SourceFreshsales","SourceGCSStreamConfig","SourceGainsightPx","SourceGcs","SourceGcsAutogenerated","SourceGcsCSVFormat","SourceGcsFiletype","SourceGcsFromCSV","SourceGcsGcs","SourceGcsHeaderDefinitionType","SourceGcsInferenceType","SourceGcsSchemasHeaderDefinitionType","SourceGcsSchemasStreamsHeaderDefinitionType","SourceGcsUserProvided","SourceGcsValidationPolicy","SourceGetlago","SourceGithub","SourceGithubGithub","SourceGithubOptionTitle","SourceGithubPersonalAccessToken","SourceGitlab","SourceGitlabAuthType","SourceGitlabGitlab","SourceGitlabOAuth20","SourceGitlabSchemasAuthType","SourceGlassfrog","SourceGnews","SourceGoogleAds","SourceGoogleAdsGoogleAds","SourceGoogleAnalyticsDataAPI","SourceGoogleAnalyticsDataAPIAndGroup","SourceGoogleAnalyticsDataAPIAuthType","SourceGoogleAnalyticsDataAPIBetweenFilter","SourceGoogleAnalyticsDataAPICustomReportConfig","SourceGoogleAnalyticsDataAPIDisabled","SourceGoogleAnalyticsDataAPIDoubleValue","SourceGoogleAnalyticsDataAPIEnabled","SourceGoogleAnalyticsDataAPIExpression","SourceGoogleAnalyticsDataAPIFilter","SourceGoogleAnalyticsDataAPIFilterName","SourceGoogleAnalyticsDataAPIFilterType","SourceGoogleAnalyticsDataAPIGoogleAnalyticsDataAPI","SourceGoogleAnalyticsDataAPIGranularity","SourceGoogleAnalyticsDataAPIInListFilter","SourceGoogleAnalyticsDataAPIInt64Value","SourceGoogleAnalyticsDataAPINotExpression","SourceGoogleAnalyticsDataAPINumericFilter","SourceGoogleAnalyticsDataAPIOrGroup","SourceGoogleAnalyticsDataAPISchemasAuthType","SourceGoogleAnalyticsDataAPISchemasBetweenFilter","SourceGoogleAnalyticsDataAPISchemasCustomReportsArrayBetweenFilter","SourceGoogleAnalyticsDataAPISchemasCustomReportsArrayDimensionFilterBetweenFilter","SourceGoogleAnalyticsDataAPISchemasCustomReportsArrayDimensionFilterDimensionsFilter1DoubleValue","SourceGoogleAnalyticsDataAPISchemasCustomReportsArrayDimensionFilterDimensionsFilter1ExpressionsDoubleValue","SourceGoogleAnalyticsDataAPISchemasCustomReportsArrayDimensionFilterDimensionsFilter1ExpressionsFilterDoubleValue","SourceGoogleAnalyticsDataAPISchemasCustomReportsArrayDimensionFilterDimensionsFilter1ExpressionsFilterFilter4ToValueValueType","SourceGoogleAnalyticsDataAPISchemasCustomReportsArrayDimensionFilterDimensionsFilter1ExpressionsFilterFilter4ValueType","SourceGoogleAnalyticsDataAPISchemasCustomReportsArrayDimensionFilterDimensionsFilter1ExpressionsFilterFilterFilterName","SourceGoogleAnalyticsDataAPISchemasCustomReportsArrayDimensionFilterDimensionsFilter1ExpressionsFilterFilterName","SourceGoogleAnalyticsDataAPISchemasCustomReportsArrayDimensionFilterDimensionsFilter1ExpressionsFilterFilterValueType","SourceGoogleAnalyticsDataAPISchemasCustomReportsArrayDimensionFilterDimensionsFilter1ExpressionsFilterInt64Value","SourceGoogleAnalyticsDataAPISchemasCustomReportsArrayDimensionFilterDimensionsFilter1ExpressionsFilterName","SourceGoogleAnalyticsDataAPISchemasCustomReportsArrayDimensionFilterDimensionsFilter1ExpressionsFilterValueType","SourceGoogleAnalyticsDataAPISchemasCustomReportsArrayDimensionFilterDimensionsFilter1ExpressionsInt64Value","SourceGoogleAnalyticsDataAPISchemasCustomReportsArrayDimensionFilterDimensionsFilter1ExpressionsValidEnums","SourceGoogleAnalyticsDataAPISchemasCustomReportsArrayDimensionFilterDimensionsFilter1ExpressionsValueType","SourceGoogleAnalyticsDataAPISchemasCustomReportsArrayDimensionFilterDimensionsFilter1FilterName","SourceGoogleAnalyticsDataAPISchemasCustomReportsArrayDimensionFilterDimensionsFilter1Int64Value","SourceGoogleAnalyticsDataAPISchemasCustomReportsArrayDimensionFilterDimensionsFilter1ValidEnums","SourceGoogleAnalyticsDataAPISchemasCustomReportsArrayDimensionFilterDimensionsFilter1ValueType","SourceGoogleAnalyticsDataAPISchemasCustomReportsArrayDimensionFilterDimensionsFilter2DoubleValue","SourceGoogleAnalyticsDataAPISchemasCustomReportsArrayDimensionFilterDimensionsFilter2ExpressionsFilterFilter4ToValueValueType","SourceGoogleAnalyticsDataAPISchemasCustomReportsArrayDimensionFilterDimensionsFilter2ExpressionsFilterFilter4ValueType","SourceGoogleAnalyticsDataAPISchemasCustomReportsArrayDimensionFilterDimensionsFilter2ExpressionsFilterFilterValueType","SourceGoogleAnalyticsDataAPISchemasCustomReportsArrayDimensionFilterDimensionsFilter2ExpressionsFilterName","SourceGoogleAnalyticsDataAPISchemasCustomReportsArrayDimensionFilterDimensionsFilter2ExpressionsFilterValueType","SourceGoogleAnalyticsDataAPISchemasCustomReportsArrayDimensionFilterDimensionsFilter2ExpressionsValueType","SourceGoogleAnalyticsDataAPISchemasCustomReportsArrayDimensionFilterDimensionsFilter2FilterName","SourceGoogleAnalyticsDataAPISchemasCustomReportsArrayDimensionFilterDimensionsFilter2Int64Value","SourceGoogleAnalyticsDataAPISchemasCustomReportsArrayDimensionFilterDimensionsFilter2ValidEnums","SourceGoogleAnalyticsDataAPISchemasCustomReportsArrayDimensionFilterDimensionsFilter2ValueType","SourceGoogleAnalyticsDataAPISchemasCustomReportsArrayDimensionFilterDimensionsFilter3DoubleValue","SourceGoogleAnalyticsDataAPISchemasCustomReportsArrayDimensionFilterDimensionsFilter3ExpressionDoubleValue","SourceGoogleAnalyticsDataAPISchemasCustomReportsArrayDimensionFilterDimensionsFilter3ExpressionFilterDoubleValue","SourceGoogleAnalyticsDataAPISchemasCustomReportsArrayDimensionFilterDimensionsFilter3ExpressionFilterFilter4ToValueValueType","SourceGoogleAnalyticsDataAPISchemasCustomReportsArrayDimensionFilterDimensionsFilter3ExpressionFilterFilter4ValueType","SourceGoogleAnalyticsDataAPISchemasCustomReportsArrayDimensionFilterDimensionsFilter3ExpressionFilterFilterFilterName","SourceGoogleAnalyticsDataAPISchemasCustomReportsArrayDimensionFilterDimensionsFilter3ExpressionFilterFilterName","SourceGoogleAnalyticsDataAPISchemasCustomReportsArrayDimensionFilterDimensionsFilter3ExpressionFilterFilterValueType","SourceGoogleAnalyticsDataAPISchemasCustomReportsArrayDimensionFilterDimensionsFilter3ExpressionFilterInt64Value","SourceGoogleAnalyticsDataAPISchemasCustomReportsArrayDimensionFilterDimensionsFilter3ExpressionFilterName","SourceGoogleAnalyticsDataAPISchemasCustomReportsArrayDimensionFilterDimensionsFilter3ExpressionFilterValueType","SourceGoogleAnalyticsDataAPISchemasCustomReportsArrayDimensionFilterDimensionsFilter3ExpressionInt64Value","SourceGoogleAnalyticsDataAPISchemasCustomReportsArrayDimensionFilterDimensionsFilter3ExpressionValueType","SourceGoogleAnalyticsDataAPISchemasCustomReportsArrayDimensionFilterDimensionsFilter3FilterName","SourceGoogleAnalyticsDataAPISchemasCustomReportsArrayDimensionFilterDimensionsFilter3Int64Value","SourceGoogleAnalyticsDataAPISchemasCustomReportsArrayDimensionFilterDimensionsFilter3ValidEnums","SourceGoogleAnalyticsDataAPISchemasCustomReportsArrayDimensionFilterDimensionsFilter3ValueType","SourceGoogleAnalyticsDataAPISchemasCustomReportsArrayDimensionFilterDimensionsFilterDoubleValue","SourceGoogleAnalyticsDataAPISchemasCustomReportsArrayDimensionFilterDimensionsFilterFilterName","SourceGoogleAnalyticsDataAPISchemasCustomReportsArrayDimensionFilterDimensionsFilterInt64Value","SourceGoogleAnalyticsDataAPISchemasCustomReportsArrayDimensionFilterDimensionsFilterValidEnums","SourceGoogleAnalyticsDataAPISchemasCustomReportsArrayDimensionFilterDimensionsFilterValueType","SourceGoogleAnalyticsDataAPISchemasCustomReportsArrayDimensionFilterDoubleValue","SourceGoogleAnalyticsDataAPISchemasCustomReportsArrayDimensionFilterFilterName","SourceGoogleAnalyticsDataAPISchemasCustomReportsArrayDimensionFilterInListFilter","SourceGoogleAnalyticsDataAPISchemasCustomReportsArrayDimensionFilterInt64Value","SourceGoogleAnalyticsDataAPISchemasCustomReportsArrayDimensionFilterNumericFilter","SourceGoogleAnalyticsDataAPISchemasCustomReportsArrayDimensionFilterStringFilter","SourceGoogleAnalyticsDataAPISchemasCustomReportsArrayDimensionFilterValidEnums","SourceGoogleAnalyticsDataAPISchemasCustomReportsArrayDimensionFilterValueType","SourceGoogleAnalyticsDataAPISchemasCustomReportsArrayDoubleValue","SourceGoogleAnalyticsDataAPISchemasCustomReportsArrayEnabled","SourceGoogleAnalyticsDataAPISchemasCustomReportsArrayExpression","SourceGoogleAnalyticsDataAPISchemasCustomReportsArrayFilterName","SourceGoogleAnalyticsDataAPISchemasCustomReportsArrayFilterType","SourceGoogleAnalyticsDataAPISchemasCustomReportsArrayInListFilter","SourceGoogleAnalyticsDataAPISchemasCustomReportsArrayInt64Value","SourceGoogleAnalyticsDataAPISchemasCustomReportsArrayMetricFilterBetweenFilter","SourceGoogleAnalyticsDataAPISchemasCustomReportsArrayMetricFilterDoubleValue","SourceGoogleAnalyticsDataAPISchemasCustomReportsArrayMetricFilterExpression","SourceGoogleAnalyticsDataAPISchemasCustomReportsArrayMetricFilterFilterName","SourceGoogleAnalyticsDataAPISchemasCustomReportsArrayMetricFilterFilterType","SourceGoogleAnalyticsDataAPISchemasCustomReportsArrayMetricFilterInListFilter","SourceGoogleAnalyticsDataAPISchemasCustomReportsArrayMetricFilterInt64Value","SourceGoogleAnalyticsDataAPISchemasCustomReportsArrayMetricFilterMetricsFilter1DoubleValue","SourceGoogleAnalyticsDataAPISchemasCustomReportsArrayMetricFilterMetricsFilter1ExpressionsDoubleValue","SourceGoogleAnalyticsDataAPISchemasCustomReportsArrayMetricFilterMetricsFilter1ExpressionsFilterDoubleValue","SourceGoogleAnalyticsDataAPISchemasCustomReportsArrayMetricFilterMetricsFilter1ExpressionsFilterFilter3ValueType","SourceGoogleAnalyticsDataAPISchemasCustomReportsArrayMetricFilterMetricsFilter1ExpressionsFilterFilter3ValueValueType","SourceGoogleAnalyticsDataAPISchemasCustomReportsArrayMetricFilterMetricsFilter1ExpressionsFilterFilterFilterName","SourceGoogleAnalyticsDataAPISchemasCustomReportsArrayMetricFilterMetricsFilter1ExpressionsFilterFilterName","SourceGoogleAnalyticsDataAPISchemasCustomReportsArrayMetricFilterMetricsFilter1ExpressionsFilterFilterValueType","SourceGoogleAnalyticsDataAPISchemasCustomReportsArrayMetricFilterMetricsFilter1ExpressionsFilterInt64Value","SourceGoogleAnalyticsDataAPISchemasCustomReportsArrayMetricFilterMetricsFilter1ExpressionsFilterName","SourceGoogleAnalyticsDataAPISchemasCustomReportsArrayMetricFilterMetricsFilter1ExpressionsFilterValueType","SourceGoogleAnalyticsDataAPISchemasCustomReportsArrayMetricFilterMetricsFilter1ExpressionsInt64Value","SourceGoogleAnalyticsDataAPISchemasCustomReportsArrayMetricFilterMetricsFilter1ExpressionsValueType","SourceGoogleAnalyticsDataAPISchemasCustomReportsArrayMetricFilterMetricsFilter1FilterName","SourceGoogleAnalyticsDataAPISchemasCustomReportsArrayMetricFilterMetricsFilter1Int64Value","SourceGoogleAnalyticsDataAPISchemasCustomReportsArrayMetricFilterMetricsFilter1ValidEnums","SourceGoogleAnalyticsDataAPISchemasCustomReportsArrayMetricFilterMetricsFilter1ValueType","SourceGoogleAnalyticsDataAPISchemasCustomReportsArrayMetricFilterMetricsFilter2DoubleValue","SourceGoogleAnalyticsDataAPISchemasCustomReportsArrayMetricFilterMetricsFilter2ExpressionsDoubleValue","SourceGoogleAnalyticsDataAPISchemasCustomReportsArrayMetricFilterMetricsFilter2ExpressionsFilterDoubleValue","SourceGoogleAnalyticsDataAPISchemasCustomReportsArrayMetricFilterMetricsFilter2ExpressionsFilterFilter4ToValueValueType","SourceGoogleAnalyticsDataAPISchemasCustomReportsArrayMetricFilterMetricsFilter2ExpressionsFilterFilter4ValueType","SourceGoogleAnalyticsDataAPISchemasCustomReportsArrayMetricFilterMetricsFilter2ExpressionsFilterFilterFilterName","SourceGoogleAnalyticsDataAPISchemasCustomReportsArrayMetricFilterMetricsFilter2ExpressionsFilterFilterName","SourceGoogleAnalyticsDataAPISchemasCustomReportsArrayMetricFilterMetricsFilter2ExpressionsFilterFilterValueType","SourceGoogleAnalyticsDataAPISchemasCustomReportsArrayMetricFilterMetricsFilter2ExpressionsFilterInt64Value","SourceGoogleAnalyticsDataAPISchemasCustomReportsArrayMetricFilterMetricsFilter2ExpressionsFilterName","SourceGoogleAnalyticsDataAPISchemasCustomReportsArrayMetricFilterMetricsFilter2ExpressionsFilterValueType","SourceGoogleAnalyticsDataAPISchemasCustomReportsArrayMetricFilterMetricsFilter2ExpressionsInt64Value","SourceGoogleAnalyticsDataAPISchemasCustomReportsArrayMetricFilterMetricsFilter2ExpressionsValidEnums","SourceGoogleAnalyticsDataAPISchemasCustomReportsArrayMetricFilterMetricsFilter2ExpressionsValueType","SourceGoogleAnalyticsDataAPISchemasCustomReportsArrayMetricFilterMetricsFilter2FilterName","SourceGoogleAnalyticsDataAPISchemasCustomReportsArrayMetricFilterMetricsFilter2Int64Value","SourceGoogleAnalyticsDataAPISchemasCustomReportsArrayMetricFilterMetricsFilter2ValidEnums","SourceGoogleAnalyticsDataAPISchemasCustomReportsArrayMetricFilterMetricsFilter2ValueType","SourceGoogleAnalyticsDataAPISchemasCustomReportsArrayMetricFilterMetricsFilter3BetweenFilter","SourceGoogleAnalyticsDataAPISchemasCustomReportsArrayMetricFilterMetricsFilter3DoubleValue","SourceGoogleAnalyticsDataAPISchemasCustomReportsArrayMetricFilterMetricsFilter3ExpressionDoubleValue","SourceGoogleAnalyticsDataAPISchemasCustomReportsArrayMetricFilterMetricsFilter3ExpressionFilterDoubleValue","SourceGoogleAnalyticsDataAPISchemasCustomReportsArrayMetricFilterMetricsFilter3ExpressionFilterFilter4ToValueValueType","SourceGoogleAnalyticsDataAPISchemasCustomReportsArrayMetricFilterMetricsFilter3ExpressionFilterFilter4ValueType","SourceGoogleAnalyticsDataAPISchemasCustomReportsArrayMetricFilterMetricsFilter3ExpressionFilterFilterFilterName","SourceGoogleAnalyticsDataAPISchemasCustomReportsArrayMetricFilterMetricsFilter3ExpressionFilterFilterName","SourceGoogleAnalyticsDataAPISchemasCustomReportsArrayMetricFilterMetricsFilter3ExpressionFilterFilterValueType","SourceGoogleAnalyticsDataAPISchemasCustomReportsArrayMetricFilterMetricsFilter3ExpressionFilterInt64Value","SourceGoogleAnalyticsDataAPISchemasCustomReportsArrayMetricFilterMetricsFilter3ExpressionFilterName","SourceGoogleAnalyticsDataAPISchemasCustomReportsArrayMetricFilterMetricsFilter3ExpressionFilterValueType","SourceGoogleAnalyticsDataAPISchemasCustomReportsArrayMetricFilterMetricsFilter3ExpressionInt64Value","SourceGoogleAnalyticsDataAPISchemasCustomReportsArrayMetricFilterMetricsFilter3ExpressionValidEnums","SourceGoogleAnalyticsDataAPISchemasCustomReportsArrayMetricFilterMetricsFilter3ExpressionValueType","SourceGoogleAnalyticsDataAPISchemasCustomReportsArrayMetricFilterMetricsFilter3FilterName","SourceGoogleAnalyticsDataAPISchemasCustomReportsArrayMetricFilterMetricsFilter3FilterType","SourceGoogleAnalyticsDataAPISchemasCustomReportsArrayMetricFilterMetricsFilter3InListFilter","SourceGoogleAnalyticsDataAPISchemasCustomReportsArrayMetricFilterMetricsFilter3Int64Value","SourceGoogleAnalyticsDataAPISchemasCustomReportsArrayMetricFilterMetricsFilter3NumericFilter","SourceGoogleAnalyticsDataAPISchemasCustomReportsArrayMetricFilterMetricsFilter3StringFilter","SourceGoogleAnalyticsDataAPISchemasCustomReportsArrayMetricFilterMetricsFilter3ValidEnums","SourceGoogleAnalyticsDataAPISchemasCustomReportsArrayMetricFilterMetricsFilter3ValueType","SourceGoogleAnalyticsDataAPISchemasCustomReportsArrayMetricFilterMetricsFilter4FilterFilter4ValueType","SourceGoogleAnalyticsDataAPISchemasCustomReportsArrayMetricFilterMetricsFilter4FilterFilterName","SourceGoogleAnalyticsDataAPISchemasCustomReportsArrayMetricFilterMetricsFilter4FilterFilterValueType","SourceGoogleAnalyticsDataAPISchemasCustomReportsArrayMetricFilterMetricsFilter4FilterName","SourceGoogleAnalyticsDataAPISchemasCustomReportsArrayMetricFilterMetricsFilter4FilterType","SourceGoogleAnalyticsDataAPISchemasCustomReportsArrayMetricFilterMetricsFilter4FilterValueType","SourceGoogleAnalyticsDataAPISchemasCustomReportsArrayMetricFilterMetricsFilter4ValueType","SourceGoogleAnalyticsDataAPISchemasCustomReportsArrayMetricFilterMetricsFilterBetweenFilter","SourceGoogleAnalyticsDataAPISchemasCustomReportsArrayMetricFilterMetricsFilterDoubleValue","SourceGoogleAnalyticsDataAPISchemasCustomReportsArrayMetricFilterMetricsFilterExpression","SourceGoogleAnalyticsDataAPISchemasCustomReportsArrayMetricFilterMetricsFilterFilterName","SourceGoogleAnalyticsDataAPISchemasCustomReportsArrayMetricFilterMetricsFilterFilterType","SourceGoogleAnalyticsDataAPISchemasCustomReportsArrayMetricFilterMetricsFilterInListFilter","SourceGoogleAnalyticsDataAPISchemasCustomReportsArrayMetricFilterMetricsFilterInt64Value","SourceGoogleAnalyticsDataAPISchemasCustomReportsArrayMetricFilterMetricsFilterNumericFilter","SourceGoogleAnalyticsDataAPISchemasCustomReportsArrayMetricFilterMetricsFilterStringFilter","SourceGoogleAnalyticsDataAPISchemasCustomReportsArrayMetricFilterMetricsFilterValidEnums","SourceGoogleAnalyticsDataAPISchemasCustomReportsArrayMetricFilterMetricsFilterValueType","SourceGoogleAnalyticsDataAPISchemasCustomReportsArrayMetricFilterNumericFilter","SourceGoogleAnalyticsDataAPISchemasCustomReportsArrayMetricFilterStringFilter","SourceGoogleAnalyticsDataAPISchemasCustomReportsArrayMetricFilterValidEnums","SourceGoogleAnalyticsDataAPISchemasCustomReportsArrayMetricFilterValueType","SourceGoogleAnalyticsDataAPISchemasCustomReportsArrayNumericFilter","SourceGoogleAnalyticsDataAPISchemasCustomReportsArrayStringFilter","SourceGoogleAnalyticsDataAPISchemasCustomReportsArrayValidEnums","SourceGoogleAnalyticsDataAPISchemasCustomReportsArrayValueType","SourceGoogleAnalyticsDataAPISchemasDoubleValue","SourceGoogleAnalyticsDataAPISchemasEnabled","SourceGoogleAnalyticsDataAPISchemasExpression","SourceGoogleAnalyticsDataAPISchemasFilterName","SourceGoogleAnalyticsDataAPISchemasFilterType","SourceGoogleAnalyticsDataAPISchemasInListFilter","SourceGoogleAnalyticsDataAPISchemasInt64Value","SourceGoogleAnalyticsDataAPISchemasNumericFilter","SourceGoogleAnalyticsDataAPISchemasStringFilter","SourceGoogleAnalyticsDataAPISchemasValidEnums","SourceGoogleAnalyticsDataAPISchemasValueType","SourceGoogleAnalyticsDataAPIStringFilter","SourceGoogleAnalyticsDataAPIValidEnums","SourceGoogleAnalyticsDataAPIValueType","SourceGoogleDirectory","SourceGoogleDirectoryCredentialsTitle","SourceGoogleDirectorySchemasCredentialsTitle","SourceGoogleDrive","SourceGoogleDriveAuthType","SourceGoogleDriveAuthenticateViaGoogleOAuth","SourceGoogleDriveAutogenerated","SourceGoogleDriveAvroFormat","SourceGoogleDriveCSVFormat","SourceGoogleDriveDocumentFileTypeFormatExperimental","SourceGoogleDriveFileBasedStreamConfig","SourceGoogleDriveFiletype","SourceGoogleDriveFromCSV","SourceGoogleDriveGoogleDrive","SourceGoogleDriveHeaderDefinitionType","SourceGoogleDriveJsonlFormat","SourceGoogleDriveLocal","SourceGoogleDriveMode","SourceGoogleDriveParquetFormat","SourceGoogleDriveParsingStrategy","SourceGoogleDriveSchemasAuthType","SourceGoogleDriveSchemasFiletype","SourceGoogleDriveSchemasHeaderDefinitionType","SourceGoogleDriveSchemasStreamsFiletype","SourceGoogleDriveSchemasStreamsFormatFiletype","SourceGoogleDriveSchemasStreamsFormatFormatFiletype","SourceGoogleDriveSchemasStreamsHeaderDefinitionType","SourceGoogleDriveServiceAccountKeyAuthentication","SourceGoogleDriveUserProvided","SourceGoogleDriveValidationPolicy","SourceGooglePagespeedInsights","SourceGoogleSearchConsole","SourceGoogleSearchConsoleAuthType","SourceGoogleSearchConsoleCustomReportConfig","SourceGoogleSearchConsoleGoogleSearchConsole","SourceGoogleSearchConsoleOAuth","SourceGoogleSearchConsoleSchemasAuthType","SourceGoogleSearchConsoleServiceAccountKeyAuthentication","SourceGoogleSearchConsoleValidEnums","SourceGoogleSheets","SourceGoogleSheetsAuthType","SourceGoogleSheetsAuthenticateViaGoogleOAuth","SourceGoogleSheetsGoogleSheets","SourceGoogleSheetsSchemasAuthType","SourceGoogleSheetsServiceAccountKeyAuthentication","SourceGoogleWebfonts","SourceGoogleWorkspaceAdminReports","SourceGreenhouse","SourceGridly","SourceHarvest","SourceHarvestAuthType","SourceHarvestAuthenticateWithPersonalAccessToken","SourceHarvestHarvest","SourceHarvestSchemasAuthType","SourceHubplanner","SourceHubspot","SourceHubspotAuthType","SourceHubspotHubspot","SourceHubspotOAuth","SourceHubspotSchemasAuthType","SourceInsightly","SourceInstagram","SourceInstagramInstagram","SourceInstatus","SourceIntercom","SourceIntercomIntercom","SourceIp2whois","SourceIterable","SourceJira","SourceK6Cloud","SourceKlarna","SourceKlarnaRegion","SourceKlaviyo","SourceKustomerSinger","SourceKyve","SourceLaunchdarkly","SourceLemlist","SourceLeverHiring","SourceLeverHiringAuthType","SourceLeverHiringEnvironment","SourceLeverHiringLeverHiring","SourceLeverHiringSchemasAuthType","SourceLinkedinAds","SourceLinkedinAdsAuthMethod","SourceLinkedinAdsLinkedinAds","SourceLinkedinAdsOAuth20","SourceLinkedinAdsSchemasAuthMethod","SourceLinkedinPages","SourceLinkedinPagesAccessToken","SourceLinkedinPagesAuthMethod","SourceLinkedinPagesOAuth20","SourceLinkedinPagesSchemasAuthMethod","SourceLinnworks","SourceLokalise","SourceMailchimp","SourceMailchimpAuthType","SourceMailchimpMailchimp","SourceMailchimpOAuth20","SourceMailchimpSchemasAuthType","SourceMailgun","SourceMailjetSms","SourceMarketo","SourceMetabase","SourceMicrosoftTeams","SourceMicrosoftTeamsAuthType","SourceMicrosoftTeamsMicrosoftTeams","SourceMicrosoftTeamsSchemasAuthType","SourceMixpanel","SourceMixpanelOptionTitle","SourceMixpanelRegion","SourceMixpanelSchemasOptionTitle","SourceMonday","SourceMondayAuthType","SourceMondayMonday","SourceMondayOAuth20","SourceMondaySchemasAuthType","SourceMongodbInternalPoc","SourceMongodbV2","SourceMongodbV2ClusterType","SourceMongodbV2SchemasClusterType","SourceMssql","SourceMssqlEncryptedTrustServerCertificate","SourceMssqlEncryptedVerifyCertificate","SourceMssqlMethod","SourceMssqlMssql","SourceMssqlNoTunnel","SourceMssqlPasswordAuthentication","SourceMssqlSSHKeyAuthentication","SourceMssqlSchemasMethod","SourceMssqlSchemasSSLMethodSSLMethodSSLMethod","SourceMssqlSchemasSslMethod","SourceMssqlSchemasSslMethodSslMethod","SourceMssqlSchemasTunnelMethod","SourceMssqlSchemasTunnelMethodTunnelMethod","SourceMssqlTunnelMethod","SourceMyHours","SourceMysql","SourceMysqlMethod","SourceMysqlMode","SourceMysqlMysql","SourceMysqlNoTunnel","SourceMysqlPasswordAuthentication","SourceMysqlSSHKeyAuthentication","SourceMysqlScanChangesWithUserDefinedCursor","SourceMysqlSchemasMethod","SourceMysqlSchemasMode","SourceMysqlSchemasSSLModeSSLModesMode","SourceMysqlSchemasSslModeMode","SourceMysqlSchemasTunnelMethod","SourceMysqlSchemasTunnelMethodTunnelMethod","SourceMysqlTunnelMethod","SourceMysqlVerifyCA","SourceNetsuite","SourceNotion","SourceNotionAccessToken","SourceNotionAuthType","SourceNotionNotion","SourceNotionOAuth20","SourceNotionSchemasAuthType","SourceNytimes","SourceOkta","SourceOktaAPIToken","SourceOktaAuthType","SourceOktaOAuth20","SourceOktaSchemasAuthType","SourceOmnisend","SourceOnesignal","SourceOracle","SourceOracleConnectionType","SourceOracleEncryptionMethod","SourceOracleNoTunnel","SourceOracleOracle","SourceOraclePasswordAuthentication","SourceOracleSSHKeyAuthentication","SourceOracleSchemasTunnelMethod","SourceOracleSchemasTunnelMethodTunnelMethod","SourceOracleTunnelMethod","SourceOrb","SourceOrbit","SourceOutbrainAmplify","SourceOutbrainAmplifyAccessToken","SourceOutbrainAmplifyUsernamePassword","SourceOutreach","SourcePatchRequest","SourcePaypalTransaction","SourcePaystack","SourcePendo","SourcePersistiq","SourcePexelsAPI","SourcePinterest","SourcePinterestAuthMethod","SourcePinterestLevel","SourcePinterestPinterest","SourcePinterestSchemasValidEnums","SourcePinterestValidEnums","SourcePipedrive","SourcePocket","SourcePocketSortBy","SourcePokeapi","SourcePolygonStockAPI","SourcePostgres","SourcePostgresAllow","SourcePostgresDisable","SourcePostgresLSNCommitBehaviour","SourcePostgresMethod","SourcePostgresMode","SourcePostgresNoTunnel","SourcePostgresPasswordAuthentication","SourcePostgresPlugin","SourcePostgresPostgres","SourcePostgresPrefer","SourcePostgresRequire","SourcePostgresSSHKeyAuthentication","SourcePostgresScanChangesWithUserDefinedCursor","SourcePostgresSchemasMethod","SourcePostgresSchemasMode","SourcePostgresSchemasReplicationMethodMethod","SourcePostgresSchemasSSLModeSSLModes5Mode","SourcePostgresSchemasSSLModeSSLModes6Mode","SourcePostgresSchemasSSLModeSSLModesMode","SourcePostgresSchemasSslModeMode","SourcePostgresSchemasTunnelMethod","SourcePostgresSchemasTunnelMethodTunnelMethod","SourcePostgresTunnelMethod","SourcePostgresVerifyCa","SourcePostgresVerifyFull","SourcePosthog","SourcePostmarkapp","SourcePrestashop","SourcePunkAPI","SourcePutRequest","SourcePypi","SourceQualaroo","SourceQuickbooks","SourceQuickbooksAuthType","SourceQuickbooksOAuth20","SourceRailz","SourceRecharge","SourceRecreation","SourceRecruitee","SourceRecurly","SourceRedshift","SourceRedshiftRedshift","SourceResponse","SourceRetently","SourceRetentlyAuthType","SourceRetentlyRetently","SourceRetentlySchemasAuthType","SourceRkiCovid","SourceRss","SourceS3","SourceS3Autogenerated","SourceS3AvroFormat","SourceS3CSVFormat","SourceS3DocumentFileTypeFormatExperimental","SourceS3FileBasedStreamConfig","SourceS3Filetype","SourceS3FromCSV","SourceS3HeaderDefinitionType","SourceS3InferenceType","SourceS3JsonlFormat","SourceS3Local","SourceS3Mode","SourceS3ParquetFormat","SourceS3ParsingStrategy","SourceS3S3","SourceS3SchemasFiletype","SourceS3SchemasFormatFileFormatFiletype","SourceS3SchemasFormatFiletype","SourceS3SchemasHeaderDefinitionType","SourceS3SchemasStreamsFiletype","SourceS3SchemasStreamsFormatFiletype","SourceS3SchemasStreamsFormatFormat4Filetype","SourceS3SchemasStreamsFormatFormat5Filetype","SourceS3SchemasStreamsFormatFormatFiletype","SourceS3SchemasStreamsHeaderDefinitionType","SourceS3UserProvided","SourceS3ValidationPolicy","SourceSalesforce","SourceSalesforceSalesforce","SourceSalesloft","SourceSalesloftAuthType","SourceSalesloftSchemasAuthType","SourceSapFieldglass","SourceSecoda","SourceSendgrid","SourceSendinblue","SourceSenseforce","SourceSentry","SourceSftp","SourceSftpAuthMethod","SourceSftpBulk","SourceSftpPasswordAuthentication","SourceSftpSSHKeyAuthentication","SourceSftpSchemasAuthMethod","SourceShopify","SourceShopifyAuthMethod","SourceShopifyOAuth20","SourceShopifySchemasAuthMethod","SourceShopifyShopify","SourceShortio","SourceSlack","SourceSlackAPIToken","SourceSlackOptionTitle","SourceSlackSchemasOptionTitle","SourceSlackSlack","SourceSmaily","SourceSmartengage","SourceSmartsheets","SourceSmartsheetsAuthType","SourceSmartsheetsOAuth20","SourceSmartsheetsSchemasAuthType","SourceSmartsheetsSmartsheets","SourceSnapchatMarketing","SourceSnapchatMarketingSnapchatMarketing","SourceSnowflake","SourceSnowflakeAuthType","SourceSnowflakeOAuth20","SourceSnowflakeSchemasAuthType","SourceSnowflakeSnowflake","SourceSnowflakeUsernameAndPassword","SourceSonarCloud","SourceSpacexAPI","SourceSquare","SourceSquareAPIKey","SourceSquareAuthType","SourceSquareSchemasAuthType","SourceSquareSquare","SourceStrava","SourceStravaAuthType","SourceStravaStrava","SourceStripe","SourceSurveySparrow","SourceSurveySparrowURLBase","SourceSurveymonkey","SourceSurveymonkeyAuthMethod","SourceSurveymonkeySurveymonkey","SourceTempo","SourceTheGuardianAPI","SourceTiktokMarketing","SourceTiktokMarketingAuthType","SourceTiktokMarketingOAuth20","SourceTiktokMarketingSchemasAuthType","SourceTiktokMarketingTiktokMarketing","SourceTrello","SourceTrustpilot","SourceTrustpilotAPIKey","SourceTrustpilotAuthType","SourceTrustpilotOAuth20","SourceTrustpilotSchemasAuthType","SourceTvmazeSchedule","SourceTwilio","SourceTwilioTaskrouter","SourceTwitter","SourceTypeform","SourceTypeformAuthType","SourceTypeformOAuth20","SourceTypeformPrivateToken","SourceTypeformSchemasAuthType","SourceTypeformTypeform","SourceUsCensus","SourceVantage","SourceWebflow","SourceWhiskyHunter","SourceWikipediaPageviews","SourceWoocommerce","SourceXkcd","SourceYandexMetrica","SourceYotpo","SourceYoutubeAnalytics","SourceYoutubeAnalyticsYoutubeAnalytics","SourceZendeskChat","SourceZendeskChatAccessToken","SourceZendeskChatCredentials","SourceZendeskChatOAuth20","SourceZendeskChatSchemasCredentials","SourceZendeskChatZendeskChat","SourceZendeskSell","SourceZendeskSunshine","SourceZendeskSunshineAPIToken","SourceZendeskSunshineAuthMethod","SourceZendeskSunshineOAuth20","SourceZendeskSunshineSchemasAuthMethod","SourceZendeskSunshineZendeskSunshine","SourceZendeskSupport","SourceZendeskSupportAPIToken","SourceZendeskSupportCredentials","SourceZendeskSupportOAuth20","SourceZendeskSupportSchemasCredentials","SourceZendeskSupportZendeskSupport","SourceZendeskTalk","SourceZendeskTalkAPIToken","SourceZendeskTalkAuthType","SourceZendeskTalkOAuth20","SourceZendeskTalkSchemasAuthType","SourceZendeskTalkZendeskTalk","SourceZenloop","SourceZohoCrm","SourceZohoCrmEnvironment","SourceZoom","SourceZuora","SourcesResponse","SpacexAPI","Square","SquareCredentials","StandaloneMongoDbInstance","Standard","StandardInserts","StandardXmin","State","StateFilter","Status","Storage","Strategies","Strava","StreamConfiguration","StreamConfigurations","StreamName","StreamProperties","StreamPropertiesResponse","StreamsCriteria","StringFilter","Stripe","SurveyMonkeyAuthorizationMethod","SurveySparrow","Surveymonkey","SurveymonkeyCredentials","SystemIDSID","TLSEncryptedVerifyCertificate","Tempo","TenantEndpointLocation","TestDestinationType","TheGuardianAPI","TiktokMarketing","TiktokMarketingCredentials","TimeGranularity","Timeplus","TopHeadlinesTopic","TransformationQueryRunType","Trello","Trustpilot","TunnelMethod","TvmazeSchedule","Twilio","TwilioTaskrouter","Twitter","Type","Typeform","TypeformCredentials","Typesense","URLBase","Unencrypted","UnexpectedFieldBehavior","UsCensus","UserProvided","UsernameAndPassword","UsernamePassword","ValidActionBreakdowns","ValidBreakdowns","ValidationPolicy","Validenums","ValueType","Vantage","Vectara","VerifyCa","VerifyFull","VerifyIdentity","Vertica","ViewWindowDays","Weaviate","Webflow","WhiskyHunter","WikipediaPageviews","Woocommerce","WorkspaceCreateRequest","WorkspaceOAuthCredentialsRequest","WorkspaceResponse","WorkspaceUpdateRequest","WorkspacesResponse","Xata","Xkcd","Xz","YandexMetrica","Yotpo","YoutubeAnalytics","YoutubeAnalyticsCredentials","ZendeskChat","ZendeskChatCredentials","ZendeskSell","ZendeskSunshine","ZendeskSunshineCredentials","ZendeskSupport","ZendeskSupportCredentials","ZendeskTalk","ZendeskTalkCredentials","Zenloop","ZohoCRMEdition","ZohoCrm","Zoom","Zstandard","Zuora"]
|
{airbyte-api-0.44.2 → airbyte-api-0.44.3}/src/airbyte/models/shared/destination_aws_datalake.py
RENAMED
|
@@ -93,31 +93,39 @@ class ChooseHowToPartitionData(str, Enum):
|
|
|
93
93
|
class S3BucketRegion(str, Enum):
|
|
94
94
|
r"""The region of the S3 bucket. See <a href=\\"https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/using-regions-availability-zones.html#concepts-available-regions\\">here</a> for all region codes."""
|
|
95
95
|
UNKNOWN = ''
|
|
96
|
-
US_EAST_1 = 'us-east-1'
|
|
97
|
-
US_EAST_2 = 'us-east-2'
|
|
98
|
-
US_WEST_1 = 'us-west-1'
|
|
99
|
-
US_WEST_2 = 'us-west-2'
|
|
100
96
|
AF_SOUTH_1 = 'af-south-1'
|
|
101
97
|
AP_EAST_1 = 'ap-east-1'
|
|
102
|
-
AP_SOUTH_1 = 'ap-south-1'
|
|
103
98
|
AP_NORTHEAST_1 = 'ap-northeast-1'
|
|
104
99
|
AP_NORTHEAST_2 = 'ap-northeast-2'
|
|
105
100
|
AP_NORTHEAST_3 = 'ap-northeast-3'
|
|
101
|
+
AP_SOUTH_1 = 'ap-south-1'
|
|
102
|
+
AP_SOUTH_2 = 'ap-south-2'
|
|
106
103
|
AP_SOUTHEAST_1 = 'ap-southeast-1'
|
|
107
104
|
AP_SOUTHEAST_2 = 'ap-southeast-2'
|
|
105
|
+
AP_SOUTHEAST_3 = 'ap-southeast-3'
|
|
106
|
+
AP_SOUTHEAST_4 = 'ap-southeast-4'
|
|
108
107
|
CA_CENTRAL_1 = 'ca-central-1'
|
|
108
|
+
CA_WEST_1 = 'ca-west-1'
|
|
109
109
|
CN_NORTH_1 = 'cn-north-1'
|
|
110
110
|
CN_NORTHWEST_1 = 'cn-northwest-1'
|
|
111
111
|
EU_CENTRAL_1 = 'eu-central-1'
|
|
112
|
+
EU_CENTRAL_2 = 'eu-central-2'
|
|
112
113
|
EU_NORTH_1 = 'eu-north-1'
|
|
113
114
|
EU_SOUTH_1 = 'eu-south-1'
|
|
115
|
+
EU_SOUTH_2 = 'eu-south-2'
|
|
114
116
|
EU_WEST_1 = 'eu-west-1'
|
|
115
117
|
EU_WEST_2 = 'eu-west-2'
|
|
116
118
|
EU_WEST_3 = 'eu-west-3'
|
|
117
|
-
|
|
119
|
+
IL_CENTRAL_1 = 'il-central-1'
|
|
120
|
+
ME_CENTRAL_1 = 'me-central-1'
|
|
118
121
|
ME_SOUTH_1 = 'me-south-1'
|
|
122
|
+
SA_EAST_1 = 'sa-east-1'
|
|
123
|
+
US_EAST_1 = 'us-east-1'
|
|
124
|
+
US_EAST_2 = 'us-east-2'
|
|
119
125
|
US_GOV_EAST_1 = 'us-gov-east-1'
|
|
120
126
|
US_GOV_WEST_1 = 'us-gov-west-1'
|
|
127
|
+
US_WEST_1 = 'us-west-1'
|
|
128
|
+
US_WEST_2 = 'us-west-2'
|
|
121
129
|
|
|
122
130
|
|
|
123
131
|
@dataclass_json(undefined=Undefined.EXCLUDE)
|
|
@@ -13,31 +13,39 @@ class Dynamodb(str, Enum):
|
|
|
13
13
|
class DynamoDBRegion(str, Enum):
|
|
14
14
|
r"""The region of the DynamoDB."""
|
|
15
15
|
UNKNOWN = ''
|
|
16
|
-
US_EAST_1 = 'us-east-1'
|
|
17
|
-
US_EAST_2 = 'us-east-2'
|
|
18
|
-
US_WEST_1 = 'us-west-1'
|
|
19
|
-
US_WEST_2 = 'us-west-2'
|
|
20
16
|
AF_SOUTH_1 = 'af-south-1'
|
|
21
17
|
AP_EAST_1 = 'ap-east-1'
|
|
22
|
-
AP_SOUTH_1 = 'ap-south-1'
|
|
23
18
|
AP_NORTHEAST_1 = 'ap-northeast-1'
|
|
24
19
|
AP_NORTHEAST_2 = 'ap-northeast-2'
|
|
25
20
|
AP_NORTHEAST_3 = 'ap-northeast-3'
|
|
21
|
+
AP_SOUTH_1 = 'ap-south-1'
|
|
22
|
+
AP_SOUTH_2 = 'ap-south-2'
|
|
26
23
|
AP_SOUTHEAST_1 = 'ap-southeast-1'
|
|
27
24
|
AP_SOUTHEAST_2 = 'ap-southeast-2'
|
|
25
|
+
AP_SOUTHEAST_3 = 'ap-southeast-3'
|
|
26
|
+
AP_SOUTHEAST_4 = 'ap-southeast-4'
|
|
28
27
|
CA_CENTRAL_1 = 'ca-central-1'
|
|
28
|
+
CA_WEST_1 = 'ca-west-1'
|
|
29
29
|
CN_NORTH_1 = 'cn-north-1'
|
|
30
30
|
CN_NORTHWEST_1 = 'cn-northwest-1'
|
|
31
31
|
EU_CENTRAL_1 = 'eu-central-1'
|
|
32
|
+
EU_CENTRAL_2 = 'eu-central-2'
|
|
32
33
|
EU_NORTH_1 = 'eu-north-1'
|
|
33
34
|
EU_SOUTH_1 = 'eu-south-1'
|
|
35
|
+
EU_SOUTH_2 = 'eu-south-2'
|
|
34
36
|
EU_WEST_1 = 'eu-west-1'
|
|
35
37
|
EU_WEST_2 = 'eu-west-2'
|
|
36
38
|
EU_WEST_3 = 'eu-west-3'
|
|
37
|
-
|
|
39
|
+
IL_CENTRAL_1 = 'il-central-1'
|
|
40
|
+
ME_CENTRAL_1 = 'me-central-1'
|
|
38
41
|
ME_SOUTH_1 = 'me-south-1'
|
|
42
|
+
SA_EAST_1 = 'sa-east-1'
|
|
43
|
+
US_EAST_1 = 'us-east-1'
|
|
44
|
+
US_EAST_2 = 'us-east-2'
|
|
39
45
|
US_GOV_EAST_1 = 'us-gov-east-1'
|
|
40
46
|
US_GOV_WEST_1 = 'us-gov-west-1'
|
|
47
|
+
US_WEST_1 = 'us-west-1'
|
|
48
|
+
US_WEST_2 = 'us-west-2'
|
|
41
49
|
|
|
42
50
|
|
|
43
51
|
@dataclass_json(undefined=Undefined.EXCLUDE)
|