studyfetch-sdk 0.1.0a5__tar.gz → 0.1.0a7__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 (208) hide show
  1. studyfetch_sdk-0.1.0a7/.release-please-manifest.json +3 -0
  2. {studyfetch_sdk-0.1.0a5 → studyfetch_sdk-0.1.0a7}/CHANGELOG.md +18 -0
  3. {studyfetch_sdk-0.1.0a5 → studyfetch_sdk-0.1.0a7}/PKG-INFO +2 -2
  4. {studyfetch_sdk-0.1.0a5 → studyfetch_sdk-0.1.0a7}/README.md +1 -1
  5. {studyfetch_sdk-0.1.0a5 → studyfetch_sdk-0.1.0a7}/api.md +53 -68
  6. {studyfetch_sdk-0.1.0a5 → studyfetch_sdk-0.1.0a7}/pyproject.toml +1 -1
  7. {studyfetch_sdk-0.1.0a5 → studyfetch_sdk-0.1.0a7}/src/studyfetch_sdk/_version.py +1 -1
  8. {studyfetch_sdk-0.1.0a5 → studyfetch_sdk-0.1.0a7}/src/studyfetch_sdk/resources/v1/auth/__init__.py +0 -14
  9. {studyfetch_sdk-0.1.0a5 → studyfetch_sdk-0.1.0a7}/src/studyfetch_sdk/resources/v1/auth/auth.py +0 -32
  10. {studyfetch_sdk-0.1.0a5 → studyfetch_sdk-0.1.0a7}/src/studyfetch_sdk/resources/v1/chat/chat.py +13 -15
  11. {studyfetch_sdk-0.1.0a5 → studyfetch_sdk-0.1.0a7}/src/studyfetch_sdk/resources/v1/components.py +40 -37
  12. {studyfetch_sdk-0.1.0a5 → studyfetch_sdk-0.1.0a7}/src/studyfetch_sdk/resources/v1/explainers.py +80 -0
  13. {studyfetch_sdk-0.1.0a5 → studyfetch_sdk-0.1.0a7}/src/studyfetch_sdk/resources/v1/flashcards.py +15 -15
  14. {studyfetch_sdk-0.1.0a5 → studyfetch_sdk-0.1.0a7}/src/studyfetch_sdk/resources/v1/materials/materials.py +19 -20
  15. {studyfetch_sdk-0.1.0a5 → studyfetch_sdk-0.1.0a7}/src/studyfetch_sdk/resources/v1/materials/upload.py +19 -20
  16. {studyfetch_sdk-0.1.0a5 → studyfetch_sdk-0.1.0a7}/src/studyfetch_sdk/resources/v1/scenarios/scenarios.py +13 -13
  17. {studyfetch_sdk-0.1.0a5 → studyfetch_sdk-0.1.0a7}/src/studyfetch_sdk/resources/v1/scenarios/submissions/user.py +50 -50
  18. {studyfetch_sdk-0.1.0a5 → studyfetch_sdk-0.1.0a7}/src/studyfetch_sdk/types/v1/__init__.py +7 -12
  19. studyfetch_sdk-0.1.0a5/src/studyfetch_sdk/types/v1/chat_retrieve_session_params.py → studyfetch_sdk-0.1.0a7/src/studyfetch_sdk/types/v1/chat_get_session_params.py +2 -2
  20. studyfetch_sdk-0.1.0a5/src/studyfetch_sdk/types/v1/component_create_response.py → studyfetch_sdk-0.1.0a7/src/studyfetch_sdk/types/v1/component.py +2 -2
  21. studyfetch_sdk-0.1.0a5/src/studyfetch_sdk/types/v1/component_embed_params.py → studyfetch_sdk-0.1.0a7/src/studyfetch_sdk/types/v1/component_generate_embed_params.py +2 -2
  22. studyfetch_sdk-0.1.0a5/src/studyfetch_sdk/types/v1/component_embed_response.py → studyfetch_sdk-0.1.0a7/src/studyfetch_sdk/types/v1/component_generate_embed_response.py +2 -2
  23. studyfetch_sdk-0.1.0a7/src/studyfetch_sdk/types/v1/component_list_response.py +10 -0
  24. studyfetch_sdk-0.1.0a5/src/studyfetch_sdk/types/v1/flashcard_get_algorithm_info_response.py → studyfetch_sdk-0.1.0a7/src/studyfetch_sdk/types/v1/flashcard_get_algorithm_response.py +2 -2
  25. studyfetch_sdk-0.1.0a5/src/studyfetch_sdk/types/v1/material_create_response.py → studyfetch_sdk-0.1.0a7/src/studyfetch_sdk/types/v1/material.py +2 -2
  26. studyfetch_sdk-0.1.0a7/src/studyfetch_sdk/types/v1/material_list_response.py +10 -0
  27. {studyfetch_sdk-0.1.0a5 → studyfetch_sdk-0.1.0a7}/src/studyfetch_sdk/types/v1/materials/__init__.py +0 -2
  28. studyfetch_sdk-0.1.0a5/src/studyfetch_sdk/types/v1/scenario_submit_params.py → studyfetch_sdk-0.1.0a7/src/studyfetch_sdk/types/v1/scenario_submit_answer_params.py +2 -2
  29. {studyfetch_sdk-0.1.0a5 → studyfetch_sdk-0.1.0a7}/tests/api_resources/v1/audio_recaps/test_sections.py +16 -0
  30. {studyfetch_sdk-0.1.0a5 → studyfetch_sdk-0.1.0a7}/tests/api_resources/v1/chat/test_sessions.py +14 -0
  31. {studyfetch_sdk-0.1.0a5 → studyfetch_sdk-0.1.0a7}/tests/api_resources/v1/chat/test_test.py +12 -0
  32. {studyfetch_sdk-0.1.0a5 → studyfetch_sdk-0.1.0a7}/tests/api_resources/v1/embed/test_component.py +16 -0
  33. {studyfetch_sdk-0.1.0a5 → studyfetch_sdk-0.1.0a7}/tests/api_resources/v1/materials/test_bulk.py +6 -0
  34. {studyfetch_sdk-0.1.0a5 → studyfetch_sdk-0.1.0a7}/tests/api_resources/v1/materials/test_test.py +24 -0
  35. {studyfetch_sdk-0.1.0a5 → studyfetch_sdk-0.1.0a7}/tests/api_resources/v1/materials/test_upload.py +57 -32
  36. {studyfetch_sdk-0.1.0a5 → studyfetch_sdk-0.1.0a7}/tests/api_resources/v1/scenarios/submissions/test_user.py +64 -50
  37. {studyfetch_sdk-0.1.0a5 → studyfetch_sdk-0.1.0a7}/tests/api_resources/v1/scenarios/test_component.py +26 -0
  38. {studyfetch_sdk-0.1.0a5 → studyfetch_sdk-0.1.0a7}/tests/api_resources/v1/scenarios/test_sessions.py +16 -0
  39. {studyfetch_sdk-0.1.0a5 → studyfetch_sdk-0.1.0a7}/tests/api_resources/v1/test_audio_recaps.py +22 -0
  40. {studyfetch_sdk-0.1.0a5 → studyfetch_sdk-0.1.0a7}/tests/api_resources/v1/test_auth.py +6 -0
  41. {studyfetch_sdk-0.1.0a5 → studyfetch_sdk-0.1.0a7}/tests/api_resources/v1/test_chat.py +52 -16
  42. {studyfetch_sdk-0.1.0a5 → studyfetch_sdk-0.1.0a7}/tests/api_resources/v1/test_components.py +128 -54
  43. {studyfetch_sdk-0.1.0a5 → studyfetch_sdk-0.1.0a7}/tests/api_resources/v1/test_embed.py +18 -0
  44. {studyfetch_sdk-0.1.0a5 → studyfetch_sdk-0.1.0a7}/tests/api_resources/v1/test_explainers.py +100 -0
  45. {studyfetch_sdk-0.1.0a5 → studyfetch_sdk-0.1.0a7}/tests/api_resources/v1/test_flashcards.py +81 -19
  46. {studyfetch_sdk-0.1.0a5 → studyfetch_sdk-0.1.0a7}/tests/api_resources/v1/test_folders.py +64 -0
  47. {studyfetch_sdk-0.1.0a5 → studyfetch_sdk-0.1.0a7}/tests/api_resources/v1/test_materials.py +111 -28
  48. {studyfetch_sdk-0.1.0a5 → studyfetch_sdk-0.1.0a7}/tests/api_resources/v1/test_scenarios.py +78 -20
  49. {studyfetch_sdk-0.1.0a5 → studyfetch_sdk-0.1.0a7}/tests/api_resources/v1/test_tests.py +54 -0
  50. {studyfetch_sdk-0.1.0a5 → studyfetch_sdk-0.1.0a7}/tests/api_resources/v1/test_usage.py +24 -0
  51. {studyfetch_sdk-0.1.0a5 → studyfetch_sdk-0.1.0a7}/tests/api_resources/v1/tests/test_component.py +8 -0
  52. {studyfetch_sdk-0.1.0a5 → studyfetch_sdk-0.1.0a7}/tests/api_resources/v1/upload/test_component.py +32 -0
  53. studyfetch_sdk-0.1.0a5/.release-please-manifest.json +0 -3
  54. studyfetch_sdk-0.1.0a5/src/studyfetch_sdk/resources/v1/auth/number_2fa.py +0 -164
  55. studyfetch_sdk-0.1.0a5/src/studyfetch_sdk/types/__init__.py +0 -3
  56. studyfetch_sdk-0.1.0a5/src/studyfetch_sdk/types/v1/admin/__init__.py +0 -3
  57. studyfetch_sdk-0.1.0a5/src/studyfetch_sdk/types/v1/admin/organizations/__init__.py +0 -3
  58. studyfetch_sdk-0.1.0a5/src/studyfetch_sdk/types/v1/admin/organizations/models/__init__.py +0 -3
  59. studyfetch_sdk-0.1.0a5/src/studyfetch_sdk/types/v1/audio_recaps/__init__.py +0 -3
  60. studyfetch_sdk-0.1.0a5/src/studyfetch_sdk/types/v1/auth/__init__.py +0 -5
  61. studyfetch_sdk-0.1.0a5/src/studyfetch_sdk/types/v1/auth/number_2fa_send_code_params.py +0 -12
  62. studyfetch_sdk-0.1.0a5/src/studyfetch_sdk/types/v1/component_list_response.py +0 -51
  63. studyfetch_sdk-0.1.0a5/src/studyfetch_sdk/types/v1/component_retrieve_response.py +0 -48
  64. studyfetch_sdk-0.1.0a5/src/studyfetch_sdk/types/v1/component_update_response.py +0 -48
  65. studyfetch_sdk-0.1.0a5/src/studyfetch_sdk/types/v1/material_list_response.py +0 -65
  66. studyfetch_sdk-0.1.0a5/src/studyfetch_sdk/types/v1/material_retrieve_response.py +0 -62
  67. studyfetch_sdk-0.1.0a5/src/studyfetch_sdk/types/v1/materials/upload_upload_file_response.py +0 -62
  68. studyfetch_sdk-0.1.0a5/src/studyfetch_sdk/types/v1/materials/upload_upload_from_url_response.py +0 -62
  69. studyfetch_sdk-0.1.0a5/src/studyfetch_sdk/types/v1/organizations/__init__.py +0 -3
  70. studyfetch_sdk-0.1.0a5/tests/api_resources/v1/auth/test_number_2fa.py +0 -84
  71. {studyfetch_sdk-0.1.0a5 → studyfetch_sdk-0.1.0a7}/.gitignore +0 -0
  72. {studyfetch_sdk-0.1.0a5 → studyfetch_sdk-0.1.0a7}/CONTRIBUTING.md +0 -0
  73. {studyfetch_sdk-0.1.0a5 → studyfetch_sdk-0.1.0a7}/LICENSE +0 -0
  74. {studyfetch_sdk-0.1.0a5 → studyfetch_sdk-0.1.0a7}/SECURITY.md +0 -0
  75. {studyfetch_sdk-0.1.0a5 → studyfetch_sdk-0.1.0a7}/bin/check-release-environment +0 -0
  76. {studyfetch_sdk-0.1.0a5 → studyfetch_sdk-0.1.0a7}/bin/publish-pypi +0 -0
  77. {studyfetch_sdk-0.1.0a5 → studyfetch_sdk-0.1.0a7}/examples/.keep +0 -0
  78. {studyfetch_sdk-0.1.0a5 → studyfetch_sdk-0.1.0a7}/mypy.ini +0 -0
  79. {studyfetch_sdk-0.1.0a5 → studyfetch_sdk-0.1.0a7}/noxfile.py +0 -0
  80. {studyfetch_sdk-0.1.0a5 → studyfetch_sdk-0.1.0a7}/release-please-config.json +0 -0
  81. {studyfetch_sdk-0.1.0a5 → studyfetch_sdk-0.1.0a7}/requirements-dev.lock +0 -0
  82. {studyfetch_sdk-0.1.0a5 → studyfetch_sdk-0.1.0a7}/requirements.lock +0 -0
  83. {studyfetch_sdk-0.1.0a5 → studyfetch_sdk-0.1.0a7}/src/studyfetch_sdk/__init__.py +0 -0
  84. {studyfetch_sdk-0.1.0a5 → studyfetch_sdk-0.1.0a7}/src/studyfetch_sdk/_base_client.py +0 -0
  85. {studyfetch_sdk-0.1.0a5 → studyfetch_sdk-0.1.0a7}/src/studyfetch_sdk/_client.py +0 -0
  86. {studyfetch_sdk-0.1.0a5 → studyfetch_sdk-0.1.0a7}/src/studyfetch_sdk/_compat.py +0 -0
  87. {studyfetch_sdk-0.1.0a5 → studyfetch_sdk-0.1.0a7}/src/studyfetch_sdk/_constants.py +0 -0
  88. {studyfetch_sdk-0.1.0a5 → studyfetch_sdk-0.1.0a7}/src/studyfetch_sdk/_exceptions.py +0 -0
  89. {studyfetch_sdk-0.1.0a5 → studyfetch_sdk-0.1.0a7}/src/studyfetch_sdk/_files.py +0 -0
  90. {studyfetch_sdk-0.1.0a5 → studyfetch_sdk-0.1.0a7}/src/studyfetch_sdk/_models.py +0 -0
  91. {studyfetch_sdk-0.1.0a5 → studyfetch_sdk-0.1.0a7}/src/studyfetch_sdk/_qs.py +0 -0
  92. {studyfetch_sdk-0.1.0a5 → studyfetch_sdk-0.1.0a7}/src/studyfetch_sdk/_resource.py +0 -0
  93. {studyfetch_sdk-0.1.0a5 → studyfetch_sdk-0.1.0a7}/src/studyfetch_sdk/_response.py +0 -0
  94. {studyfetch_sdk-0.1.0a5 → studyfetch_sdk-0.1.0a7}/src/studyfetch_sdk/_streaming.py +0 -0
  95. {studyfetch_sdk-0.1.0a5 → studyfetch_sdk-0.1.0a7}/src/studyfetch_sdk/_types.py +0 -0
  96. {studyfetch_sdk-0.1.0a5 → studyfetch_sdk-0.1.0a7}/src/studyfetch_sdk/_utils/__init__.py +0 -0
  97. {studyfetch_sdk-0.1.0a5 → studyfetch_sdk-0.1.0a7}/src/studyfetch_sdk/_utils/_logs.py +0 -0
  98. {studyfetch_sdk-0.1.0a5 → studyfetch_sdk-0.1.0a7}/src/studyfetch_sdk/_utils/_proxy.py +0 -0
  99. {studyfetch_sdk-0.1.0a5 → studyfetch_sdk-0.1.0a7}/src/studyfetch_sdk/_utils/_reflection.py +0 -0
  100. {studyfetch_sdk-0.1.0a5 → studyfetch_sdk-0.1.0a7}/src/studyfetch_sdk/_utils/_resources_proxy.py +0 -0
  101. {studyfetch_sdk-0.1.0a5 → studyfetch_sdk-0.1.0a7}/src/studyfetch_sdk/_utils/_streams.py +0 -0
  102. {studyfetch_sdk-0.1.0a5 → studyfetch_sdk-0.1.0a7}/src/studyfetch_sdk/_utils/_sync.py +0 -0
  103. {studyfetch_sdk-0.1.0a5 → studyfetch_sdk-0.1.0a7}/src/studyfetch_sdk/_utils/_transform.py +0 -0
  104. {studyfetch_sdk-0.1.0a5 → studyfetch_sdk-0.1.0a7}/src/studyfetch_sdk/_utils/_typing.py +0 -0
  105. {studyfetch_sdk-0.1.0a5 → studyfetch_sdk-0.1.0a7}/src/studyfetch_sdk/_utils/_utils.py +0 -0
  106. {studyfetch_sdk-0.1.0a5 → studyfetch_sdk-0.1.0a7}/src/studyfetch_sdk/lib/.keep +0 -0
  107. {studyfetch_sdk-0.1.0a5 → studyfetch_sdk-0.1.0a7}/src/studyfetch_sdk/py.typed +0 -0
  108. {studyfetch_sdk-0.1.0a5 → studyfetch_sdk-0.1.0a7}/src/studyfetch_sdk/resources/__init__.py +0 -0
  109. {studyfetch_sdk-0.1.0a5 → studyfetch_sdk-0.1.0a7}/src/studyfetch_sdk/resources/v1/__init__.py +12 -12
  110. {studyfetch_sdk-0.1.0a5 → studyfetch_sdk-0.1.0a7}/src/studyfetch_sdk/resources/v1/audio_recaps/__init__.py +0 -0
  111. {studyfetch_sdk-0.1.0a5 → studyfetch_sdk-0.1.0a7}/src/studyfetch_sdk/resources/v1/audio_recaps/audio_recaps.py +0 -0
  112. {studyfetch_sdk-0.1.0a5 → studyfetch_sdk-0.1.0a7}/src/studyfetch_sdk/resources/v1/audio_recaps/sections.py +0 -0
  113. {studyfetch_sdk-0.1.0a5 → studyfetch_sdk-0.1.0a7}/src/studyfetch_sdk/resources/v1/chat/__init__.py +0 -0
  114. {studyfetch_sdk-0.1.0a5 → studyfetch_sdk-0.1.0a7}/src/studyfetch_sdk/resources/v1/chat/sessions.py +0 -0
  115. {studyfetch_sdk-0.1.0a5 → studyfetch_sdk-0.1.0a7}/src/studyfetch_sdk/resources/v1/chat/test.py +0 -0
  116. {studyfetch_sdk-0.1.0a5 → studyfetch_sdk-0.1.0a7}/src/studyfetch_sdk/resources/v1/embed/__init__.py +0 -0
  117. {studyfetch_sdk-0.1.0a5 → studyfetch_sdk-0.1.0a7}/src/studyfetch_sdk/resources/v1/embed/component.py +0 -0
  118. {studyfetch_sdk-0.1.0a5 → studyfetch_sdk-0.1.0a7}/src/studyfetch_sdk/resources/v1/embed/embed.py +0 -0
  119. {studyfetch_sdk-0.1.0a5 → studyfetch_sdk-0.1.0a7}/src/studyfetch_sdk/resources/v1/folders.py +0 -0
  120. {studyfetch_sdk-0.1.0a5 → studyfetch_sdk-0.1.0a7}/src/studyfetch_sdk/resources/v1/materials/__init__.py +0 -0
  121. {studyfetch_sdk-0.1.0a5 → studyfetch_sdk-0.1.0a7}/src/studyfetch_sdk/resources/v1/materials/bulk.py +0 -0
  122. {studyfetch_sdk-0.1.0a5 → studyfetch_sdk-0.1.0a7}/src/studyfetch_sdk/resources/v1/materials/test.py +0 -0
  123. {studyfetch_sdk-0.1.0a5 → studyfetch_sdk-0.1.0a7}/src/studyfetch_sdk/resources/v1/scenarios/__init__.py +0 -0
  124. {studyfetch_sdk-0.1.0a5 → studyfetch_sdk-0.1.0a7}/src/studyfetch_sdk/resources/v1/scenarios/component.py +0 -0
  125. {studyfetch_sdk-0.1.0a5 → studyfetch_sdk-0.1.0a7}/src/studyfetch_sdk/resources/v1/scenarios/sessions.py +0 -0
  126. {studyfetch_sdk-0.1.0a5 → studyfetch_sdk-0.1.0a7}/src/studyfetch_sdk/resources/v1/scenarios/submissions/__init__.py +0 -0
  127. {studyfetch_sdk-0.1.0a5 → studyfetch_sdk-0.1.0a7}/src/studyfetch_sdk/resources/v1/scenarios/submissions/submissions.py +0 -0
  128. {studyfetch_sdk-0.1.0a5 → studyfetch_sdk-0.1.0a7}/src/studyfetch_sdk/resources/v1/tests/__init__.py +0 -0
  129. {studyfetch_sdk-0.1.0a5 → studyfetch_sdk-0.1.0a7}/src/studyfetch_sdk/resources/v1/tests/component.py +0 -0
  130. {studyfetch_sdk-0.1.0a5 → studyfetch_sdk-0.1.0a7}/src/studyfetch_sdk/resources/v1/tests/tests.py +0 -0
  131. {studyfetch_sdk-0.1.0a5 → studyfetch_sdk-0.1.0a7}/src/studyfetch_sdk/resources/v1/upload/__init__.py +0 -0
  132. {studyfetch_sdk-0.1.0a5 → studyfetch_sdk-0.1.0a7}/src/studyfetch_sdk/resources/v1/upload/component.py +0 -0
  133. {studyfetch_sdk-0.1.0a5 → studyfetch_sdk-0.1.0a7}/src/studyfetch_sdk/resources/v1/upload/upload.py +0 -0
  134. {studyfetch_sdk-0.1.0a5 → studyfetch_sdk-0.1.0a7}/src/studyfetch_sdk/resources/v1/usage.py +0 -0
  135. {studyfetch_sdk-0.1.0a5 → studyfetch_sdk-0.1.0a7}/src/studyfetch_sdk/resources/v1/v1.py +48 -48
  136. {studyfetch_sdk-0.1.0a5/src/studyfetch_sdk/types/v1/upload → studyfetch_sdk-0.1.0a7/src/studyfetch_sdk/types}/__init__.py +0 -0
  137. {studyfetch_sdk-0.1.0a5/src/studyfetch_sdk/types/v1/tests → studyfetch_sdk-0.1.0a7/src/studyfetch_sdk/types/v1/audio_recaps}/__init__.py +0 -0
  138. {studyfetch_sdk-0.1.0a5/src/studyfetch_sdk/types/v1/scenarios/submissions → studyfetch_sdk-0.1.0a7/src/studyfetch_sdk/types/v1/auth}/__init__.py +0 -0
  139. {studyfetch_sdk-0.1.0a5 → studyfetch_sdk-0.1.0a7}/src/studyfetch_sdk/types/v1/chat/__init__.py +0 -0
  140. {studyfetch_sdk-0.1.0a5 → studyfetch_sdk-0.1.0a7}/src/studyfetch_sdk/types/v1/chat/session_retrieve_params.py +0 -0
  141. {studyfetch_sdk-0.1.0a5 → studyfetch_sdk-0.1.0a7}/src/studyfetch_sdk/types/v1/chat_send_message_params.py +0 -0
  142. {studyfetch_sdk-0.1.0a5 → studyfetch_sdk-0.1.0a7}/src/studyfetch_sdk/types/v1/chat_stream_params.py +0 -0
  143. {studyfetch_sdk-0.1.0a5 → studyfetch_sdk-0.1.0a7}/src/studyfetch_sdk/types/v1/component_create_params.py +0 -0
  144. {studyfetch_sdk-0.1.0a5 → studyfetch_sdk-0.1.0a7}/src/studyfetch_sdk/types/v1/component_list_params.py +0 -0
  145. {studyfetch_sdk-0.1.0a5 → studyfetch_sdk-0.1.0a7}/src/studyfetch_sdk/types/v1/component_update_params.py +0 -0
  146. {studyfetch_sdk-0.1.0a5 → studyfetch_sdk-0.1.0a7}/src/studyfetch_sdk/types/v1/embed/__init__.py +0 -0
  147. {studyfetch_sdk-0.1.0a5 → studyfetch_sdk-0.1.0a7}/src/studyfetch_sdk/types/v1/embed/component_interact_params.py +0 -0
  148. {studyfetch_sdk-0.1.0a5 → studyfetch_sdk-0.1.0a7}/src/studyfetch_sdk/types/v1/embed/component_retrieve_params.py +0 -0
  149. {studyfetch_sdk-0.1.0a5 → studyfetch_sdk-0.1.0a7}/src/studyfetch_sdk/types/v1/embed_get_theme_params.py +0 -0
  150. {studyfetch_sdk-0.1.0a5 → studyfetch_sdk-0.1.0a7}/src/studyfetch_sdk/types/v1/embed_verify_params.py +0 -0
  151. {studyfetch_sdk-0.1.0a5 → studyfetch_sdk-0.1.0a7}/src/studyfetch_sdk/types/v1/explainer_create_params.py +0 -0
  152. {studyfetch_sdk-0.1.0a5 → studyfetch_sdk-0.1.0a7}/src/studyfetch_sdk/types/v1/explainer_handle_webhook_params.py +0 -0
  153. {studyfetch_sdk-0.1.0a5 → studyfetch_sdk-0.1.0a7}/src/studyfetch_sdk/types/v1/flashcard_batch_process_params.py +0 -0
  154. {studyfetch_sdk-0.1.0a5 → studyfetch_sdk-0.1.0a7}/src/studyfetch_sdk/types/v1/flashcard_batch_process_response.py +0 -0
  155. {studyfetch_sdk-0.1.0a5 → studyfetch_sdk-0.1.0a7}/src/studyfetch_sdk/types/v1/flashcard_get_all_params.py +0 -0
  156. {studyfetch_sdk-0.1.0a5 → studyfetch_sdk-0.1.0a7}/src/studyfetch_sdk/types/v1/flashcard_get_due_params.py +0 -0
  157. {studyfetch_sdk-0.1.0a5 → studyfetch_sdk-0.1.0a7}/src/studyfetch_sdk/types/v1/flashcard_get_stats_params.py +0 -0
  158. {studyfetch_sdk-0.1.0a5 → studyfetch_sdk-0.1.0a7}/src/studyfetch_sdk/types/v1/flashcard_get_types_response.py +0 -0
  159. {studyfetch_sdk-0.1.0a5 → studyfetch_sdk-0.1.0a7}/src/studyfetch_sdk/types/v1/flashcard_rate_params.py +0 -0
  160. {studyfetch_sdk-0.1.0a5 → studyfetch_sdk-0.1.0a7}/src/studyfetch_sdk/types/v1/folder_create_params.py +0 -0
  161. {studyfetch_sdk-0.1.0a5 → studyfetch_sdk-0.1.0a7}/src/studyfetch_sdk/types/v1/folder_list_params.py +0 -0
  162. {studyfetch_sdk-0.1.0a5 → studyfetch_sdk-0.1.0a7}/src/studyfetch_sdk/types/v1/folder_update_params.py +0 -0
  163. {studyfetch_sdk-0.1.0a5 → studyfetch_sdk-0.1.0a7}/src/studyfetch_sdk/types/v1/material_create_params.py +0 -0
  164. {studyfetch_sdk-0.1.0a5 → studyfetch_sdk-0.1.0a7}/src/studyfetch_sdk/types/v1/material_get_download_url_params.py +0 -0
  165. {studyfetch_sdk-0.1.0a5 → studyfetch_sdk-0.1.0a7}/src/studyfetch_sdk/types/v1/material_list_params.py +0 -0
  166. {studyfetch_sdk-0.1.0a5 → studyfetch_sdk-0.1.0a7}/src/studyfetch_sdk/types/v1/materials/upload_upload_file_params.py +0 -0
  167. {studyfetch_sdk-0.1.0a5 → studyfetch_sdk-0.1.0a7}/src/studyfetch_sdk/types/v1/materials/upload_upload_from_url_params.py +0 -0
  168. {studyfetch_sdk-0.1.0a5 → studyfetch_sdk-0.1.0a7}/src/studyfetch_sdk/types/v1/scenario_create_params.py +0 -0
  169. {studyfetch_sdk-0.1.0a5 → studyfetch_sdk-0.1.0a7}/src/studyfetch_sdk/types/v1/scenario_update_params.py +0 -0
  170. {studyfetch_sdk-0.1.0a5 → studyfetch_sdk-0.1.0a7}/src/studyfetch_sdk/types/v1/scenarios/__init__.py +0 -0
  171. {studyfetch_sdk-0.1.0a5 → studyfetch_sdk-0.1.0a7}/src/studyfetch_sdk/types/v1/scenarios/component_update_params.py +0 -0
  172. {studyfetch_sdk-0.1.0a5/src/studyfetch_sdk/types/v1/organizations/team → studyfetch_sdk-0.1.0a7/src/studyfetch_sdk/types/v1/scenarios/submissions}/__init__.py +0 -0
  173. {studyfetch_sdk-0.1.0a5 → studyfetch_sdk-0.1.0a7}/src/studyfetch_sdk/types/v1/test_create_params.py +0 -0
  174. {studyfetch_sdk-0.1.0a5 → studyfetch_sdk-0.1.0a7}/src/studyfetch_sdk/types/v1/test_retake_params.py +0 -0
  175. {studyfetch_sdk-0.1.0a5 → studyfetch_sdk-0.1.0a7}/src/studyfetch_sdk/types/v1/test_submit_answer_params.py +0 -0
  176. {studyfetch_sdk-0.1.0a5 → studyfetch_sdk-0.1.0a7}/src/studyfetch_sdk/types/v1/test_submit_params.py +0 -0
  177. {studyfetch_sdk-0.1.0a5/src/studyfetch_sdk/types/v1/organizations/profile → studyfetch_sdk-0.1.0a7/src/studyfetch_sdk/types/v1/tests}/__init__.py +0 -0
  178. {studyfetch_sdk-0.1.0a5/src/studyfetch_sdk/types/v1/organizations/logo → studyfetch_sdk-0.1.0a7/src/studyfetch_sdk/types/v1/upload}/__init__.py +0 -0
  179. {studyfetch_sdk-0.1.0a5 → studyfetch_sdk-0.1.0a7}/src/studyfetch_sdk/types/v1/usage_get_stats_params.py +0 -0
  180. {studyfetch_sdk-0.1.0a5 → studyfetch_sdk-0.1.0a7}/src/studyfetch_sdk/types/v1/usage_get_summary_params.py +0 -0
  181. {studyfetch_sdk-0.1.0a5 → studyfetch_sdk-0.1.0a7}/src/studyfetch_sdk/types/v1/usage_list_events_params.py +0 -0
  182. {studyfetch_sdk-0.1.0a5/tests/api_resources/v1/upload → studyfetch_sdk-0.1.0a7/tests}/__init__.py +0 -0
  183. {studyfetch_sdk-0.1.0a5/tests/api_resources/v1/tests → studyfetch_sdk-0.1.0a7/tests/api_resources}/__init__.py +0 -0
  184. {studyfetch_sdk-0.1.0a5/tests/api_resources/v1/scenarios/submissions → studyfetch_sdk-0.1.0a7/tests/api_resources/v1}/__init__.py +0 -0
  185. {studyfetch_sdk-0.1.0a5/tests/api_resources/v1/scenarios → studyfetch_sdk-0.1.0a7/tests/api_resources/v1/audio_recaps}/__init__.py +0 -0
  186. {studyfetch_sdk-0.1.0a5/tests/api_resources/v1/materials → studyfetch_sdk-0.1.0a7/tests/api_resources/v1/auth}/__init__.py +0 -0
  187. {studyfetch_sdk-0.1.0a5/tests/api_resources/v1/embed → studyfetch_sdk-0.1.0a7/tests/api_resources/v1/chat}/__init__.py +0 -0
  188. {studyfetch_sdk-0.1.0a5/tests/api_resources/v1/chat → studyfetch_sdk-0.1.0a7/tests/api_resources/v1/embed}/__init__.py +0 -0
  189. {studyfetch_sdk-0.1.0a5/tests/api_resources/v1/auth → studyfetch_sdk-0.1.0a7/tests/api_resources/v1/materials}/__init__.py +0 -0
  190. {studyfetch_sdk-0.1.0a5/tests/api_resources/v1/audio_recaps → studyfetch_sdk-0.1.0a7/tests/api_resources/v1/scenarios}/__init__.py +0 -0
  191. {studyfetch_sdk-0.1.0a5/tests/api_resources/v1 → studyfetch_sdk-0.1.0a7/tests/api_resources/v1/scenarios/submissions}/__init__.py +0 -0
  192. {studyfetch_sdk-0.1.0a5/tests/api_resources → studyfetch_sdk-0.1.0a7/tests/api_resources/v1/tests}/__init__.py +0 -0
  193. {studyfetch_sdk-0.1.0a5/tests → studyfetch_sdk-0.1.0a7/tests/api_resources/v1/upload}/__init__.py +0 -0
  194. {studyfetch_sdk-0.1.0a5 → studyfetch_sdk-0.1.0a7}/tests/conftest.py +0 -0
  195. {studyfetch_sdk-0.1.0a5 → studyfetch_sdk-0.1.0a7}/tests/sample_file.txt +0 -0
  196. {studyfetch_sdk-0.1.0a5 → studyfetch_sdk-0.1.0a7}/tests/test_client.py +0 -0
  197. {studyfetch_sdk-0.1.0a5 → studyfetch_sdk-0.1.0a7}/tests/test_deepcopy.py +0 -0
  198. {studyfetch_sdk-0.1.0a5 → studyfetch_sdk-0.1.0a7}/tests/test_extract_files.py +0 -0
  199. {studyfetch_sdk-0.1.0a5 → studyfetch_sdk-0.1.0a7}/tests/test_files.py +0 -0
  200. {studyfetch_sdk-0.1.0a5 → studyfetch_sdk-0.1.0a7}/tests/test_models.py +0 -0
  201. {studyfetch_sdk-0.1.0a5 → studyfetch_sdk-0.1.0a7}/tests/test_qs.py +0 -0
  202. {studyfetch_sdk-0.1.0a5 → studyfetch_sdk-0.1.0a7}/tests/test_required_args.py +0 -0
  203. {studyfetch_sdk-0.1.0a5 → studyfetch_sdk-0.1.0a7}/tests/test_response.py +0 -0
  204. {studyfetch_sdk-0.1.0a5 → studyfetch_sdk-0.1.0a7}/tests/test_streaming.py +0 -0
  205. {studyfetch_sdk-0.1.0a5 → studyfetch_sdk-0.1.0a7}/tests/test_transform.py +0 -0
  206. {studyfetch_sdk-0.1.0a5 → studyfetch_sdk-0.1.0a7}/tests/test_utils/test_proxy.py +0 -0
  207. {studyfetch_sdk-0.1.0a5 → studyfetch_sdk-0.1.0a7}/tests/test_utils/test_typing.py +0 -0
  208. {studyfetch_sdk-0.1.0a5 → studyfetch_sdk-0.1.0a7}/tests/utils.py +0 -0
@@ -0,0 +1,3 @@
1
+ {
2
+ ".": "0.1.0-alpha.7"
3
+ }
@@ -1,5 +1,23 @@
1
1
  # Changelog
2
2
 
3
+ ## 0.1.0-alpha.7 (2025-07-20)
4
+
5
+ Full Changelog: [v0.1.0-alpha.6...v0.1.0-alpha.7](https://github.com/GoStudyFetchGo/studyfetch-sdk-python/compare/v0.1.0-alpha.6...v0.1.0-alpha.7)
6
+
7
+ ### Features
8
+
9
+ * **api:** api update ([013ffcb](https://github.com/GoStudyFetchGo/studyfetch-sdk-python/commit/013ffcb9a7d57de0a24a3807fe8b291365c7d3ae))
10
+
11
+ ## 0.1.0-alpha.6 (2025-07-20)
12
+
13
+ Full Changelog: [v0.1.0-alpha.5...v0.1.0-alpha.6](https://github.com/GoStudyFetchGo/studyfetch-sdk-python/compare/v0.1.0-alpha.5...v0.1.0-alpha.6)
14
+
15
+ ### Features
16
+
17
+ * **api:** api update ([bfe5ea5](https://github.com/GoStudyFetchGo/studyfetch-sdk-python/commit/bfe5ea57c3791889ceb0256b004b4cc55357b0e7))
18
+ * **api:** manual updates ([efade2c](https://github.com/GoStudyFetchGo/studyfetch-sdk-python/commit/efade2c650c84da705e4707664b45e8b675860e1))
19
+ * **api:** manual updates ([6199f6a](https://github.com/GoStudyFetchGo/studyfetch-sdk-python/commit/6199f6a98e6252700e0ec231856655b467d9ac97))
20
+
3
21
  ## 0.1.0-alpha.5 (2025-07-20)
4
22
 
5
23
  Full Changelog: [v0.1.0-alpha.4...v0.1.0-alpha.5](https://github.com/GoStudyFetchGo/studyfetch-sdk-python/compare/v0.1.0-alpha.4...v0.1.0-alpha.5)
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.3
2
2
  Name: studyfetch_sdk
3
- Version: 0.1.0a5
3
+ Version: 0.1.0a7
4
4
  Summary: The official Python library for the studyfetch-sdk API
5
5
  Project-URL: Homepage, https://github.com/GoStudyFetchGo/studyfetch-sdk-python
6
6
  Project-URL: Repository, https://github.com/GoStudyFetchGo/studyfetch-sdk-python
@@ -46,7 +46,7 @@ It is generated with [Stainless](https://www.stainless.com/).
46
46
 
47
47
  ## Documentation
48
48
 
49
- The REST API documentation can be found on [studyfetch.com](https://studyfetch.com/docs). The full API of this library can be found in [api.md](https://github.com/GoStudyFetchGo/studyfetch-sdk-python/tree/main/api.md).
49
+ The full API of this library can be found in [api.md](https://github.com/GoStudyFetchGo/studyfetch-sdk-python/tree/main/api.md).
50
50
 
51
51
  ## Installation
52
52
 
@@ -11,7 +11,7 @@ It is generated with [Stainless](https://www.stainless.com/).
11
11
 
12
12
  ## Documentation
13
13
 
14
- The REST API documentation can be found on [studyfetch.com](https://studyfetch.com/docs). The full API of this library can be found in [api.md](api.md).
14
+ The full API of this library can be found in [api.md](api.md).
15
15
 
16
16
  ## Installation
17
17
 
@@ -6,31 +6,21 @@ Methods:
6
6
 
7
7
  - <code title="post /api/v1/auth/verify-reset-token">client.v1.auth.<a href="./src/studyfetch_sdk/resources/v1/auth/auth.py">verify_reset_token</a>() -> None</code>
8
8
 
9
- ### Number2fa
10
-
11
- Methods:
12
-
13
- - <code title="post /api/v1/auth/2fa/send-code">client.v1.auth.number_2fa.<a href="./src/studyfetch_sdk/resources/v1/auth/number_2fa.py">send_code</a>(\*\*<a href="src/studyfetch_sdk/types/v1/auth/number_2fa_send_code_params.py">params</a>) -> None</code>
14
-
15
9
  ## Materials
16
10
 
17
11
  Types:
18
12
 
19
13
  ```python
20
- from studyfetch_sdk.types.v1 import (
21
- MaterialCreateResponse,
22
- MaterialRetrieveResponse,
23
- MaterialListResponse,
24
- )
14
+ from studyfetch_sdk.types.v1 import Material, MaterialListResponse
25
15
  ```
26
16
 
27
17
  Methods:
28
18
 
29
- - <code title="post /api/v1/materials">client.v1.materials.<a href="./src/studyfetch_sdk/resources/v1/materials/materials.py">create</a>(\*\*<a href="src/studyfetch_sdk/types/v1/material_create_params.py">params</a>) -> <a href="./src/studyfetch_sdk/types/v1/material_create_response.py">MaterialCreateResponse</a></code>
30
- - <code title="get /api/v1/materials/{id}">client.v1.materials.<a href="./src/studyfetch_sdk/resources/v1/materials/materials.py">retrieve</a>(id) -> <a href="./src/studyfetch_sdk/types/v1/material_retrieve_response.py">MaterialRetrieveResponse</a></code>
19
+ - <code title="post /api/v1/materials">client.v1.materials.<a href="./src/studyfetch_sdk/resources/v1/materials/materials.py">create</a>(\*\*<a href="src/studyfetch_sdk/types/v1/material_create_params.py">params</a>) -> <a href="./src/studyfetch_sdk/types/v1/material.py">Material</a></code>
20
+ - <code title="get /api/v1/materials/{id}">client.v1.materials.<a href="./src/studyfetch_sdk/resources/v1/materials/materials.py">retrieve</a>(id) -> <a href="./src/studyfetch_sdk/types/v1/material.py">Material</a></code>
31
21
  - <code title="get /api/v1/materials">client.v1.materials.<a href="./src/studyfetch_sdk/resources/v1/materials/materials.py">list</a>(\*\*<a href="src/studyfetch_sdk/types/v1/material_list_params.py">params</a>) -> <a href="./src/studyfetch_sdk/types/v1/material_list_response.py">MaterialListResponse</a></code>
32
22
  - <code title="delete /api/v1/materials/{id}">client.v1.materials.<a href="./src/studyfetch_sdk/resources/v1/materials/materials.py">delete</a>(id) -> None</code>
33
- - <code title="post /api/v1/materials/batch">client.v1.materials.<a href="./src/studyfetch_sdk/resources/v1/materials/materials.py">create_batch</a>() -> None</code>
23
+ - <code title="post /api/v1/materials/batch">client.v1.materials.<a href="./src/studyfetch_sdk/resources/v1/materials/materials.py">batch_create</a>() -> None</code>
34
24
  - <code title="get /api/v1/materials/{id}/debug">client.v1.materials.<a href="./src/studyfetch_sdk/resources/v1/materials/materials.py">debug</a>(id) -> None</code>
35
25
  - <code title="get /api/v1/materials/{id}/download-url">client.v1.materials.<a href="./src/studyfetch_sdk/resources/v1/materials/materials.py">get_download_url</a>(id, \*\*<a href="src/studyfetch_sdk/types/v1/material_get_download_url_params.py">params</a>) -> None</code>
36
26
  - <code title="post /api/v1/materials/{id}/move">client.v1.materials.<a href="./src/studyfetch_sdk/resources/v1/materials/materials.py">move</a>(id) -> None</code>
@@ -40,18 +30,12 @@ Methods:
40
30
 
41
31
  ### Upload
42
32
 
43
- Types:
44
-
45
- ```python
46
- from studyfetch_sdk.types.v1.materials import UploadUploadFileResponse, UploadUploadFromURLResponse
47
- ```
48
-
49
33
  Methods:
50
34
 
51
35
  - <code title="post /api/v1/materials/upload/complete">client.v1.materials.upload.<a href="./src/studyfetch_sdk/resources/v1/materials/upload.py">complete_upload</a>() -> None</code>
52
- - <code title="post /api/v1/materials/upload/presigned-url">client.v1.materials.upload.<a href="./src/studyfetch_sdk/resources/v1/materials/upload.py">get_presigned_url</a>() -> None</code>
53
- - <code title="post /api/v1/materials/upload">client.v1.materials.upload.<a href="./src/studyfetch_sdk/resources/v1/materials/upload.py">upload_file</a>(\*\*<a href="src/studyfetch_sdk/types/v1/materials/upload_upload_file_params.py">params</a>) -> <a href="./src/studyfetch_sdk/types/v1/materials/upload_upload_file_response.py">UploadUploadFileResponse</a></code>
54
- - <code title="post /api/v1/materials/upload/url">client.v1.materials.upload.<a href="./src/studyfetch_sdk/resources/v1/materials/upload.py">upload_from_url</a>(\*\*<a href="src/studyfetch_sdk/types/v1/materials/upload_upload_from_url_params.py">params</a>) -> <a href="./src/studyfetch_sdk/types/v1/materials/upload_upload_from_url_response.py">UploadUploadFromURLResponse</a></code>
36
+ - <code title="post /api/v1/materials/upload/presigned-url">client.v1.materials.upload.<a href="./src/studyfetch_sdk/resources/v1/materials/upload.py">create_presigned_url</a>() -> None</code>
37
+ - <code title="post /api/v1/materials/upload">client.v1.materials.upload.<a href="./src/studyfetch_sdk/resources/v1/materials/upload.py">upload_file</a>(\*\*<a href="src/studyfetch_sdk/types/v1/materials/upload_upload_file_params.py">params</a>) -> <a href="./src/studyfetch_sdk/types/v1/material.py">Material</a></code>
38
+ - <code title="post /api/v1/materials/upload/url">client.v1.materials.upload.<a href="./src/studyfetch_sdk/resources/v1/materials/upload.py">upload_from_url</a>(\*\*<a href="src/studyfetch_sdk/types/v1/materials/upload_upload_from_url_params.py">params</a>) -> <a href="./src/studyfetch_sdk/types/v1/material.py">Material</a></code>
55
39
 
56
40
  ### Bulk
57
41
 
@@ -68,14 +52,6 @@ Methods:
68
52
  - <code title="post /api/v1/materials/test/image-processing">client.v1.materials.test.<a href="./src/studyfetch_sdk/resources/v1/materials/test.py">process_image</a>() -> None</code>
69
53
  - <code title="post /api/v1/materials/test/video-processing">client.v1.materials.test.<a href="./src/studyfetch_sdk/resources/v1/materials/test.py">process_video</a>() -> None</code>
70
54
 
71
- ## Usage
72
-
73
- Methods:
74
-
75
- - <code title="get /api/v1/usage/stats">client.v1.usage.<a href="./src/studyfetch_sdk/resources/v1/usage.py">get_stats</a>(\*\*<a href="src/studyfetch_sdk/types/v1/usage_get_stats_params.py">params</a>) -> None</code>
76
- - <code title="get /api/v1/usage/summary">client.v1.usage.<a href="./src/studyfetch_sdk/resources/v1/usage.py">get_summary</a>(\*\*<a href="src/studyfetch_sdk/types/v1/usage_get_summary_params.py">params</a>) -> None</code>
77
- - <code title="get /api/v1/usage/events">client.v1.usage.<a href="./src/studyfetch_sdk/resources/v1/usage.py">list_events</a>(\*\*<a href="src/studyfetch_sdk/types/v1/usage_list_events_params.py">params</a>) -> None</code>
78
-
79
55
  ## Folders
80
56
 
81
57
  Methods:
@@ -94,27 +70,29 @@ Methods:
94
70
  Types:
95
71
 
96
72
  ```python
97
- from studyfetch_sdk.types.v1 import (
98
- ComponentCreateResponse,
99
- ComponentRetrieveResponse,
100
- ComponentUpdateResponse,
101
- ComponentListResponse,
102
- ComponentEmbedResponse,
103
- )
73
+ from studyfetch_sdk.types.v1 import Component, ComponentListResponse, ComponentGenerateEmbedResponse
104
74
  ```
105
75
 
106
76
  Methods:
107
77
 
108
- - <code title="post /api/v1/components">client.v1.components.<a href="./src/studyfetch_sdk/resources/v1/components.py">create</a>(\*\*<a href="src/studyfetch_sdk/types/v1/component_create_params.py">params</a>) -> <a href="./src/studyfetch_sdk/types/v1/component_create_response.py">ComponentCreateResponse</a></code>
109
- - <code title="get /api/v1/components/{id}">client.v1.components.<a href="./src/studyfetch_sdk/resources/v1/components.py">retrieve</a>(id) -> <a href="./src/studyfetch_sdk/types/v1/component_retrieve_response.py">ComponentRetrieveResponse</a></code>
110
- - <code title="patch /api/v1/components/{id}">client.v1.components.<a href="./src/studyfetch_sdk/resources/v1/components.py">update</a>(id, \*\*<a href="src/studyfetch_sdk/types/v1/component_update_params.py">params</a>) -> <a href="./src/studyfetch_sdk/types/v1/component_update_response.py">ComponentUpdateResponse</a></code>
78
+ - <code title="post /api/v1/components">client.v1.components.<a href="./src/studyfetch_sdk/resources/v1/components.py">create</a>(\*\*<a href="src/studyfetch_sdk/types/v1/component_create_params.py">params</a>) -> <a href="./src/studyfetch_sdk/types/v1/component.py">Component</a></code>
79
+ - <code title="get /api/v1/components/{id}">client.v1.components.<a href="./src/studyfetch_sdk/resources/v1/components.py">retrieve</a>(id) -> <a href="./src/studyfetch_sdk/types/v1/component.py">Component</a></code>
80
+ - <code title="patch /api/v1/components/{id}">client.v1.components.<a href="./src/studyfetch_sdk/resources/v1/components.py">update</a>(id, \*\*<a href="src/studyfetch_sdk/types/v1/component_update_params.py">params</a>) -> <a href="./src/studyfetch_sdk/types/v1/component.py">Component</a></code>
111
81
  - <code title="get /api/v1/components">client.v1.components.<a href="./src/studyfetch_sdk/resources/v1/components.py">list</a>(\*\*<a href="src/studyfetch_sdk/types/v1/component_list_params.py">params</a>) -> <a href="./src/studyfetch_sdk/types/v1/component_list_response.py">ComponentListResponse</a></code>
112
82
  - <code title="delete /api/v1/components/{id}">client.v1.components.<a href="./src/studyfetch_sdk/resources/v1/components.py">delete</a>(id) -> None</code>
113
83
  - <code title="post /api/v1/components/{id}/activate">client.v1.components.<a href="./src/studyfetch_sdk/resources/v1/components.py">activate</a>(id) -> None</code>
114
84
  - <code title="post /api/v1/components/{id}/deactivate">client.v1.components.<a href="./src/studyfetch_sdk/resources/v1/components.py">deactivate</a>(id) -> None</code>
115
- - <code title="post /api/v1/components/{id}/embed">client.v1.components.<a href="./src/studyfetch_sdk/resources/v1/components.py">embed</a>(id, \*\*<a href="src/studyfetch_sdk/types/v1/component_embed_params.py">params</a>) -> <a href="./src/studyfetch_sdk/types/v1/component_embed_response.py">ComponentEmbedResponse</a></code>
85
+ - <code title="post /api/v1/components/{id}/embed">client.v1.components.<a href="./src/studyfetch_sdk/resources/v1/components.py">generate_embed</a>(id, \*\*<a href="src/studyfetch_sdk/types/v1/component_generate_embed_params.py">params</a>) -> <a href="./src/studyfetch_sdk/types/v1/component_generate_embed_response.py">ComponentGenerateEmbedResponse</a></code>
116
86
  - <code title="post /api/v1/components/{id}/interact">client.v1.components.<a href="./src/studyfetch_sdk/resources/v1/components.py">interact</a>(id) -> None</code>
117
87
 
88
+ ## Usage
89
+
90
+ Methods:
91
+
92
+ - <code title="get /api/v1/usage/stats">client.v1.usage.<a href="./src/studyfetch_sdk/resources/v1/usage.py">get_stats</a>(\*\*<a href="src/studyfetch_sdk/types/v1/usage_get_stats_params.py">params</a>) -> None</code>
93
+ - <code title="get /api/v1/usage/summary">client.v1.usage.<a href="./src/studyfetch_sdk/resources/v1/usage.py">get_summary</a>(\*\*<a href="src/studyfetch_sdk/types/v1/usage_get_summary_params.py">params</a>) -> None</code>
94
+ - <code title="get /api/v1/usage/events">client.v1.usage.<a href="./src/studyfetch_sdk/resources/v1/usage.py">list_events</a>(\*\*<a href="src/studyfetch_sdk/types/v1/usage_list_events_params.py">params</a>) -> None</code>
95
+
118
96
  ## Embed
119
97
 
120
98
  Methods:
@@ -135,7 +113,7 @@ Methods:
135
113
  Methods:
136
114
 
137
115
  - <code title="post /api/v1/chat/history">client.v1.chat.<a href="./src/studyfetch_sdk/resources/v1/chat/chat.py">get_history</a>() -> None</code>
138
- - <code title="get /api/v1/chat/session/{sessionId}">client.v1.chat.<a href="./src/studyfetch_sdk/resources/v1/chat/chat.py">retrieve_session</a>(session_id, \*\*<a href="src/studyfetch_sdk/types/v1/chat_retrieve_session_params.py">params</a>) -> None</code>
116
+ - <code title="get /api/v1/chat/session/{sessionId}">client.v1.chat.<a href="./src/studyfetch_sdk/resources/v1/chat/chat.py">get_session</a>(session_id, \*\*<a href="src/studyfetch_sdk/types/v1/chat_get_session_params.py">params</a>) -> None</code>
139
117
  - <code title="post /api/v1/chat/followups">client.v1.chat.<a href="./src/studyfetch_sdk/resources/v1/chat/chat.py">send_followups</a>() -> None</code>
140
118
  - <code title="post /api/v1/chat/message">client.v1.chat.<a href="./src/studyfetch_sdk/resources/v1/chat/chat.py">send_message</a>(\*\*<a href="src/studyfetch_sdk/types/v1/chat_send_message_params.py">params</a>) -> None</code>
141
119
  - <code title="post /api/v1/chat/stream">client.v1.chat.<a href="./src/studyfetch_sdk/resources/v1/chat/chat.py">stream</a>(\*\*<a href="src/studyfetch_sdk/types/v1/chat_stream_params.py">params</a>) -> None</code>
@@ -154,28 +132,6 @@ Methods:
154
132
  - <code title="post /api/v1/chat/test/image-citation">client.v1.chat.test.<a href="./src/studyfetch_sdk/resources/v1/chat/test.py">cite_image</a>() -> None</code>
155
133
  - <code title="post /api/v1/chat/test/image">client.v1.chat.test.<a href="./src/studyfetch_sdk/resources/v1/chat/test.py">upload_image</a>() -> None</code>
156
134
 
157
- ## Flashcards
158
-
159
- Types:
160
-
161
- ```python
162
- from studyfetch_sdk.types.v1 import (
163
- FlashcardBatchProcessResponse,
164
- FlashcardGetAlgorithmInfoResponse,
165
- FlashcardGetTypesResponse,
166
- )
167
- ```
168
-
169
- Methods:
170
-
171
- - <code title="post /api/v1/flashcards/{componentId}/batch">client.v1.flashcards.<a href="./src/studyfetch_sdk/resources/v1/flashcards.py">batch_process</a>(component_id, \*\*<a href="src/studyfetch_sdk/types/v1/flashcard_batch_process_params.py">params</a>) -> <a href="./src/studyfetch_sdk/types/v1/flashcard_batch_process_response.py">FlashcardBatchProcessResponse</a></code>
172
- - <code title="get /api/v1/flashcards/algorithm">client.v1.flashcards.<a href="./src/studyfetch_sdk/resources/v1/flashcards.py">get_algorithm_info</a>() -> <a href="./src/studyfetch_sdk/types/v1/flashcard_get_algorithm_info_response.py">FlashcardGetAlgorithmInfoResponse</a></code>
173
- - <code title="get /api/v1/flashcards/{componentId}/all">client.v1.flashcards.<a href="./src/studyfetch_sdk/resources/v1/flashcards.py">get_all</a>(component_id, \*\*<a href="src/studyfetch_sdk/types/v1/flashcard_get_all_params.py">params</a>) -> None</code>
174
- - <code title="get /api/v1/flashcards/{componentId}/due">client.v1.flashcards.<a href="./src/studyfetch_sdk/resources/v1/flashcards.py">get_due</a>(component_id, \*\*<a href="src/studyfetch_sdk/types/v1/flashcard_get_due_params.py">params</a>) -> None</code>
175
- - <code title="get /api/v1/flashcards/{componentId}/stats">client.v1.flashcards.<a href="./src/studyfetch_sdk/resources/v1/flashcards.py">get_stats</a>(component_id, \*\*<a href="src/studyfetch_sdk/types/v1/flashcard_get_stats_params.py">params</a>) -> None</code>
176
- - <code title="get /api/v1/flashcards/types">client.v1.flashcards.<a href="./src/studyfetch_sdk/resources/v1/flashcards.py">get_types</a>() -> <a href="./src/studyfetch_sdk/types/v1/flashcard_get_types_response.py">FlashcardGetTypesResponse</a></code>
177
- - <code title="post /api/v1/flashcards/{componentId}/rate">client.v1.flashcards.<a href="./src/studyfetch_sdk/resources/v1/flashcards.py">rate</a>(component_id, \*\*<a href="src/studyfetch_sdk/types/v1/flashcard_rate_params.py">params</a>) -> None</code>
178
-
179
135
  ## Tests
180
136
 
181
137
  Methods:
@@ -208,8 +164,36 @@ Methods:
208
164
  - <code title="get /api/v1/audio-recaps/{recapId}/sections/{sectionId}">client.v1.audio_recaps.sections.<a href="./src/studyfetch_sdk/resources/v1/audio_recaps/sections.py">retrieve</a>(section_id, \*, recap_id) -> None</code>
209
165
  - <code title="get /api/v1/audio-recaps/{recapId}/sections">client.v1.audio_recaps.sections.<a href="./src/studyfetch_sdk/resources/v1/audio_recaps/sections.py">list</a>(recap_id) -> None</code>
210
166
 
167
+ ## Flashcards
168
+
169
+ Types:
170
+
171
+ ```python
172
+ from studyfetch_sdk.types.v1 import (
173
+ FlashcardBatchProcessResponse,
174
+ FlashcardGetAlgorithmResponse,
175
+ FlashcardGetTypesResponse,
176
+ )
177
+ ```
178
+
179
+ Methods:
180
+
181
+ - <code title="post /api/v1/flashcards/{componentId}/batch">client.v1.flashcards.<a href="./src/studyfetch_sdk/resources/v1/flashcards.py">batch_process</a>(component_id, \*\*<a href="src/studyfetch_sdk/types/v1/flashcard_batch_process_params.py">params</a>) -> <a href="./src/studyfetch_sdk/types/v1/flashcard_batch_process_response.py">FlashcardBatchProcessResponse</a></code>
182
+ - <code title="get /api/v1/flashcards/algorithm">client.v1.flashcards.<a href="./src/studyfetch_sdk/resources/v1/flashcards.py">get_algorithm</a>() -> <a href="./src/studyfetch_sdk/types/v1/flashcard_get_algorithm_response.py">FlashcardGetAlgorithmResponse</a></code>
183
+ - <code title="get /api/v1/flashcards/{componentId}/all">client.v1.flashcards.<a href="./src/studyfetch_sdk/resources/v1/flashcards.py">get_all</a>(component_id, \*\*<a href="src/studyfetch_sdk/types/v1/flashcard_get_all_params.py">params</a>) -> None</code>
184
+ - <code title="get /api/v1/flashcards/{componentId}/due">client.v1.flashcards.<a href="./src/studyfetch_sdk/resources/v1/flashcards.py">get_due</a>(component_id, \*\*<a href="src/studyfetch_sdk/types/v1/flashcard_get_due_params.py">params</a>) -> None</code>
185
+ - <code title="get /api/v1/flashcards/{componentId}/stats">client.v1.flashcards.<a href="./src/studyfetch_sdk/resources/v1/flashcards.py">get_stats</a>(component_id, \*\*<a href="src/studyfetch_sdk/types/v1/flashcard_get_stats_params.py">params</a>) -> None</code>
186
+ - <code title="get /api/v1/flashcards/types">client.v1.flashcards.<a href="./src/studyfetch_sdk/resources/v1/flashcards.py">get_types</a>() -> <a href="./src/studyfetch_sdk/types/v1/flashcard_get_types_response.py">FlashcardGetTypesResponse</a></code>
187
+ - <code title="post /api/v1/flashcards/{componentId}/rate">client.v1.flashcards.<a href="./src/studyfetch_sdk/resources/v1/flashcards.py">rate</a>(component_id, \*\*<a href="src/studyfetch_sdk/types/v1/flashcard_rate_params.py">params</a>) -> None</code>
188
+
211
189
  ## Scenarios
212
190
 
191
+ Types:
192
+
193
+ ```python
194
+ from studyfetch_sdk.types.v1 import Scenario
195
+ ```
196
+
213
197
  Methods:
214
198
 
215
199
  - <code title="post /api/v1/scenarios">client.v1.scenarios.<a href="./src/studyfetch_sdk/resources/v1/scenarios/scenarios.py">create</a>(\*\*<a href="src/studyfetch_sdk/types/v1/scenario_create_params.py">params</a>) -> None</code>
@@ -218,7 +202,7 @@ Methods:
218
202
  - <code title="get /api/v1/scenarios">client.v1.scenarios.<a href="./src/studyfetch_sdk/resources/v1/scenarios/scenarios.py">list</a>() -> None</code>
219
203
  - <code title="delete /api/v1/scenarios/{id}">client.v1.scenarios.<a href="./src/studyfetch_sdk/resources/v1/scenarios/scenarios.py">delete</a>(id) -> None</code>
220
204
  - <code title="get /api/v1/scenarios/{id}/stats">client.v1.scenarios.<a href="./src/studyfetch_sdk/resources/v1/scenarios/scenarios.py">get_stats</a>(id) -> None</code>
221
- - <code title="post /api/v1/scenarios/{id}/submit">client.v1.scenarios.<a href="./src/studyfetch_sdk/resources/v1/scenarios/scenarios.py">submit</a>(id, \*\*<a href="src/studyfetch_sdk/types/v1/scenario_submit_params.py">params</a>) -> None</code>
205
+ - <code title="post /api/v1/scenarios/{id}/submit">client.v1.scenarios.<a href="./src/studyfetch_sdk/resources/v1/scenarios/scenarios.py">submit_answer</a>(id, \*\*<a href="src/studyfetch_sdk/types/v1/scenario_submit_answer_params.py">params</a>) -> None</code>
222
206
 
223
207
  ### Component
224
208
 
@@ -241,14 +225,15 @@ Methods:
241
225
 
242
226
  Methods:
243
227
 
244
- - <code title="get /api/v1/scenarios/{id}/submissions/user">client.v1.scenarios.submissions.user.<a href="./src/studyfetch_sdk/resources/v1/scenarios/submissions/user.py">retrieve</a>(id) -> None</code>
245
- - <code title="get /api/v1/scenarios/submissions/user">client.v1.scenarios.submissions.user.<a href="./src/studyfetch_sdk/resources/v1/scenarios/submissions/user.py">list</a>() -> None</code>
228
+ - <code title="get /api/v1/scenarios/submissions/user">client.v1.scenarios.submissions.user.<a href="./src/studyfetch_sdk/resources/v1/scenarios/submissions/user.py">get_all</a>() -> None</code>
229
+ - <code title="get /api/v1/scenarios/{id}/submissions/user">client.v1.scenarios.submissions.user.<a href="./src/studyfetch_sdk/resources/v1/scenarios/submissions/user.py">get_by_scenario</a>(id) -> None</code>
246
230
 
247
231
  ## Explainers
248
232
 
249
233
  Methods:
250
234
 
251
235
  - <code title="post /api/v1/explainers/create">client.v1.explainers.<a href="./src/studyfetch_sdk/resources/v1/explainers.py">create</a>(\*\*<a href="src/studyfetch_sdk/types/v1/explainer_create_params.py">params</a>) -> None</code>
236
+ - <code title="get /api/v1/explainers/component/{componentId}">client.v1.explainers.<a href="./src/studyfetch_sdk/resources/v1/explainers.py">retrieve</a>(component_id) -> None</code>
252
237
  - <code title="post /api/v1/explainers/webhook">client.v1.explainers.<a href="./src/studyfetch_sdk/resources/v1/explainers.py">handle_webhook</a>(\*\*<a href="src/studyfetch_sdk/types/v1/explainer_handle_webhook_params.py">params</a>) -> None</code>
253
238
 
254
239
  ## Upload
@@ -1,6 +1,6 @@
1
1
  [project]
2
2
  name = "studyfetch_sdk"
3
- version = "0.1.0-alpha.5"
3
+ version = "0.1.0-alpha.7"
4
4
  description = "The official Python library for the studyfetch-sdk API"
5
5
  dynamic = ["readme"]
6
6
  license = "Apache-2.0"
@@ -1,4 +1,4 @@
1
1
  # File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
2
2
 
3
3
  __title__ = "studyfetch_sdk"
4
- __version__ = "0.1.0-alpha.5" # x-release-please-version
4
+ __version__ = "0.1.0-alpha.7" # x-release-please-version
@@ -8,22 +8,8 @@ from .auth import (
8
8
  AuthResourceWithStreamingResponse,
9
9
  AsyncAuthResourceWithStreamingResponse,
10
10
  )
11
- from .number_2fa import (
12
- Number2faResource,
13
- AsyncNumber2faResource,
14
- Number2faResourceWithRawResponse,
15
- AsyncNumber2faResourceWithRawResponse,
16
- Number2faResourceWithStreamingResponse,
17
- AsyncNumber2faResourceWithStreamingResponse,
18
- )
19
11
 
20
12
  __all__ = [
21
- "Number2faResource",
22
- "AsyncNumber2faResource",
23
- "Number2faResourceWithRawResponse",
24
- "AsyncNumber2faResourceWithRawResponse",
25
- "Number2faResourceWithStreamingResponse",
26
- "AsyncNumber2faResourceWithStreamingResponse",
27
13
  "AuthResource",
28
14
  "AsyncAuthResource",
29
15
  "AuthResourceWithRawResponse",
@@ -6,14 +6,6 @@ import httpx
6
6
 
7
7
  from ...._types import NOT_GIVEN, Body, Query, Headers, NoneType, NotGiven
8
8
  from ...._compat import cached_property
9
- from .number_2fa import (
10
- Number2faResource,
11
- AsyncNumber2faResource,
12
- Number2faResourceWithRawResponse,
13
- AsyncNumber2faResourceWithRawResponse,
14
- Number2faResourceWithStreamingResponse,
15
- AsyncNumber2faResourceWithStreamingResponse,
16
- )
17
9
  from ...._resource import SyncAPIResource, AsyncAPIResource
18
10
  from ...._response import (
19
11
  to_raw_response_wrapper,
@@ -27,10 +19,6 @@ __all__ = ["AuthResource", "AsyncAuthResource"]
27
19
 
28
20
 
29
21
  class AuthResource(SyncAPIResource):
30
- @cached_property
31
- def number_2fa(self) -> Number2faResource:
32
- return Number2faResource(self._client)
33
-
34
22
  @cached_property
35
23
  def with_raw_response(self) -> AuthResourceWithRawResponse:
36
24
  """
@@ -72,10 +60,6 @@ class AuthResource(SyncAPIResource):
72
60
 
73
61
 
74
62
  class AsyncAuthResource(AsyncAPIResource):
75
- @cached_property
76
- def number_2fa(self) -> AsyncNumber2faResource:
77
- return AsyncNumber2faResource(self._client)
78
-
79
63
  @cached_property
80
64
  def with_raw_response(self) -> AsyncAuthResourceWithRawResponse:
81
65
  """
@@ -124,10 +108,6 @@ class AuthResourceWithRawResponse:
124
108
  auth.verify_reset_token,
125
109
  )
126
110
 
127
- @cached_property
128
- def number_2fa(self) -> Number2faResourceWithRawResponse:
129
- return Number2faResourceWithRawResponse(self._auth.number_2fa)
130
-
131
111
 
132
112
  class AsyncAuthResourceWithRawResponse:
133
113
  def __init__(self, auth: AsyncAuthResource) -> None:
@@ -137,10 +117,6 @@ class AsyncAuthResourceWithRawResponse:
137
117
  auth.verify_reset_token,
138
118
  )
139
119
 
140
- @cached_property
141
- def number_2fa(self) -> AsyncNumber2faResourceWithRawResponse:
142
- return AsyncNumber2faResourceWithRawResponse(self._auth.number_2fa)
143
-
144
120
 
145
121
  class AuthResourceWithStreamingResponse:
146
122
  def __init__(self, auth: AuthResource) -> None:
@@ -150,10 +126,6 @@ class AuthResourceWithStreamingResponse:
150
126
  auth.verify_reset_token,
151
127
  )
152
128
 
153
- @cached_property
154
- def number_2fa(self) -> Number2faResourceWithStreamingResponse:
155
- return Number2faResourceWithStreamingResponse(self._auth.number_2fa)
156
-
157
129
 
158
130
  class AsyncAuthResourceWithStreamingResponse:
159
131
  def __init__(self, auth: AsyncAuthResource) -> None:
@@ -162,7 +134,3 @@ class AsyncAuthResourceWithStreamingResponse:
162
134
  self.verify_reset_token = async_to_streamed_response_wrapper(
163
135
  auth.verify_reset_token,
164
136
  )
165
-
166
- @cached_property
167
- def number_2fa(self) -> AsyncNumber2faResourceWithStreamingResponse:
168
- return AsyncNumber2faResourceWithStreamingResponse(self._auth.number_2fa)
@@ -25,7 +25,7 @@ from .sessions import (
25
25
  from ...._types import NOT_GIVEN, Body, Query, Headers, NoneType, NotGiven
26
26
  from ...._utils import maybe_transform, strip_not_given, async_maybe_transform
27
27
  from ...._compat import cached_property
28
- from ....types.v1 import chat_stream_params, chat_send_message_params, chat_retrieve_session_params
28
+ from ....types.v1 import chat_stream_params, chat_get_session_params, chat_send_message_params
29
29
  from ...._resource import SyncAPIResource, AsyncAPIResource
30
30
  from ...._response import (
31
31
  to_raw_response_wrapper,
@@ -85,7 +85,7 @@ class ChatResource(SyncAPIResource):
85
85
  cast_to=NoneType,
86
86
  )
87
87
 
88
- def retrieve_session(
88
+ def get_session(
89
89
  self,
90
90
  session_id: str,
91
91
  *,
@@ -117,7 +117,7 @@ class ChatResource(SyncAPIResource):
117
117
  extra_query=extra_query,
118
118
  extra_body=extra_body,
119
119
  timeout=timeout,
120
- query=maybe_transform({"user_id": user_id}, chat_retrieve_session_params.ChatRetrieveSessionParams),
120
+ query=maybe_transform({"user_id": user_id}, chat_get_session_params.ChatGetSessionParams),
121
121
  ),
122
122
  cast_to=NoneType,
123
123
  )
@@ -295,7 +295,7 @@ class AsyncChatResource(AsyncAPIResource):
295
295
  cast_to=NoneType,
296
296
  )
297
297
 
298
- async def retrieve_session(
298
+ async def get_session(
299
299
  self,
300
300
  session_id: str,
301
301
  *,
@@ -327,9 +327,7 @@ class AsyncChatResource(AsyncAPIResource):
327
327
  extra_query=extra_query,
328
328
  extra_body=extra_body,
329
329
  timeout=timeout,
330
- query=await async_maybe_transform(
331
- {"user_id": user_id}, chat_retrieve_session_params.ChatRetrieveSessionParams
332
- ),
330
+ query=await async_maybe_transform({"user_id": user_id}, chat_get_session_params.ChatGetSessionParams),
333
331
  ),
334
332
  cast_to=NoneType,
335
333
  )
@@ -467,8 +465,8 @@ class ChatResourceWithRawResponse:
467
465
  self.get_history = to_raw_response_wrapper(
468
466
  chat.get_history,
469
467
  )
470
- self.retrieve_session = to_raw_response_wrapper(
471
- chat.retrieve_session,
468
+ self.get_session = to_raw_response_wrapper(
469
+ chat.get_session,
472
470
  )
473
471
  self.send_followups = to_raw_response_wrapper(
474
472
  chat.send_followups,
@@ -496,8 +494,8 @@ class AsyncChatResourceWithRawResponse:
496
494
  self.get_history = async_to_raw_response_wrapper(
497
495
  chat.get_history,
498
496
  )
499
- self.retrieve_session = async_to_raw_response_wrapper(
500
- chat.retrieve_session,
497
+ self.get_session = async_to_raw_response_wrapper(
498
+ chat.get_session,
501
499
  )
502
500
  self.send_followups = async_to_raw_response_wrapper(
503
501
  chat.send_followups,
@@ -525,8 +523,8 @@ class ChatResourceWithStreamingResponse:
525
523
  self.get_history = to_streamed_response_wrapper(
526
524
  chat.get_history,
527
525
  )
528
- self.retrieve_session = to_streamed_response_wrapper(
529
- chat.retrieve_session,
526
+ self.get_session = to_streamed_response_wrapper(
527
+ chat.get_session,
530
528
  )
531
529
  self.send_followups = to_streamed_response_wrapper(
532
530
  chat.send_followups,
@@ -554,8 +552,8 @@ class AsyncChatResourceWithStreamingResponse:
554
552
  self.get_history = async_to_streamed_response_wrapper(
555
553
  chat.get_history,
556
554
  )
557
- self.retrieve_session = async_to_streamed_response_wrapper(
558
- chat.retrieve_session,
555
+ self.get_session = async_to_streamed_response_wrapper(
556
+ chat.get_session,
559
557
  )
560
558
  self.send_followups = async_to_streamed_response_wrapper(
561
559
  chat.send_followups,