studyfetch-sdk 0.1.0a2__py3-none-any.whl → 0.1.0a3__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 (41) hide show
  1. studyfetch_sdk/_version.py +1 -1
  2. studyfetch_sdk/resources/v1/__init__.py +0 -14
  3. studyfetch_sdk/resources/v1/auth/__init__.py +0 -28
  4. studyfetch_sdk/resources/v1/auth/auth.py +0 -504
  5. studyfetch_sdk/resources/v1/auth/number_2fa.py +1 -294
  6. studyfetch_sdk/resources/v1/usage.py +1 -593
  7. studyfetch_sdk/resources/v1/v1.py +0 -32
  8. studyfetch_sdk/types/v1/__init__.py +0 -5
  9. studyfetch_sdk/types/v1/auth/__init__.py +0 -8
  10. {studyfetch_sdk-0.1.0a2.dist-info → studyfetch_sdk-0.1.0a3.dist-info}/METADATA +11 -35
  11. {studyfetch_sdk-0.1.0a2.dist-info → studyfetch_sdk-0.1.0a3.dist-info}/RECORD +13 -41
  12. studyfetch_sdk/resources/v1/auth/login.py +0 -374
  13. studyfetch_sdk/resources/v1/auth/organization_invites.py +0 -160
  14. studyfetch_sdk/resources/v1/organizations/__init__.py +0 -103
  15. studyfetch_sdk/resources/v1/organizations/api_keys.py +0 -260
  16. studyfetch_sdk/resources/v1/organizations/logo/__init__.py +0 -33
  17. studyfetch_sdk/resources/v1/organizations/logo/logo.py +0 -166
  18. studyfetch_sdk/resources/v1/organizations/logo/upload.py +0 -184
  19. studyfetch_sdk/resources/v1/organizations/organizations.py +0 -428
  20. studyfetch_sdk/resources/v1/organizations/profile/__init__.py +0 -47
  21. studyfetch_sdk/resources/v1/organizations/profile/models.py +0 -134
  22. studyfetch_sdk/resources/v1/organizations/profile/profile.py +0 -248
  23. studyfetch_sdk/resources/v1/organizations/profile/team.py +0 -462
  24. studyfetch_sdk/resources/v1/organizations/team/__init__.py +0 -33
  25. studyfetch_sdk/resources/v1/organizations/team/invite.py +0 -236
  26. studyfetch_sdk/resources/v1/organizations/team/team.py +0 -564
  27. studyfetch_sdk/resources/v1/organizations/theme.py +0 -184
  28. studyfetch_sdk/resources/v1/organizations/usage.py +0 -210
  29. studyfetch_sdk/types/v1/auth/login_authenticate_params.py +0 -15
  30. studyfetch_sdk/types/v1/auth/login_verify_2fa_params.py +0 -15
  31. studyfetch_sdk/types/v1/auth/login_verify_backup_code_params.py +0 -17
  32. studyfetch_sdk/types/v1/auth/number_2fa_disable_params.py +0 -12
  33. studyfetch_sdk/types/v1/auth/number_2fa_enable_params.py +0 -12
  34. studyfetch_sdk/types/v1/auth/number_2fa_regenerate_backup_codes_params.py +0 -12
  35. studyfetch_sdk/types/v1/auth_register_new_user_params.py +0 -23
  36. studyfetch_sdk/types/v1/auth_request_password_reset_params.py +0 -12
  37. studyfetch_sdk/types/v1/auth_reset_password_params.py +0 -17
  38. studyfetch_sdk/types/v1/usage_track_chat_params.py +0 -54
  39. studyfetch_sdk/types/v1/usage_track_event_params.py +0 -128
  40. {studyfetch_sdk-0.1.0a2.dist-info → studyfetch_sdk-0.1.0a3.dist-info}/WHEEL +0 -0
  41. {studyfetch_sdk-0.1.0a2.dist-info → studyfetch_sdk-0.1.0a3.dist-info}/licenses/LICENSE +0 -0
@@ -108,14 +108,6 @@ from .audio_recaps.audio_recaps import (
108
108
  AudioRecapsResourceWithStreamingResponse,
109
109
  AsyncAudioRecapsResourceWithStreamingResponse,
110
110
  )
111
- from .organizations.organizations import (
112
- OrganizationsResource,
113
- AsyncOrganizationsResource,
114
- OrganizationsResourceWithRawResponse,
115
- AsyncOrganizationsResourceWithRawResponse,
116
- OrganizationsResourceWithStreamingResponse,
117
- AsyncOrganizationsResourceWithStreamingResponse,
118
- )
119
111
 
120
112
  __all__ = ["V1Resource", "AsyncV1Resource"]
121
113
 
@@ -125,10 +117,6 @@ class V1Resource(SyncAPIResource):
125
117
  def auth(self) -> AuthResource:
126
118
  return AuthResource(self._client)
127
119
 
128
- @cached_property
129
- def organizations(self) -> OrganizationsResource:
130
- return OrganizationsResource(self._client)
131
-
132
120
  @cached_property
133
121
  def materials(self) -> MaterialsResource:
134
122
  return MaterialsResource(self._client)
@@ -202,10 +190,6 @@ class AsyncV1Resource(AsyncAPIResource):
202
190
  def auth(self) -> AsyncAuthResource:
203
191
  return AsyncAuthResource(self._client)
204
192
 
205
- @cached_property
206
- def organizations(self) -> AsyncOrganizationsResource:
207
- return AsyncOrganizationsResource(self._client)
208
-
209
193
  @cached_property
210
194
  def materials(self) -> AsyncMaterialsResource:
211
195
  return AsyncMaterialsResource(self._client)
@@ -282,10 +266,6 @@ class V1ResourceWithRawResponse:
282
266
  def auth(self) -> AuthResourceWithRawResponse:
283
267
  return AuthResourceWithRawResponse(self._v1.auth)
284
268
 
285
- @cached_property
286
- def organizations(self) -> OrganizationsResourceWithRawResponse:
287
- return OrganizationsResourceWithRawResponse(self._v1.organizations)
288
-
289
269
  @cached_property
290
270
  def materials(self) -> MaterialsResourceWithRawResponse:
291
271
  return MaterialsResourceWithRawResponse(self._v1.materials)
@@ -343,10 +323,6 @@ class AsyncV1ResourceWithRawResponse:
343
323
  def auth(self) -> AsyncAuthResourceWithRawResponse:
344
324
  return AsyncAuthResourceWithRawResponse(self._v1.auth)
345
325
 
346
- @cached_property
347
- def organizations(self) -> AsyncOrganizationsResourceWithRawResponse:
348
- return AsyncOrganizationsResourceWithRawResponse(self._v1.organizations)
349
-
350
326
  @cached_property
351
327
  def materials(self) -> AsyncMaterialsResourceWithRawResponse:
352
328
  return AsyncMaterialsResourceWithRawResponse(self._v1.materials)
@@ -404,10 +380,6 @@ class V1ResourceWithStreamingResponse:
404
380
  def auth(self) -> AuthResourceWithStreamingResponse:
405
381
  return AuthResourceWithStreamingResponse(self._v1.auth)
406
382
 
407
- @cached_property
408
- def organizations(self) -> OrganizationsResourceWithStreamingResponse:
409
- return OrganizationsResourceWithStreamingResponse(self._v1.organizations)
410
-
411
383
  @cached_property
412
384
  def materials(self) -> MaterialsResourceWithStreamingResponse:
413
385
  return MaterialsResourceWithStreamingResponse(self._v1.materials)
@@ -465,10 +437,6 @@ class AsyncV1ResourceWithStreamingResponse:
465
437
  def auth(self) -> AsyncAuthResourceWithStreamingResponse:
466
438
  return AsyncAuthResourceWithStreamingResponse(self._v1.auth)
467
439
 
468
- @cached_property
469
- def organizations(self) -> AsyncOrganizationsResourceWithStreamingResponse:
470
- return AsyncOrganizationsResourceWithStreamingResponse(self._v1.organizations)
471
-
472
440
  @cached_property
473
441
  def materials(self) -> AsyncMaterialsResourceWithStreamingResponse:
474
442
  return AsyncMaterialsResourceWithStreamingResponse(self._v1.materials)
@@ -23,7 +23,6 @@ from .usage_get_stats_params import UsageGetStatsParams as UsageGetStatsParams
23
23
  from .component_create_params import ComponentCreateParams as ComponentCreateParams
24
24
  from .component_list_response import ComponentListResponse as ComponentListResponse
25
25
  from .component_update_params import ComponentUpdateParams as ComponentUpdateParams
26
- from .usage_track_chat_params import UsageTrackChatParams as UsageTrackChatParams
27
26
  from .chat_send_message_params import ChatSendMessageParams as ChatSendMessageParams
28
27
  from .component_embed_response import ComponentEmbedResponse as ComponentEmbedResponse
29
28
  from .flashcard_get_all_params import FlashcardGetAllParams as FlashcardGetAllParams
@@ -31,22 +30,18 @@ from .flashcard_get_due_params import FlashcardGetDueParams as FlashcardGetDuePa
31
30
  from .material_create_response import MaterialCreateResponse as MaterialCreateResponse
32
31
  from .usage_get_summary_params import UsageGetSummaryParams as UsageGetSummaryParams
33
32
  from .usage_list_events_params import UsageListEventsParams as UsageListEventsParams
34
- from .usage_track_event_params import UsageTrackEventParams as UsageTrackEventParams
35
33
  from .component_create_response import ComponentCreateResponse as ComponentCreateResponse
36
34
  from .component_update_response import ComponentUpdateResponse as ComponentUpdateResponse
37
35
  from .test_submit_answer_params import TestSubmitAnswerParams as TestSubmitAnswerParams
38
- from .auth_reset_password_params import AuthResetPasswordParams as AuthResetPasswordParams
39
36
  from .flashcard_get_stats_params import FlashcardGetStatsParams as FlashcardGetStatsParams
40
37
  from .material_retrieve_response import MaterialRetrieveResponse as MaterialRetrieveResponse
41
38
  from .component_retrieve_response import ComponentRetrieveResponse as ComponentRetrieveResponse
42
39
  from .chat_retrieve_session_params import ChatRetrieveSessionParams as ChatRetrieveSessionParams
43
40
  from .flashcard_get_types_response import FlashcardGetTypesResponse as FlashcardGetTypesResponse
44
- from .auth_register_new_user_params import AuthRegisterNewUserParams as AuthRegisterNewUserParams
45
41
  from .flashcard_batch_process_params import FlashcardBatchProcessParams as FlashcardBatchProcessParams
46
42
  from .explainer_handle_webhook_params import ExplainerHandleWebhookParams as ExplainerHandleWebhookParams
47
43
  from .flashcard_batch_process_response import FlashcardBatchProcessResponse as FlashcardBatchProcessResponse
48
44
  from .material_get_download_url_params import MaterialGetDownloadURLParams as MaterialGetDownloadURLParams
49
- from .auth_request_password_reset_params import AuthRequestPasswordResetParams as AuthRequestPasswordResetParams
50
45
  from .flashcard_get_algorithm_info_response import (
51
46
  FlashcardGetAlgorithmInfoResponse as FlashcardGetAlgorithmInfoResponse,
52
47
  )
@@ -2,12 +2,4 @@
2
2
 
3
3
  from __future__ import annotations
4
4
 
5
- from .login_verify_2fa_params import LoginVerify2faParams as LoginVerify2faParams
6
- from .number_2fa_enable_params import Number2faEnableParams as Number2faEnableParams
7
- from .login_authenticate_params import LoginAuthenticateParams as LoginAuthenticateParams
8
- from .number_2fa_disable_params import Number2faDisableParams as Number2faDisableParams
9
5
  from .number_2fa_send_code_params import Number2faSendCodeParams as Number2faSendCodeParams
10
- from .login_verify_backup_code_params import LoginVerifyBackupCodeParams as LoginVerifyBackupCodeParams
11
- from .number_2fa_regenerate_backup_codes_params import (
12
- Number2faRegenerateBackupCodesParams as Number2faRegenerateBackupCodesParams,
13
- )
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.3
2
2
  Name: studyfetch_sdk
3
- Version: 0.1.0a2
3
+ Version: 0.1.0a3
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,10 +67,7 @@ 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
- client.v1.auth.login.authenticate(
71
- email="user@example.com",
72
- password="password123",
73
- )
70
+ client.v1.auth.verify_reset_token()
74
71
  ```
75
72
 
76
73
  While you can provide an `api_key` keyword argument,
@@ -93,10 +90,7 @@ client = AsyncStudyfetchSDK(
93
90
 
94
91
 
95
92
  async def main() -> None:
96
- await client.v1.auth.login.authenticate(
97
- email="user@example.com",
98
- password="password123",
99
- )
93
+ await client.v1.auth.verify_reset_token()
100
94
 
101
95
 
102
96
  asyncio.run(main())
@@ -128,10 +122,7 @@ async def main() -> None:
128
122
  api_key="My API Key",
129
123
  http_client=DefaultAioHttpClient(),
130
124
  ) as client:
131
- await client.v1.auth.login.authenticate(
132
- email="user@example.com",
133
- password="password123",
134
- )
125
+ await client.v1.auth.verify_reset_token()
135
126
 
136
127
 
137
128
  asyncio.run(main())
@@ -196,10 +187,7 @@ from studyfetch_sdk import StudyfetchSDK
196
187
  client = StudyfetchSDK()
197
188
 
198
189
  try:
199
- client.v1.auth.login.authenticate(
200
- email="user@example.com",
201
- password="password123",
202
- )
190
+ client.v1.auth.verify_reset_token()
203
191
  except studyfetch_sdk.APIConnectionError as e:
204
192
  print("The server could not be reached")
205
193
  print(e.__cause__) # an underlying Exception, likely raised within httpx.
@@ -242,10 +230,7 @@ client = StudyfetchSDK(
242
230
  )
243
231
 
244
232
  # Or, configure per-request:
245
- client.with_options(max_retries=5).v1.auth.login.authenticate(
246
- email="user@example.com",
247
- password="password123",
248
- )
233
+ client.with_options(max_retries=5).v1.auth.verify_reset_token()
249
234
  ```
250
235
 
251
236
  ### Timeouts
@@ -268,10 +253,7 @@ client = StudyfetchSDK(
268
253
  )
269
254
 
270
255
  # Override per-request:
271
- client.with_options(timeout=5.0).v1.auth.login.authenticate(
272
- email="user@example.com",
273
- password="password123",
274
- )
256
+ client.with_options(timeout=5.0).v1.auth.verify_reset_token()
275
257
  ```
276
258
 
277
259
  On timeout, an `APITimeoutError` is thrown.
@@ -312,14 +294,11 @@ The "raw" Response object can be accessed by prefixing `.with_raw_response.` to
312
294
  from studyfetch_sdk import StudyfetchSDK
313
295
 
314
296
  client = StudyfetchSDK()
315
- response = client.v1.auth.login.with_raw_response.authenticate(
316
- email="user@example.com",
317
- password="password123",
318
- )
297
+ response = client.v1.auth.with_raw_response.verify_reset_token()
319
298
  print(response.headers.get('X-My-Header'))
320
299
 
321
- login = response.parse() # get the object that `v1.auth.login.authenticate()` would have returned
322
- print(login)
300
+ auth = response.parse() # get the object that `v1.auth.verify_reset_token()` would have returned
301
+ print(auth)
323
302
  ```
324
303
 
325
304
  These methods return an [`APIResponse`](https://github.com/GoStudyFetchGo/studyfetch-sdk-python/tree/main/src/studyfetch_sdk/_response.py) object.
@@ -333,10 +312,7 @@ The above interface eagerly reads the full response body when you make the reque
333
312
  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.
334
313
 
335
314
  ```python
336
- with client.v1.auth.login.with_streaming_response.authenticate(
337
- email="user@example.com",
338
- password="password123",
339
- ) as response:
315
+ with client.v1.auth.with_streaming_response.verify_reset_token() as response:
340
316
  print(response.headers.get("X-My-Header"))
341
317
 
342
318
  for line in response.iter_lines():
@@ -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=vWWjW8e1YYiVhuw5C0zO0kuXDa4zQpja_5UMpDc33pU,174
14
+ studyfetch_sdk/_version.py,sha256=eFvQz_HkOj_Ab2PHRn6n_zWj7lCNJmaWEVVHiYhvSxk,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
@@ -25,21 +25,19 @@ studyfetch_sdk/_utils/_typing.py,sha256=D0DbbNu8GnYQTSICnTSHDGsYXj8TcAKyhejb0Xcn
25
25
  studyfetch_sdk/_utils/_utils.py,sha256=ts4CiiuNpFiGB6YMdkQRh2SZvYvsl7mAF-JWHCcLDf4,12312
26
26
  studyfetch_sdk/lib/.keep,sha256=wuNrz-5SXo3jJaJOJgz4vFHM41YH_g20F5cRQo0vLes,224
27
27
  studyfetch_sdk/resources/__init__.py,sha256=TSJ6b8GNHShyK5w7efHV93u1bY2jYVySQRa2zKc1dKM,500
28
- studyfetch_sdk/resources/v1/__init__.py,sha256=vlwaMVHSnhIr6LAhTYRmMqFXuYTjPE6cNSxaX24cvBo,7113
28
+ studyfetch_sdk/resources/v1/__init__.py,sha256=Xbao5pcvo3A7m4Px9Xts0hh-DX1HKq2E1-TUM78plbA,6572
29
29
  studyfetch_sdk/resources/v1/components.py,sha256=KHQIhj8R9ZUSIl5x5yKeFenJk_3WMtOWojqyrSkGHrA,35460
30
30
  studyfetch_sdk/resources/v1/explainers.py,sha256=dFk7044_qcf16Ia2VdEJ_dRRdnJeyHALNDHu6PVFbIM,8351
31
31
  studyfetch_sdk/resources/v1/flashcards.py,sha256=1r8W5AO8UTOSnJm4j-JSlzve7RnY2iRrBMFM9znDEW8,29219
32
32
  studyfetch_sdk/resources/v1/folders.py,sha256=o43HhcVhqF3t7xWMFFNIiMPElhoqkXtaCTVjEE5s5so,27436
33
- studyfetch_sdk/resources/v1/usage.py,sha256=-U-gufEHbrTvBtR-5Acv1SL_yVaR3_h50zOQigoIhjc,39197
34
- studyfetch_sdk/resources/v1/v1.py,sha256=J22tD-OkYu27YaIe6QesW-85xbn1GLnkejjrjiqo1_g,17975
33
+ studyfetch_sdk/resources/v1/usage.py,sha256=78OlA8pT13Ggja84nHdJJQoKSn7GjDO3SefPyxsCYWo,18513
34
+ studyfetch_sdk/resources/v1/v1.py,sha256=evx06-nLZCC2mxmaEqb_3H_iq0br3D01dBC-PpvTASc,16705
35
35
  studyfetch_sdk/resources/v1/audio_recaps/__init__.py,sha256=X6oJGmyaqUBFChSn8l0r-EHjCZos36O10zfFYWuid2w,1094
36
36
  studyfetch_sdk/resources/v1/audio_recaps/audio_recaps.py,sha256=XAfSWFDbjUSp9bKjDVHqLyrEv3kNtTYSaLtWPRFIzdc,12630
37
37
  studyfetch_sdk/resources/v1/audio_recaps/sections.py,sha256=AcYtFSNemNP2T-fJn2nZkrPNNpaEtqiwPNuTpual2Lw,9451
38
- studyfetch_sdk/resources/v1/auth/__init__.py,sha256=3CLX0g3QnjIdaNdTFGlCYGCCEnl7uDLLe-smPJOM0xk,2073
39
- studyfetch_sdk/resources/v1/auth/auth.py,sha256=aaaw82FWSwygWL7u_7I80J575Xa-Zzapwwdh05OtGNY,26030
40
- studyfetch_sdk/resources/v1/auth/login.py,sha256=T80Z9zmj-rPeQSWfkgBmMlAhRXdYDUml8B7hyYVAFGY,13393
41
- studyfetch_sdk/resources/v1/auth/number_2fa.py,sha256=j-6RVRgmzE5inX5s03jYrImqpxSUBumfhj6RRM9uAfQ,17902
42
- studyfetch_sdk/resources/v1/auth/organization_invites.py,sha256=oFIx5UyMBK2fylD_C41Oc4Hdv52Yk96B6TaoVseSLco,6373
38
+ studyfetch_sdk/resources/v1/auth/__init__.py,sha256=YoujojaKcfwWPoS9E2_PYpMbgs6lswtGD01CMMrQ4iI,1016
39
+ studyfetch_sdk/resources/v1/auth/auth.py,sha256=3YdW8S67YtkPtNvBvyKtyqiY7fU09vkwCCfR_hgdU3Q,6234
40
+ studyfetch_sdk/resources/v1/auth/number_2fa.py,sha256=QgfvK7_m-Kko29XYyDSlAWFv6l7xRF8t6ndNAW5kBz8,6195
43
41
  studyfetch_sdk/resources/v1/chat/__init__.py,sha256=WSv53HDkoj5Ec37hiJlCV2V-ZquTjYyG5hU9cOdZPBk,1426
44
42
  studyfetch_sdk/resources/v1/chat/chat.py,sha256=BNYXQdWaUX4-K6zQlj4Heoy9Lo6SrRmf1EmqM9toNyc,21751
45
43
  studyfetch_sdk/resources/v1/chat/sessions.py,sha256=mjcTJFft2zXyQlqhARz_J5md1BfAD3uhDVp-olow83o,8479
@@ -52,21 +50,6 @@ studyfetch_sdk/resources/v1/materials/bulk.py,sha256=oVAcnbKm8NUBFJIMoj4pEHFb_l1
52
50
  studyfetch_sdk/resources/v1/materials/materials.py,sha256=k6eflgtL96qQ3veEC6YO3eBksMwZ5JrLrkDku9u87mk,38703
53
51
  studyfetch_sdk/resources/v1/materials/test.py,sha256=eGcjGYvPlrlZGrU6AnvZZX5qZ3aLgZgxIrNspXC1rnE,11355
54
52
  studyfetch_sdk/resources/v1/materials/upload.py,sha256=5GyF1aIaxUHCKTiTz-12IbKF6IcFv4xZWAjVJFpT27o,15726
55
- studyfetch_sdk/resources/v1/organizations/__init__.py,sha256=nxwTfS8HPuQuQ0fXIX4ySzGmeYyV0LH0wNCQrUp3wwg,3292
56
- studyfetch_sdk/resources/v1/organizations/api_keys.py,sha256=Z2vGVlvYD1IwnKd8keZYhTq_5oy_qJS0sWbRJb3lNWs,10169
57
- studyfetch_sdk/resources/v1/organizations/organizations.py,sha256=gBuAMUS08jDmlwbDk5x2SME4EREH80sqPrRm2syUz-I,15522
58
- studyfetch_sdk/resources/v1/organizations/theme.py,sha256=xJSGkkwZ8XmNBPVF8H9QqqUrk5vbC0_I17s2NDQL1dA,6915
59
- studyfetch_sdk/resources/v1/organizations/usage.py,sha256=bijjilTybOhseOIcvmvdmkI2vHTEXcCWEkpeEKjGRyI,7823
60
- studyfetch_sdk/resources/v1/organizations/logo/__init__.py,sha256=l-2_gFYhRh9IRO1cQbrcmtIw1v1O8sQ4zZLzH8bpWyQ,976
61
- studyfetch_sdk/resources/v1/organizations/logo/logo.py,sha256=6oiSbcPpTWKq2Wd0nKBvGtEAQp2JC96R6ziDT17RuLw,5971
62
- studyfetch_sdk/resources/v1/organizations/logo/upload.py,sha256=_CuwXIv6-1j5mHOz-DoazRzbRvumOaACjSV1aYY2bco,7144
63
- studyfetch_sdk/resources/v1/organizations/profile/__init__.py,sha256=-h5lc5cTZb8BtI_geWiZ3mWMvKf1OE-e3UV9xvL0Cjg,1439
64
- studyfetch_sdk/resources/v1/organizations/profile/models.py,sha256=7bvTpVtSYjWNba96oVmPEMb6h5wcNGZ7tzbFkPTqqhk,5096
65
- studyfetch_sdk/resources/v1/organizations/profile/profile.py,sha256=AZMvtv23aRbopiYGzbdk6sQSOiyW8UsPglDj8r1WX68,9130
66
- studyfetch_sdk/resources/v1/organizations/profile/team.py,sha256=vUaZYZoTz5M2I9Gze4UxyN7PFeHGjUWxRLm32kkkqWY,18164
67
- studyfetch_sdk/resources/v1/organizations/team/__init__.py,sha256=b5rTOSxGlTF7UMMro_1aOs95sIE1tyLodcznOF6pdYY,976
68
- studyfetch_sdk/resources/v1/organizations/team/invite.py,sha256=hA1UBTmvt7jiNUM7FRR3pEkl6XUkKxMVd-gtrAyjngA,8928
69
- studyfetch_sdk/resources/v1/organizations/team/team.py,sha256=pm_AiKSluwFUiirB3W7qqzF4zsqX6gRJO4Blak-C_Bw,21769
70
53
  studyfetch_sdk/resources/v1/scenarios/__init__.py,sha256=WrMn3vQJgHGQzWKq5SRUTMMvRd4p15Bt5JjZpHhKHZs,2071
71
54
  studyfetch_sdk/resources/v1/scenarios/component.py,sha256=YS-NSqVjOBGggQn1cZfu-mH7V_BqUZZss2MdPItWEvA,12724
72
55
  studyfetch_sdk/resources/v1/scenarios/scenarios.py,sha256=LSJc70kBRc4k_hQXu-HcToj2GJNpRO6pj9NDlM_xQcc,26758
@@ -81,10 +64,7 @@ studyfetch_sdk/resources/v1/upload/__init__.py,sha256=N5r6jpSMe43dezq-6RBAWLVlL3
81
64
  studyfetch_sdk/resources/v1/upload/component.py,sha256=BbiKtJ9hC7c7_Wv6Q_Zi_BZJmcusWFRNvBKJqaB75yA,15493
82
65
  studyfetch_sdk/resources/v1/upload/upload.py,sha256=RBkrsVi5_8qIqdYKypnSqj44ONvwW7u2XXIlpuJsKSg,3736
83
66
  studyfetch_sdk/types/__init__.py,sha256=OKfJYcKb4NObdiRObqJV_dOyDQ8feXekDUge2o_4pXQ,122
84
- studyfetch_sdk/types/v1/__init__.py,sha256=QbdRQml0zNXp3wZwFH-N3OT8Vc8kitmkmm9I5F9PSaI,4102
85
- studyfetch_sdk/types/v1/auth_register_new_user_params.py,sha256=PVEh3trrdCchboy8jdgNaD_T5O5hFMwPnldbuLAD4BY,594
86
- studyfetch_sdk/types/v1/auth_request_password_reset_params.py,sha256=FsJ4ThlxM4-la4T-Ye7rC-S6fz01hhba7Yn3mDxV0Pc,351
87
- studyfetch_sdk/types/v1/auth_reset_password_params.py,sha256=ySejlSKXbcMxfsgImrEY4zUdTQZsbeKI2JVfPgqSNyo,485
67
+ studyfetch_sdk/types/v1/__init__.py,sha256=aywccrChxnRGCoeK_FDPra7X3SKnfnyzI2oKmOyD0V4,3633
88
68
  studyfetch_sdk/types/v1/chat_retrieve_session_params.py,sha256=j_egNBvVvOwAHQGayY5002fE_KK1q775XuIKlokEBsQ,388
89
69
  studyfetch_sdk/types/v1/chat_send_message_params.py,sha256=fY7Ctm7SSwx8SVhgARrTFmWUGLA9x5SJretdvlcY7RU,1439
90
70
  studyfetch_sdk/types/v1/chat_stream_params.py,sha256=Aqp2Vdsa35PAH-75kaO_ZYlkqGrCgDZ5EyYTTLRAJoE,695
@@ -126,19 +106,11 @@ studyfetch_sdk/types/v1/test_submit_params.py,sha256=ra-n9uNBDSqkkiomBt_y3RtGMpV
126
106
  studyfetch_sdk/types/v1/usage_get_stats_params.py,sha256=TQwpTxrPjfa7OA-UdYOVppbZZjE9cx04VajXk-Pgvvc,682
127
107
  studyfetch_sdk/types/v1/usage_get_summary_params.py,sha256=ZFd6VwpQxL59a2akaJDRZbJJcNbZ88KU4S6UreCZr4U,768
128
108
  studyfetch_sdk/types/v1/usage_list_events_params.py,sha256=iMhwqdlaEbtyBqlTpAEcTdYCQumwWVmYBo8czDPLm74,1729
129
- studyfetch_sdk/types/v1/usage_track_chat_params.py,sha256=EqQK42Ane6NQPtwl9Big5s_kXQGX_YkTwgq9JKJYuNE,1569
130
- studyfetch_sdk/types/v1/usage_track_event_params.py,sha256=2ndKMcTEm32UPAY1wmlX-nUNqyU9LK69ZxI2zF_luhc,3846
131
109
  studyfetch_sdk/types/v1/admin/__init__.py,sha256=OKfJYcKb4NObdiRObqJV_dOyDQ8feXekDUge2o_4pXQ,122
132
110
  studyfetch_sdk/types/v1/admin/organizations/__init__.py,sha256=OKfJYcKb4NObdiRObqJV_dOyDQ8feXekDUge2o_4pXQ,122
133
111
  studyfetch_sdk/types/v1/admin/organizations/models/__init__.py,sha256=OKfJYcKb4NObdiRObqJV_dOyDQ8feXekDUge2o_4pXQ,122
134
112
  studyfetch_sdk/types/v1/audio_recaps/__init__.py,sha256=OKfJYcKb4NObdiRObqJV_dOyDQ8feXekDUge2o_4pXQ,122
135
- studyfetch_sdk/types/v1/auth/__init__.py,sha256=ORgVjJd1Gh97hhmc-6V-gbF-wtz2wT56jgNCQ3Q6Sbc,805
136
- studyfetch_sdk/types/v1/auth/login_authenticate_params.py,sha256=WnpZrBOJdatjcbHY-AsZpIux6Zp7MOj6LxzuizGk-KA,376
137
- studyfetch_sdk/types/v1/auth/login_verify_2fa_params.py,sha256=NbTHDWhrk6YVLe2--iA-itVWzxaIJ7HsTD_or08KwBM,378
138
- studyfetch_sdk/types/v1/auth/login_verify_backup_code_params.py,sha256=NRbPsoEN2thAqbWK6330v6-qojgQs2mPY5Uo2Pe2EOY,478
139
- studyfetch_sdk/types/v1/auth/number_2fa_disable_params.py,sha256=6R-R6At9eludw5Z8ncESdG2zMsm0nqly5--Ge7DTco0,336
140
- studyfetch_sdk/types/v1/auth/number_2fa_enable_params.py,sha256=EGacVeJnClDL-pH1y-_8V1DTvC30EDDZxBopvUpqLR8,334
141
- studyfetch_sdk/types/v1/auth/number_2fa_regenerate_backup_codes_params.py,sha256=aZSr5r6NVZxKm2yy5SpHN263_oWx63kmalKJUc6BzS8,364
113
+ studyfetch_sdk/types/v1/auth/__init__.py,sha256=kmP7LURAJVk6-7RX73vhbBFvQzj5-acFH7_zNbJNbrs,215
142
114
  studyfetch_sdk/types/v1/auth/number_2fa_send_code_params.py,sha256=kb8JNsBwu45iiCr7FFLSADKccPN4dgIVQWEleTNSr50,336
143
115
  studyfetch_sdk/types/v1/chat/__init__.py,sha256=wYABOEkbpJ2giFls8t8N32vNezDWQvFRnPw_giWy58g,207
144
116
  studyfetch_sdk/types/v1/chat/session_retrieve_params.py,sha256=G9P18vHLjgrLTVyWyKv8KGr0Pa4W9e8ZubMysxpty6I,290
@@ -159,7 +131,7 @@ studyfetch_sdk/types/v1/scenarios/component_update_params.py,sha256=BDHJzJiiTVqS
159
131
  studyfetch_sdk/types/v1/scenarios/submissions/__init__.py,sha256=OKfJYcKb4NObdiRObqJV_dOyDQ8feXekDUge2o_4pXQ,122
160
132
  studyfetch_sdk/types/v1/tests/__init__.py,sha256=OKfJYcKb4NObdiRObqJV_dOyDQ8feXekDUge2o_4pXQ,122
161
133
  studyfetch_sdk/types/v1/upload/__init__.py,sha256=OKfJYcKb4NObdiRObqJV_dOyDQ8feXekDUge2o_4pXQ,122
162
- studyfetch_sdk-0.1.0a2.dist-info/METADATA,sha256=b6YGjfKX5ZHlkvFAfcxhFAsJ9Gprmc8f9YuAase_6cw,15348
163
- studyfetch_sdk-0.1.0a2.dist-info/WHEEL,sha256=C2FUgwZgiLbznR-k0b_5k3Ai_1aASOXDss3lzCUsUug,87
164
- studyfetch_sdk-0.1.0a2.dist-info/licenses/LICENSE,sha256=CsdbJMegH_AAWljUmVcwW0Cj_GyIm1hjw6qPqPnmdn4,11344
165
- studyfetch_sdk-0.1.0a2.dist-info/RECORD,,
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,,