airbyte-api 0.40.0__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.
Files changed (424) hide show
  1. airbyte-api-0.44.3/PKG-INFO +407 -0
  2. airbyte-api-0.44.3/README.md +395 -0
  3. {airbyte-api-0.40.0 → airbyte-api-0.44.3}/setup.py +2 -2
  4. {airbyte-api-0.40.0 → airbyte-api-0.44.3}/src/airbyte/__init__.py +0 -0
  5. {airbyte-api-0.40.0 → airbyte-api-0.44.3}/src/airbyte/connections.py +32 -12
  6. {airbyte-api-0.40.0 → airbyte-api-0.44.3}/src/airbyte/destinations.py +40 -16
  7. {airbyte-api-0.40.0 → airbyte-api-0.44.3}/src/airbyte/jobs.py +25 -9
  8. {airbyte-api-0.40.0 → airbyte-api-0.44.3}/src/airbyte/models/__init__.py +2 -1
  9. {airbyte-api-0.40.0 → airbyte-api-0.44.3}/src/airbyte/models/errors/__init__.py +2 -1
  10. {airbyte-api-0.40.0 → airbyte-api-0.44.3}/src/airbyte/models/errors/sdkerror.py +0 -0
  11. {airbyte-api-0.40.0 → airbyte-api-0.44.3}/src/airbyte/models/operations/__init__.py +0 -0
  12. {airbyte-api-0.40.0 → airbyte-api-0.44.3}/src/airbyte/models/operations/canceljob.py +3 -3
  13. {airbyte-api-0.40.0 → airbyte-api-0.44.3}/src/airbyte/models/operations/createconnection.py +3 -3
  14. {airbyte-api-0.40.0 → airbyte-api-0.44.3}/src/airbyte/models/operations/createdestination.py +3 -3
  15. {airbyte-api-0.40.0 → airbyte-api-0.44.3}/src/airbyte/models/operations/createjob.py +3 -3
  16. {airbyte-api-0.40.0 → airbyte-api-0.44.3}/src/airbyte/models/operations/createorupdateworkspaceoauthcredentials.py +3 -4
  17. {airbyte-api-0.40.0 → airbyte-api-0.44.3}/src/airbyte/models/operations/createsource.py +3 -3
  18. {airbyte-api-0.40.0 → airbyte-api-0.44.3}/src/airbyte/models/operations/createworkspace.py +3 -3
  19. {airbyte-api-0.40.0 → airbyte-api-0.44.3}/src/airbyte/models/operations/deleteconnection.py +2 -3
  20. {airbyte-api-0.40.0 → airbyte-api-0.44.3}/src/airbyte/models/operations/deletedestination.py +2 -3
  21. {airbyte-api-0.40.0 → airbyte-api-0.44.3}/src/airbyte/models/operations/deletesource.py +2 -3
  22. {airbyte-api-0.40.0 → airbyte-api-0.44.3}/src/airbyte/models/operations/deleteworkspace.py +2 -3
  23. {airbyte-api-0.40.0 → airbyte-api-0.44.3}/src/airbyte/models/operations/getconnection.py +3 -3
  24. {airbyte-api-0.40.0 → airbyte-api-0.44.3}/src/airbyte/models/operations/getdestination.py +3 -3
  25. {airbyte-api-0.40.0 → airbyte-api-0.44.3}/src/airbyte/models/operations/getjob.py +3 -3
  26. {airbyte-api-0.40.0 → airbyte-api-0.44.3}/src/airbyte/models/operations/getsource.py +3 -3
  27. {airbyte-api-0.40.0 → airbyte-api-0.44.3}/src/airbyte/models/operations/getstreamproperties.py +3 -3
  28. {airbyte-api-0.40.0 → airbyte-api-0.44.3}/src/airbyte/models/operations/getworkspace.py +3 -3
  29. {airbyte-api-0.40.0 → airbyte-api-0.44.3}/src/airbyte/models/operations/initiateoauth.py +2 -3
  30. {airbyte-api-0.40.0 → airbyte-api-0.44.3}/src/airbyte/models/operations/listconnections.py +3 -3
  31. {airbyte-api-0.40.0 → airbyte-api-0.44.3}/src/airbyte/models/operations/listdestinations.py +3 -3
  32. {airbyte-api-0.40.0 → airbyte-api-0.44.3}/src/airbyte/models/operations/listjobs.py +5 -5
  33. {airbyte-api-0.40.0 → airbyte-api-0.44.3}/src/airbyte/models/operations/listsources.py +3 -3
  34. {airbyte-api-0.40.0 → airbyte-api-0.44.3}/src/airbyte/models/operations/listworkspaces.py +3 -3
  35. {airbyte-api-0.40.0 → airbyte-api-0.44.3}/src/airbyte/models/operations/patchconnection.py +4 -4
  36. {airbyte-api-0.40.0 → airbyte-api-0.44.3}/src/airbyte/models/operations/patchdestination.py +4 -4
  37. {airbyte-api-0.40.0 → airbyte-api-0.44.3}/src/airbyte/models/operations/patchsource.py +4 -4
  38. {airbyte-api-0.40.0 → airbyte-api-0.44.3}/src/airbyte/models/operations/putdestination.py +4 -4
  39. {airbyte-api-0.40.0 → airbyte-api-0.44.3}/src/airbyte/models/operations/putsource.py +4 -4
  40. {airbyte-api-0.40.0 → airbyte-api-0.44.3}/src/airbyte/models/operations/updateworkspace.py +4 -4
  41. airbyte-api-0.44.3/src/airbyte/models/shared/__init__.py +327 -0
  42. {airbyte-api-0.40.0 → airbyte-api-0.44.3}/src/airbyte/models/shared/actortypeenum.py +0 -0
  43. {airbyte-api-0.40.0 → airbyte-api-0.44.3}/src/airbyte/models/shared/airtable.py +2 -3
  44. {airbyte-api-0.40.0 → airbyte-api-0.44.3}/src/airbyte/models/shared/amazon_ads.py +0 -1
  45. {airbyte-api-0.40.0 → airbyte-api-0.44.3}/src/airbyte/models/shared/amazon_seller_partner.py +0 -1
  46. {airbyte-api-0.40.0 → airbyte-api-0.44.3}/src/airbyte/models/shared/asana.py +0 -1
  47. {airbyte-api-0.40.0 → airbyte-api-0.44.3}/src/airbyte/models/shared/bing_ads.py +0 -1
  48. airbyte-api-0.44.3/src/airbyte/models/shared/connectioncreaterequest.py +38 -0
  49. airbyte-api-0.44.3/src/airbyte/models/shared/connectionpatchrequest.py +36 -0
  50. airbyte-api-0.44.3/src/airbyte/models/shared/connectionresponse.py +38 -0
  51. {airbyte-api-0.40.0 → airbyte-api-0.44.3}/src/airbyte/models/shared/connectionschedule.py +2 -2
  52. {airbyte-api-0.40.0 → airbyte-api-0.44.3}/src/airbyte/models/shared/connectionscheduleresponse.py +2 -2
  53. {airbyte-api-0.40.0 → airbyte-api-0.44.3}/src/airbyte/models/shared/connectionsresponse.py +2 -2
  54. {airbyte-api-0.40.0 → airbyte-api-0.44.3}/src/airbyte/models/shared/connectionstatusenum.py +0 -0
  55. {airbyte-api-0.40.0 → airbyte-api-0.44.3}/src/airbyte/models/shared/connectionsyncmodeenum.py +0 -0
  56. {airbyte-api-0.40.0 → airbyte-api-0.44.3}/src/airbyte/models/shared/destination_aws_datalake.py +38 -45
  57. {airbyte-api-0.40.0 → airbyte-api-0.44.3}/src/airbyte/models/shared/destination_azure_blob_storage.py +11 -19
  58. {airbyte-api-0.40.0 → airbyte-api-0.44.3}/src/airbyte/models/shared/destination_bigquery.py +37 -45
  59. {airbyte-api-0.40.0 → airbyte-api-0.44.3}/src/airbyte/models/shared/destination_clickhouse.py +12 -21
  60. {airbyte-api-0.40.0 → airbyte-api-0.44.3}/src/airbyte/models/shared/destination_convex.py +2 -3
  61. {airbyte-api-0.40.0 → airbyte-api-0.44.3}/src/airbyte/models/shared/destination_cumulio.py +2 -3
  62. {airbyte-api-0.40.0 → airbyte-api-0.44.3}/src/airbyte/models/shared/destination_databend.py +2 -3
  63. {airbyte-api-0.40.0 → airbyte-api-0.44.3}/src/airbyte/models/shared/destination_databricks.py +14 -23
  64. airbyte-api-0.44.3/src/airbyte/models/shared/destination_dev_null.py +32 -0
  65. airbyte-api-0.44.3/src/airbyte/models/shared/destination_duckdb.py +25 -0
  66. {airbyte-api-0.40.0 → airbyte-api-0.44.3}/src/airbyte/models/shared/destination_dynamodb.py +18 -11
  67. {airbyte-api-0.40.0 → airbyte-api-0.44.3}/src/airbyte/models/shared/destination_elasticsearch.py +9 -15
  68. {airbyte-api-0.40.0 → airbyte-api-0.44.3}/src/airbyte/models/shared/destination_firebolt.py +9 -17
  69. {airbyte-api-0.40.0 → airbyte-api-0.44.3}/src/airbyte/models/shared/destination_firestore.py +2 -3
  70. airbyte-api-0.44.3/src/airbyte/models/shared/destination_gcs.py +279 -0
  71. {airbyte-api-0.40.0 → airbyte-api-0.44.3}/src/airbyte/models/shared/destination_google_sheets.py +2 -3
  72. {airbyte-api-0.40.0 → airbyte-api-0.44.3}/src/airbyte/models/shared/destination_keen.py +2 -3
  73. {airbyte-api-0.40.0 → airbyte-api-0.44.3}/src/airbyte/models/shared/destination_kinesis.py +2 -3
  74. {airbyte-api-0.40.0 → airbyte-api-0.44.3}/src/airbyte/models/shared/destination_langchain.py +21 -32
  75. airbyte-api-0.44.3/src/airbyte/models/shared/destination_milvus.py +267 -0
  76. airbyte-api-0.44.3/src/airbyte/models/shared/destination_mongodb.py +153 -0
  77. {airbyte-api-0.40.0 → airbyte-api-0.44.3}/src/airbyte/models/shared/destination_mssql.py +19 -33
  78. {airbyte-api-0.40.0 → airbyte-api-0.44.3}/src/airbyte/models/shared/destination_mysql.py +12 -21
  79. {airbyte-api-0.40.0 → airbyte-api-0.44.3}/src/airbyte/models/shared/destination_oracle.py +12 -21
  80. airbyte-api-0.44.3/src/airbyte/models/shared/destination_pinecone.py +219 -0
  81. {airbyte-api-0.40.0 → airbyte-api-0.44.3}/src/airbyte/models/shared/destination_postgres.py +31 -45
  82. {airbyte-api-0.40.0 → airbyte-api-0.44.3}/src/airbyte/models/shared/destination_pubsub.py +2 -3
  83. airbyte-api-0.44.3/src/airbyte/models/shared/destination_qdrant.py +255 -0
  84. {airbyte-api-0.40.0 → airbyte-api-0.44.3}/src/airbyte/models/shared/destination_redis.py +21 -35
  85. {airbyte-api-0.40.0 → airbyte-api-0.44.3}/src/airbyte/models/shared/destination_redshift.py +63 -64
  86. airbyte-api-0.44.3/src/airbyte/models/shared/destination_s3.py +278 -0
  87. {airbyte-api-0.40.0 → airbyte-api-0.44.3}/src/airbyte/models/shared/destination_s3_glue.py +31 -37
  88. {airbyte-api-0.40.0 → airbyte-api-0.44.3}/src/airbyte/models/shared/destination_sftp_json.py +2 -3
  89. {airbyte-api-0.40.0 → airbyte-api-0.44.3}/src/airbyte/models/shared/destination_snowflake.py +15 -17
  90. {airbyte-api-0.40.0 → airbyte-api-0.44.3}/src/airbyte/models/shared/destination_timeplus.py +2 -3
  91. {airbyte-api-0.40.0 → airbyte-api-0.44.3}/src/airbyte/models/shared/destination_typesense.py +2 -3
  92. airbyte-api-0.44.3/src/airbyte/models/shared/destination_vectara.py +44 -0
  93. {airbyte-api-0.40.0 → airbyte-api-0.44.3}/src/airbyte/models/shared/destination_vertica.py +12 -21
  94. airbyte-api-0.44.3/src/airbyte/models/shared/destination_weaviate.py +315 -0
  95. {airbyte-api-0.40.0 → airbyte-api-0.44.3}/src/airbyte/models/shared/destination_xata.py +2 -3
  96. airbyte-api-0.44.3/src/airbyte/models/shared/destinationcreaterequest.py +61 -0
  97. airbyte-api-0.44.3/src/airbyte/models/shared/destinationpatchrequest.py +57 -0
  98. airbyte-api-0.44.3/src/airbyte/models/shared/destinationputrequest.py +57 -0
  99. airbyte-api-0.44.3/src/airbyte/models/shared/destinationresponse.py +61 -0
  100. {airbyte-api-0.40.0 → airbyte-api-0.44.3}/src/airbyte/models/shared/destinationsresponse.py +2 -2
  101. {airbyte-api-0.40.0 → airbyte-api-0.44.3}/src/airbyte/models/shared/facebook_marketing.py +0 -1
  102. {airbyte-api-0.40.0 → airbyte-api-0.44.3}/src/airbyte/models/shared/geographyenum.py +0 -0
  103. {airbyte-api-0.40.0 → airbyte-api-0.44.3}/src/airbyte/models/shared/geographyenumnodefault.py +0 -0
  104. {airbyte-api-0.40.0 → airbyte-api-0.44.3}/src/airbyte/models/shared/github.py +0 -1
  105. {airbyte-api-0.40.0 → airbyte-api-0.44.3}/src/airbyte/models/shared/gitlab.py +0 -1
  106. {airbyte-api-0.40.0 → airbyte-api-0.44.3}/src/airbyte/models/shared/google_ads.py +0 -1
  107. {airbyte-api-0.40.0 → airbyte-api-0.44.3}/src/airbyte/models/shared/google_analytics_data_api.py +0 -1
  108. airbyte-api-0.44.3/src/airbyte/models/shared/google_drive.py +26 -0
  109. {airbyte-api-0.40.0 → airbyte-api-0.44.3}/src/airbyte/models/shared/google_search_console.py +2 -3
  110. {airbyte-api-0.40.0 → airbyte-api-0.44.3}/src/airbyte/models/shared/google_sheets.py +0 -1
  111. {airbyte-api-0.40.0 → airbyte-api-0.44.3}/src/airbyte/models/shared/harvest.py +0 -1
  112. {airbyte-api-0.40.0 → airbyte-api-0.44.3}/src/airbyte/models/shared/hubspot.py +0 -1
  113. {airbyte-api-0.40.0 → airbyte-api-0.44.3}/src/airbyte/models/shared/initiateoauthrequest.py +4 -4
  114. {airbyte-api-0.40.0 → airbyte-api-0.44.3}/src/airbyte/models/shared/instagram.py +0 -1
  115. {airbyte-api-0.40.0 → airbyte-api-0.44.3}/src/airbyte/models/shared/intercom.py +0 -1
  116. {airbyte-api-0.40.0 → airbyte-api-0.44.3}/src/airbyte/models/shared/jobcreaterequest.py +2 -2
  117. {airbyte-api-0.40.0 → airbyte-api-0.44.3}/src/airbyte/models/shared/jobresponse.py +4 -4
  118. {airbyte-api-0.40.0 → airbyte-api-0.44.3}/src/airbyte/models/shared/jobsresponse.py +2 -2
  119. {airbyte-api-0.40.0 → airbyte-api-0.44.3}/src/airbyte/models/shared/jobstatusenum.py +0 -0
  120. {airbyte-api-0.40.0 → airbyte-api-0.44.3}/src/airbyte/models/shared/jobtypeenum.py +0 -0
  121. {airbyte-api-0.40.0 → airbyte-api-0.44.3}/src/airbyte/models/shared/lever_hiring.py +0 -1
  122. {airbyte-api-0.40.0 → airbyte-api-0.44.3}/src/airbyte/models/shared/linkedin_ads.py +0 -1
  123. {airbyte-api-0.40.0 → airbyte-api-0.44.3}/src/airbyte/models/shared/mailchimp.py +0 -1
  124. {airbyte-api-0.40.0 → airbyte-api-0.44.3}/src/airbyte/models/shared/microsoft_teams.py +0 -1
  125. {airbyte-api-0.40.0 → airbyte-api-0.44.3}/src/airbyte/models/shared/monday.py +0 -1
  126. {airbyte-api-0.40.0 → airbyte-api-0.44.3}/src/airbyte/models/shared/namespacedefinitionenum.py +0 -0
  127. {airbyte-api-0.40.0 → airbyte-api-0.44.3}/src/airbyte/models/shared/namespacedefinitionenumnodefault.py +0 -0
  128. {airbyte-api-0.40.0 → airbyte-api-0.44.3}/src/airbyte/models/shared/nonbreakingschemaupdatesbehaviorenum.py +0 -0
  129. {airbyte-api-0.40.0 → airbyte-api-0.44.3}/src/airbyte/models/shared/nonbreakingschemaupdatesbehaviorenumnodefault.py +0 -0
  130. {airbyte-api-0.40.0 → airbyte-api-0.44.3}/src/airbyte/models/shared/notion.py +2 -3
  131. {airbyte-api-0.40.0 → airbyte-api-0.44.3}/src/airbyte/models/shared/oauthactornames.py +1 -3
  132. {airbyte-api-0.40.0 → airbyte-api-0.44.3}/src/airbyte/models/shared/oauthinputconfiguration.py +0 -0
  133. {airbyte-api-0.40.0 → airbyte-api-0.44.3}/src/airbyte/models/shared/pinterest.py +0 -1
  134. {airbyte-api-0.40.0 → airbyte-api-0.44.3}/src/airbyte/models/shared/retently.py +0 -1
  135. {airbyte-api-0.40.0 → airbyte-api-0.44.3}/src/airbyte/models/shared/salesforce.py +0 -1
  136. {airbyte-api-0.40.0 → airbyte-api-0.44.3}/src/airbyte/models/shared/scheduletypeenum.py +0 -0
  137. {airbyte-api-0.40.0 → airbyte-api-0.44.3}/src/airbyte/models/shared/scheduletypewithbasicenum.py +0 -0
  138. airbyte-api-0.44.3/src/airbyte/models/shared/schemebasicauth.py +12 -0
  139. {airbyte-api-0.40.0 → airbyte-api-0.44.3}/src/airbyte/models/shared/security.py +1 -8
  140. {airbyte-api-0.40.0 → airbyte-api-0.44.3}/src/airbyte/models/shared/shopify.py +0 -1
  141. {airbyte-api-0.40.0 → airbyte-api-0.44.3}/src/airbyte/models/shared/slack.py +0 -1
  142. {airbyte-api-0.40.0 → airbyte-api-0.44.3}/src/airbyte/models/shared/smartsheets.py +0 -1
  143. {airbyte-api-0.40.0 → airbyte-api-0.44.3}/src/airbyte/models/shared/snapchat_marketing.py +0 -1
  144. {airbyte-api-0.40.0 → airbyte-api-0.44.3}/src/airbyte/models/shared/snowflake.py +0 -1
  145. {airbyte-api-0.40.0 → airbyte-api-0.44.3}/src/airbyte/models/shared/source_aha.py +2 -3
  146. {airbyte-api-0.40.0 → airbyte-api-0.44.3}/src/airbyte/models/shared/source_aircall.py +2 -3
  147. {airbyte-api-0.40.0 → airbyte-api-0.44.3}/src/airbyte/models/shared/source_airtable.py +7 -13
  148. {airbyte-api-0.40.0 → airbyte-api-0.44.3}/src/airbyte/models/shared/source_alloydb.py +45 -64
  149. {airbyte-api-0.40.0 → airbyte-api-0.44.3}/src/airbyte/models/shared/source_amazon_ads.py +8 -8
  150. airbyte-api-0.44.3/src/airbyte/models/shared/source_amazon_seller_partner.py +147 -0
  151. {airbyte-api-0.40.0 → airbyte-api-0.44.3}/src/airbyte/models/shared/source_amazon_sqs.py +16 -9
  152. {airbyte-api-0.40.0 → airbyte-api-0.44.3}/src/airbyte/models/shared/source_amplitude.py +7 -6
  153. airbyte-api-0.44.3/src/airbyte/models/shared/source_apify_dataset.py +23 -0
  154. {airbyte-api-0.40.0 → airbyte-api-0.44.3}/src/airbyte/models/shared/source_appfollow.py +2 -3
  155. {airbyte-api-0.40.0 → airbyte-api-0.44.3}/src/airbyte/models/shared/source_asana.py +12 -16
  156. {airbyte-api-0.40.0 → airbyte-api-0.44.3}/src/airbyte/models/shared/source_auth0.py +9 -15
  157. {airbyte-api-0.40.0 → airbyte-api-0.44.3}/src/airbyte/models/shared/source_aws_cloudtrail.py +2 -3
  158. airbyte-api-0.44.3/src/airbyte/models/shared/source_azure_blob_storage.py +218 -0
  159. {airbyte-api-0.40.0 → airbyte-api-0.44.3}/src/airbyte/models/shared/source_azure_table.py +2 -3
  160. {airbyte-api-0.40.0 → airbyte-api-0.44.3}/src/airbyte/models/shared/source_bamboo_hr.py +2 -3
  161. {airbyte-api-0.40.0 → airbyte-api-0.44.3}/src/airbyte/models/shared/source_bigquery.py +0 -1
  162. airbyte-api-0.44.3/src/airbyte/models/shared/source_bing_ads.py +111 -0
  163. {airbyte-api-0.40.0 → airbyte-api-0.44.3}/src/airbyte/models/shared/source_braintree.py +2 -3
  164. {airbyte-api-0.40.0 → airbyte-api-0.44.3}/src/airbyte/models/shared/source_braze.py +2 -3
  165. airbyte-api-0.44.3/src/airbyte/models/shared/source_cart.py +54 -0
  166. {airbyte-api-0.40.0 → airbyte-api-0.44.3}/src/airbyte/models/shared/source_chargebee.py +4 -5
  167. {airbyte-api-0.40.0 → airbyte-api-0.44.3}/src/airbyte/models/shared/source_chartmogul.py +3 -13
  168. {airbyte-api-0.40.0 → airbyte-api-0.44.3}/src/airbyte/models/shared/source_clickhouse.py +12 -19
  169. {airbyte-api-0.40.0 → airbyte-api-0.44.3}/src/airbyte/models/shared/source_clickup_api.py +2 -3
  170. {airbyte-api-0.40.0 → airbyte-api-0.44.3}/src/airbyte/models/shared/source_clockify.py +2 -3
  171. {airbyte-api-0.40.0 → airbyte-api-0.44.3}/src/airbyte/models/shared/source_close_com.py +2 -3
  172. {airbyte-api-0.40.0 → airbyte-api-0.44.3}/src/airbyte/models/shared/source_coda.py +2 -3
  173. {airbyte-api-0.40.0 → airbyte-api-0.44.3}/src/airbyte/models/shared/source_coin_api.py +4 -5
  174. {airbyte-api-0.40.0 → airbyte-api-0.44.3}/src/airbyte/models/shared/source_coinmarketcap.py +4 -5
  175. {airbyte-api-0.40.0 → airbyte-api-0.44.3}/src/airbyte/models/shared/source_configcat.py +2 -3
  176. {airbyte-api-0.40.0 → airbyte-api-0.44.3}/src/airbyte/models/shared/source_confluence.py +2 -3
  177. {airbyte-api-0.40.0 → airbyte-api-0.44.3}/src/airbyte/models/shared/source_convex.py +0 -1
  178. {airbyte-api-0.40.0 → airbyte-api-0.44.3}/src/airbyte/models/shared/source_datascope.py +2 -3
  179. {airbyte-api-0.40.0 → airbyte-api-0.44.3}/src/airbyte/models/shared/source_delighted.py +2 -3
  180. {airbyte-api-0.40.0 → airbyte-api-0.44.3}/src/airbyte/models/shared/source_dixa.py +5 -4
  181. {airbyte-api-0.40.0 → airbyte-api-0.44.3}/src/airbyte/models/shared/source_dockerhub.py +2 -3
  182. {airbyte-api-0.40.0 → airbyte-api-0.44.3}/src/airbyte/models/shared/source_dremio.py +2 -3
  183. {airbyte-api-0.40.0 → airbyte-api-0.44.3}/src/airbyte/models/shared/source_dynamodb.py +14 -7
  184. {airbyte-api-0.40.0 → airbyte-api-0.44.3}/src/airbyte/models/shared/source_e2e_test_cloud.py +14 -19
  185. {airbyte-api-0.40.0 → airbyte-api-0.44.3}/src/airbyte/models/shared/source_emailoctopus.py +2 -3
  186. {airbyte-api-0.40.0 → airbyte-api-0.44.3}/src/airbyte/models/shared/source_exchange_rates.py +2 -3
  187. {airbyte-api-0.40.0 → airbyte-api-0.44.3}/src/airbyte/models/shared/source_facebook_marketing.py +20 -19
  188. {airbyte-api-0.40.0 → airbyte-api-0.44.3}/src/airbyte/models/shared/source_faker.py +2 -3
  189. {airbyte-api-0.40.0 → airbyte-api-0.44.3}/src/airbyte/models/shared/source_fauna.py +11 -27
  190. airbyte-api-0.40.0/src/airbyte/models/shared/source_file_secure.py → airbyte-api-0.44.3/src/airbyte/models/shared/source_file.py +28 -41
  191. {airbyte-api-0.40.0 → airbyte-api-0.44.3}/src/airbyte/models/shared/source_firebolt.py +0 -1
  192. {airbyte-api-0.40.0 → airbyte-api-0.44.3}/src/airbyte/models/shared/source_freshcaller.py +4 -5
  193. {airbyte-api-0.40.0 → airbyte-api-0.44.3}/src/airbyte/models/shared/source_freshdesk.py +2 -3
  194. {airbyte-api-0.40.0 → airbyte-api-0.44.3}/src/airbyte/models/shared/source_freshsales.py +2 -3
  195. {airbyte-api-0.40.0 → airbyte-api-0.44.3}/src/airbyte/models/shared/source_gainsight_px.py +2 -3
  196. airbyte-api-0.44.3/src/airbyte/models/shared/source_gcs.py +141 -0
  197. {airbyte-api-0.40.0 → airbyte-api-0.44.3}/src/airbyte/models/shared/source_getlago.py +5 -4
  198. airbyte-api-0.44.3/src/airbyte/models/shared/source_github.py +67 -0
  199. {airbyte-api-0.40.0 → airbyte-api-0.44.3}/src/airbyte/models/shared/source_gitlab.py +15 -17
  200. {airbyte-api-0.40.0 → airbyte-api-0.44.3}/src/airbyte/models/shared/source_glassfrog.py +2 -3
  201. {airbyte-api-0.40.0 → airbyte-api-0.44.3}/src/airbyte/models/shared/source_gnews.py +14 -15
  202. {airbyte-api-0.40.0 → airbyte-api-0.44.3}/src/airbyte/models/shared/source_google_ads.py +16 -9
  203. airbyte-api-0.44.3/src/airbyte/models/shared/source_google_analytics_data_api.py +1460 -0
  204. {airbyte-api-0.40.0 → airbyte-api-0.44.3}/src/airbyte/models/shared/source_google_directory.py +9 -15
  205. airbyte-api-0.44.3/src/airbyte/models/shared/source_google_drive.py +235 -0
  206. {airbyte-api-0.40.0 → airbyte-api-0.44.3}/src/airbyte/models/shared/source_google_pagespeed_insights.py +6 -7
  207. {airbyte-api-0.40.0 → airbyte-api-0.44.3}/src/airbyte/models/shared/source_google_search_console.py +12 -18
  208. {airbyte-api-0.40.0 → airbyte-api-0.44.3}/src/airbyte/models/shared/source_google_sheets.py +7 -15
  209. {airbyte-api-0.40.0 → airbyte-api-0.44.3}/src/airbyte/models/shared/source_google_webfonts.py +2 -3
  210. {airbyte-api-0.40.0 → airbyte-api-0.44.3}/src/airbyte/models/shared/source_google_workspace_admin_reports.py +2 -3
  211. {airbyte-api-0.40.0 → airbyte-api-0.44.3}/src/airbyte/models/shared/source_greenhouse.py +2 -3
  212. {airbyte-api-0.40.0 → airbyte-api-0.44.3}/src/airbyte/models/shared/source_gridly.py +2 -3
  213. {airbyte-api-0.40.0 → airbyte-api-0.44.3}/src/airbyte/models/shared/source_harvest.py +7 -15
  214. {airbyte-api-0.40.0 → airbyte-api-0.44.3}/src/airbyte/models/shared/source_hubplanner.py +2 -3
  215. {airbyte-api-0.40.0 → airbyte-api-0.44.3}/src/airbyte/models/shared/source_hubspot.py +10 -16
  216. {airbyte-api-0.40.0 → airbyte-api-0.44.3}/src/airbyte/models/shared/source_insightly.py +2 -3
  217. {airbyte-api-0.40.0 → airbyte-api-0.44.3}/src/airbyte/models/shared/source_instagram.py +2 -3
  218. {airbyte-api-0.40.0 → airbyte-api-0.44.3}/src/airbyte/models/shared/source_instatus.py +2 -3
  219. {airbyte-api-0.40.0 → airbyte-api-0.44.3}/src/airbyte/models/shared/source_intercom.py +0 -1
  220. {airbyte-api-0.40.0 → airbyte-api-0.44.3}/src/airbyte/models/shared/source_ip2whois.py +2 -3
  221. {airbyte-api-0.40.0 → airbyte-api-0.44.3}/src/airbyte/models/shared/source_iterable.py +2 -3
  222. {airbyte-api-0.40.0 → airbyte-api-0.44.3}/src/airbyte/models/shared/source_jira.py +15 -5
  223. {airbyte-api-0.40.0 → airbyte-api-0.44.3}/src/airbyte/models/shared/source_k6_cloud.py +2 -3
  224. {airbyte-api-0.40.0 → airbyte-api-0.44.3}/src/airbyte/models/shared/source_klarna.py +2 -3
  225. {airbyte-api-0.40.0 → airbyte-api-0.44.3}/src/airbyte/models/shared/source_klaviyo.py +5 -6
  226. {airbyte-api-0.40.0 → airbyte-api-0.44.3}/src/airbyte/models/shared/source_kustomer_singer.py +2 -3
  227. {airbyte-api-0.40.0 → airbyte-api-0.44.3}/src/airbyte/models/shared/source_kyve.py +4 -5
  228. {airbyte-api-0.40.0 → airbyte-api-0.44.3}/src/airbyte/models/shared/source_launchdarkly.py +2 -3
  229. {airbyte-api-0.40.0 → airbyte-api-0.44.3}/src/airbyte/models/shared/source_lemlist.py +2 -3
  230. {airbyte-api-0.40.0 → airbyte-api-0.44.3}/src/airbyte/models/shared/source_lever_hiring.py +7 -15
  231. {airbyte-api-0.40.0 → airbyte-api-0.44.3}/src/airbyte/models/shared/source_linkedin_ads.py +16 -22
  232. {airbyte-api-0.40.0 → airbyte-api-0.44.3}/src/airbyte/models/shared/source_linkedin_pages.py +9 -15
  233. {airbyte-api-0.40.0 → airbyte-api-0.44.3}/src/airbyte/models/shared/source_linnworks.py +2 -3
  234. {airbyte-api-0.40.0 → airbyte-api-0.44.3}/src/airbyte/models/shared/source_lokalise.py +2 -3
  235. {airbyte-api-0.40.0 → airbyte-api-0.44.3}/src/airbyte/models/shared/source_mailchimp.py +11 -13
  236. {airbyte-api-0.40.0 → airbyte-api-0.44.3}/src/airbyte/models/shared/source_mailgun.py +2 -3
  237. {airbyte-api-0.40.0 → airbyte-api-0.44.3}/src/airbyte/models/shared/source_mailjet_sms.py +2 -3
  238. {airbyte-api-0.40.0 → airbyte-api-0.44.3}/src/airbyte/models/shared/source_marketo.py +2 -3
  239. {airbyte-api-0.40.0 → airbyte-api-0.44.3}/src/airbyte/models/shared/source_metabase.py +2 -3
  240. {airbyte-api-0.40.0 → airbyte-api-0.44.3}/src/airbyte/models/shared/source_microsoft_teams.py +7 -15
  241. {airbyte-api-0.40.0 → airbyte-api-0.44.3}/src/airbyte/models/shared/source_mixpanel.py +14 -22
  242. {airbyte-api-0.40.0 → airbyte-api-0.44.3}/src/airbyte/models/shared/source_monday.py +7 -13
  243. {airbyte-api-0.40.0 → airbyte-api-0.44.3}/src/airbyte/models/shared/source_mongodb_internal_poc.py +2 -3
  244. airbyte-api-0.44.3/src/airbyte/models/shared/source_mongodb_v2.py +77 -0
  245. {airbyte-api-0.40.0 → airbyte-api-0.44.3}/src/airbyte/models/shared/source_mssql.py +37 -56
  246. {airbyte-api-0.40.0 → airbyte-api-0.44.3}/src/airbyte/models/shared/source_my_hours.py +2 -3
  247. {airbyte-api-0.40.0 → airbyte-api-0.44.3}/src/airbyte/models/shared/source_mysql.py +30 -49
  248. {airbyte-api-0.40.0 → airbyte-api-0.44.3}/src/airbyte/models/shared/source_netsuite.py +2 -3
  249. airbyte-api-0.44.3/src/airbyte/models/shared/source_notion.py +55 -0
  250. {airbyte-api-0.40.0 → airbyte-api-0.44.3}/src/airbyte/models/shared/source_nytimes.py +6 -7
  251. {airbyte-api-0.40.0 → airbyte-api-0.44.3}/src/airbyte/models/shared/source_okta.py +9 -15
  252. {airbyte-api-0.40.0 → airbyte-api-0.44.3}/src/airbyte/models/shared/source_omnisend.py +2 -3
  253. {airbyte-api-0.40.0 → airbyte-api-0.44.3}/src/airbyte/models/shared/source_onesignal.py +4 -5
  254. {airbyte-api-0.40.0 → airbyte-api-0.44.3}/src/airbyte/models/shared/source_oracle.py +26 -45
  255. {airbyte-api-0.40.0 → airbyte-api-0.44.3}/src/airbyte/models/shared/source_orb.py +2 -3
  256. {airbyte-api-0.40.0 → airbyte-api-0.44.3}/src/airbyte/models/shared/source_orbit.py +2 -3
  257. airbyte-api-0.44.3/src/airbyte/models/shared/source_outbrain_amplify.py +69 -0
  258. {airbyte-api-0.40.0 → airbyte-api-0.44.3}/src/airbyte/models/shared/source_outreach.py +2 -3
  259. {airbyte-api-0.40.0 → airbyte-api-0.44.3}/src/airbyte/models/shared/source_paypal_transaction.py +5 -4
  260. {airbyte-api-0.40.0 → airbyte-api-0.44.3}/src/airbyte/models/shared/source_paystack.py +2 -3
  261. {airbyte-api-0.40.0 → airbyte-api-0.44.3}/src/airbyte/models/shared/source_pendo.py +2 -3
  262. {airbyte-api-0.40.0 → airbyte-api-0.44.3}/src/airbyte/models/shared/source_persistiq.py +2 -3
  263. {airbyte-api-0.40.0 → airbyte-api-0.44.3}/src/airbyte/models/shared/source_pexels_api.py +2 -3
  264. airbyte-api-0.44.3/src/airbyte/models/shared/source_pinterest.py +252 -0
  265. airbyte-api-0.44.3/src/airbyte/models/shared/source_pipedrive.py +23 -0
  266. {airbyte-api-0.40.0 → airbyte-api-0.44.3}/src/airbyte/models/shared/source_pocket.py +8 -9
  267. airbyte-api-0.44.3/src/airbyte/models/shared/source_pokeapi.py +922 -0
  268. {airbyte-api-0.40.0 → airbyte-api-0.44.3}/src/airbyte/models/shared/source_polygon_stock_api.py +2 -3
  269. {airbyte-api-0.40.0 → airbyte-api-0.44.3}/src/airbyte/models/shared/source_postgres.py +47 -66
  270. {airbyte-api-0.40.0 → airbyte-api-0.44.3}/src/airbyte/models/shared/source_posthog.py +2 -3
  271. {airbyte-api-0.40.0 → airbyte-api-0.44.3}/src/airbyte/models/shared/source_postmarkapp.py +2 -3
  272. {airbyte-api-0.40.0 → airbyte-api-0.44.3}/src/airbyte/models/shared/source_prestashop.py +2 -3
  273. {airbyte-api-0.40.0 → airbyte-api-0.44.3}/src/airbyte/models/shared/source_punk_api.py +2 -3
  274. {airbyte-api-0.40.0 → airbyte-api-0.44.3}/src/airbyte/models/shared/source_pypi.py +2 -3
  275. {airbyte-api-0.40.0 → airbyte-api-0.44.3}/src/airbyte/models/shared/source_qualaroo.py +2 -3
  276. {airbyte-api-0.40.0 → airbyte-api-0.44.3}/src/airbyte/models/shared/source_quickbooks.py +6 -12
  277. {airbyte-api-0.40.0 → airbyte-api-0.44.3}/src/airbyte/models/shared/source_railz.py +2 -3
  278. {airbyte-api-0.40.0 → airbyte-api-0.44.3}/src/airbyte/models/shared/source_recharge.py +2 -3
  279. {airbyte-api-0.40.0 → airbyte-api-0.44.3}/src/airbyte/models/shared/source_recreation.py +2 -3
  280. {airbyte-api-0.40.0 → airbyte-api-0.44.3}/src/airbyte/models/shared/source_recruitee.py +2 -3
  281. {airbyte-api-0.40.0 → airbyte-api-0.44.3}/src/airbyte/models/shared/source_recurly.py +2 -3
  282. {airbyte-api-0.40.0 → airbyte-api-0.44.3}/src/airbyte/models/shared/source_redshift.py +0 -1
  283. {airbyte-api-0.40.0 → airbyte-api-0.44.3}/src/airbyte/models/shared/source_retently.py +7 -15
  284. {airbyte-api-0.40.0 → airbyte-api-0.44.3}/src/airbyte/models/shared/source_rki_covid.py +2 -3
  285. {airbyte-api-0.40.0 → airbyte-api-0.44.3}/src/airbyte/models/shared/source_rss.py +2 -3
  286. {airbyte-api-0.40.0 → airbyte-api-0.44.3}/src/airbyte/models/shared/source_s3.py +84 -71
  287. {airbyte-api-0.40.0 → airbyte-api-0.44.3}/src/airbyte/models/shared/source_salesforce.py +6 -7
  288. {airbyte-api-0.40.0 → airbyte-api-0.44.3}/src/airbyte/models/shared/source_salesloft.py +9 -15
  289. {airbyte-api-0.40.0 → airbyte-api-0.44.3}/src/airbyte/models/shared/source_sap_fieldglass.py +2 -3
  290. {airbyte-api-0.40.0 → airbyte-api-0.44.3}/src/airbyte/models/shared/source_secoda.py +2 -3
  291. {airbyte-api-0.40.0 → airbyte-api-0.44.3}/src/airbyte/models/shared/source_sendgrid.py +2 -3
  292. {airbyte-api-0.40.0 → airbyte-api-0.44.3}/src/airbyte/models/shared/source_sendinblue.py +2 -3
  293. {airbyte-api-0.40.0 → airbyte-api-0.44.3}/src/airbyte/models/shared/source_senseforce.py +2 -3
  294. {airbyte-api-0.40.0 → airbyte-api-0.44.3}/src/airbyte/models/shared/source_sentry.py +2 -3
  295. {airbyte-api-0.40.0 → airbyte-api-0.44.3}/src/airbyte/models/shared/source_sftp.py +9 -17
  296. {airbyte-api-0.40.0 → airbyte-api-0.44.3}/src/airbyte/models/shared/source_sftp_bulk.py +4 -5
  297. {airbyte-api-0.40.0 → airbyte-api-0.44.3}/src/airbyte/models/shared/source_shopify.py +7 -13
  298. {airbyte-api-0.40.0 → airbyte-api-0.44.3}/src/airbyte/models/shared/source_shortio.py +2 -3
  299. {airbyte-api-0.40.0 → airbyte-api-0.44.3}/src/airbyte/models/shared/source_slack.py +7 -15
  300. {airbyte-api-0.40.0 → airbyte-api-0.44.3}/src/airbyte/models/shared/source_smaily.py +2 -3
  301. {airbyte-api-0.40.0 → airbyte-api-0.44.3}/src/airbyte/models/shared/source_smartengage.py +2 -3
  302. {airbyte-api-0.40.0 → airbyte-api-0.44.3}/src/airbyte/models/shared/source_smartsheets.py +9 -15
  303. {airbyte-api-0.40.0 → airbyte-api-0.44.3}/src/airbyte/models/shared/source_snapchat_marketing.py +0 -1
  304. {airbyte-api-0.40.0 → airbyte-api-0.44.3}/src/airbyte/models/shared/source_snowflake.py +7 -13
  305. {airbyte-api-0.40.0 → airbyte-api-0.44.3}/src/airbyte/models/shared/source_sonar_cloud.py +2 -3
  306. {airbyte-api-0.40.0 → airbyte-api-0.44.3}/src/airbyte/models/shared/source_spacex_api.py +2 -3
  307. {airbyte-api-0.40.0 → airbyte-api-0.44.3}/src/airbyte/models/shared/source_square.py +7 -15
  308. {airbyte-api-0.40.0 → airbyte-api-0.44.3}/src/airbyte/models/shared/source_strava.py +0 -1
  309. {airbyte-api-0.40.0 → airbyte-api-0.44.3}/src/airbyte/models/shared/source_stripe.py +7 -4
  310. airbyte-api-0.44.3/src/airbyte/models/shared/source_survey_sparrow.py +47 -0
  311. {airbyte-api-0.40.0 → airbyte-api-0.44.3}/src/airbyte/models/shared/source_surveymonkey.py +6 -7
  312. {airbyte-api-0.40.0 → airbyte-api-0.44.3}/src/airbyte/models/shared/source_tempo.py +2 -3
  313. {airbyte-api-0.40.0 → airbyte-api-0.44.3}/src/airbyte/models/shared/source_the_guardian_api.py +2 -3
  314. {airbyte-api-0.40.0 → airbyte-api-0.44.3}/src/airbyte/models/shared/source_tiktok_marketing.py +7 -15
  315. {airbyte-api-0.40.0 → airbyte-api-0.44.3}/src/airbyte/models/shared/source_trello.py +3 -4
  316. {airbyte-api-0.40.0 → airbyte-api-0.44.3}/src/airbyte/models/shared/source_trustpilot.py +9 -15
  317. {airbyte-api-0.40.0 → airbyte-api-0.44.3}/src/airbyte/models/shared/source_tvmaze_schedule.py +2 -3
  318. {airbyte-api-0.40.0 → airbyte-api-0.44.3}/src/airbyte/models/shared/source_twilio.py +2 -3
  319. {airbyte-api-0.40.0 → airbyte-api-0.44.3}/src/airbyte/models/shared/source_twilio_taskrouter.py +2 -3
  320. {airbyte-api-0.40.0 → airbyte-api-0.44.3}/src/airbyte/models/shared/source_twitter.py +2 -3
  321. {airbyte-api-0.40.0 → airbyte-api-0.44.3}/src/airbyte/models/shared/source_typeform.py +7 -13
  322. {airbyte-api-0.40.0 → airbyte-api-0.44.3}/src/airbyte/models/shared/source_us_census.py +2 -3
  323. {airbyte-api-0.40.0 → airbyte-api-0.44.3}/src/airbyte/models/shared/source_vantage.py +2 -3
  324. {airbyte-api-0.40.0 → airbyte-api-0.44.3}/src/airbyte/models/shared/source_webflow.py +5 -4
  325. {airbyte-api-0.40.0 → airbyte-api-0.44.3}/src/airbyte/models/shared/source_whisky_hunter.py +2 -3
  326. {airbyte-api-0.40.0 → airbyte-api-0.44.3}/src/airbyte/models/shared/source_wikipedia_pageviews.py +2 -3
  327. {airbyte-api-0.40.0 → airbyte-api-0.44.3}/src/airbyte/models/shared/source_woocommerce.py +2 -3
  328. {airbyte-api-0.40.0 → airbyte-api-0.44.3}/src/airbyte/models/shared/source_xkcd.py +2 -3
  329. {airbyte-api-0.40.0 → airbyte-api-0.44.3}/src/airbyte/models/shared/source_yandex_metrica.py +2 -3
  330. {airbyte-api-0.40.0 → airbyte-api-0.44.3}/src/airbyte/models/shared/source_yotpo.py +2 -3
  331. {airbyte-api-0.40.0 → airbyte-api-0.44.3}/src/airbyte/models/shared/source_youtube_analytics.py +2 -3
  332. {airbyte-api-0.40.0 → airbyte-api-0.44.3}/src/airbyte/models/shared/source_zendesk_chat.py +7 -13
  333. airbyte-api-0.44.3/src/airbyte/models/shared/source_zendesk_sell.py +21 -0
  334. {airbyte-api-0.40.0 → airbyte-api-0.44.3}/src/airbyte/models/shared/source_zendesk_sunshine.py +7 -13
  335. {airbyte-api-0.40.0 → airbyte-api-0.44.3}/src/airbyte/models/shared/source_zendesk_support.py +7 -15
  336. {airbyte-api-0.40.0 → airbyte-api-0.44.3}/src/airbyte/models/shared/source_zendesk_talk.py +7 -15
  337. {airbyte-api-0.40.0 → airbyte-api-0.44.3}/src/airbyte/models/shared/source_zenloop.py +2 -3
  338. {airbyte-api-0.40.0 → airbyte-api-0.44.3}/src/airbyte/models/shared/source_zoho_crm.py +6 -7
  339. {airbyte-api-0.40.0 → airbyte-api-0.44.3}/src/airbyte/models/shared/source_zoom.py +2 -3
  340. {airbyte-api-0.40.0 → airbyte-api-0.44.3}/src/airbyte/models/shared/source_zuora.py +6 -7
  341. airbyte-api-0.44.3/src/airbyte/models/shared/sourcecreaterequest.py +219 -0
  342. airbyte-api-0.44.3/src/airbyte/models/shared/sourcepatchrequest.py +216 -0
  343. airbyte-api-0.44.3/src/airbyte/models/shared/sourceputrequest.py +213 -0
  344. airbyte-api-0.44.3/src/airbyte/models/shared/sourceresponse.py +217 -0
  345. {airbyte-api-0.40.0 → airbyte-api-0.44.3}/src/airbyte/models/shared/sourcesresponse.py +2 -2
  346. {airbyte-api-0.40.0 → airbyte-api-0.44.3}/src/airbyte/models/shared/square.py +0 -1
  347. {airbyte-api-0.40.0 → airbyte-api-0.44.3}/src/airbyte/models/shared/strava.py +0 -1
  348. {airbyte-api-0.40.0 → airbyte-api-0.44.3}/src/airbyte/models/shared/streamconfiguration.py +2 -2
  349. {airbyte-api-0.40.0 → airbyte-api-0.44.3}/src/airbyte/models/shared/streamconfigurations.py +2 -2
  350. {airbyte-api-0.40.0 → airbyte-api-0.44.3}/src/airbyte/models/shared/streamproperties.py +2 -2
  351. {airbyte-api-0.40.0 → airbyte-api-0.44.3}/src/airbyte/models/shared/streampropertiesresponse.py +2 -2
  352. {airbyte-api-0.40.0 → airbyte-api-0.44.3}/src/airbyte/models/shared/surveymonkey.py +0 -1
  353. {airbyte-api-0.40.0 → airbyte-api-0.44.3}/src/airbyte/models/shared/tiktok_marketing.py +0 -1
  354. {airbyte-api-0.40.0 → airbyte-api-0.44.3}/src/airbyte/models/shared/typeform.py +0 -1
  355. {airbyte-api-0.40.0 → airbyte-api-0.44.3}/src/airbyte/models/shared/workspacecreaterequest.py +0 -0
  356. airbyte-api-0.44.3/src/airbyte/models/shared/workspaceoauthcredentialsrequest.py +63 -0
  357. {airbyte-api-0.40.0 → airbyte-api-0.44.3}/src/airbyte/models/shared/workspaceresponse.py +2 -2
  358. {airbyte-api-0.40.0 → airbyte-api-0.44.3}/src/airbyte/models/shared/workspacesresponse.py +2 -2
  359. {airbyte-api-0.40.0 → airbyte-api-0.44.3}/src/airbyte/models/shared/workspaceupdaterequest.py +0 -0
  360. {airbyte-api-0.40.0 → airbyte-api-0.44.3}/src/airbyte/models/shared/youtube_analytics.py +0 -1
  361. {airbyte-api-0.40.0 → airbyte-api-0.44.3}/src/airbyte/models/shared/zendesk_chat.py +0 -1
  362. {airbyte-api-0.40.0 → airbyte-api-0.44.3}/src/airbyte/models/shared/zendesk_sunshine.py +0 -1
  363. {airbyte-api-0.40.0 → airbyte-api-0.44.3}/src/airbyte/models/shared/zendesk_support.py +0 -1
  364. {airbyte-api-0.40.0 → airbyte-api-0.44.3}/src/airbyte/models/shared/zendesk_talk.py +0 -1
  365. {airbyte-api-0.40.0 → airbyte-api-0.44.3}/src/airbyte/sdk.py +4 -8
  366. {airbyte-api-0.40.0 → airbyte-api-0.44.3}/src/airbyte/sdkconfiguration.py +6 -5
  367. {airbyte-api-0.40.0 → airbyte-api-0.44.3}/src/airbyte/sources.py +47 -19
  368. {airbyte-api-0.40.0 → airbyte-api-0.44.3}/src/airbyte/streams.py +6 -2
  369. {airbyte-api-0.40.0 → airbyte-api-0.44.3}/src/airbyte/utils/__init__.py +0 -0
  370. {airbyte-api-0.40.0 → airbyte-api-0.44.3}/src/airbyte/utils/retries.py +2 -2
  371. {airbyte-api-0.40.0 → airbyte-api-0.44.3}/src/airbyte/utils/utils.py +45 -20
  372. {airbyte-api-0.40.0 → airbyte-api-0.44.3}/src/airbyte/workspaces.py +39 -15
  373. airbyte-api-0.44.3/src/airbyte_api.egg-info/PKG-INFO +407 -0
  374. {airbyte-api-0.40.0 → airbyte-api-0.44.3}/src/airbyte_api.egg-info/SOURCES.txt +11 -11
  375. {airbyte-api-0.40.0 → airbyte-api-0.44.3}/src/airbyte_api.egg-info/requires.txt +1 -1
  376. airbyte-api-0.40.0/PKG-INFO +0 -168
  377. airbyte-api-0.40.0/README.md +0 -156
  378. airbyte-api-0.40.0/src/airbyte/models/shared/__init__.py +0 -327
  379. airbyte-api-0.40.0/src/airbyte/models/shared/connectioncreaterequest.py +0 -38
  380. airbyte-api-0.40.0/src/airbyte/models/shared/connectionpatchrequest.py +0 -36
  381. airbyte-api-0.40.0/src/airbyte/models/shared/connectionresponse.py +0 -38
  382. airbyte-api-0.40.0/src/airbyte/models/shared/destination_bigquery_denormalized.py +0 -140
  383. airbyte-api-0.40.0/src/airbyte/models/shared/destination_dev_null.py +0 -39
  384. airbyte-api-0.40.0/src/airbyte/models/shared/destination_gcs.py +0 -320
  385. airbyte-api-0.40.0/src/airbyte/models/shared/destination_milvus.py +0 -166
  386. airbyte-api-0.40.0/src/airbyte/models/shared/destination_mongodb.py +0 -175
  387. airbyte-api-0.40.0/src/airbyte/models/shared/destination_pinecone.py +0 -96
  388. airbyte-api-0.40.0/src/airbyte/models/shared/destination_s3.py +0 -305
  389. airbyte-api-0.40.0/src/airbyte/models/shared/destinationcreaterequest.py +0 -55
  390. airbyte-api-0.40.0/src/airbyte/models/shared/destinationpatchrequest.py +0 -54
  391. airbyte-api-0.40.0/src/airbyte/models/shared/destinationputrequest.py +0 -54
  392. airbyte-api-0.40.0/src/airbyte/models/shared/destinationresponse.py +0 -58
  393. airbyte-api-0.40.0/src/airbyte/models/shared/google_analytics_v4.py +0 -27
  394. airbyte-api-0.40.0/src/airbyte/models/shared/source_amazon_seller_partner.py +0 -82
  395. airbyte-api-0.40.0/src/airbyte/models/shared/source_apify_dataset.py +0 -26
  396. airbyte-api-0.40.0/src/airbyte/models/shared/source_azure_blob_storage.py +0 -51
  397. airbyte-api-0.40.0/src/airbyte/models/shared/source_bigcommerce.py +0 -26
  398. airbyte-api-0.40.0/src/airbyte/models/shared/source_bing_ads.py +0 -40
  399. airbyte-api-0.40.0/src/airbyte/models/shared/source_facebook_pages.py +0 -24
  400. airbyte-api-0.40.0/src/airbyte/models/shared/source_gcs.py +0 -26
  401. airbyte-api-0.40.0/src/airbyte/models/shared/source_github.py +0 -69
  402. airbyte-api-0.40.0/src/airbyte/models/shared/source_google_analytics_data_api.py +0 -70
  403. airbyte-api-0.40.0/src/airbyte/models/shared/source_google_analytics_v4.py +0 -70
  404. airbyte-api-0.40.0/src/airbyte/models/shared/source_mongodb.py +0 -82
  405. airbyte-api-0.40.0/src/airbyte/models/shared/source_notion.py +0 -63
  406. airbyte-api-0.40.0/src/airbyte/models/shared/source_outbrain_amplify.py +0 -77
  407. airbyte-api-0.40.0/src/airbyte/models/shared/source_pinterest.py +0 -66
  408. airbyte-api-0.40.0/src/airbyte/models/shared/source_pipedrive.py +0 -38
  409. airbyte-api-0.40.0/src/airbyte/models/shared/source_pokeapi.py +0 -22
  410. airbyte-api-0.40.0/src/airbyte/models/shared/source_survey_sparrow.py +0 -55
  411. airbyte-api-0.40.0/src/airbyte/models/shared/source_todoist.py +0 -22
  412. airbyte-api-0.40.0/src/airbyte/models/shared/source_xero.py +0 -44
  413. airbyte-api-0.40.0/src/airbyte/models/shared/source_younium.py +0 -28
  414. airbyte-api-0.40.0/src/airbyte/models/shared/sourcecreaterequest.py +0 -219
  415. airbyte-api-0.40.0/src/airbyte/models/shared/sourcepatchrequest.py +0 -219
  416. airbyte-api-0.40.0/src/airbyte/models/shared/sourceputrequest.py +0 -216
  417. airbyte-api-0.40.0/src/airbyte/models/shared/sourceresponse.py +0 -220
  418. airbyte-api-0.40.0/src/airbyte/models/shared/workspaceoauthcredentialsrequest.py +0 -22
  419. airbyte-api-0.40.0/src/airbyte/models/shared/xero.py +0 -27
  420. airbyte-api-0.40.0/src/airbyte_api.egg-info/PKG-INFO +0 -168
  421. {airbyte-api-0.40.0 → airbyte-api-0.44.3}/LICENSE.md +0 -0
  422. {airbyte-api-0.40.0 → airbyte-api-0.44.3}/setup.cfg +0 -0
  423. {airbyte-api-0.40.0 → airbyte-api-0.44.3}/src/airbyte_api.egg-info/dependency_links.txt +0 -0
  424. {airbyte-api-0.40.0 → airbyte-api-0.44.3}/src/airbyte_api.egg-info/top_level.txt +0 -0
@@ -0,0 +1,407 @@
1
+ Metadata-Version: 2.1
2
+ Name: airbyte-api
3
+ Version: 0.44.3
4
+ Summary: Python Client SDK for Airbyte API
5
+ Home-page: UNKNOWN
6
+ Author: Airbyte
7
+ License: UNKNOWN
8
+ Description: <div align="center">
9
+ <img src="https://user-images.githubusercontent.com/68016351/222853569-b35cc448-6481-4cf2-a237-bd5da47e94fd.png" width="500">
10
+ <p>Programatically control Airbyte Cloud through an API.</p>
11
+ <a href="https://reference.airbyte.com/reference/start"><img src="https://img.shields.io/static/v1?label=Docs&message=API Ref&color=000000&style=for-the-badge" /></a>
12
+ <a href="https://github.com/airbytehq/airbyte-api-python-sdk/actions"><img src="https://img.shields.io/github/actions/workflow/status/airbytehq/airbyte-api-python-sdk/speakeasy_sdk_generation.yml?style=for-the-badge" /></a>
13
+ <a href="https://opensource.org/licenses/MIT"><img src="https://img.shields.io/badge/License-MIT-blue.svg?style=for-the-badge" /></a>
14
+ <a href="https://github.com/airbytehq/airbyte-api-python-sdk/releases"><img src="https://img.shields.io/github/v/release/airbytehq/airbyte-api-python-sdk?sort=semver&style=for-the-badge" /></a>
15
+ </div>
16
+
17
+ ## Authentication
18
+
19
+ Developers will need to create an API Key within your [Developer Portal](https://portal.airbyte.com/) to make API requests. You can use your existing Airbyte account to log in to the Developer Portal. Once you are in the Developer Portal, use the API Keys tab to create or remove API Keys. You can see a [walkthrough demo here](https://www.loom.com/share/7997a7c67cd642cc8d1c72ef0dfcc4bc)🎦
20
+
21
+ The Developer Portal UI can also be used to help build your integration by showing information about network requests in the Requests tab. API usage information is also available to you in the Usage tab.
22
+
23
+ <!-- Start SDK Installation [installation] -->
24
+ ## SDK Installation
25
+
26
+ ```bash
27
+ pip install airbyte-api
28
+ ```
29
+ <!-- End SDK Installation [installation] -->
30
+
31
+ <!-- Start SDK Example Usage [usage] -->
32
+ ## SDK Example Usage
33
+
34
+ ### Example
35
+
36
+ ```python
37
+ import airbyte
38
+ from airbyte.models import shared
39
+
40
+ s = airbyte.Airbyte(
41
+ security=shared.Security(
42
+ basic_auth=shared.SchemeBasicAuth(
43
+ password="<YOUR_PASSWORD_HERE>",
44
+ username="<YOUR_USERNAME_HERE>",
45
+ ),
46
+ ),
47
+ )
48
+
49
+ req = shared.ConnectionCreateRequest(
50
+ configurations=shared.StreamConfigurations(
51
+ streams=[
52
+ shared.StreamConfiguration(
53
+ cursor_field=[
54
+ 'string',
55
+ ],
56
+ name='string',
57
+ primary_key=[
58
+ [
59
+ 'string',
60
+ ],
61
+ ],
62
+ ),
63
+ ],
64
+ ),
65
+ destination_id='c669dd1e-3620-483e-afc8-55914e0a570f',
66
+ namespace_format='${SOURCE_NAMESPACE}',
67
+ schedule=shared.ConnectionSchedule(
68
+ schedule_type=shared.ScheduleTypeEnum.MANUAL,
69
+ ),
70
+ source_id='dd427d83-a555-4847-8358-42325b6c7b3f',
71
+ )
72
+
73
+ res = s.connections.create_connection(req)
74
+
75
+ if res.connection_response is not None:
76
+ # handle response
77
+ pass
78
+ ```
79
+ <!-- End SDK Example Usage [usage] -->
80
+
81
+ <!-- Start Available Resources and Operations [operations] -->
82
+ ## Available Resources and Operations
83
+
84
+ ### [connections](docs/sdks/connections/README.md)
85
+
86
+ * [create_connection](docs/sdks/connections/README.md#create_connection) - Create a connection
87
+ * [delete_connection](docs/sdks/connections/README.md#delete_connection) - Delete a Connection
88
+ * [get_connection](docs/sdks/connections/README.md#get_connection) - Get Connection details
89
+ * [list_connections](docs/sdks/connections/README.md#list_connections) - List connections
90
+ * [patch_connection](docs/sdks/connections/README.md#patch_connection) - Update Connection details
91
+
92
+ ### [destinations](docs/sdks/destinations/README.md)
93
+
94
+ * [create_destination](docs/sdks/destinations/README.md#create_destination) - Create a destination
95
+ * [delete_destination](docs/sdks/destinations/README.md#delete_destination) - Delete a Destination
96
+ * [get_destination](docs/sdks/destinations/README.md#get_destination) - Get Destination details
97
+ * [list_destinations](docs/sdks/destinations/README.md#list_destinations) - List destinations
98
+ * [patch_destination](docs/sdks/destinations/README.md#patch_destination) - Update a Destination
99
+ * [put_destination](docs/sdks/destinations/README.md#put_destination) - Update a Destination and fully overwrite it
100
+
101
+ ### [jobs](docs/sdks/jobs/README.md)
102
+
103
+ * [cancel_job](docs/sdks/jobs/README.md#cancel_job) - Cancel a running Job
104
+ * [create_job](docs/sdks/jobs/README.md#create_job) - Trigger a sync or reset job of a connection
105
+ * [get_job](docs/sdks/jobs/README.md#get_job) - Get Job status and details
106
+ * [list_jobs](docs/sdks/jobs/README.md#list_jobs) - List Jobs by sync type
107
+
108
+ ### [sources](docs/sdks/sources/README.md)
109
+
110
+ * [create_source](docs/sdks/sources/README.md#create_source) - Create a source
111
+ * [delete_source](docs/sdks/sources/README.md#delete_source) - Delete a Source
112
+ * [get_source](docs/sdks/sources/README.md#get_source) - Get Source details
113
+ * [initiate_o_auth](docs/sdks/sources/README.md#initiate_o_auth) - Initiate OAuth for a source
114
+ * [list_sources](docs/sdks/sources/README.md#list_sources) - List sources
115
+ * [patch_source](docs/sdks/sources/README.md#patch_source) - Update a Source
116
+ * [put_source](docs/sdks/sources/README.md#put_source) - Update a Source and fully overwrite it
117
+
118
+ ### [streams](docs/sdks/streams/README.md)
119
+
120
+ * [get_stream_properties](docs/sdks/streams/README.md#get_stream_properties) - Get stream properties
121
+
122
+ ### [workspaces](docs/sdks/workspaces/README.md)
123
+
124
+ * [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.
125
+ * [create_workspace](docs/sdks/workspaces/README.md#create_workspace) - Create a workspace
126
+ * [delete_workspace](docs/sdks/workspaces/README.md#delete_workspace) - Delete a Workspace
127
+ * [get_workspace](docs/sdks/workspaces/README.md#get_workspace) - Get Workspace details
128
+ * [list_workspaces](docs/sdks/workspaces/README.md#list_workspaces) - List workspaces
129
+ * [update_workspace](docs/sdks/workspaces/README.md#update_workspace) - Update a workspace
130
+ <!-- End Available Resources and Operations [operations] -->
131
+
132
+
133
+
134
+
135
+
136
+
137
+
138
+ <!-- Start Error Handling [errors] -->
139
+ ## Error Handling
140
+
141
+ Handling errors in this SDK should largely match your expectations. All operations return a response object or raise an error. If Error objects are specified in your OpenAPI Spec, the SDK will raise the appropriate Error type.
142
+
143
+ | Error Object | Status Code | Content Type |
144
+ | --------------- | --------------- | --------------- |
145
+ | errors.SDKError | 4x-5xx | */* |
146
+
147
+ ### Example
148
+
149
+ ```python
150
+ import airbyte
151
+ from airbyte.models import shared
152
+
153
+ s = airbyte.Airbyte(
154
+ security=shared.Security(
155
+ basic_auth=shared.SchemeBasicAuth(
156
+ password="<YOUR_PASSWORD_HERE>",
157
+ username="<YOUR_USERNAME_HERE>",
158
+ ),
159
+ ),
160
+ )
161
+
162
+ req = shared.ConnectionCreateRequest(
163
+ configurations=shared.StreamConfigurations(
164
+ streams=[
165
+ shared.StreamConfiguration(
166
+ cursor_field=[
167
+ 'string',
168
+ ],
169
+ name='string',
170
+ primary_key=[
171
+ [
172
+ 'string',
173
+ ],
174
+ ],
175
+ ),
176
+ ],
177
+ ),
178
+ destination_id='c669dd1e-3620-483e-afc8-55914e0a570f',
179
+ namespace_format='${SOURCE_NAMESPACE}',
180
+ schedule=shared.ConnectionSchedule(
181
+ schedule_type=shared.ScheduleTypeEnum.MANUAL,
182
+ ),
183
+ source_id='dd427d83-a555-4847-8358-42325b6c7b3f',
184
+ )
185
+
186
+ res = None
187
+ try:
188
+ res = s.connections.create_connection(req)
189
+ except errors.SDKError as e:
190
+ print(e) # handle exception
191
+ raise(e)
192
+
193
+ if res.connection_response is not None:
194
+ # handle response
195
+ pass
196
+ ```
197
+ <!-- End Error Handling [errors] -->
198
+
199
+
200
+
201
+ <!-- Start Server Selection [server] -->
202
+ ## Server Selection
203
+
204
+ ### Select Server by Index
205
+
206
+ You can override the default server globally by passing a server index to the `server_idx: int` optional parameter when initializing the SDK client instance. The selected server will then be used as the default on the operations that use it. This table lists the indexes associated with the available servers:
207
+
208
+ | # | Server | Variables |
209
+ | - | ------ | --------- |
210
+ | 0 | `https://api.airbyte.com/v1` | None |
211
+
212
+ #### Example
213
+
214
+ ```python
215
+ import airbyte
216
+ from airbyte.models import shared
217
+
218
+ s = airbyte.Airbyte(
219
+ server_idx=0,
220
+ security=shared.Security(
221
+ basic_auth=shared.SchemeBasicAuth(
222
+ password="<YOUR_PASSWORD_HERE>",
223
+ username="<YOUR_USERNAME_HERE>",
224
+ ),
225
+ ),
226
+ )
227
+
228
+ req = shared.ConnectionCreateRequest(
229
+ configurations=shared.StreamConfigurations(
230
+ streams=[
231
+ shared.StreamConfiguration(
232
+ cursor_field=[
233
+ 'string',
234
+ ],
235
+ name='string',
236
+ primary_key=[
237
+ [
238
+ 'string',
239
+ ],
240
+ ],
241
+ ),
242
+ ],
243
+ ),
244
+ destination_id='c669dd1e-3620-483e-afc8-55914e0a570f',
245
+ namespace_format='${SOURCE_NAMESPACE}',
246
+ schedule=shared.ConnectionSchedule(
247
+ schedule_type=shared.ScheduleTypeEnum.MANUAL,
248
+ ),
249
+ source_id='dd427d83-a555-4847-8358-42325b6c7b3f',
250
+ )
251
+
252
+ res = s.connections.create_connection(req)
253
+
254
+ if res.connection_response is not None:
255
+ # handle response
256
+ pass
257
+ ```
258
+
259
+
260
+ ### Override Server URL Per-Client
261
+
262
+ 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:
263
+ ```python
264
+ import airbyte
265
+ from airbyte.models import shared
266
+
267
+ s = airbyte.Airbyte(
268
+ server_url="https://api.airbyte.com/v1",
269
+ security=shared.Security(
270
+ basic_auth=shared.SchemeBasicAuth(
271
+ password="<YOUR_PASSWORD_HERE>",
272
+ username="<YOUR_USERNAME_HERE>",
273
+ ),
274
+ ),
275
+ )
276
+
277
+ req = shared.ConnectionCreateRequest(
278
+ configurations=shared.StreamConfigurations(
279
+ streams=[
280
+ shared.StreamConfiguration(
281
+ cursor_field=[
282
+ 'string',
283
+ ],
284
+ name='string',
285
+ primary_key=[
286
+ [
287
+ 'string',
288
+ ],
289
+ ],
290
+ ),
291
+ ],
292
+ ),
293
+ destination_id='c669dd1e-3620-483e-afc8-55914e0a570f',
294
+ namespace_format='${SOURCE_NAMESPACE}',
295
+ schedule=shared.ConnectionSchedule(
296
+ schedule_type=shared.ScheduleTypeEnum.MANUAL,
297
+ ),
298
+ source_id='dd427d83-a555-4847-8358-42325b6c7b3f',
299
+ )
300
+
301
+ res = s.connections.create_connection(req)
302
+
303
+ if res.connection_response is not None:
304
+ # handle response
305
+ pass
306
+ ```
307
+ <!-- End Server Selection [server] -->
308
+
309
+
310
+
311
+ <!-- Start Custom HTTP Client [http-client] -->
312
+ ## Custom HTTP Client
313
+
314
+ The Python SDK makes API calls using the [requests](https://pypi.org/project/requests/) HTTP library. In order to provide a convenient way to configure timeouts, cookies, proxies, custom headers, and other low-level configuration, you can initialize the SDK client with a custom `requests.Session` object.
315
+
316
+ For example, you could specify a header for every request that this sdk makes as follows:
317
+ ```python
318
+ import airbyte
319
+ import requests
320
+
321
+ http_client = requests.Session()
322
+ http_client.headers.update({'x-custom-header': 'someValue'})
323
+ s = airbyte.Airbyte(client: http_client)
324
+ ```
325
+ <!-- End Custom HTTP Client [http-client] -->
326
+
327
+
328
+
329
+ <!-- Start Authentication [security] -->
330
+ ## Authentication
331
+
332
+ ### Per-Client Security Schemes
333
+
334
+ This SDK supports the following security schemes globally:
335
+
336
+ | Name | Type | Scheme |
337
+ | ------------- | ------------- | ------------- |
338
+ | `basic_auth` | http | HTTP Basic |
339
+ | `bearer_auth` | http | HTTP Bearer |
340
+
341
+ 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:
342
+ ```python
343
+ import airbyte
344
+ from airbyte.models import shared
345
+
346
+ s = airbyte.Airbyte(
347
+ security=shared.Security(
348
+ basic_auth=shared.SchemeBasicAuth(
349
+ password="<YOUR_PASSWORD_HERE>",
350
+ username="<YOUR_USERNAME_HERE>",
351
+ ),
352
+ ),
353
+ )
354
+
355
+ req = shared.ConnectionCreateRequest(
356
+ configurations=shared.StreamConfigurations(
357
+ streams=[
358
+ shared.StreamConfiguration(
359
+ cursor_field=[
360
+ 'string',
361
+ ],
362
+ name='string',
363
+ primary_key=[
364
+ [
365
+ 'string',
366
+ ],
367
+ ],
368
+ ),
369
+ ],
370
+ ),
371
+ destination_id='c669dd1e-3620-483e-afc8-55914e0a570f',
372
+ namespace_format='${SOURCE_NAMESPACE}',
373
+ schedule=shared.ConnectionSchedule(
374
+ schedule_type=shared.ScheduleTypeEnum.MANUAL,
375
+ ),
376
+ source_id='dd427d83-a555-4847-8358-42325b6c7b3f',
377
+ )
378
+
379
+ res = s.connections.create_connection(req)
380
+
381
+ if res.connection_response is not None:
382
+ # handle response
383
+ pass
384
+ ```
385
+ <!-- End Authentication [security] -->
386
+
387
+ <!-- Placeholder for Future Speakeasy SDK Sections -->
388
+
389
+
390
+
391
+ ### Maturity
392
+
393
+ This SDK is in beta, and there may be breaking changes between versions without a major version update. Therefore, we recommend pinning usage
394
+ to a specific package version. This way, you can install the same version each time without breaking changes unless you are intentionally
395
+ looking for the latest version.
396
+
397
+ ### Contributions
398
+
399
+ While we value open-source contributions to this SDK, this library is generated programmatically.
400
+ Feel free to open a PR or a Github issue as a proof of concept and we'll do our best to include it in a future release !
401
+
402
+ ### SDK Created by [Speakeasy](https://docs.speakeasyapi.dev/docs/using-speakeasy/client-sdks)
403
+
404
+ Platform: UNKNOWN
405
+ Requires-Python: >=3.8
406
+ Description-Content-Type: text/markdown
407
+ Provides-Extra: dev