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.
- studyfetch_sdk-0.1.0a7/.release-please-manifest.json +3 -0
- {studyfetch_sdk-0.1.0a5 → studyfetch_sdk-0.1.0a7}/CHANGELOG.md +18 -0
- {studyfetch_sdk-0.1.0a5 → studyfetch_sdk-0.1.0a7}/PKG-INFO +2 -2
- {studyfetch_sdk-0.1.0a5 → studyfetch_sdk-0.1.0a7}/README.md +1 -1
- {studyfetch_sdk-0.1.0a5 → studyfetch_sdk-0.1.0a7}/api.md +53 -68
- {studyfetch_sdk-0.1.0a5 → studyfetch_sdk-0.1.0a7}/pyproject.toml +1 -1
- {studyfetch_sdk-0.1.0a5 → studyfetch_sdk-0.1.0a7}/src/studyfetch_sdk/_version.py +1 -1
- {studyfetch_sdk-0.1.0a5 → studyfetch_sdk-0.1.0a7}/src/studyfetch_sdk/resources/v1/auth/__init__.py +0 -14
- {studyfetch_sdk-0.1.0a5 → studyfetch_sdk-0.1.0a7}/src/studyfetch_sdk/resources/v1/auth/auth.py +0 -32
- {studyfetch_sdk-0.1.0a5 → studyfetch_sdk-0.1.0a7}/src/studyfetch_sdk/resources/v1/chat/chat.py +13 -15
- {studyfetch_sdk-0.1.0a5 → studyfetch_sdk-0.1.0a7}/src/studyfetch_sdk/resources/v1/components.py +40 -37
- {studyfetch_sdk-0.1.0a5 → studyfetch_sdk-0.1.0a7}/src/studyfetch_sdk/resources/v1/explainers.py +80 -0
- {studyfetch_sdk-0.1.0a5 → studyfetch_sdk-0.1.0a7}/src/studyfetch_sdk/resources/v1/flashcards.py +15 -15
- {studyfetch_sdk-0.1.0a5 → studyfetch_sdk-0.1.0a7}/src/studyfetch_sdk/resources/v1/materials/materials.py +19 -20
- {studyfetch_sdk-0.1.0a5 → studyfetch_sdk-0.1.0a7}/src/studyfetch_sdk/resources/v1/materials/upload.py +19 -20
- {studyfetch_sdk-0.1.0a5 → studyfetch_sdk-0.1.0a7}/src/studyfetch_sdk/resources/v1/scenarios/scenarios.py +13 -13
- {studyfetch_sdk-0.1.0a5 → studyfetch_sdk-0.1.0a7}/src/studyfetch_sdk/resources/v1/scenarios/submissions/user.py +50 -50
- {studyfetch_sdk-0.1.0a5 → studyfetch_sdk-0.1.0a7}/src/studyfetch_sdk/types/v1/__init__.py +7 -12
- 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
- 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
- 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
- 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
- studyfetch_sdk-0.1.0a7/src/studyfetch_sdk/types/v1/component_list_response.py +10 -0
- 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
- 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
- studyfetch_sdk-0.1.0a7/src/studyfetch_sdk/types/v1/material_list_response.py +10 -0
- {studyfetch_sdk-0.1.0a5 → studyfetch_sdk-0.1.0a7}/src/studyfetch_sdk/types/v1/materials/__init__.py +0 -2
- 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
- {studyfetch_sdk-0.1.0a5 → studyfetch_sdk-0.1.0a7}/tests/api_resources/v1/audio_recaps/test_sections.py +16 -0
- {studyfetch_sdk-0.1.0a5 → studyfetch_sdk-0.1.0a7}/tests/api_resources/v1/chat/test_sessions.py +14 -0
- {studyfetch_sdk-0.1.0a5 → studyfetch_sdk-0.1.0a7}/tests/api_resources/v1/chat/test_test.py +12 -0
- {studyfetch_sdk-0.1.0a5 → studyfetch_sdk-0.1.0a7}/tests/api_resources/v1/embed/test_component.py +16 -0
- {studyfetch_sdk-0.1.0a5 → studyfetch_sdk-0.1.0a7}/tests/api_resources/v1/materials/test_bulk.py +6 -0
- {studyfetch_sdk-0.1.0a5 → studyfetch_sdk-0.1.0a7}/tests/api_resources/v1/materials/test_test.py +24 -0
- {studyfetch_sdk-0.1.0a5 → studyfetch_sdk-0.1.0a7}/tests/api_resources/v1/materials/test_upload.py +57 -32
- {studyfetch_sdk-0.1.0a5 → studyfetch_sdk-0.1.0a7}/tests/api_resources/v1/scenarios/submissions/test_user.py +64 -50
- {studyfetch_sdk-0.1.0a5 → studyfetch_sdk-0.1.0a7}/tests/api_resources/v1/scenarios/test_component.py +26 -0
- {studyfetch_sdk-0.1.0a5 → studyfetch_sdk-0.1.0a7}/tests/api_resources/v1/scenarios/test_sessions.py +16 -0
- {studyfetch_sdk-0.1.0a5 → studyfetch_sdk-0.1.0a7}/tests/api_resources/v1/test_audio_recaps.py +22 -0
- {studyfetch_sdk-0.1.0a5 → studyfetch_sdk-0.1.0a7}/tests/api_resources/v1/test_auth.py +6 -0
- {studyfetch_sdk-0.1.0a5 → studyfetch_sdk-0.1.0a7}/tests/api_resources/v1/test_chat.py +52 -16
- {studyfetch_sdk-0.1.0a5 → studyfetch_sdk-0.1.0a7}/tests/api_resources/v1/test_components.py +128 -54
- {studyfetch_sdk-0.1.0a5 → studyfetch_sdk-0.1.0a7}/tests/api_resources/v1/test_embed.py +18 -0
- {studyfetch_sdk-0.1.0a5 → studyfetch_sdk-0.1.0a7}/tests/api_resources/v1/test_explainers.py +100 -0
- {studyfetch_sdk-0.1.0a5 → studyfetch_sdk-0.1.0a7}/tests/api_resources/v1/test_flashcards.py +81 -19
- {studyfetch_sdk-0.1.0a5 → studyfetch_sdk-0.1.0a7}/tests/api_resources/v1/test_folders.py +64 -0
- {studyfetch_sdk-0.1.0a5 → studyfetch_sdk-0.1.0a7}/tests/api_resources/v1/test_materials.py +111 -28
- {studyfetch_sdk-0.1.0a5 → studyfetch_sdk-0.1.0a7}/tests/api_resources/v1/test_scenarios.py +78 -20
- {studyfetch_sdk-0.1.0a5 → studyfetch_sdk-0.1.0a7}/tests/api_resources/v1/test_tests.py +54 -0
- {studyfetch_sdk-0.1.0a5 → studyfetch_sdk-0.1.0a7}/tests/api_resources/v1/test_usage.py +24 -0
- {studyfetch_sdk-0.1.0a5 → studyfetch_sdk-0.1.0a7}/tests/api_resources/v1/tests/test_component.py +8 -0
- {studyfetch_sdk-0.1.0a5 → studyfetch_sdk-0.1.0a7}/tests/api_resources/v1/upload/test_component.py +32 -0
- studyfetch_sdk-0.1.0a5/.release-please-manifest.json +0 -3
- studyfetch_sdk-0.1.0a5/src/studyfetch_sdk/resources/v1/auth/number_2fa.py +0 -164
- studyfetch_sdk-0.1.0a5/src/studyfetch_sdk/types/__init__.py +0 -3
- studyfetch_sdk-0.1.0a5/src/studyfetch_sdk/types/v1/admin/__init__.py +0 -3
- studyfetch_sdk-0.1.0a5/src/studyfetch_sdk/types/v1/admin/organizations/__init__.py +0 -3
- studyfetch_sdk-0.1.0a5/src/studyfetch_sdk/types/v1/admin/organizations/models/__init__.py +0 -3
- studyfetch_sdk-0.1.0a5/src/studyfetch_sdk/types/v1/audio_recaps/__init__.py +0 -3
- studyfetch_sdk-0.1.0a5/src/studyfetch_sdk/types/v1/auth/__init__.py +0 -5
- studyfetch_sdk-0.1.0a5/src/studyfetch_sdk/types/v1/auth/number_2fa_send_code_params.py +0 -12
- studyfetch_sdk-0.1.0a5/src/studyfetch_sdk/types/v1/component_list_response.py +0 -51
- studyfetch_sdk-0.1.0a5/src/studyfetch_sdk/types/v1/component_retrieve_response.py +0 -48
- studyfetch_sdk-0.1.0a5/src/studyfetch_sdk/types/v1/component_update_response.py +0 -48
- studyfetch_sdk-0.1.0a5/src/studyfetch_sdk/types/v1/material_list_response.py +0 -65
- studyfetch_sdk-0.1.0a5/src/studyfetch_sdk/types/v1/material_retrieve_response.py +0 -62
- studyfetch_sdk-0.1.0a5/src/studyfetch_sdk/types/v1/materials/upload_upload_file_response.py +0 -62
- studyfetch_sdk-0.1.0a5/src/studyfetch_sdk/types/v1/materials/upload_upload_from_url_response.py +0 -62
- studyfetch_sdk-0.1.0a5/src/studyfetch_sdk/types/v1/organizations/__init__.py +0 -3
- studyfetch_sdk-0.1.0a5/tests/api_resources/v1/auth/test_number_2fa.py +0 -84
- {studyfetch_sdk-0.1.0a5 → studyfetch_sdk-0.1.0a7}/.gitignore +0 -0
- {studyfetch_sdk-0.1.0a5 → studyfetch_sdk-0.1.0a7}/CONTRIBUTING.md +0 -0
- {studyfetch_sdk-0.1.0a5 → studyfetch_sdk-0.1.0a7}/LICENSE +0 -0
- {studyfetch_sdk-0.1.0a5 → studyfetch_sdk-0.1.0a7}/SECURITY.md +0 -0
- {studyfetch_sdk-0.1.0a5 → studyfetch_sdk-0.1.0a7}/bin/check-release-environment +0 -0
- {studyfetch_sdk-0.1.0a5 → studyfetch_sdk-0.1.0a7}/bin/publish-pypi +0 -0
- {studyfetch_sdk-0.1.0a5 → studyfetch_sdk-0.1.0a7}/examples/.keep +0 -0
- {studyfetch_sdk-0.1.0a5 → studyfetch_sdk-0.1.0a7}/mypy.ini +0 -0
- {studyfetch_sdk-0.1.0a5 → studyfetch_sdk-0.1.0a7}/noxfile.py +0 -0
- {studyfetch_sdk-0.1.0a5 → studyfetch_sdk-0.1.0a7}/release-please-config.json +0 -0
- {studyfetch_sdk-0.1.0a5 → studyfetch_sdk-0.1.0a7}/requirements-dev.lock +0 -0
- {studyfetch_sdk-0.1.0a5 → studyfetch_sdk-0.1.0a7}/requirements.lock +0 -0
- {studyfetch_sdk-0.1.0a5 → studyfetch_sdk-0.1.0a7}/src/studyfetch_sdk/__init__.py +0 -0
- {studyfetch_sdk-0.1.0a5 → studyfetch_sdk-0.1.0a7}/src/studyfetch_sdk/_base_client.py +0 -0
- {studyfetch_sdk-0.1.0a5 → studyfetch_sdk-0.1.0a7}/src/studyfetch_sdk/_client.py +0 -0
- {studyfetch_sdk-0.1.0a5 → studyfetch_sdk-0.1.0a7}/src/studyfetch_sdk/_compat.py +0 -0
- {studyfetch_sdk-0.1.0a5 → studyfetch_sdk-0.1.0a7}/src/studyfetch_sdk/_constants.py +0 -0
- {studyfetch_sdk-0.1.0a5 → studyfetch_sdk-0.1.0a7}/src/studyfetch_sdk/_exceptions.py +0 -0
- {studyfetch_sdk-0.1.0a5 → studyfetch_sdk-0.1.0a7}/src/studyfetch_sdk/_files.py +0 -0
- {studyfetch_sdk-0.1.0a5 → studyfetch_sdk-0.1.0a7}/src/studyfetch_sdk/_models.py +0 -0
- {studyfetch_sdk-0.1.0a5 → studyfetch_sdk-0.1.0a7}/src/studyfetch_sdk/_qs.py +0 -0
- {studyfetch_sdk-0.1.0a5 → studyfetch_sdk-0.1.0a7}/src/studyfetch_sdk/_resource.py +0 -0
- {studyfetch_sdk-0.1.0a5 → studyfetch_sdk-0.1.0a7}/src/studyfetch_sdk/_response.py +0 -0
- {studyfetch_sdk-0.1.0a5 → studyfetch_sdk-0.1.0a7}/src/studyfetch_sdk/_streaming.py +0 -0
- {studyfetch_sdk-0.1.0a5 → studyfetch_sdk-0.1.0a7}/src/studyfetch_sdk/_types.py +0 -0
- {studyfetch_sdk-0.1.0a5 → studyfetch_sdk-0.1.0a7}/src/studyfetch_sdk/_utils/__init__.py +0 -0
- {studyfetch_sdk-0.1.0a5 → studyfetch_sdk-0.1.0a7}/src/studyfetch_sdk/_utils/_logs.py +0 -0
- {studyfetch_sdk-0.1.0a5 → studyfetch_sdk-0.1.0a7}/src/studyfetch_sdk/_utils/_proxy.py +0 -0
- {studyfetch_sdk-0.1.0a5 → studyfetch_sdk-0.1.0a7}/src/studyfetch_sdk/_utils/_reflection.py +0 -0
- {studyfetch_sdk-0.1.0a5 → studyfetch_sdk-0.1.0a7}/src/studyfetch_sdk/_utils/_resources_proxy.py +0 -0
- {studyfetch_sdk-0.1.0a5 → studyfetch_sdk-0.1.0a7}/src/studyfetch_sdk/_utils/_streams.py +0 -0
- {studyfetch_sdk-0.1.0a5 → studyfetch_sdk-0.1.0a7}/src/studyfetch_sdk/_utils/_sync.py +0 -0
- {studyfetch_sdk-0.1.0a5 → studyfetch_sdk-0.1.0a7}/src/studyfetch_sdk/_utils/_transform.py +0 -0
- {studyfetch_sdk-0.1.0a5 → studyfetch_sdk-0.1.0a7}/src/studyfetch_sdk/_utils/_typing.py +0 -0
- {studyfetch_sdk-0.1.0a5 → studyfetch_sdk-0.1.0a7}/src/studyfetch_sdk/_utils/_utils.py +0 -0
- {studyfetch_sdk-0.1.0a5 → studyfetch_sdk-0.1.0a7}/src/studyfetch_sdk/lib/.keep +0 -0
- {studyfetch_sdk-0.1.0a5 → studyfetch_sdk-0.1.0a7}/src/studyfetch_sdk/py.typed +0 -0
- {studyfetch_sdk-0.1.0a5 → studyfetch_sdk-0.1.0a7}/src/studyfetch_sdk/resources/__init__.py +0 -0
- {studyfetch_sdk-0.1.0a5 → studyfetch_sdk-0.1.0a7}/src/studyfetch_sdk/resources/v1/__init__.py +12 -12
- {studyfetch_sdk-0.1.0a5 → studyfetch_sdk-0.1.0a7}/src/studyfetch_sdk/resources/v1/audio_recaps/__init__.py +0 -0
- {studyfetch_sdk-0.1.0a5 → studyfetch_sdk-0.1.0a7}/src/studyfetch_sdk/resources/v1/audio_recaps/audio_recaps.py +0 -0
- {studyfetch_sdk-0.1.0a5 → studyfetch_sdk-0.1.0a7}/src/studyfetch_sdk/resources/v1/audio_recaps/sections.py +0 -0
- {studyfetch_sdk-0.1.0a5 → studyfetch_sdk-0.1.0a7}/src/studyfetch_sdk/resources/v1/chat/__init__.py +0 -0
- {studyfetch_sdk-0.1.0a5 → studyfetch_sdk-0.1.0a7}/src/studyfetch_sdk/resources/v1/chat/sessions.py +0 -0
- {studyfetch_sdk-0.1.0a5 → studyfetch_sdk-0.1.0a7}/src/studyfetch_sdk/resources/v1/chat/test.py +0 -0
- {studyfetch_sdk-0.1.0a5 → studyfetch_sdk-0.1.0a7}/src/studyfetch_sdk/resources/v1/embed/__init__.py +0 -0
- {studyfetch_sdk-0.1.0a5 → studyfetch_sdk-0.1.0a7}/src/studyfetch_sdk/resources/v1/embed/component.py +0 -0
- {studyfetch_sdk-0.1.0a5 → studyfetch_sdk-0.1.0a7}/src/studyfetch_sdk/resources/v1/embed/embed.py +0 -0
- {studyfetch_sdk-0.1.0a5 → studyfetch_sdk-0.1.0a7}/src/studyfetch_sdk/resources/v1/folders.py +0 -0
- {studyfetch_sdk-0.1.0a5 → studyfetch_sdk-0.1.0a7}/src/studyfetch_sdk/resources/v1/materials/__init__.py +0 -0
- {studyfetch_sdk-0.1.0a5 → studyfetch_sdk-0.1.0a7}/src/studyfetch_sdk/resources/v1/materials/bulk.py +0 -0
- {studyfetch_sdk-0.1.0a5 → studyfetch_sdk-0.1.0a7}/src/studyfetch_sdk/resources/v1/materials/test.py +0 -0
- {studyfetch_sdk-0.1.0a5 → studyfetch_sdk-0.1.0a7}/src/studyfetch_sdk/resources/v1/scenarios/__init__.py +0 -0
- {studyfetch_sdk-0.1.0a5 → studyfetch_sdk-0.1.0a7}/src/studyfetch_sdk/resources/v1/scenarios/component.py +0 -0
- {studyfetch_sdk-0.1.0a5 → studyfetch_sdk-0.1.0a7}/src/studyfetch_sdk/resources/v1/scenarios/sessions.py +0 -0
- {studyfetch_sdk-0.1.0a5 → studyfetch_sdk-0.1.0a7}/src/studyfetch_sdk/resources/v1/scenarios/submissions/__init__.py +0 -0
- {studyfetch_sdk-0.1.0a5 → studyfetch_sdk-0.1.0a7}/src/studyfetch_sdk/resources/v1/scenarios/submissions/submissions.py +0 -0
- {studyfetch_sdk-0.1.0a5 → studyfetch_sdk-0.1.0a7}/src/studyfetch_sdk/resources/v1/tests/__init__.py +0 -0
- {studyfetch_sdk-0.1.0a5 → studyfetch_sdk-0.1.0a7}/src/studyfetch_sdk/resources/v1/tests/component.py +0 -0
- {studyfetch_sdk-0.1.0a5 → studyfetch_sdk-0.1.0a7}/src/studyfetch_sdk/resources/v1/tests/tests.py +0 -0
- {studyfetch_sdk-0.1.0a5 → studyfetch_sdk-0.1.0a7}/src/studyfetch_sdk/resources/v1/upload/__init__.py +0 -0
- {studyfetch_sdk-0.1.0a5 → studyfetch_sdk-0.1.0a7}/src/studyfetch_sdk/resources/v1/upload/component.py +0 -0
- {studyfetch_sdk-0.1.0a5 → studyfetch_sdk-0.1.0a7}/src/studyfetch_sdk/resources/v1/upload/upload.py +0 -0
- {studyfetch_sdk-0.1.0a5 → studyfetch_sdk-0.1.0a7}/src/studyfetch_sdk/resources/v1/usage.py +0 -0
- {studyfetch_sdk-0.1.0a5 → studyfetch_sdk-0.1.0a7}/src/studyfetch_sdk/resources/v1/v1.py +48 -48
- {studyfetch_sdk-0.1.0a5/src/studyfetch_sdk/types/v1/upload → studyfetch_sdk-0.1.0a7/src/studyfetch_sdk/types}/__init__.py +0 -0
- {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
- {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
- {studyfetch_sdk-0.1.0a5 → studyfetch_sdk-0.1.0a7}/src/studyfetch_sdk/types/v1/chat/__init__.py +0 -0
- {studyfetch_sdk-0.1.0a5 → studyfetch_sdk-0.1.0a7}/src/studyfetch_sdk/types/v1/chat/session_retrieve_params.py +0 -0
- {studyfetch_sdk-0.1.0a5 → studyfetch_sdk-0.1.0a7}/src/studyfetch_sdk/types/v1/chat_send_message_params.py +0 -0
- {studyfetch_sdk-0.1.0a5 → studyfetch_sdk-0.1.0a7}/src/studyfetch_sdk/types/v1/chat_stream_params.py +0 -0
- {studyfetch_sdk-0.1.0a5 → studyfetch_sdk-0.1.0a7}/src/studyfetch_sdk/types/v1/component_create_params.py +0 -0
- {studyfetch_sdk-0.1.0a5 → studyfetch_sdk-0.1.0a7}/src/studyfetch_sdk/types/v1/component_list_params.py +0 -0
- {studyfetch_sdk-0.1.0a5 → studyfetch_sdk-0.1.0a7}/src/studyfetch_sdk/types/v1/component_update_params.py +0 -0
- {studyfetch_sdk-0.1.0a5 → studyfetch_sdk-0.1.0a7}/src/studyfetch_sdk/types/v1/embed/__init__.py +0 -0
- {studyfetch_sdk-0.1.0a5 → studyfetch_sdk-0.1.0a7}/src/studyfetch_sdk/types/v1/embed/component_interact_params.py +0 -0
- {studyfetch_sdk-0.1.0a5 → studyfetch_sdk-0.1.0a7}/src/studyfetch_sdk/types/v1/embed/component_retrieve_params.py +0 -0
- {studyfetch_sdk-0.1.0a5 → studyfetch_sdk-0.1.0a7}/src/studyfetch_sdk/types/v1/embed_get_theme_params.py +0 -0
- {studyfetch_sdk-0.1.0a5 → studyfetch_sdk-0.1.0a7}/src/studyfetch_sdk/types/v1/embed_verify_params.py +0 -0
- {studyfetch_sdk-0.1.0a5 → studyfetch_sdk-0.1.0a7}/src/studyfetch_sdk/types/v1/explainer_create_params.py +0 -0
- {studyfetch_sdk-0.1.0a5 → studyfetch_sdk-0.1.0a7}/src/studyfetch_sdk/types/v1/explainer_handle_webhook_params.py +0 -0
- {studyfetch_sdk-0.1.0a5 → studyfetch_sdk-0.1.0a7}/src/studyfetch_sdk/types/v1/flashcard_batch_process_params.py +0 -0
- {studyfetch_sdk-0.1.0a5 → studyfetch_sdk-0.1.0a7}/src/studyfetch_sdk/types/v1/flashcard_batch_process_response.py +0 -0
- {studyfetch_sdk-0.1.0a5 → studyfetch_sdk-0.1.0a7}/src/studyfetch_sdk/types/v1/flashcard_get_all_params.py +0 -0
- {studyfetch_sdk-0.1.0a5 → studyfetch_sdk-0.1.0a7}/src/studyfetch_sdk/types/v1/flashcard_get_due_params.py +0 -0
- {studyfetch_sdk-0.1.0a5 → studyfetch_sdk-0.1.0a7}/src/studyfetch_sdk/types/v1/flashcard_get_stats_params.py +0 -0
- {studyfetch_sdk-0.1.0a5 → studyfetch_sdk-0.1.0a7}/src/studyfetch_sdk/types/v1/flashcard_get_types_response.py +0 -0
- {studyfetch_sdk-0.1.0a5 → studyfetch_sdk-0.1.0a7}/src/studyfetch_sdk/types/v1/flashcard_rate_params.py +0 -0
- {studyfetch_sdk-0.1.0a5 → studyfetch_sdk-0.1.0a7}/src/studyfetch_sdk/types/v1/folder_create_params.py +0 -0
- {studyfetch_sdk-0.1.0a5 → studyfetch_sdk-0.1.0a7}/src/studyfetch_sdk/types/v1/folder_list_params.py +0 -0
- {studyfetch_sdk-0.1.0a5 → studyfetch_sdk-0.1.0a7}/src/studyfetch_sdk/types/v1/folder_update_params.py +0 -0
- {studyfetch_sdk-0.1.0a5 → studyfetch_sdk-0.1.0a7}/src/studyfetch_sdk/types/v1/material_create_params.py +0 -0
- {studyfetch_sdk-0.1.0a5 → studyfetch_sdk-0.1.0a7}/src/studyfetch_sdk/types/v1/material_get_download_url_params.py +0 -0
- {studyfetch_sdk-0.1.0a5 → studyfetch_sdk-0.1.0a7}/src/studyfetch_sdk/types/v1/material_list_params.py +0 -0
- {studyfetch_sdk-0.1.0a5 → studyfetch_sdk-0.1.0a7}/src/studyfetch_sdk/types/v1/materials/upload_upload_file_params.py +0 -0
- {studyfetch_sdk-0.1.0a5 → studyfetch_sdk-0.1.0a7}/src/studyfetch_sdk/types/v1/materials/upload_upload_from_url_params.py +0 -0
- {studyfetch_sdk-0.1.0a5 → studyfetch_sdk-0.1.0a7}/src/studyfetch_sdk/types/v1/scenario_create_params.py +0 -0
- {studyfetch_sdk-0.1.0a5 → studyfetch_sdk-0.1.0a7}/src/studyfetch_sdk/types/v1/scenario_update_params.py +0 -0
- {studyfetch_sdk-0.1.0a5 → studyfetch_sdk-0.1.0a7}/src/studyfetch_sdk/types/v1/scenarios/__init__.py +0 -0
- {studyfetch_sdk-0.1.0a5 → studyfetch_sdk-0.1.0a7}/src/studyfetch_sdk/types/v1/scenarios/component_update_params.py +0 -0
- {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
- {studyfetch_sdk-0.1.0a5 → studyfetch_sdk-0.1.0a7}/src/studyfetch_sdk/types/v1/test_create_params.py +0 -0
- {studyfetch_sdk-0.1.0a5 → studyfetch_sdk-0.1.0a7}/src/studyfetch_sdk/types/v1/test_retake_params.py +0 -0
- {studyfetch_sdk-0.1.0a5 → studyfetch_sdk-0.1.0a7}/src/studyfetch_sdk/types/v1/test_submit_answer_params.py +0 -0
- {studyfetch_sdk-0.1.0a5 → studyfetch_sdk-0.1.0a7}/src/studyfetch_sdk/types/v1/test_submit_params.py +0 -0
- {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
- {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
- {studyfetch_sdk-0.1.0a5 → studyfetch_sdk-0.1.0a7}/src/studyfetch_sdk/types/v1/usage_get_stats_params.py +0 -0
- {studyfetch_sdk-0.1.0a5 → studyfetch_sdk-0.1.0a7}/src/studyfetch_sdk/types/v1/usage_get_summary_params.py +0 -0
- {studyfetch_sdk-0.1.0a5 → studyfetch_sdk-0.1.0a7}/src/studyfetch_sdk/types/v1/usage_list_events_params.py +0 -0
- {studyfetch_sdk-0.1.0a5/tests/api_resources/v1/upload → studyfetch_sdk-0.1.0a7/tests}/__init__.py +0 -0
- {studyfetch_sdk-0.1.0a5/tests/api_resources/v1/tests → studyfetch_sdk-0.1.0a7/tests/api_resources}/__init__.py +0 -0
- {studyfetch_sdk-0.1.0a5/tests/api_resources/v1/scenarios/submissions → studyfetch_sdk-0.1.0a7/tests/api_resources/v1}/__init__.py +0 -0
- {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
- {studyfetch_sdk-0.1.0a5/tests/api_resources/v1/materials → studyfetch_sdk-0.1.0a7/tests/api_resources/v1/auth}/__init__.py +0 -0
- {studyfetch_sdk-0.1.0a5/tests/api_resources/v1/embed → studyfetch_sdk-0.1.0a7/tests/api_resources/v1/chat}/__init__.py +0 -0
- {studyfetch_sdk-0.1.0a5/tests/api_resources/v1/chat → studyfetch_sdk-0.1.0a7/tests/api_resources/v1/embed}/__init__.py +0 -0
- {studyfetch_sdk-0.1.0a5/tests/api_resources/v1/auth → studyfetch_sdk-0.1.0a7/tests/api_resources/v1/materials}/__init__.py +0 -0
- {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
- {studyfetch_sdk-0.1.0a5/tests/api_resources/v1 → studyfetch_sdk-0.1.0a7/tests/api_resources/v1/scenarios/submissions}/__init__.py +0 -0
- {studyfetch_sdk-0.1.0a5/tests/api_resources → studyfetch_sdk-0.1.0a7/tests/api_resources/v1/tests}/__init__.py +0 -0
- {studyfetch_sdk-0.1.0a5/tests → studyfetch_sdk-0.1.0a7/tests/api_resources/v1/upload}/__init__.py +0 -0
- {studyfetch_sdk-0.1.0a5 → studyfetch_sdk-0.1.0a7}/tests/conftest.py +0 -0
- {studyfetch_sdk-0.1.0a5 → studyfetch_sdk-0.1.0a7}/tests/sample_file.txt +0 -0
- {studyfetch_sdk-0.1.0a5 → studyfetch_sdk-0.1.0a7}/tests/test_client.py +0 -0
- {studyfetch_sdk-0.1.0a5 → studyfetch_sdk-0.1.0a7}/tests/test_deepcopy.py +0 -0
- {studyfetch_sdk-0.1.0a5 → studyfetch_sdk-0.1.0a7}/tests/test_extract_files.py +0 -0
- {studyfetch_sdk-0.1.0a5 → studyfetch_sdk-0.1.0a7}/tests/test_files.py +0 -0
- {studyfetch_sdk-0.1.0a5 → studyfetch_sdk-0.1.0a7}/tests/test_models.py +0 -0
- {studyfetch_sdk-0.1.0a5 → studyfetch_sdk-0.1.0a7}/tests/test_qs.py +0 -0
- {studyfetch_sdk-0.1.0a5 → studyfetch_sdk-0.1.0a7}/tests/test_required_args.py +0 -0
- {studyfetch_sdk-0.1.0a5 → studyfetch_sdk-0.1.0a7}/tests/test_response.py +0 -0
- {studyfetch_sdk-0.1.0a5 → studyfetch_sdk-0.1.0a7}/tests/test_streaming.py +0 -0
- {studyfetch_sdk-0.1.0a5 → studyfetch_sdk-0.1.0a7}/tests/test_transform.py +0 -0
- {studyfetch_sdk-0.1.0a5 → studyfetch_sdk-0.1.0a7}/tests/test_utils/test_proxy.py +0 -0
- {studyfetch_sdk-0.1.0a5 → studyfetch_sdk-0.1.0a7}/tests/test_utils/test_typing.py +0 -0
- {studyfetch_sdk-0.1.0a5 → studyfetch_sdk-0.1.0a7}/tests/utils.py +0 -0
@@ -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.
|
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
|
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
|
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/
|
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/
|
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">
|
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">
|
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/
|
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/
|
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/
|
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/
|
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/
|
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">
|
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">
|
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">
|
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/
|
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">
|
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
|
{studyfetch_sdk-0.1.0a5 → studyfetch_sdk-0.1.0a7}/src/studyfetch_sdk/resources/v1/auth/__init__.py
RENAMED
@@ -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",
|
{studyfetch_sdk-0.1.0a5 → studyfetch_sdk-0.1.0a7}/src/studyfetch_sdk/resources/v1/auth/auth.py
RENAMED
@@ -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)
|
{studyfetch_sdk-0.1.0a5 → studyfetch_sdk-0.1.0a7}/src/studyfetch_sdk/resources/v1/chat/chat.py
RENAMED
@@ -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,
|
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
|
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},
|
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
|
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.
|
471
|
-
chat.
|
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.
|
500
|
-
chat.
|
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.
|
529
|
-
chat.
|
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.
|
558
|
-
chat.
|
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,
|