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.
Files changed (28) hide show
  1. studyfetch_sdk/_version.py +1 -1
  2. studyfetch_sdk/resources/v1/chat/chat.py +7 -7
  3. studyfetch_sdk/resources/v1/components.py +9 -8
  4. studyfetch_sdk/resources/v1/explainers.py +154 -9
  5. studyfetch_sdk/resources/v1/flashcards.py +16 -16
  6. studyfetch_sdk/resources/v1/scenarios/component.py +116 -12
  7. studyfetch_sdk/resources/v1/scenarios/scenarios.py +245 -9
  8. studyfetch_sdk/types/v1/__init__.py +2 -0
  9. studyfetch_sdk/types/v1/chat_send_message_params.py +3 -3
  10. studyfetch_sdk/types/v1/component_create_params.py +349 -3
  11. studyfetch_sdk/types/v1/component_create_response.py +3 -1
  12. studyfetch_sdk/types/v1/component_embed_params.py +3 -2
  13. studyfetch_sdk/types/v1/component_list_response.py +3 -1
  14. studyfetch_sdk/types/v1/component_retrieve_response.py +3 -1
  15. studyfetch_sdk/types/v1/component_update_response.py +3 -1
  16. studyfetch_sdk/types/v1/explainer_create_params.py +45 -0
  17. studyfetch_sdk/types/v1/explainer_handle_webhook_params.py +45 -3
  18. studyfetch_sdk/types/v1/flashcard_get_all_params.py +2 -2
  19. studyfetch_sdk/types/v1/flashcard_get_due_params.py +1 -1
  20. studyfetch_sdk/types/v1/flashcard_get_stats_params.py +2 -2
  21. studyfetch_sdk/types/v1/scenario_create_params.py +39 -2
  22. studyfetch_sdk/types/v1/scenario_submit_params.py +18 -0
  23. studyfetch_sdk/types/v1/scenario_update_params.py +39 -2
  24. studyfetch_sdk/types/v1/scenarios/component_update_params.py +39 -2
  25. {studyfetch_sdk-0.1.0a3.dist-info → studyfetch_sdk-0.1.0a5.dist-info}/METADATA +1 -1
  26. {studyfetch_sdk-0.1.0a3.dist-info → studyfetch_sdk-0.1.0a5.dist-info}/RECORD +28 -26
  27. {studyfetch_sdk-0.1.0a3.dist-info → studyfetch_sdk-0.1.0a5.dist-info}/WHEEL +0 -0
  28. {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 typing_extensions import Required, TypedDict
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
- body: Required[str]
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 typing_extensions import Required, TypedDict
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
- body: Required[str]
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.0a3
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=eFvQz_HkOj_Ab2PHRn6n_zWj7lCNJmaWEVVHiYhvSxk,174
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=KHQIhj8R9ZUSIl5x5yKeFenJk_3WMtOWojqyrSkGHrA,35460
30
- studyfetch_sdk/resources/v1/explainers.py,sha256=dFk7044_qcf16Ia2VdEJ_dRRdnJeyHALNDHu6PVFbIM,8351
31
- studyfetch_sdk/resources/v1/flashcards.py,sha256=1r8W5AO8UTOSnJm4j-JSlzve7RnY2iRrBMFM9znDEW8,29219
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=BNYXQdWaUX4-K6zQlj4Heoy9Lo6SrRmf1EmqM9toNyc,21751
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=YS-NSqVjOBGggQn1cZfu-mH7V_BqUZZss2MdPItWEvA,12724
55
- studyfetch_sdk/resources/v1/scenarios/scenarios.py,sha256=LSJc70kBRc4k_hQXu-HcToj2GJNpRO6pj9NDlM_xQcc,26758
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=aywccrChxnRGCoeK_FDPra7X3SKnfnyzI2oKmOyD0V4,3633
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=fY7Ctm7SSwx8SVhgARrTFmWUGLA9x5SJretdvlcY7RU,1439
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=OOatodivJqk-XutNtv7PqPvWyNNZdlTAsuoW9u9o9t4,808
72
- studyfetch_sdk/types/v1/component_create_response.py,sha256=pYXzXDgVeLhcFnT_KyxTYMhmLL0xt7pxPuwH_453u8c,1149
73
- studyfetch_sdk/types/v1/component_embed_params.py,sha256=0SKYB8n95-hyEaOIsGNXc8FbPII_bfpl9RTnPYLsVSY,3019
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=ubZDkf3sUe36_qXN-cQsCusThh01yM5Ksc_NZnox9NE,1264
77
- studyfetch_sdk/types/v1/component_retrieve_response.py,sha256=muQvZtAfXdSWPWifRDrVPQS3cIW6fwDpFkz4_6HOR28,1153
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=8-vdYlrXnmK3o091vJK2untWLjxBs4yIPH-r7xrhT7E,1149
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/explainer_handle_webhook_params.py,sha256=woKIx4423Cuk15DNTQ3XfPWsZx5Ewm5KALkgB6wT4Sc,303
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=_UX-JpmwsA10IA-E8M7wo4iSADOsMnKXRjfPqP6rvZk,542
87
- studyfetch_sdk/types/v1/flashcard_get_due_params.py,sha256=PQLaeQ09z2SzxF42-fCasONQXLoTDwOrSBmuXQ4td-0,507
88
- studyfetch_sdk/types/v1/flashcard_get_stats_params.py,sha256=0n91QG9FGJxmhajCuJavgzs5Ny2PdDM-Dt8tj3-LJDY,462
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=cT6bzoctWjw1_p0zRNtb65OkxhaZostNxHYUVrCR45k,287
101
- studyfetch_sdk/types/v1/scenario_update_params.py,sha256=y3sNt24zXLLDV_VbBYHJ_2IcoPEQYNApt0il9-C525U,287
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=BDHJzJiiTVqSXhGzr9gbbC16VHBnLExpPGX2wQXlV2k,289
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.0a3.dist-info/METADATA,sha256=Czv_6_Gkuh12fQOUMknVqzzG3jupQyT1HwJM3u3enaI,14826
135
- studyfetch_sdk-0.1.0a3.dist-info/WHEEL,sha256=C2FUgwZgiLbznR-k0b_5k3Ai_1aASOXDss3lzCUsUug,87
136
- studyfetch_sdk-0.1.0a3.dist-info/licenses/LICENSE,sha256=CsdbJMegH_AAWljUmVcwW0Cj_GyIm1hjw6qPqPnmdn4,11344
137
- studyfetch_sdk-0.1.0a3.dist-info/RECORD,,
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,,