studyfetch-sdk 0.1.0a3__py3-none-any.whl → 0.1.0a5__py3-none-any.whl
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/_version.py +1 -1
- studyfetch_sdk/resources/v1/chat/chat.py +7 -7
- studyfetch_sdk/resources/v1/components.py +9 -8
- studyfetch_sdk/resources/v1/explainers.py +154 -9
- studyfetch_sdk/resources/v1/flashcards.py +16 -16
- studyfetch_sdk/resources/v1/scenarios/component.py +116 -12
- studyfetch_sdk/resources/v1/scenarios/scenarios.py +245 -9
- studyfetch_sdk/types/v1/__init__.py +2 -0
- studyfetch_sdk/types/v1/chat_send_message_params.py +3 -3
- studyfetch_sdk/types/v1/component_create_params.py +349 -3
- studyfetch_sdk/types/v1/component_create_response.py +3 -1
- studyfetch_sdk/types/v1/component_embed_params.py +3 -2
- studyfetch_sdk/types/v1/component_list_response.py +3 -1
- studyfetch_sdk/types/v1/component_retrieve_response.py +3 -1
- studyfetch_sdk/types/v1/component_update_response.py +3 -1
- studyfetch_sdk/types/v1/explainer_create_params.py +45 -0
- studyfetch_sdk/types/v1/explainer_handle_webhook_params.py +45 -3
- studyfetch_sdk/types/v1/flashcard_get_all_params.py +2 -2
- studyfetch_sdk/types/v1/flashcard_get_due_params.py +1 -1
- studyfetch_sdk/types/v1/flashcard_get_stats_params.py +2 -2
- studyfetch_sdk/types/v1/scenario_create_params.py +39 -2
- studyfetch_sdk/types/v1/scenario_submit_params.py +18 -0
- studyfetch_sdk/types/v1/scenario_update_params.py +39 -2
- studyfetch_sdk/types/v1/scenarios/component_update_params.py +39 -2
- {studyfetch_sdk-0.1.0a3.dist-info → studyfetch_sdk-0.1.0a5.dist-info}/METADATA +1 -1
- {studyfetch_sdk-0.1.0a3.dist-info → studyfetch_sdk-0.1.0a5.dist-info}/RECORD +28 -26
- {studyfetch_sdk-0.1.0a3.dist-info → studyfetch_sdk-0.1.0a5.dist-info}/WHEEL +0 -0
- {studyfetch_sdk-0.1.0a3.dist-info → studyfetch_sdk-0.1.0a5.dist-info}/licenses/LICENSE +0 -0
@@ -2,10 +2,47 @@
|
|
2
2
|
|
3
3
|
from __future__ import annotations
|
4
4
|
|
5
|
-
from
|
5
|
+
from typing import Iterable
|
6
|
+
from typing_extensions import Required, Annotated, TypedDict
|
7
|
+
|
8
|
+
from ..._utils import PropertyInfo
|
6
9
|
|
7
10
|
__all__ = ["ScenarioUpdateParams"]
|
8
11
|
|
9
12
|
|
10
13
|
class ScenarioUpdateParams(TypedDict, total=False):
|
11
|
-
|
14
|
+
component_id: Required[Annotated[str, PropertyInfo(alias="componentId")]]
|
15
|
+
"""Associated component ID"""
|
16
|
+
|
17
|
+
name: Required[str]
|
18
|
+
"""Scenario name"""
|
19
|
+
|
20
|
+
characters: Iterable[object]
|
21
|
+
"""Scenario characters"""
|
22
|
+
|
23
|
+
context: str
|
24
|
+
"""Scenario context"""
|
25
|
+
|
26
|
+
description: str
|
27
|
+
"""Scenario description"""
|
28
|
+
|
29
|
+
final_answer_prompt: Annotated[str, PropertyInfo(alias="finalAnswerPrompt")]
|
30
|
+
"""Prompt for final answer"""
|
31
|
+
|
32
|
+
format: str
|
33
|
+
"""Interaction format"""
|
34
|
+
|
35
|
+
goal: str
|
36
|
+
"""Scenario goal"""
|
37
|
+
|
38
|
+
greeting_character_id: Annotated[str, PropertyInfo(alias="greetingCharacterId")]
|
39
|
+
"""Character ID for greeting"""
|
40
|
+
|
41
|
+
greeting_message: Annotated[str, PropertyInfo(alias="greetingMessage")]
|
42
|
+
"""Greeting message"""
|
43
|
+
|
44
|
+
requires_final_answer: Annotated[bool, PropertyInfo(alias="requiresFinalAnswer")]
|
45
|
+
"""Whether scenario requires a final answer"""
|
46
|
+
|
47
|
+
tools: Iterable[object]
|
48
|
+
"""Available tools"""
|
@@ -2,10 +2,47 @@
|
|
2
2
|
|
3
3
|
from __future__ import annotations
|
4
4
|
|
5
|
-
from
|
5
|
+
from typing import Iterable
|
6
|
+
from typing_extensions import Required, Annotated, TypedDict
|
7
|
+
|
8
|
+
from ...._utils import PropertyInfo
|
6
9
|
|
7
10
|
__all__ = ["ComponentUpdateParams"]
|
8
11
|
|
9
12
|
|
10
13
|
class ComponentUpdateParams(TypedDict, total=False):
|
11
|
-
|
14
|
+
body_component_id: Required[Annotated[str, PropertyInfo(alias="componentId")]]
|
15
|
+
"""Associated component ID"""
|
16
|
+
|
17
|
+
name: Required[str]
|
18
|
+
"""Scenario name"""
|
19
|
+
|
20
|
+
characters: Iterable[object]
|
21
|
+
"""Scenario characters"""
|
22
|
+
|
23
|
+
context: str
|
24
|
+
"""Scenario context"""
|
25
|
+
|
26
|
+
description: str
|
27
|
+
"""Scenario description"""
|
28
|
+
|
29
|
+
final_answer_prompt: Annotated[str, PropertyInfo(alias="finalAnswerPrompt")]
|
30
|
+
"""Prompt for final answer"""
|
31
|
+
|
32
|
+
format: str
|
33
|
+
"""Interaction format"""
|
34
|
+
|
35
|
+
goal: str
|
36
|
+
"""Scenario goal"""
|
37
|
+
|
38
|
+
greeting_character_id: Annotated[str, PropertyInfo(alias="greetingCharacterId")]
|
39
|
+
"""Character ID for greeting"""
|
40
|
+
|
41
|
+
greeting_message: Annotated[str, PropertyInfo(alias="greetingMessage")]
|
42
|
+
"""Greeting message"""
|
43
|
+
|
44
|
+
requires_final_answer: Annotated[bool, PropertyInfo(alias="requiresFinalAnswer")]
|
45
|
+
"""Whether scenario requires a final answer"""
|
46
|
+
|
47
|
+
tools: Iterable[object]
|
48
|
+
"""Available tools"""
|
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.3
|
2
2
|
Name: studyfetch_sdk
|
3
|
-
Version: 0.1.
|
3
|
+
Version: 0.1.0a5
|
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
|
@@ -11,7 +11,7 @@ studyfetch_sdk/_resource.py,sha256=y0aoAqMIYwTAwStuxbpO8XpTPnrSNQQ_ZcgiH5xcntg,1
|
|
11
11
|
studyfetch_sdk/_response.py,sha256=6ph8tSkqF5pNbTo_2Zhizhq2O-Eb67TcksHwyg3aXdc,28864
|
12
12
|
studyfetch_sdk/_streaming.py,sha256=HZoENuPVzWhBn24eH3lnMCvRbWN0EPwvhWYfdlJfw0A,10128
|
13
13
|
studyfetch_sdk/_types.py,sha256=6nvqHGarRGuhs_FL8tJ8sGXXD8XWajNynT2K78GxRUI,6205
|
14
|
-
studyfetch_sdk/_version.py,sha256=
|
14
|
+
studyfetch_sdk/_version.py,sha256=P9g-XswlFnHQJUeiV28qK7KIuczpCj7zMFGKkkZHO1U,174
|
15
15
|
studyfetch_sdk/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
16
16
|
studyfetch_sdk/_utils/__init__.py,sha256=PNZ_QJuzZEgyYXqkO1HVhGkj5IU9bglVUcw7H-Knjzw,2062
|
17
17
|
studyfetch_sdk/_utils/_logs.py,sha256=EoZgOiIkpf2WB_0Ts0Ti7G3o_25v7IsPf_q-yEU6sbY,798
|
@@ -26,9 +26,9 @@ studyfetch_sdk/_utils/_utils.py,sha256=ts4CiiuNpFiGB6YMdkQRh2SZvYvsl7mAF-JWHCcLD
|
|
26
26
|
studyfetch_sdk/lib/.keep,sha256=wuNrz-5SXo3jJaJOJgz4vFHM41YH_g20F5cRQo0vLes,224
|
27
27
|
studyfetch_sdk/resources/__init__.py,sha256=TSJ6b8GNHShyK5w7efHV93u1bY2jYVySQRa2zKc1dKM,500
|
28
28
|
studyfetch_sdk/resources/v1/__init__.py,sha256=Xbao5pcvo3A7m4Px9Xts0hh-DX1HKq2E1-TUM78plbA,6572
|
29
|
-
studyfetch_sdk/resources/v1/components.py,sha256=
|
30
|
-
studyfetch_sdk/resources/v1/explainers.py,sha256=
|
31
|
-
studyfetch_sdk/resources/v1/flashcards.py,sha256
|
29
|
+
studyfetch_sdk/resources/v1/components.py,sha256=omSiBUsNpgsPcp-aACKs_itOdKw7Nbj2ASV4W5NAnwQ,35554
|
30
|
+
studyfetch_sdk/resources/v1/explainers.py,sha256=OvbLxUmr5Iac6bl7kF2eV0e7hMcO5MnYLRj8NrYtS6c,12889
|
31
|
+
studyfetch_sdk/resources/v1/flashcards.py,sha256=-RKKuU3SQEZtXeCr1SasxuK1pMQO2FZzesvBeIoCGqo,29317
|
32
32
|
studyfetch_sdk/resources/v1/folders.py,sha256=o43HhcVhqF3t7xWMFFNIiMPElhoqkXtaCTVjEE5s5so,27436
|
33
33
|
studyfetch_sdk/resources/v1/usage.py,sha256=78OlA8pT13Ggja84nHdJJQoKSn7GjDO3SefPyxsCYWo,18513
|
34
34
|
studyfetch_sdk/resources/v1/v1.py,sha256=evx06-nLZCC2mxmaEqb_3H_iq0br3D01dBC-PpvTASc,16705
|
@@ -39,7 +39,7 @@ studyfetch_sdk/resources/v1/auth/__init__.py,sha256=YoujojaKcfwWPoS9E2_PYpMbgs6l
|
|
39
39
|
studyfetch_sdk/resources/v1/auth/auth.py,sha256=3YdW8S67YtkPtNvBvyKtyqiY7fU09vkwCCfR_hgdU3Q,6234
|
40
40
|
studyfetch_sdk/resources/v1/auth/number_2fa.py,sha256=QgfvK7_m-Kko29XYyDSlAWFv6l7xRF8t6ndNAW5kBz8,6195
|
41
41
|
studyfetch_sdk/resources/v1/chat/__init__.py,sha256=WSv53HDkoj5Ec37hiJlCV2V-ZquTjYyG5hU9cOdZPBk,1426
|
42
|
-
studyfetch_sdk/resources/v1/chat/chat.py,sha256=
|
42
|
+
studyfetch_sdk/resources/v1/chat/chat.py,sha256=3gyxkarOmcRC9Ef1U3zvCRyUjJ2-ZBwtY1sX0ubq7qI,21779
|
43
43
|
studyfetch_sdk/resources/v1/chat/sessions.py,sha256=mjcTJFft2zXyQlqhARz_J5md1BfAD3uhDVp-olow83o,8479
|
44
44
|
studyfetch_sdk/resources/v1/chat/test.py,sha256=_7D8vYKhEUi4L32-N4SnpQlDFZl2swrLQFsSDUidn1M,7067
|
45
45
|
studyfetch_sdk/resources/v1/embed/__init__.py,sha256=VJ7xFoda7Gx3MH2plj_RN3NF5lmfKMFB1IHU0StdTzo,1028
|
@@ -51,8 +51,8 @@ studyfetch_sdk/resources/v1/materials/materials.py,sha256=k6eflgtL96qQ3veEC6YO3e
|
|
51
51
|
studyfetch_sdk/resources/v1/materials/test.py,sha256=eGcjGYvPlrlZGrU6AnvZZX5qZ3aLgZgxIrNspXC1rnE,11355
|
52
52
|
studyfetch_sdk/resources/v1/materials/upload.py,sha256=5GyF1aIaxUHCKTiTz-12IbKF6IcFv4xZWAjVJFpT27o,15726
|
53
53
|
studyfetch_sdk/resources/v1/scenarios/__init__.py,sha256=WrMn3vQJgHGQzWKq5SRUTMMvRd4p15Bt5JjZpHhKHZs,2071
|
54
|
-
studyfetch_sdk/resources/v1/scenarios/component.py,sha256=
|
55
|
-
studyfetch_sdk/resources/v1/scenarios/scenarios.py,sha256=
|
54
|
+
studyfetch_sdk/resources/v1/scenarios/component.py,sha256=RvB07dib9WtMY3Irr5UPjQIG1Bue9vGVPyhMrSKxwqk,16333
|
55
|
+
studyfetch_sdk/resources/v1/scenarios/scenarios.py,sha256=bta8bhoLJMo480AiJwoTA2ucs26-f7qUewEQtjGKmZ8,34807
|
56
56
|
studyfetch_sdk/resources/v1/scenarios/sessions.py,sha256=nTa6kBd5SoCBTm4DoIdH_u_nj1bM5dIbo2yAy-rMzKg,8949
|
57
57
|
studyfetch_sdk/resources/v1/scenarios/submissions/__init__.py,sha256=rTtsEfGVta9DIHDkyL4p32yLV21bFcxkE-LRb_bpFvU,1041
|
58
58
|
studyfetch_sdk/resources/v1/scenarios/submissions/submissions.py,sha256=2wj6bWW4NXw3EjsCDQySGYOAym64QIUzLqp6UelJsqo,3773
|
@@ -64,28 +64,29 @@ studyfetch_sdk/resources/v1/upload/__init__.py,sha256=N5r6jpSMe43dezq-6RBAWLVlL3
|
|
64
64
|
studyfetch_sdk/resources/v1/upload/component.py,sha256=BbiKtJ9hC7c7_Wv6Q_Zi_BZJmcusWFRNvBKJqaB75yA,15493
|
65
65
|
studyfetch_sdk/resources/v1/upload/upload.py,sha256=RBkrsVi5_8qIqdYKypnSqj44ONvwW7u2XXIlpuJsKSg,3736
|
66
66
|
studyfetch_sdk/types/__init__.py,sha256=OKfJYcKb4NObdiRObqJV_dOyDQ8feXekDUge2o_4pXQ,122
|
67
|
-
studyfetch_sdk/types/v1/__init__.py,sha256=
|
67
|
+
studyfetch_sdk/types/v1/__init__.py,sha256=ptidQei3WG8UBTlyXK3tJmtIwp8BzQcbx7rmru0o5EA,3798
|
68
68
|
studyfetch_sdk/types/v1/chat_retrieve_session_params.py,sha256=j_egNBvVvOwAHQGayY5002fE_KK1q775XuIKlokEBsQ,388
|
69
|
-
studyfetch_sdk/types/v1/chat_send_message_params.py,sha256=
|
69
|
+
studyfetch_sdk/types/v1/chat_send_message_params.py,sha256=BRxjNsVXsqcBbdrp4J5TQGjjNPJ_bz7uXw3pnc-x0oU,1454
|
70
70
|
studyfetch_sdk/types/v1/chat_stream_params.py,sha256=Aqp2Vdsa35PAH-75kaO_ZYlkqGrCgDZ5EyYTTLRAJoE,695
|
71
|
-
studyfetch_sdk/types/v1/component_create_params.py,sha256=
|
72
|
-
studyfetch_sdk/types/v1/component_create_response.py,sha256=
|
73
|
-
studyfetch_sdk/types/v1/component_embed_params.py,sha256=
|
71
|
+
studyfetch_sdk/types/v1/component_create_params.py,sha256=ec6urTYr_9KEvITea9qThEIVFgWhRbY8tUhyk2RQHQQ,10496
|
72
|
+
studyfetch_sdk/types/v1/component_create_response.py,sha256=zfrTvGBNGY_N5doR9CAg6DgJgFWXoi4iXiiwEgvipKo,1194
|
73
|
+
studyfetch_sdk/types/v1/component_embed_params.py,sha256=hw7NcUe_QeYxrJ46qojicj8OVDY1KpRGHBPKgfx5FZc,3052
|
74
74
|
studyfetch_sdk/types/v1/component_embed_response.py,sha256=PUr_rBcSsww_FFIAUh6hjXWzCJ6kMENY970dDNtpnpY,906
|
75
75
|
studyfetch_sdk/types/v1/component_list_params.py,sha256=R8NMK7r37CpqmbAWdbs6rEF1LigoYrE3BXksJCCdKEQ,431
|
76
|
-
studyfetch_sdk/types/v1/component_list_response.py,sha256=
|
77
|
-
studyfetch_sdk/types/v1/component_retrieve_response.py,sha256=
|
76
|
+
studyfetch_sdk/types/v1/component_list_response.py,sha256=smVy_fILAm7kwzqncvGCIMMe5C2MrcRvKLPv41MF5iw,1309
|
77
|
+
studyfetch_sdk/types/v1/component_retrieve_response.py,sha256=Yeg2h0foE-atwpRzrhdWUakRP83_7nvkfMfHPf4CT28,1198
|
78
78
|
studyfetch_sdk/types/v1/component_update_params.py,sha256=IkSFyldrto9H_F_4GWIGG1WYpYFEuYsAi-29dmo9vno,365
|
79
|
-
studyfetch_sdk/types/v1/component_update_response.py,sha256=
|
79
|
+
studyfetch_sdk/types/v1/component_update_response.py,sha256=Red-3gvU3gf0uxbxFCtk88D7zXgq_qpqMo-15w-fUh4,1194
|
80
80
|
studyfetch_sdk/types/v1/embed_get_theme_params.py,sha256=wKZn4X-Ne29dOrxEBkGThxBPTdhPTgb-CzV65KvSFVw,308
|
81
81
|
studyfetch_sdk/types/v1/embed_verify_params.py,sha256=hixgK7Uyhi2Oaj0t5Q5sbFVUYGdvmMsk_2-fu_2C2nw,314
|
82
|
-
studyfetch_sdk/types/v1/
|
82
|
+
studyfetch_sdk/types/v1/explainer_create_params.py,sha256=DfTTxdkaUezNpD3TwTSyWZDsqcj3ZQ_pi-NiFmhldCk,1365
|
83
|
+
studyfetch_sdk/types/v1/explainer_handle_webhook_params.py,sha256=FroVkIVnrp3n_Jf5q5gfl4OaL41gswNRG2EZHXaeekY,1426
|
83
84
|
studyfetch_sdk/types/v1/flashcard_batch_process_params.py,sha256=9rKglWAilYXnfqPSOdKLQWZ7DOrU45S20eLLGn6xsSk,1044
|
84
85
|
studyfetch_sdk/types/v1/flashcard_batch_process_response.py,sha256=UKredDT61O5KA56gvhbJlF1qa8LzrdpLrD4ulzQOFlw,891
|
85
86
|
studyfetch_sdk/types/v1/flashcard_get_algorithm_info_response.py,sha256=DXyISqmGJlqgjyrcAmjO2lrNFqFiwGSI6JPr6niSE0A,871
|
86
|
-
studyfetch_sdk/types/v1/flashcard_get_all_params.py,sha256=
|
87
|
-
studyfetch_sdk/types/v1/flashcard_get_due_params.py,sha256=
|
88
|
-
studyfetch_sdk/types/v1/flashcard_get_stats_params.py,sha256=
|
87
|
+
studyfetch_sdk/types/v1/flashcard_get_all_params.py,sha256=VVEPwJ1sQ03CqUWM-bvmPmy4M2j2MEMvTPU6Qp7aflk,563
|
88
|
+
studyfetch_sdk/types/v1/flashcard_get_due_params.py,sha256=n_05aRmk05p-WXctVdE57Gm-lMChCn-efmy1Tl2Kq-Q,509
|
89
|
+
studyfetch_sdk/types/v1/flashcard_get_stats_params.py,sha256=ghcZfsKIM4au3PtoBpiw-3iGNEy-86co8vzIqLKhZ9o,483
|
89
90
|
studyfetch_sdk/types/v1/flashcard_get_types_response.py,sha256=5Ik-pRsivsnFTytCNvnw0cDZA-95ONMxNY2goXUucLI,371
|
90
91
|
studyfetch_sdk/types/v1/flashcard_rate_params.py,sha256=SrGtfy4XU34M9WYIVQ89uJpmkSmIS9JUzLg2t3_oez8,630
|
91
92
|
studyfetch_sdk/types/v1/folder_create_params.py,sha256=7aOh4pSBdnJ0kLH722pf2gNeJJXpGdf3ldadMcMtXkY,453
|
@@ -97,8 +98,9 @@ studyfetch_sdk/types/v1/material_get_download_url_params.py,sha256=7prrB3K-E4xAW
|
|
97
98
|
studyfetch_sdk/types/v1/material_list_params.py,sha256=8yd556-GB4Xw-NFGshxm_Hx-nIG-MAg4dPtn-W38w3k,388
|
98
99
|
studyfetch_sdk/types/v1/material_list_response.py,sha256=HHtjzeuZ3v0QrOQdUMFI7HRsKJ41n_jWk8N_JloDaIg,1827
|
99
100
|
studyfetch_sdk/types/v1/material_retrieve_response.py,sha256=LtW5GDV5KExzVY1QmR0K0yp60rVQibBbE7pPPEUe2G0,1647
|
100
|
-
studyfetch_sdk/types/v1/scenario_create_params.py,sha256=
|
101
|
-
studyfetch_sdk/types/v1/
|
101
|
+
studyfetch_sdk/types/v1/scenario_create_params.py,sha256=anCK913P4vYEtgY6GnxxxCxRnUazeV1H1NoyBV78sT8,1281
|
102
|
+
studyfetch_sdk/types/v1/scenario_submit_params.py,sha256=DV1s6zdCYFxS3s7_Ji-Y1CUddhaD-gsdQPqem0LZB0Y,585
|
103
|
+
studyfetch_sdk/types/v1/scenario_update_params.py,sha256=q-PB0dS3s2S9q_JCm46UWB-Dy2WVSUiAw3C6v6lq7XA,1281
|
102
104
|
studyfetch_sdk/types/v1/test_create_params.py,sha256=-MrR4d4Igyp7FD9xni5Rh_Gn3JgCZyYGagXUG3GDvQc,537
|
103
105
|
studyfetch_sdk/types/v1/test_retake_params.py,sha256=pSxTOQ8Io9D_ZquvrbwdbUGtpjG-idDfBd-28i6gQVM,379
|
104
106
|
studyfetch_sdk/types/v1/test_submit_answer_params.py,sha256=KnXliGsq5TTCZIno5It7rK5pi_qttEavBw86X_yhyj0,549
|
@@ -127,11 +129,11 @@ studyfetch_sdk/types/v1/organizations/logo/__init__.py,sha256=OKfJYcKb4NObdiRObq
|
|
127
129
|
studyfetch_sdk/types/v1/organizations/profile/__init__.py,sha256=OKfJYcKb4NObdiRObqJV_dOyDQ8feXekDUge2o_4pXQ,122
|
128
130
|
studyfetch_sdk/types/v1/organizations/team/__init__.py,sha256=OKfJYcKb4NObdiRObqJV_dOyDQ8feXekDUge2o_4pXQ,122
|
129
131
|
studyfetch_sdk/types/v1/scenarios/__init__.py,sha256=2DyrawNlb-TstNKw0gUMlQaNSq-UAUcLhmOGElM0l0U,207
|
130
|
-
studyfetch_sdk/types/v1/scenarios/component_update_params.py,sha256=
|
132
|
+
studyfetch_sdk/types/v1/scenarios/component_update_params.py,sha256=_Rs0wRJtrLMKyQCGH3hrpMjWG1fHJwD3QaTyeOfdZMA,1289
|
131
133
|
studyfetch_sdk/types/v1/scenarios/submissions/__init__.py,sha256=OKfJYcKb4NObdiRObqJV_dOyDQ8feXekDUge2o_4pXQ,122
|
132
134
|
studyfetch_sdk/types/v1/tests/__init__.py,sha256=OKfJYcKb4NObdiRObqJV_dOyDQ8feXekDUge2o_4pXQ,122
|
133
135
|
studyfetch_sdk/types/v1/upload/__init__.py,sha256=OKfJYcKb4NObdiRObqJV_dOyDQ8feXekDUge2o_4pXQ,122
|
134
|
-
studyfetch_sdk-0.1.
|
135
|
-
studyfetch_sdk-0.1.
|
136
|
-
studyfetch_sdk-0.1.
|
137
|
-
studyfetch_sdk-0.1.
|
136
|
+
studyfetch_sdk-0.1.0a5.dist-info/METADATA,sha256=KDONVG9Y25XyGij3xjRNCpcA-ImW3qu89_nV9Etiz-4,14826
|
137
|
+
studyfetch_sdk-0.1.0a5.dist-info/WHEEL,sha256=C2FUgwZgiLbznR-k0b_5k3Ai_1aASOXDss3lzCUsUug,87
|
138
|
+
studyfetch_sdk-0.1.0a5.dist-info/licenses/LICENSE,sha256=CsdbJMegH_AAWljUmVcwW0Cj_GyIm1hjw6qPqPnmdn4,11344
|
139
|
+
studyfetch_sdk-0.1.0a5.dist-info/RECORD,,
|
File without changes
|
File without changes
|