airbyte-api 0.35.4__tar.gz → 0.40.0__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 (404) hide show
  1. airbyte-api-0.40.0/PKG-INFO +168 -0
  2. {airbyte-api-0.35.4 → airbyte-api-0.40.0}/README.md +28 -15
  3. {airbyte-api-0.35.4 → airbyte-api-0.40.0}/setup.py +13 -15
  4. {airbyte-api-0.35.4 → airbyte-api-0.40.0}/src/airbyte/connections.py +7 -7
  5. {airbyte-api-0.35.4 → airbyte-api-0.40.0}/src/airbyte/destinations.py +9 -9
  6. {airbyte-api-0.35.4 → airbyte-api-0.40.0}/src/airbyte/jobs.py +5 -5
  7. {airbyte-api-0.35.4 → airbyte-api-0.40.0}/src/airbyte/models/__init__.py +1 -0
  8. {airbyte-api-0.35.4 → airbyte-api-0.40.0}/src/airbyte/models/operations/canceljob.py +3 -2
  9. {airbyte-api-0.35.4 → airbyte-api-0.40.0}/src/airbyte/models/operations/createconnection.py +3 -1
  10. {airbyte-api-0.35.4 → airbyte-api-0.40.0}/src/airbyte/models/operations/createdestination.py +3 -1
  11. {airbyte-api-0.35.4 → airbyte-api-0.40.0}/src/airbyte/models/operations/createjob.py +3 -1
  12. {airbyte-api-0.35.4 → airbyte-api-0.40.0}/src/airbyte/models/operations/createorupdateworkspaceoauthcredentials.py +3 -2
  13. {airbyte-api-0.35.4 → airbyte-api-0.40.0}/src/airbyte/models/operations/createsource.py +3 -1
  14. {airbyte-api-0.35.4 → airbyte-api-0.40.0}/src/airbyte/models/operations/createworkspace.py +3 -1
  15. {airbyte-api-0.35.4 → airbyte-api-0.40.0}/src/airbyte/models/operations/deleteconnection.py +3 -2
  16. {airbyte-api-0.35.4 → airbyte-api-0.40.0}/src/airbyte/models/operations/deletedestination.py +3 -2
  17. {airbyte-api-0.35.4 → airbyte-api-0.40.0}/src/airbyte/models/operations/deletesource.py +3 -2
  18. {airbyte-api-0.35.4 → airbyte-api-0.40.0}/src/airbyte/models/operations/deleteworkspace.py +3 -2
  19. {airbyte-api-0.35.4 → airbyte-api-0.40.0}/src/airbyte/models/operations/getconnection.py +3 -2
  20. {airbyte-api-0.35.4 → airbyte-api-0.40.0}/src/airbyte/models/operations/getdestination.py +3 -2
  21. {airbyte-api-0.35.4 → airbyte-api-0.40.0}/src/airbyte/models/operations/getjob.py +3 -2
  22. {airbyte-api-0.35.4 → airbyte-api-0.40.0}/src/airbyte/models/operations/getsource.py +3 -2
  23. {airbyte-api-0.35.4 → airbyte-api-0.40.0}/src/airbyte/models/operations/getstreamproperties.py +4 -3
  24. {airbyte-api-0.35.4 → airbyte-api-0.40.0}/src/airbyte/models/operations/getworkspace.py +3 -2
  25. {airbyte-api-0.35.4 → airbyte-api-0.40.0}/src/airbyte/models/operations/initiateoauth.py +3 -1
  26. {airbyte-api-0.35.4 → airbyte-api-0.40.0}/src/airbyte/models/operations/listconnections.py +8 -7
  27. {airbyte-api-0.35.4 → airbyte-api-0.40.0}/src/airbyte/models/operations/listdestinations.py +8 -7
  28. {airbyte-api-0.35.4 → airbyte-api-0.40.0}/src/airbyte/models/operations/listjobs.py +7 -6
  29. {airbyte-api-0.35.4 → airbyte-api-0.40.0}/src/airbyte/models/operations/listsources.py +8 -7
  30. {airbyte-api-0.35.4 → airbyte-api-0.40.0}/src/airbyte/models/operations/listworkspaces.py +8 -7
  31. {airbyte-api-0.35.4 → airbyte-api-0.40.0}/src/airbyte/models/operations/patchconnection.py +3 -2
  32. {airbyte-api-0.35.4 → airbyte-api-0.40.0}/src/airbyte/models/operations/patchdestination.py +3 -2
  33. {airbyte-api-0.35.4 → airbyte-api-0.40.0}/src/airbyte/models/operations/patchsource.py +3 -2
  34. {airbyte-api-0.35.4 → airbyte-api-0.40.0}/src/airbyte/models/operations/putdestination.py +3 -2
  35. {airbyte-api-0.35.4 → airbyte-api-0.40.0}/src/airbyte/models/operations/putsource.py +3 -2
  36. {airbyte-api-0.35.4 → airbyte-api-0.40.0}/src/airbyte/models/operations/updateworkspace.py +3 -2
  37. airbyte-api-0.40.0/src/airbyte/models/shared/__init__.py +327 -0
  38. {airbyte-api-0.35.4 → airbyte-api-0.40.0}/src/airbyte/models/shared/airtable.py +0 -2
  39. {airbyte-api-0.35.4 → airbyte-api-0.40.0}/src/airbyte/models/shared/amazon_ads.py +0 -1
  40. {airbyte-api-0.35.4 → airbyte-api-0.40.0}/src/airbyte/models/shared/amazon_seller_partner.py +0 -1
  41. {airbyte-api-0.35.4 → airbyte-api-0.40.0}/src/airbyte/models/shared/asana.py +0 -2
  42. {airbyte-api-0.35.4 → airbyte-api-0.40.0}/src/airbyte/models/shared/bing_ads.py +1 -2
  43. {airbyte-api-0.35.4 → airbyte-api-0.40.0}/src/airbyte/models/shared/connectioncreaterequest.py +3 -4
  44. {airbyte-api-0.35.4 → airbyte-api-0.40.0}/src/airbyte/models/shared/connectionpatchrequest.py +0 -1
  45. {airbyte-api-0.35.4 → airbyte-api-0.40.0}/src/airbyte/models/shared/connectionresponse.py +3 -4
  46. {airbyte-api-0.35.4 → airbyte-api-0.40.0}/src/airbyte/models/shared/connectionschedule.py +0 -1
  47. {airbyte-api-0.35.4 → airbyte-api-0.40.0}/src/airbyte/models/shared/connectionscheduleresponse.py +0 -1
  48. {airbyte-api-0.35.4 → airbyte-api-0.40.0}/src/airbyte/models/shared/connectionsresponse.py +2 -3
  49. {airbyte-api-0.35.4 → airbyte-api-0.40.0}/src/airbyte/models/shared/destination_aws_datalake.py +36 -31
  50. {airbyte-api-0.35.4 → airbyte-api-0.40.0}/src/airbyte/models/shared/destination_azure_blob_storage.py +19 -17
  51. {airbyte-api-0.35.4 → airbyte-api-0.40.0}/src/airbyte/models/shared/destination_bigquery.py +21 -15
  52. {airbyte-api-0.35.4 → airbyte-api-0.40.0}/src/airbyte/models/shared/destination_bigquery_denormalized.py +21 -15
  53. {airbyte-api-0.35.4 → airbyte-api-0.40.0}/src/airbyte/models/shared/destination_clickhouse.py +25 -24
  54. {airbyte-api-0.35.4 → airbyte-api-0.40.0}/src/airbyte/models/shared/destination_convex.py +2 -2
  55. {airbyte-api-0.35.4 → airbyte-api-0.40.0}/src/airbyte/models/shared/destination_cumulio.py +4 -4
  56. {airbyte-api-0.35.4 → airbyte-api-0.40.0}/src/airbyte/models/shared/destination_databend.py +4 -5
  57. {airbyte-api-0.35.4 → airbyte-api-0.40.0}/src/airbyte/models/shared/destination_databricks.py +20 -19
  58. airbyte-api-0.40.0/src/airbyte/models/shared/destination_dev_null.py +39 -0
  59. {airbyte-api-0.35.4 → airbyte-api-0.40.0}/src/airbyte/models/shared/destination_dynamodb.py +5 -6
  60. {airbyte-api-0.35.4 → airbyte-api-0.40.0}/src/airbyte/models/shared/destination_elasticsearch.py +11 -9
  61. {airbyte-api-0.35.4 → airbyte-api-0.40.0}/src/airbyte/models/shared/destination_firebolt.py +10 -8
  62. {airbyte-api-0.35.4 → airbyte-api-0.40.0}/src/airbyte/models/shared/destination_firestore.py +2 -3
  63. {airbyte-api-0.35.4 → airbyte-api-0.40.0}/src/airbyte/models/shared/destination_gcs.py +91 -82
  64. {airbyte-api-0.35.4 → airbyte-api-0.40.0}/src/airbyte/models/shared/destination_google_sheets.py +2 -3
  65. {airbyte-api-0.35.4 → airbyte-api-0.40.0}/src/airbyte/models/shared/destination_keen.py +3 -4
  66. {airbyte-api-0.35.4 → airbyte-api-0.40.0}/src/airbyte/models/shared/destination_kinesis.py +5 -5
  67. {airbyte-api-0.35.4 → airbyte-api-0.40.0}/src/airbyte/models/shared/destination_langchain.py +22 -19
  68. {airbyte-api-0.35.4 → airbyte-api-0.40.0}/src/airbyte/models/shared/destination_milvus.py +33 -33
  69. {airbyte-api-0.35.4 → airbyte-api-0.40.0}/src/airbyte/models/shared/destination_mongodb.py +51 -45
  70. {airbyte-api-0.35.4 → airbyte-api-0.40.0}/src/airbyte/models/shared/destination_mssql.py +39 -35
  71. {airbyte-api-0.35.4 → airbyte-api-0.40.0}/src/airbyte/models/shared/destination_mysql.py +25 -24
  72. {airbyte-api-0.35.4 → airbyte-api-0.40.0}/src/airbyte/models/shared/destination_oracle.py +26 -25
  73. {airbyte-api-0.35.4 → airbyte-api-0.40.0}/src/airbyte/models/shared/destination_pinecone.py +14 -15
  74. {airbyte-api-0.35.4 → airbyte-api-0.40.0}/src/airbyte/models/shared/destination_postgres.py +51 -51
  75. {airbyte-api-0.35.4 → airbyte-api-0.40.0}/src/airbyte/models/shared/destination_pubsub.py +9 -10
  76. {airbyte-api-0.35.4 → airbyte-api-0.40.0}/src/airbyte/models/shared/destination_redis.py +40 -36
  77. {airbyte-api-0.35.4 → airbyte-api-0.40.0}/src/airbyte/models/shared/destination_redshift.py +47 -40
  78. airbyte-api-0.40.0/src/airbyte/models/shared/destination_s3.py +305 -0
  79. {airbyte-api-0.35.4 → airbyte-api-0.40.0}/src/airbyte/models/shared/destination_s3_glue.py +30 -24
  80. {airbyte-api-0.35.4 → airbyte-api-0.40.0}/src/airbyte/models/shared/destination_sftp_json.py +3 -4
  81. {airbyte-api-0.35.4 → airbyte-api-0.40.0}/src/airbyte/models/shared/destination_snowflake.py +17 -16
  82. {airbyte-api-0.35.4 → airbyte-api-0.40.0}/src/airbyte/models/shared/destination_timeplus.py +3 -3
  83. {airbyte-api-0.35.4 → airbyte-api-0.40.0}/src/airbyte/models/shared/destination_typesense.py +2 -3
  84. {airbyte-api-0.35.4 → airbyte-api-0.40.0}/src/airbyte/models/shared/destination_vertica.py +25 -24
  85. {airbyte-api-0.35.4 → airbyte-api-0.40.0}/src/airbyte/models/shared/destination_xata.py +2 -2
  86. airbyte-api-0.40.0/src/airbyte/models/shared/destinationcreaterequest.py +55 -0
  87. airbyte-api-0.40.0/src/airbyte/models/shared/destinationpatchrequest.py +54 -0
  88. airbyte-api-0.40.0/src/airbyte/models/shared/destinationputrequest.py +54 -0
  89. airbyte-api-0.40.0/src/airbyte/models/shared/destinationresponse.py +58 -0
  90. {airbyte-api-0.35.4 → airbyte-api-0.40.0}/src/airbyte/models/shared/destinationsresponse.py +2 -3
  91. {airbyte-api-0.35.4 → airbyte-api-0.40.0}/src/airbyte/models/shared/facebook_marketing.py +0 -1
  92. {airbyte-api-0.35.4 → airbyte-api-0.40.0}/src/airbyte/models/shared/github.py +0 -2
  93. {airbyte-api-0.35.4 → airbyte-api-0.40.0}/src/airbyte/models/shared/gitlab.py +0 -2
  94. {airbyte-api-0.35.4 → airbyte-api-0.40.0}/src/airbyte/models/shared/google_ads.py +0 -2
  95. {airbyte-api-0.35.4 → airbyte-api-0.40.0}/src/airbyte/models/shared/google_analytics_data_api.py +0 -2
  96. {airbyte-api-0.35.4 → airbyte-api-0.40.0}/src/airbyte/models/shared/google_analytics_v4.py +0 -2
  97. {airbyte-api-0.35.4 → airbyte-api-0.40.0}/src/airbyte/models/shared/google_search_console.py +0 -2
  98. {airbyte-api-0.35.4 → airbyte-api-0.40.0}/src/airbyte/models/shared/google_sheets.py +0 -2
  99. {airbyte-api-0.35.4 → airbyte-api-0.40.0}/src/airbyte/models/shared/harvest.py +0 -2
  100. {airbyte-api-0.35.4 → airbyte-api-0.40.0}/src/airbyte/models/shared/hubspot.py +0 -2
  101. {airbyte-api-0.35.4 → airbyte-api-0.40.0}/src/airbyte/models/shared/initiateoauthrequest.py +0 -1
  102. {airbyte-api-0.35.4 → airbyte-api-0.40.0}/src/airbyte/models/shared/instagram.py +0 -1
  103. {airbyte-api-0.35.4 → airbyte-api-0.40.0}/src/airbyte/models/shared/intercom.py +0 -1
  104. {airbyte-api-0.35.4 → airbyte-api-0.40.0}/src/airbyte/models/shared/jobcreaterequest.py +0 -1
  105. {airbyte-api-0.35.4 → airbyte-api-0.40.0}/src/airbyte/models/shared/jobresponse.py +0 -1
  106. {airbyte-api-0.35.4 → airbyte-api-0.40.0}/src/airbyte/models/shared/jobsresponse.py +2 -3
  107. {airbyte-api-0.35.4 → airbyte-api-0.40.0}/src/airbyte/models/shared/lever_hiring.py +0 -2
  108. {airbyte-api-0.35.4 → airbyte-api-0.40.0}/src/airbyte/models/shared/linkedin_ads.py +0 -2
  109. {airbyte-api-0.35.4 → airbyte-api-0.40.0}/src/airbyte/models/shared/mailchimp.py +0 -2
  110. {airbyte-api-0.35.4 → airbyte-api-0.40.0}/src/airbyte/models/shared/microsoft_teams.py +0 -2
  111. {airbyte-api-0.35.4 → airbyte-api-0.40.0}/src/airbyte/models/shared/monday.py +0 -2
  112. {airbyte-api-0.35.4 → airbyte-api-0.40.0}/src/airbyte/models/shared/notion.py +0 -2
  113. {airbyte-api-0.35.4 → airbyte-api-0.40.0}/src/airbyte/models/shared/oauthinputconfiguration.py +0 -1
  114. {airbyte-api-0.35.4 → airbyte-api-0.40.0}/src/airbyte/models/shared/pinterest.py +0 -2
  115. {airbyte-api-0.35.4 → airbyte-api-0.40.0}/src/airbyte/models/shared/retently.py +0 -2
  116. {airbyte-api-0.35.4 → airbyte-api-0.40.0}/src/airbyte/models/shared/salesforce.py +0 -1
  117. {airbyte-api-0.35.4 → airbyte-api-0.40.0}/src/airbyte/models/shared/security.py +0 -2
  118. {airbyte-api-0.35.4 → airbyte-api-0.40.0}/src/airbyte/models/shared/shopify.py +0 -2
  119. {airbyte-api-0.35.4 → airbyte-api-0.40.0}/src/airbyte/models/shared/slack.py +0 -2
  120. {airbyte-api-0.35.4 → airbyte-api-0.40.0}/src/airbyte/models/shared/smartsheets.py +0 -2
  121. {airbyte-api-0.35.4 → airbyte-api-0.40.0}/src/airbyte/models/shared/snapchat_marketing.py +0 -1
  122. {airbyte-api-0.35.4 → airbyte-api-0.40.0}/src/airbyte/models/shared/snowflake.py +0 -2
  123. {airbyte-api-0.35.4 → airbyte-api-0.40.0}/src/airbyte/models/shared/source_aha.py +2 -2
  124. {airbyte-api-0.35.4 → airbyte-api-0.40.0}/src/airbyte/models/shared/source_aircall.py +2 -2
  125. {airbyte-api-0.35.4 → airbyte-api-0.40.0}/src/airbyte/models/shared/source_airtable.py +14 -12
  126. airbyte-api-0.40.0/src/airbyte/models/shared/source_alloydb.py +267 -0
  127. {airbyte-api-0.35.4 → airbyte-api-0.40.0}/src/airbyte/models/shared/source_amazon_ads.py +9 -10
  128. {airbyte-api-0.35.4 → airbyte-api-0.40.0}/src/airbyte/models/shared/source_amazon_seller_partner.py +9 -10
  129. {airbyte-api-0.35.4 → airbyte-api-0.40.0}/src/airbyte/models/shared/source_amazon_sqs.py +4 -5
  130. {airbyte-api-0.35.4 → airbyte-api-0.40.0}/src/airbyte/models/shared/source_amplitude.py +4 -5
  131. {airbyte-api-0.35.4 → airbyte-api-0.40.0}/src/airbyte/models/shared/source_apify_dataset.py +2 -3
  132. {airbyte-api-0.35.4 → airbyte-api-0.40.0}/src/airbyte/models/shared/source_appfollow.py +2 -3
  133. airbyte-api-0.40.0/src/airbyte/models/shared/source_asana.py +60 -0
  134. {airbyte-api-0.35.4 → airbyte-api-0.40.0}/src/airbyte/models/shared/source_auth0.py +15 -13
  135. {airbyte-api-0.35.4 → airbyte-api-0.40.0}/src/airbyte/models/shared/source_aws_cloudtrail.py +4 -3
  136. {airbyte-api-0.35.4 → airbyte-api-0.40.0}/src/airbyte/models/shared/source_azure_blob_storage.py +12 -9
  137. {airbyte-api-0.35.4 → airbyte-api-0.40.0}/src/airbyte/models/shared/source_azure_table.py +3 -4
  138. {airbyte-api-0.35.4 → airbyte-api-0.40.0}/src/airbyte/models/shared/source_bamboo_hr.py +4 -5
  139. {airbyte-api-0.35.4 → airbyte-api-0.40.0}/src/airbyte/models/shared/source_bigcommerce.py +2 -2
  140. {airbyte-api-0.35.4 → airbyte-api-0.40.0}/src/airbyte/models/shared/source_bigquery.py +2 -3
  141. {airbyte-api-0.35.4 → airbyte-api-0.40.0}/src/airbyte/models/shared/source_bing_ads.py +9 -9
  142. {airbyte-api-0.35.4 → airbyte-api-0.40.0}/src/airbyte/models/shared/source_braintree.py +2 -3
  143. {airbyte-api-0.35.4 → airbyte-api-0.40.0}/src/airbyte/models/shared/source_braze.py +2 -2
  144. {airbyte-api-0.35.4 → airbyte-api-0.40.0}/src/airbyte/models/shared/source_chargebee.py +2 -2
  145. {airbyte-api-0.35.4 → airbyte-api-0.40.0}/src/airbyte/models/shared/source_chartmogul.py +4 -4
  146. {airbyte-api-0.35.4 → airbyte-api-0.40.0}/src/airbyte/models/shared/source_clickhouse.py +25 -24
  147. {airbyte-api-0.35.4 → airbyte-api-0.40.0}/src/airbyte/models/shared/source_clickup_api.py +3 -4
  148. {airbyte-api-0.35.4 → airbyte-api-0.40.0}/src/airbyte/models/shared/source_clockify.py +3 -4
  149. {airbyte-api-0.35.4 → airbyte-api-0.40.0}/src/airbyte/models/shared/source_close_com.py +4 -4
  150. {airbyte-api-0.35.4 → airbyte-api-0.40.0}/src/airbyte/models/shared/source_coda.py +2 -2
  151. {airbyte-api-0.35.4 → airbyte-api-0.40.0}/src/airbyte/models/shared/source_coin_api.py +5 -6
  152. {airbyte-api-0.35.4 → airbyte-api-0.40.0}/src/airbyte/models/shared/source_coinmarketcap.py +3 -4
  153. {airbyte-api-0.35.4 → airbyte-api-0.40.0}/src/airbyte/models/shared/source_configcat.py +2 -2
  154. {airbyte-api-0.35.4 → airbyte-api-0.40.0}/src/airbyte/models/shared/source_confluence.py +2 -2
  155. {airbyte-api-0.35.4 → airbyte-api-0.40.0}/src/airbyte/models/shared/source_convex.py +2 -2
  156. {airbyte-api-0.35.4 → airbyte-api-0.40.0}/src/airbyte/models/shared/source_datascope.py +2 -2
  157. {airbyte-api-0.35.4 → airbyte-api-0.40.0}/src/airbyte/models/shared/source_delighted.py +2 -2
  158. {airbyte-api-0.35.4 → airbyte-api-0.40.0}/src/airbyte/models/shared/source_dixa.py +3 -4
  159. {airbyte-api-0.35.4 → airbyte-api-0.40.0}/src/airbyte/models/shared/source_dockerhub.py +2 -2
  160. {airbyte-api-0.35.4 → airbyte-api-0.40.0}/src/airbyte/models/shared/source_dremio.py +3 -3
  161. {airbyte-api-0.35.4 → airbyte-api-0.40.0}/src/airbyte/models/shared/source_dynamodb.py +4 -5
  162. airbyte-api-0.40.0/src/airbyte/models/shared/source_e2e_test_cloud.py +68 -0
  163. {airbyte-api-0.35.4 → airbyte-api-0.40.0}/src/airbyte/models/shared/source_emailoctopus.py +2 -2
  164. {airbyte-api-0.35.4 → airbyte-api-0.40.0}/src/airbyte/models/shared/source_exchange_rates.py +3 -4
  165. {airbyte-api-0.35.4 → airbyte-api-0.40.0}/src/airbyte/models/shared/source_facebook_marketing.py +16 -18
  166. {airbyte-api-0.35.4 → airbyte-api-0.40.0}/src/airbyte/models/shared/source_facebook_pages.py +2 -2
  167. {airbyte-api-0.35.4 → airbyte-api-0.40.0}/src/airbyte/models/shared/source_faker.py +8 -9
  168. {airbyte-api-0.35.4 → airbyte-api-0.40.0}/src/airbyte/models/shared/source_fauna.py +22 -21
  169. {airbyte-api-0.35.4 → airbyte-api-0.40.0}/src/airbyte/models/shared/source_file_secure.py +35 -38
  170. {airbyte-api-0.35.4 → airbyte-api-0.40.0}/src/airbyte/models/shared/source_firebolt.py +2 -3
  171. {airbyte-api-0.35.4 → airbyte-api-0.40.0}/src/airbyte/models/shared/source_freshcaller.py +2 -3
  172. {airbyte-api-0.35.4 → airbyte-api-0.40.0}/src/airbyte/models/shared/source_freshdesk.py +2 -3
  173. {airbyte-api-0.35.4 → airbyte-api-0.40.0}/src/airbyte/models/shared/source_freshsales.py +2 -2
  174. {airbyte-api-0.35.4 → airbyte-api-0.40.0}/src/airbyte/models/shared/source_gainsight_px.py +2 -2
  175. {airbyte-api-0.35.4 → airbyte-api-0.40.0}/src/airbyte/models/shared/source_gcs.py +2 -2
  176. {airbyte-api-0.35.4 → airbyte-api-0.40.0}/src/airbyte/models/shared/source_getlago.py +2 -2
  177. {airbyte-api-0.35.4 → airbyte-api-0.40.0}/src/airbyte/models/shared/source_github.py +14 -12
  178. {airbyte-api-0.35.4 → airbyte-api-0.40.0}/src/airbyte/models/shared/source_gitlab.py +15 -13
  179. {airbyte-api-0.35.4 → airbyte-api-0.40.0}/src/airbyte/models/shared/source_glassfrog.py +2 -2
  180. {airbyte-api-0.35.4 → airbyte-api-0.40.0}/src/airbyte/models/shared/source_gnews.py +4 -5
  181. {airbyte-api-0.35.4 → airbyte-api-0.40.0}/src/airbyte/models/shared/source_google_ads.py +4 -7
  182. {airbyte-api-0.35.4 → airbyte-api-0.40.0}/src/airbyte/models/shared/source_google_analytics_data_api.py +11 -9
  183. {airbyte-api-0.35.4 → airbyte-api-0.40.0}/src/airbyte/models/shared/source_google_analytics_v4.py +11 -9
  184. {airbyte-api-0.35.4 → airbyte-api-0.40.0}/src/airbyte/models/shared/source_google_directory.py +14 -12
  185. {airbyte-api-0.35.4 → airbyte-api-0.40.0}/src/airbyte/models/shared/source_google_pagespeed_insights.py +5 -6
  186. {airbyte-api-0.35.4 → airbyte-api-0.40.0}/src/airbyte/models/shared/source_google_search_console.py +20 -18
  187. {airbyte-api-0.35.4 → airbyte-api-0.40.0}/src/airbyte/models/shared/source_google_sheets.py +15 -13
  188. {airbyte-api-0.35.4 → airbyte-api-0.40.0}/src/airbyte/models/shared/source_google_webfonts.py +2 -3
  189. {airbyte-api-0.35.4 → airbyte-api-0.40.0}/src/airbyte/models/shared/source_google_workspace_admin_reports.py +2 -3
  190. {airbyte-api-0.35.4 → airbyte-api-0.40.0}/src/airbyte/models/shared/source_greenhouse.py +2 -2
  191. {airbyte-api-0.35.4 → airbyte-api-0.40.0}/src/airbyte/models/shared/source_gridly.py +2 -2
  192. airbyte-api-0.40.0/src/airbyte/models/shared/source_harvest.py +69 -0
  193. {airbyte-api-0.35.4 → airbyte-api-0.40.0}/src/airbyte/models/shared/source_hubplanner.py +2 -2
  194. {airbyte-api-0.35.4 → airbyte-api-0.40.0}/src/airbyte/models/shared/source_hubspot.py +15 -13
  195. {airbyte-api-0.35.4 → airbyte-api-0.40.0}/src/airbyte/models/shared/source_insightly.py +4 -4
  196. {airbyte-api-0.35.4 → airbyte-api-0.40.0}/src/airbyte/models/shared/source_instagram.py +2 -3
  197. {airbyte-api-0.35.4 → airbyte-api-0.40.0}/src/airbyte/models/shared/source_instatus.py +2 -2
  198. {airbyte-api-0.35.4 → airbyte-api-0.40.0}/src/airbyte/models/shared/source_intercom.py +2 -3
  199. {airbyte-api-0.35.4 → airbyte-api-0.40.0}/src/airbyte/models/shared/source_ip2whois.py +2 -3
  200. {airbyte-api-0.35.4 → airbyte-api-0.40.0}/src/airbyte/models/shared/source_iterable.py +2 -2
  201. {airbyte-api-0.35.4 → airbyte-api-0.40.0}/src/airbyte/models/shared/source_jira.py +6 -7
  202. {airbyte-api-0.35.4 → airbyte-api-0.40.0}/src/airbyte/models/shared/source_k6_cloud.py +2 -2
  203. {airbyte-api-0.35.4 → airbyte-api-0.40.0}/src/airbyte/models/shared/source_klarna.py +4 -4
  204. {airbyte-api-0.35.4 → airbyte-api-0.40.0}/src/airbyte/models/shared/source_klaviyo.py +2 -2
  205. {airbyte-api-0.35.4 → airbyte-api-0.40.0}/src/airbyte/models/shared/source_kustomer_singer.py +2 -2
  206. {airbyte-api-0.35.4 → airbyte-api-0.40.0}/src/airbyte/models/shared/source_kyve.py +4 -5
  207. {airbyte-api-0.35.4 → airbyte-api-0.40.0}/src/airbyte/models/shared/source_launchdarkly.py +2 -2
  208. {airbyte-api-0.35.4 → airbyte-api-0.40.0}/src/airbyte/models/shared/source_lemlist.py +2 -2
  209. {airbyte-api-0.35.4 → airbyte-api-0.40.0}/src/airbyte/models/shared/source_lever_hiring.py +15 -13
  210. {airbyte-api-0.35.4 → airbyte-api-0.40.0}/src/airbyte/models/shared/source_linkedin_ads.py +16 -15
  211. {airbyte-api-0.35.4 → airbyte-api-0.40.0}/src/airbyte/models/shared/source_linkedin_pages.py +14 -12
  212. {airbyte-api-0.35.4 → airbyte-api-0.40.0}/src/airbyte/models/shared/source_linnworks.py +2 -2
  213. {airbyte-api-0.35.4 → airbyte-api-0.40.0}/src/airbyte/models/shared/source_lokalise.py +2 -2
  214. {airbyte-api-0.35.4 → airbyte-api-0.40.0}/src/airbyte/models/shared/source_mailchimp.py +14 -12
  215. {airbyte-api-0.35.4 → airbyte-api-0.40.0}/src/airbyte/models/shared/source_mailgun.py +3 -4
  216. {airbyte-api-0.35.4 → airbyte-api-0.40.0}/src/airbyte/models/shared/source_mailjet_sms.py +2 -3
  217. {airbyte-api-0.35.4 → airbyte-api-0.40.0}/src/airbyte/models/shared/source_marketo.py +2 -2
  218. {airbyte-api-0.35.4 → airbyte-api-0.40.0}/src/airbyte/models/shared/source_metabase.py +2 -3
  219. {airbyte-api-0.35.4 → airbyte-api-0.40.0}/src/airbyte/models/shared/source_microsoft_teams.py +14 -12
  220. {airbyte-api-0.35.4 → airbyte-api-0.40.0}/src/airbyte/models/shared/source_mixpanel.py +19 -17
  221. {airbyte-api-0.35.4 → airbyte-api-0.40.0}/src/airbyte/models/shared/source_monday.py +15 -13
  222. airbyte-api-0.40.0/src/airbyte/models/shared/source_mongodb.py +82 -0
  223. {airbyte-api-0.35.4 → airbyte-api-0.40.0}/src/airbyte/models/shared/source_mongodb_internal_poc.py +3 -4
  224. {airbyte-api-0.35.4 → airbyte-api-0.40.0}/src/airbyte/models/shared/source_mssql.py +53 -46
  225. {airbyte-api-0.35.4 → airbyte-api-0.40.0}/src/airbyte/models/shared/source_my_hours.py +3 -4
  226. {airbyte-api-0.35.4 → airbyte-api-0.40.0}/src/airbyte/models/shared/source_mysql.py +56 -51
  227. {airbyte-api-0.35.4 → airbyte-api-0.40.0}/src/airbyte/models/shared/source_netsuite.py +4 -5
  228. {airbyte-api-0.35.4 → airbyte-api-0.40.0}/src/airbyte/models/shared/source_notion.py +14 -12
  229. {airbyte-api-0.35.4 → airbyte-api-0.40.0}/src/airbyte/models/shared/source_nytimes.py +2 -3
  230. {airbyte-api-0.35.4 → airbyte-api-0.40.0}/src/airbyte/models/shared/source_okta.py +14 -12
  231. {airbyte-api-0.35.4 → airbyte-api-0.40.0}/src/airbyte/models/shared/source_omnisend.py +2 -2
  232. {airbyte-api-0.35.4 → airbyte-api-0.40.0}/src/airbyte/models/shared/source_onesignal.py +3 -5
  233. {airbyte-api-0.35.4 → airbyte-api-0.40.0}/src/airbyte/models/shared/source_oracle.py +51 -44
  234. {airbyte-api-0.35.4 → airbyte-api-0.40.0}/src/airbyte/models/shared/source_orb.py +5 -6
  235. {airbyte-api-0.35.4 → airbyte-api-0.40.0}/src/airbyte/models/shared/source_orbit.py +2 -3
  236. {airbyte-api-0.35.4 → airbyte-api-0.40.0}/src/airbyte/models/shared/source_outbrain_amplify.py +14 -12
  237. {airbyte-api-0.35.4 → airbyte-api-0.40.0}/src/airbyte/models/shared/source_outreach.py +2 -2
  238. {airbyte-api-0.35.4 → airbyte-api-0.40.0}/src/airbyte/models/shared/source_paypal_transaction.py +4 -5
  239. {airbyte-api-0.35.4 → airbyte-api-0.40.0}/src/airbyte/models/shared/source_paystack.py +3 -4
  240. {airbyte-api-0.35.4 → airbyte-api-0.40.0}/src/airbyte/models/shared/source_pendo.py +2 -2
  241. {airbyte-api-0.35.4 → airbyte-api-0.40.0}/src/airbyte/models/shared/source_persistiq.py +2 -2
  242. {airbyte-api-0.35.4 → airbyte-api-0.40.0}/src/airbyte/models/shared/source_pexels_api.py +2 -3
  243. {airbyte-api-0.35.4 → airbyte-api-0.40.0}/src/airbyte/models/shared/source_pinterest.py +15 -13
  244. {airbyte-api-0.35.4 → airbyte-api-0.40.0}/src/airbyte/models/shared/source_pipedrive.py +3 -5
  245. {airbyte-api-0.35.4 → airbyte-api-0.40.0}/src/airbyte/models/shared/source_pocket.py +3 -4
  246. {airbyte-api-0.35.4 → airbyte-api-0.40.0}/src/airbyte/models/shared/source_pokeapi.py +2 -2
  247. {airbyte-api-0.35.4 → airbyte-api-0.40.0}/src/airbyte/models/shared/source_polygon_stock_api.py +2 -3
  248. airbyte-api-0.40.0/src/airbyte/models/shared/source_postgres.py +267 -0
  249. {airbyte-api-0.35.4 → airbyte-api-0.40.0}/src/airbyte/models/shared/source_posthog.py +4 -5
  250. {airbyte-api-0.35.4 → airbyte-api-0.40.0}/src/airbyte/models/shared/source_postmarkapp.py +2 -2
  251. {airbyte-api-0.35.4 → airbyte-api-0.40.0}/src/airbyte/models/shared/source_prestashop.py +2 -2
  252. {airbyte-api-0.35.4 → airbyte-api-0.40.0}/src/airbyte/models/shared/source_punk_api.py +2 -3
  253. {airbyte-api-0.35.4 → airbyte-api-0.40.0}/src/airbyte/models/shared/source_pypi.py +2 -3
  254. {airbyte-api-0.35.4 → airbyte-api-0.40.0}/src/airbyte/models/shared/source_qualaroo.py +3 -4
  255. {airbyte-api-0.35.4 → airbyte-api-0.40.0}/src/airbyte/models/shared/source_quickbooks.py +13 -10
  256. {airbyte-api-0.35.4 → airbyte-api-0.40.0}/src/airbyte/models/shared/source_railz.py +2 -2
  257. {airbyte-api-0.35.4 → airbyte-api-0.40.0}/src/airbyte/models/shared/source_recharge.py +2 -2
  258. {airbyte-api-0.35.4 → airbyte-api-0.40.0}/src/airbyte/models/shared/source_recreation.py +2 -3
  259. {airbyte-api-0.35.4 → airbyte-api-0.40.0}/src/airbyte/models/shared/source_recruitee.py +2 -2
  260. {airbyte-api-0.35.4 → airbyte-api-0.40.0}/src/airbyte/models/shared/source_recurly.py +2 -3
  261. {airbyte-api-0.35.4 → airbyte-api-0.40.0}/src/airbyte/models/shared/source_redshift.py +5 -6
  262. airbyte-api-0.40.0/src/airbyte/models/shared/source_retently.py +61 -0
  263. {airbyte-api-0.35.4 → airbyte-api-0.40.0}/src/airbyte/models/shared/source_rki_covid.py +2 -2
  264. {airbyte-api-0.35.4 → airbyte-api-0.40.0}/src/airbyte/models/shared/source_rss.py +2 -2
  265. {airbyte-api-0.35.4 → airbyte-api-0.40.0}/src/airbyte/models/shared/source_s3.py +82 -81
  266. {airbyte-api-0.35.4 → airbyte-api-0.40.0}/src/airbyte/models/shared/source_salesforce.py +7 -9
  267. {airbyte-api-0.35.4 → airbyte-api-0.40.0}/src/airbyte/models/shared/source_salesloft.py +10 -8
  268. {airbyte-api-0.35.4 → airbyte-api-0.40.0}/src/airbyte/models/shared/source_sap_fieldglass.py +2 -2
  269. {airbyte-api-0.35.4 → airbyte-api-0.40.0}/src/airbyte/models/shared/source_secoda.py +2 -2
  270. {airbyte-api-0.35.4 → airbyte-api-0.40.0}/src/airbyte/models/shared/source_sendgrid.py +2 -3
  271. {airbyte-api-0.35.4 → airbyte-api-0.40.0}/src/airbyte/models/shared/source_sendinblue.py +2 -2
  272. {airbyte-api-0.35.4 → airbyte-api-0.40.0}/src/airbyte/models/shared/source_senseforce.py +3 -4
  273. {airbyte-api-0.35.4 → airbyte-api-0.40.0}/src/airbyte/models/shared/source_sentry.py +4 -5
  274. airbyte-api-0.40.0/src/airbyte/models/shared/source_sftp.py +71 -0
  275. {airbyte-api-0.35.4 → airbyte-api-0.40.0}/src/airbyte/models/shared/source_sftp_bulk.py +10 -11
  276. {airbyte-api-0.35.4 → airbyte-api-0.40.0}/src/airbyte/models/shared/source_shopify.py +16 -13
  277. {airbyte-api-0.35.4 → airbyte-api-0.40.0}/src/airbyte/models/shared/source_shortio.py +2 -2
  278. {airbyte-api-0.35.4 → airbyte-api-0.40.0}/src/airbyte/models/shared/source_slack.py +19 -17
  279. {airbyte-api-0.35.4 → airbyte-api-0.40.0}/src/airbyte/models/shared/source_smaily.py +2 -2
  280. {airbyte-api-0.35.4 → airbyte-api-0.40.0}/src/airbyte/models/shared/source_smartengage.py +2 -2
  281. {airbyte-api-0.35.4 → airbyte-api-0.40.0}/src/airbyte/models/shared/source_smartsheets.py +16 -14
  282. {airbyte-api-0.35.4 → airbyte-api-0.40.0}/src/airbyte/models/shared/source_snapchat_marketing.py +4 -4
  283. {airbyte-api-0.35.4 → airbyte-api-0.40.0}/src/airbyte/models/shared/source_snowflake.py +14 -12
  284. {airbyte-api-0.35.4 → airbyte-api-0.40.0}/src/airbyte/models/shared/source_sonar_cloud.py +3 -4
  285. {airbyte-api-0.35.4 → airbyte-api-0.40.0}/src/airbyte/models/shared/source_spacex_api.py +2 -3
  286. {airbyte-api-0.35.4 → airbyte-api-0.40.0}/src/airbyte/models/shared/source_square.py +19 -16
  287. {airbyte-api-0.35.4 → airbyte-api-0.40.0}/src/airbyte/models/shared/source_strava.py +3 -4
  288. {airbyte-api-0.35.4 → airbyte-api-0.40.0}/src/airbyte/models/shared/source_stripe.py +5 -6
  289. {airbyte-api-0.35.4 → airbyte-api-0.40.0}/src/airbyte/models/shared/source_survey_sparrow.py +15 -13
  290. {airbyte-api-0.35.4 → airbyte-api-0.40.0}/src/airbyte/models/shared/source_surveymonkey.py +5 -7
  291. {airbyte-api-0.35.4 → airbyte-api-0.40.0}/src/airbyte/models/shared/source_tempo.py +2 -2
  292. {airbyte-api-0.35.4 → airbyte-api-0.40.0}/src/airbyte/models/shared/source_the_guardian_api.py +2 -3
  293. {airbyte-api-0.35.4 → airbyte-api-0.40.0}/src/airbyte/models/shared/source_tiktok_marketing.py +18 -15
  294. {airbyte-api-0.35.4 → airbyte-api-0.40.0}/src/airbyte/models/shared/source_todoist.py +2 -2
  295. {airbyte-api-0.35.4 → airbyte-api-0.40.0}/src/airbyte/models/shared/source_trello.py +3 -4
  296. {airbyte-api-0.35.4 → airbyte-api-0.40.0}/src/airbyte/models/shared/source_trustpilot.py +15 -13
  297. {airbyte-api-0.35.4 → airbyte-api-0.40.0}/src/airbyte/models/shared/source_tvmaze_schedule.py +2 -3
  298. {airbyte-api-0.35.4 → airbyte-api-0.40.0}/src/airbyte/models/shared/source_twilio.py +3 -4
  299. {airbyte-api-0.35.4 → airbyte-api-0.40.0}/src/airbyte/models/shared/source_twilio_taskrouter.py +2 -2
  300. {airbyte-api-0.35.4 → airbyte-api-0.40.0}/src/airbyte/models/shared/source_twitter.py +2 -3
  301. {airbyte-api-0.35.4 → airbyte-api-0.40.0}/src/airbyte/models/shared/source_typeform.py +15 -13
  302. {airbyte-api-0.35.4 → airbyte-api-0.40.0}/src/airbyte/models/shared/source_us_census.py +2 -3
  303. {airbyte-api-0.35.4 → airbyte-api-0.40.0}/src/airbyte/models/shared/source_vantage.py +2 -2
  304. {airbyte-api-0.35.4 → airbyte-api-0.40.0}/src/airbyte/models/shared/source_webflow.py +2 -2
  305. {airbyte-api-0.35.4 → airbyte-api-0.40.0}/src/airbyte/models/shared/source_whisky_hunter.py +2 -3
  306. {airbyte-api-0.35.4 → airbyte-api-0.40.0}/src/airbyte/models/shared/source_wikipedia_pageviews.py +2 -2
  307. {airbyte-api-0.35.4 → airbyte-api-0.40.0}/src/airbyte/models/shared/source_woocommerce.py +2 -2
  308. {airbyte-api-0.35.4 → airbyte-api-0.40.0}/src/airbyte/models/shared/source_xero.py +2 -3
  309. {airbyte-api-0.35.4 → airbyte-api-0.40.0}/src/airbyte/models/shared/source_xkcd.py +2 -3
  310. {airbyte-api-0.35.4 → airbyte-api-0.40.0}/src/airbyte/models/shared/source_yandex_metrica.py +2 -3
  311. {airbyte-api-0.35.4 → airbyte-api-0.40.0}/src/airbyte/models/shared/source_yotpo.py +4 -4
  312. {airbyte-api-0.35.4 → airbyte-api-0.40.0}/src/airbyte/models/shared/source_younium.py +3 -4
  313. airbyte-api-0.40.0/src/airbyte/models/shared/source_youtube_analytics.py +35 -0
  314. {airbyte-api-0.35.4 → airbyte-api-0.40.0}/src/airbyte/models/shared/source_zendesk_chat.py +15 -13
  315. {airbyte-api-0.35.4 → airbyte-api-0.40.0}/src/airbyte/models/shared/source_zendesk_sunshine.py +14 -12
  316. airbyte-api-0.40.0/src/airbyte/models/shared/source_zendesk_support.py +71 -0
  317. airbyte-api-0.40.0/src/airbyte/models/shared/source_zendesk_talk.py +69 -0
  318. {airbyte-api-0.35.4 → airbyte-api-0.40.0}/src/airbyte/models/shared/source_zenloop.py +2 -3
  319. {airbyte-api-0.35.4 → airbyte-api-0.40.0}/src/airbyte/models/shared/source_zoho_crm.py +5 -6
  320. {airbyte-api-0.35.4 → airbyte-api-0.40.0}/src/airbyte/models/shared/source_zoom.py +2 -2
  321. {airbyte-api-0.35.4 → airbyte-api-0.40.0}/src/airbyte/models/shared/source_zuora.py +5 -6
  322. airbyte-api-0.40.0/src/airbyte/models/shared/sourcecreaterequest.py +219 -0
  323. airbyte-api-0.40.0/src/airbyte/models/shared/sourcepatchrequest.py +219 -0
  324. airbyte-api-0.40.0/src/airbyte/models/shared/sourceputrequest.py +216 -0
  325. airbyte-api-0.40.0/src/airbyte/models/shared/sourceresponse.py +220 -0
  326. {airbyte-api-0.35.4 → airbyte-api-0.40.0}/src/airbyte/models/shared/sourcesresponse.py +2 -3
  327. {airbyte-api-0.35.4 → airbyte-api-0.40.0}/src/airbyte/models/shared/square.py +0 -2
  328. {airbyte-api-0.35.4 → airbyte-api-0.40.0}/src/airbyte/models/shared/strava.py +0 -1
  329. {airbyte-api-0.35.4 → airbyte-api-0.40.0}/src/airbyte/models/shared/streamconfiguration.py +3 -4
  330. {airbyte-api-0.35.4 → airbyte-api-0.40.0}/src/airbyte/models/shared/streamconfigurations.py +2 -3
  331. {airbyte-api-0.35.4 → airbyte-api-0.40.0}/src/airbyte/models/shared/streamproperties.py +5 -6
  332. {airbyte-api-0.35.4 → airbyte-api-0.40.0}/src/airbyte/models/shared/streampropertiesresponse.py +2 -3
  333. {airbyte-api-0.35.4 → airbyte-api-0.40.0}/src/airbyte/models/shared/surveymonkey.py +0 -2
  334. {airbyte-api-0.35.4 → airbyte-api-0.40.0}/src/airbyte/models/shared/tiktok_marketing.py +0 -2
  335. {airbyte-api-0.35.4 → airbyte-api-0.40.0}/src/airbyte/models/shared/typeform.py +0 -2
  336. {airbyte-api-0.35.4 → airbyte-api-0.40.0}/src/airbyte/models/shared/workspacecreaterequest.py +0 -1
  337. {airbyte-api-0.35.4 → airbyte-api-0.40.0}/src/airbyte/models/shared/workspaceoauthcredentialsrequest.py +0 -1
  338. {airbyte-api-0.35.4 → airbyte-api-0.40.0}/src/airbyte/models/shared/workspaceresponse.py +2 -2
  339. {airbyte-api-0.35.4 → airbyte-api-0.40.0}/src/airbyte/models/shared/workspacesresponse.py +2 -3
  340. {airbyte-api-0.35.4 → airbyte-api-0.40.0}/src/airbyte/models/shared/workspaceupdaterequest.py +0 -1
  341. {airbyte-api-0.35.4 → airbyte-api-0.40.0}/src/airbyte/models/shared/xero.py +0 -2
  342. {airbyte-api-0.35.4 → airbyte-api-0.40.0}/src/airbyte/models/shared/youtube_analytics.py +0 -2
  343. {airbyte-api-0.35.4 → airbyte-api-0.40.0}/src/airbyte/models/shared/zendesk_chat.py +0 -2
  344. {airbyte-api-0.35.4 → airbyte-api-0.40.0}/src/airbyte/models/shared/zendesk_sunshine.py +0 -2
  345. {airbyte-api-0.35.4 → airbyte-api-0.40.0}/src/airbyte/models/shared/zendesk_support.py +0 -2
  346. {airbyte-api-0.35.4 → airbyte-api-0.40.0}/src/airbyte/models/shared/zendesk_talk.py +0 -2
  347. {airbyte-api-0.35.4 → airbyte-api-0.40.0}/src/airbyte/sdk.py +5 -2
  348. {airbyte-api-0.35.4 → airbyte-api-0.40.0}/src/airbyte/sdkconfiguration.py +7 -5
  349. {airbyte-api-0.35.4 → airbyte-api-0.40.0}/src/airbyte/sources.py +11 -11
  350. {airbyte-api-0.35.4 → airbyte-api-0.40.0}/src/airbyte/streams.py +1 -1
  351. {airbyte-api-0.35.4 → airbyte-api-0.40.0}/src/airbyte/utils/retries.py +3 -2
  352. {airbyte-api-0.35.4 → airbyte-api-0.40.0}/src/airbyte/utils/utils.py +133 -59
  353. {airbyte-api-0.35.4 → airbyte-api-0.40.0}/src/airbyte/workspaces.py +9 -9
  354. airbyte-api-0.40.0/src/airbyte_api.egg-info/PKG-INFO +168 -0
  355. airbyte-api-0.40.0/src/airbyte_api.egg-info/requires.txt +17 -0
  356. airbyte-api-0.35.4/PKG-INFO +0 -158
  357. airbyte-api-0.35.4/src/airbyte/models/shared/__init__.py +0 -327
  358. airbyte-api-0.35.4/src/airbyte/models/shared/destination_dev_null.py +0 -36
  359. airbyte-api-0.35.4/src/airbyte/models/shared/destination_s3.py +0 -300
  360. airbyte-api-0.35.4/src/airbyte/models/shared/destinationcreaterequest.py +0 -19
  361. airbyte-api-0.35.4/src/airbyte/models/shared/destinationpatchrequest.py +0 -18
  362. airbyte-api-0.35.4/src/airbyte/models/shared/destinationputrequest.py +0 -18
  363. airbyte-api-0.35.4/src/airbyte/models/shared/destinationresponse.py +0 -22
  364. airbyte-api-0.35.4/src/airbyte/models/shared/source_alloydb.py +0 -130
  365. airbyte-api-0.35.4/src/airbyte/models/shared/source_asana.py +0 -58
  366. airbyte-api-0.35.4/src/airbyte/models/shared/source_e2e_test_cloud.py +0 -66
  367. airbyte-api-0.35.4/src/airbyte/models/shared/source_harvest.py +0 -31
  368. airbyte-api-0.35.4/src/airbyte/models/shared/source_mongodb.py +0 -65
  369. airbyte-api-0.35.4/src/airbyte/models/shared/source_postgres.py +0 -130
  370. airbyte-api-0.35.4/src/airbyte/models/shared/source_retently.py +0 -23
  371. airbyte-api-0.35.4/src/airbyte/models/shared/source_sftp.py +0 -69
  372. airbyte-api-0.35.4/src/airbyte/models/shared/source_youtube_analytics.py +0 -22
  373. airbyte-api-0.35.4/src/airbyte/models/shared/source_zendesk_support.py +0 -31
  374. airbyte-api-0.35.4/src/airbyte/models/shared/source_zendesk_talk.py +0 -29
  375. airbyte-api-0.35.4/src/airbyte/models/shared/sourcecreaterequest.py +0 -21
  376. airbyte-api-0.35.4/src/airbyte/models/shared/sourcepatchrequest.py +0 -21
  377. airbyte-api-0.35.4/src/airbyte/models/shared/sourceputrequest.py +0 -18
  378. airbyte-api-0.35.4/src/airbyte/models/shared/sourceresponse.py +0 -22
  379. airbyte-api-0.35.4/src/airbyte_api.egg-info/PKG-INFO +0 -158
  380. airbyte-api-0.35.4/src/airbyte_api.egg-info/requires.txt +0 -19
  381. {airbyte-api-0.35.4 → airbyte-api-0.40.0}/LICENSE.md +0 -0
  382. {airbyte-api-0.35.4 → airbyte-api-0.40.0}/setup.cfg +0 -0
  383. {airbyte-api-0.35.4 → airbyte-api-0.40.0}/src/airbyte/__init__.py +0 -0
  384. {airbyte-api-0.35.4 → airbyte-api-0.40.0}/src/airbyte/models/errors/__init__.py +0 -0
  385. {airbyte-api-0.35.4 → airbyte-api-0.40.0}/src/airbyte/models/errors/sdkerror.py +0 -0
  386. {airbyte-api-0.35.4 → airbyte-api-0.40.0}/src/airbyte/models/operations/__init__.py +0 -0
  387. {airbyte-api-0.35.4 → airbyte-api-0.40.0}/src/airbyte/models/shared/actortypeenum.py +0 -0
  388. {airbyte-api-0.35.4 → airbyte-api-0.40.0}/src/airbyte/models/shared/connectionstatusenum.py +0 -0
  389. {airbyte-api-0.35.4 → airbyte-api-0.40.0}/src/airbyte/models/shared/connectionsyncmodeenum.py +0 -0
  390. {airbyte-api-0.35.4 → airbyte-api-0.40.0}/src/airbyte/models/shared/geographyenum.py +0 -0
  391. {airbyte-api-0.35.4 → airbyte-api-0.40.0}/src/airbyte/models/shared/geographyenumnodefault.py +0 -0
  392. {airbyte-api-0.35.4 → airbyte-api-0.40.0}/src/airbyte/models/shared/jobstatusenum.py +0 -0
  393. {airbyte-api-0.35.4 → airbyte-api-0.40.0}/src/airbyte/models/shared/jobtypeenum.py +0 -0
  394. {airbyte-api-0.35.4 → airbyte-api-0.40.0}/src/airbyte/models/shared/namespacedefinitionenum.py +0 -0
  395. {airbyte-api-0.35.4 → airbyte-api-0.40.0}/src/airbyte/models/shared/namespacedefinitionenumnodefault.py +0 -0
  396. {airbyte-api-0.35.4 → airbyte-api-0.40.0}/src/airbyte/models/shared/nonbreakingschemaupdatesbehaviorenum.py +0 -0
  397. {airbyte-api-0.35.4 → airbyte-api-0.40.0}/src/airbyte/models/shared/nonbreakingschemaupdatesbehaviorenumnodefault.py +0 -0
  398. {airbyte-api-0.35.4 → airbyte-api-0.40.0}/src/airbyte/models/shared/oauthactornames.py +0 -0
  399. {airbyte-api-0.35.4 → airbyte-api-0.40.0}/src/airbyte/models/shared/scheduletypeenum.py +0 -0
  400. {airbyte-api-0.35.4 → airbyte-api-0.40.0}/src/airbyte/models/shared/scheduletypewithbasicenum.py +0 -0
  401. {airbyte-api-0.35.4 → airbyte-api-0.40.0}/src/airbyte/utils/__init__.py +0 -0
  402. {airbyte-api-0.35.4 → airbyte-api-0.40.0}/src/airbyte_api.egg-info/SOURCES.txt +0 -0
  403. {airbyte-api-0.35.4 → airbyte-api-0.40.0}/src/airbyte_api.egg-info/dependency_links.txt +0 -0
  404. {airbyte-api-0.35.4 → airbyte-api-0.40.0}/src/airbyte_api.egg-info/top_level.txt +0 -0
@@ -0,0 +1,168 @@
1
+ Metadata-Version: 2.1
2
+ Name: airbyte-api
3
+ Version: 0.40.0
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 -->
24
+ ## SDK Installation
25
+
26
+ ```bash
27
+ pip install airbyte-api
28
+ ```
29
+ <!-- End SDK Installation -->
30
+
31
+ ## SDK Example Usage
32
+ <!-- Start SDK Example Usage -->
33
+ ```python
34
+ import airbyte
35
+ from airbyte.models import shared
36
+
37
+ s = airbyte.Airbyte(
38
+ security=shared.Security(
39
+ basic_auth=shared.SchemeBasicAuth(
40
+ password="",
41
+ username="",
42
+ ),
43
+ ),
44
+ )
45
+
46
+ req = shared.ConnectionCreateRequest(
47
+ configurations=shared.StreamConfigurations(
48
+ streams=[
49
+ shared.StreamConfiguration(
50
+ cursor_field=[
51
+ 'violet',
52
+ ],
53
+ name='Account',
54
+ primary_key=[
55
+ [
56
+ 'BMW',
57
+ ],
58
+ ],
59
+ ),
60
+ ],
61
+ ),
62
+ destination_id='e362083e-afc8-4559-94e0-a570f6dd427d',
63
+ namespace_format='${SOURCE_NAMESPACE}',
64
+ schedule=shared.ConnectionSchedule(
65
+ schedule_type=shared.ScheduleTypeEnum.CRON,
66
+ ),
67
+ source_id='3a555847-8358-4423-a5b6-c7b3fd2fd307',
68
+ )
69
+
70
+ res = s.connections.create_connection(req)
71
+
72
+ if res.connection_response is not None:
73
+ # handle response
74
+ pass
75
+ ```
76
+ <!-- End SDK Example Usage -->
77
+
78
+ <!-- Start SDK Available Operations -->
79
+ ## Available Resources and Operations
80
+
81
+
82
+ ### [connections](docs/sdks/connections/README.md)
83
+
84
+ * [create_connection](docs/sdks/connections/README.md#create_connection) - Create a connection
85
+ * [delete_connection](docs/sdks/connections/README.md#delete_connection) - Delete a Connection
86
+ * [get_connection](docs/sdks/connections/README.md#get_connection) - Get Connection details
87
+ * [list_connections](docs/sdks/connections/README.md#list_connections) - List connections
88
+ * [patch_connection](docs/sdks/connections/README.md#patch_connection) - Update Connection details
89
+
90
+ ### [destinations](docs/sdks/destinations/README.md)
91
+
92
+ * [create_destination](docs/sdks/destinations/README.md#create_destination) - Create a destination
93
+ * [delete_destination](docs/sdks/destinations/README.md#delete_destination) - Delete a Destination
94
+ * [get_destination](docs/sdks/destinations/README.md#get_destination) - Get Destination details
95
+ * [list_destinations](docs/sdks/destinations/README.md#list_destinations) - List destinations
96
+ * [patch_destination](docs/sdks/destinations/README.md#patch_destination) - Update a Destination
97
+ * [put_destination](docs/sdks/destinations/README.md#put_destination) - Update a Destination and fully overwrite it
98
+
99
+ ### [jobs](docs/sdks/jobs/README.md)
100
+
101
+ * [cancel_job](docs/sdks/jobs/README.md#cancel_job) - Cancel a running Job
102
+ * [create_job](docs/sdks/jobs/README.md#create_job) - Trigger a sync or reset job of a connection
103
+ * [get_job](docs/sdks/jobs/README.md#get_job) - Get Job status and details
104
+ * [list_jobs](docs/sdks/jobs/README.md#list_jobs) - List Jobs by sync type
105
+
106
+ ### [sources](docs/sdks/sources/README.md)
107
+
108
+ * [create_source](docs/sdks/sources/README.md#create_source) - Create a source
109
+ * [delete_source](docs/sdks/sources/README.md#delete_source) - Delete a Source
110
+ * [get_source](docs/sdks/sources/README.md#get_source) - Get Source details
111
+ * [initiate_o_auth](docs/sdks/sources/README.md#initiate_o_auth) - Initiate OAuth for a source
112
+ * [list_sources](docs/sdks/sources/README.md#list_sources) - List sources
113
+ * [patch_source](docs/sdks/sources/README.md#patch_source) - Update a Source
114
+ * [put_source](docs/sdks/sources/README.md#put_source) - Update a Source and fully overwrite it
115
+
116
+ ### [streams](docs/sdks/streams/README.md)
117
+
118
+ * [get_stream_properties](docs/sdks/streams/README.md#get_stream_properties) - Get stream properties
119
+
120
+ ### [workspaces](docs/sdks/workspaces/README.md)
121
+
122
+ * [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.
123
+ * [create_workspace](docs/sdks/workspaces/README.md#create_workspace) - Create a workspace
124
+ * [delete_workspace](docs/sdks/workspaces/README.md#delete_workspace) - Delete a Workspace
125
+ * [get_workspace](docs/sdks/workspaces/README.md#get_workspace) - Get Workspace details
126
+ * [list_workspaces](docs/sdks/workspaces/README.md#list_workspaces) - List workspaces
127
+ * [update_workspace](docs/sdks/workspaces/README.md#update_workspace) - Update a workspace
128
+ <!-- End SDK Available Operations -->
129
+
130
+
131
+
132
+ <!-- Start Dev Containers -->
133
+
134
+ <!-- End Dev Containers -->
135
+
136
+
137
+
138
+ <!-- Start Pagination -->
139
+ # Pagination
140
+
141
+ Some of the endpoints in this SDK support pagination. To use pagination, you make your SDK calls as usual, but the
142
+ returned response object will have a `Next` method that can be called to pull down the next group of results. If the
143
+ return value of `Next` is `None`, then there are no more pages to be fetched.
144
+
145
+ Here's an example of one such pagination call:
146
+ <!-- End Pagination -->
147
+
148
+ <!-- Placeholder for Future Speakeasy SDK Sections -->
149
+
150
+
151
+
152
+ ### Maturity
153
+
154
+ This SDK is in beta, and there may be breaking changes between versions without a major version update. Therefore, we recommend pinning usage
155
+ to a specific package version. This way, you can install the same version each time without breaking changes unless you are intentionally
156
+ looking for the latest version.
157
+
158
+ ### Contributions
159
+
160
+ While we value open-source contributions to this SDK, this library is generated programmatically.
161
+ 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 !
162
+
163
+ ### SDK Created by [Speakeasy](https://docs.speakeasyapi.dev/docs/using-speakeasy/client-sdks)
164
+
165
+ Platform: UNKNOWN
166
+ Requires-Python: >=3.8
167
+ Description-Content-Type: text/markdown
168
+ Provides-Extra: dev
@@ -23,8 +23,6 @@ pip install airbyte-api
23
23
 
24
24
  ## SDK Example Usage
25
25
  <!-- Start SDK Example Usage -->
26
-
27
-
28
26
  ```python
29
27
  import airbyte
30
28
  from airbyte.models import shared
@@ -43,37 +41,30 @@ req = shared.ConnectionCreateRequest(
43
41
  streams=[
44
42
  shared.StreamConfiguration(
45
43
  cursor_field=[
46
- 'corrupti',
44
+ 'violet',
47
45
  ],
48
- name='Kelvin Sporer',
46
+ name='Account',
49
47
  primary_key=[
50
48
  [
51
- 'corrupti',
49
+ 'BMW',
52
50
  ],
53
51
  ],
54
- sync_mode=shared.ConnectionSyncModeEnum.INCREMENTAL_DEDUPED_HISTORY,
55
52
  ),
56
53
  ],
57
54
  ),
58
- data_residency=shared.GeographyEnum.US,
59
- destination_id='9a674e0f-467c-4c87-96ed-151a05dfc2dd',
60
- name='Javier Schmidt',
61
- namespace_definition=shared.NamespaceDefinitionEnum.DESTINATION,
55
+ destination_id='e362083e-afc8-4559-94e0-a570f6dd427d',
62
56
  namespace_format='${SOURCE_NAMESPACE}',
63
- non_breaking_schema_updates_behavior=shared.NonBreakingSchemaUpdatesBehaviorEnum.PROPAGATE_FULLY,
64
- prefix='dolorum',
65
57
  schedule=shared.ConnectionSchedule(
66
- cron_expression='dicta',
67
58
  schedule_type=shared.ScheduleTypeEnum.CRON,
68
59
  ),
69
- source_id='a928fc81-6742-4cb7-b920-5929396fea75',
70
- status=shared.ConnectionStatusEnum.INACTIVE,
60
+ source_id='3a555847-8358-4423-a5b6-c7b3fd2fd307',
71
61
  )
72
62
 
73
63
  res = s.connections.create_connection(req)
74
64
 
75
65
  if res.connection_response is not None:
76
66
  # handle response
67
+ pass
77
68
  ```
78
69
  <!-- End SDK Example Usage -->
79
70
 
@@ -129,6 +120,28 @@ if res.connection_response is not None:
129
120
  * [update_workspace](docs/sdks/workspaces/README.md#update_workspace) - Update a workspace
130
121
  <!-- End SDK Available Operations -->
131
122
 
123
+
124
+
125
+ <!-- Start Dev Containers -->
126
+
127
+ <!-- End Dev Containers -->
128
+
129
+
130
+
131
+ <!-- Start Pagination -->
132
+ # Pagination
133
+
134
+ Some of the endpoints in this SDK support pagination. To use pagination, you make your SDK calls as usual, but the
135
+ returned response object will have a `Next` method that can be called to pull down the next group of results. If the
136
+ return value of `Next` is `None`, then there are no more pages to be fetched.
137
+
138
+ Here's an example of one such pagination call:
139
+ <!-- End Pagination -->
140
+
141
+ <!-- Placeholder for Future Speakeasy SDK Sections -->
142
+
143
+
144
+
132
145
  ### Maturity
133
146
 
134
147
  This SDK is in beta, and there may be breaking changes between versions without a major version update. Therefore, we recommend pinning usage
@@ -10,33 +10,31 @@ except FileNotFoundError:
10
10
 
11
11
  setuptools.setup(
12
12
  name="airbyte-api",
13
- version="0.35.4",
13
+ version="0.40.0",
14
14
  author="Airbyte",
15
15
  description="Python Client SDK for Airbyte API",
16
16
  long_description=long_description,
17
17
  long_description_content_type="text/markdown",
18
18
  packages=setuptools.find_packages(where="src"),
19
19
  install_requires=[
20
- "certifi>=2022.12.7",
21
- "charset-normalizer>=2.1.1",
22
- "dataclasses-json>=0.5.12",
23
- "idna>=3.3",
20
+ "certifi>=2023.7.22",
21
+ "charset-normalizer>=3.2.0",
22
+ "dataclasses-json>=0.6.1",
23
+ "idna>=3.4",
24
24
  "jsonpath-python>=1.0.6 ",
25
- "marshmallow>=3.17.1",
26
- "marshmallow-enum>=1.5.1",
27
- "mypy-extensions>=0.4.3",
28
- "packaging>=21.3",
29
- "pyparsing>=3.0.9",
25
+ "marshmallow>=3.19.0",
26
+ "mypy-extensions>=1.0.0",
27
+ "packaging>=23.1",
30
28
  "python-dateutil>=2.8.2",
31
- "requests>=2.28.1",
29
+ "requests>=2.31.0",
32
30
  "six>=1.16.0",
33
- "typing-inspect>=0.8.0",
34
- "typing_extensions>=4.3.0",
35
- "urllib3>=1.26.12",
31
+ "typing-inspect>=0.9.0",
32
+ "typing_extensions>=4.7.1",
33
+ "urllib3>=2.0.4",
36
34
  ],
37
35
  extras_require={
38
36
  "dev":["pylint==2.16.2"]
39
37
  },
40
38
  package_dir={'': 'src'},
41
- python_requires='>=3.9'
39
+ python_requires='>=3.8'
42
40
  )
@@ -18,13 +18,13 @@ class Connections:
18
18
 
19
19
  url = base_url + '/connections'
20
20
  headers = {}
21
- req_content_type, data, form = utils.serialize_request_body(request, "request", 'json')
21
+ req_content_type, data, form = utils.serialize_request_body(request, "request", False, False, 'json')
22
22
  if req_content_type not in ('multipart/form-data', 'multipart/mixed'):
23
23
  headers['content-type'] = req_content_type
24
24
  if data is None and form is None:
25
25
  raise Exception('request body is required')
26
26
  headers['Accept'] = 'application/json'
27
- headers['user-agent'] = f'speakeasy-sdk/{self.sdk_configuration.language} {self.sdk_configuration.sdk_version} {self.sdk_configuration.gen_version} {self.sdk_configuration.openapi_doc_version}'
27
+ headers['user-agent'] = self.sdk_configuration.user_agent
28
28
 
29
29
  client = self.sdk_configuration.security_client
30
30
 
@@ -52,7 +52,7 @@ class Connections:
52
52
  url = utils.generate_url(operations.DeleteConnectionRequest, base_url, '/connections/{connectionId}', request)
53
53
  headers = {}
54
54
  headers['Accept'] = '*/*'
55
- headers['user-agent'] = f'speakeasy-sdk/{self.sdk_configuration.language} {self.sdk_configuration.sdk_version} {self.sdk_configuration.gen_version} {self.sdk_configuration.openapi_doc_version}'
55
+ headers['user-agent'] = self.sdk_configuration.user_agent
56
56
 
57
57
  client = self.sdk_configuration.security_client
58
58
 
@@ -76,7 +76,7 @@ class Connections:
76
76
  url = utils.generate_url(operations.GetConnectionRequest, base_url, '/connections/{connectionId}', request)
77
77
  headers = {}
78
78
  headers['Accept'] = 'application/json'
79
- headers['user-agent'] = f'speakeasy-sdk/{self.sdk_configuration.language} {self.sdk_configuration.sdk_version} {self.sdk_configuration.gen_version} {self.sdk_configuration.openapi_doc_version}'
79
+ headers['user-agent'] = self.sdk_configuration.user_agent
80
80
 
81
81
  client = self.sdk_configuration.security_client
82
82
 
@@ -105,7 +105,7 @@ class Connections:
105
105
  headers = {}
106
106
  query_params = utils.get_query_params(operations.ListConnectionsRequest, request)
107
107
  headers['Accept'] = 'application/json'
108
- headers['user-agent'] = f'speakeasy-sdk/{self.sdk_configuration.language} {self.sdk_configuration.sdk_version} {self.sdk_configuration.gen_version} {self.sdk_configuration.openapi_doc_version}'
108
+ headers['user-agent'] = self.sdk_configuration.user_agent
109
109
 
110
110
  client = self.sdk_configuration.security_client
111
111
 
@@ -132,13 +132,13 @@ class Connections:
132
132
 
133
133
  url = utils.generate_url(operations.PatchConnectionRequest, base_url, '/connections/{connectionId}', request)
134
134
  headers = {}
135
- req_content_type, data, form = utils.serialize_request_body(request, "connection_patch_request", 'json')
135
+ req_content_type, data, form = utils.serialize_request_body(request, "connection_patch_request", False, False, 'json')
136
136
  if req_content_type not in ('multipart/form-data', 'multipart/mixed'):
137
137
  headers['content-type'] = req_content_type
138
138
  if data is None and form is None:
139
139
  raise Exception('request body is required')
140
140
  headers['Accept'] = 'application/json'
141
- headers['user-agent'] = f'speakeasy-sdk/{self.sdk_configuration.language} {self.sdk_configuration.sdk_version} {self.sdk_configuration.gen_version} {self.sdk_configuration.openapi_doc_version}'
141
+ headers['user-agent'] = self.sdk_configuration.user_agent
142
142
 
143
143
  client = self.sdk_configuration.security_client
144
144
 
@@ -20,11 +20,11 @@ class Destinations:
20
20
 
21
21
  url = base_url + '/destinations'
22
22
  headers = {}
23
- req_content_type, data, form = utils.serialize_request_body(request, "request", 'json')
23
+ req_content_type, data, form = utils.serialize_request_body(request, "request", False, True, 'json')
24
24
  if req_content_type not in ('multipart/form-data', 'multipart/mixed'):
25
25
  headers['content-type'] = req_content_type
26
26
  headers['Accept'] = 'application/json'
27
- headers['user-agent'] = f'speakeasy-sdk/{self.sdk_configuration.language} {self.sdk_configuration.sdk_version} {self.sdk_configuration.gen_version} {self.sdk_configuration.openapi_doc_version}'
27
+ headers['user-agent'] = self.sdk_configuration.user_agent
28
28
 
29
29
  client = self.sdk_configuration.security_client
30
30
 
@@ -52,7 +52,7 @@ class Destinations:
52
52
  url = utils.generate_url(operations.DeleteDestinationRequest, base_url, '/destinations/{destinationId}', request)
53
53
  headers = {}
54
54
  headers['Accept'] = '*/*'
55
- headers['user-agent'] = f'speakeasy-sdk/{self.sdk_configuration.language} {self.sdk_configuration.sdk_version} {self.sdk_configuration.gen_version} {self.sdk_configuration.openapi_doc_version}'
55
+ headers['user-agent'] = self.sdk_configuration.user_agent
56
56
 
57
57
  client = self.sdk_configuration.security_client
58
58
 
@@ -76,7 +76,7 @@ class Destinations:
76
76
  url = utils.generate_url(operations.GetDestinationRequest, base_url, '/destinations/{destinationId}', request)
77
77
  headers = {}
78
78
  headers['Accept'] = 'application/json'
79
- headers['user-agent'] = f'speakeasy-sdk/{self.sdk_configuration.language} {self.sdk_configuration.sdk_version} {self.sdk_configuration.gen_version} {self.sdk_configuration.openapi_doc_version}'
79
+ headers['user-agent'] = self.sdk_configuration.user_agent
80
80
 
81
81
  client = self.sdk_configuration.security_client
82
82
 
@@ -105,7 +105,7 @@ class Destinations:
105
105
  headers = {}
106
106
  query_params = utils.get_query_params(operations.ListDestinationsRequest, request)
107
107
  headers['Accept'] = 'application/json'
108
- headers['user-agent'] = f'speakeasy-sdk/{self.sdk_configuration.language} {self.sdk_configuration.sdk_version} {self.sdk_configuration.gen_version} {self.sdk_configuration.openapi_doc_version}'
108
+ headers['user-agent'] = self.sdk_configuration.user_agent
109
109
 
110
110
  client = self.sdk_configuration.security_client
111
111
 
@@ -132,11 +132,11 @@ class Destinations:
132
132
 
133
133
  url = utils.generate_url(operations.PatchDestinationRequest, base_url, '/destinations/{destinationId}', request)
134
134
  headers = {}
135
- req_content_type, data, form = utils.serialize_request_body(request, "destination_patch_request", 'json')
135
+ req_content_type, data, form = utils.serialize_request_body(request, "destination_patch_request", False, True, 'json')
136
136
  if req_content_type not in ('multipart/form-data', 'multipart/mixed'):
137
137
  headers['content-type'] = req_content_type
138
138
  headers['Accept'] = 'application/json'
139
- headers['user-agent'] = f'speakeasy-sdk/{self.sdk_configuration.language} {self.sdk_configuration.sdk_version} {self.sdk_configuration.gen_version} {self.sdk_configuration.openapi_doc_version}'
139
+ headers['user-agent'] = self.sdk_configuration.user_agent
140
140
 
141
141
  client = self.sdk_configuration.security_client
142
142
 
@@ -163,11 +163,11 @@ class Destinations:
163
163
 
164
164
  url = utils.generate_url(operations.PutDestinationRequest, base_url, '/destinations/{destinationId}', request)
165
165
  headers = {}
166
- req_content_type, data, form = utils.serialize_request_body(request, "destination_put_request", 'json')
166
+ req_content_type, data, form = utils.serialize_request_body(request, "destination_put_request", False, True, 'json')
167
167
  if req_content_type not in ('multipart/form-data', 'multipart/mixed'):
168
168
  headers['content-type'] = req_content_type
169
169
  headers['Accept'] = 'application/json'
170
- headers['user-agent'] = f'speakeasy-sdk/{self.sdk_configuration.language} {self.sdk_configuration.sdk_version} {self.sdk_configuration.gen_version} {self.sdk_configuration.openapi_doc_version}'
170
+ headers['user-agent'] = self.sdk_configuration.user_agent
171
171
 
172
172
  client = self.sdk_configuration.security_client
173
173
 
@@ -19,7 +19,7 @@ class Jobs:
19
19
  url = utils.generate_url(operations.CancelJobRequest, base_url, '/jobs/{jobId}', request)
20
20
  headers = {}
21
21
  headers['Accept'] = 'application/json'
22
- headers['user-agent'] = f'speakeasy-sdk/{self.sdk_configuration.language} {self.sdk_configuration.sdk_version} {self.sdk_configuration.gen_version} {self.sdk_configuration.openapi_doc_version}'
22
+ headers['user-agent'] = self.sdk_configuration.user_agent
23
23
 
24
24
  client = self.sdk_configuration.security_client
25
25
 
@@ -46,13 +46,13 @@ class Jobs:
46
46
 
47
47
  url = base_url + '/jobs'
48
48
  headers = {}
49
- req_content_type, data, form = utils.serialize_request_body(request, "request", 'json')
49
+ req_content_type, data, form = utils.serialize_request_body(request, "request", False, False, 'json')
50
50
  if req_content_type not in ('multipart/form-data', 'multipart/mixed'):
51
51
  headers['content-type'] = req_content_type
52
52
  if data is None and form is None:
53
53
  raise Exception('request body is required')
54
54
  headers['Accept'] = 'application/json'
55
- headers['user-agent'] = f'speakeasy-sdk/{self.sdk_configuration.language} {self.sdk_configuration.sdk_version} {self.sdk_configuration.gen_version} {self.sdk_configuration.openapi_doc_version}'
55
+ headers['user-agent'] = self.sdk_configuration.user_agent
56
56
 
57
57
  client = self.sdk_configuration.security_client
58
58
 
@@ -80,7 +80,7 @@ class Jobs:
80
80
  url = utils.generate_url(operations.GetJobRequest, base_url, '/jobs/{jobId}', request)
81
81
  headers = {}
82
82
  headers['Accept'] = 'application/json'
83
- headers['user-agent'] = f'speakeasy-sdk/{self.sdk_configuration.language} {self.sdk_configuration.sdk_version} {self.sdk_configuration.gen_version} {self.sdk_configuration.openapi_doc_version}'
83
+ headers['user-agent'] = self.sdk_configuration.user_agent
84
84
 
85
85
  client = self.sdk_configuration.security_client
86
86
 
@@ -109,7 +109,7 @@ class Jobs:
109
109
  headers = {}
110
110
  query_params = utils.get_query_params(operations.ListJobsRequest, request)
111
111
  headers['Accept'] = 'application/json'
112
- headers['user-agent'] = f'speakeasy-sdk/{self.sdk_configuration.language} {self.sdk_configuration.sdk_version} {self.sdk_configuration.gen_version} {self.sdk_configuration.openapi_doc_version}'
112
+ headers['user-agent'] = self.sdk_configuration.user_agent
113
113
 
114
114
  client = self.sdk_configuration.security_client
115
115
 
@@ -1,2 +1,3 @@
1
1
  """Code generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT."""
2
2
 
3
+ # __init__.py
@@ -7,7 +7,6 @@ from ..shared import jobresponse as shared_jobresponse
7
7
  from typing import Optional
8
8
 
9
9
 
10
-
11
10
  @dataclasses.dataclass
12
11
  class CancelJobRequest:
13
12
  job_id: int = dataclasses.field(metadata={'path_param': { 'field_name': 'jobId', 'style': 'simple', 'explode': False }})
@@ -15,13 +14,15 @@ class CancelJobRequest:
15
14
 
16
15
 
17
16
 
18
-
19
17
  @dataclasses.dataclass
20
18
  class CancelJobResponse:
21
19
  content_type: str = dataclasses.field()
20
+ r"""HTTP response content type for this operation"""
22
21
  status_code: int = dataclasses.field()
22
+ r"""HTTP response status code for this operation"""
23
23
  job_response: Optional[shared_jobresponse.JobResponse] = dataclasses.field(default=None)
24
24
  r"""Cancel a Job."""
25
25
  raw_response: Optional[requests_http.Response] = dataclasses.field(default=None)
26
+ r"""Raw HTTP response; suitable for custom response parsing"""
26
27
 
27
28
 
@@ -7,13 +7,15 @@ from ..shared import connectionresponse as shared_connectionresponse
7
7
  from typing import Optional
8
8
 
9
9
 
10
-
11
10
  @dataclasses.dataclass
12
11
  class CreateConnectionResponse:
13
12
  content_type: str = dataclasses.field()
13
+ r"""HTTP response content type for this operation"""
14
14
  status_code: int = dataclasses.field()
15
+ r"""HTTP response status code for this operation"""
15
16
  connection_response: Optional[shared_connectionresponse.ConnectionResponse] = dataclasses.field(default=None)
16
17
  r"""Successful operation"""
17
18
  raw_response: Optional[requests_http.Response] = dataclasses.field(default=None)
19
+ r"""Raw HTTP response; suitable for custom response parsing"""
18
20
 
19
21
 
@@ -7,13 +7,15 @@ from ..shared import destinationresponse as shared_destinationresponse
7
7
  from typing import Optional
8
8
 
9
9
 
10
-
11
10
  @dataclasses.dataclass
12
11
  class CreateDestinationResponse:
13
12
  content_type: str = dataclasses.field()
13
+ r"""HTTP response content type for this operation"""
14
14
  status_code: int = dataclasses.field()
15
+ r"""HTTP response status code for this operation"""
15
16
  destination_response: Optional[shared_destinationresponse.DestinationResponse] = dataclasses.field(default=None)
16
17
  r"""Successful operation"""
17
18
  raw_response: Optional[requests_http.Response] = dataclasses.field(default=None)
19
+ r"""Raw HTTP response; suitable for custom response parsing"""
18
20
 
19
21
 
@@ -7,13 +7,15 @@ from ..shared import jobresponse as shared_jobresponse
7
7
  from typing import Optional
8
8
 
9
9
 
10
-
11
10
  @dataclasses.dataclass
12
11
  class CreateJobResponse:
13
12
  content_type: str = dataclasses.field()
13
+ r"""HTTP response content type for this operation"""
14
14
  status_code: int = dataclasses.field()
15
+ r"""HTTP response status code for this operation"""
15
16
  job_response: Optional[shared_jobresponse.JobResponse] = dataclasses.field(default=None)
16
17
  r"""Kicks off a new Job based on the JobType. The connectionId is the resource that Job will be run for."""
17
18
  raw_response: Optional[requests_http.Response] = dataclasses.field(default=None)
19
+ r"""Raw HTTP response; suitable for custom response parsing"""
18
20
 
19
21
 
@@ -7,7 +7,6 @@ from ..shared import workspaceoauthcredentialsrequest as shared_workspaceoauthcr
7
7
  from typing import Optional
8
8
 
9
9
 
10
-
11
10
  @dataclasses.dataclass
12
11
  class CreateOrUpdateWorkspaceOAuthCredentialsRequest:
13
12
  workspace_id: str = dataclasses.field(metadata={'path_param': { 'field_name': 'workspaceId', 'style': 'simple', 'explode': False }})
@@ -16,11 +15,13 @@ class CreateOrUpdateWorkspaceOAuthCredentialsRequest:
16
15
 
17
16
 
18
17
 
19
-
20
18
  @dataclasses.dataclass
21
19
  class CreateOrUpdateWorkspaceOAuthCredentialsResponse:
22
20
  content_type: str = dataclasses.field()
21
+ r"""HTTP response content type for this operation"""
23
22
  status_code: int = dataclasses.field()
23
+ r"""HTTP response status code for this operation"""
24
24
  raw_response: Optional[requests_http.Response] = dataclasses.field(default=None)
25
+ r"""Raw HTTP response; suitable for custom response parsing"""
25
26
 
26
27
 
@@ -7,12 +7,14 @@ from ..shared import sourceresponse as shared_sourceresponse
7
7
  from typing import Optional
8
8
 
9
9
 
10
-
11
10
  @dataclasses.dataclass
12
11
  class CreateSourceResponse:
13
12
  content_type: str = dataclasses.field()
13
+ r"""HTTP response content type for this operation"""
14
14
  status_code: int = dataclasses.field()
15
+ r"""HTTP response status code for this operation"""
15
16
  raw_response: Optional[requests_http.Response] = dataclasses.field(default=None)
17
+ r"""Raw HTTP response; suitable for custom response parsing"""
16
18
  source_response: Optional[shared_sourceresponse.SourceResponse] = dataclasses.field(default=None)
17
19
  r"""Successful operation"""
18
20
 
@@ -7,12 +7,14 @@ from ..shared import workspaceresponse as shared_workspaceresponse
7
7
  from typing import Optional
8
8
 
9
9
 
10
-
11
10
  @dataclasses.dataclass
12
11
  class CreateWorkspaceResponse:
13
12
  content_type: str = dataclasses.field()
13
+ r"""HTTP response content type for this operation"""
14
14
  status_code: int = dataclasses.field()
15
+ r"""HTTP response status code for this operation"""
15
16
  raw_response: Optional[requests_http.Response] = dataclasses.field(default=None)
17
+ r"""Raw HTTP response; suitable for custom response parsing"""
16
18
  workspace_response: Optional[shared_workspaceresponse.WorkspaceResponse] = dataclasses.field(default=None)
17
19
  r"""Successful operation"""
18
20
 
@@ -6,7 +6,6 @@ import requests as requests_http
6
6
  from typing import Optional
7
7
 
8
8
 
9
-
10
9
  @dataclasses.dataclass
11
10
  class DeleteConnectionRequest:
12
11
  connection_id: str = dataclasses.field(metadata={'path_param': { 'field_name': 'connectionId', 'style': 'simple', 'explode': False }})
@@ -14,11 +13,13 @@ class DeleteConnectionRequest:
14
13
 
15
14
 
16
15
 
17
-
18
16
  @dataclasses.dataclass
19
17
  class DeleteConnectionResponse:
20
18
  content_type: str = dataclasses.field()
19
+ r"""HTTP response content type for this operation"""
21
20
  status_code: int = dataclasses.field()
21
+ r"""HTTP response status code for this operation"""
22
22
  raw_response: Optional[requests_http.Response] = dataclasses.field(default=None)
23
+ r"""Raw HTTP response; suitable for custom response parsing"""
23
24
 
24
25