airbyte-api 0.47.2__tar.gz → 0.49.2__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.47.2 → airbyte-api-0.49.2}/PKG-INFO +75 -70
- {airbyte-api-0.47.2 → airbyte-api-0.49.2}/README.md +38 -33
- airbyte-api-0.49.2/setup.py +55 -0
- {airbyte-api-0.47.2/src/airbyte/models → airbyte-api-0.49.2/src/airbyte_api/_hooks}/__init__.py +2 -2
- airbyte-api-0.49.2/src/airbyte_api/_hooks/sdkhooks.py +55 -0
- airbyte-api-0.49.2/src/airbyte_api/_hooks/types.py +74 -0
- {airbyte-api-0.47.2/src/airbyte/models/operations → airbyte-api-0.49.2/src/airbyte_api/api}/canceljob.py +2 -2
- {airbyte-api-0.47.2/src/airbyte/models/operations → airbyte-api-0.49.2/src/airbyte_api/api}/createconnection.py +2 -2
- {airbyte-api-0.47.2/src/airbyte/models/operations → airbyte-api-0.49.2/src/airbyte_api/api}/createdestination.py +2 -2
- {airbyte-api-0.47.2/src/airbyte/models/operations → airbyte-api-0.49.2/src/airbyte_api/api}/createjob.py +2 -2
- {airbyte-api-0.47.2/src/airbyte/models/operations → airbyte-api-0.49.2/src/airbyte_api/api}/createorupdateworkspaceoauthcredentials.py +2 -2
- {airbyte-api-0.47.2/src/airbyte/models/operations → airbyte-api-0.49.2/src/airbyte_api/api}/createsource.py +2 -2
- {airbyte-api-0.47.2/src/airbyte/models/operations → airbyte-api-0.49.2/src/airbyte_api/api}/createworkspace.py +2 -2
- {airbyte-api-0.47.2/src/airbyte/models/operations → airbyte-api-0.49.2/src/airbyte_api/api}/getconnection.py +2 -2
- {airbyte-api-0.47.2/src/airbyte/models/operations → airbyte-api-0.49.2/src/airbyte_api/api}/getdestination.py +2 -2
- {airbyte-api-0.47.2/src/airbyte/models/operations → airbyte-api-0.49.2/src/airbyte_api/api}/getjob.py +2 -2
- {airbyte-api-0.47.2/src/airbyte/models/operations → airbyte-api-0.49.2/src/airbyte_api/api}/getsource.py +2 -2
- {airbyte-api-0.47.2/src/airbyte/models/operations → airbyte-api-0.49.2/src/airbyte_api/api}/getstreamproperties.py +2 -2
- {airbyte-api-0.47.2/src/airbyte/models/operations → airbyte-api-0.49.2/src/airbyte_api/api}/getworkspace.py +2 -2
- {airbyte-api-0.47.2/src/airbyte/models/operations → airbyte-api-0.49.2/src/airbyte_api/api}/listconnections.py +2 -2
- {airbyte-api-0.47.2/src/airbyte/models/operations → airbyte-api-0.49.2/src/airbyte_api/api}/listdestinations.py +2 -2
- {airbyte-api-0.47.2/src/airbyte/models/operations → airbyte-api-0.49.2/src/airbyte_api/api}/listjobs.py +6 -6
- {airbyte-api-0.47.2/src/airbyte/models/operations → airbyte-api-0.49.2/src/airbyte_api/api}/listsources.py +2 -2
- {airbyte-api-0.47.2/src/airbyte/models/operations → airbyte-api-0.49.2/src/airbyte_api/api}/listworkspaces.py +2 -2
- {airbyte-api-0.47.2/src/airbyte/models/operations → airbyte-api-0.49.2/src/airbyte_api/api}/patchconnection.py +4 -4
- {airbyte-api-0.47.2/src/airbyte/models/operations → airbyte-api-0.49.2/src/airbyte_api/api}/patchdestination.py +4 -4
- {airbyte-api-0.47.2/src/airbyte/models/operations → airbyte-api-0.49.2/src/airbyte_api/api}/patchsource.py +4 -4
- {airbyte-api-0.47.2/src/airbyte/models/operations → airbyte-api-0.49.2/src/airbyte_api/api}/putdestination.py +4 -4
- {airbyte-api-0.47.2/src/airbyte/models/operations → airbyte-api-0.49.2/src/airbyte_api/api}/putsource.py +4 -4
- {airbyte-api-0.47.2/src/airbyte/models/operations → airbyte-api-0.49.2/src/airbyte_api/api}/updateworkspace.py +4 -4
- airbyte-api-0.49.2/src/airbyte_api/connections.py +292 -0
- airbyte-api-0.49.2/src/airbyte_api/destinations.py +347 -0
- airbyte-api-0.49.2/src/airbyte_api/jobs.py +238 -0
- airbyte-api-0.49.2/src/airbyte_api/models/__init__.py +322 -0
- {airbyte-api-0.47.2/src/airbyte/models/shared → airbyte-api-0.49.2/src/airbyte_api/models}/airtable.py +1 -1
- {airbyte-api-0.47.2/src/airbyte/models/shared → airbyte-api-0.49.2/src/airbyte_api/models}/amazon_ads.py +1 -1
- {airbyte-api-0.47.2/src/airbyte/models/shared → airbyte-api-0.49.2/src/airbyte_api/models}/amazon_seller_partner.py +1 -1
- {airbyte-api-0.47.2/src/airbyte/models/shared → airbyte-api-0.49.2/src/airbyte_api/models}/asana.py +1 -1
- {airbyte-api-0.47.2/src/airbyte/models/shared → airbyte-api-0.49.2/src/airbyte_api/models}/bing_ads.py +1 -1
- {airbyte-api-0.47.2/src/airbyte/models/shared → airbyte-api-0.49.2/src/airbyte_api/models}/connectioncreaterequest.py +1 -1
- {airbyte-api-0.47.2/src/airbyte/models/shared → airbyte-api-0.49.2/src/airbyte_api/models}/connectionpatchrequest.py +1 -1
- {airbyte-api-0.47.2/src/airbyte/models/shared → airbyte-api-0.49.2/src/airbyte_api/models}/connectionresponse.py +1 -1
- {airbyte-api-0.47.2/src/airbyte/models/shared → airbyte-api-0.49.2/src/airbyte_api/models}/connectionschedule.py +1 -1
- {airbyte-api-0.47.2/src/airbyte/models/shared → airbyte-api-0.49.2/src/airbyte_api/models}/connectionscheduleresponse.py +1 -1
- {airbyte-api-0.47.2/src/airbyte/models/shared → airbyte-api-0.49.2/src/airbyte_api/models}/connectionsresponse.py +1 -1
- {airbyte-api-0.47.2/src/airbyte/models/shared → airbyte-api-0.49.2/src/airbyte_api/models}/destination_astra.py +1 -1
- {airbyte-api-0.47.2/src/airbyte/models/shared → airbyte-api-0.49.2/src/airbyte_api/models}/destination_aws_datalake.py +1 -1
- {airbyte-api-0.47.2/src/airbyte/models/shared → airbyte-api-0.49.2/src/airbyte_api/models}/destination_azure_blob_storage.py +1 -1
- {airbyte-api-0.47.2/src/airbyte/models/shared → airbyte-api-0.49.2/src/airbyte_api/models}/destination_bigquery.py +1 -1
- {airbyte-api-0.47.2/src/airbyte/models/shared → airbyte-api-0.49.2/src/airbyte_api/models}/destination_clickhouse.py +3 -1
- {airbyte-api-0.47.2/src/airbyte/models/shared → airbyte-api-0.49.2/src/airbyte_api/models}/destination_convex.py +1 -1
- {airbyte-api-0.47.2/src/airbyte/models/shared → airbyte-api-0.49.2/src/airbyte_api/models}/destination_databricks.py +1 -1
- {airbyte-api-0.47.2/src/airbyte/models/shared → airbyte-api-0.49.2/src/airbyte_api/models}/destination_dev_null.py +1 -1
- {airbyte-api-0.47.2/src/airbyte/models/shared → airbyte-api-0.49.2/src/airbyte_api/models}/destination_duckdb.py +1 -1
- {airbyte-api-0.47.2/src/airbyte/models/shared → airbyte-api-0.49.2/src/airbyte_api/models}/destination_dynamodb.py +1 -1
- {airbyte-api-0.47.2/src/airbyte/models/shared → airbyte-api-0.49.2/src/airbyte_api/models}/destination_elasticsearch.py +1 -1
- {airbyte-api-0.47.2/src/airbyte/models/shared → airbyte-api-0.49.2/src/airbyte_api/models}/destination_firestore.py +1 -1
- {airbyte-api-0.47.2/src/airbyte/models/shared → airbyte-api-0.49.2/src/airbyte_api/models}/destination_gcs.py +1 -1
- {airbyte-api-0.47.2/src/airbyte/models/shared → airbyte-api-0.49.2/src/airbyte_api/models}/destination_google_sheets.py +1 -1
- {airbyte-api-0.47.2/src/airbyte/models/shared → airbyte-api-0.49.2/src/airbyte_api/models}/destination_langchain.py +1 -1
- {airbyte-api-0.47.2/src/airbyte/models/shared → airbyte-api-0.49.2/src/airbyte_api/models}/destination_milvus.py +1 -1
- {airbyte-api-0.47.2/src/airbyte/models/shared → airbyte-api-0.49.2/src/airbyte_api/models}/destination_mongodb.py +1 -1
- {airbyte-api-0.47.2/src/airbyte/models/shared → airbyte-api-0.49.2/src/airbyte_api/models}/destination_mssql.py +1 -1
- {airbyte-api-0.47.2/src/airbyte/models/shared → airbyte-api-0.49.2/src/airbyte_api/models}/destination_mysql.py +1 -1
- {airbyte-api-0.47.2/src/airbyte/models/shared → airbyte-api-0.49.2/src/airbyte_api/models}/destination_oracle.py +1 -1
- {airbyte-api-0.47.2/src/airbyte/models/shared → airbyte-api-0.49.2/src/airbyte_api/models}/destination_pinecone.py +1 -1
- {airbyte-api-0.47.2/src/airbyte/models/shared → airbyte-api-0.49.2/src/airbyte_api/models}/destination_postgres.py +1 -1
- {airbyte-api-0.47.2/src/airbyte/models/shared → airbyte-api-0.49.2/src/airbyte_api/models}/destination_pubsub.py +1 -1
- {airbyte-api-0.47.2/src/airbyte/models/shared → airbyte-api-0.49.2/src/airbyte_api/models}/destination_qdrant.py +1 -1
- {airbyte-api-0.47.2/src/airbyte/models/shared → airbyte-api-0.49.2/src/airbyte_api/models}/destination_redis.py +1 -1
- {airbyte-api-0.47.2/src/airbyte/models/shared → airbyte-api-0.49.2/src/airbyte_api/models}/destination_redshift.py +1 -3
- {airbyte-api-0.47.2/src/airbyte/models/shared → airbyte-api-0.49.2/src/airbyte_api/models}/destination_s3.py +1 -1
- {airbyte-api-0.47.2/src/airbyte/models/shared → airbyte-api-0.49.2/src/airbyte_api/models}/destination_s3_glue.py +1 -1
- {airbyte-api-0.47.2/src/airbyte/models/shared → airbyte-api-0.49.2/src/airbyte_api/models}/destination_sftp_json.py +1 -1
- {airbyte-api-0.47.2/src/airbyte/models/shared → airbyte-api-0.49.2/src/airbyte_api/models}/destination_snowflake.py +3 -1
- {airbyte-api-0.47.2/src/airbyte/models/shared → airbyte-api-0.49.2/src/airbyte_api/models}/destination_teradata.py +1 -1
- {airbyte-api-0.47.2/src/airbyte/models/shared → airbyte-api-0.49.2/src/airbyte_api/models}/destination_typesense.py +3 -1
- {airbyte-api-0.47.2/src/airbyte/models/shared → airbyte-api-0.49.2/src/airbyte_api/models}/destination_vectara.py +1 -1
- {airbyte-api-0.47.2/src/airbyte/models/shared → airbyte-api-0.49.2/src/airbyte_api/models}/destination_weaviate.py +1 -1
- {airbyte-api-0.47.2/src/airbyte/models/shared → airbyte-api-0.49.2/src/airbyte_api/models}/destinationcreaterequest.py +2 -10
- {airbyte-api-0.47.2/src/airbyte/models/shared → airbyte-api-0.49.2/src/airbyte_api/models}/destinationpatchrequest.py +2 -10
- {airbyte-api-0.47.2/src/airbyte/models/shared → airbyte-api-0.49.2/src/airbyte_api/models}/destinationputrequest.py +2 -10
- {airbyte-api-0.47.2/src/airbyte/models/shared → airbyte-api-0.49.2/src/airbyte_api/models}/destinationresponse.py +2 -10
- {airbyte-api-0.47.2/src/airbyte/models/shared → airbyte-api-0.49.2/src/airbyte_api/models}/destinationsresponse.py +1 -1
- {airbyte-api-0.47.2/src/airbyte/models/shared → airbyte-api-0.49.2/src/airbyte_api/models}/facebook_marketing.py +1 -1
- {airbyte-api-0.47.2/src/airbyte/models/shared → airbyte-api-0.49.2/src/airbyte_api/models}/github.py +1 -1
- {airbyte-api-0.47.2/src/airbyte/models/shared → airbyte-api-0.49.2/src/airbyte_api/models}/gitlab.py +1 -1
- {airbyte-api-0.47.2/src/airbyte/models/shared → airbyte-api-0.49.2/src/airbyte_api/models}/google_ads.py +1 -1
- {airbyte-api-0.47.2/src/airbyte/models/shared → airbyte-api-0.49.2/src/airbyte_api/models}/google_analytics_data_api.py +1 -1
- {airbyte-api-0.47.2/src/airbyte/models/shared → airbyte-api-0.49.2/src/airbyte_api/models}/google_drive.py +1 -1
- {airbyte-api-0.47.2/src/airbyte/models/shared → airbyte-api-0.49.2/src/airbyte_api/models}/google_search_console.py +1 -1
- {airbyte-api-0.47.2/src/airbyte/models/shared → airbyte-api-0.49.2/src/airbyte_api/models}/google_sheets.py +1 -1
- {airbyte-api-0.47.2/src/airbyte/models/shared → airbyte-api-0.49.2/src/airbyte_api/models}/harvest.py +1 -1
- {airbyte-api-0.47.2/src/airbyte/models/shared → airbyte-api-0.49.2/src/airbyte_api/models}/hubspot.py +1 -1
- {airbyte-api-0.47.2/src/airbyte/models/shared → airbyte-api-0.49.2/src/airbyte_api/models}/initiateoauthrequest.py +1 -1
- {airbyte-api-0.47.2/src/airbyte/models/shared → airbyte-api-0.49.2/src/airbyte_api/models}/instagram.py +1 -1
- {airbyte-api-0.47.2/src/airbyte/models/shared → airbyte-api-0.49.2/src/airbyte_api/models}/intercom.py +1 -1
- {airbyte-api-0.47.2/src/airbyte/models/shared → airbyte-api-0.49.2/src/airbyte_api/models}/jobcreaterequest.py +1 -1
- {airbyte-api-0.47.2/src/airbyte/models/shared → airbyte-api-0.49.2/src/airbyte_api/models}/jobresponse.py +1 -1
- {airbyte-api-0.47.2/src/airbyte/models/shared → airbyte-api-0.49.2/src/airbyte_api/models}/jobsresponse.py +1 -1
- {airbyte-api-0.47.2/src/airbyte/models/shared → airbyte-api-0.49.2/src/airbyte_api/models}/lever_hiring.py +1 -1
- {airbyte-api-0.47.2/src/airbyte/models/shared → airbyte-api-0.49.2/src/airbyte_api/models}/linkedin_ads.py +1 -1
- {airbyte-api-0.47.2/src/airbyte/models/shared → airbyte-api-0.49.2/src/airbyte_api/models}/mailchimp.py +1 -1
- airbyte-api-0.49.2/src/airbyte_api/models/microsoft_onedrive.py +26 -0
- {airbyte-api-0.47.2/src/airbyte/models/shared → airbyte-api-0.49.2/src/airbyte_api/models}/microsoft_sharepoint.py +1 -1
- {airbyte-api-0.47.2/src/airbyte/models/shared → airbyte-api-0.49.2/src/airbyte_api/models}/microsoft_teams.py +1 -1
- {airbyte-api-0.47.2/src/airbyte/models/shared → airbyte-api-0.49.2/src/airbyte_api/models}/monday.py +1 -1
- {airbyte-api-0.47.2/src/airbyte/models/shared → airbyte-api-0.49.2/src/airbyte_api/models}/notion.py +1 -1
- {airbyte-api-0.47.2/src/airbyte/models/shared → airbyte-api-0.49.2/src/airbyte_api/models}/oauthactornames.py +1 -0
- {airbyte-api-0.47.2/src/airbyte/models/shared → airbyte-api-0.49.2/src/airbyte_api/models}/pinterest.py +1 -1
- {airbyte-api-0.47.2/src/airbyte/models/shared → airbyte-api-0.49.2/src/airbyte_api/models}/retently.py +1 -1
- {airbyte-api-0.47.2/src/airbyte/models/shared → airbyte-api-0.49.2/src/airbyte_api/models}/salesforce.py +1 -1
- {airbyte-api-0.47.2/src/airbyte/models/shared → airbyte-api-0.49.2/src/airbyte_api/models}/shopify.py +1 -1
- {airbyte-api-0.47.2/src/airbyte/models/shared → airbyte-api-0.49.2/src/airbyte_api/models}/slack.py +1 -1
- {airbyte-api-0.47.2/src/airbyte/models/shared → airbyte-api-0.49.2/src/airbyte_api/models}/smartsheets.py +1 -1
- {airbyte-api-0.47.2/src/airbyte/models/shared → airbyte-api-0.49.2/src/airbyte_api/models}/snapchat_marketing.py +1 -1
- {airbyte-api-0.47.2/src/airbyte/models/shared → airbyte-api-0.49.2/src/airbyte_api/models}/snowflake.py +1 -1
- {airbyte-api-0.47.2/src/airbyte/models/shared → airbyte-api-0.49.2/src/airbyte_api/models}/source_aha.py +1 -1
- {airbyte-api-0.47.2/src/airbyte/models/shared → airbyte-api-0.49.2/src/airbyte_api/models}/source_aircall.py +1 -1
- {airbyte-api-0.47.2/src/airbyte/models/shared → airbyte-api-0.49.2/src/airbyte_api/models}/source_airtable.py +1 -1
- {airbyte-api-0.47.2/src/airbyte/models/shared → airbyte-api-0.49.2/src/airbyte_api/models}/source_amazon_ads.py +1 -1
- {airbyte-api-0.47.2/src/airbyte/models/shared → airbyte-api-0.49.2/src/airbyte_api/models}/source_amazon_seller_partner.py +1 -1
- {airbyte-api-0.47.2/src/airbyte/models/shared → airbyte-api-0.49.2/src/airbyte_api/models}/source_amazon_sqs.py +1 -1
- {airbyte-api-0.47.2/src/airbyte/models/shared → airbyte-api-0.49.2/src/airbyte_api/models}/source_amplitude.py +1 -1
- {airbyte-api-0.47.2/src/airbyte/models/shared → airbyte-api-0.49.2/src/airbyte_api/models}/source_apify_dataset.py +1 -1
- {airbyte-api-0.47.2/src/airbyte/models/shared → airbyte-api-0.49.2/src/airbyte_api/models}/source_appfollow.py +1 -1
- {airbyte-api-0.47.2/src/airbyte/models/shared → airbyte-api-0.49.2/src/airbyte_api/models}/source_asana.py +1 -1
- {airbyte-api-0.47.2/src/airbyte/models/shared → airbyte-api-0.49.2/src/airbyte_api/models}/source_auth0.py +1 -1
- {airbyte-api-0.47.2/src/airbyte/models/shared → airbyte-api-0.49.2/src/airbyte_api/models}/source_aws_cloudtrail.py +1 -1
- {airbyte-api-0.47.2/src/airbyte/models/shared → airbyte-api-0.49.2/src/airbyte_api/models}/source_azure_blob_storage.py +3 -1
- {airbyte-api-0.47.2/src/airbyte/models/shared → airbyte-api-0.49.2/src/airbyte_api/models}/source_azure_table.py +1 -1
- {airbyte-api-0.47.2/src/airbyte/models/shared → airbyte-api-0.49.2/src/airbyte_api/models}/source_bamboo_hr.py +1 -1
- {airbyte-api-0.47.2/src/airbyte/models/shared → airbyte-api-0.49.2/src/airbyte_api/models}/source_bigquery.py +1 -1
- {airbyte-api-0.47.2/src/airbyte/models/shared → airbyte-api-0.49.2/src/airbyte_api/models}/source_bing_ads.py +1 -1
- {airbyte-api-0.47.2/src/airbyte/models/shared → airbyte-api-0.49.2/src/airbyte_api/models}/source_braintree.py +1 -1
- {airbyte-api-0.47.2/src/airbyte/models/shared → airbyte-api-0.49.2/src/airbyte_api/models}/source_braze.py +1 -1
- {airbyte-api-0.47.2/src/airbyte/models/shared → airbyte-api-0.49.2/src/airbyte_api/models}/source_cart.py +1 -1
- {airbyte-api-0.47.2/src/airbyte/models/shared → airbyte-api-0.49.2/src/airbyte_api/models}/source_chargebee.py +1 -1
- {airbyte-api-0.47.2/src/airbyte/models/shared → airbyte-api-0.49.2/src/airbyte_api/models}/source_chartmogul.py +1 -1
- {airbyte-api-0.47.2/src/airbyte/models/shared → airbyte-api-0.49.2/src/airbyte_api/models}/source_clickhouse.py +1 -1
- {airbyte-api-0.47.2/src/airbyte/models/shared → airbyte-api-0.49.2/src/airbyte_api/models}/source_clickup_api.py +1 -1
- {airbyte-api-0.47.2/src/airbyte/models/shared → airbyte-api-0.49.2/src/airbyte_api/models}/source_clockify.py +1 -1
- {airbyte-api-0.47.2/src/airbyte/models/shared → airbyte-api-0.49.2/src/airbyte_api/models}/source_close_com.py +1 -1
- {airbyte-api-0.47.2/src/airbyte/models/shared → airbyte-api-0.49.2/src/airbyte_api/models}/source_coda.py +1 -1
- {airbyte-api-0.47.2/src/airbyte/models/shared → airbyte-api-0.49.2/src/airbyte_api/models}/source_coin_api.py +1 -1
- {airbyte-api-0.47.2/src/airbyte/models/shared → airbyte-api-0.49.2/src/airbyte_api/models}/source_coinmarketcap.py +1 -1
- {airbyte-api-0.47.2/src/airbyte/models/shared → airbyte-api-0.49.2/src/airbyte_api/models}/source_configcat.py +1 -1
- {airbyte-api-0.47.2/src/airbyte/models/shared → airbyte-api-0.49.2/src/airbyte_api/models}/source_confluence.py +1 -1
- {airbyte-api-0.47.2/src/airbyte/models/shared → airbyte-api-0.49.2/src/airbyte_api/models}/source_convex.py +1 -1
- {airbyte-api-0.47.2/src/airbyte/models/shared → airbyte-api-0.49.2/src/airbyte_api/models}/source_datascope.py +1 -1
- {airbyte-api-0.47.2/src/airbyte/models/shared → airbyte-api-0.49.2/src/airbyte_api/models}/source_delighted.py +1 -1
- {airbyte-api-0.47.2/src/airbyte/models/shared → airbyte-api-0.49.2/src/airbyte_api/models}/source_dixa.py +1 -1
- {airbyte-api-0.47.2/src/airbyte/models/shared → airbyte-api-0.49.2/src/airbyte_api/models}/source_dockerhub.py +1 -1
- {airbyte-api-0.47.2/src/airbyte/models/shared → airbyte-api-0.49.2/src/airbyte_api/models}/source_dremio.py +1 -1
- {airbyte-api-0.47.2/src/airbyte/models/shared → airbyte-api-0.49.2/src/airbyte_api/models}/source_dynamodb.py +1 -1
- {airbyte-api-0.47.2/src/airbyte/models/shared → airbyte-api-0.49.2/src/airbyte_api/models}/source_e2e_test_cloud.py +1 -1
- {airbyte-api-0.47.2/src/airbyte/models/shared → airbyte-api-0.49.2/src/airbyte_api/models}/source_emailoctopus.py +1 -1
- {airbyte-api-0.47.2/src/airbyte/models/shared → airbyte-api-0.49.2/src/airbyte_api/models}/source_exchange_rates.py +1 -1
- {airbyte-api-0.47.2/src/airbyte/models/shared → airbyte-api-0.49.2/src/airbyte_api/models}/source_facebook_marketing.py +60 -8
- {airbyte-api-0.47.2/src/airbyte/models/shared → airbyte-api-0.49.2/src/airbyte_api/models}/source_faker.py +2 -2
- {airbyte-api-0.47.2/src/airbyte/models/shared → airbyte-api-0.49.2/src/airbyte_api/models}/source_fauna.py +1 -1
- {airbyte-api-0.47.2/src/airbyte/models/shared → airbyte-api-0.49.2/src/airbyte_api/models}/source_file.py +1 -1
- {airbyte-api-0.47.2/src/airbyte/models/shared → airbyte-api-0.49.2/src/airbyte_api/models}/source_firebolt.py +3 -3
- {airbyte-api-0.47.2/src/airbyte/models/shared → airbyte-api-0.49.2/src/airbyte_api/models}/source_freshcaller.py +1 -1
- {airbyte-api-0.47.2/src/airbyte/models/shared → airbyte-api-0.49.2/src/airbyte_api/models}/source_freshdesk.py +3 -1
- {airbyte-api-0.47.2/src/airbyte/models/shared → airbyte-api-0.49.2/src/airbyte_api/models}/source_freshsales.py +1 -1
- {airbyte-api-0.47.2/src/airbyte/models/shared → airbyte-api-0.49.2/src/airbyte_api/models}/source_gainsight_px.py +1 -1
- {airbyte-api-0.47.2/src/airbyte/models/shared → airbyte-api-0.49.2/src/airbyte_api/models}/source_gcs.py +3 -1
- {airbyte-api-0.47.2/src/airbyte/models/shared → airbyte-api-0.49.2/src/airbyte_api/models}/source_getlago.py +1 -1
- {airbyte-api-0.47.2/src/airbyte/models/shared → airbyte-api-0.49.2/src/airbyte_api/models}/source_github.py +2 -2
- {airbyte-api-0.47.2/src/airbyte/models/shared → airbyte-api-0.49.2/src/airbyte_api/models}/source_gitlab.py +1 -1
- {airbyte-api-0.47.2/src/airbyte/models/shared → airbyte-api-0.49.2/src/airbyte_api/models}/source_glassfrog.py +1 -1
- {airbyte-api-0.47.2/src/airbyte/models/shared → airbyte-api-0.49.2/src/airbyte_api/models}/source_gnews.py +1 -1
- {airbyte-api-0.47.2/src/airbyte/models/shared → airbyte-api-0.49.2/src/airbyte_api/models}/source_google_ads.py +1 -1
- {airbyte-api-0.47.2/src/airbyte/models/shared → airbyte-api-0.49.2/src/airbyte_api/models}/source_google_analytics_data_api.py +1 -1
- {airbyte-api-0.47.2/src/airbyte/models/shared → airbyte-api-0.49.2/src/airbyte_api/models}/source_google_analytics_v4_service_account_only.py +1 -1
- {airbyte-api-0.47.2/src/airbyte/models/shared → airbyte-api-0.49.2/src/airbyte_api/models}/source_google_directory.py +1 -1
- {airbyte-api-0.47.2/src/airbyte/models/shared → airbyte-api-0.49.2/src/airbyte_api/models}/source_google_drive.py +1 -1
- {airbyte-api-0.47.2/src/airbyte/models/shared → airbyte-api-0.49.2/src/airbyte_api/models}/source_google_pagespeed_insights.py +1 -1
- {airbyte-api-0.47.2/src/airbyte/models/shared → airbyte-api-0.49.2/src/airbyte_api/models}/source_google_search_console.py +1 -1
- {airbyte-api-0.47.2/src/airbyte/models/shared → airbyte-api-0.49.2/src/airbyte_api/models}/source_google_sheets.py +1 -1
- {airbyte-api-0.47.2/src/airbyte/models/shared → airbyte-api-0.49.2/src/airbyte_api/models}/source_google_webfonts.py +1 -1
- {airbyte-api-0.47.2/src/airbyte/models/shared → airbyte-api-0.49.2/src/airbyte_api/models}/source_greenhouse.py +1 -1
- {airbyte-api-0.47.2/src/airbyte/models/shared → airbyte-api-0.49.2/src/airbyte_api/models}/source_gridly.py +1 -1
- {airbyte-api-0.47.2/src/airbyte/models/shared → airbyte-api-0.49.2/src/airbyte_api/models}/source_harvest.py +1 -1
- {airbyte-api-0.47.2/src/airbyte/models/shared → airbyte-api-0.49.2/src/airbyte_api/models}/source_hubplanner.py +1 -1
- {airbyte-api-0.47.2/src/airbyte/models/shared → airbyte-api-0.49.2/src/airbyte_api/models}/source_hubspot.py +3 -3
- {airbyte-api-0.47.2/src/airbyte/models/shared → airbyte-api-0.49.2/src/airbyte_api/models}/source_insightly.py +1 -1
- {airbyte-api-0.47.2/src/airbyte/models/shared → airbyte-api-0.49.2/src/airbyte_api/models}/source_instagram.py +1 -1
- {airbyte-api-0.47.2/src/airbyte/models/shared → airbyte-api-0.49.2/src/airbyte_api/models}/source_instatus.py +1 -1
- {airbyte-api-0.47.2/src/airbyte/models/shared → airbyte-api-0.49.2/src/airbyte_api/models}/source_intercom.py +1 -1
- {airbyte-api-0.47.2/src/airbyte/models/shared → airbyte-api-0.49.2/src/airbyte_api/models}/source_ip2whois.py +1 -1
- {airbyte-api-0.47.2/src/airbyte/models/shared → airbyte-api-0.49.2/src/airbyte_api/models}/source_iterable.py +1 -1
- {airbyte-api-0.47.2/src/airbyte/models/shared → airbyte-api-0.49.2/src/airbyte_api/models}/source_jira.py +1 -1
- {airbyte-api-0.47.2/src/airbyte/models/shared → airbyte-api-0.49.2/src/airbyte_api/models}/source_k6_cloud.py +1 -1
- {airbyte-api-0.47.2/src/airbyte/models/shared → airbyte-api-0.49.2/src/airbyte_api/models}/source_klarna.py +1 -1
- {airbyte-api-0.47.2/src/airbyte/models/shared → airbyte-api-0.49.2/src/airbyte_api/models}/source_klaviyo.py +1 -1
- {airbyte-api-0.47.2/src/airbyte/models/shared → airbyte-api-0.49.2/src/airbyte_api/models}/source_kyve.py +1 -1
- {airbyte-api-0.47.2/src/airbyte/models/shared → airbyte-api-0.49.2/src/airbyte_api/models}/source_launchdarkly.py +1 -1
- {airbyte-api-0.47.2/src/airbyte/models/shared → airbyte-api-0.49.2/src/airbyte_api/models}/source_lemlist.py +1 -1
- {airbyte-api-0.47.2/src/airbyte/models/shared → airbyte-api-0.49.2/src/airbyte_api/models}/source_lever_hiring.py +1 -1
- {airbyte-api-0.47.2/src/airbyte/models/shared → airbyte-api-0.49.2/src/airbyte_api/models}/source_linkedin_ads.py +1 -1
- {airbyte-api-0.47.2/src/airbyte/models/shared → airbyte-api-0.49.2/src/airbyte_api/models}/source_linkedin_pages.py +1 -1
- airbyte-api-0.49.2/src/airbyte_api/models/source_linnworks.py +28 -0
- {airbyte-api-0.47.2/src/airbyte/models/shared → airbyte-api-0.49.2/src/airbyte_api/models}/source_lokalise.py +1 -1
- {airbyte-api-0.47.2/src/airbyte/models/shared → airbyte-api-0.49.2/src/airbyte_api/models}/source_mailchimp.py +3 -2
- {airbyte-api-0.47.2/src/airbyte/models/shared → airbyte-api-0.49.2/src/airbyte_api/models}/source_mailgun.py +1 -1
- {airbyte-api-0.47.2/src/airbyte/models/shared → airbyte-api-0.49.2/src/airbyte_api/models}/source_mailjet_sms.py +1 -1
- {airbyte-api-0.47.2/src/airbyte/models/shared → airbyte-api-0.49.2/src/airbyte_api/models}/source_marketo.py +1 -1
- {airbyte-api-0.47.2/src/airbyte/models/shared → airbyte-api-0.49.2/src/airbyte_api/models}/source_metabase.py +1 -1
- airbyte-api-0.49.2/src/airbyte_api/models/source_microsoft_onedrive.py +259 -0
- {airbyte-api-0.47.2/src/airbyte/models/shared → airbyte-api-0.49.2/src/airbyte_api/models}/source_microsoft_sharepoint.py +16 -6
- {airbyte-api-0.47.2/src/airbyte/models/shared → airbyte-api-0.49.2/src/airbyte_api/models}/source_microsoft_teams.py +1 -1
- {airbyte-api-0.47.2/src/airbyte/models/shared → airbyte-api-0.49.2/src/airbyte_api/models}/source_mixpanel.py +1 -1
- {airbyte-api-0.47.2/src/airbyte/models/shared → airbyte-api-0.49.2/src/airbyte_api/models}/source_monday.py +1 -1
- {airbyte-api-0.47.2/src/airbyte/models/shared → airbyte-api-0.49.2/src/airbyte_api/models}/source_mongodb_internal_poc.py +1 -1
- {airbyte-api-0.47.2/src/airbyte/models/shared → airbyte-api-0.49.2/src/airbyte_api/models}/source_mongodb_v2.py +8 -1
- {airbyte-api-0.47.2/src/airbyte/models/shared → airbyte-api-0.49.2/src/airbyte_api/models}/source_mssql.py +11 -2
- {airbyte-api-0.47.2/src/airbyte/models/shared → airbyte-api-0.49.2/src/airbyte_api/models}/source_my_hours.py +1 -1
- {airbyte-api-0.47.2/src/airbyte/models/shared → airbyte-api-0.49.2/src/airbyte_api/models}/source_mysql.py +8 -1
- {airbyte-api-0.47.2/src/airbyte/models/shared → airbyte-api-0.49.2/src/airbyte_api/models}/source_netsuite.py +1 -1
- {airbyte-api-0.47.2/src/airbyte/models/shared → airbyte-api-0.49.2/src/airbyte_api/models}/source_notion.py +1 -1
- {airbyte-api-0.47.2/src/airbyte/models/shared → airbyte-api-0.49.2/src/airbyte_api/models}/source_nytimes.py +1 -1
- {airbyte-api-0.47.2/src/airbyte/models/shared → airbyte-api-0.49.2/src/airbyte_api/models}/source_okta.py +1 -1
- {airbyte-api-0.47.2/src/airbyte/models/shared → airbyte-api-0.49.2/src/airbyte_api/models}/source_omnisend.py +1 -1
- {airbyte-api-0.47.2/src/airbyte/models/shared → airbyte-api-0.49.2/src/airbyte_api/models}/source_onesignal.py +1 -1
- {airbyte-api-0.47.2/src/airbyte/models/shared → airbyte-api-0.49.2/src/airbyte_api/models}/source_oracle.py +1 -1
- {airbyte-api-0.47.2/src/airbyte/models/shared → airbyte-api-0.49.2/src/airbyte_api/models}/source_orb.py +3 -1
- {airbyte-api-0.47.2/src/airbyte/models/shared → airbyte-api-0.49.2/src/airbyte_api/models}/source_orbit.py +1 -1
- {airbyte-api-0.47.2/src/airbyte/models/shared → airbyte-api-0.49.2/src/airbyte_api/models}/source_outbrain_amplify.py +1 -1
- {airbyte-api-0.47.2/src/airbyte/models/shared → airbyte-api-0.49.2/src/airbyte_api/models}/source_outreach.py +1 -1
- {airbyte-api-0.47.2/src/airbyte/models/shared → airbyte-api-0.49.2/src/airbyte_api/models}/source_paypal_transaction.py +5 -1
- {airbyte-api-0.47.2/src/airbyte/models/shared → airbyte-api-0.49.2/src/airbyte_api/models}/source_paystack.py +1 -1
- {airbyte-api-0.47.2/src/airbyte/models/shared → airbyte-api-0.49.2/src/airbyte_api/models}/source_pendo.py +1 -1
- {airbyte-api-0.47.2/src/airbyte/models/shared → airbyte-api-0.49.2/src/airbyte_api/models}/source_persistiq.py +1 -1
- {airbyte-api-0.47.2/src/airbyte/models/shared → airbyte-api-0.49.2/src/airbyte_api/models}/source_pexels_api.py +1 -1
- {airbyte-api-0.47.2/src/airbyte/models/shared → airbyte-api-0.49.2/src/airbyte_api/models}/source_pinterest.py +1 -1
- {airbyte-api-0.47.2/src/airbyte/models/shared → airbyte-api-0.49.2/src/airbyte_api/models}/source_pipedrive.py +1 -1
- {airbyte-api-0.47.2/src/airbyte/models/shared → airbyte-api-0.49.2/src/airbyte_api/models}/source_pocket.py +1 -1
- {airbyte-api-0.47.2/src/airbyte/models/shared → airbyte-api-0.49.2/src/airbyte_api/models}/source_pokeapi.py +1 -1
- {airbyte-api-0.47.2/src/airbyte/models/shared → airbyte-api-0.49.2/src/airbyte_api/models}/source_polygon_stock_api.py +1 -1
- {airbyte-api-0.47.2/src/airbyte/models/shared → airbyte-api-0.49.2/src/airbyte_api/models}/source_postgres.py +8 -1
- {airbyte-api-0.47.2/src/airbyte/models/shared → airbyte-api-0.49.2/src/airbyte_api/models}/source_posthog.py +1 -1
- {airbyte-api-0.47.2/src/airbyte/models/shared → airbyte-api-0.49.2/src/airbyte_api/models}/source_postmarkapp.py +1 -1
- {airbyte-api-0.47.2/src/airbyte/models/shared → airbyte-api-0.49.2/src/airbyte_api/models}/source_prestashop.py +1 -1
- {airbyte-api-0.47.2/src/airbyte/models/shared → airbyte-api-0.49.2/src/airbyte_api/models}/source_punk_api.py +1 -1
- {airbyte-api-0.47.2/src/airbyte/models/shared → airbyte-api-0.49.2/src/airbyte_api/models}/source_pypi.py +1 -1
- {airbyte-api-0.47.2/src/airbyte/models/shared → airbyte-api-0.49.2/src/airbyte_api/models}/source_qualaroo.py +1 -1
- {airbyte-api-0.47.2/src/airbyte/models/shared → airbyte-api-0.49.2/src/airbyte_api/models}/source_quickbooks.py +2 -2
- {airbyte-api-0.47.2/src/airbyte/models/shared → airbyte-api-0.49.2/src/airbyte_api/models}/source_railz.py +1 -1
- {airbyte-api-0.47.2/src/airbyte/models/shared → airbyte-api-0.49.2/src/airbyte_api/models}/source_recharge.py +1 -1
- {airbyte-api-0.47.2/src/airbyte/models/shared → airbyte-api-0.49.2/src/airbyte_api/models}/source_recreation.py +1 -1
- {airbyte-api-0.47.2/src/airbyte/models/shared → airbyte-api-0.49.2/src/airbyte_api/models}/source_recruitee.py +1 -1
- airbyte-api-0.49.2/src/airbyte_api/models/source_recurly.py +25 -0
- {airbyte-api-0.47.2/src/airbyte/models/shared → airbyte-api-0.49.2/src/airbyte_api/models}/source_redshift.py +1 -1
- {airbyte-api-0.47.2/src/airbyte/models/shared → airbyte-api-0.49.2/src/airbyte_api/models}/source_retently.py +1 -1
- {airbyte-api-0.47.2/src/airbyte/models/shared → airbyte-api-0.49.2/src/airbyte_api/models}/source_rki_covid.py +1 -1
- {airbyte-api-0.47.2/src/airbyte/models/shared → airbyte-api-0.49.2/src/airbyte_api/models}/source_rss.py +1 -1
- {airbyte-api-0.47.2/src/airbyte/models/shared → airbyte-api-0.49.2/src/airbyte_api/models}/source_s3.py +5 -1
- {airbyte-api-0.47.2/src/airbyte/models/shared → airbyte-api-0.49.2/src/airbyte_api/models}/source_salesforce.py +3 -1
- {airbyte-api-0.47.2/src/airbyte/models/shared → airbyte-api-0.49.2/src/airbyte_api/models}/source_salesloft.py +1 -1
- {airbyte-api-0.47.2/src/airbyte/models/shared → airbyte-api-0.49.2/src/airbyte_api/models}/source_sap_fieldglass.py +1 -1
- {airbyte-api-0.47.2/src/airbyte/models/shared → airbyte-api-0.49.2/src/airbyte_api/models}/source_secoda.py +1 -1
- {airbyte-api-0.47.2/src/airbyte/models/shared → airbyte-api-0.49.2/src/airbyte_api/models}/source_sendgrid.py +1 -1
- {airbyte-api-0.47.2/src/airbyte/models/shared → airbyte-api-0.49.2/src/airbyte_api/models}/source_sendinblue.py +1 -1
- {airbyte-api-0.47.2/src/airbyte/models/shared → airbyte-api-0.49.2/src/airbyte_api/models}/source_senseforce.py +1 -1
- {airbyte-api-0.47.2/src/airbyte/models/shared → airbyte-api-0.49.2/src/airbyte_api/models}/source_sentry.py +1 -1
- {airbyte-api-0.47.2/src/airbyte/models/shared → airbyte-api-0.49.2/src/airbyte_api/models}/source_sftp.py +1 -1
- {airbyte-api-0.47.2/src/airbyte/models/shared → airbyte-api-0.49.2/src/airbyte_api/models}/source_sftp_bulk.py +1 -1
- {airbyte-api-0.47.2/src/airbyte/models/shared → airbyte-api-0.49.2/src/airbyte_api/models}/source_shopify.py +5 -1
- {airbyte-api-0.47.2/src/airbyte/models/shared → airbyte-api-0.49.2/src/airbyte_api/models}/source_shortio.py +1 -1
- {airbyte-api-0.47.2/src/airbyte/models/shared → airbyte-api-0.49.2/src/airbyte_api/models}/source_slack.py +1 -1
- {airbyte-api-0.47.2/src/airbyte/models/shared → airbyte-api-0.49.2/src/airbyte_api/models}/source_smaily.py +1 -1
- {airbyte-api-0.47.2/src/airbyte/models/shared → airbyte-api-0.49.2/src/airbyte_api/models}/source_smartengage.py +1 -1
- {airbyte-api-0.47.2/src/airbyte/models/shared → airbyte-api-0.49.2/src/airbyte_api/models}/source_smartsheets.py +1 -1
- {airbyte-api-0.47.2/src/airbyte/models/shared → airbyte-api-0.49.2/src/airbyte_api/models}/source_snapchat_marketing.py +26 -1
- {airbyte-api-0.47.2/src/airbyte/models/shared → airbyte-api-0.49.2/src/airbyte_api/models}/source_snowflake.py +1 -1
- {airbyte-api-0.47.2/src/airbyte/models/shared → airbyte-api-0.49.2/src/airbyte_api/models}/source_sonar_cloud.py +1 -1
- {airbyte-api-0.47.2/src/airbyte/models/shared → airbyte-api-0.49.2/src/airbyte_api/models}/source_spacex_api.py +1 -1
- {airbyte-api-0.47.2/src/airbyte/models/shared → airbyte-api-0.49.2/src/airbyte_api/models}/source_square.py +1 -1
- {airbyte-api-0.47.2/src/airbyte/models/shared → airbyte-api-0.49.2/src/airbyte_api/models}/source_strava.py +1 -1
- {airbyte-api-0.47.2/src/airbyte/models/shared → airbyte-api-0.49.2/src/airbyte_api/models}/source_stripe.py +1 -1
- {airbyte-api-0.47.2/src/airbyte/models/shared → airbyte-api-0.49.2/src/airbyte_api/models}/source_survey_sparrow.py +1 -1
- {airbyte-api-0.47.2/src/airbyte/models/shared → airbyte-api-0.49.2/src/airbyte_api/models}/source_surveymonkey.py +3 -3
- {airbyte-api-0.47.2/src/airbyte/models/shared → airbyte-api-0.49.2/src/airbyte_api/models}/source_tempo.py +1 -1
- {airbyte-api-0.47.2/src/airbyte/models/shared → airbyte-api-0.49.2/src/airbyte_api/models}/source_the_guardian_api.py +1 -1
- {airbyte-api-0.47.2/src/airbyte/models/shared → airbyte-api-0.49.2/src/airbyte_api/models}/source_tiktok_marketing.py +1 -1
- {airbyte-api-0.47.2/src/airbyte/models/shared → airbyte-api-0.49.2/src/airbyte_api/models}/source_trello.py +1 -1
- {airbyte-api-0.47.2/src/airbyte/models/shared → airbyte-api-0.49.2/src/airbyte_api/models}/source_trustpilot.py +1 -1
- {airbyte-api-0.47.2/src/airbyte/models/shared → airbyte-api-0.49.2/src/airbyte_api/models}/source_tvmaze_schedule.py +1 -1
- {airbyte-api-0.47.2/src/airbyte/models/shared → airbyte-api-0.49.2/src/airbyte_api/models}/source_twilio.py +1 -1
- {airbyte-api-0.47.2/src/airbyte/models/shared → airbyte-api-0.49.2/src/airbyte_api/models}/source_twilio_taskrouter.py +1 -1
- {airbyte-api-0.47.2/src/airbyte/models/shared → airbyte-api-0.49.2/src/airbyte_api/models}/source_twitter.py +1 -1
- {airbyte-api-0.47.2/src/airbyte/models/shared → airbyte-api-0.49.2/src/airbyte_api/models}/source_typeform.py +1 -1
- {airbyte-api-0.47.2/src/airbyte/models/shared → airbyte-api-0.49.2/src/airbyte_api/models}/source_us_census.py +1 -1
- {airbyte-api-0.47.2/src/airbyte/models/shared → airbyte-api-0.49.2/src/airbyte_api/models}/source_vantage.py +1 -1
- {airbyte-api-0.47.2/src/airbyte/models/shared → airbyte-api-0.49.2/src/airbyte_api/models}/source_webflow.py +1 -1
- {airbyte-api-0.47.2/src/airbyte/models/shared → airbyte-api-0.49.2/src/airbyte_api/models}/source_whisky_hunter.py +1 -1
- {airbyte-api-0.47.2/src/airbyte/models/shared → airbyte-api-0.49.2/src/airbyte_api/models}/source_wikipedia_pageviews.py +1 -1
- {airbyte-api-0.47.2/src/airbyte/models/shared → airbyte-api-0.49.2/src/airbyte_api/models}/source_woocommerce.py +1 -1
- {airbyte-api-0.47.2/src/airbyte/models/shared → airbyte-api-0.49.2/src/airbyte_api/models}/source_xkcd.py +1 -1
- {airbyte-api-0.47.2/src/airbyte/models/shared → airbyte-api-0.49.2/src/airbyte_api/models}/source_yandex_metrica.py +1 -1
- {airbyte-api-0.47.2/src/airbyte/models/shared → airbyte-api-0.49.2/src/airbyte_api/models}/source_yotpo.py +1 -1
- {airbyte-api-0.47.2/src/airbyte/models/shared → airbyte-api-0.49.2/src/airbyte_api/models}/source_youtube_analytics.py +1 -1
- {airbyte-api-0.47.2/src/airbyte/models/shared → airbyte-api-0.49.2/src/airbyte_api/models}/source_zendesk_chat.py +1 -1
- {airbyte-api-0.47.2/src/airbyte/models/shared → airbyte-api-0.49.2/src/airbyte_api/models}/source_zendesk_sell.py +1 -1
- {airbyte-api-0.47.2/src/airbyte/models/shared → airbyte-api-0.49.2/src/airbyte_api/models}/source_zendesk_sunshine.py +1 -1
- {airbyte-api-0.47.2/src/airbyte/models/shared → airbyte-api-0.49.2/src/airbyte_api/models}/source_zendesk_support.py +1 -1
- {airbyte-api-0.47.2/src/airbyte/models/shared → airbyte-api-0.49.2/src/airbyte_api/models}/source_zendesk_talk.py +16 -16
- {airbyte-api-0.47.2/src/airbyte/models/shared → airbyte-api-0.49.2/src/airbyte_api/models}/source_zenloop.py +1 -1
- {airbyte-api-0.47.2/src/airbyte/models/shared → airbyte-api-0.49.2/src/airbyte_api/models}/source_zoho_crm.py +1 -1
- airbyte-api-0.49.2/src/airbyte_api/models/source_zoom.py +26 -0
- {airbyte-api-0.47.2/src/airbyte/models/shared → airbyte-api-0.49.2/src/airbyte_api/models}/sourcecreaterequest.py +5 -3
- {airbyte-api-0.47.2/src/airbyte/models/shared → airbyte-api-0.49.2/src/airbyte_api/models}/sourcepatchrequest.py +5 -3
- {airbyte-api-0.47.2/src/airbyte/models/shared → airbyte-api-0.49.2/src/airbyte_api/models}/sourceputrequest.py +5 -3
- {airbyte-api-0.47.2/src/airbyte/models/shared → airbyte-api-0.49.2/src/airbyte_api/models}/sourceresponse.py +5 -3
- {airbyte-api-0.47.2/src/airbyte/models/shared → airbyte-api-0.49.2/src/airbyte_api/models}/sourcesresponse.py +1 -1
- {airbyte-api-0.47.2/src/airbyte/models/shared → airbyte-api-0.49.2/src/airbyte_api/models}/square.py +1 -1
- {airbyte-api-0.47.2/src/airbyte/models/shared → airbyte-api-0.49.2/src/airbyte_api/models}/strava.py +1 -1
- {airbyte-api-0.47.2/src/airbyte/models/shared → airbyte-api-0.49.2/src/airbyte_api/models}/streamconfiguration.py +1 -1
- {airbyte-api-0.47.2/src/airbyte/models/shared → airbyte-api-0.49.2/src/airbyte_api/models}/streamconfigurations.py +1 -1
- {airbyte-api-0.47.2/src/airbyte/models/shared → airbyte-api-0.49.2/src/airbyte_api/models}/streamproperties.py +1 -1
- {airbyte-api-0.47.2/src/airbyte/models/shared → airbyte-api-0.49.2/src/airbyte_api/models}/streampropertiesresponse.py +1 -1
- {airbyte-api-0.47.2/src/airbyte/models/shared → airbyte-api-0.49.2/src/airbyte_api/models}/surveymonkey.py +1 -1
- {airbyte-api-0.47.2/src/airbyte/models/shared → airbyte-api-0.49.2/src/airbyte_api/models}/tiktok_marketing.py +1 -1
- {airbyte-api-0.47.2/src/airbyte/models/shared → airbyte-api-0.49.2/src/airbyte_api/models}/typeform.py +1 -1
- {airbyte-api-0.47.2/src/airbyte/models/shared → airbyte-api-0.49.2/src/airbyte_api/models}/workspacecreaterequest.py +1 -1
- {airbyte-api-0.47.2/src/airbyte/models/shared → airbyte-api-0.49.2/src/airbyte_api/models}/workspaceoauthcredentialsrequest.py +3 -2
- {airbyte-api-0.47.2/src/airbyte/models/shared → airbyte-api-0.49.2/src/airbyte_api/models}/workspaceresponse.py +1 -1
- {airbyte-api-0.47.2/src/airbyte/models/shared → airbyte-api-0.49.2/src/airbyte_api/models}/workspacesresponse.py +1 -1
- {airbyte-api-0.47.2/src/airbyte/models/shared → airbyte-api-0.49.2/src/airbyte_api/models}/workspaceupdaterequest.py +1 -1
- {airbyte-api-0.47.2/src/airbyte/models/shared → airbyte-api-0.49.2/src/airbyte_api/models}/youtube_analytics.py +1 -1
- {airbyte-api-0.47.2/src/airbyte/models/shared → airbyte-api-0.49.2/src/airbyte_api/models}/zendesk_chat.py +1 -1
- {airbyte-api-0.47.2/src/airbyte/models/shared → airbyte-api-0.49.2/src/airbyte_api/models}/zendesk_sunshine.py +1 -1
- {airbyte-api-0.47.2/src/airbyte/models/shared → airbyte-api-0.49.2/src/airbyte_api/models}/zendesk_support.py +1 -1
- {airbyte-api-0.47.2/src/airbyte/models/shared → airbyte-api-0.49.2/src/airbyte_api/models}/zendesk_talk.py +1 -1
- {airbyte-api-0.47.2/src/airbyte → airbyte-api-0.49.2/src/airbyte_api}/sdk.py +37 -19
- {airbyte-api-0.47.2/src/airbyte → airbyte-api-0.49.2/src/airbyte_api}/sdkconfiguration.py +18 -10
- airbyte-api-0.49.2/src/airbyte_api/sources.py +407 -0
- airbyte-api-0.49.2/src/airbyte_api/streams.py +71 -0
- {airbyte-api-0.47.2/src/airbyte → airbyte-api-0.49.2/src/airbyte_api}/utils/retries.py +3 -4
- airbyte-api-0.49.2/src/airbyte_api/utils/utils.py +1060 -0
- airbyte-api-0.49.2/src/airbyte_api/workspaces.py +349 -0
- {airbyte-api-0.47.2 → airbyte-api-0.49.2}/src/airbyte_api.egg-info/PKG-INFO +75 -70
- airbyte-api-0.49.2/src/airbyte_api.egg-info/SOURCES.txt +374 -0
- {airbyte-api-0.47.2 → airbyte-api-0.49.2}/src/airbyte_api.egg-info/requires.txt +2 -2
- airbyte-api-0.49.2/src/airbyte_api.egg-info/top_level.txt +1 -0
- airbyte-api-0.47.2/setup.py +0 -41
- airbyte-api-0.47.2/src/airbyte/connections.py +0 -181
- airbyte-api-0.47.2/src/airbyte/destinations.py +0 -214
- airbyte-api-0.47.2/src/airbyte/jobs.py +0 -148
- airbyte-api-0.47.2/src/airbyte/models/shared/__init__.py +0 -327
- airbyte-api-0.47.2/src/airbyte/models/shared/destination_cumulio.py +0 -25
- airbyte-api-0.47.2/src/airbyte/models/shared/destination_databend.py +0 -31
- airbyte-api-0.47.2/src/airbyte/models/shared/destination_firebolt.py +0 -63
- airbyte-api-0.47.2/src/airbyte/models/shared/destination_keen.py +0 -25
- airbyte-api-0.47.2/src/airbyte/models/shared/destination_kinesis.py +0 -31
- airbyte-api-0.47.2/src/airbyte/models/shared/destination_timeplus.py +0 -23
- airbyte-api-0.47.2/src/airbyte/models/shared/destination_vertica.py +0 -90
- airbyte-api-0.47.2/src/airbyte/models/shared/destination_xata.py +0 -23
- airbyte-api-0.47.2/src/airbyte/models/shared/source_google_workspace_admin_reports.py +0 -25
- airbyte-api-0.47.2/src/airbyte/models/shared/source_zoom.py +0 -21
- airbyte-api-0.47.2/src/airbyte/sources.py +0 -253
- airbyte-api-0.47.2/src/airbyte/streams.py +0 -47
- airbyte-api-0.47.2/src/airbyte/utils/utils.py +0 -897
- airbyte-api-0.47.2/src/airbyte/workspaces.py +0 -217
- airbyte-api-0.47.2/src/airbyte_api.egg-info/SOURCES.txt +0 -377
- airbyte-api-0.47.2/src/airbyte_api.egg-info/top_level.txt +0 -1
- {airbyte-api-0.47.2 → airbyte-api-0.49.2}/LICENSE.md +0 -0
- {airbyte-api-0.47.2 → airbyte-api-0.49.2}/setup.cfg +0 -0
- {airbyte-api-0.47.2/src/airbyte → airbyte-api-0.49.2/src/airbyte_api}/__init__.py +0 -0
- {airbyte-api-0.47.2/src/airbyte/models/operations → airbyte-api-0.49.2/src/airbyte_api/api}/__init__.py +0 -0
- {airbyte-api-0.47.2/src/airbyte/models/operations → airbyte-api-0.49.2/src/airbyte_api/api}/deleteconnection.py +0 -0
- {airbyte-api-0.47.2/src/airbyte/models/operations → airbyte-api-0.49.2/src/airbyte_api/api}/deletedestination.py +0 -0
- {airbyte-api-0.47.2/src/airbyte/models/operations → airbyte-api-0.49.2/src/airbyte_api/api}/deletesource.py +0 -0
- {airbyte-api-0.47.2/src/airbyte/models/operations → airbyte-api-0.49.2/src/airbyte_api/api}/deleteworkspace.py +0 -0
- {airbyte-api-0.47.2/src/airbyte/models/operations → airbyte-api-0.49.2/src/airbyte_api/api}/initiateoauth.py +0 -0
- {airbyte-api-0.47.2/src/airbyte/models → airbyte-api-0.49.2/src/airbyte_api}/errors/__init__.py +0 -0
- {airbyte-api-0.47.2/src/airbyte/models → airbyte-api-0.49.2/src/airbyte_api}/errors/sdkerror.py +0 -0
- {airbyte-api-0.47.2/src/airbyte/models/shared → airbyte-api-0.49.2/src/airbyte_api/models}/actortypeenum.py +0 -0
- {airbyte-api-0.47.2/src/airbyte/models/shared → airbyte-api-0.49.2/src/airbyte_api/models}/connectionstatusenum.py +0 -0
- {airbyte-api-0.47.2/src/airbyte/models/shared → airbyte-api-0.49.2/src/airbyte_api/models}/connectionsyncmodeenum.py +0 -0
- {airbyte-api-0.47.2/src/airbyte/models/shared → airbyte-api-0.49.2/src/airbyte_api/models}/geographyenum.py +0 -0
- {airbyte-api-0.47.2/src/airbyte/models/shared → airbyte-api-0.49.2/src/airbyte_api/models}/geographyenumnodefault.py +0 -0
- {airbyte-api-0.47.2/src/airbyte/models/shared → airbyte-api-0.49.2/src/airbyte_api/models}/jobstatusenum.py +0 -0
- {airbyte-api-0.47.2/src/airbyte/models/shared → airbyte-api-0.49.2/src/airbyte_api/models}/jobtypeenum.py +0 -0
- {airbyte-api-0.47.2/src/airbyte/models/shared → airbyte-api-0.49.2/src/airbyte_api/models}/namespacedefinitionenum.py +0 -0
- {airbyte-api-0.47.2/src/airbyte/models/shared → airbyte-api-0.49.2/src/airbyte_api/models}/namespacedefinitionenumnodefault.py +0 -0
- {airbyte-api-0.47.2/src/airbyte/models/shared → airbyte-api-0.49.2/src/airbyte_api/models}/nonbreakingschemaupdatesbehaviorenum.py +0 -0
- {airbyte-api-0.47.2/src/airbyte/models/shared → airbyte-api-0.49.2/src/airbyte_api/models}/nonbreakingschemaupdatesbehaviorenumnodefault.py +0 -0
- {airbyte-api-0.47.2/src/airbyte/models/shared → airbyte-api-0.49.2/src/airbyte_api/models}/oauthinputconfiguration.py +0 -0
- {airbyte-api-0.47.2/src/airbyte/models/shared → airbyte-api-0.49.2/src/airbyte_api/models}/scheduletypeenum.py +0 -0
- {airbyte-api-0.47.2/src/airbyte/models/shared → airbyte-api-0.49.2/src/airbyte_api/models}/scheduletypewithbasicenum.py +0 -0
- {airbyte-api-0.47.2/src/airbyte/models/shared → airbyte-api-0.49.2/src/airbyte_api/models}/schemebasicauth.py +0 -0
- {airbyte-api-0.47.2/src/airbyte/models/shared → airbyte-api-0.49.2/src/airbyte_api/models}/security.py +0 -0
- {airbyte-api-0.47.2/src/airbyte → airbyte-api-0.49.2/src/airbyte_api}/utils/__init__.py +0 -0
- {airbyte-api-0.47.2 → airbyte-api-0.49.2}/src/airbyte_api.egg-info/dependency_links.txt +0 -0
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: airbyte-api
|
|
3
|
-
Version: 0.
|
|
3
|
+
Version: 0.49.2
|
|
4
4
|
Summary: Python Client SDK for Airbyte API
|
|
5
|
-
Home-page:
|
|
5
|
+
Home-page: https://github.com/airbytehq/airbyte-api-python-sdk.git
|
|
6
6
|
Author: Airbyte
|
|
7
7
|
License: UNKNOWN
|
|
8
8
|
Description: <div align="center">
|
|
@@ -34,19 +34,19 @@ Description: <div align="center">
|
|
|
34
34
|
### Example
|
|
35
35
|
|
|
36
36
|
```python
|
|
37
|
-
import
|
|
38
|
-
from
|
|
37
|
+
import airbyte_api
|
|
38
|
+
from airbyte_api import models
|
|
39
39
|
|
|
40
|
-
s =
|
|
41
|
-
security=
|
|
42
|
-
basic_auth=
|
|
40
|
+
s = airbyte_api.AirbyteAPI(
|
|
41
|
+
security=models.Security(
|
|
42
|
+
basic_auth=models.SchemeBasicAuth(
|
|
43
43
|
password="<YOUR_PASSWORD_HERE>",
|
|
44
44
|
username="<YOUR_USERNAME_HERE>",
|
|
45
45
|
),
|
|
46
46
|
),
|
|
47
47
|
)
|
|
48
48
|
|
|
49
|
-
req =
|
|
49
|
+
req = models.ConnectionCreateRequest(
|
|
50
50
|
destination_id='c669dd1e-3620-483e-afc8-55914e0a570f',
|
|
51
51
|
source_id='6dd427d8-3a55-4584-b835-842325b6c7b3',
|
|
52
52
|
namespace_format='${SOURCE_NAMESPACE}',
|
|
@@ -57,58 +57,59 @@ Description: <div align="center">
|
|
|
57
57
|
if res.connection_response is not None:
|
|
58
58
|
# handle response
|
|
59
59
|
pass
|
|
60
|
+
|
|
60
61
|
```
|
|
61
62
|
<!-- End SDK Example Usage [usage] -->
|
|
62
63
|
|
|
63
64
|
<!-- Start Available Resources and Operations [operations] -->
|
|
64
65
|
## Available Resources and Operations
|
|
65
66
|
|
|
66
|
-
### [connections](docs/sdks/connections/README.md)
|
|
67
|
+
### [connections](https://github.com/airbytehq/airbyte-api-python-sdk/blob/master/docs/sdks/connections/README.md)
|
|
67
68
|
|
|
68
|
-
* [create_connection](docs/sdks/connections/README.md#create_connection) - Create a connection
|
|
69
|
-
* [delete_connection](docs/sdks/connections/README.md#delete_connection) - Delete a Connection
|
|
70
|
-
* [get_connection](docs/sdks/connections/README.md#get_connection) - Get Connection details
|
|
71
|
-
* [list_connections](docs/sdks/connections/README.md#list_connections) - List connections
|
|
72
|
-
* [patch_connection](docs/sdks/connections/README.md#patch_connection) - Update Connection details
|
|
69
|
+
* [create_connection](https://github.com/airbytehq/airbyte-api-python-sdk/blob/master/docs/sdks/connections/README.md#create_connection) - Create a connection
|
|
70
|
+
* [delete_connection](https://github.com/airbytehq/airbyte-api-python-sdk/blob/master/docs/sdks/connections/README.md#delete_connection) - Delete a Connection
|
|
71
|
+
* [get_connection](https://github.com/airbytehq/airbyte-api-python-sdk/blob/master/docs/sdks/connections/README.md#get_connection) - Get Connection details
|
|
72
|
+
* [list_connections](https://github.com/airbytehq/airbyte-api-python-sdk/blob/master/docs/sdks/connections/README.md#list_connections) - List connections
|
|
73
|
+
* [patch_connection](https://github.com/airbytehq/airbyte-api-python-sdk/blob/master/docs/sdks/connections/README.md#patch_connection) - Update Connection details
|
|
73
74
|
|
|
74
|
-
### [destinations](docs/sdks/destinations/README.md)
|
|
75
|
+
### [destinations](https://github.com/airbytehq/airbyte-api-python-sdk/blob/master/docs/sdks/destinations/README.md)
|
|
75
76
|
|
|
76
|
-
* [create_destination](docs/sdks/destinations/README.md#create_destination) - Create a destination
|
|
77
|
-
* [delete_destination](docs/sdks/destinations/README.md#delete_destination) - Delete a Destination
|
|
78
|
-
* [get_destination](docs/sdks/destinations/README.md#get_destination) - Get Destination details
|
|
79
|
-
* [list_destinations](docs/sdks/destinations/README.md#list_destinations) - List destinations
|
|
80
|
-
* [patch_destination](docs/sdks/destinations/README.md#patch_destination) - Update a Destination
|
|
81
|
-
* [put_destination](docs/sdks/destinations/README.md#put_destination) - Update a Destination and fully overwrite it
|
|
77
|
+
* [create_destination](https://github.com/airbytehq/airbyte-api-python-sdk/blob/master/docs/sdks/destinations/README.md#create_destination) - Create a destination
|
|
78
|
+
* [delete_destination](https://github.com/airbytehq/airbyte-api-python-sdk/blob/master/docs/sdks/destinations/README.md#delete_destination) - Delete a Destination
|
|
79
|
+
* [get_destination](https://github.com/airbytehq/airbyte-api-python-sdk/blob/master/docs/sdks/destinations/README.md#get_destination) - Get Destination details
|
|
80
|
+
* [list_destinations](https://github.com/airbytehq/airbyte-api-python-sdk/blob/master/docs/sdks/destinations/README.md#list_destinations) - List destinations
|
|
81
|
+
* [patch_destination](https://github.com/airbytehq/airbyte-api-python-sdk/blob/master/docs/sdks/destinations/README.md#patch_destination) - Update a Destination
|
|
82
|
+
* [put_destination](https://github.com/airbytehq/airbyte-api-python-sdk/blob/master/docs/sdks/destinations/README.md#put_destination) - Update a Destination and fully overwrite it
|
|
82
83
|
|
|
83
|
-
### [jobs](docs/sdks/jobs/README.md)
|
|
84
|
+
### [jobs](https://github.com/airbytehq/airbyte-api-python-sdk/blob/master/docs/sdks/jobs/README.md)
|
|
84
85
|
|
|
85
|
-
* [cancel_job](docs/sdks/jobs/README.md#cancel_job) - Cancel a running Job
|
|
86
|
-
* [create_job](docs/sdks/jobs/README.md#create_job) - Trigger a sync or reset job of a connection
|
|
87
|
-
* [get_job](docs/sdks/jobs/README.md#get_job) - Get Job status and details
|
|
88
|
-
* [list_jobs](docs/sdks/jobs/README.md#list_jobs) - List Jobs by sync type
|
|
86
|
+
* [cancel_job](https://github.com/airbytehq/airbyte-api-python-sdk/blob/master/docs/sdks/jobs/README.md#cancel_job) - Cancel a running Job
|
|
87
|
+
* [create_job](https://github.com/airbytehq/airbyte-api-python-sdk/blob/master/docs/sdks/jobs/README.md#create_job) - Trigger a sync or reset job of a connection
|
|
88
|
+
* [get_job](https://github.com/airbytehq/airbyte-api-python-sdk/blob/master/docs/sdks/jobs/README.md#get_job) - Get Job status and details
|
|
89
|
+
* [list_jobs](https://github.com/airbytehq/airbyte-api-python-sdk/blob/master/docs/sdks/jobs/README.md#list_jobs) - List Jobs by sync type
|
|
89
90
|
|
|
90
|
-
### [sources](docs/sdks/sources/README.md)
|
|
91
|
+
### [sources](https://github.com/airbytehq/airbyte-api-python-sdk/blob/master/docs/sdks/sources/README.md)
|
|
91
92
|
|
|
92
|
-
* [create_source](docs/sdks/sources/README.md#create_source) - Create a source
|
|
93
|
-
* [delete_source](docs/sdks/sources/README.md#delete_source) - Delete a Source
|
|
94
|
-
* [get_source](docs/sdks/sources/README.md#get_source) - Get Source details
|
|
95
|
-
* [initiate_o_auth](docs/sdks/sources/README.md#initiate_o_auth) - Initiate OAuth for a source
|
|
96
|
-
* [list_sources](docs/sdks/sources/README.md#list_sources) - List sources
|
|
97
|
-
* [patch_source](docs/sdks/sources/README.md#patch_source) - Update a Source
|
|
98
|
-
* [put_source](docs/sdks/sources/README.md#put_source) - Update a Source and fully overwrite it
|
|
93
|
+
* [create_source](https://github.com/airbytehq/airbyte-api-python-sdk/blob/master/docs/sdks/sources/README.md#create_source) - Create a source
|
|
94
|
+
* [delete_source](https://github.com/airbytehq/airbyte-api-python-sdk/blob/master/docs/sdks/sources/README.md#delete_source) - Delete a Source
|
|
95
|
+
* [get_source](https://github.com/airbytehq/airbyte-api-python-sdk/blob/master/docs/sdks/sources/README.md#get_source) - Get Source details
|
|
96
|
+
* [initiate_o_auth](https://github.com/airbytehq/airbyte-api-python-sdk/blob/master/docs/sdks/sources/README.md#initiate_o_auth) - Initiate OAuth for a source
|
|
97
|
+
* [list_sources](https://github.com/airbytehq/airbyte-api-python-sdk/blob/master/docs/sdks/sources/README.md#list_sources) - List sources
|
|
98
|
+
* [patch_source](https://github.com/airbytehq/airbyte-api-python-sdk/blob/master/docs/sdks/sources/README.md#patch_source) - Update a Source
|
|
99
|
+
* [put_source](https://github.com/airbytehq/airbyte-api-python-sdk/blob/master/docs/sdks/sources/README.md#put_source) - Update a Source and fully overwrite it
|
|
99
100
|
|
|
100
|
-
### [streams](docs/sdks/streams/README.md)
|
|
101
|
+
### [streams](https://github.com/airbytehq/airbyte-api-python-sdk/blob/master/docs/sdks/streams/README.md)
|
|
101
102
|
|
|
102
|
-
* [get_stream_properties](docs/sdks/streams/README.md#get_stream_properties) - Get stream properties
|
|
103
|
+
* [get_stream_properties](https://github.com/airbytehq/airbyte-api-python-sdk/blob/master/docs/sdks/streams/README.md#get_stream_properties) - Get stream properties
|
|
103
104
|
|
|
104
|
-
### [workspaces](docs/sdks/workspaces/README.md)
|
|
105
|
+
### [workspaces](https://github.com/airbytehq/airbyte-api-python-sdk/blob/master/docs/sdks/workspaces/README.md)
|
|
105
106
|
|
|
106
|
-
* [create_or_update_workspace_o_auth_credentials](docs/sdks/workspaces/README.md#create_or_update_workspace_o_auth_credentials) - Create OAuth override credentials for a workspace and source type.
|
|
107
|
-
* [create_workspace](docs/sdks/workspaces/README.md#create_workspace) - Create a workspace
|
|
108
|
-
* [delete_workspace](docs/sdks/workspaces/README.md#delete_workspace) - Delete a Workspace
|
|
109
|
-
* [get_workspace](docs/sdks/workspaces/README.md#get_workspace) - Get Workspace details
|
|
110
|
-
* [list_workspaces](docs/sdks/workspaces/README.md#list_workspaces) - List workspaces
|
|
111
|
-
* [update_workspace](docs/sdks/workspaces/README.md#update_workspace) - Update a workspace
|
|
107
|
+
* [create_or_update_workspace_o_auth_credentials](https://github.com/airbytehq/airbyte-api-python-sdk/blob/master/docs/sdks/workspaces/README.md#create_or_update_workspace_o_auth_credentials) - Create OAuth override credentials for a workspace and source type.
|
|
108
|
+
* [create_workspace](https://github.com/airbytehq/airbyte-api-python-sdk/blob/master/docs/sdks/workspaces/README.md#create_workspace) - Create a workspace
|
|
109
|
+
* [delete_workspace](https://github.com/airbytehq/airbyte-api-python-sdk/blob/master/docs/sdks/workspaces/README.md#delete_workspace) - Delete a Workspace
|
|
110
|
+
* [get_workspace](https://github.com/airbytehq/airbyte-api-python-sdk/blob/master/docs/sdks/workspaces/README.md#get_workspace) - Get Workspace details
|
|
111
|
+
* [list_workspaces](https://github.com/airbytehq/airbyte-api-python-sdk/blob/master/docs/sdks/workspaces/README.md#list_workspaces) - List workspaces
|
|
112
|
+
* [update_workspace](https://github.com/airbytehq/airbyte-api-python-sdk/blob/master/docs/sdks/workspaces/README.md#update_workspace) - Update a workspace
|
|
112
113
|
<!-- End Available Resources and Operations [operations] -->
|
|
113
114
|
|
|
114
115
|
|
|
@@ -124,24 +125,24 @@ Description: <div align="center">
|
|
|
124
125
|
|
|
125
126
|
| Error Object | Status Code | Content Type |
|
|
126
127
|
| --------------- | --------------- | --------------- |
|
|
127
|
-
| errors.SDKError |
|
|
128
|
+
| errors.SDKError | 4xx-5xx | */* |
|
|
128
129
|
|
|
129
130
|
### Example
|
|
130
131
|
|
|
131
132
|
```python
|
|
132
|
-
import
|
|
133
|
-
from
|
|
133
|
+
import airbyte_api
|
|
134
|
+
from airbyte_api import errors, models
|
|
134
135
|
|
|
135
|
-
s =
|
|
136
|
-
security=
|
|
137
|
-
basic_auth=
|
|
136
|
+
s = airbyte_api.AirbyteAPI(
|
|
137
|
+
security=models.Security(
|
|
138
|
+
basic_auth=models.SchemeBasicAuth(
|
|
138
139
|
password="<YOUR_PASSWORD_HERE>",
|
|
139
140
|
username="<YOUR_USERNAME_HERE>",
|
|
140
141
|
),
|
|
141
142
|
),
|
|
142
143
|
)
|
|
143
144
|
|
|
144
|
-
req =
|
|
145
|
+
req = models.ConnectionCreateRequest(
|
|
145
146
|
destination_id='c669dd1e-3620-483e-afc8-55914e0a570f',
|
|
146
147
|
source_id='6dd427d8-3a55-4584-b835-842325b6c7b3',
|
|
147
148
|
namespace_format='${SOURCE_NAMESPACE}',
|
|
@@ -157,6 +158,7 @@ Description: <div align="center">
|
|
|
157
158
|
if res.connection_response is not None:
|
|
158
159
|
# handle response
|
|
159
160
|
pass
|
|
161
|
+
|
|
160
162
|
```
|
|
161
163
|
<!-- End Error Handling [errors] -->
|
|
162
164
|
|
|
@@ -176,20 +178,20 @@ Description: <div align="center">
|
|
|
176
178
|
#### Example
|
|
177
179
|
|
|
178
180
|
```python
|
|
179
|
-
import
|
|
180
|
-
from
|
|
181
|
+
import airbyte_api
|
|
182
|
+
from airbyte_api import models
|
|
181
183
|
|
|
182
|
-
s =
|
|
184
|
+
s = airbyte_api.AirbyteAPI(
|
|
183
185
|
server_idx=0,
|
|
184
|
-
security=
|
|
185
|
-
basic_auth=
|
|
186
|
+
security=models.Security(
|
|
187
|
+
basic_auth=models.SchemeBasicAuth(
|
|
186
188
|
password="<YOUR_PASSWORD_HERE>",
|
|
187
189
|
username="<YOUR_USERNAME_HERE>",
|
|
188
190
|
),
|
|
189
191
|
),
|
|
190
192
|
)
|
|
191
193
|
|
|
192
|
-
req =
|
|
194
|
+
req = models.ConnectionCreateRequest(
|
|
193
195
|
destination_id='c669dd1e-3620-483e-afc8-55914e0a570f',
|
|
194
196
|
source_id='6dd427d8-3a55-4584-b835-842325b6c7b3',
|
|
195
197
|
namespace_format='${SOURCE_NAMESPACE}',
|
|
@@ -200,6 +202,7 @@ Description: <div align="center">
|
|
|
200
202
|
if res.connection_response is not None:
|
|
201
203
|
# handle response
|
|
202
204
|
pass
|
|
205
|
+
|
|
203
206
|
```
|
|
204
207
|
|
|
205
208
|
|
|
@@ -207,20 +210,20 @@ Description: <div align="center">
|
|
|
207
210
|
|
|
208
211
|
The default server can also be overridden globally by passing a URL to the `server_url: str` optional parameter when initializing the SDK client instance. For example:
|
|
209
212
|
```python
|
|
210
|
-
import
|
|
211
|
-
from
|
|
213
|
+
import airbyte_api
|
|
214
|
+
from airbyte_api import models
|
|
212
215
|
|
|
213
|
-
s =
|
|
216
|
+
s = airbyte_api.AirbyteAPI(
|
|
214
217
|
server_url="https://api.airbyte.com/v1",
|
|
215
|
-
security=
|
|
216
|
-
basic_auth=
|
|
218
|
+
security=models.Security(
|
|
219
|
+
basic_auth=models.SchemeBasicAuth(
|
|
217
220
|
password="<YOUR_PASSWORD_HERE>",
|
|
218
221
|
username="<YOUR_USERNAME_HERE>",
|
|
219
222
|
),
|
|
220
223
|
),
|
|
221
224
|
)
|
|
222
225
|
|
|
223
|
-
req =
|
|
226
|
+
req = models.ConnectionCreateRequest(
|
|
224
227
|
destination_id='c669dd1e-3620-483e-afc8-55914e0a570f',
|
|
225
228
|
source_id='6dd427d8-3a55-4584-b835-842325b6c7b3',
|
|
226
229
|
namespace_format='${SOURCE_NAMESPACE}',
|
|
@@ -231,6 +234,7 @@ Description: <div align="center">
|
|
|
231
234
|
if res.connection_response is not None:
|
|
232
235
|
# handle response
|
|
233
236
|
pass
|
|
237
|
+
|
|
234
238
|
```
|
|
235
239
|
<!-- End Server Selection [server] -->
|
|
236
240
|
|
|
@@ -243,12 +247,12 @@ Description: <div align="center">
|
|
|
243
247
|
|
|
244
248
|
For example, you could specify a header for every request that this sdk makes as follows:
|
|
245
249
|
```python
|
|
246
|
-
import
|
|
250
|
+
import airbyte_api
|
|
247
251
|
import requests
|
|
248
252
|
|
|
249
253
|
http_client = requests.Session()
|
|
250
254
|
http_client.headers.update({'x-custom-header': 'someValue'})
|
|
251
|
-
s =
|
|
255
|
+
s = airbyte_api.AirbyteAPI(client=http_client)
|
|
252
256
|
```
|
|
253
257
|
<!-- End Custom HTTP Client [http-client] -->
|
|
254
258
|
|
|
@@ -268,19 +272,19 @@ Description: <div align="center">
|
|
|
268
272
|
|
|
269
273
|
You can set the security parameters through the `security` optional parameter when initializing the SDK client instance. The selected scheme will be used by default to authenticate with the API for all operations that support it. For example:
|
|
270
274
|
```python
|
|
271
|
-
import
|
|
272
|
-
from
|
|
275
|
+
import airbyte_api
|
|
276
|
+
from airbyte_api import models
|
|
273
277
|
|
|
274
|
-
s =
|
|
275
|
-
security=
|
|
276
|
-
basic_auth=
|
|
278
|
+
s = airbyte_api.AirbyteAPI(
|
|
279
|
+
security=models.Security(
|
|
280
|
+
basic_auth=models.SchemeBasicAuth(
|
|
277
281
|
password="<YOUR_PASSWORD_HERE>",
|
|
278
282
|
username="<YOUR_USERNAME_HERE>",
|
|
279
283
|
),
|
|
280
284
|
),
|
|
281
285
|
)
|
|
282
286
|
|
|
283
|
-
req =
|
|
287
|
+
req = models.ConnectionCreateRequest(
|
|
284
288
|
destination_id='c669dd1e-3620-483e-afc8-55914e0a570f',
|
|
285
289
|
source_id='6dd427d8-3a55-4584-b835-842325b6c7b3',
|
|
286
290
|
namespace_format='${SOURCE_NAMESPACE}',
|
|
@@ -291,6 +295,7 @@ Description: <div align="center">
|
|
|
291
295
|
if res.connection_response is not None:
|
|
292
296
|
# handle response
|
|
293
297
|
pass
|
|
298
|
+
|
|
294
299
|
```
|
|
295
300
|
<!-- End Authentication [security] -->
|
|
296
301
|
|
|
@@ -27,19 +27,19 @@ pip install airbyte-api
|
|
|
27
27
|
### Example
|
|
28
28
|
|
|
29
29
|
```python
|
|
30
|
-
import
|
|
31
|
-
from
|
|
30
|
+
import airbyte_api
|
|
31
|
+
from airbyte_api import models
|
|
32
32
|
|
|
33
|
-
s =
|
|
34
|
-
security=
|
|
35
|
-
basic_auth=
|
|
33
|
+
s = airbyte_api.AirbyteAPI(
|
|
34
|
+
security=models.Security(
|
|
35
|
+
basic_auth=models.SchemeBasicAuth(
|
|
36
36
|
password="<YOUR_PASSWORD_HERE>",
|
|
37
37
|
username="<YOUR_USERNAME_HERE>",
|
|
38
38
|
),
|
|
39
39
|
),
|
|
40
40
|
)
|
|
41
41
|
|
|
42
|
-
req =
|
|
42
|
+
req = models.ConnectionCreateRequest(
|
|
43
43
|
destination_id='c669dd1e-3620-483e-afc8-55914e0a570f',
|
|
44
44
|
source_id='6dd427d8-3a55-4584-b835-842325b6c7b3',
|
|
45
45
|
namespace_format='${SOURCE_NAMESPACE}',
|
|
@@ -50,6 +50,7 @@ res = s.connections.create_connection(req)
|
|
|
50
50
|
if res.connection_response is not None:
|
|
51
51
|
# handle response
|
|
52
52
|
pass
|
|
53
|
+
|
|
53
54
|
```
|
|
54
55
|
<!-- End SDK Example Usage [usage] -->
|
|
55
56
|
|
|
@@ -117,24 +118,24 @@ Handling errors in this SDK should largely match your expectations. All operati
|
|
|
117
118
|
|
|
118
119
|
| Error Object | Status Code | Content Type |
|
|
119
120
|
| --------------- | --------------- | --------------- |
|
|
120
|
-
| errors.SDKError |
|
|
121
|
+
| errors.SDKError | 4xx-5xx | */* |
|
|
121
122
|
|
|
122
123
|
### Example
|
|
123
124
|
|
|
124
125
|
```python
|
|
125
|
-
import
|
|
126
|
-
from
|
|
126
|
+
import airbyte_api
|
|
127
|
+
from airbyte_api import errors, models
|
|
127
128
|
|
|
128
|
-
s =
|
|
129
|
-
security=
|
|
130
|
-
basic_auth=
|
|
129
|
+
s = airbyte_api.AirbyteAPI(
|
|
130
|
+
security=models.Security(
|
|
131
|
+
basic_auth=models.SchemeBasicAuth(
|
|
131
132
|
password="<YOUR_PASSWORD_HERE>",
|
|
132
133
|
username="<YOUR_USERNAME_HERE>",
|
|
133
134
|
),
|
|
134
135
|
),
|
|
135
136
|
)
|
|
136
137
|
|
|
137
|
-
req =
|
|
138
|
+
req = models.ConnectionCreateRequest(
|
|
138
139
|
destination_id='c669dd1e-3620-483e-afc8-55914e0a570f',
|
|
139
140
|
source_id='6dd427d8-3a55-4584-b835-842325b6c7b3',
|
|
140
141
|
namespace_format='${SOURCE_NAMESPACE}',
|
|
@@ -150,6 +151,7 @@ except errors.SDKError as e:
|
|
|
150
151
|
if res.connection_response is not None:
|
|
151
152
|
# handle response
|
|
152
153
|
pass
|
|
154
|
+
|
|
153
155
|
```
|
|
154
156
|
<!-- End Error Handling [errors] -->
|
|
155
157
|
|
|
@@ -169,20 +171,20 @@ You can override the default server globally by passing a server index to the `s
|
|
|
169
171
|
#### Example
|
|
170
172
|
|
|
171
173
|
```python
|
|
172
|
-
import
|
|
173
|
-
from
|
|
174
|
+
import airbyte_api
|
|
175
|
+
from airbyte_api import models
|
|
174
176
|
|
|
175
|
-
s =
|
|
177
|
+
s = airbyte_api.AirbyteAPI(
|
|
176
178
|
server_idx=0,
|
|
177
|
-
security=
|
|
178
|
-
basic_auth=
|
|
179
|
+
security=models.Security(
|
|
180
|
+
basic_auth=models.SchemeBasicAuth(
|
|
179
181
|
password="<YOUR_PASSWORD_HERE>",
|
|
180
182
|
username="<YOUR_USERNAME_HERE>",
|
|
181
183
|
),
|
|
182
184
|
),
|
|
183
185
|
)
|
|
184
186
|
|
|
185
|
-
req =
|
|
187
|
+
req = models.ConnectionCreateRequest(
|
|
186
188
|
destination_id='c669dd1e-3620-483e-afc8-55914e0a570f',
|
|
187
189
|
source_id='6dd427d8-3a55-4584-b835-842325b6c7b3',
|
|
188
190
|
namespace_format='${SOURCE_NAMESPACE}',
|
|
@@ -193,6 +195,7 @@ res = s.connections.create_connection(req)
|
|
|
193
195
|
if res.connection_response is not None:
|
|
194
196
|
# handle response
|
|
195
197
|
pass
|
|
198
|
+
|
|
196
199
|
```
|
|
197
200
|
|
|
198
201
|
|
|
@@ -200,20 +203,20 @@ if res.connection_response is not None:
|
|
|
200
203
|
|
|
201
204
|
The default server can also be overridden globally by passing a URL to the `server_url: str` optional parameter when initializing the SDK client instance. For example:
|
|
202
205
|
```python
|
|
203
|
-
import
|
|
204
|
-
from
|
|
206
|
+
import airbyte_api
|
|
207
|
+
from airbyte_api import models
|
|
205
208
|
|
|
206
|
-
s =
|
|
209
|
+
s = airbyte_api.AirbyteAPI(
|
|
207
210
|
server_url="https://api.airbyte.com/v1",
|
|
208
|
-
security=
|
|
209
|
-
basic_auth=
|
|
211
|
+
security=models.Security(
|
|
212
|
+
basic_auth=models.SchemeBasicAuth(
|
|
210
213
|
password="<YOUR_PASSWORD_HERE>",
|
|
211
214
|
username="<YOUR_USERNAME_HERE>",
|
|
212
215
|
),
|
|
213
216
|
),
|
|
214
217
|
)
|
|
215
218
|
|
|
216
|
-
req =
|
|
219
|
+
req = models.ConnectionCreateRequest(
|
|
217
220
|
destination_id='c669dd1e-3620-483e-afc8-55914e0a570f',
|
|
218
221
|
source_id='6dd427d8-3a55-4584-b835-842325b6c7b3',
|
|
219
222
|
namespace_format='${SOURCE_NAMESPACE}',
|
|
@@ -224,6 +227,7 @@ res = s.connections.create_connection(req)
|
|
|
224
227
|
if res.connection_response is not None:
|
|
225
228
|
# handle response
|
|
226
229
|
pass
|
|
230
|
+
|
|
227
231
|
```
|
|
228
232
|
<!-- End Server Selection [server] -->
|
|
229
233
|
|
|
@@ -236,12 +240,12 @@ The Python SDK makes API calls using the [requests](https://pypi.org/project/req
|
|
|
236
240
|
|
|
237
241
|
For example, you could specify a header for every request that this sdk makes as follows:
|
|
238
242
|
```python
|
|
239
|
-
import
|
|
243
|
+
import airbyte_api
|
|
240
244
|
import requests
|
|
241
245
|
|
|
242
246
|
http_client = requests.Session()
|
|
243
247
|
http_client.headers.update({'x-custom-header': 'someValue'})
|
|
244
|
-
s =
|
|
248
|
+
s = airbyte_api.AirbyteAPI(client=http_client)
|
|
245
249
|
```
|
|
246
250
|
<!-- End Custom HTTP Client [http-client] -->
|
|
247
251
|
|
|
@@ -261,19 +265,19 @@ This SDK supports the following security schemes globally:
|
|
|
261
265
|
|
|
262
266
|
You can set the security parameters through the `security` optional parameter when initializing the SDK client instance. The selected scheme will be used by default to authenticate with the API for all operations that support it. For example:
|
|
263
267
|
```python
|
|
264
|
-
import
|
|
265
|
-
from
|
|
268
|
+
import airbyte_api
|
|
269
|
+
from airbyte_api import models
|
|
266
270
|
|
|
267
|
-
s =
|
|
268
|
-
security=
|
|
269
|
-
basic_auth=
|
|
271
|
+
s = airbyte_api.AirbyteAPI(
|
|
272
|
+
security=models.Security(
|
|
273
|
+
basic_auth=models.SchemeBasicAuth(
|
|
270
274
|
password="<YOUR_PASSWORD_HERE>",
|
|
271
275
|
username="<YOUR_USERNAME_HERE>",
|
|
272
276
|
),
|
|
273
277
|
),
|
|
274
278
|
)
|
|
275
279
|
|
|
276
|
-
req =
|
|
280
|
+
req = models.ConnectionCreateRequest(
|
|
277
281
|
destination_id='c669dd1e-3620-483e-afc8-55914e0a570f',
|
|
278
282
|
source_id='6dd427d8-3a55-4584-b835-842325b6c7b3',
|
|
279
283
|
namespace_format='${SOURCE_NAMESPACE}',
|
|
@@ -284,6 +288,7 @@ res = s.connections.create_connection(req)
|
|
|
284
288
|
if res.connection_response is not None:
|
|
285
289
|
# handle response
|
|
286
290
|
pass
|
|
291
|
+
|
|
287
292
|
```
|
|
288
293
|
<!-- End Authentication [security] -->
|
|
289
294
|
|
|
@@ -0,0 +1,55 @@
|
|
|
1
|
+
"""Code generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT."""
|
|
2
|
+
|
|
3
|
+
import setuptools
|
|
4
|
+
import re
|
|
5
|
+
|
|
6
|
+
try:
|
|
7
|
+
with open('README.md', 'r') as fh:
|
|
8
|
+
long_description = fh.read()
|
|
9
|
+
GITHUB_URL = 'https://github.com/airbytehq/airbyte-api-python-sdk.git'
|
|
10
|
+
GITHUB_URL = GITHUB_URL[: -len('.git')] if GITHUB_URL.endswith('.git') else GITHUB_URL
|
|
11
|
+
# links on PyPI should have absolute URLs
|
|
12
|
+
long_description = re.sub(
|
|
13
|
+
r'(\[[^\]]+\]\()((?!https?:)[^\)]+)(\))',
|
|
14
|
+
lambda m: m.group(1) + GITHUB_URL + '/blob/master/' + m.group(2) + m.group(3),
|
|
15
|
+
long_description,
|
|
16
|
+
)
|
|
17
|
+
except FileNotFoundError:
|
|
18
|
+
long_description = ''
|
|
19
|
+
|
|
20
|
+
setuptools.setup(
|
|
21
|
+
name='airbyte-api',
|
|
22
|
+
version='0.49.2',
|
|
23
|
+
author='Airbyte',
|
|
24
|
+
description='Python Client SDK for Airbyte API',
|
|
25
|
+
url='https://github.com/airbytehq/airbyte-api-python-sdk.git',
|
|
26
|
+
long_description=long_description,
|
|
27
|
+
long_description_content_type='text/markdown',
|
|
28
|
+
packages=setuptools.find_packages(where='src'),
|
|
29
|
+
install_requires=[
|
|
30
|
+
"certifi>=2023.7.22",
|
|
31
|
+
"charset-normalizer>=3.2.0",
|
|
32
|
+
"dataclasses-json>=0.6.4",
|
|
33
|
+
"idna>=3.4",
|
|
34
|
+
"jsonpath-python>=1.0.6",
|
|
35
|
+
"marshmallow>=3.19.0",
|
|
36
|
+
"mypy-extensions>=1.0.0",
|
|
37
|
+
"packaging>=23.1",
|
|
38
|
+
"python-dateutil>=2.8.2",
|
|
39
|
+
"requests>=2.31.0",
|
|
40
|
+
"six>=1.16.0",
|
|
41
|
+
"typing-inspect>=0.9.0",
|
|
42
|
+
"typing_extensions>=4.7.1",
|
|
43
|
+
"urllib3>=1.26.18",
|
|
44
|
+
],
|
|
45
|
+
extras_require={
|
|
46
|
+
"dev": [
|
|
47
|
+
"pylint==3.1.0",
|
|
48
|
+
],
|
|
49
|
+
},
|
|
50
|
+
package_dir={'': 'src'},
|
|
51
|
+
python_requires='>=3.8',
|
|
52
|
+
package_data={
|
|
53
|
+
'airbyte-api': ['py.typed']
|
|
54
|
+
},
|
|
55
|
+
)
|
|
@@ -0,0 +1,55 @@
|
|
|
1
|
+
"""Code generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT."""
|
|
2
|
+
|
|
3
|
+
import requests
|
|
4
|
+
from .types import SDKInitHook, BeforeRequestContext, BeforeRequestHook, AfterSuccessContext, AfterSuccessHook, AfterErrorContext, AfterErrorHook, Hooks
|
|
5
|
+
from typing import List, Optional, Tuple
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
class SDKHooks(Hooks):
|
|
9
|
+
def __init__(self):
|
|
10
|
+
self.sdk_init_hooks: List[SDKInitHook] = []
|
|
11
|
+
self.before_request_hooks: List[BeforeRequestHook] = []
|
|
12
|
+
self.after_success_hooks: List[AfterSuccessHook] = []
|
|
13
|
+
self.after_error_hooks: List[AfterErrorHook] = []
|
|
14
|
+
|
|
15
|
+
def register_sdk_init_hook(self, hook: SDKInitHook) -> None:
|
|
16
|
+
self.sdk_init_hooks.append(hook)
|
|
17
|
+
|
|
18
|
+
def register_before_request_hook(self, hook: BeforeRequestHook) -> None:
|
|
19
|
+
self.before_request_hooks.append(hook)
|
|
20
|
+
|
|
21
|
+
def register_after_success_hook(self, hook: AfterSuccessHook) -> None:
|
|
22
|
+
self.after_success_hooks.append(hook)
|
|
23
|
+
|
|
24
|
+
def register_after_error_hook(self, hook: AfterErrorHook) -> None:
|
|
25
|
+
self.after_error_hooks.append(hook)
|
|
26
|
+
|
|
27
|
+
def sdk_init(self, base_url: str, client: requests.Session) -> Tuple[str, requests.Session]:
|
|
28
|
+
for hook in self.sdk_init_hooks:
|
|
29
|
+
base_url, client = hook.sdk_init(base_url, client)
|
|
30
|
+
return base_url, client
|
|
31
|
+
|
|
32
|
+
def before_request(self, hook_ctx: BeforeRequestContext, request: requests.PreparedRequest) -> requests.PreparedRequest:
|
|
33
|
+
for hook in self.before_request_hooks:
|
|
34
|
+
out = hook.before_request(hook_ctx, request)
|
|
35
|
+
if isinstance(out, Exception):
|
|
36
|
+
raise out
|
|
37
|
+
request = out
|
|
38
|
+
|
|
39
|
+
return request
|
|
40
|
+
|
|
41
|
+
def after_success(self, hook_ctx: AfterSuccessContext, response: requests.Response) -> requests.Response:
|
|
42
|
+
for hook in self.after_success_hooks:
|
|
43
|
+
out = hook.after_success(hook_ctx, response)
|
|
44
|
+
if isinstance(out, Exception):
|
|
45
|
+
raise out
|
|
46
|
+
response = out
|
|
47
|
+
return response
|
|
48
|
+
|
|
49
|
+
def after_error(self, hook_ctx: AfterErrorContext, response: Optional[requests.Response], error: Optional[Exception]) -> Tuple[Optional[requests.Response], Optional[Exception]]:
|
|
50
|
+
for hook in self.after_error_hooks:
|
|
51
|
+
result = hook.after_error(hook_ctx, response, error)
|
|
52
|
+
if isinstance(result, Exception):
|
|
53
|
+
raise result
|
|
54
|
+
response, error = result
|
|
55
|
+
return response, error
|