studyfetch-sdk 0.1.0a10__tar.gz → 0.1.0a12__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.0a12/.release-please-manifest.json +3 -0
- {studyfetch_sdk-0.1.0a10 → studyfetch_sdk-0.1.0a12}/CHANGELOG.md +16 -0
- {studyfetch_sdk-0.1.0a10 → studyfetch_sdk-0.1.0a12}/PKG-INFO +31 -47
- {studyfetch_sdk-0.1.0a10 → studyfetch_sdk-0.1.0a12}/README.md +30 -46
- {studyfetch_sdk-0.1.0a10 → studyfetch_sdk-0.1.0a12}/api.md +19 -1
- {studyfetch_sdk-0.1.0a10 → studyfetch_sdk-0.1.0a12}/pyproject.toml +1 -1
- {studyfetch_sdk-0.1.0a10 → studyfetch_sdk-0.1.0a12}/src/studyfetch_sdk/_version.py +1 -1
- {studyfetch_sdk-0.1.0a10 → studyfetch_sdk-0.1.0a12}/src/studyfetch_sdk/resources/v1/__init__.py +14 -0
- studyfetch_sdk-0.1.0a12/src/studyfetch_sdk/resources/v1/assignment_grader.py +347 -0
- {studyfetch_sdk-0.1.0a10 → studyfetch_sdk-0.1.0a12}/src/studyfetch_sdk/resources/v1/scenarios/component.py +8 -16
- {studyfetch_sdk-0.1.0a10 → studyfetch_sdk-0.1.0a12}/src/studyfetch_sdk/resources/v1/scenarios/scenarios.py +0 -8
- {studyfetch_sdk-0.1.0a10 → studyfetch_sdk-0.1.0a12}/src/studyfetch_sdk/resources/v1/usage.py +2 -0
- {studyfetch_sdk-0.1.0a10 → studyfetch_sdk-0.1.0a12}/src/studyfetch_sdk/resources/v1/v1.py +32 -0
- {studyfetch_sdk-0.1.0a10 → studyfetch_sdk-0.1.0a12}/src/studyfetch_sdk/types/v1/__init__.py +4 -0
- studyfetch_sdk-0.1.0a12/src/studyfetch_sdk/types/v1/assignment_grader_create_params.py +46 -0
- studyfetch_sdk-0.1.0a12/src/studyfetch_sdk/types/v1/assignment_grader_create_response.py +26 -0
- studyfetch_sdk-0.1.0a12/src/studyfetch_sdk/types/v1/assignment_grader_get_all_response.py +31 -0
- studyfetch_sdk-0.1.0a12/src/studyfetch_sdk/types/v1/assignment_grader_get_by_id_response.py +26 -0
- {studyfetch_sdk-0.1.0a10 → studyfetch_sdk-0.1.0a12}/src/studyfetch_sdk/types/v1/scenario_update_params.py +0 -3
- {studyfetch_sdk-0.1.0a10 → studyfetch_sdk-0.1.0a12}/src/studyfetch_sdk/types/v1/scenarios/component_update_params.py +0 -3
- {studyfetch_sdk-0.1.0a10 → studyfetch_sdk-0.1.0a12}/src/studyfetch_sdk/types/v1/usage_list_events_params.py +1 -0
- {studyfetch_sdk-0.1.0a10 → studyfetch_sdk-0.1.0a12}/tests/api_resources/v1/scenarios/test_component.py +12 -22
- studyfetch_sdk-0.1.0a12/tests/api_resources/v1/test_assignment_grader.py +326 -0
- {studyfetch_sdk-0.1.0a10 → studyfetch_sdk-0.1.0a12}/tests/api_resources/v1/test_scenarios.py +0 -10
- {studyfetch_sdk-0.1.0a10 → studyfetch_sdk-0.1.0a12}/tests/test_client.py +30 -46
- studyfetch_sdk-0.1.0a10/.release-please-manifest.json +0 -3
- {studyfetch_sdk-0.1.0a10 → studyfetch_sdk-0.1.0a12}/.gitignore +0 -0
- {studyfetch_sdk-0.1.0a10 → studyfetch_sdk-0.1.0a12}/CONTRIBUTING.md +0 -0
- {studyfetch_sdk-0.1.0a10 → studyfetch_sdk-0.1.0a12}/LICENSE +0 -0
- {studyfetch_sdk-0.1.0a10 → studyfetch_sdk-0.1.0a12}/SECURITY.md +0 -0
- {studyfetch_sdk-0.1.0a10 → studyfetch_sdk-0.1.0a12}/bin/check-release-environment +0 -0
- {studyfetch_sdk-0.1.0a10 → studyfetch_sdk-0.1.0a12}/bin/publish-pypi +0 -0
- {studyfetch_sdk-0.1.0a10 → studyfetch_sdk-0.1.0a12}/examples/.keep +0 -0
- {studyfetch_sdk-0.1.0a10 → studyfetch_sdk-0.1.0a12}/mypy.ini +0 -0
- {studyfetch_sdk-0.1.0a10 → studyfetch_sdk-0.1.0a12}/noxfile.py +0 -0
- {studyfetch_sdk-0.1.0a10 → studyfetch_sdk-0.1.0a12}/release-please-config.json +0 -0
- {studyfetch_sdk-0.1.0a10 → studyfetch_sdk-0.1.0a12}/requirements-dev.lock +0 -0
- {studyfetch_sdk-0.1.0a10 → studyfetch_sdk-0.1.0a12}/requirements.lock +0 -0
- {studyfetch_sdk-0.1.0a10 → studyfetch_sdk-0.1.0a12}/src/studyfetch_sdk/__init__.py +0 -0
- {studyfetch_sdk-0.1.0a10 → studyfetch_sdk-0.1.0a12}/src/studyfetch_sdk/_base_client.py +0 -0
- {studyfetch_sdk-0.1.0a10 → studyfetch_sdk-0.1.0a12}/src/studyfetch_sdk/_client.py +0 -0
- {studyfetch_sdk-0.1.0a10 → studyfetch_sdk-0.1.0a12}/src/studyfetch_sdk/_compat.py +0 -0
- {studyfetch_sdk-0.1.0a10 → studyfetch_sdk-0.1.0a12}/src/studyfetch_sdk/_constants.py +0 -0
- {studyfetch_sdk-0.1.0a10 → studyfetch_sdk-0.1.0a12}/src/studyfetch_sdk/_exceptions.py +0 -0
- {studyfetch_sdk-0.1.0a10 → studyfetch_sdk-0.1.0a12}/src/studyfetch_sdk/_files.py +0 -0
- {studyfetch_sdk-0.1.0a10 → studyfetch_sdk-0.1.0a12}/src/studyfetch_sdk/_models.py +0 -0
- {studyfetch_sdk-0.1.0a10 → studyfetch_sdk-0.1.0a12}/src/studyfetch_sdk/_qs.py +0 -0
- {studyfetch_sdk-0.1.0a10 → studyfetch_sdk-0.1.0a12}/src/studyfetch_sdk/_resource.py +0 -0
- {studyfetch_sdk-0.1.0a10 → studyfetch_sdk-0.1.0a12}/src/studyfetch_sdk/_response.py +0 -0
- {studyfetch_sdk-0.1.0a10 → studyfetch_sdk-0.1.0a12}/src/studyfetch_sdk/_streaming.py +0 -0
- {studyfetch_sdk-0.1.0a10 → studyfetch_sdk-0.1.0a12}/src/studyfetch_sdk/_types.py +0 -0
- {studyfetch_sdk-0.1.0a10 → studyfetch_sdk-0.1.0a12}/src/studyfetch_sdk/_utils/__init__.py +0 -0
- {studyfetch_sdk-0.1.0a10 → studyfetch_sdk-0.1.0a12}/src/studyfetch_sdk/_utils/_logs.py +0 -0
- {studyfetch_sdk-0.1.0a10 → studyfetch_sdk-0.1.0a12}/src/studyfetch_sdk/_utils/_proxy.py +0 -0
- {studyfetch_sdk-0.1.0a10 → studyfetch_sdk-0.1.0a12}/src/studyfetch_sdk/_utils/_reflection.py +0 -0
- {studyfetch_sdk-0.1.0a10 → studyfetch_sdk-0.1.0a12}/src/studyfetch_sdk/_utils/_resources_proxy.py +0 -0
- {studyfetch_sdk-0.1.0a10 → studyfetch_sdk-0.1.0a12}/src/studyfetch_sdk/_utils/_streams.py +0 -0
- {studyfetch_sdk-0.1.0a10 → studyfetch_sdk-0.1.0a12}/src/studyfetch_sdk/_utils/_sync.py +0 -0
- {studyfetch_sdk-0.1.0a10 → studyfetch_sdk-0.1.0a12}/src/studyfetch_sdk/_utils/_transform.py +0 -0
- {studyfetch_sdk-0.1.0a10 → studyfetch_sdk-0.1.0a12}/src/studyfetch_sdk/_utils/_typing.py +0 -0
- {studyfetch_sdk-0.1.0a10 → studyfetch_sdk-0.1.0a12}/src/studyfetch_sdk/_utils/_utils.py +0 -0
- {studyfetch_sdk-0.1.0a10 → studyfetch_sdk-0.1.0a12}/src/studyfetch_sdk/lib/.keep +0 -0
- {studyfetch_sdk-0.1.0a10 → studyfetch_sdk-0.1.0a12}/src/studyfetch_sdk/py.typed +0 -0
- {studyfetch_sdk-0.1.0a10 → studyfetch_sdk-0.1.0a12}/src/studyfetch_sdk/resources/__init__.py +0 -0
- {studyfetch_sdk-0.1.0a10 → studyfetch_sdk-0.1.0a12}/src/studyfetch_sdk/resources/v1/audio_recaps/__init__.py +0 -0
- {studyfetch_sdk-0.1.0a10 → studyfetch_sdk-0.1.0a12}/src/studyfetch_sdk/resources/v1/audio_recaps/audio_recaps.py +0 -0
- {studyfetch_sdk-0.1.0a10 → studyfetch_sdk-0.1.0a12}/src/studyfetch_sdk/resources/v1/audio_recaps/sections.py +0 -0
- {studyfetch_sdk-0.1.0a10 → studyfetch_sdk-0.1.0a12}/src/studyfetch_sdk/resources/v1/chat/__init__.py +0 -0
- {studyfetch_sdk-0.1.0a10 → studyfetch_sdk-0.1.0a12}/src/studyfetch_sdk/resources/v1/chat/chat.py +0 -0
- {studyfetch_sdk-0.1.0a10 → studyfetch_sdk-0.1.0a12}/src/studyfetch_sdk/resources/v1/chat/sessions.py +0 -0
- {studyfetch_sdk-0.1.0a10 → studyfetch_sdk-0.1.0a12}/src/studyfetch_sdk/resources/v1/chat/test.py +0 -0
- {studyfetch_sdk-0.1.0a10 → studyfetch_sdk-0.1.0a12}/src/studyfetch_sdk/resources/v1/components.py +0 -0
- {studyfetch_sdk-0.1.0a10 → studyfetch_sdk-0.1.0a12}/src/studyfetch_sdk/resources/v1/embed/__init__.py +0 -0
- {studyfetch_sdk-0.1.0a10 → studyfetch_sdk-0.1.0a12}/src/studyfetch_sdk/resources/v1/embed/component.py +0 -0
- {studyfetch_sdk-0.1.0a10 → studyfetch_sdk-0.1.0a12}/src/studyfetch_sdk/resources/v1/embed/embed.py +0 -0
- {studyfetch_sdk-0.1.0a10 → studyfetch_sdk-0.1.0a12}/src/studyfetch_sdk/resources/v1/explainers.py +0 -0
- {studyfetch_sdk-0.1.0a10 → studyfetch_sdk-0.1.0a12}/src/studyfetch_sdk/resources/v1/flashcards.py +0 -0
- {studyfetch_sdk-0.1.0a10 → studyfetch_sdk-0.1.0a12}/src/studyfetch_sdk/resources/v1/folders.py +0 -0
- {studyfetch_sdk-0.1.0a10 → studyfetch_sdk-0.1.0a12}/src/studyfetch_sdk/resources/v1/materials/__init__.py +0 -0
- {studyfetch_sdk-0.1.0a10 → studyfetch_sdk-0.1.0a12}/src/studyfetch_sdk/resources/v1/materials/bulk.py +0 -0
- {studyfetch_sdk-0.1.0a10 → studyfetch_sdk-0.1.0a12}/src/studyfetch_sdk/resources/v1/materials/materials.py +0 -0
- {studyfetch_sdk-0.1.0a10 → studyfetch_sdk-0.1.0a12}/src/studyfetch_sdk/resources/v1/materials/test.py +0 -0
- {studyfetch_sdk-0.1.0a10 → studyfetch_sdk-0.1.0a12}/src/studyfetch_sdk/resources/v1/materials/upload.py +0 -0
- {studyfetch_sdk-0.1.0a10 → studyfetch_sdk-0.1.0a12}/src/studyfetch_sdk/resources/v1/scenarios/__init__.py +0 -0
- {studyfetch_sdk-0.1.0a10 → studyfetch_sdk-0.1.0a12}/src/studyfetch_sdk/resources/v1/scenarios/sessions.py +0 -0
- {studyfetch_sdk-0.1.0a10 → studyfetch_sdk-0.1.0a12}/src/studyfetch_sdk/resources/v1/scenarios/submissions/__init__.py +0 -0
- {studyfetch_sdk-0.1.0a10 → studyfetch_sdk-0.1.0a12}/src/studyfetch_sdk/resources/v1/scenarios/submissions/submissions.py +0 -0
- {studyfetch_sdk-0.1.0a10 → studyfetch_sdk-0.1.0a12}/src/studyfetch_sdk/resources/v1/scenarios/submissions/user.py +0 -0
- {studyfetch_sdk-0.1.0a10 → studyfetch_sdk-0.1.0a12}/src/studyfetch_sdk/resources/v1/tests/__init__.py +0 -0
- {studyfetch_sdk-0.1.0a10 → studyfetch_sdk-0.1.0a12}/src/studyfetch_sdk/resources/v1/tests/component.py +0 -0
- {studyfetch_sdk-0.1.0a10 → studyfetch_sdk-0.1.0a12}/src/studyfetch_sdk/resources/v1/tests/tests.py +0 -0
- {studyfetch_sdk-0.1.0a10 → studyfetch_sdk-0.1.0a12}/src/studyfetch_sdk/resources/v1/upload/__init__.py +0 -0
- {studyfetch_sdk-0.1.0a10 → studyfetch_sdk-0.1.0a12}/src/studyfetch_sdk/resources/v1/upload/component.py +0 -0
- {studyfetch_sdk-0.1.0a10 → studyfetch_sdk-0.1.0a12}/src/studyfetch_sdk/resources/v1/upload/upload.py +0 -0
- {studyfetch_sdk-0.1.0a10 → studyfetch_sdk-0.1.0a12}/src/studyfetch_sdk/types/__init__.py +0 -0
- {studyfetch_sdk-0.1.0a10 → studyfetch_sdk-0.1.0a12}/src/studyfetch_sdk/types/v1/audio_recaps/__init__.py +0 -0
- {studyfetch_sdk-0.1.0a10 → studyfetch_sdk-0.1.0a12}/src/studyfetch_sdk/types/v1/chat/__init__.py +0 -0
- {studyfetch_sdk-0.1.0a10 → studyfetch_sdk-0.1.0a12}/src/studyfetch_sdk/types/v1/chat/session_retrieve_params.py +0 -0
- {studyfetch_sdk-0.1.0a10 → studyfetch_sdk-0.1.0a12}/src/studyfetch_sdk/types/v1/chat_get_session_params.py +0 -0
- {studyfetch_sdk-0.1.0a10 → studyfetch_sdk-0.1.0a12}/src/studyfetch_sdk/types/v1/chat_send_message_params.py +0 -0
- {studyfetch_sdk-0.1.0a10 → studyfetch_sdk-0.1.0a12}/src/studyfetch_sdk/types/v1/chat_stream_params.py +0 -0
- {studyfetch_sdk-0.1.0a10 → studyfetch_sdk-0.1.0a12}/src/studyfetch_sdk/types/v1/component.py +0 -0
- {studyfetch_sdk-0.1.0a10 → studyfetch_sdk-0.1.0a12}/src/studyfetch_sdk/types/v1/component_create_params.py +0 -0
- {studyfetch_sdk-0.1.0a10 → studyfetch_sdk-0.1.0a12}/src/studyfetch_sdk/types/v1/component_generate_embed_params.py +0 -0
- {studyfetch_sdk-0.1.0a10 → studyfetch_sdk-0.1.0a12}/src/studyfetch_sdk/types/v1/component_generate_embed_response.py +0 -0
- {studyfetch_sdk-0.1.0a10 → studyfetch_sdk-0.1.0a12}/src/studyfetch_sdk/types/v1/component_list_params.py +0 -0
- {studyfetch_sdk-0.1.0a10 → studyfetch_sdk-0.1.0a12}/src/studyfetch_sdk/types/v1/component_list_response.py +0 -0
- {studyfetch_sdk-0.1.0a10 → studyfetch_sdk-0.1.0a12}/src/studyfetch_sdk/types/v1/component_update_params.py +0 -0
- {studyfetch_sdk-0.1.0a10 → studyfetch_sdk-0.1.0a12}/src/studyfetch_sdk/types/v1/embed/__init__.py +0 -0
- {studyfetch_sdk-0.1.0a10 → studyfetch_sdk-0.1.0a12}/src/studyfetch_sdk/types/v1/embed/component_interact_params.py +0 -0
- {studyfetch_sdk-0.1.0a10 → studyfetch_sdk-0.1.0a12}/src/studyfetch_sdk/types/v1/embed/component_retrieve_params.py +0 -0
- {studyfetch_sdk-0.1.0a10 → studyfetch_sdk-0.1.0a12}/src/studyfetch_sdk/types/v1/embed_get_theme_params.py +0 -0
- {studyfetch_sdk-0.1.0a10 → studyfetch_sdk-0.1.0a12}/src/studyfetch_sdk/types/v1/embed_verify_params.py +0 -0
- {studyfetch_sdk-0.1.0a10 → studyfetch_sdk-0.1.0a12}/src/studyfetch_sdk/types/v1/explainer_create_params.py +0 -0
- {studyfetch_sdk-0.1.0a10 → studyfetch_sdk-0.1.0a12}/src/studyfetch_sdk/types/v1/explainer_handle_webhook_params.py +0 -0
- {studyfetch_sdk-0.1.0a10 → studyfetch_sdk-0.1.0a12}/src/studyfetch_sdk/types/v1/flashcard_batch_process_params.py +0 -0
- {studyfetch_sdk-0.1.0a10 → studyfetch_sdk-0.1.0a12}/src/studyfetch_sdk/types/v1/flashcard_batch_process_response.py +0 -0
- {studyfetch_sdk-0.1.0a10 → studyfetch_sdk-0.1.0a12}/src/studyfetch_sdk/types/v1/flashcard_get_algorithm_response.py +0 -0
- {studyfetch_sdk-0.1.0a10 → studyfetch_sdk-0.1.0a12}/src/studyfetch_sdk/types/v1/flashcard_get_all_params.py +0 -0
- {studyfetch_sdk-0.1.0a10 → studyfetch_sdk-0.1.0a12}/src/studyfetch_sdk/types/v1/flashcard_get_due_params.py +0 -0
- {studyfetch_sdk-0.1.0a10 → studyfetch_sdk-0.1.0a12}/src/studyfetch_sdk/types/v1/flashcard_get_stats_params.py +0 -0
- {studyfetch_sdk-0.1.0a10 → studyfetch_sdk-0.1.0a12}/src/studyfetch_sdk/types/v1/flashcard_get_types_response.py +0 -0
- {studyfetch_sdk-0.1.0a10 → studyfetch_sdk-0.1.0a12}/src/studyfetch_sdk/types/v1/flashcard_rate_params.py +0 -0
- {studyfetch_sdk-0.1.0a10 → studyfetch_sdk-0.1.0a12}/src/studyfetch_sdk/types/v1/folder_create_params.py +0 -0
- {studyfetch_sdk-0.1.0a10 → studyfetch_sdk-0.1.0a12}/src/studyfetch_sdk/types/v1/folder_list_params.py +0 -0
- {studyfetch_sdk-0.1.0a10 → studyfetch_sdk-0.1.0a12}/src/studyfetch_sdk/types/v1/folder_update_params.py +0 -0
- {studyfetch_sdk-0.1.0a10 → studyfetch_sdk-0.1.0a12}/src/studyfetch_sdk/types/v1/material.py +0 -0
- {studyfetch_sdk-0.1.0a10 → studyfetch_sdk-0.1.0a12}/src/studyfetch_sdk/types/v1/material_create_params.py +0 -0
- {studyfetch_sdk-0.1.0a10 → studyfetch_sdk-0.1.0a12}/src/studyfetch_sdk/types/v1/material_get_download_url_params.py +0 -0
- {studyfetch_sdk-0.1.0a10 → studyfetch_sdk-0.1.0a12}/src/studyfetch_sdk/types/v1/material_list_params.py +0 -0
- {studyfetch_sdk-0.1.0a10 → studyfetch_sdk-0.1.0a12}/src/studyfetch_sdk/types/v1/material_list_response.py +0 -0
- {studyfetch_sdk-0.1.0a10 → studyfetch_sdk-0.1.0a12}/src/studyfetch_sdk/types/v1/materials/__init__.py +0 -0
- {studyfetch_sdk-0.1.0a10 → studyfetch_sdk-0.1.0a12}/src/studyfetch_sdk/types/v1/materials/upload_upload_file_params.py +0 -0
- {studyfetch_sdk-0.1.0a10 → studyfetch_sdk-0.1.0a12}/src/studyfetch_sdk/types/v1/materials/upload_upload_from_url_params.py +0 -0
- {studyfetch_sdk-0.1.0a10 → studyfetch_sdk-0.1.0a12}/src/studyfetch_sdk/types/v1/scenario_create_params.py +0 -0
- {studyfetch_sdk-0.1.0a10 → studyfetch_sdk-0.1.0a12}/src/studyfetch_sdk/types/v1/scenario_submit_answer_params.py +0 -0
- {studyfetch_sdk-0.1.0a10 → studyfetch_sdk-0.1.0a12}/src/studyfetch_sdk/types/v1/scenarios/__init__.py +0 -0
- {studyfetch_sdk-0.1.0a10 → studyfetch_sdk-0.1.0a12}/src/studyfetch_sdk/types/v1/scenarios/submissions/__init__.py +0 -0
- {studyfetch_sdk-0.1.0a10 → studyfetch_sdk-0.1.0a12}/src/studyfetch_sdk/types/v1/test_create_params.py +0 -0
- {studyfetch_sdk-0.1.0a10 → studyfetch_sdk-0.1.0a12}/src/studyfetch_sdk/types/v1/test_retake_params.py +0 -0
- {studyfetch_sdk-0.1.0a10 → studyfetch_sdk-0.1.0a12}/src/studyfetch_sdk/types/v1/test_submit_answer_params.py +0 -0
- {studyfetch_sdk-0.1.0a10 → studyfetch_sdk-0.1.0a12}/src/studyfetch_sdk/types/v1/test_submit_params.py +0 -0
- {studyfetch_sdk-0.1.0a10 → studyfetch_sdk-0.1.0a12}/src/studyfetch_sdk/types/v1/tests/__init__.py +0 -0
- {studyfetch_sdk-0.1.0a10 → studyfetch_sdk-0.1.0a12}/src/studyfetch_sdk/types/v1/upload/__init__.py +0 -0
- {studyfetch_sdk-0.1.0a10 → studyfetch_sdk-0.1.0a12}/src/studyfetch_sdk/types/v1/usage_get_stats_params.py +0 -0
- {studyfetch_sdk-0.1.0a10 → studyfetch_sdk-0.1.0a12}/src/studyfetch_sdk/types/v1/usage_get_summary_params.py +0 -0
- {studyfetch_sdk-0.1.0a10 → studyfetch_sdk-0.1.0a12}/tests/__init__.py +0 -0
- {studyfetch_sdk-0.1.0a10 → studyfetch_sdk-0.1.0a12}/tests/api_resources/__init__.py +0 -0
- {studyfetch_sdk-0.1.0a10 → studyfetch_sdk-0.1.0a12}/tests/api_resources/v1/__init__.py +0 -0
- {studyfetch_sdk-0.1.0a10 → studyfetch_sdk-0.1.0a12}/tests/api_resources/v1/audio_recaps/__init__.py +0 -0
- {studyfetch_sdk-0.1.0a10 → studyfetch_sdk-0.1.0a12}/tests/api_resources/v1/audio_recaps/test_sections.py +0 -0
- {studyfetch_sdk-0.1.0a10 → studyfetch_sdk-0.1.0a12}/tests/api_resources/v1/chat/__init__.py +0 -0
- {studyfetch_sdk-0.1.0a10 → studyfetch_sdk-0.1.0a12}/tests/api_resources/v1/chat/test_sessions.py +0 -0
- {studyfetch_sdk-0.1.0a10 → studyfetch_sdk-0.1.0a12}/tests/api_resources/v1/chat/test_test.py +0 -0
- {studyfetch_sdk-0.1.0a10 → studyfetch_sdk-0.1.0a12}/tests/api_resources/v1/embed/__init__.py +0 -0
- {studyfetch_sdk-0.1.0a10 → studyfetch_sdk-0.1.0a12}/tests/api_resources/v1/embed/test_component.py +0 -0
- {studyfetch_sdk-0.1.0a10 → studyfetch_sdk-0.1.0a12}/tests/api_resources/v1/materials/__init__.py +0 -0
- {studyfetch_sdk-0.1.0a10 → studyfetch_sdk-0.1.0a12}/tests/api_resources/v1/materials/test_bulk.py +0 -0
- {studyfetch_sdk-0.1.0a10 → studyfetch_sdk-0.1.0a12}/tests/api_resources/v1/materials/test_test.py +0 -0
- {studyfetch_sdk-0.1.0a10 → studyfetch_sdk-0.1.0a12}/tests/api_resources/v1/materials/test_upload.py +0 -0
- {studyfetch_sdk-0.1.0a10 → studyfetch_sdk-0.1.0a12}/tests/api_resources/v1/scenarios/__init__.py +0 -0
- {studyfetch_sdk-0.1.0a10 → studyfetch_sdk-0.1.0a12}/tests/api_resources/v1/scenarios/submissions/__init__.py +0 -0
- {studyfetch_sdk-0.1.0a10 → studyfetch_sdk-0.1.0a12}/tests/api_resources/v1/scenarios/submissions/test_user.py +0 -0
- {studyfetch_sdk-0.1.0a10 → studyfetch_sdk-0.1.0a12}/tests/api_resources/v1/scenarios/test_sessions.py +0 -0
- {studyfetch_sdk-0.1.0a10 → studyfetch_sdk-0.1.0a12}/tests/api_resources/v1/test_audio_recaps.py +0 -0
- {studyfetch_sdk-0.1.0a10 → studyfetch_sdk-0.1.0a12}/tests/api_resources/v1/test_chat.py +0 -0
- {studyfetch_sdk-0.1.0a10 → studyfetch_sdk-0.1.0a12}/tests/api_resources/v1/test_components.py +0 -0
- {studyfetch_sdk-0.1.0a10 → studyfetch_sdk-0.1.0a12}/tests/api_resources/v1/test_embed.py +0 -0
- {studyfetch_sdk-0.1.0a10 → studyfetch_sdk-0.1.0a12}/tests/api_resources/v1/test_explainers.py +0 -0
- {studyfetch_sdk-0.1.0a10 → studyfetch_sdk-0.1.0a12}/tests/api_resources/v1/test_flashcards.py +0 -0
- {studyfetch_sdk-0.1.0a10 → studyfetch_sdk-0.1.0a12}/tests/api_resources/v1/test_folders.py +0 -0
- {studyfetch_sdk-0.1.0a10 → studyfetch_sdk-0.1.0a12}/tests/api_resources/v1/test_materials.py +0 -0
- {studyfetch_sdk-0.1.0a10 → studyfetch_sdk-0.1.0a12}/tests/api_resources/v1/test_tests.py +0 -0
- {studyfetch_sdk-0.1.0a10 → studyfetch_sdk-0.1.0a12}/tests/api_resources/v1/test_usage.py +0 -0
- {studyfetch_sdk-0.1.0a10 → studyfetch_sdk-0.1.0a12}/tests/api_resources/v1/tests/__init__.py +0 -0
- {studyfetch_sdk-0.1.0a10 → studyfetch_sdk-0.1.0a12}/tests/api_resources/v1/tests/test_component.py +0 -0
- {studyfetch_sdk-0.1.0a10 → studyfetch_sdk-0.1.0a12}/tests/api_resources/v1/upload/__init__.py +0 -0
- {studyfetch_sdk-0.1.0a10 → studyfetch_sdk-0.1.0a12}/tests/api_resources/v1/upload/test_component.py +0 -0
- {studyfetch_sdk-0.1.0a10 → studyfetch_sdk-0.1.0a12}/tests/conftest.py +0 -0
- {studyfetch_sdk-0.1.0a10 → studyfetch_sdk-0.1.0a12}/tests/sample_file.txt +0 -0
- {studyfetch_sdk-0.1.0a10 → studyfetch_sdk-0.1.0a12}/tests/test_deepcopy.py +0 -0
- {studyfetch_sdk-0.1.0a10 → studyfetch_sdk-0.1.0a12}/tests/test_extract_files.py +0 -0
- {studyfetch_sdk-0.1.0a10 → studyfetch_sdk-0.1.0a12}/tests/test_files.py +0 -0
- {studyfetch_sdk-0.1.0a10 → studyfetch_sdk-0.1.0a12}/tests/test_models.py +0 -0
- {studyfetch_sdk-0.1.0a10 → studyfetch_sdk-0.1.0a12}/tests/test_qs.py +0 -0
- {studyfetch_sdk-0.1.0a10 → studyfetch_sdk-0.1.0a12}/tests/test_required_args.py +0 -0
- {studyfetch_sdk-0.1.0a10 → studyfetch_sdk-0.1.0a12}/tests/test_response.py +0 -0
- {studyfetch_sdk-0.1.0a10 → studyfetch_sdk-0.1.0a12}/tests/test_streaming.py +0 -0
- {studyfetch_sdk-0.1.0a10 → studyfetch_sdk-0.1.0a12}/tests/test_transform.py +0 -0
- {studyfetch_sdk-0.1.0a10 → studyfetch_sdk-0.1.0a12}/tests/test_utils/test_proxy.py +0 -0
- {studyfetch_sdk-0.1.0a10 → studyfetch_sdk-0.1.0a12}/tests/test_utils/test_typing.py +0 -0
- {studyfetch_sdk-0.1.0a10 → studyfetch_sdk-0.1.0a12}/tests/utils.py +0 -0
@@ -1,5 +1,21 @@
|
|
1
1
|
# Changelog
|
2
2
|
|
3
|
+
## 0.1.0-alpha.12 (2025-07-20)
|
4
|
+
|
5
|
+
Full Changelog: [v0.1.0-alpha.11...v0.1.0-alpha.12](https://github.com/GoStudyFetchGo/studyfetch-sdk-python/compare/v0.1.0-alpha.11...v0.1.0-alpha.12)
|
6
|
+
|
7
|
+
### Features
|
8
|
+
|
9
|
+
* **api:** manual updates ([0dd1e78](https://github.com/GoStudyFetchGo/studyfetch-sdk-python/commit/0dd1e7861977e5ca7ae0cf8114516cd6031891e3))
|
10
|
+
|
11
|
+
## 0.1.0-alpha.11 (2025-07-20)
|
12
|
+
|
13
|
+
Full Changelog: [v0.1.0-alpha.10...v0.1.0-alpha.11](https://github.com/GoStudyFetchGo/studyfetch-sdk-python/compare/v0.1.0-alpha.10...v0.1.0-alpha.11)
|
14
|
+
|
15
|
+
### Features
|
16
|
+
|
17
|
+
* **api:** api update ([4b90304](https://github.com/GoStudyFetchGo/studyfetch-sdk-python/commit/4b90304c6ec3cc38305f3cd6bbccefc990d32c86))
|
18
|
+
|
3
19
|
## 0.1.0-alpha.10 (2025-07-20)
|
4
20
|
|
5
21
|
Full Changelog: [v0.1.0-alpha.9...v0.1.0-alpha.10](https://github.com/GoStudyFetchGo/studyfetch-sdk-python/compare/v0.1.0-alpha.9...v0.1.0-alpha.10)
|
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.3
|
2
2
|
Name: studyfetch_sdk
|
3
|
-
Version: 0.1.
|
3
|
+
Version: 0.1.0a12
|
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
|
@@ -67,13 +67,11 @@ client = StudyfetchSDK(
|
|
67
67
|
api_key=os.environ.get("STUDYFETCH_SDK_API_KEY"), # This is the default and can be omitted
|
68
68
|
)
|
69
69
|
|
70
|
-
|
71
|
-
|
72
|
-
name="
|
73
|
-
origin="api",
|
74
|
-
type="flashcards",
|
70
|
+
material = client.v1.materials.create(
|
71
|
+
content={"type": "text"},
|
72
|
+
name="Chapter 1 - Introduction",
|
75
73
|
)
|
76
|
-
print(
|
74
|
+
print(material._id)
|
77
75
|
```
|
78
76
|
|
79
77
|
While you can provide an `api_key` keyword argument,
|
@@ -96,13 +94,11 @@ client = AsyncStudyfetchSDK(
|
|
96
94
|
|
97
95
|
|
98
96
|
async def main() -> None:
|
99
|
-
|
100
|
-
|
101
|
-
name="
|
102
|
-
origin="api",
|
103
|
-
type="flashcards",
|
97
|
+
material = await client.v1.materials.create(
|
98
|
+
content={"type": "text"},
|
99
|
+
name="Chapter 1 - Introduction",
|
104
100
|
)
|
105
|
-
print(
|
101
|
+
print(material._id)
|
106
102
|
|
107
103
|
|
108
104
|
asyncio.run(main())
|
@@ -134,13 +130,11 @@ async def main() -> None:
|
|
134
130
|
api_key="My API Key",
|
135
131
|
http_client=DefaultAioHttpClient(),
|
136
132
|
) as client:
|
137
|
-
|
138
|
-
|
139
|
-
name="
|
140
|
-
origin="api",
|
141
|
-
type="flashcards",
|
133
|
+
material = await client.v1.materials.create(
|
134
|
+
content={"type": "text"},
|
135
|
+
name="Chapter 1 - Introduction",
|
142
136
|
)
|
143
|
-
print(
|
137
|
+
print(material._id)
|
144
138
|
|
145
139
|
|
146
140
|
asyncio.run(main())
|
@@ -205,11 +199,9 @@ from studyfetch_sdk import StudyfetchSDK
|
|
205
199
|
client = StudyfetchSDK()
|
206
200
|
|
207
201
|
try:
|
208
|
-
client.v1.
|
209
|
-
|
210
|
-
name="
|
211
|
-
origin="api",
|
212
|
-
type="flashcards",
|
202
|
+
client.v1.materials.create(
|
203
|
+
content={"type": "text"},
|
204
|
+
name="Chapter 1 - Introduction",
|
213
205
|
)
|
214
206
|
except studyfetch_sdk.APIConnectionError as e:
|
215
207
|
print("The server could not be reached")
|
@@ -253,11 +245,9 @@ client = StudyfetchSDK(
|
|
253
245
|
)
|
254
246
|
|
255
247
|
# Or, configure per-request:
|
256
|
-
client.with_options(max_retries=5).v1.
|
257
|
-
|
258
|
-
name="
|
259
|
-
origin="api",
|
260
|
-
type="flashcards",
|
248
|
+
client.with_options(max_retries=5).v1.materials.create(
|
249
|
+
content={"type": "text"},
|
250
|
+
name="Chapter 1 - Introduction",
|
261
251
|
)
|
262
252
|
```
|
263
253
|
|
@@ -281,11 +271,9 @@ client = StudyfetchSDK(
|
|
281
271
|
)
|
282
272
|
|
283
273
|
# Override per-request:
|
284
|
-
client.with_options(timeout=5.0).v1.
|
285
|
-
|
286
|
-
name="
|
287
|
-
origin="api",
|
288
|
-
type="flashcards",
|
274
|
+
client.with_options(timeout=5.0).v1.materials.create(
|
275
|
+
content={"type": "text"},
|
276
|
+
name="Chapter 1 - Introduction",
|
289
277
|
)
|
290
278
|
```
|
291
279
|
|
@@ -327,18 +315,16 @@ The "raw" Response object can be accessed by prefixing `.with_raw_response.` to
|
|
327
315
|
from studyfetch_sdk import StudyfetchSDK
|
328
316
|
|
329
317
|
client = StudyfetchSDK()
|
330
|
-
response = client.v1.
|
331
|
-
|
332
|
-
"
|
318
|
+
response = client.v1.materials.with_raw_response.create(
|
319
|
+
content={
|
320
|
+
"type": "text"
|
333
321
|
},
|
334
|
-
name="
|
335
|
-
origin="api",
|
336
|
-
type="flashcards",
|
322
|
+
name="Chapter 1 - Introduction",
|
337
323
|
)
|
338
324
|
print(response.headers.get('X-My-Header'))
|
339
325
|
|
340
|
-
|
341
|
-
print(
|
326
|
+
material = response.parse() # get the object that `v1.materials.create()` would have returned
|
327
|
+
print(material._id)
|
342
328
|
```
|
343
329
|
|
344
330
|
These methods return an [`APIResponse`](https://github.com/GoStudyFetchGo/studyfetch-sdk-python/tree/main/src/studyfetch_sdk/_response.py) object.
|
@@ -352,11 +338,9 @@ The above interface eagerly reads the full response body when you make the reque
|
|
352
338
|
To stream the response body, use `.with_streaming_response` instead, which requires a context manager and only reads the response body once you call `.read()`, `.text()`, `.json()`, `.iter_bytes()`, `.iter_text()`, `.iter_lines()` or `.parse()`. In the async client, these are async methods.
|
353
339
|
|
354
340
|
```python
|
355
|
-
with client.v1.
|
356
|
-
|
357
|
-
name="
|
358
|
-
origin="api",
|
359
|
-
type="flashcards",
|
341
|
+
with client.v1.materials.with_streaming_response.create(
|
342
|
+
content={"type": "text"},
|
343
|
+
name="Chapter 1 - Introduction",
|
360
344
|
) as response:
|
361
345
|
print(response.headers.get("X-My-Header"))
|
362
346
|
|
@@ -32,13 +32,11 @@ client = StudyfetchSDK(
|
|
32
32
|
api_key=os.environ.get("STUDYFETCH_SDK_API_KEY"), # This is the default and can be omitted
|
33
33
|
)
|
34
34
|
|
35
|
-
|
36
|
-
|
37
|
-
name="
|
38
|
-
origin="api",
|
39
|
-
type="flashcards",
|
35
|
+
material = client.v1.materials.create(
|
36
|
+
content={"type": "text"},
|
37
|
+
name="Chapter 1 - Introduction",
|
40
38
|
)
|
41
|
-
print(
|
39
|
+
print(material._id)
|
42
40
|
```
|
43
41
|
|
44
42
|
While you can provide an `api_key` keyword argument,
|
@@ -61,13 +59,11 @@ client = AsyncStudyfetchSDK(
|
|
61
59
|
|
62
60
|
|
63
61
|
async def main() -> None:
|
64
|
-
|
65
|
-
|
66
|
-
name="
|
67
|
-
origin="api",
|
68
|
-
type="flashcards",
|
62
|
+
material = await client.v1.materials.create(
|
63
|
+
content={"type": "text"},
|
64
|
+
name="Chapter 1 - Introduction",
|
69
65
|
)
|
70
|
-
print(
|
66
|
+
print(material._id)
|
71
67
|
|
72
68
|
|
73
69
|
asyncio.run(main())
|
@@ -99,13 +95,11 @@ async def main() -> None:
|
|
99
95
|
api_key="My API Key",
|
100
96
|
http_client=DefaultAioHttpClient(),
|
101
97
|
) as client:
|
102
|
-
|
103
|
-
|
104
|
-
name="
|
105
|
-
origin="api",
|
106
|
-
type="flashcards",
|
98
|
+
material = await client.v1.materials.create(
|
99
|
+
content={"type": "text"},
|
100
|
+
name="Chapter 1 - Introduction",
|
107
101
|
)
|
108
|
-
print(
|
102
|
+
print(material._id)
|
109
103
|
|
110
104
|
|
111
105
|
asyncio.run(main())
|
@@ -170,11 +164,9 @@ from studyfetch_sdk import StudyfetchSDK
|
|
170
164
|
client = StudyfetchSDK()
|
171
165
|
|
172
166
|
try:
|
173
|
-
client.v1.
|
174
|
-
|
175
|
-
name="
|
176
|
-
origin="api",
|
177
|
-
type="flashcards",
|
167
|
+
client.v1.materials.create(
|
168
|
+
content={"type": "text"},
|
169
|
+
name="Chapter 1 - Introduction",
|
178
170
|
)
|
179
171
|
except studyfetch_sdk.APIConnectionError as e:
|
180
172
|
print("The server could not be reached")
|
@@ -218,11 +210,9 @@ client = StudyfetchSDK(
|
|
218
210
|
)
|
219
211
|
|
220
212
|
# Or, configure per-request:
|
221
|
-
client.with_options(max_retries=5).v1.
|
222
|
-
|
223
|
-
name="
|
224
|
-
origin="api",
|
225
|
-
type="flashcards",
|
213
|
+
client.with_options(max_retries=5).v1.materials.create(
|
214
|
+
content={"type": "text"},
|
215
|
+
name="Chapter 1 - Introduction",
|
226
216
|
)
|
227
217
|
```
|
228
218
|
|
@@ -246,11 +236,9 @@ client = StudyfetchSDK(
|
|
246
236
|
)
|
247
237
|
|
248
238
|
# Override per-request:
|
249
|
-
client.with_options(timeout=5.0).v1.
|
250
|
-
|
251
|
-
name="
|
252
|
-
origin="api",
|
253
|
-
type="flashcards",
|
239
|
+
client.with_options(timeout=5.0).v1.materials.create(
|
240
|
+
content={"type": "text"},
|
241
|
+
name="Chapter 1 - Introduction",
|
254
242
|
)
|
255
243
|
```
|
256
244
|
|
@@ -292,18 +280,16 @@ The "raw" Response object can be accessed by prefixing `.with_raw_response.` to
|
|
292
280
|
from studyfetch_sdk import StudyfetchSDK
|
293
281
|
|
294
282
|
client = StudyfetchSDK()
|
295
|
-
response = client.v1.
|
296
|
-
|
297
|
-
"
|
283
|
+
response = client.v1.materials.with_raw_response.create(
|
284
|
+
content={
|
285
|
+
"type": "text"
|
298
286
|
},
|
299
|
-
name="
|
300
|
-
origin="api",
|
301
|
-
type="flashcards",
|
287
|
+
name="Chapter 1 - Introduction",
|
302
288
|
)
|
303
289
|
print(response.headers.get('X-My-Header'))
|
304
290
|
|
305
|
-
|
306
|
-
print(
|
291
|
+
material = response.parse() # get the object that `v1.materials.create()` would have returned
|
292
|
+
print(material._id)
|
307
293
|
```
|
308
294
|
|
309
295
|
These methods return an [`APIResponse`](https://github.com/GoStudyFetchGo/studyfetch-sdk-python/tree/main/src/studyfetch_sdk/_response.py) object.
|
@@ -317,11 +303,9 @@ The above interface eagerly reads the full response body when you make the reque
|
|
317
303
|
To stream the response body, use `.with_streaming_response` instead, which requires a context manager and only reads the response body once you call `.read()`, `.text()`, `.json()`, `.iter_bytes()`, `.iter_text()`, `.iter_lines()` or `.parse()`. In the async client, these are async methods.
|
318
304
|
|
319
305
|
```python
|
320
|
-
with client.v1.
|
321
|
-
|
322
|
-
name="
|
323
|
-
origin="api",
|
324
|
-
type="flashcards",
|
306
|
+
with client.v1.materials.with_streaming_response.create(
|
307
|
+
content={"type": "text"},
|
308
|
+
name="Chapter 1 - Introduction",
|
325
309
|
) as response:
|
326
310
|
print(response.headers.get("X-My-Header"))
|
327
311
|
|
@@ -203,7 +203,7 @@ Methods:
|
|
203
203
|
Methods:
|
204
204
|
|
205
205
|
- <code title="get /api/v1/scenarios/component/{componentId}">client.v1.scenarios.component.<a href="./src/studyfetch_sdk/resources/v1/scenarios/component.py">retrieve</a>(component_id) -> None</code>
|
206
|
-
- <code title="put /api/v1/scenarios/component/{componentId}">client.v1.scenarios.component.<a href="./src/studyfetch_sdk/resources/v1/scenarios/component.py">update</a>(
|
206
|
+
- <code title="put /api/v1/scenarios/component/{componentId}">client.v1.scenarios.component.<a href="./src/studyfetch_sdk/resources/v1/scenarios/component.py">update</a>(component_id, \*\*<a href="src/studyfetch_sdk/types/v1/scenarios/component_update_params.py">params</a>) -> None</code>
|
207
207
|
- <code title="delete /api/v1/scenarios/component/{componentId}">client.v1.scenarios.component.<a href="./src/studyfetch_sdk/resources/v1/scenarios/component.py">delete</a>(component_id) -> None</code>
|
208
208
|
|
209
209
|
### Sessions
|
@@ -240,3 +240,21 @@ Methods:
|
|
240
240
|
- <code title="post /api/v1/upload/component/{componentId}/presigned-url">client.v1.upload.component.<a href="./src/studyfetch_sdk/resources/v1/upload/component.py">get_presigned_url</a>(component_id) -> None</code>
|
241
241
|
- <code title="post /api/v1/upload/component/{componentId}/file">client.v1.upload.component.<a href="./src/studyfetch_sdk/resources/v1/upload/component.py">upload_file</a>(component_id) -> None</code>
|
242
242
|
- <code title="post /api/v1/upload/component/{componentId}/url">client.v1.upload.component.<a href="./src/studyfetch_sdk/resources/v1/upload/component.py">upload_url</a>(component_id) -> None</code>
|
243
|
+
|
244
|
+
## AssignmentGrader
|
245
|
+
|
246
|
+
Types:
|
247
|
+
|
248
|
+
```python
|
249
|
+
from studyfetch_sdk.types.v1 import (
|
250
|
+
AssignmentGraderCreateResponse,
|
251
|
+
AssignmentGraderGetAllResponse,
|
252
|
+
AssignmentGraderGetByIDResponse,
|
253
|
+
)
|
254
|
+
```
|
255
|
+
|
256
|
+
Methods:
|
257
|
+
|
258
|
+
- <code title="post /api/v1/assignment-grader/create">client.v1.assignment_grader.<a href="./src/studyfetch_sdk/resources/v1/assignment_grader.py">create</a>(\*\*<a href="src/studyfetch_sdk/types/v1/assignment_grader_create_params.py">params</a>) -> <a href="./src/studyfetch_sdk/types/v1/assignment_grader_create_response.py">AssignmentGraderCreateResponse</a></code>
|
259
|
+
- <code title="get /api/v1/assignment-grader/get">client.v1.assignment_grader.<a href="./src/studyfetch_sdk/resources/v1/assignment_grader.py">get_all</a>() -> <a href="./src/studyfetch_sdk/types/v1/assignment_grader_get_all_response.py">AssignmentGraderGetAllResponse</a></code>
|
260
|
+
- <code title="get /api/v1/assignment-grader/get/{id}">client.v1.assignment_grader.<a href="./src/studyfetch_sdk/resources/v1/assignment_grader.py">get_by_id</a>(id) -> <a href="./src/studyfetch_sdk/types/v1/assignment_grader_get_by_id_response.py">AssignmentGraderGetByIDResponse</a></code>
|
{studyfetch_sdk-0.1.0a10 → studyfetch_sdk-0.1.0a12}/src/studyfetch_sdk/resources/v1/__init__.py
RENAMED
@@ -104,6 +104,14 @@ from .audio_recaps import (
|
|
104
104
|
AudioRecapsResourceWithStreamingResponse,
|
105
105
|
AsyncAudioRecapsResourceWithStreamingResponse,
|
106
106
|
)
|
107
|
+
from .assignment_grader import (
|
108
|
+
AssignmentGraderResource,
|
109
|
+
AsyncAssignmentGraderResource,
|
110
|
+
AssignmentGraderResourceWithRawResponse,
|
111
|
+
AsyncAssignmentGraderResourceWithRawResponse,
|
112
|
+
AssignmentGraderResourceWithStreamingResponse,
|
113
|
+
AsyncAssignmentGraderResourceWithStreamingResponse,
|
114
|
+
)
|
107
115
|
|
108
116
|
__all__ = [
|
109
117
|
"MaterialsResource",
|
@@ -178,6 +186,12 @@ __all__ = [
|
|
178
186
|
"AsyncUploadResourceWithRawResponse",
|
179
187
|
"UploadResourceWithStreamingResponse",
|
180
188
|
"AsyncUploadResourceWithStreamingResponse",
|
189
|
+
"AssignmentGraderResource",
|
190
|
+
"AsyncAssignmentGraderResource",
|
191
|
+
"AssignmentGraderResourceWithRawResponse",
|
192
|
+
"AsyncAssignmentGraderResourceWithRawResponse",
|
193
|
+
"AssignmentGraderResourceWithStreamingResponse",
|
194
|
+
"AsyncAssignmentGraderResourceWithStreamingResponse",
|
181
195
|
"V1Resource",
|
182
196
|
"AsyncV1Resource",
|
183
197
|
"V1ResourceWithRawResponse",
|