fathom-python 0.0.34__py3-none-any.whl → 0.0.36__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.
fathom_python/_version.py CHANGED
@@ -3,10 +3,10 @@
3
3
  import importlib.metadata
4
4
 
5
5
  __title__: str = "fathom-python"
6
- __version__: str = "0.0.34"
6
+ __version__: str = "0.0.36"
7
7
  __openapi_doc_version__: str = "1.0.0"
8
- __gen_version__: str = "2.716.16"
9
- __user_agent__: str = "speakeasy-sdk/python 0.0.34 2.716.16 1.0.0 fathom-python"
8
+ __gen_version__: str = "2.723.8"
9
+ __user_agent__: str = "speakeasy-sdk/python 0.0.36 2.723.8 1.0.0 fathom-python"
10
10
 
11
11
  try:
12
12
  if __package__ is not None:
@@ -107,7 +107,6 @@ def close_clients(
107
107
  # to them from the owning SDK instance and they can be reaped.
108
108
  owner.client = None
109
109
  owner.async_client = None
110
-
111
110
  if sync_client is not None and not sync_client_supplied:
112
111
  try:
113
112
  sync_client.close()
@@ -54,6 +54,8 @@ class ListMeetingsRequestTypedDict(TypedDict):
54
54
  r"""Filter to meetings with created_at before this timestamp, e.g. `created_before=2025-01-01T00:00:00Z`."""
55
55
  cursor: NotRequired[str]
56
56
  r"""Cursor for pagination."""
57
+ include_action_items: NotRequired[bool]
58
+ r"""Include the action items for each meeting."""
57
59
  include_crm_matches: NotRequired[bool]
58
60
  r"""Include CRM matches for each meeting. Only returns data from your or your team's linked CRM."""
59
61
  include_summary: NotRequired[bool]
@@ -136,6 +138,12 @@ class ListMeetingsRequest(BaseModel):
136
138
  ] = None
137
139
  r"""Cursor for pagination."""
138
140
 
141
+ include_action_items: Annotated[
142
+ Optional[bool],
143
+ FieldMetadata(query=QueryParamMetadata(style="form", explode=True)),
144
+ ] = False
145
+ r"""Include the action items for each meeting."""
146
+
139
147
  include_crm_matches: Annotated[
140
148
  Optional[bool],
141
149
  FieldMetadata(query=QueryParamMetadata(style="form", explode=True)),
@@ -28,7 +28,7 @@ class CalendarInviteesDomainsType(str, Enum):
28
28
 
29
29
  class MeetingTypedDict(TypedDict):
30
30
  title: str
31
- meeting_title: str
31
+ meeting_title: Nullable[str]
32
32
  r"""Calendar event title."""
33
33
  recording_id: int
34
34
  r"""The ID of the meeting recording."""
@@ -56,7 +56,7 @@ class MeetingTypedDict(TypedDict):
56
56
  class Meeting(BaseModel):
57
57
  title: str
58
58
 
59
- meeting_title: str
59
+ meeting_title: Nullable[str]
60
60
  r"""Calendar event title."""
61
61
 
62
62
  recording_id: int
@@ -105,6 +105,7 @@ class Meeting(BaseModel):
105
105
  "crm_matches",
106
106
  ]
107
107
  nullable_fields = [
108
+ "meeting_title",
108
109
  "transcript",
109
110
  "default_summary",
110
111
  "action_items",
@@ -1,14 +1,20 @@
1
1
  """Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT."""
2
2
 
3
3
  from __future__ import annotations
4
- from fathom_python.types import BaseModel
5
- from typing import Optional
4
+ from fathom_python.types import (
5
+ BaseModel,
6
+ Nullable,
7
+ OptionalNullable,
8
+ UNSET,
9
+ UNSET_SENTINEL,
10
+ )
11
+ from pydantic import model_serializer
6
12
  from typing_extensions import NotRequired, TypedDict
7
13
 
8
14
 
9
15
  class TranscriptItemSpeakerTypedDict(TypedDict):
10
16
  display_name: str
11
- matched_calendar_invitee_email: NotRequired[str]
17
+ matched_calendar_invitee_email: NotRequired[Nullable[str]]
12
18
  r"""**Coming soon!**
13
19
 
14
20
  """
@@ -17,7 +23,37 @@ class TranscriptItemSpeakerTypedDict(TypedDict):
17
23
  class TranscriptItemSpeaker(BaseModel):
18
24
  display_name: str
19
25
 
20
- matched_calendar_invitee_email: Optional[str] = None
26
+ matched_calendar_invitee_email: OptionalNullable[str] = UNSET
21
27
  r"""**Coming soon!**
22
28
 
23
29
  """
30
+
31
+ @model_serializer(mode="wrap")
32
+ def serialize_model(self, handler):
33
+ optional_fields = ["matched_calendar_invitee_email"]
34
+ nullable_fields = ["matched_calendar_invitee_email"]
35
+ null_default_fields = []
36
+
37
+ serialized = handler(self)
38
+
39
+ m = {}
40
+
41
+ for n, f in type(self).model_fields.items():
42
+ k = f.alias or n
43
+ val = serialized.get(k)
44
+ serialized.pop(k, None)
45
+
46
+ optional_nullable = k in optional_fields and k in nullable_fields
47
+ is_set = (
48
+ self.__pydantic_fields_set__.intersection({n})
49
+ or k in null_default_fields
50
+ ) # pylint: disable=no-member
51
+
52
+ if val is not None and val != UNSET_SENTINEL:
53
+ m[k] = val
54
+ elif val != UNSET_SENTINEL and (
55
+ not k in optional_fields or (optional_nullable and is_set)
56
+ ):
57
+ m[k] = val
58
+
59
+ return m
fathom_python/sdk.py CHANGED
@@ -274,6 +274,7 @@ class Fathom(BaseSDK):
274
274
  created_after: Optional[str] = None,
275
275
  created_before: Optional[str] = None,
276
276
  cursor: Optional[str] = None,
277
+ include_action_items: Optional[bool] = False,
277
278
  include_crm_matches: Optional[bool] = False,
278
279
  include_summary: Optional[bool] = False,
279
280
  include_transcript: Optional[bool] = False,
@@ -293,6 +294,7 @@ class Fathom(BaseSDK):
293
294
  :param created_after: Filter to meetings with created_at after this timestamp, e.g. `created_after=2025-01-01T00:00:00Z`.
294
295
  :param created_before: Filter to meetings with created_at before this timestamp, e.g. `created_before=2025-01-01T00:00:00Z`.
295
296
  :param cursor: Cursor for pagination.
297
+ :param include_action_items: Include the action items for each meeting.
296
298
  :param include_crm_matches: Include CRM matches for each meeting. Only returns data from your or your team's linked CRM.
297
299
  :param include_summary: Include the summary for each meeting. Unavailable for OAuth connected apps (use /recordings instead).
298
300
  :param include_transcript: Include the transcript for each meeting. Unavailable for OAuth connected apps (use /recordings instead).
@@ -321,6 +323,7 @@ class Fathom(BaseSDK):
321
323
  created_after=created_after,
322
324
  created_before=created_before,
323
325
  cursor=cursor,
326
+ include_action_items=include_action_items,
324
327
  include_crm_matches=include_crm_matches,
325
328
  include_summary=include_summary,
326
329
  include_transcript=include_transcript,
@@ -358,7 +361,7 @@ class Fathom(BaseSDK):
358
361
  config=self.sdk_configuration,
359
362
  base_url=base_url or "",
360
363
  operation_id="listMeetings",
361
- oauth2_scopes=[],
364
+ oauth2_scopes=None,
362
365
  security_source=get_security_from_env(
363
366
  self.sdk_configuration.security, models.Security
364
367
  ),
@@ -386,6 +389,7 @@ class Fathom(BaseSDK):
386
389
  created_after=created_after,
387
390
  created_before=created_before,
388
391
  cursor=next_cursor,
392
+ include_action_items=include_action_items,
389
393
  include_crm_matches=include_crm_matches,
390
394
  include_summary=include_summary,
391
395
  include_transcript=include_transcript,
@@ -420,6 +424,7 @@ class Fathom(BaseSDK):
420
424
  created_after: Optional[str] = None,
421
425
  created_before: Optional[str] = None,
422
426
  cursor: Optional[str] = None,
427
+ include_action_items: Optional[bool] = False,
423
428
  include_crm_matches: Optional[bool] = False,
424
429
  include_summary: Optional[bool] = False,
425
430
  include_transcript: Optional[bool] = False,
@@ -439,6 +444,7 @@ class Fathom(BaseSDK):
439
444
  :param created_after: Filter to meetings with created_at after this timestamp, e.g. `created_after=2025-01-01T00:00:00Z`.
440
445
  :param created_before: Filter to meetings with created_at before this timestamp, e.g. `created_before=2025-01-01T00:00:00Z`.
441
446
  :param cursor: Cursor for pagination.
447
+ :param include_action_items: Include the action items for each meeting.
442
448
  :param include_crm_matches: Include CRM matches for each meeting. Only returns data from your or your team's linked CRM.
443
449
  :param include_summary: Include the summary for each meeting. Unavailable for OAuth connected apps (use /recordings instead).
444
450
  :param include_transcript: Include the transcript for each meeting. Unavailable for OAuth connected apps (use /recordings instead).
@@ -467,6 +473,7 @@ class Fathom(BaseSDK):
467
473
  created_after=created_after,
468
474
  created_before=created_before,
469
475
  cursor=cursor,
476
+ include_action_items=include_action_items,
470
477
  include_crm_matches=include_crm_matches,
471
478
  include_summary=include_summary,
472
479
  include_transcript=include_transcript,
@@ -504,7 +511,7 @@ class Fathom(BaseSDK):
504
511
  config=self.sdk_configuration,
505
512
  base_url=base_url or "",
506
513
  operation_id="listMeetings",
507
- oauth2_scopes=[],
514
+ oauth2_scopes=None,
508
515
  security_source=get_security_from_env(
509
516
  self.sdk_configuration.security, models.Security
510
517
  ),
@@ -532,6 +539,7 @@ class Fathom(BaseSDK):
532
539
  created_after=created_after,
533
540
  created_before=created_before,
534
541
  cursor=next_cursor,
542
+ include_action_items=include_action_items,
535
543
  include_crm_matches=include_crm_matches,
536
544
  include_summary=include_summary,
537
545
  include_transcript=include_transcript,
@@ -623,7 +631,7 @@ class Fathom(BaseSDK):
623
631
  config=self.sdk_configuration,
624
632
  base_url=base_url or "",
625
633
  operation_id="getRecordingSummary",
626
- oauth2_scopes=[],
634
+ oauth2_scopes=None,
627
635
  security_source=get_security_from_env(
628
636
  self.sdk_configuration.security, models.Security
629
637
  ),
@@ -712,7 +720,7 @@ class Fathom(BaseSDK):
712
720
  config=self.sdk_configuration,
713
721
  base_url=base_url or "",
714
722
  operation_id="getRecordingSummary",
715
- oauth2_scopes=[],
723
+ oauth2_scopes=None,
716
724
  security_source=get_security_from_env(
717
725
  self.sdk_configuration.security, models.Security
718
726
  ),
@@ -801,7 +809,7 @@ class Fathom(BaseSDK):
801
809
  config=self.sdk_configuration,
802
810
  base_url=base_url or "",
803
811
  operation_id="getRecordingTranscript",
804
- oauth2_scopes=[],
812
+ oauth2_scopes=None,
805
813
  security_source=get_security_from_env(
806
814
  self.sdk_configuration.security, models.Security
807
815
  ),
@@ -892,7 +900,7 @@ class Fathom(BaseSDK):
892
900
  config=self.sdk_configuration,
893
901
  base_url=base_url or "",
894
902
  operation_id="getRecordingTranscript",
895
- oauth2_scopes=[],
903
+ oauth2_scopes=None,
896
904
  security_source=get_security_from_env(
897
905
  self.sdk_configuration.security, models.Security
898
906
  ),
@@ -975,7 +983,7 @@ class Fathom(BaseSDK):
975
983
  config=self.sdk_configuration,
976
984
  base_url=base_url or "",
977
985
  operation_id="listTeams",
978
- oauth2_scopes=[],
986
+ oauth2_scopes=None,
979
987
  security_source=get_security_from_env(
980
988
  self.sdk_configuration.security, models.Security
981
989
  ),
@@ -1075,7 +1083,7 @@ class Fathom(BaseSDK):
1075
1083
  config=self.sdk_configuration,
1076
1084
  base_url=base_url or "",
1077
1085
  operation_id="listTeams",
1078
- oauth2_scopes=[],
1086
+ oauth2_scopes=None,
1079
1087
  security_source=get_security_from_env(
1080
1088
  self.sdk_configuration.security, models.Security
1081
1089
  ),
@@ -1178,7 +1186,7 @@ class Fathom(BaseSDK):
1178
1186
  config=self.sdk_configuration,
1179
1187
  base_url=base_url or "",
1180
1188
  operation_id="listTeamMembers",
1181
- oauth2_scopes=[],
1189
+ oauth2_scopes=None,
1182
1190
  security_source=get_security_from_env(
1183
1191
  self.sdk_configuration.security, models.Security
1184
1192
  ),
@@ -1282,7 +1290,7 @@ class Fathom(BaseSDK):
1282
1290
  config=self.sdk_configuration,
1283
1291
  base_url=base_url or "",
1284
1292
  operation_id="listTeamMembers",
1285
- oauth2_scopes=[],
1293
+ oauth2_scopes=None,
1286
1294
  security_source=get_security_from_env(
1287
1295
  self.sdk_configuration.security, models.Security
1288
1296
  ),
@@ -1405,7 +1413,7 @@ class Fathom(BaseSDK):
1405
1413
  config=self.sdk_configuration,
1406
1414
  base_url=base_url or "",
1407
1415
  operation_id="createWebhook",
1408
- oauth2_scopes=[],
1416
+ oauth2_scopes=None,
1409
1417
  security_source=get_security_from_env(
1410
1418
  self.sdk_configuration.security, models.Security
1411
1419
  ),
@@ -1508,7 +1516,7 @@ class Fathom(BaseSDK):
1508
1516
  config=self.sdk_configuration,
1509
1517
  base_url=base_url or "",
1510
1518
  operation_id="createWebhook",
1511
- oauth2_scopes=[],
1519
+ oauth2_scopes=None,
1512
1520
  security_source=get_security_from_env(
1513
1521
  self.sdk_configuration.security, models.Security
1514
1522
  ),
@@ -1591,7 +1599,7 @@ class Fathom(BaseSDK):
1591
1599
  config=self.sdk_configuration,
1592
1600
  base_url=base_url or "",
1593
1601
  operation_id="deleteWebhook",
1594
- oauth2_scopes=[],
1602
+ oauth2_scopes=None,
1595
1603
  security_source=get_security_from_env(
1596
1604
  self.sdk_configuration.security, models.Security
1597
1605
  ),
@@ -1674,7 +1682,7 @@ class Fathom(BaseSDK):
1674
1682
  config=self.sdk_configuration,
1675
1683
  base_url=base_url or "",
1676
1684
  operation_id="deleteWebhook",
1677
- oauth2_scopes=[],
1685
+ oauth2_scopes=None,
1678
1686
  security_source=get_security_from_env(
1679
1687
  self.sdk_configuration.security, models.Security
1680
1688
  ),
@@ -1,7 +1,7 @@
1
1
  Metadata-Version: 2.3
2
2
  Name: fathom-python
3
- Version: 0.0.34
4
- Summary: Python Client SDK Generated by Speakeasy.
3
+ Version: 0.0.36
4
+ Summary: Fathom's official Python SDK.
5
5
  Author: Speakeasy
6
6
  Requires-Python: >=3.9.2
7
7
  Classifier: Programming Language :: Python :: 3
@@ -126,7 +126,7 @@ with Fathom(
126
126
  ], calendar_invitees_domains=[
127
127
  "acme.com",
128
128
  "client.com",
129
- ], calendar_invitees_domains_type=models.ListMeetingsCalendarInviteesDomainsType.ALL, include_crm_matches=False, include_summary=False, include_transcript=False, meeting_type=models.MeetingType.ALL, recorded_by=[
129
+ ], calendar_invitees_domains_type=models.ListMeetingsCalendarInviteesDomainsType.ALL, include_action_items=False, include_crm_matches=False, include_summary=False, include_transcript=False, meeting_type=models.MeetingType.ALL, recorded_by=[
130
130
  "ceo@acme.com",
131
131
  "pm@acme.com",
132
132
  ], teams=[
@@ -164,7 +164,7 @@ async def main():
164
164
  ], calendar_invitees_domains=[
165
165
  "acme.com",
166
166
  "client.com",
167
- ], calendar_invitees_domains_type=models.ListMeetingsCalendarInviteesDomainsType.ALL, include_crm_matches=False, include_summary=False, include_transcript=False, meeting_type=models.MeetingType.ALL, recorded_by=[
167
+ ], calendar_invitees_domains_type=models.ListMeetingsCalendarInviteesDomainsType.ALL, include_action_items=False, include_crm_matches=False, include_summary=False, include_transcript=False, meeting_type=models.MeetingType.ALL, recorded_by=[
168
168
  "ceo@acme.com",
169
169
  "pm@acme.com",
170
170
  ], teams=[
@@ -211,7 +211,7 @@ with Fathom(
211
211
  ], calendar_invitees_domains=[
212
212
  "acme.com",
213
213
  "client.com",
214
- ], calendar_invitees_domains_type=models.ListMeetingsCalendarInviteesDomainsType.ALL, include_crm_matches=False, include_summary=False, include_transcript=False, meeting_type=models.MeetingType.ALL, recorded_by=[
214
+ ], calendar_invitees_domains_type=models.ListMeetingsCalendarInviteesDomainsType.ALL, include_action_items=False, include_crm_matches=False, include_summary=False, include_transcript=False, meeting_type=models.MeetingType.ALL, recorded_by=[
215
215
  "ceo@acme.com",
216
216
  "pm@acme.com",
217
217
  ], teams=[
@@ -271,7 +271,7 @@ with Fathom(
271
271
  ], calendar_invitees_domains=[
272
272
  "acme.com",
273
273
  "client.com",
274
- ], calendar_invitees_domains_type=models.ListMeetingsCalendarInviteesDomainsType.ALL, include_crm_matches=False, include_summary=False, include_transcript=False, meeting_type=models.MeetingType.ALL, recorded_by=[
274
+ ], calendar_invitees_domains_type=models.ListMeetingsCalendarInviteesDomainsType.ALL, include_action_items=False, include_crm_matches=False, include_summary=False, include_transcript=False, meeting_type=models.MeetingType.ALL, recorded_by=[
275
275
  "ceo@acme.com",
276
276
  "pm@acme.com",
277
277
  ], teams=[
@@ -311,7 +311,7 @@ with Fathom(
311
311
  ], calendar_invitees_domains=[
312
312
  "acme.com",
313
313
  "client.com",
314
- ], calendar_invitees_domains_type=models.ListMeetingsCalendarInviteesDomainsType.ALL, include_crm_matches=False, include_summary=False, include_transcript=False, meeting_type=models.MeetingType.ALL, recorded_by=[
314
+ ], calendar_invitees_domains_type=models.ListMeetingsCalendarInviteesDomainsType.ALL, include_action_items=False, include_crm_matches=False, include_summary=False, include_transcript=False, meeting_type=models.MeetingType.ALL, recorded_by=[
315
315
  "ceo@acme.com",
316
316
  "pm@acme.com",
317
317
  ], teams=[
@@ -347,7 +347,7 @@ with Fathom(
347
347
  ], calendar_invitees_domains=[
348
348
  "acme.com",
349
349
  "client.com",
350
- ], calendar_invitees_domains_type=models.ListMeetingsCalendarInviteesDomainsType.ALL, include_crm_matches=False, include_summary=False, include_transcript=False, meeting_type=models.MeetingType.ALL, recorded_by=[
350
+ ], calendar_invitees_domains_type=models.ListMeetingsCalendarInviteesDomainsType.ALL, include_action_items=False, include_crm_matches=False, include_summary=False, include_transcript=False, meeting_type=models.MeetingType.ALL, recorded_by=[
351
351
  "ceo@acme.com",
352
352
  "pm@acme.com",
353
353
  ], teams=[
@@ -396,7 +396,7 @@ with Fathom(
396
396
  ], calendar_invitees_domains=[
397
397
  "acme.com",
398
398
  "client.com",
399
- ], calendar_invitees_domains_type=models.ListMeetingsCalendarInviteesDomainsType.ALL, include_crm_matches=False, include_summary=False, include_transcript=False, meeting_type=models.MeetingType.ALL, recorded_by=[
399
+ ], calendar_invitees_domains_type=models.ListMeetingsCalendarInviteesDomainsType.ALL, include_action_items=False, include_crm_matches=False, include_summary=False, include_transcript=False, meeting_type=models.MeetingType.ALL, recorded_by=[
400
400
  "ceo@acme.com",
401
401
  "pm@acme.com",
402
402
  ], teams=[
@@ -464,7 +464,7 @@ with Fathom(
464
464
  ], calendar_invitees_domains=[
465
465
  "acme.com",
466
466
  "client.com",
467
- ], calendar_invitees_domains_type=models.ListMeetingsCalendarInviteesDomainsType.ALL, include_crm_matches=False, include_summary=False, include_transcript=False, meeting_type=models.MeetingType.ALL, recorded_by=[
467
+ ], calendar_invitees_domains_type=models.ListMeetingsCalendarInviteesDomainsType.ALL, include_action_items=False, include_crm_matches=False, include_summary=False, include_transcript=False, meeting_type=models.MeetingType.ALL, recorded_by=[
468
468
  "ceo@acme.com",
469
469
  "pm@acme.com",
470
470
  ], teams=[
@@ -3,14 +3,14 @@ fathom_python/_hooks/__init__.py,sha256=9_7W5jAYw8rcO8Kfc-Ty-lB82BHfksAJJpVFb_Ue
3
3
  fathom_python/_hooks/registration.py,sha256=1QZB41w6If7I9dXiOSQx6dhSc6BPWrnI5Q5bMOr4iVA,624
4
4
  fathom_python/_hooks/sdkhooks.py,sha256=SyxWCUZakr1ZlORVhbgZJ-xM5W4QvTTS4Mymtte2LrI,2530
5
5
  fathom_python/_hooks/types.py,sha256=OOkf6lkat8zumtftMupq5qK6pigExGTdcBF38RyT_gU,2992
6
- fathom_python/_version.py,sha256=N2LovofZoLcCRWeQ7HeR18VH5b7bZiKON21FXg31cjs,472
6
+ fathom_python/_version.py,sha256=C0Z0nhrPI3tVX4FzF66WgMW_XsUsVr1BsFCLceGA_s8,470
7
7
  fathom_python/basesdk.py,sha256=HzY3rWonhPH0RZoEfNyWHy9q_eIvEfsVaf1jIMUGHhQ,12214
8
8
  fathom_python/errors/__init__.py,sha256=4aL9LIze2oNNs_l3aHDAu2HvD8EB0sMFfA9ikL53Lk4,1818
9
9
  fathom_python/errors/apierror.py,sha256=a7BEYi8Bh46jnAALCrTFnavGXRqpaOOISPdBWBLgax8,1283
10
10
  fathom_python/errors/fathomerror.py,sha256=VEu2eSLjVJCCkfgbQdqAgUBHae82C-3sW8zJXGSF5yo,950
11
11
  fathom_python/errors/no_response_error.py,sha256=Kb7hmMtDo72KrLSjUEDNeQxvzZiVxUjOZym8TPdZp5Y,462
12
12
  fathom_python/errors/responsevalidationerror.py,sha256=aXo7zRI3EDZfzuB7kmdJxxQuraVi6V0ECSeUVBbyYf4,750
13
- fathom_python/httpclient.py,sha256=Eu73urOAiZQtdUIyOUnPccxCiBbWEKrXG-JrRG3SLM4,3946
13
+ fathom_python/httpclient.py,sha256=dqTPONDBpRn4ktXfcetQiRXnG93f0pJkFhqsYFhLUac,3945
14
14
  fathom_python/models/__init__.py,sha256=d_FIMbDiWzyohNHVsZff7_UAiX_B6Uf2WbxgkRVdr0k,10042
15
15
  fathom_python/models/actionitem.py,sha256=Ab36zDi8torOZAMXyTfVlcbayc-m1114XDLVBMJSljE,849
16
16
  fathom_python/models/assignee.py,sha256=q7FZ4ai6dKZPBTP9cEVoYgwHyCWLkxjaTSy-9lu617U,1384
@@ -25,10 +25,10 @@ fathom_python/models/fathomuser.py,sha256=qwGGC5H-Dp2rmOa6THVcVfykXWABrFpn2oYDTY
25
25
  fathom_python/models/getrecordingsummaryop.py,sha256=buQ5qW4BRCU2buQ92rWqeiJ7ETNXOIsHyf8vMEiJMY4,3018
26
26
  fathom_python/models/getrecordingtranscriptop.py,sha256=JVv9N40odOPlw25prIgncqfkrpCQj7TerZ4yXry5oKY,2043
27
27
  fathom_python/models/invitee.py,sha256=DwyAGSStoB4VEgg8MtTHQyGeRr7mgGyJT0-aHrZoN9Q,1829
28
- fathom_python/models/listmeetingsop.py,sha256=ogkLrn16XfadkAow1gb2GFD8DiObZ35xp2R_G6-ZECU,7329
28
+ fathom_python/models/listmeetingsop.py,sha256=T5QfI_hM5W0yzbH8-OJFR24hACHuYuJZEDzzF4FS4ug,7634
29
29
  fathom_python/models/listteammembersop.py,sha256=Rtatvg_ZZZuAo95s7I6blWn_DEKXKug5-le7EyxKgVc,1218
30
30
  fathom_python/models/listteamsop.py,sha256=fjGGOkZed83n-MK6S7eYSinqUyeFNZ5dnJ7Tj-wY3nA,913
31
- fathom_python/models/meeting.py,sha256=Z5okXnQmFNf5H2dxJ8I_mdFmVyDItTq14AsYJ-LkVCk,3966
31
+ fathom_python/models/meeting.py,sha256=6gS36hvoM_s8ildFlFcNAngUuVF0qgtgsA1kmKjF4-w,4015
32
32
  fathom_python/models/meetinglistresponse.py,sha256=DWgl0mQn76jXk91xK9syGFaxw_g-7zUOUBGscLQSXNg,1501
33
33
  fathom_python/models/meetingsummary.py,sha256=AKmIdH7fci9FSEyHFEIoA0HnVvwhLURXNR2ZjexA1BY,1485
34
34
  fathom_python/models/security.py,sha256=hcxt1Cf-Bg5WplpU91H68EyvsxiMISup1sCJgilsjxQ,1032
@@ -37,10 +37,10 @@ fathom_python/models/teamlistresponse.py,sha256=7Sxs2CgfkOY1ROji1mJ6Wzpro54pL0ar
37
37
  fathom_python/models/teammember.py,sha256=Zrq8DeGXNB_x6QlumTdWTwYtStqkuypfC04N3DhSf2Y,401
38
38
  fathom_python/models/teammemberlistresponse.py,sha256=fItFDZd7RtXPHs-jfGJad8tuBoulg0600ciSsWPz-ug,1493
39
39
  fathom_python/models/transcriptitem.py,sha256=pGg4S32z86vBu0eaSLK1Tf1TvvvTZj10nJSRz8vW3JY,645
40
- fathom_python/models/transcriptitemspeaker.py,sha256=GFF9PKJtf0aHaB8x8dievopoT43JUIcOAj70oFi5ilE,547
40
+ fathom_python/models/transcriptitemspeaker.py,sha256=F4SH35bRpNLHZSGvWvWMlvG_WdfiNY9q0Lc01JjJCZU,1608
41
41
  fathom_python/models/webhook.py,sha256=ekDvnrsaSU-AvUDA8tFz1SPi18Za6NbWcMTQP2k5wPI,1300
42
42
  fathom_python/py.typed,sha256=zrp19r0G21lr2yRiMC0f8MFkQFGj9wMpSbboePMg8KM,59
43
- fathom_python/sdk.py,sha256=Zp8r36VqLPtoXQGkeYQ6WCxMpg0CJqC9EEmEhTJUOt8,72050
43
+ fathom_python/sdk.py,sha256=2rZlAbYkf5OnFAwejM7GT8TE7Qx5iea7B9stdIu3gr8,72574
44
44
  fathom_python/sdkconfiguration.py,sha256=s06HLCZA48IdYWZd8E9q8AK7WazaxybG7ZdqoWF-e7s,1586
45
45
  fathom_python/types/__init__.py,sha256=RArOwSgeeTIva6h-4ttjXwMUeCkz10nAFBL9D-QljI4,377
46
46
  fathom_python/types/basemodel.py,sha256=L79WXvTECbSqaJzs8D3ud_KdIWkU7Cx2wbohDAktE9E,1127
@@ -61,6 +61,6 @@ fathom_python/utils/serializers.py,sha256=Hndks5M_rJXVub_N5lu0gKZQUoEmWrn6PN7R-0
61
61
  fathom_python/utils/unmarshal_json_response.py,sha256=M1-rdgF0E7flFEKlOODnhlvvrvpdnD-ZF_E31FgEWVA,589
62
62
  fathom_python/utils/url.py,sha256=BgGPgcTA6MRK4bF8fjP2dUopN3NzEzxWMXPBVg8NQUA,5254
63
63
  fathom_python/utils/values.py,sha256=CcaCXEa3xHhkUDROyXZocN8f0bdITftv9Y0P9lTf0YM,3517
64
- fathom_python-0.0.34.dist-info/METADATA,sha256=YEF0mhstLh3KBuWqgAJlZ88UmgDaTVZk087eK-qzgMk,20492
65
- fathom_python-0.0.34.dist-info/WHEEL,sha256=b4K_helf-jlQoXBBETfwnf4B04YC67LOev0jo4fX5m8,88
66
- fathom_python-0.0.34.dist-info/RECORD,,
64
+ fathom_python-0.0.36.dist-info/METADATA,sha256=3hehqdYo3b0yFLR1uw2wzgDd5EJhE7SQEudst90xgo8,20704
65
+ fathom_python-0.0.36.dist-info/WHEEL,sha256=b4K_helf-jlQoXBBETfwnf4B04YC67LOev0jo4fX5m8,88
66
+ fathom_python-0.0.36.dist-info/RECORD,,