airbyte-api 0.49.2__tar.gz → 0.49.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 (389) hide show
  1. {airbyte-api-0.49.2/src/airbyte_api.egg-info → airbyte-api-0.49.3}/PKG-INFO +111 -36
  2. {airbyte-api-0.49.2 → airbyte-api-0.49.3}/README.md +110 -35
  3. {airbyte-api-0.49.2 → airbyte-api-0.49.3}/setup.py +1 -1
  4. {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/_hooks/__init__.py +1 -0
  5. airbyte-api-0.49.3/src/airbyte_api/_hooks/registration.py +13 -0
  6. {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/_hooks/sdkhooks.py +2 -0
  7. {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/api/getstreamproperties.py +5 -5
  8. {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/api/listjobs.py +1 -1
  9. {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/connections.py +4 -0
  10. {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/destinations.py +6 -1
  11. {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/jobs.py +4 -0
  12. airbyte-api-0.49.3/src/airbyte_api/models/__init__.py +320 -0
  13. airbyte-api-0.49.2/src/airbyte_api/models/connectionschedule.py → airbyte-api-0.49.3/src/airbyte_api/models/airbyteapiconnectionschedule.py +1 -1
  14. airbyte-api-0.49.3/src/airbyte_api/models/azure_blob_storage.py +26 -0
  15. {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/models/connectioncreaterequest.py +2 -2
  16. {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/models/connectionpatchrequest.py +2 -2
  17. {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/models/destination_azure_blob_storage.py +2 -2
  18. {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/models/destination_mssql.py +2 -0
  19. {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/models/destination_mysql.py +4 -0
  20. {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/models/destination_oracle.py +2 -0
  21. {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/models/destination_postgres.py +2 -0
  22. {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/models/destination_redshift.py +1 -3
  23. airbyte-api-0.49.3/src/airbyte_api/models/destination_yellowbrick.py +186 -0
  24. {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/models/destinationcreaterequest.py +2 -1
  25. {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/models/destinationpatchrequest.py +2 -1
  26. {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/models/destinationputrequest.py +2 -1
  27. {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/models/destinationresponse.py +2 -1
  28. {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/models/initiateoauthrequest.py +3 -4
  29. {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/models/oauthactornames.py +1 -1
  30. {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/models/security.py +1 -0
  31. {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/models/source_amazon_ads.py +1 -1
  32. {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/models/source_azure_blob_storage.py +34 -2
  33. {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/models/source_dynamodb.py +37 -6
  34. {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/models/source_google_sheets.py +2 -0
  35. {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/models/source_harvest.py +2 -2
  36. {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/models/source_iterable.py +2 -2
  37. {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/models/source_microsoft_sharepoint.py +2 -2
  38. {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/models/source_mongodb_v2.py +7 -0
  39. {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/models/source_mssql.py +1 -1
  40. {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/models/source_notion.py +2 -2
  41. {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/models/source_s3.py +4 -2
  42. airbyte-api-0.49.3/src/airbyte_api/models/source_sendgrid.py +25 -0
  43. airbyte-api-0.49.3/src/airbyte_api/models/source_sftp_bulk.py +277 -0
  44. {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/models/source_slack.py +2 -0
  45. {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/models/sourcecreaterequest.py +2 -3
  46. {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/models/sourcepatchrequest.py +2 -3
  47. {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/models/sourceputrequest.py +1 -2
  48. {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/models/sourceresponse.py +1 -2
  49. {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/models/workspaceoauthcredentialsrequest.py +2 -2
  50. airbyte-api-0.49.3/src/airbyte_api/public.py +1647 -0
  51. airbyte-api-0.49.3/src/airbyte_api/public_connections.py +296 -0
  52. airbyte-api-0.49.3/src/airbyte_api/public_destinations.py +352 -0
  53. airbyte-api-0.49.3/src/airbyte_api/public_jobs.py +242 -0
  54. airbyte-api-0.49.3/src/airbyte_api/public_sources.py +412 -0
  55. airbyte-api-0.49.3/src/airbyte_api/public_streams.py +72 -0
  56. airbyte-api-0.49.3/src/airbyte_api/public_workspaces.py +353 -0
  57. {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/sdk.py +22 -1
  58. {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/sdkconfiguration.py +3 -3
  59. {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/sources.py +6 -1
  60. {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/streams.py +3 -2
  61. {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/utils/utils.py +27 -0
  62. {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/workspaces.py +4 -0
  63. {airbyte-api-0.49.2 → airbyte-api-0.49.3/src/airbyte_api.egg-info}/PKG-INFO +111 -36
  64. {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api.egg-info/SOURCES.txt +11 -5
  65. airbyte-api-0.49.2/src/airbyte_api/models/__init__.py +0 -322
  66. airbyte-api-0.49.2/src/airbyte_api/models/harvest.py +0 -26
  67. airbyte-api-0.49.2/src/airbyte_api/models/oauthinputconfiguration.py +0 -11
  68. airbyte-api-0.49.2/src/airbyte_api/models/source_quickbooks.py +0 -49
  69. airbyte-api-0.49.2/src/airbyte_api/models/source_sendgrid.py +0 -25
  70. airbyte-api-0.49.2/src/airbyte_api/models/source_sftp_bulk.py +0 -50
  71. airbyte-api-0.49.2/src/airbyte_api/models/streampropertiesresponse.py +0 -17
  72. {airbyte-api-0.49.2 → airbyte-api-0.49.3}/LICENSE.md +0 -0
  73. {airbyte-api-0.49.2 → airbyte-api-0.49.3}/setup.cfg +0 -0
  74. {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/__init__.py +0 -0
  75. {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/_hooks/types.py +0 -0
  76. {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/api/__init__.py +0 -0
  77. {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/api/canceljob.py +0 -0
  78. {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/api/createconnection.py +0 -0
  79. {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/api/createdestination.py +0 -0
  80. {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/api/createjob.py +0 -0
  81. {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/api/createorupdateworkspaceoauthcredentials.py +0 -0
  82. {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/api/createsource.py +0 -0
  83. {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/api/createworkspace.py +0 -0
  84. {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/api/deleteconnection.py +0 -0
  85. {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/api/deletedestination.py +0 -0
  86. {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/api/deletesource.py +0 -0
  87. {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/api/deleteworkspace.py +0 -0
  88. {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/api/getconnection.py +0 -0
  89. {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/api/getdestination.py +0 -0
  90. {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/api/getjob.py +0 -0
  91. {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/api/getsource.py +0 -0
  92. {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/api/getworkspace.py +0 -0
  93. {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/api/initiateoauth.py +0 -0
  94. {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/api/listconnections.py +0 -0
  95. {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/api/listdestinations.py +0 -0
  96. {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/api/listsources.py +0 -0
  97. {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/api/listworkspaces.py +0 -0
  98. {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/api/patchconnection.py +0 -0
  99. {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/api/patchdestination.py +0 -0
  100. {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/api/patchsource.py +0 -0
  101. {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/api/putdestination.py +0 -0
  102. {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/api/putsource.py +0 -0
  103. {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/api/updateworkspace.py +0 -0
  104. {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/errors/__init__.py +0 -0
  105. {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/errors/sdkerror.py +0 -0
  106. {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/models/actortypeenum.py +0 -0
  107. {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/models/airtable.py +0 -0
  108. {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/models/amazon_ads.py +0 -0
  109. {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/models/amazon_seller_partner.py +0 -0
  110. {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/models/asana.py +0 -0
  111. {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/models/bing_ads.py +0 -0
  112. {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/models/connectionresponse.py +0 -0
  113. {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/models/connectionscheduleresponse.py +0 -0
  114. {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/models/connectionsresponse.py +0 -0
  115. {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/models/connectionstatusenum.py +0 -0
  116. {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/models/connectionsyncmodeenum.py +0 -0
  117. {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/models/destination_astra.py +0 -0
  118. {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/models/destination_aws_datalake.py +0 -0
  119. {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/models/destination_bigquery.py +0 -0
  120. {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/models/destination_clickhouse.py +0 -0
  121. {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/models/destination_convex.py +0 -0
  122. {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/models/destination_databricks.py +0 -0
  123. {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/models/destination_dev_null.py +0 -0
  124. {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/models/destination_duckdb.py +0 -0
  125. {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/models/destination_dynamodb.py +0 -0
  126. {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/models/destination_elasticsearch.py +0 -0
  127. {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/models/destination_firestore.py +0 -0
  128. {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/models/destination_gcs.py +0 -0
  129. {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/models/destination_google_sheets.py +0 -0
  130. {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/models/destination_langchain.py +0 -0
  131. {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/models/destination_milvus.py +0 -0
  132. {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/models/destination_mongodb.py +0 -0
  133. {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/models/destination_pinecone.py +0 -0
  134. {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/models/destination_pubsub.py +0 -0
  135. {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/models/destination_qdrant.py +0 -0
  136. {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/models/destination_redis.py +0 -0
  137. {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/models/destination_s3.py +0 -0
  138. {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/models/destination_s3_glue.py +0 -0
  139. {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/models/destination_sftp_json.py +0 -0
  140. {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/models/destination_snowflake.py +0 -0
  141. {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/models/destination_teradata.py +0 -0
  142. {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/models/destination_typesense.py +0 -0
  143. {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/models/destination_vectara.py +0 -0
  144. {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/models/destination_weaviate.py +0 -0
  145. {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/models/destinationsresponse.py +0 -0
  146. {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/models/facebook_marketing.py +0 -0
  147. {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/models/geographyenum.py +0 -0
  148. {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/models/geographyenumnodefault.py +0 -0
  149. {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/models/github.py +0 -0
  150. {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/models/gitlab.py +0 -0
  151. {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/models/google_ads.py +0 -0
  152. {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/models/google_analytics_data_api.py +0 -0
  153. {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/models/google_drive.py +0 -0
  154. {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/models/google_search_console.py +0 -0
  155. {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/models/google_sheets.py +0 -0
  156. {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/models/hubspot.py +0 -0
  157. {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/models/instagram.py +0 -0
  158. {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/models/intercom.py +0 -0
  159. {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/models/jobcreaterequest.py +0 -0
  160. {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/models/jobresponse.py +0 -0
  161. {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/models/jobsresponse.py +0 -0
  162. {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/models/jobstatusenum.py +0 -0
  163. {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/models/jobtypeenum.py +0 -0
  164. {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/models/lever_hiring.py +0 -0
  165. {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/models/linkedin_ads.py +0 -0
  166. {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/models/mailchimp.py +0 -0
  167. {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/models/microsoft_onedrive.py +0 -0
  168. {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/models/microsoft_sharepoint.py +0 -0
  169. {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/models/microsoft_teams.py +0 -0
  170. {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/models/monday.py +0 -0
  171. {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/models/namespacedefinitionenum.py +0 -0
  172. {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/models/namespacedefinitionenumnodefault.py +0 -0
  173. {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/models/nonbreakingschemaupdatesbehaviorenum.py +0 -0
  174. {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/models/nonbreakingschemaupdatesbehaviorenumnodefault.py +0 -0
  175. {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/models/notion.py +0 -0
  176. {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/models/pinterest.py +0 -0
  177. {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/models/retently.py +0 -0
  178. {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/models/salesforce.py +0 -0
  179. {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/models/scheduletypeenum.py +0 -0
  180. {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/models/scheduletypewithbasicenum.py +0 -0
  181. {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/models/schemebasicauth.py +0 -0
  182. {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/models/shopify.py +0 -0
  183. {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/models/slack.py +0 -0
  184. {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/models/smartsheets.py +0 -0
  185. {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/models/snapchat_marketing.py +0 -0
  186. {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/models/snowflake.py +0 -0
  187. {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/models/source_aha.py +0 -0
  188. {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/models/source_aircall.py +0 -0
  189. {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/models/source_airtable.py +0 -0
  190. {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/models/source_amazon_seller_partner.py +0 -0
  191. {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/models/source_amazon_sqs.py +0 -0
  192. {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/models/source_amplitude.py +0 -0
  193. {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/models/source_apify_dataset.py +0 -0
  194. {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/models/source_appfollow.py +0 -0
  195. {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/models/source_asana.py +0 -0
  196. {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/models/source_auth0.py +0 -0
  197. {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/models/source_aws_cloudtrail.py +0 -0
  198. {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/models/source_azure_table.py +0 -0
  199. {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/models/source_bamboo_hr.py +0 -0
  200. {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/models/source_bigquery.py +0 -0
  201. {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/models/source_bing_ads.py +0 -0
  202. {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/models/source_braintree.py +0 -0
  203. {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/models/source_braze.py +0 -0
  204. {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/models/source_cart.py +0 -0
  205. {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/models/source_chargebee.py +0 -0
  206. {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/models/source_chartmogul.py +0 -0
  207. {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/models/source_clickhouse.py +0 -0
  208. {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/models/source_clickup_api.py +0 -0
  209. {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/models/source_clockify.py +0 -0
  210. {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/models/source_close_com.py +0 -0
  211. {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/models/source_coda.py +0 -0
  212. {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/models/source_coin_api.py +0 -0
  213. {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/models/source_coinmarketcap.py +0 -0
  214. {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/models/source_configcat.py +0 -0
  215. {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/models/source_confluence.py +0 -0
  216. {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/models/source_convex.py +0 -0
  217. {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/models/source_datascope.py +0 -0
  218. {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/models/source_delighted.py +0 -0
  219. {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/models/source_dixa.py +0 -0
  220. {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/models/source_dockerhub.py +0 -0
  221. {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/models/source_dremio.py +0 -0
  222. {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/models/source_e2e_test_cloud.py +0 -0
  223. {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/models/source_emailoctopus.py +0 -0
  224. {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/models/source_exchange_rates.py +0 -0
  225. {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/models/source_facebook_marketing.py +0 -0
  226. {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/models/source_faker.py +0 -0
  227. {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/models/source_fauna.py +0 -0
  228. {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/models/source_file.py +0 -0
  229. {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/models/source_firebolt.py +0 -0
  230. {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/models/source_freshcaller.py +0 -0
  231. {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/models/source_freshdesk.py +0 -0
  232. {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/models/source_freshsales.py +0 -0
  233. {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/models/source_gainsight_px.py +0 -0
  234. {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/models/source_gcs.py +0 -0
  235. {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/models/source_getlago.py +0 -0
  236. {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/models/source_github.py +0 -0
  237. {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/models/source_gitlab.py +0 -0
  238. {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/models/source_glassfrog.py +0 -0
  239. {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/models/source_gnews.py +0 -0
  240. {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/models/source_google_ads.py +0 -0
  241. {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/models/source_google_analytics_data_api.py +0 -0
  242. {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/models/source_google_analytics_v4_service_account_only.py +0 -0
  243. {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/models/source_google_directory.py +0 -0
  244. {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/models/source_google_drive.py +0 -0
  245. {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/models/source_google_pagespeed_insights.py +0 -0
  246. {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/models/source_google_search_console.py +0 -0
  247. {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/models/source_google_webfonts.py +0 -0
  248. {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/models/source_greenhouse.py +0 -0
  249. {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/models/source_gridly.py +0 -0
  250. {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/models/source_hubplanner.py +0 -0
  251. {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/models/source_hubspot.py +0 -0
  252. {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/models/source_insightly.py +0 -0
  253. {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/models/source_instagram.py +0 -0
  254. {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/models/source_instatus.py +0 -0
  255. {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/models/source_intercom.py +0 -0
  256. {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/models/source_ip2whois.py +0 -0
  257. {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/models/source_jira.py +0 -0
  258. {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/models/source_k6_cloud.py +0 -0
  259. {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/models/source_klarna.py +0 -0
  260. {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/models/source_klaviyo.py +0 -0
  261. {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/models/source_kyve.py +0 -0
  262. {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/models/source_launchdarkly.py +0 -0
  263. {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/models/source_lemlist.py +0 -0
  264. {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/models/source_lever_hiring.py +0 -0
  265. {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/models/source_linkedin_ads.py +0 -0
  266. {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/models/source_linkedin_pages.py +0 -0
  267. {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/models/source_linnworks.py +0 -0
  268. {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/models/source_lokalise.py +0 -0
  269. {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/models/source_mailchimp.py +0 -0
  270. {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/models/source_mailgun.py +0 -0
  271. {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/models/source_mailjet_sms.py +0 -0
  272. {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/models/source_marketo.py +0 -0
  273. {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/models/source_metabase.py +0 -0
  274. {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/models/source_microsoft_onedrive.py +0 -0
  275. {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/models/source_microsoft_teams.py +0 -0
  276. {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/models/source_mixpanel.py +0 -0
  277. {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/models/source_monday.py +0 -0
  278. {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/models/source_mongodb_internal_poc.py +0 -0
  279. {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/models/source_my_hours.py +0 -0
  280. {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/models/source_mysql.py +0 -0
  281. {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/models/source_netsuite.py +0 -0
  282. {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/models/source_nytimes.py +0 -0
  283. {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/models/source_okta.py +0 -0
  284. {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/models/source_omnisend.py +0 -0
  285. {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/models/source_onesignal.py +0 -0
  286. {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/models/source_oracle.py +0 -0
  287. {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/models/source_orb.py +0 -0
  288. {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/models/source_orbit.py +0 -0
  289. {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/models/source_outbrain_amplify.py +0 -0
  290. {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/models/source_outreach.py +0 -0
  291. {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/models/source_paypal_transaction.py +0 -0
  292. {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/models/source_paystack.py +0 -0
  293. {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/models/source_pendo.py +0 -0
  294. {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/models/source_persistiq.py +0 -0
  295. {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/models/source_pexels_api.py +0 -0
  296. {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/models/source_pinterest.py +0 -0
  297. {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/models/source_pipedrive.py +0 -0
  298. {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/models/source_pocket.py +0 -0
  299. {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/models/source_pokeapi.py +0 -0
  300. {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/models/source_polygon_stock_api.py +0 -0
  301. {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/models/source_postgres.py +0 -0
  302. {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/models/source_posthog.py +0 -0
  303. {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/models/source_postmarkapp.py +0 -0
  304. {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/models/source_prestashop.py +0 -0
  305. {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/models/source_punk_api.py +0 -0
  306. {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/models/source_pypi.py +0 -0
  307. {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/models/source_qualaroo.py +0 -0
  308. {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/models/source_railz.py +0 -0
  309. {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/models/source_recharge.py +0 -0
  310. {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/models/source_recreation.py +0 -0
  311. {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/models/source_recruitee.py +0 -0
  312. {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/models/source_recurly.py +0 -0
  313. {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/models/source_redshift.py +0 -0
  314. {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/models/source_retently.py +0 -0
  315. {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/models/source_rki_covid.py +0 -0
  316. {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/models/source_rss.py +0 -0
  317. {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/models/source_salesforce.py +0 -0
  318. {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/models/source_salesloft.py +0 -0
  319. {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/models/source_sap_fieldglass.py +0 -0
  320. {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/models/source_secoda.py +0 -0
  321. {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/models/source_sendinblue.py +0 -0
  322. {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/models/source_senseforce.py +0 -0
  323. {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/models/source_sentry.py +0 -0
  324. {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/models/source_sftp.py +0 -0
  325. {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/models/source_shopify.py +0 -0
  326. {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/models/source_shortio.py +0 -0
  327. {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/models/source_smaily.py +0 -0
  328. {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/models/source_smartengage.py +0 -0
  329. {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/models/source_smartsheets.py +0 -0
  330. {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/models/source_snapchat_marketing.py +0 -0
  331. {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/models/source_snowflake.py +0 -0
  332. {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/models/source_sonar_cloud.py +0 -0
  333. {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/models/source_spacex_api.py +0 -0
  334. {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/models/source_square.py +0 -0
  335. {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/models/source_strava.py +0 -0
  336. {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/models/source_stripe.py +0 -0
  337. {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/models/source_survey_sparrow.py +0 -0
  338. {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/models/source_surveymonkey.py +0 -0
  339. {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/models/source_tempo.py +0 -0
  340. {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/models/source_the_guardian_api.py +0 -0
  341. {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/models/source_tiktok_marketing.py +0 -0
  342. {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/models/source_trello.py +0 -0
  343. {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/models/source_trustpilot.py +0 -0
  344. {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/models/source_tvmaze_schedule.py +0 -0
  345. {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/models/source_twilio.py +0 -0
  346. {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/models/source_twilio_taskrouter.py +0 -0
  347. {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/models/source_twitter.py +0 -0
  348. {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/models/source_typeform.py +0 -0
  349. {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/models/source_us_census.py +0 -0
  350. {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/models/source_vantage.py +0 -0
  351. {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/models/source_webflow.py +0 -0
  352. {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/models/source_whisky_hunter.py +0 -0
  353. {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/models/source_wikipedia_pageviews.py +0 -0
  354. {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/models/source_woocommerce.py +0 -0
  355. {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/models/source_xkcd.py +0 -0
  356. {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/models/source_yandex_metrica.py +0 -0
  357. {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/models/source_yotpo.py +0 -0
  358. {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/models/source_youtube_analytics.py +0 -0
  359. {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/models/source_zendesk_chat.py +0 -0
  360. {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/models/source_zendesk_sell.py +0 -0
  361. {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/models/source_zendesk_sunshine.py +0 -0
  362. {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/models/source_zendesk_support.py +0 -0
  363. {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/models/source_zendesk_talk.py +0 -0
  364. {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/models/source_zenloop.py +0 -0
  365. {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/models/source_zoho_crm.py +0 -0
  366. {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/models/source_zoom.py +0 -0
  367. {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/models/sourcesresponse.py +0 -0
  368. {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/models/square.py +0 -0
  369. {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/models/strava.py +0 -0
  370. {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/models/streamconfiguration.py +0 -0
  371. {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/models/streamconfigurations.py +0 -0
  372. {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/models/streamproperties.py +0 -0
  373. {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/models/surveymonkey.py +0 -0
  374. {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/models/tiktok_marketing.py +0 -0
  375. {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/models/typeform.py +0 -0
  376. {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/models/workspacecreaterequest.py +0 -0
  377. {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/models/workspaceresponse.py +0 -0
  378. {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/models/workspacesresponse.py +0 -0
  379. {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/models/workspaceupdaterequest.py +0 -0
  380. {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/models/youtube_analytics.py +0 -0
  381. {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/models/zendesk_chat.py +0 -0
  382. {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/models/zendesk_sunshine.py +0 -0
  383. {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/models/zendesk_support.py +0 -0
  384. {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/models/zendesk_talk.py +0 -0
  385. {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/utils/__init__.py +0 -0
  386. {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/utils/retries.py +0 -0
  387. {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api.egg-info/dependency_links.txt +0 -0
  388. {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api.egg-info/requires.txt +0 -0
  389. {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api.egg-info/top_level.txt +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: airbyte-api
3
- Version: 0.49.2
3
+ Version: 0.49.3
4
4
  Summary: Python Client SDK for Airbyte API
5
5
  Home-page: https://github.com/airbytehq/airbyte-api-python-sdk.git
6
6
  Author: Airbyte
@@ -46,13 +46,12 @@ Description: <div align="center">
46
46
  ),
47
47
  )
48
48
 
49
- req = models.ConnectionCreateRequest(
50
- destination_id='c669dd1e-3620-483e-afc8-55914e0a570f',
51
- source_id='6dd427d8-3a55-4584-b835-842325b6c7b3',
49
+ res = s.public_connections.create_connection(request=models.ConnectionCreateRequest(
50
+ destination_id='e478de0d-a3a0-475c-b019-25f7dd29e281',
51
+ source_id='95e66a59-8045-4307-9678-63bc3c9b8c93',
52
+ name='Postgres-to-Bigquery',
52
53
  namespace_format='${SOURCE_NAMESPACE}',
53
- )
54
-
55
- res = s.connections.create_connection(req)
54
+ ))
56
55
 
57
56
  if res.connection_response is not None:
58
57
  # handle response
@@ -64,6 +63,46 @@ Description: <div align="center">
64
63
  <!-- Start Available Resources and Operations [operations] -->
65
64
  ## Available Resources and Operations
66
65
 
66
+ ### [public_connections](https://github.com/airbytehq/airbyte-api-python-sdk/blob/master/docs/sdks/publicconnections/README.md)
67
+
68
+ * [create_connection](https://github.com/airbytehq/airbyte-api-python-sdk/blob/master/docs/sdks/publicconnections/README.md#create_connection) - Create a connection
69
+ * [delete_connection](https://github.com/airbytehq/airbyte-api-python-sdk/blob/master/docs/sdks/publicconnections/README.md#delete_connection) - Delete a Connection
70
+ * [get_connection](https://github.com/airbytehq/airbyte-api-python-sdk/blob/master/docs/sdks/publicconnections/README.md#get_connection) - Get Connection details
71
+ * [list_connections](https://github.com/airbytehq/airbyte-api-python-sdk/blob/master/docs/sdks/publicconnections/README.md#list_connections) - List connections
72
+ * [patch_connection](https://github.com/airbytehq/airbyte-api-python-sdk/blob/master/docs/sdks/publicconnections/README.md#patch_connection) - Update Connection details
73
+
74
+ ### [public](https://github.com/airbytehq/airbyte-api-python-sdk/blob/master/docs/sdks/public/README.md)
75
+
76
+ * [cancel_job](https://github.com/airbytehq/airbyte-api-python-sdk/blob/master/docs/sdks/public/README.md#cancel_job) - Cancel a running Job
77
+ * [create_connection](https://github.com/airbytehq/airbyte-api-python-sdk/blob/master/docs/sdks/public/README.md#create_connection) - Create a connection
78
+ * [create_destination](https://github.com/airbytehq/airbyte-api-python-sdk/blob/master/docs/sdks/public/README.md#create_destination) - Create a destination
79
+ * [create_job](https://github.com/airbytehq/airbyte-api-python-sdk/blob/master/docs/sdks/public/README.md#create_job) - Trigger a sync or reset job of a connection
80
+ * [create_or_update_workspace_o_auth_credentials](https://github.com/airbytehq/airbyte-api-python-sdk/blob/master/docs/sdks/public/README.md#create_or_update_workspace_o_auth_credentials) - Create OAuth override credentials for a workspace and source type.
81
+ * [create_source](https://github.com/airbytehq/airbyte-api-python-sdk/blob/master/docs/sdks/public/README.md#create_source) - Create a source
82
+ * [create_workspace](https://github.com/airbytehq/airbyte-api-python-sdk/blob/master/docs/sdks/public/README.md#create_workspace) - Create a workspace
83
+ * [delete_connection](https://github.com/airbytehq/airbyte-api-python-sdk/blob/master/docs/sdks/public/README.md#delete_connection) - Delete a Connection
84
+ * [delete_destination](https://github.com/airbytehq/airbyte-api-python-sdk/blob/master/docs/sdks/public/README.md#delete_destination) - Delete a Destination
85
+ * [delete_source](https://github.com/airbytehq/airbyte-api-python-sdk/blob/master/docs/sdks/public/README.md#delete_source) - Delete a Source
86
+ * [delete_workspace](https://github.com/airbytehq/airbyte-api-python-sdk/blob/master/docs/sdks/public/README.md#delete_workspace) - Delete a Workspace
87
+ * [get_connection](https://github.com/airbytehq/airbyte-api-python-sdk/blob/master/docs/sdks/public/README.md#get_connection) - Get Connection details
88
+ * [get_destination](https://github.com/airbytehq/airbyte-api-python-sdk/blob/master/docs/sdks/public/README.md#get_destination) - Get Destination details
89
+ * [get_job](https://github.com/airbytehq/airbyte-api-python-sdk/blob/master/docs/sdks/public/README.md#get_job) - Get Job status and details
90
+ * [get_source](https://github.com/airbytehq/airbyte-api-python-sdk/blob/master/docs/sdks/public/README.md#get_source) - Get Source details
91
+ * [get_stream_properties](https://github.com/airbytehq/airbyte-api-python-sdk/blob/master/docs/sdks/public/README.md#get_stream_properties) - Get stream properties
92
+ * [get_workspace](https://github.com/airbytehq/airbyte-api-python-sdk/blob/master/docs/sdks/public/README.md#get_workspace) - Get Workspace details
93
+ * [initiate_o_auth](https://github.com/airbytehq/airbyte-api-python-sdk/blob/master/docs/sdks/public/README.md#initiate_o_auth) - Initiate OAuth for a source
94
+ * [list_connections](https://github.com/airbytehq/airbyte-api-python-sdk/blob/master/docs/sdks/public/README.md#list_connections) - List connections
95
+ * [list_destinations](https://github.com/airbytehq/airbyte-api-python-sdk/blob/master/docs/sdks/public/README.md#list_destinations) - List destinations
96
+ * [list_jobs](https://github.com/airbytehq/airbyte-api-python-sdk/blob/master/docs/sdks/public/README.md#list_jobs) - List Jobs by sync type
97
+ * [list_sources](https://github.com/airbytehq/airbyte-api-python-sdk/blob/master/docs/sdks/public/README.md#list_sources) - List sources
98
+ * [list_workspaces](https://github.com/airbytehq/airbyte-api-python-sdk/blob/master/docs/sdks/public/README.md#list_workspaces) - List workspaces
99
+ * [patch_connection](https://github.com/airbytehq/airbyte-api-python-sdk/blob/master/docs/sdks/public/README.md#patch_connection) - Update Connection details
100
+ * [patch_destination](https://github.com/airbytehq/airbyte-api-python-sdk/blob/master/docs/sdks/public/README.md#patch_destination) - Update a Destination
101
+ * [patch_source](https://github.com/airbytehq/airbyte-api-python-sdk/blob/master/docs/sdks/public/README.md#patch_source) - Update a Source
102
+ * [put_destination](https://github.com/airbytehq/airbyte-api-python-sdk/blob/master/docs/sdks/public/README.md#put_destination) - Update a Destination and fully overwrite it
103
+ * [put_source](https://github.com/airbytehq/airbyte-api-python-sdk/blob/master/docs/sdks/public/README.md#put_source) - Update a Source and fully overwrite it
104
+ * [update_workspace](https://github.com/airbytehq/airbyte-api-python-sdk/blob/master/docs/sdks/public/README.md#update_workspace) - Update a workspace
105
+
67
106
  ### [connections](https://github.com/airbytehq/airbyte-api-python-sdk/blob/master/docs/sdks/connections/README.md)
68
107
 
69
108
  * [create_connection](https://github.com/airbytehq/airbyte-api-python-sdk/blob/master/docs/sdks/connections/README.md#create_connection) - Create a connection
@@ -72,6 +111,15 @@ Description: <div align="center">
72
111
  * [list_connections](https://github.com/airbytehq/airbyte-api-python-sdk/blob/master/docs/sdks/connections/README.md#list_connections) - List connections
73
112
  * [patch_connection](https://github.com/airbytehq/airbyte-api-python-sdk/blob/master/docs/sdks/connections/README.md#patch_connection) - Update Connection details
74
113
 
114
+ ### [public_destinations](https://github.com/airbytehq/airbyte-api-python-sdk/blob/master/docs/sdks/publicdestinations/README.md)
115
+
116
+ * [create_destination](https://github.com/airbytehq/airbyte-api-python-sdk/blob/master/docs/sdks/publicdestinations/README.md#create_destination) - Create a destination
117
+ * [delete_destination](https://github.com/airbytehq/airbyte-api-python-sdk/blob/master/docs/sdks/publicdestinations/README.md#delete_destination) - Delete a Destination
118
+ * [get_destination](https://github.com/airbytehq/airbyte-api-python-sdk/blob/master/docs/sdks/publicdestinations/README.md#get_destination) - Get Destination details
119
+ * [list_destinations](https://github.com/airbytehq/airbyte-api-python-sdk/blob/master/docs/sdks/publicdestinations/README.md#list_destinations) - List destinations
120
+ * [patch_destination](https://github.com/airbytehq/airbyte-api-python-sdk/blob/master/docs/sdks/publicdestinations/README.md#patch_destination) - Update a Destination
121
+ * [put_destination](https://github.com/airbytehq/airbyte-api-python-sdk/blob/master/docs/sdks/publicdestinations/README.md#put_destination) - Update a Destination and fully overwrite it
122
+
75
123
  ### [destinations](https://github.com/airbytehq/airbyte-api-python-sdk/blob/master/docs/sdks/destinations/README.md)
76
124
 
77
125
  * [create_destination](https://github.com/airbytehq/airbyte-api-python-sdk/blob/master/docs/sdks/destinations/README.md#create_destination) - Create a destination
@@ -81,6 +129,13 @@ Description: <div align="center">
81
129
  * [patch_destination](https://github.com/airbytehq/airbyte-api-python-sdk/blob/master/docs/sdks/destinations/README.md#patch_destination) - Update a Destination
82
130
  * [put_destination](https://github.com/airbytehq/airbyte-api-python-sdk/blob/master/docs/sdks/destinations/README.md#put_destination) - Update a Destination and fully overwrite it
83
131
 
132
+ ### [public_jobs](https://github.com/airbytehq/airbyte-api-python-sdk/blob/master/docs/sdks/publicjobs/README.md)
133
+
134
+ * [cancel_job](https://github.com/airbytehq/airbyte-api-python-sdk/blob/master/docs/sdks/publicjobs/README.md#cancel_job) - Cancel a running Job
135
+ * [create_job](https://github.com/airbytehq/airbyte-api-python-sdk/blob/master/docs/sdks/publicjobs/README.md#create_job) - Trigger a sync or reset job of a connection
136
+ * [get_job](https://github.com/airbytehq/airbyte-api-python-sdk/blob/master/docs/sdks/publicjobs/README.md#get_job) - Get Job status and details
137
+ * [list_jobs](https://github.com/airbytehq/airbyte-api-python-sdk/blob/master/docs/sdks/publicjobs/README.md#list_jobs) - List Jobs by sync type
138
+
84
139
  ### [jobs](https://github.com/airbytehq/airbyte-api-python-sdk/blob/master/docs/sdks/jobs/README.md)
85
140
 
86
141
  * [cancel_job](https://github.com/airbytehq/airbyte-api-python-sdk/blob/master/docs/sdks/jobs/README.md#cancel_job) - Cancel a running Job
@@ -88,6 +143,16 @@ Description: <div align="center">
88
143
  * [get_job](https://github.com/airbytehq/airbyte-api-python-sdk/blob/master/docs/sdks/jobs/README.md#get_job) - Get Job status and details
89
144
  * [list_jobs](https://github.com/airbytehq/airbyte-api-python-sdk/blob/master/docs/sdks/jobs/README.md#list_jobs) - List Jobs by sync type
90
145
 
146
+ ### [public_sources](https://github.com/airbytehq/airbyte-api-python-sdk/blob/master/docs/sdks/publicsources/README.md)
147
+
148
+ * [create_source](https://github.com/airbytehq/airbyte-api-python-sdk/blob/master/docs/sdks/publicsources/README.md#create_source) - Create a source
149
+ * [delete_source](https://github.com/airbytehq/airbyte-api-python-sdk/blob/master/docs/sdks/publicsources/README.md#delete_source) - Delete a Source
150
+ * [get_source](https://github.com/airbytehq/airbyte-api-python-sdk/blob/master/docs/sdks/publicsources/README.md#get_source) - Get Source details
151
+ * [initiate_o_auth](https://github.com/airbytehq/airbyte-api-python-sdk/blob/master/docs/sdks/publicsources/README.md#initiate_o_auth) - Initiate OAuth for a source
152
+ * [list_sources](https://github.com/airbytehq/airbyte-api-python-sdk/blob/master/docs/sdks/publicsources/README.md#list_sources) - List sources
153
+ * [patch_source](https://github.com/airbytehq/airbyte-api-python-sdk/blob/master/docs/sdks/publicsources/README.md#patch_source) - Update a Source
154
+ * [put_source](https://github.com/airbytehq/airbyte-api-python-sdk/blob/master/docs/sdks/publicsources/README.md#put_source) - Update a Source and fully overwrite it
155
+
91
156
  ### [sources](https://github.com/airbytehq/airbyte-api-python-sdk/blob/master/docs/sdks/sources/README.md)
92
157
 
93
158
  * [create_source](https://github.com/airbytehq/airbyte-api-python-sdk/blob/master/docs/sdks/sources/README.md#create_source) - Create a source
@@ -98,10 +163,23 @@ Description: <div align="center">
98
163
  * [patch_source](https://github.com/airbytehq/airbyte-api-python-sdk/blob/master/docs/sdks/sources/README.md#patch_source) - Update a Source
99
164
  * [put_source](https://github.com/airbytehq/airbyte-api-python-sdk/blob/master/docs/sdks/sources/README.md#put_source) - Update a Source and fully overwrite it
100
165
 
166
+ ### [public_streams](https://github.com/airbytehq/airbyte-api-python-sdk/blob/master/docs/sdks/publicstreams/README.md)
167
+
168
+ * [get_stream_properties](https://github.com/airbytehq/airbyte-api-python-sdk/blob/master/docs/sdks/publicstreams/README.md#get_stream_properties) - Get stream properties
169
+
101
170
  ### [streams](https://github.com/airbytehq/airbyte-api-python-sdk/blob/master/docs/sdks/streams/README.md)
102
171
 
103
172
  * [get_stream_properties](https://github.com/airbytehq/airbyte-api-python-sdk/blob/master/docs/sdks/streams/README.md#get_stream_properties) - Get stream properties
104
173
 
174
+ ### [public_workspaces](https://github.com/airbytehq/airbyte-api-python-sdk/blob/master/docs/sdks/publicworkspaces/README.md)
175
+
176
+ * [create_or_update_workspace_o_auth_credentials](https://github.com/airbytehq/airbyte-api-python-sdk/blob/master/docs/sdks/publicworkspaces/README.md#create_or_update_workspace_o_auth_credentials) - Create OAuth override credentials for a workspace and source type.
177
+ * [create_workspace](https://github.com/airbytehq/airbyte-api-python-sdk/blob/master/docs/sdks/publicworkspaces/README.md#create_workspace) - Create a workspace
178
+ * [delete_workspace](https://github.com/airbytehq/airbyte-api-python-sdk/blob/master/docs/sdks/publicworkspaces/README.md#delete_workspace) - Delete a Workspace
179
+ * [get_workspace](https://github.com/airbytehq/airbyte-api-python-sdk/blob/master/docs/sdks/publicworkspaces/README.md#get_workspace) - Get Workspace details
180
+ * [list_workspaces](https://github.com/airbytehq/airbyte-api-python-sdk/blob/master/docs/sdks/publicworkspaces/README.md#list_workspaces) - List workspaces
181
+ * [update_workspace](https://github.com/airbytehq/airbyte-api-python-sdk/blob/master/docs/sdks/publicworkspaces/README.md#update_workspace) - Update a workspace
182
+
105
183
  ### [workspaces](https://github.com/airbytehq/airbyte-api-python-sdk/blob/master/docs/sdks/workspaces/README.md)
106
184
 
107
185
  * [create_or_update_workspace_o_auth_credentials](https://github.com/airbytehq/airbyte-api-python-sdk/blob/master/docs/sdks/workspaces/README.md#create_or_update_workspace_o_auth_credentials) - Create OAuth override credentials for a workspace and source type.
@@ -142,15 +220,14 @@ Description: <div align="center">
142
220
  ),
143
221
  )
144
222
 
145
- req = models.ConnectionCreateRequest(
146
- destination_id='c669dd1e-3620-483e-afc8-55914e0a570f',
147
- source_id='6dd427d8-3a55-4584-b835-842325b6c7b3',
148
- namespace_format='${SOURCE_NAMESPACE}',
149
- )
150
-
151
223
  res = None
152
224
  try:
153
- res = s.connections.create_connection(req)
225
+ res = s.public_connections.create_connection(request=models.ConnectionCreateRequest(
226
+ destination_id='e478de0d-a3a0-475c-b019-25f7dd29e281',
227
+ source_id='95e66a59-8045-4307-9678-63bc3c9b8c93',
228
+ name='Postgres-to-Bigquery',
229
+ namespace_format='${SOURCE_NAMESPACE}',
230
+ ))
154
231
  except errors.SDKError as e:
155
232
  # handle exception
156
233
  raise(e)
@@ -191,13 +268,12 @@ Description: <div align="center">
191
268
  ),
192
269
  )
193
270
 
194
- req = models.ConnectionCreateRequest(
195
- destination_id='c669dd1e-3620-483e-afc8-55914e0a570f',
196
- source_id='6dd427d8-3a55-4584-b835-842325b6c7b3',
271
+ res = s.public_connections.create_connection(request=models.ConnectionCreateRequest(
272
+ destination_id='e478de0d-a3a0-475c-b019-25f7dd29e281',
273
+ source_id='95e66a59-8045-4307-9678-63bc3c9b8c93',
274
+ name='Postgres-to-Bigquery',
197
275
  namespace_format='${SOURCE_NAMESPACE}',
198
- )
199
-
200
- res = s.connections.create_connection(req)
276
+ ))
201
277
 
202
278
  if res.connection_response is not None:
203
279
  # handle response
@@ -223,13 +299,12 @@ Description: <div align="center">
223
299
  ),
224
300
  )
225
301
 
226
- req = models.ConnectionCreateRequest(
227
- destination_id='c669dd1e-3620-483e-afc8-55914e0a570f',
228
- source_id='6dd427d8-3a55-4584-b835-842325b6c7b3',
302
+ res = s.public_connections.create_connection(request=models.ConnectionCreateRequest(
303
+ destination_id='e478de0d-a3a0-475c-b019-25f7dd29e281',
304
+ source_id='95e66a59-8045-4307-9678-63bc3c9b8c93',
305
+ name='Postgres-to-Bigquery',
229
306
  namespace_format='${SOURCE_NAMESPACE}',
230
- )
231
-
232
- res = s.connections.create_connection(req)
307
+ ))
233
308
 
234
309
  if res.connection_response is not None:
235
310
  # handle response
@@ -265,10 +340,11 @@ Description: <div align="center">
265
340
 
266
341
  This SDK supports the following security schemes globally:
267
342
 
268
- | Name | Type | Scheme |
269
- | ------------- | ------------- | ------------- |
270
- | `basic_auth` | http | HTTP Basic |
271
- | `bearer_auth` | http | HTTP Bearer |
343
+ | Name | Type | Scheme |
344
+ | -------------------- | -------------------- | -------------------- |
345
+ | `basic_auth` | http | HTTP Basic |
346
+ | `bearer_auth` | http | HTTP Bearer |
347
+ | `client_credentials` | oauth2 | OAuth2 token |
272
348
 
273
349
  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:
274
350
  ```python
@@ -284,13 +360,12 @@ Description: <div align="center">
284
360
  ),
285
361
  )
286
362
 
287
- req = models.ConnectionCreateRequest(
288
- destination_id='c669dd1e-3620-483e-afc8-55914e0a570f',
289
- source_id='6dd427d8-3a55-4584-b835-842325b6c7b3',
363
+ res = s.public_connections.create_connection(request=models.ConnectionCreateRequest(
364
+ destination_id='e478de0d-a3a0-475c-b019-25f7dd29e281',
365
+ source_id='95e66a59-8045-4307-9678-63bc3c9b8c93',
366
+ name='Postgres-to-Bigquery',
290
367
  namespace_format='${SOURCE_NAMESPACE}',
291
- )
292
-
293
- res = s.connections.create_connection(req)
368
+ ))
294
369
 
295
370
  if res.connection_response is not None:
296
371
  # handle response
@@ -39,13 +39,12 @@ s = airbyte_api.AirbyteAPI(
39
39
  ),
40
40
  )
41
41
 
42
- req = models.ConnectionCreateRequest(
43
- destination_id='c669dd1e-3620-483e-afc8-55914e0a570f',
44
- source_id='6dd427d8-3a55-4584-b835-842325b6c7b3',
42
+ res = s.public_connections.create_connection(request=models.ConnectionCreateRequest(
43
+ destination_id='e478de0d-a3a0-475c-b019-25f7dd29e281',
44
+ source_id='95e66a59-8045-4307-9678-63bc3c9b8c93',
45
+ name='Postgres-to-Bigquery',
45
46
  namespace_format='${SOURCE_NAMESPACE}',
46
- )
47
-
48
- res = s.connections.create_connection(req)
47
+ ))
49
48
 
50
49
  if res.connection_response is not None:
51
50
  # handle response
@@ -57,6 +56,46 @@ if res.connection_response is not None:
57
56
  <!-- Start Available Resources and Operations [operations] -->
58
57
  ## Available Resources and Operations
59
58
 
59
+ ### [public_connections](docs/sdks/publicconnections/README.md)
60
+
61
+ * [create_connection](docs/sdks/publicconnections/README.md#create_connection) - Create a connection
62
+ * [delete_connection](docs/sdks/publicconnections/README.md#delete_connection) - Delete a Connection
63
+ * [get_connection](docs/sdks/publicconnections/README.md#get_connection) - Get Connection details
64
+ * [list_connections](docs/sdks/publicconnections/README.md#list_connections) - List connections
65
+ * [patch_connection](docs/sdks/publicconnections/README.md#patch_connection) - Update Connection details
66
+
67
+ ### [public](docs/sdks/public/README.md)
68
+
69
+ * [cancel_job](docs/sdks/public/README.md#cancel_job) - Cancel a running Job
70
+ * [create_connection](docs/sdks/public/README.md#create_connection) - Create a connection
71
+ * [create_destination](docs/sdks/public/README.md#create_destination) - Create a destination
72
+ * [create_job](docs/sdks/public/README.md#create_job) - Trigger a sync or reset job of a connection
73
+ * [create_or_update_workspace_o_auth_credentials](docs/sdks/public/README.md#create_or_update_workspace_o_auth_credentials) - Create OAuth override credentials for a workspace and source type.
74
+ * [create_source](docs/sdks/public/README.md#create_source) - Create a source
75
+ * [create_workspace](docs/sdks/public/README.md#create_workspace) - Create a workspace
76
+ * [delete_connection](docs/sdks/public/README.md#delete_connection) - Delete a Connection
77
+ * [delete_destination](docs/sdks/public/README.md#delete_destination) - Delete a Destination
78
+ * [delete_source](docs/sdks/public/README.md#delete_source) - Delete a Source
79
+ * [delete_workspace](docs/sdks/public/README.md#delete_workspace) - Delete a Workspace
80
+ * [get_connection](docs/sdks/public/README.md#get_connection) - Get Connection details
81
+ * [get_destination](docs/sdks/public/README.md#get_destination) - Get Destination details
82
+ * [get_job](docs/sdks/public/README.md#get_job) - Get Job status and details
83
+ * [get_source](docs/sdks/public/README.md#get_source) - Get Source details
84
+ * [get_stream_properties](docs/sdks/public/README.md#get_stream_properties) - Get stream properties
85
+ * [get_workspace](docs/sdks/public/README.md#get_workspace) - Get Workspace details
86
+ * [initiate_o_auth](docs/sdks/public/README.md#initiate_o_auth) - Initiate OAuth for a source
87
+ * [list_connections](docs/sdks/public/README.md#list_connections) - List connections
88
+ * [list_destinations](docs/sdks/public/README.md#list_destinations) - List destinations
89
+ * [list_jobs](docs/sdks/public/README.md#list_jobs) - List Jobs by sync type
90
+ * [list_sources](docs/sdks/public/README.md#list_sources) - List sources
91
+ * [list_workspaces](docs/sdks/public/README.md#list_workspaces) - List workspaces
92
+ * [patch_connection](docs/sdks/public/README.md#patch_connection) - Update Connection details
93
+ * [patch_destination](docs/sdks/public/README.md#patch_destination) - Update a Destination
94
+ * [patch_source](docs/sdks/public/README.md#patch_source) - Update a Source
95
+ * [put_destination](docs/sdks/public/README.md#put_destination) - Update a Destination and fully overwrite it
96
+ * [put_source](docs/sdks/public/README.md#put_source) - Update a Source and fully overwrite it
97
+ * [update_workspace](docs/sdks/public/README.md#update_workspace) - Update a workspace
98
+
60
99
  ### [connections](docs/sdks/connections/README.md)
61
100
 
62
101
  * [create_connection](docs/sdks/connections/README.md#create_connection) - Create a connection
@@ -65,6 +104,15 @@ if res.connection_response is not None:
65
104
  * [list_connections](docs/sdks/connections/README.md#list_connections) - List connections
66
105
  * [patch_connection](docs/sdks/connections/README.md#patch_connection) - Update Connection details
67
106
 
107
+ ### [public_destinations](docs/sdks/publicdestinations/README.md)
108
+
109
+ * [create_destination](docs/sdks/publicdestinations/README.md#create_destination) - Create a destination
110
+ * [delete_destination](docs/sdks/publicdestinations/README.md#delete_destination) - Delete a Destination
111
+ * [get_destination](docs/sdks/publicdestinations/README.md#get_destination) - Get Destination details
112
+ * [list_destinations](docs/sdks/publicdestinations/README.md#list_destinations) - List destinations
113
+ * [patch_destination](docs/sdks/publicdestinations/README.md#patch_destination) - Update a Destination
114
+ * [put_destination](docs/sdks/publicdestinations/README.md#put_destination) - Update a Destination and fully overwrite it
115
+
68
116
  ### [destinations](docs/sdks/destinations/README.md)
69
117
 
70
118
  * [create_destination](docs/sdks/destinations/README.md#create_destination) - Create a destination
@@ -74,6 +122,13 @@ if res.connection_response is not None:
74
122
  * [patch_destination](docs/sdks/destinations/README.md#patch_destination) - Update a Destination
75
123
  * [put_destination](docs/sdks/destinations/README.md#put_destination) - Update a Destination and fully overwrite it
76
124
 
125
+ ### [public_jobs](docs/sdks/publicjobs/README.md)
126
+
127
+ * [cancel_job](docs/sdks/publicjobs/README.md#cancel_job) - Cancel a running Job
128
+ * [create_job](docs/sdks/publicjobs/README.md#create_job) - Trigger a sync or reset job of a connection
129
+ * [get_job](docs/sdks/publicjobs/README.md#get_job) - Get Job status and details
130
+ * [list_jobs](docs/sdks/publicjobs/README.md#list_jobs) - List Jobs by sync type
131
+
77
132
  ### [jobs](docs/sdks/jobs/README.md)
78
133
 
79
134
  * [cancel_job](docs/sdks/jobs/README.md#cancel_job) - Cancel a running Job
@@ -81,6 +136,16 @@ if res.connection_response is not None:
81
136
  * [get_job](docs/sdks/jobs/README.md#get_job) - Get Job status and details
82
137
  * [list_jobs](docs/sdks/jobs/README.md#list_jobs) - List Jobs by sync type
83
138
 
139
+ ### [public_sources](docs/sdks/publicsources/README.md)
140
+
141
+ * [create_source](docs/sdks/publicsources/README.md#create_source) - Create a source
142
+ * [delete_source](docs/sdks/publicsources/README.md#delete_source) - Delete a Source
143
+ * [get_source](docs/sdks/publicsources/README.md#get_source) - Get Source details
144
+ * [initiate_o_auth](docs/sdks/publicsources/README.md#initiate_o_auth) - Initiate OAuth for a source
145
+ * [list_sources](docs/sdks/publicsources/README.md#list_sources) - List sources
146
+ * [patch_source](docs/sdks/publicsources/README.md#patch_source) - Update a Source
147
+ * [put_source](docs/sdks/publicsources/README.md#put_source) - Update a Source and fully overwrite it
148
+
84
149
  ### [sources](docs/sdks/sources/README.md)
85
150
 
86
151
  * [create_source](docs/sdks/sources/README.md#create_source) - Create a source
@@ -91,10 +156,23 @@ if res.connection_response is not None:
91
156
  * [patch_source](docs/sdks/sources/README.md#patch_source) - Update a Source
92
157
  * [put_source](docs/sdks/sources/README.md#put_source) - Update a Source and fully overwrite it
93
158
 
159
+ ### [public_streams](docs/sdks/publicstreams/README.md)
160
+
161
+ * [get_stream_properties](docs/sdks/publicstreams/README.md#get_stream_properties) - Get stream properties
162
+
94
163
  ### [streams](docs/sdks/streams/README.md)
95
164
 
96
165
  * [get_stream_properties](docs/sdks/streams/README.md#get_stream_properties) - Get stream properties
97
166
 
167
+ ### [public_workspaces](docs/sdks/publicworkspaces/README.md)
168
+
169
+ * [create_or_update_workspace_o_auth_credentials](docs/sdks/publicworkspaces/README.md#create_or_update_workspace_o_auth_credentials) - Create OAuth override credentials for a workspace and source type.
170
+ * [create_workspace](docs/sdks/publicworkspaces/README.md#create_workspace) - Create a workspace
171
+ * [delete_workspace](docs/sdks/publicworkspaces/README.md#delete_workspace) - Delete a Workspace
172
+ * [get_workspace](docs/sdks/publicworkspaces/README.md#get_workspace) - Get Workspace details
173
+ * [list_workspaces](docs/sdks/publicworkspaces/README.md#list_workspaces) - List workspaces
174
+ * [update_workspace](docs/sdks/publicworkspaces/README.md#update_workspace) - Update a workspace
175
+
98
176
  ### [workspaces](docs/sdks/workspaces/README.md)
99
177
 
100
178
  * [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.
@@ -135,15 +213,14 @@ s = airbyte_api.AirbyteAPI(
135
213
  ),
136
214
  )
137
215
 
138
- req = models.ConnectionCreateRequest(
139
- destination_id='c669dd1e-3620-483e-afc8-55914e0a570f',
140
- source_id='6dd427d8-3a55-4584-b835-842325b6c7b3',
141
- namespace_format='${SOURCE_NAMESPACE}',
142
- )
143
-
144
216
  res = None
145
217
  try:
146
- res = s.connections.create_connection(req)
218
+ res = s.public_connections.create_connection(request=models.ConnectionCreateRequest(
219
+ destination_id='e478de0d-a3a0-475c-b019-25f7dd29e281',
220
+ source_id='95e66a59-8045-4307-9678-63bc3c9b8c93',
221
+ name='Postgres-to-Bigquery',
222
+ namespace_format='${SOURCE_NAMESPACE}',
223
+ ))
147
224
  except errors.SDKError as e:
148
225
  # handle exception
149
226
  raise(e)
@@ -184,13 +261,12 @@ s = airbyte_api.AirbyteAPI(
184
261
  ),
185
262
  )
186
263
 
187
- req = models.ConnectionCreateRequest(
188
- destination_id='c669dd1e-3620-483e-afc8-55914e0a570f',
189
- source_id='6dd427d8-3a55-4584-b835-842325b6c7b3',
264
+ res = s.public_connections.create_connection(request=models.ConnectionCreateRequest(
265
+ destination_id='e478de0d-a3a0-475c-b019-25f7dd29e281',
266
+ source_id='95e66a59-8045-4307-9678-63bc3c9b8c93',
267
+ name='Postgres-to-Bigquery',
190
268
  namespace_format='${SOURCE_NAMESPACE}',
191
- )
192
-
193
- res = s.connections.create_connection(req)
269
+ ))
194
270
 
195
271
  if res.connection_response is not None:
196
272
  # handle response
@@ -216,13 +292,12 @@ s = airbyte_api.AirbyteAPI(
216
292
  ),
217
293
  )
218
294
 
219
- req = models.ConnectionCreateRequest(
220
- destination_id='c669dd1e-3620-483e-afc8-55914e0a570f',
221
- source_id='6dd427d8-3a55-4584-b835-842325b6c7b3',
295
+ res = s.public_connections.create_connection(request=models.ConnectionCreateRequest(
296
+ destination_id='e478de0d-a3a0-475c-b019-25f7dd29e281',
297
+ source_id='95e66a59-8045-4307-9678-63bc3c9b8c93',
298
+ name='Postgres-to-Bigquery',
222
299
  namespace_format='${SOURCE_NAMESPACE}',
223
- )
224
-
225
- res = s.connections.create_connection(req)
300
+ ))
226
301
 
227
302
  if res.connection_response is not None:
228
303
  # handle response
@@ -258,10 +333,11 @@ s = airbyte_api.AirbyteAPI(client=http_client)
258
333
 
259
334
  This SDK supports the following security schemes globally:
260
335
 
261
- | Name | Type | Scheme |
262
- | ------------- | ------------- | ------------- |
263
- | `basic_auth` | http | HTTP Basic |
264
- | `bearer_auth` | http | HTTP Bearer |
336
+ | Name | Type | Scheme |
337
+ | -------------------- | -------------------- | -------------------- |
338
+ | `basic_auth` | http | HTTP Basic |
339
+ | `bearer_auth` | http | HTTP Bearer |
340
+ | `client_credentials` | oauth2 | OAuth2 token |
265
341
 
266
342
  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:
267
343
  ```python
@@ -277,13 +353,12 @@ s = airbyte_api.AirbyteAPI(
277
353
  ),
278
354
  )
279
355
 
280
- req = models.ConnectionCreateRequest(
281
- destination_id='c669dd1e-3620-483e-afc8-55914e0a570f',
282
- source_id='6dd427d8-3a55-4584-b835-842325b6c7b3',
356
+ res = s.public_connections.create_connection(request=models.ConnectionCreateRequest(
357
+ destination_id='e478de0d-a3a0-475c-b019-25f7dd29e281',
358
+ source_id='95e66a59-8045-4307-9678-63bc3c9b8c93',
359
+ name='Postgres-to-Bigquery',
283
360
  namespace_format='${SOURCE_NAMESPACE}',
284
- )
285
-
286
- res = s.connections.create_connection(req)
361
+ ))
287
362
 
288
363
  if res.connection_response is not None:
289
364
  # handle response
@@ -19,7 +19,7 @@ except FileNotFoundError:
19
19
 
20
20
  setuptools.setup(
21
21
  name='airbyte-api',
22
- version='0.49.2',
22
+ version='0.49.3',
23
23
  author='Airbyte',
24
24
  description='Python Client SDK for Airbyte API',
25
25
  url='https://github.com/airbytehq/airbyte-api-python-sdk.git',
@@ -2,3 +2,4 @@
2
2
 
3
3
  from .sdkhooks import *
4
4
  from .types import *
5
+ from .registration import *
@@ -0,0 +1,13 @@
1
+ from .types import Hooks
2
+
3
+
4
+ # This file is only ever generated once on the first generation and then is free to be modified.
5
+ # Any hooks you wish to add should be registered in the init_hooks function. Feel free to define them
6
+ # in this file or in separate files in the hooks folder.
7
+
8
+
9
+ def init_hooks(hooks: Hooks):
10
+ # pylint: disable=unused-argument
11
+ """Add hooks by calling hooks.register{sdk_init/before_request/after_success/after_error}Hook
12
+ with an instance of a hook that implements that specific Hook interface
13
+ Hooks are registered per SDK instance, and are valid for the lifetime of the SDK instance"""
@@ -2,6 +2,7 @@
2
2
 
3
3
  import requests
4
4
  from .types import SDKInitHook, BeforeRequestContext, BeforeRequestHook, AfterSuccessContext, AfterSuccessHook, AfterErrorContext, AfterErrorHook, Hooks
5
+ from .registration import init_hooks
5
6
  from typing import List, Optional, Tuple
6
7
 
7
8
 
@@ -11,6 +12,7 @@ class SDKHooks(Hooks):
11
12
  self.before_request_hooks: List[BeforeRequestHook] = []
12
13
  self.after_success_hooks: List[AfterSuccessHook] = []
13
14
  self.after_error_hooks: List[AfterErrorHook] = []
15
+ init_hooks(self)
14
16
 
15
17
  def register_sdk_init_hook(self, hook: SDKInitHook) -> None:
16
18
  self.sdk_init_hooks.append(hook)
@@ -3,16 +3,16 @@
3
3
  from __future__ import annotations
4
4
  import dataclasses
5
5
  import requests as requests_http
6
- from ..models import streampropertiesresponse as models_streampropertiesresponse
7
- from typing import Optional
6
+ from ..models import streamproperties as models_streamproperties
7
+ from typing import List, Optional
8
8
 
9
9
 
10
10
  @dataclasses.dataclass
11
11
  class GetStreamPropertiesRequest:
12
- destination_id: str = dataclasses.field(metadata={'query_param': { 'field_name': 'destinationId', 'style': 'form', 'explode': True }})
13
- r"""ID of the destination"""
14
12
  source_id: str = dataclasses.field(metadata={'query_param': { 'field_name': 'sourceId', 'style': 'form', 'explode': True }})
15
13
  r"""ID of the source"""
14
+ destination_id: Optional[str] = dataclasses.field(default=None, metadata={'query_param': { 'field_name': 'destinationId', 'style': 'form', 'explode': True }})
15
+ r"""ID of the destination"""
16
16
  ignore_cache: Optional[bool] = dataclasses.field(default=False, metadata={'query_param': { 'field_name': 'ignoreCache', 'style': 'form', 'explode': True }})
17
17
  r"""If true pull the latest schema from the source, else pull from cache (default false)"""
18
18
 
@@ -27,7 +27,7 @@ class GetStreamPropertiesResponse:
27
27
  r"""HTTP response status code for this operation"""
28
28
  raw_response: requests_http.Response = dataclasses.field()
29
29
  r"""Raw HTTP response; suitable for custom response parsing"""
30
- stream_properties_response: Optional[models_streampropertiesresponse.StreamPropertiesResponse] = dataclasses.field(default=None)
30
+ stream_properties_response: Optional[List[models_streamproperties.StreamProperties]] = dataclasses.field(default=None)
31
31
  r"""Get the available streams properties for a source/destination pair."""
32
32
 
33
33
 
@@ -25,7 +25,7 @@ class ListJobsRequest:
25
25
  offset: Optional[int] = dataclasses.field(default=0, metadata={'query_param': { 'field_name': 'offset', 'style': 'form', 'explode': True }})
26
26
  r"""Set the offset to start at when returning Jobs. The default is 0."""
27
27
  order_by: Optional[str] = dataclasses.field(default=None, metadata={'query_param': { 'field_name': 'orderBy', 'style': 'form', 'explode': True }})
28
- r"""The field and method to use for ordering. Currently allowed are createdAt and updatedAt."""
28
+ r"""The field and method to use for ordering"""
29
29
  status: Optional[models_jobstatusenum.JobStatusEnum] = dataclasses.field(default=None, metadata={'query_param': { 'field_name': 'status', 'style': 'form', 'explode': True }})
30
30
  r"""The Job status you want to filter by"""
31
31
  updated_at_end: Optional[datetime] = dataclasses.field(default=None, metadata={'query_param': { 'field_name': 'updatedAtEnd', 'style': 'form', 'explode': True }})
@@ -58,6 +58,7 @@ class Connections:
58
58
  res = api.CreateConnectionResponse(status_code=http_res.status_code, content_type=http_res.headers.get('Content-Type') or '', raw_response=http_res)
59
59
 
60
60
  if http_res.status_code == 200:
61
+ # pylint: disable=no-else-return
61
62
  if utils.match_content_type(http_res.headers.get('Content-Type') or '', 'application/json'):
62
63
  out = utils.unmarshal_json(http_res.text, Optional[models.ConnectionResponse])
63
64
  res.connection_response = out
@@ -161,6 +162,7 @@ class Connections:
161
162
  res = api.GetConnectionResponse(status_code=http_res.status_code, content_type=http_res.headers.get('Content-Type') or '', raw_response=http_res)
162
163
 
163
164
  if http_res.status_code == 200:
165
+ # pylint: disable=no-else-return
164
166
  if utils.match_content_type(http_res.headers.get('Content-Type') or '', 'application/json'):
165
167
  out = utils.unmarshal_json(http_res.text, Optional[models.ConnectionResponse])
166
168
  res.connection_response = out
@@ -216,6 +218,7 @@ class Connections:
216
218
  res = api.ListConnectionsResponse(status_code=http_res.status_code, content_type=http_res.headers.get('Content-Type') or '', raw_response=http_res)
217
219
 
218
220
  if http_res.status_code == 200:
221
+ # pylint: disable=no-else-return
219
222
  if utils.match_content_type(http_res.headers.get('Content-Type') or '', 'application/json'):
220
223
  out = utils.unmarshal_json(http_res.text, Optional[models.ConnectionsResponse])
221
224
  res.connections_response = out
@@ -275,6 +278,7 @@ class Connections:
275
278
  res = api.PatchConnectionResponse(status_code=http_res.status_code, content_type=http_res.headers.get('Content-Type') or '', raw_response=http_res)
276
279
 
277
280
  if http_res.status_code == 200:
281
+ # pylint: disable=no-else-return
278
282
  if utils.match_content_type(http_res.headers.get('Content-Type') or '', 'application/json'):
279
283
  out = utils.unmarshal_json(http_res.text, Optional[models.ConnectionResponse])
280
284
  res.connection_response = out